@charset "UTF-8";
/*--------------------------------
     =====Table Of Contents====

1.  General Styles 
2.  Mixins CSS
3.  Back To Top Button CSS
4.  Preloader CSS
5.  Button & Link CSS
6.  Section Title & Overlay & Shape CSS
7.  Social Link CSS
8.  Pagination CSS
9.  Sidebar CSS
     - Search Box Widget
     - Tag list Widget
     - Category Widget
     - Filter Search Widget
     - New Arrival Product Widget
     - Popular Post Widget
10. Sign In CSS
11. FAQ Terms & Conditions
----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #555555;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #222222;
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
}

a {
  color: #555555;
  transition: all ease 0.5s;
  text-decoration: none;
}
a:hover {
  color: #FD4045;
}

p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.mb-7 {
  margin-bottom: 25px !important;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-20 {
  margin-bottom: 20px;
}

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

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

.default-btn {
  padding: 16px 35px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  z-index: 1;
  border-radius: 50px;
  transition: all ease 0.5s;
  overflow: hidden;
  position: relative;
  border: solid 1px #FD4045;
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  right: 0;
  opacity: 1;
  border-radius: 50px;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.default-btn:hover {
  color: #222222;
}
.default-btn:hover::before {
  height: 0;
  opacity: 0;
}
.default-btn.style2 {
  color: #222222;
}
.default-btn.style2::before {
  height: 0;
  opacity: 0;
}
.default-btn.style2:hover {
  color: #ffffff;
}
.default-btn.style2:hover::before {
  height: 100%;
  opacity: 1;
}
.default-btn.border-radius {
  border-radius: 5px;
}
.default-btn.border-radius::before {
  border-radius: 5px;
}

.section-warp {
  margin-bottom: 30px;
}
.section-warp .single-section .title {
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 500;
}
.section-warp .single-section h2 {
  font-size: 48px;
  position: relative;
  padding-bottom: 15px;
}
.section-warp .single-section h2 .section-title-shape {
  position: absolute;
  bottom: 0;
  right: 20%;
  animation: simple-move 4s 1s linear infinite alternate;
}
.section-warp .default-btn {
  color: #FD4045;
}

.single-section .title {
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 500;
}
.single-section h2 {
  font-size: 48px;
  position: relative;
  padding-bottom: 15px;
}
.single-section h2 .section-title-shape {
  position: absolute;
  bottom: 0;
  right: 20%;
  animation: simple-move 4s 1s linear infinite alternate;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title .title {
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.section-title h2 {
  font-size: 48px;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}
.section-title h2 .section-title-shape {
  position: absolute;
  bottom: 0;
  right: 20%;
  animation: simple-move 4s 1s linear infinite alternate;
}
@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(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@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;
  }
}
/*
Top Header Warp  Style
======================================================*/
.top-header-warp {
  padding-top: 12px;
  padding-bottom: 60px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.top-header-warp .container-fluid {
  max-width: 1580px;
}

.header-content p {
  color: #ffffff;
}
.header-content p a {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  text-decoration-line: underline;
}

.heder-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.heder-list ul li {
  display: inline-block;
  padding-right: 6px;
  padding-left: 6px;
  position: relative;
}
.heder-list ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -4px;
  bottom: 5px;
  width: 1px;
  transform: rotate(25deg);
  background-color: #ffffff;
}
.heder-list ul li:last-child {
  padding-right: 0;
}
.heder-list ul li:last-child::before {
  display: none;
}
.heder-list ul li:first-child {
  padding-left: 0;
}
.heder-list ul li a {
  padding: 0;
  color: #ffffff;
  border: none;
  line-height: 1;
  transition: all ease 0.5s;
}
.heder-list ul li a:hover {
  color: #222222;
}
.heder-list ul li a:focus {
  outline: 0;
  box-shadow: unset;
}

.inner-login-warp .container-fluid {
  width: 100%;
}

.login-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.login-image.bg1 {
  background-image: url(../images/accounts/login.jpg);
}
.login-image.bg2 {
  background-image: url(../images/accounts/register.jpg);
}

.login-content {
  border-radius: 40px 0 0 30px;
  background-color: #ffffff;
  margin-left: -35px;
}
.login-content .maximum-widget {
  height: 100vh;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.login-content .d-table {
  width: 100%;
  height: 100%;
}
.login-content .d-table-cell {
  vertical-align: middle;
}
.login-content a {
  display: block;
}
.login-content h4 {
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 25px;
}
.login-content .form-label {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: "Fira Sans";
}
.login-content .form-control {
  height: 60px;
  font-weight: 300;
  font-size: 16px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding-left: 25px;
  background-color: #ffffff;
  transition: all ease 0.5s;
}
.login-content .form-control:focus {
  box-shadow: unset;
}
.login-content .form-control:focus::-moz-placeholder {
  color: transparent;
}
.login-content .form-control:focus::placeholder {
  color: transparent;
}
.login-content .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.login-content .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.login-content .default-btn {
  border: none;
  width: 100%;
  text-align: center;
}
.login-content .default-btn.style1 {
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.login-content .forgot {
  font-weight: 300;
  text-decoration-line: underline;
}
.login-content .password-icon {
  position: relative;
}
.login-content .password-icon .flaticon-view {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(10px);
}
.login-content .social-btn {
  text-align: center;
  width: 100%;
  border: 1px solid #1877F2;
  border-radius: 5px;
  text-align: center;
  padding: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-content .social-btn img {
  position: relative;
  padding-right: 8px;
}
.login-content .social-btn p {
  margin-bottom: 0;
  color: #1877F2;
}
.login-content .sign-up {
  display: flex;
  align-items: center;
}
.login-content .sign-up a {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  text-decoration-line: underline;
  color: #FA8440;
  padding-left: 5px;
}

/*
Hero Warp  Style
======================================================*/
.hero-warp {
  position: relative;
  padding-top: 60px;
  padding-bottom: 250px;
}
.hero-warp .container-fluid {
  max-width: 1580px;
}
.hero-warp .hero-shape1 {
  position: absolute;
  top: 110px;
  left: 5%;
  animation: rotate3d 4s 1s linear infinite alternate;
}
.hero-warp .hero-shape2 {
  position: absolute;
  top: 95px;
  left: 26%;
  animation: simple-move 4s 1s linear infinite alternate;
}
.hero-warp .hero-shape3 {
  position: absolute;
  top: 75px;
  left: 36%;
}
.hero-warp .hero-shape4 {
  position: absolute;
  top: 110px;
  left: 49%;
  animation: simple-move 4s 1s linear infinite alternate;
}
.hero-warp .hero-shape5 {
  position: absolute;
  bottom: 300px;
  left: 3%;
  animation: rotate3d 4s 1s linear infinite alternate;
}
.hero-warp .hero-shape6 {
  position: absolute;
  bottom: 325px;
  left: 10%;
  animation: simple-move 4s 1s linear infinite alternate;
}
.hero-warp .hero-shape7 {
  position: absolute;
  bottom: 422px;
  left: 36%;
  animation: simple-move 4s 1s linear infinite alternate;
}
.hero-warp .hero-shape8 {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
  animation: rotateme 40s 2s linear infinite alternate;
}
.hero-warp .hero-shape9 {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: -1;
}
.hero-warp .hero-shape10 {
  position: absolute;
  bottom: 294px;
  right: 9%;
}
.hero-warp .hero-shape11 {
  position: absolute;
  bottom: 335px;
  right: 6.5%;
  animation: simple-move 4s 1s linear infinite alternate;
}
.hero-warp .hero-shape-last1 {
  position: absolute;
  left: 0;
  top: 36%;
  animation: movebounce 4s 1s linear infinite alternate;
}

.hero-image {
  position: relative;
  text-align: center;
}
.hero-image .congrats-card {
  position: absolute;
  left: -5px;
  top: 25%;
}
.hero-image .congrats-card .congrats {
  position: relative;
  text-align: start;
  box-shadow: 0px 7px 30px 13px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 28px;
  padding-right: 28px;
}
.hero-image .congrats-card .congrats .icon {
  position: absolute;
  right: 22px;
  top: -30px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  background: #F9F9F9;
}
.hero-image .congrats-card h6 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-image .free-card {
  top: 47%;
  right: -14px;
  position: absolute;
  text-align: start;
  box-shadow: 0px 7px 30px 13px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 22px;
  padding-right: 22px;
}
.hero-image .free-card .icon {
  width: 60px;
  height: 60px;
  background: #F8F8F8;
  border-radius: 5px;
  text-align: center;
  line-height: 60px;
}
.hero-image .free-card .content {
  margin-left: 20px;
}
.hero-image .free-card .content h5 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 2px;
}

.hero-content {
  margin-bottom: 80px;
}
.hero-content .title {
  font-family: "Fira Sans";
  font-weight: 500;
  color: #FD4045;
  display: block;
  margin-bottom: 8px;
}
.hero-content h1 {
  font-weight: 900;
  font-size: 70px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.hero-content p {
  max-width: 680px;
}
.hero-content .hero-btn {
  margin-top: 30px;
}
.hero-content .hero-btn .style2 {
  margin-left: 20px;
  color: #FD4045;
}
.hero-content .hero-btn .style2:hover {
  color: #ffffff;
}

/*
Partner Warp  Style
======================================================*/
.partner-logo-warp {
  margin-top: -310px;
  position: relative;
  z-index: 1;
  background-image: url(../images/svgs/slider-bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.partner-logo-warp h6 {
  font-weight: 600;
  font-size: 16px;
  z-index: 1;
  color: #555555;
  font-family: "Roboto";
  margin-bottom: 25px;
}

/*
Skilled Warp  Style
======================================================*/
.skill-card {
  margin-bottom: 25px;
}
.skill-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  border-radius: 50%;
  text-align: center;
  line-height: 68px;
  color: #ffffff;
  font-size: 30px;
}
.skill-card .content {
  padding-left: 20px;
}
.skill-card .content h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.skill-card .content h4 a {
  color: #222222;
}
.skill-card .content h4 a:hover {
  color: #FD4045;
}
.skill-card .content .view {
  font-weight: 500;
  color: #222222;
}
.skill-card .content .view i {
  position: relative;
  top: 2px;
  font-size: 19px;
  line-height: 1;
  left: 2px;
}
.skill-card .content .view:hover {
  color: #FD4045;
}

/*
Categories Warp  Style
======================================================*/
.categories-card {
  margin-bottom: 30px;
  background: #F8F8F8;
  border-radius: 5px;
  padding: 40px;
  z-index: 1;
  position: relative;
  transition: all ease 0.5s;
}
.categories-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  border-radius: 5px;
  height: 100%;
  width: 0;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  opacity: 0;
  z-index: -1;
}
.categories-card:hover::before {
  width: 100%;
  opacity: 1;
}
.categories-card:hover .content h4 a {
  color: #ffffff;
}
.categories-card:hover .content p {
  color: #ffffff;
}
.categories-card .icon {
  height: 70px;
  width: 70px;
  background-color: #ffffff;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
}
.categories-card .content {
  padding-left: 20px;
}
.categories-card .content h4 {
  font-size: 22px;
  margin-bottom: 5px;
}
.categories-card .content h4 a {
  color: #222222;
  transition: all ease 0.5s;
}
.categories-card .content p {
  transition: all ease 0.5s;
}

.category-warp {
  position: relative;
}
.category-warp .categories-shape1 {
  position: absolute;
  top: 100px;
  left: 9%;
}
.category-warp .categories-shape2 {
  position: absolute;
  bottom: 170px;
  right: 7%;
}

/*
Expert Warp  Style
======================================================*/
.expert-warp {
  background: #F8F8F8;
  position: relative;
}
.expert-warp.style2 {
  background: #ffffff;
}
.expert-warp.style2 .expert-content .expert-list li .icon {
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.07);
}
.expert-warp .through-shape {
  position: absolute;
  bottom: 75px;
  right: 17%;
}

.expert-content {
  padding-left: 40px;
  margin-right: -40px;
}
.expert-content h2 {
  margin-bottom: 20px;
}
.expert-content h2 .section-title-shape {
  position: absolute;
  bottom: 10px;
  right: 42%;
}
.expert-content .expert-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.expert-content .expert-list li {
  position: relative;
}
.expert-content .expert-list li .icon {
  width: 60px;
  height: 60px;
  color: #FD4045;
  background: #ffffff;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.03);
  position: absolute;
  left: 0;
  z-index: 1;
  overflow: hidden;
  transition: all ease 0.5s;
}
.expert-content .expert-list li .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 0;
  z-index: -1;
  border-radius: 50%;
  width: 100%;
  opacity: 0;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.expert-content .expert-list li .content {
  padding-left: 85px;
}
.expert-content .expert-list li .content h5 {
  font-size: 22px;
  margin-bottom: 5px;
}
.expert-content .expert-list li .content p {
  margin-bottom: 0;
}
.expert-content .expert-list:hover li .icon {
  color: #ffffff;
}
.expert-content .expert-list:hover li .icon::before {
  height: 100%;
  opacity: 1;
}

.expert-image {
  padding-left: 112px;
  padding-right: 15px;
  padding-bottom: 30px;
  position: relative;
}
.expert-image::before {
  content: "";
  position: absolute;
  bottom: 60px;
  left: -100%;
  right: 100px;
  height: 46%;
  background: rgba(253, 64, 69, 0.08);
}
.expert-image .expert-box {
  position: absolute;
  padding: 40px 48px;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.expert-image .expert-box h1 {
  display: flex;
  align-items: end;
  font-weight: 800;
  font-family: "Roboto";
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
}
.expert-image .expert-box h1 p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  color: #E8E8E8;
  position: relative;
  top: -5px;
  padding-left: 15px;
}
.expert-image .expert-box .expert-box-shape1 {
  position: absolute;
  top: -39px;
  right: 0;
}
.expert-image .expert-box .inner-box {
  position: relative;
}

/*
Explore Warp  Style
======================================================*/
.explore-card {
  margin-bottom: 25px;
  transition: all ease 0.5s;
}
.explore-card .content {
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  background: #F8F8F8;
  border-radius: 0px 0px 5px 5px;
}
.explore-card .content .review {
  margin-bottom: 12px;
}
.explore-card .content .review i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.explore-card .content .review p {
  position: relative;
  bottom: -3px;
  left: 8px;
  font-size: 14px;
}
.explore-card .content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.explore-card .content h3 a {
  color: #222222;
}
.explore-card .content h3 a:hover {
  color: #FD4045;
}
.explore-card .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.explore-card .content ul li {
  display: inline-block;
  padding-right: 25px;
}
.explore-card .content ul li:last-child {
  padding: 0;
}
.explore-card .content ul li img {
  position: relative;
  top: -3px;
}
.explore-card .content .man-details {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(248, 233, 234, 0.6);
  border-radius: 5px;
}
.explore-card .content .man-details p {
  color: #222222;
  margin-left: 8px;
}
.explore-card .content .man-details .image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.explore-card .content .man-details span {
  font-weight: 700;
  font-size: 18px;
  color: #FD4045;
}
.explore-card:hover {
  transform: translateY(-7px);
}

.explore-tab-content {
  margin-top: 70px;
}

.explore-nav-pills {
  justify-content: end;
  margin-top: -105px;
}
.explore-nav-pills .nav-link {
  transition: all ease 0.5s;
  font-weight: 500;
  border-radius: 60px;
  color: #222222;
  padding: 18px 35px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.explore-nav-pills .nav-link:focus-visible {
  outline: 0;
  box-shadow: unset;
}
.explore-nav-pills .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;
  z-index: -1;
  width: 100%;
  border-radius: 60px;
  transition: all ease 0.5s;
  opacity: 0;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.explore-nav-pills .nav-link.active {
  border: 0;
  padding: 18px 35px;
  border-radius: 50%;
  box-shadow: 0px 0px 50px 2px rgba(255, 85, 56, 0.15);
  border-radius: 60px;
  background-color: transparent;
}
.explore-nav-pills .nav-link.active::before {
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  opacity: 1;
  height: 100%;
}
.explore-nav-pills .nav-link:hover {
  color: #ffffff;
}
.explore-nav-pills .nav-link:hover::before {
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  opacity: 1;
  height: 100%;
}

.explore-warp {
  position: relative;
}
.explore-warp .explore-shape1 {
  position: absolute;
  top: 64%;
  left: 8%;
}
.explore-warp .explore-shape2 {
  position: absolute;
  right: 10%;
  top: 30%;
}
.explore-warp .explore-link {
  margin-top: 20px;
  text-align: center;
}
.explore-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.explore-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}

/*
Instant Warp  Style
======================================================*/
.instant-warp {
  position: relative;
  background: #F8F8F8;
  padding-top: 30px;
  padding-bottom: 30px;
}
.instant-warp .instant-shape1 {
  position: absolute;
  right: 31%;
  top: -20px;
  animation: simple-move 4s 1s linear infinite alternate;
}

.instant-content {
  padding-top: 65px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.instant-content .single-section h2 .section-title-shape {
  position: absolute;
  bottom: 5px;
  right: 50%;
  animation: simple-move 4s 1s linear infinite alternate;
}

.video-image {
  position: relative;
  text-align: center;
  border-radius: 5px;
  margin-right: 36px;
  z-index: 1;
  transform: rotate(-30deg);
}
.video-image img {
  border-radius: 5px;
}
.video-image .rounded-circle {
  position: absolute;
  width: 60px;
  font-size: 25px;
  height: 60px;
  line-height: 63px;
  background: #ffffff;
  color: #FD4045;
  transform: rotate(36deg);
  top: 39%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transition: all ease 0.5s;
  cursor: pointer;
}
.video-image .rounded-circle:hover {
  background-color: #FD4045;
  color: #ffffff;
}

/*
Choose Warp  Style
======================================================*/
.choose-content h2 .section-title-shape {
  bottom: 8px;
}
.choose-content .choose-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}
.choose-content .choose-list li {
  position: relative;
}
.choose-content .choose-list li .icon {
  width: 60px;
  height: 60px;
  color: #ffffff;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.03);
  position: absolute;
  left: 0;
  z-index: 1;
  overflow: hidden;
  transition: all ease 0.5s;
}
.choose-content .choose-list li .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 0;
  z-index: -1;
  border-radius: 50%;
  width: 100%;
  opacity: 0;
  transition: all ease 0.5s;
  background: #ffffff;
}
.choose-content .choose-list li .content {
  padding-left: 85px;
}
.choose-content .choose-list li .content h5 {
  font-size: 22px;
  margin-bottom: 8px;
}
.choose-content .choose-list li .content p {
  margin-bottom: 0;
}
.choose-content .choose-list:hover li .icon {
  color: #FD4045;
}
.choose-content .choose-list:hover li .icon::before {
  height: 100%;
  opacity: 1;
}

.choose-widget {
  background: #F8F8F8;
  border-radius: 5px;
  padding: 60px;
  margin-left: 60px;
  position: relative;
}
.choose-widget .choose-shape2 {
  position: absolute;
  right: -50px;
  top: 40%;
  z-index: -1;
  animation: movebounce 4s 1s linear infinite alternate;
}
.choose-widget .choose-item {
  background-color: #ffffff;
  margin-bottom: 25px;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 85px;
  padding-right: 50px;
}
.choose-widget .choose-item:last-child {
  margin-bottom: 0;
}
.choose-widget .choose-item .icon {
  position: relative;
  color: #FD4045;
  margin-right: -2px;
  width: 60px;
  z-index: 1;
  line-height: 1;
}
.choose-widget .choose-item .icon i {
  font-size: 45px;
}
.choose-widget .choose-item .icon .choose-shape1 {
  position: absolute;
  left: -26px;
  top: 6px;
  opacity: 80%;
  z-index: -1;
}
.choose-widget .choose-item h1 {
  font-size: 55px;
  line-height: 1;
  display: flex;
  align-items: end;
}
.choose-widget .choose-item h1 span {
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  position: relative;
  top: -8px;
  left: 10px;
}

/*
Popular Warp  Style
======================================================*/
.popular-warp {
  background: #F8F8F8;
  position: relative;
}
.popular-warp .explore-link {
  margin-top: 50px;
  text-align: center;
}
.popular-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.popular-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.popular-warp .popular-shape1 {
  position: absolute;
  top: -30px;
  left: 30%;
  animation: simple-move 4s 1s linear infinite alternate;
}
.popular-warp .popular-shape2 {
  position: absolute;
  top: 50%;
  right: 10%;
  animation: movebounce 4s 1s linear infinite alternate;
}

.popular-widget {
  background-position: center center;
  background-repeat: repeat;
  background-size: cover;
  height: 100%;
  border-radius: 5px;
  width: 76%;
  position: relative;
  margin-right: 100px;
}
.popular-widget.bg-1 {
  background-image: url(../images/instants/popular1.jpg);
}
.popular-widget.bg-2 {
  background-image: url(../images/instants/popular2.jpg);
}
.popular-widget .content {
  margin-right: -140px;
  margin-left: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  background: #ffffff;
  border-radius: 0px 0px 5px 5px;
}
.popular-widget .content .review {
  margin-bottom: 12px;
}
.popular-widget .content .review i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.popular-widget .content .review p {
  position: relative;
  bottom: -3px;
  left: 8px;
  font-size: 14px;
}
.popular-widget .content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.popular-widget .content h3 a {
  color: #222222;
}
.popular-widget .content h3 a:hover {
  color: #FD4045;
}
.popular-widget .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.popular-widget .content ul li {
  display: inline-block;
  padding-right: 25px;
}
.popular-widget .content ul li img {
  position: relative;
  top: -1px;
}
.popular-widget .content .man-details {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(248, 233, 234, 0.6);
  border-radius: 5px;
}
.popular-widget .content .man-details p {
  color: #222222;
  margin-left: 8px;
}
.popular-widget .content .man-details .image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.popular-widget .content .man-details span {
  font-weight: 700;
  font-size: 18px;
  color: #FD4045;
}
.popular-widget .popular-video-warp {
  position: relative;
}
.popular-widget .rounded-circle {
  position: absolute;
  width: 60px;
  font-size: 25px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  background: #ffffff;
  color: #FD4045;
  top: -25px;
  left: 70px;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transition: all ease 0.5s;
  cursor: pointer;
}
.popular-widget .rounded-circle:hover {
  background-color: #FD4045;
  color: #ffffff;
}

/*
Testimonial Warp  Style
======================================================*/
.testimonial-slider-warp {
  position: relative;
  margin-right: -40px;
}
.testimonial-slider-warp .swiper-btn .swiper-button-next,
.testimonial-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
  display: block;
  right: 0;
  left: auto;
}
.testimonial-slider-warp .swiper-btn .swiper-button-next::after,
.testimonial-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.testimonial-slider-warp .swiper-btn .swiper-button-next::before,
.testimonial-slider-warp .swiper-btn .swiper-button-prev::before {
  position: absolute;
  display: block;
  color: #222222;
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.5s;
}
.testimonial-slider-warp .swiper-btn .swiper-button-next:hover::before,
.testimonial-slider-warp .swiper-btn .swiper-button-prev:hover::before {
  color: #FD4045;
}
.testimonial-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: 38px;
  top: 70%;
}
.testimonial-slider-warp .swiper-btn .swiper-button-next:before {
  font-family: flaticon_mycollection !important;
  font-size: 29px;
  content: "\f137";
}
.testimonial-slider-warp .swiper-btn .swiper-button-prev {
  left: auto;
  right: 38px;
  top: 24%;
}
.testimonial-slider-warp .swiper-btn .swiper-button-prev:before {
  font-family: flaticon_mycollection !important;
  font-size: 29px;
  content: "\f12d";
}

.testimonial-warp {
  position: relative;
  overflow: hidden;
}
.testimonial-warp .testimonial-shape1 {
  position: absolute;
  top: 22%;
  right: 46%;
}
.testimonial-warp .testimonial-shape2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.testimonial-warp .testimonial-shape3 {
  position: absolute;
  top: 30%;
  right: 14%;
}
.testimonial-warp .testimonial-shape4 {
  position: absolute;
  top: 31%;
  right: 35%;
}

.testimonial-content {
  padding-top: 100px;
  padding-bottom: 100px;
}
.testimonial-content h2 {
  padding-right: 50px;
  margin-bottom: 15px;
}
.testimonial-content h2 .section-title-shape {
  bottom: 60px;
  right: 36%;
}
.testimonial-content .testimonial-card {
  background: #F8F8F8;
  border-radius: 5px;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 45px;
  padding-right: 90px;
  margin-right: 50px;
  position: relative;
}
.testimonial-content .testimonial-card .ri-star-fill {
  color: #FFC107;
}
.testimonial-content .testimonial-card p {
  margin-top: 12px;
  margin-bottom: 20px;
}
.testimonial-content .testimonial-card .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial-content .testimonial-card .details h5 {
  font-size: 22px;
  margin-bottom: 5px;
}
.testimonial-content .testimonial-card .testimonial1 {
  position: absolute;
  right: -40px;
  width: 90px;
  top: 50%;
  transform: translateY(-55px);
  height: 90px;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid #EEEEEE;
}

/*
Access Warp  Style
======================================================*/
.access-warp {
  position: relative;
  background: #21225F;
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 1;
}
.access-warp .access-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.access-content .single-section h2 {
  color: #ffffff;
  padding-bottom: 0;
  margin-bottom: 0;
}
.access-content .single-section h2 .section-title-shape {
  bottom: -10px;
  right: 39%;
}
.access-content .default-btn:hover {
  color: #ffffff;
}

/*
Access Warp  Style
======================================================*/
.blog-card {
  margin-bottom: 25px;
  transition: all ease 0.5s;
}
.blog-card .content {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 35px;
  padding-right: 35px;
  background: #F8F8F8;
  border-radius: 0px 0px 5px 5px;
}
.blog-card .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.blog-card .content h3 a {
  color: #222222;
}
.blog-card .content h3 a:hover {
  color: #FD4045;
}
.blog-card .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.blog-card .content ul li {
  display: inline-block;
  padding-right: 20px;
}
.blog-card .content ul li span {
  font-size: 14px;
  color: #888888;
}
.blog-card .content ul li:last-child {
  padding-right: 0;
}
.blog-card .content ul li img {
  position: relative;
  top: -2px;
  padding-right: 4px;
}
.blog-card .content p {
  margin-bottom: 20px;
}
.blog-card.style2 .content h3 {
  margin-bottom: 18px;
}
.blog-card:hover {
  transform: translateY(-7px);
}

.blog-warp {
  position: relative;
}
.blog-warp .explore-link {
  margin-top: 15px;
  text-align: center;
}
.blog-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.blog-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.blog-warp .blog-shape1 {
  position: absolute;
  top: 10%;
  right: 15%;
}
.blog-warp .blog-shape2 {
  position: absolute;
  bottom: 20%;
  left: 8%;
}
.blog-warp .last-blog-shape {
  position: absolute;
  bottom: 70px;
  left: 22%;
}

.blog-style2-warp {
  position: relative;
}
.blog-style2-warp .explore-link {
  margin-top: 25px;
  text-align: center;
}
.blog-style2-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.blog-style2-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.blog-style2-warp .last-blog-shape {
  position: absolute;
  bottom: 70px;
  left: 22%;
}

/*
Instructor Warp  Style
======================================================*/
.inner-instructor {
  background: #F8F8F8;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  padding-top: 38px;
  padding-left: 20px;
}
.inner-instructor .map {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.inner-instructor .instructor-shape1 {
  position: absolute;
  bottom: 30px;
  right: 20%;
}
.inner-instructor .instructor-shape2 {
  position: absolute;
  top: -35px;
  right: 80px;
}

.instructor-content {
  margin-bottom: 38px;
}
.instructor-content h2 {
  padding-bottom: 5px;
}
.instructor-content h2 .section-title-shape {
  bottom: 0;
  right: 50%;
}
.instructor-content p {
  margin-bottom: 25px;
}

.instructor-image {
  padding-right: 30px;
}

/*
Footer Warp  Style
======================================================*/
.footer-warp {
  position: relative;
  background: #222222;
}
.footer-warp .footer-shape {
  position: absolute;
  bottom: 100px;
  right: 150px;
}

.footer-widget {
  margin-bottom: 25px;
}
.footer-widget .footer-logo {
  margin-bottom: 15px;
  display: inline-block;
}
.footer-widget p {
  color: #CCCCCC;
}
.footer-widget .social-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}
.footer-widget .social-list li {
  display: inline-block;
  padding-right: 10px;
}
.footer-widget .social-list li:last-child {
  padding-right: 0;
}
.footer-widget .social-list li a {
  height: 50px;
  width: 50px;
  line-height: 58px;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  background: #383838;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}
.footer-widget .social-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.footer-widget .social-list li a:hover::before {
  width: 100%;
  opacity: 1;
  left: 0;
}
.footer-widget h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 25px;
}
.footer-widget .footer-link {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-widget .footer-link li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
}
.footer-widget .footer-link li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-link li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #FA8440;
}
.footer-widget .footer-link li a {
  color: #CCCCCC;
}
.footer-widget .footer-link li a:hover {
  color: #FD4045;
}
.footer-widget .input-box {
  margin-top: 12px;
}
.footer-widget .input-box .form-control {
  height: 60px;
  padding-left: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background-color: transparent;
  transition: all ease 0.5s;
  color: #EEEEEE;
  margin-bottom: 20px;
}
.footer-widget .input-box .form-control:focus {
  box-shadow: unset;
}
.footer-widget .input-box .form-control:focus::-moz-placeholder {
  color: transparent;
}
.footer-widget .input-box .form-control:focus::placeholder {
  color: transparent;
}
.footer-widget .input-box .form-control::-moz-placeholder {
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: rgba(255, 255, 255, 0.3);
}
.footer-widget .input-box .form-control::placeholder {
  transition: all ease 0.5s;
  color: rgba(255, 255, 255, 0.3);
}
.footer-widget .input-box .default-btn {
  width: 100%;
}
.footer-widget .footer-address {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-widget .footer-address li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
}
.footer-widget .footer-address li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-address li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #FA8440;
}
.footer-widget .footer-address li a {
  color: #CCCCCC;
}
.footer-widget .footer-address li a:hover {
  color: #FD4045;
}
.footer-widget .footer-address li span {
  color: #CCCCCC;
}

.col-lg-3:nth-child(2) .footer-widget {
  margin-left: 50px;
}
.col-lg-3:nth-child(3) .footer-widget {
  margin-left: -15px;
}
.col-lg-3:nth-child(4) .footer-widget {
  margin-left: 45px;
  margin-right: -10px;
}

/*
Copyright Warp  Style
======================================================*/
.copyright-warp {
  position: relative;
  background: #222222;
}

.inner-copy-right {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.inner-copy-right p {
  color: #CCCCCC;
}
.inner-copy-right p a {
  font-weight: 600;
  color: #ffffff;
}
.inner-copy-right .copy-link {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.inner-copy-right .copy-link li {
  display: inline-block;
  padding-right: 30px;
}
.inner-copy-right .copy-link li:last-child {
  padding-right: 0;
}
.inner-copy-right .copy-link li a {
  color: #CCCCCC;
}
.inner-copy-right .select-warp {
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 55px;
  padding-right: 25px;
  background: #383838;
  border-radius: 60px;
}
.inner-copy-right .select-warp .form-select {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #CCCCCC;
}
.inner-copy-right .select-warp .form-select:focus {
  box-shadow: unset;
}
.inner-copy-right .select-warp i {
  position: absolute;
  left: 28px;
  color: #CCCCCC;
  font-size: 20px;
}
.inner-copy-right .select-warp option {
  background-color: #383838;
  padding: 15px !important;
}

/*
Hero Style2 Warp Style
======================================================*/
.hero-style2-warp {
  position: relative;
  padding-top: 100px;
  padding-bottom: 70px;
}
.hero-style2-warp .hero-style2-map {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.hero-style2-warp p {
  padding-left: 70px;
  line-height: 30px;
}

.hero-style2-content .title {
  font-weight: 500;
  color: #FD4045;
  padding: 8px 12px;
  display: inline-block;
  background: #F8F8F8;
  border-radius: 5px;
  margin-bottom: 12px;
}
.hero-style2-content h1 {
  font-weight: 900;
  font-size: 60px;
  letter-spacing: 0.05em;
}

/*
Slider Warp Style
======================================================*/
.learn-slider-warp {
  position: relative;
}
.learn-slider-warp .swiper-btn .swiper-button-next,
.learn-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
}
.learn-slider-warp .swiper-btn .swiper-button-next::after,
.learn-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.learn-slider-warp .swiper-btn .swiper-button-next::before,
.learn-slider-warp .swiper-btn .swiper-button-prev::before {
  position: absolute;
  width: 70px;
  display: block;
  height: 70px;
  line-height: 73px;
  color: #222222;
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: #ffffff;
}
.learn-slider-warp .swiper-btn .swiper-button-next:hover::before,
.learn-slider-warp .swiper-btn .swiper-button-prev:hover::before {
  background: #FD4045;
  color: #ffffff;
}
.learn-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: -12px;
}
.learn-slider-warp .swiper-btn .swiper-button-next:before {
  font-family: flaticon_mycollection !important;
  font-size: 29px;
  content: "\f13f";
}
.learn-slider-warp .swiper-btn .swiper-button-prev {
  left: -12px;
  right: auto;
}
.learn-slider-warp .swiper-btn .swiper-button-prev:before {
  font-family: flaticon_mycollection !important;
  font-size: 32px;
  content: "\f154";
}

.slider-warp .input-box {
  width: 800px;
  height: 100px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 999;
  margin-bottom: -50px;
}
.slider-warp .input-box .form-control {
  height: 100%;
  width: 100%;
  padding-left: 60px;
}
.slider-warp .input-box .form-control:focus {
  box-shadow: unset;
  border-color: #FD4045;
}
.slider-warp .input-box .form-control:focus::-moz-placeholder {
  color: transparent;
}
.slider-warp .input-box .form-control:focus::placeholder {
  color: transparent;
}
.slider-warp .input-box .form-control:focus-visible {
  outline: 0;
}
.slider-warp .input-box .form-control::-moz-placeholder {
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.slider-warp .input-box .form-control::placeholder {
  transition: all ease 0.5s;
}
.slider-warp .input-box .default-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  bottom: 20px;
}
.slider-warp .input-box i {
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-9px);
}

/*
Management Warp Style
======================================================*/
.management-warp {
  background: #222222;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.management-warp .mc-shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.management-warp .mc-shape2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
.management-warp .section-title h2 {
  color: #ffffff;
}

.management-widget {
  position: relative;
  padding-left: 175px;
}
.management-widget .management-shape1 {
  position: absolute;
  left: 0;
  top: 0;
  animation: rotateme 40s 2s linear infinite alternate;
}

.management-style2-widget {
  padding-right: 175px;
  position: relative;
}
.management-style2-widget .view {
  height: 150px;
  width: 150px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(90deg, #FD4045 -7.5%, #FA8440 105.83%);
}

.management-box {
  border: 1px solid #383838;
  border-radius: 5px;
  margin-bottom: 25px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 10px;
  position: relative;
}
.management-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 5px;
  height: 100%;
  width: 0;
  z-index: -1;
  opacity: 0;
  transition: all ease 0.5s;
  border: solid 1px #FD4045;
}
.management-box:hover::before {
  width: 100%;
  opacity: 1;
}
.management-box .icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: #383838;
}
.management-box .content {
  padding-left: 20px;
}
.management-box .content p {
  color: #CCCCCC;
}
.management-box .content h3 {
  font-size: 22px;
  color: #ffffff;
}
.management-box .content h3 a {
  color: #ffffff;
}
.management-box .content h3 a:hover {
  color: #FD4045;
}

/*
Education Warp Style
======================================================*/
.educational-content {
  padding-left: 40px;
  margin-right: -40px;
}
.educational-content h2 .section-title-shape {
  position: absolute;
  bottom: 10px;
  right: 42%;
}
.educational-content .expert-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.educational-content .expert-list li {
  position: relative;
}
.educational-content .expert-list li .icon {
  width: 60px;
  height: 60px;
  color: #FD4045;
  background: #ffffff;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.03);
  position: absolute;
  left: 0;
  z-index: 1;
  overflow: hidden;
  transition: all ease 0.5s;
}
.educational-content .expert-list li .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 0;
  z-index: -1;
  border-radius: 50%;
  width: 100%;
  opacity: 0;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.educational-content .expert-list li .content {
  padding-left: 85px;
}
.educational-content .expert-list li .content h5 {
  font-size: 22px;
  margin-bottom: 5px;
}
.educational-content .expert-list li .content p {
  margin-bottom: 0;
}
.educational-content .expert-list:hover li .icon {
  color: #ffffff;
}
.educational-content .expert-list:hover li .icon::before {
  height: 100%;
  opacity: 1;
}

.education-image {
  padding-right: 10px;
  padding-bottom: 50px;
  position: relative;
}
.education-image .ed-content {
  display: inline-block;
  position: absolute;
  background: linear-gradient(90deg, #FD4045 0%, #FA8440 100%);
  border-radius: 5px;
  text-align: center;
  bottom: 0;
  right: 20%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 45px;
  padding-right: 45px;
}
.education-image .ed-content h1 {
  font-weight: 800;
  font-size: 60px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 2px;
}
.education-image .ed-content p {
  color: #EEEEEE;
}
.education-image img {
  border-radius: 5px;
}
.education-image .education2 {
  margin-left: -5px;
}

.educational-warp {
  position: relative;
}
.educational-warp .education-shape1 {
  position: absolute;
  top: 25%;
  z-index: -1;
  left: 14%;
}
.educational-warp .education-shape2 {
  position: absolute;
  top: 0;
  left: 40%;
}
.educational-warp .education-shape3 {
  position: absolute;
  bottom: 100px;
  right: 16%;
}

/*
Explore Style2 Warp Style
======================================================*/
.explore-slider-warp {
  position: relative;
}
.explore-slider-warp .swiper-btn .swiper-button-next,
.explore-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
}
.explore-slider-warp .swiper-btn .swiper-button-next::after,
.explore-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.explore-slider-warp .swiper-btn .swiper-button-next::before,
.explore-slider-warp .swiper-btn .swiper-button-prev::before {
  position: absolute;
  width: 60px;
  display: block;
  height: 60px;
  line-height: 63px;
  color: #222222;
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: #ffffff;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.07);
}
.explore-slider-warp .swiper-btn .swiper-button-next:hover::before,
.explore-slider-warp .swiper-btn .swiper-button-prev:hover::before {
  background: #FD4045;
  color: #ffffff;
}
.explore-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: -80px;
}
.explore-slider-warp .swiper-btn .swiper-button-next:before {
  font-family: flaticon_mycollection !important;
  font-size: 29px;
  content: "\f13f";
}
.explore-slider-warp .swiper-btn .swiper-button-prev {
  left: -80px;
  right: auto;
}
.explore-slider-warp .swiper-btn .swiper-button-prev:before {
  font-family: flaticon_mycollection !important;
  font-size: 32px;
  content: "\f154";
}

.explore-box {
  margin-bottom: 25px;
}
.explore-box .content {
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  background: #ffffff;
  border-radius: 0px 0px 5px 5px;
}
.explore-box .content .review {
  margin-bottom: 12px;
}
.explore-box .content .review i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.explore-box .content .review p {
  position: relative;
  bottom: -3px;
  left: 8px;
  font-size: 14px;
}
.explore-box .content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.explore-box .content h3 a {
  color: #222222;
}
.explore-box .content h3 a:hover {
  color: #FD4045;
}
.explore-box .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.explore-box .content ul li {
  display: inline-block;
  padding-right: 25px;
}
.explore-box .content ul li:last-child {
  padding-right: 0;
}
.explore-box .content ul li img {
  position: relative;
  top: -1px;
}
.explore-box .content .man-details {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(248, 233, 234, 0.6);
  border-radius: 5px;
}
.explore-box .content .man-details p {
  color: #222222;
  margin-left: 8px;
}
.explore-box .content .man-details .image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.explore-box .content .man-details span {
  font-weight: 700;
  font-size: 18px;
  color: #FD4045;
}
.explore-box .image {
  position: relative;
  z-index: 1;
}
.explore-box .image .rounded-circle {
  position: absolute;
  width: 60px;
  font-size: 25px;
  height: 60px;
  line-height: 63px;
  background: #ffffff;
  color: #FD4045;
  text-align: center;
  bottom: -30px;
  right: 50px;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  transition: all ease 0.5s;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.06);
}
.explore-box .image .rounded-circle:hover {
  color: #ffffff;
  background-color: #FD4045;
}
.explore-box .image .explore-box-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all ease 0.5s;
}
.explore-box:hover .image .rounded-circle {
  opacity: 1;
}
.explore-box:hover .image .explore-box-shape {
  opacity: 1;
}

.explore-style2-warp {
  background: #F8F8F8;
}
.explore-style2-warp .explore-link {
  margin-top: 20px;
  text-align: center;
}
.explore-style2-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.explore-style2-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.explore-style2-warp .explore-nav2-pills {
  margin-top: -110px;
  justify-content: end;
}
.explore-style2-warp .explore-nav2-pills .nav-link {
  transition: all ease 0.5s;
  font-weight: 500;
  border-radius: 60px;
  color: #222222;
  padding: 5px 18px;
  margin-bottom: -20px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.explore-style2-warp .explore-nav2-pills .nav-link:focus-visible {
  outline: 0;
  box-shadow: unset;
}
.explore-style2-warp .explore-nav2-pills .nav-link.active {
  color: #FD4045;
  background-color: transparent;
}
.explore-style2-warp .explore-nav2-pills .nav-link:hover {
  color: #FD4045;
}
.explore-style2-warp .explore-nav2-pills .nav-item {
  position: relative;
  bottom: -15px;
}
.explore-style2-warp .section-warp {
  margin-bottom: 45px;
}

/*
Development Warp Style
======================================================*/
.inner-development-warp {
  background: #F8F8F8;
  position: relative;
}
.inner-development-warp .development1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.inner-development-warp .development-content {
  padding-left: 85px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.inner-development-warp .development-content h2 {
  padding-bottom: 5px;
}
.inner-development-warp .development-content p {
  margin-right: -90px;
}
.inner-development-warp .development-content .default-btn {
  margin-top: 12px;
}
.inner-development-warp .development-shape1 {
  position: absolute;
  bottom: 150px;
  left: -40px;
}
.inner-development-warp .development-shape2 {
  position: absolute;
  left: 37%;
  bottom: 90px;
}
.inner-development-warp .development-shape3 {
  position: absolute;
  top: -30px;
  right: 100px;
}

/*
Choose Style2 Warp Style
======================================================*/
.choose-image {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-right: -60px;
}
.choose-image::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -10px;
  bottom: 25%;
  right: -10px;
  z-index: -1;
  background: #F8F8F8;
  border-radius: 5px;
}
.choose-image .choose-shape3 {
  position: absolute;
  top: 190px;
  left: -77px;
  z-index: -1;
}

.choose-style2-content {
  padding-left: 120px;
}

/*
Access Style2 Warp Style
======================================================*/
.access-style2-warp {
  background: #222222;
}

/*
Global Warp Style
======================================================*/
.global-slider-warp {
  position: relative;
}
.global-slider-warp .swiper-btn .swiper-button-next,
.global-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
}
.global-slider-warp .swiper-btn .swiper-button-next::after,
.global-slider-warp .swiper-btn .swiper-button-prev::after {
  display: none;
}
.global-slider-warp .swiper-btn .swiper-button-next::before,
.global-slider-warp .swiper-btn .swiper-button-prev::before {
  position: absolute;
  width: 60px;
  display: block;
  height: 60px;
  line-height: 63px;
  color: #222222;
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: #ffffff;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.07);
}
.global-slider-warp .swiper-btn .swiper-button-next:hover::before,
.global-slider-warp .swiper-btn .swiper-button-prev:hover::before {
  background: #FD4045;
  color: #ffffff;
}
.global-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: -80px;
}
.global-slider-warp .swiper-btn .swiper-button-next:before {
  font-family: flaticon_mycollection !important;
  font-size: 29px;
  content: "\f13f";
}
.global-slider-warp .swiper-btn .swiper-button-prev {
  left: -80px;
  right: auto;
}
.global-slider-warp .swiper-btn .swiper-button-prev:before {
  font-family: flaticon_mycollection !important;
  font-size: 32px;
  content: "\f154";
}
.global-slider-warp .swiper-wrapper {
  margin-left: 15px;
}

.global-widget .global-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  margin-right: -20px;
  position: relative;
}
.global-widget .global-image.bg-1 {
  background-image: url(../images/instants/global1.jpg);
}
.global-widget .global-image.bg-2 {
  background-image: url(../images/instants/global2.jpg);
}
.global-widget .global-image .rounded-circle {
  position: absolute;
  width: 60px;
  font-size: 25px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  background: #ffffff;
  color: #FD4045;
  top: 50%;
  transform: translateY(-30px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transition: all ease 0.5s;
  cursor: pointer;
}
.global-widget .global-image .rounded-circle:hover {
  background-color: #FD4045;
  color: #ffffff;
}
.global-widget .content {
  margin-bottom: 15px;
  margin-top: 15px;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  background: #ffffff;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0px 4px 30px rgba(34, 34, 34, 0.05);
}
.global-widget .content.content2 {
  background: #F8F8F8;
}
.global-widget .content .review {
  margin-bottom: 12px;
}
.global-widget .content .review i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.global-widget .content .review p {
  position: relative;
  bottom: -3px;
  left: 8px;
  font-size: 14px;
}
.global-widget .content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.global-widget .content h3 a {
  color: #222222;
}
.global-widget .content h3 a:hover {
  color: #FD4045;
}
.global-widget .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.global-widget .content ul li {
  display: inline-block;
  padding-right: 25px;
}
.global-widget .content ul li img {
  position: relative;
  top: -1px;
}
.global-widget .content .man-details {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(248, 233, 234, 0.6);
  border-radius: 5px;
}
.global-widget .content .man-details p {
  color: #222222;
  margin-left: 8px;
}
.global-widget .content .man-details .image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.global-widget .content .man-details span {
  font-weight: 700;
  font-size: 18px;
  color: #FD4045;
}

.global-warp {
  background: #F8F8F8;
}
.global-warp .explore-link {
  margin-top: 35px;
  text-align: center;
}
.global-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.global-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.global-warp.style2 {
  background-color: #ffffff;
}

/*
Teaching Warp Style
======================================================*/
.inner-teaching {
  position: relative;
  background: #F8F8F8;
  border-radius: 5px;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 100px;
}
.inner-teaching .teaching1 {
  position: absolute;
  bottom: 0;
  right: 80px;
}
.inner-teaching .teaching-map {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.inner-teaching .teaching-shape1 {
  position: absolute;
  left: -35px;
  bottom: 137px;
}
.inner-teaching .teaching-shape2 {
  position: absolute;
  bottom: -30px;
  left: 40%;
}
.inner-teaching .teaching-shape3 {
  position: absolute;
  top: 37px;
  right: 34%;
}
.inner-teaching .teaching-shape4 {
  position: absolute;
  top: 100px;
  right: 70px;
}

.teaching-content {
  max-width: 800px;
}
.teaching-content h2 {
  padding-bottom: 5px;
}
.teaching-content .default-btn {
  margin-top: 12px;
}

/*
Counter Warp Style
======================================================*/
.inner-counter-warp {
  position: relative;
  background: linear-gradient(90deg, #FD4045 0%, #FA8440 100%);
  border-radius: 5px;
  padding-top: 100px;
  padding-bottom: 75px;
  padding-right: 100px;
  padding-left: 100px;
  margin-bottom: -140px;
  z-index: 1;
}

.counter-box {
  margin-bottom: 25px;
  position: relative;
  display: flex;
}
.counter-box .icon {
  position: relative;
  height: 50px;
  top: 10px;
  width: 50px;
  text-align: center;
  padding-left: 20px;
}
.counter-box .icon .counter-icon {
  position: absolute;
  height: 50px;
  width: 50px;
  left: 0;
  top: 0;
}
.counter-box .icon i {
  font-size: 50px;
  color: #ffffff;
}
.counter-box .content {
  margin-left: 40px;
}
.counter-box h1 {
  color: #ffffff;
  font-size: 55px;
  margin-bottom: 2px;
}
.counter-box p {
  color: #ffffff;
}

/*
Client Warp Style
======================================================*/
.saying-image {
  background-image: url(../images/testimonials/testimonial2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.saying-image.bg-2 {
  background-image: url(../images/testimonials/testimonial3.jpg);
}

.inner-client-warp {
  position: relative;
  background: #222222;
  overflow: hidden;
  padding-top: 240px;
  padding-bottom: 100px;
  padding-left: 65px;
  padding-right: 0;
}
.inner-client-warp.style2 {
  background: #F8F8F8;
}
.inner-client-warp.style2 .client-content h2 {
  color: #222222;
}
.inner-client-warp .client-shape1 {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.inner-client-warp .client-content {
  max-width: 745px;
}
.inner-client-warp .client-content h2 {
  color: #ffffff;
}

.testimonial-style2-warp {
  position: relative;
}
.testimonial-style2-warp .container-fluid {
  width: 100%;
}
.testimonial-style2-warp .last-testimonial-shape {
  position: absolute;
  right: 20%;
  bottom: -44px;
}
.testimonial-style2-warp.style2 .swiper-pagination .swiper-pagination-bullet {
  background: #BBBBBB !important;
}
.testimonial-style2-warp.style2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #FD4045 !important;
}
.testimonial-style2-warp .swiper-pagination {
  position: relative;
  top: 30px !important;
  margin-bottom: 25px;
}
.testimonial-style2-warp .swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  background: #343434;
  opacity: 1;
  height: 11px;
  width: 11px;
}
.testimonial-style2-warp .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.client-content {
  margin-bottom: 0;
}
.client-content .client-widget {
  display: flex;
  background: #343434;
  border-radius: 5px;
  padding: 45px;
  margin-top: 30px;
}
.client-content .client-widget.style2 {
  background: #ffffff;
}
.client-content .client-widget.style2 .content .details span {
  color: #555555;
}
.client-content .client-widget.style2 .content .details h5 {
  color: #222222;
}
.client-content .client-widget.style2 .content p {
  color: #555555;
}
.client-content .client-widget .image {
  width: 145px;
  height: 145px;
}
.client-content .client-widget .image img {
  width: 145px;
  height: 145px;
}
.client-content .client-widget .icon {
  margin-top: 15px;
}
.client-content .client-widget .icon i {
  color: #FFC107;
  font-size: 16px;
}
.client-content .client-widget .content {
  text-align: start;
  padding-left: 30px;
}
.client-content .client-widget .content .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.client-content .client-widget .content .details h5 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #ffffff;
}
.client-content .client-widget .content .details span {
  color: #CCCCCC;
}
.client-content .client-widget .content p {
  color: #CCCCCC;
  line-height: 30px;
}

/*
Blog Warp Style
======================================================*/
.blog-slider-warp {
  position: relative;
}
.blog-slider-warp .swiper-btn .swiper-button-next,
.blog-slider-warp .swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
}
.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::before,
.blog-slider-warp .swiper-btn .swiper-button-prev::before {
  position: absolute;
  width: 60px;
  display: block;
  height: 60px;
  line-height: 63px;
  color: #222222;
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: #ffffff;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.07);
}
.blog-slider-warp .swiper-btn .swiper-button-next:hover::before,
.blog-slider-warp .swiper-btn .swiper-button-prev:hover::before {
  background: #FD4045;
  color: #ffffff;
}
.blog-slider-warp .swiper-btn .swiper-button-next {
  left: auto;
  right: -80px;
}
.blog-slider-warp .swiper-btn .swiper-button-next:before {
  font-family: flaticon_mycollection !important;
  font-size: 29px;
  content: "\f13f";
}
.blog-slider-warp .swiper-btn .swiper-button-prev {
  left: -80px;
  right: auto;
}
.blog-slider-warp .swiper-btn .swiper-button-prev:before {
  font-family: flaticon_mycollection !important;
  font-size: 32px;
  content: "\f154";
}

.blog-widget .content {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 35px;
  padding-right: 35px;
  background: #F8F8F8;
  border-radius: 0px 0px 5px 5px;
}
.blog-widget .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.blog-widget .content h3 a {
  color: #222222;
}
.blog-widget .content h3 a:hover {
  color: #FD4045;
}
.blog-widget .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.blog-widget .content ul li {
  display: inline-block;
  padding-right: 20px;
}
.blog-widget .content ul li span {
  font-size: 14px;
  color: #888888;
}
.blog-widget .content ul li:last-child {
  padding-right: 0;
}
.blog-widget .content ul li img {
  position: relative;
  top: -2px;
  padding-right: 4px;
}
.blog-widget .content p {
  margin-bottom: 20px;
}

/*
Hero Style3 Warp Style
======================================================*/
.hero-style3-content .title {
  font-weight: 500;
  color: #FD4045;
  margin-bottom: 15px;
  display: block;
}
.hero-style3-content h1 {
  font-weight: 900;
  font-size: 70px;
  margin-bottom: 10px;
}
.hero-style3-content .hero-style3-btn {
  margin-top: 30px;
}
.hero-style3-content .hero-style3-btn .style2 {
  margin-left: 20px;
}

.hero-style3-warp {
  position: relative;
  padding-top: 80px;
  padding-bottom: 65px;
  background: #F8F8F8;
}
.hero-style3-warp .container-fluid {
  max-width: 1500px;
}
.hero-style3-warp .hero3-shape1 {
  position: absolute;
  top: 100px;
  left: 4%;
}
.hero-style3-warp .hero3-shape2 {
  position: absolute;
  top: 120px;
  left: 25%;
}
.hero-style3-warp .hero3-shape3 {
  position: absolute;
  top: 90px;
  left: 39%;
}
.hero-style3-warp .hero3-shape4 {
  position: absolute;
  top: 40px;
  left: 54%;
}
.hero-style3-warp .hero3-shape5 {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: -22px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
}
.hero-style3-warp .hero3-shape6 {
  position: absolute;
  right: 7%;
  top: 90px;
}
.hero-style3-warp .hero3-shape7 {
  position: absolute;
  right: 0;
  top: 40%;
}
.hero-style3-warp .hero3-shape8 {
  position: absolute;
  top: 75%;
  left: 43%;
}
.hero-style3-warp .hero3-shape9 {
  position: absolute;
  top: 63%;
  left: 5%;
}
.hero-style3-warp .hero3-shape10 {
  position: absolute;
  right: 100px;
  bottom: 100px;
}

.hero-style2-image {
  position: relative;
  text-align: center;
}
.hero-style2-image .congrats-card {
  display: flex;
  align-items: center;
  text-align: start;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 18px;
  padding-left: 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px 9px rgba(34, 34, 34, 0.05);
  border-radius: 5px;
  position: absolute;
  right: -1%;
  top: 50%;
}
.hero-style2-image .congrats-card .icon {
  text-align: center;
  font-size: 50px;
  color: #ffffff;
  line-height: 87px;
  width: 77px;
  height: 74px;
  background: #FA8440;
  border-radius: 5px;
}
.hero-style2-image .congrats-card .content {
  padding-left: 12px;
}
.hero-style2-image .people-platform {
  display: flex;
  bottom: -29px;
  text-align: start;
  left: 19%;
  transform: rotate(24deg);
  align-items: center;
  position: absolute;
  border: 1px solid #222222;
  border-radius: 5px;
  background-color: #ffffff;
  padding-top: 8px;
  padding-left: 8px;
  padding-right: 15px;
  padding-bottom: 8px;
  z-index: 2;
}
.hero-style2-image .people-platform .image-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.hero-style2-image .people-platform .image-list li {
  display: inline-block;
  margin-left: -12px;
}
.hero-style2-image .people-platform .image-list li:first-child {
  margin-left: 0;
}
.hero-style2-image .people-platform p {
  padding-left: 12px;
}
.hero-style2-image .people-platform p span {
  font-weight: 700;
  color: #222222;
}
.hero-style2-image .hero5 {
  margin-right: 36px;
}
.hero-style2-image .hero-chart {
  position: absolute;
  left: 107px;
  top: 28%;
}

/*
Better Warp Style
======================================================*/
.better-warp {
  position: relative;
  background: #222222;
  z-index: 1;
}
.better-warp .better-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.better-warp .section-title h2 {
  color: #ffffff;
}

.batter-box {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 40px 30px;
  margin-bottom: 25px;
}
.batter-box .icon {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  line-height: 68px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FD4045 -7.5%, #FA8440 105.83%);
}
.batter-box h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}
.batter-box p {
  color: #CCCCCC;
}

/*
Develop Warp Style
======================================================*/
.develop-widget {
  margin-bottom: 25px;
  padding-top: 45px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  background: #F8F8F8;
  border-radius: 5px;
  position: relative;
}
.develop-widget .content {
  max-width: 350px;
}
.develop-widget .content h4 {
  font-size: 26px;
  margin-bottom: 12px;
}
.develop-widget .content h4 span {
  color: #FA8440;
}
.develop-widget .content p {
  margin-bottom: 15px;
}
.develop-widget .develop1 {
  position: absolute;
  right: 2px;
  bottom: 0;
}
.develop-widget .develop2 {
  position: absolute;
  right: 2px;
  bottom: 0;
}
.develop-widget .develop-shape1 {
  position: absolute;
  left: 40%;
  bottom: 15px;
}
.develop-widget .develop-shape2 {
  position: absolute;
  right: 54%;
  bottom: 80px;
}

/*
Career Warp Style
======================================================*/
.career-image {
  padding-right: 135px;
  padding-bottom: 65px;
  position: relative;
}
.career-image .career2 {
  width: 330px;
  height: 287px;
  position: absolute;
  right: 50px;
  bottom: 0;
}
.career-image .trainer-box {
  top: 50px;
  left: -20px;
  position: absolute;
  border-radius: 5px;
  padding: 30px;
  background-color: #ffffff;
}
.career-image .trainer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 3px;
  border-radius: 5px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.career-image .trainer-box .icon {
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  line-height: 56px;
  font-size: 30px;
  background: linear-gradient(90deg, #FD4045 -7.5%, #FA8440 105.83%);
}
.career-image .trainer-box h1 {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 0;
  padding-left: 10px;
}
.career-image .trainer-box p {
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1;
}
.career-image .video-btn {
  position: absolute;
  top: 95px;
  right: 104px;
  width: 60px;
  height: 60px;
  font-size: 22px;
  color: #ffffff;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: #FD4045;
  transition: all ease 0.5s;
  cursor: pointer;
}
.career-image .video-btn:hover {
  background-color: #ffffff;
  color: #FD4045;
}
.career-image .video-btn::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  border-radius: 50%;
  background: rgba(253, 64, 69, 0.15);
  animation: ripple 5s linear infinite;
}
.career-image .career-shape1 {
  position: absolute;
  left: -35px;
  bottom: 174px;
}
.career-image .career-shape2 {
  position: absolute;
  left: 15%;
  bottom: 30px;
  z-index: -1;
}

.career-content .best-tag {
  background: #ffffff;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.03);
  border-radius: 5px;
  position: relative;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 90px;
  padding-right: 40px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.career-content .best-tag .quote3 {
  position: absolute;
  top: 35px;
  left: 40px;
}
.career-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.career-content ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
.career-content ul li:last-child {
  margin-bottom: 0;
}
.career-content ul li img {
  position: absolute;
  left: 0;
  top: 2px;
}
.career-content h2 {
  padding-bottom: 5px;
}

.career-warp {
  background: #F8F8F8;
  position: relative;
  z-index: 1;
}
.career-warp .career-shape3 {
  position: absolute;
  left: 46%;
  top: 136px;
}
.career-warp .career-shape4 {
  position: absolute;
  right: 16%;
  bottom: 60px;
}

/*
Management Warp Style
======================================================*/
.management-style2-warp {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.management-style2-warp .mc-shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.management-style2-warp .mc-shape2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.management-style3-widget {
  position: relative;
  padding-left: 175px;
}
.management-style3-widget .management-shape1 {
  position: absolute;
  left: 0;
  top: 0;
  animation: rotateme 40s 2s linear infinite alternate;
}

.management-style4-widget {
  padding-right: 175px;
  position: relative;
}
.management-style4-widget .view {
  height: 150px;
  width: 150px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(90deg, #FD4045 -7.5%, #FA8440 105.83%);
}

.management-card {
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  margin-bottom: 25px;
  transition: all ease 0.5s;
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 10px;
  position: relative;
}
.management-card::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 40px;
  right: 0;
  z-index: -1;
  transition: all ease 0.5s;
  height: 30px;
  opacity: 0;
  width: 30px;
  border-radius: 50%;
  background: rgba(250, 132, 64, 0.15);
}
.management-card::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 40px;
  z-index: -1;
  height: 30px;
  transition: all ease 0.5s;
  opacity: 0;
  width: 30px;
  border-radius: 50%;
  background: rgba(250, 132, 64, 0.15);
}
.management-card:hover {
  border-color: transparent;
  box-shadow: 0px 0px 30px 10px rgba(34, 34, 34, 0.05);
}
.management-card:hover::after {
  opacity: 1;
  right: 119px;
}
.management-card:hover::before {
  opacity: 1;
  left: 119px;
}
.management-card .icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: #F8F8F8;
}
.management-card .content {
  padding-left: 20px;
}
.management-card .content h3 {
  font-size: 22px;
}

/*
Explore Style3 Warp Style
======================================================*/
.explore-nav3-pills {
  margin-top: -110px;
  justify-content: left;
  margin-left: -18px;
}
.explore-nav3-pills .nav-link {
  transition: all ease 0.5s;
  font-weight: 500;
  border-radius: 60px;
  color: #222222;
  padding: 5px 18px;
  margin-bottom: -20px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.explore-nav3-pills .nav-link:focus-visible {
  outline: 0;
  box-shadow: unset;
}
.explore-nav3-pills .nav-link.active {
  color: #FD4045;
  background-color: transparent;
}
.explore-nav3-pills .nav-link:hover {
  color: #FD4045;
}
.explore-nav3-pills .nav-item {
  position: relative;
  bottom: -15px;
}

.explore-style3-warp {
  background: #F8F8F8;
  position: relative;
  z-index: 1;
}
.explore-style3-warp .explore-link {
  margin-top: 20px;
  text-align: center;
}
.explore-style3-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.explore-style3-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.explore-style3-warp .section-warp {
  margin-bottom: 95px;
}
.explore-style3-warp .section-warp .default-btn {
  color: #ffffff;
}
.explore-style3-warp .section-warp .default-btn:hover {
  color: #FD4045;
}
.explore-style3-warp .explore3-shape1 {
  position: absolute;
  top: 38%;
  left: 13%;
  z-index: -1;
}
.explore-style3-warp .explore3-shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

/*
Instant Access  Warp Style
======================================================*/
.instant-access-warp {
  background-image: url(../images/heros/instant-access1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.instant-access-content {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 70px;
  padding-right: 70px;
  background-color: #222222;
}
.instant-access-content h2 {
  color: #ffffff;
  padding-bottom: 5px;
}
.instant-access-content .instant-access-shape1 {
  position: absolute;
  bottom: 40px;
  right: 150px;
}
.instant-access-content p {
  color: #CCCCCC;
  margin-bottom: 25px;
}
.instant-access-content .default-btn:hover {
  color: #FD4045;
}

.access-video-btn .video-btn {
  position: relative;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: #FD4045;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background: #ffffff;
  margin-left: auto;
  font-size: 30px;
  z-index: 1;
  margin-right: auto;
  transition: all ease 0.5s;
  cursor: pointer;
}
.access-video-btn .video-btn:hover {
  background-color: #FD4045;
  color: #ffffff;
}
.access-video-btn .video-btn::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  border-radius: 50%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.4);
  animation: ripple 5s linear infinite;
}

/*
Educational  Warp Style
======================================================*/
.educational-style2-content {
  padding-left: 40px;
  margin-right: -40px;
}
.educational-style2-content .ed-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.educational-style2-content .ed-list li {
  margin-bottom: 15px;
  position: relative;
}
.educational-style2-content .ed-list li:last-child {
  margin-bottom: 0;
}
.educational-style2-content .ed-list li .icon {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 60px;
  color: #FD4045;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.05);
}
.educational-style2-content .ed-list li .content {
  padding-left: 80px;
}
.educational-style2-content .ed-list li .content h5 {
  font-size: 22px;
}

.educational-style2-warp {
  background: #F8F8F8;
  position: relative;
  z-index: 1;
}
.educational-style2-warp .affordable-shape1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.educational-style2-warp .affordable-shape2 {
  position: absolute;
  top: 50%;
  left: 10%;
}
.educational-style2-warp .affordable-shape3 {
  position: absolute;
  left: 47.5%;
  top: 17%;
}

/*
Counter  Warp Style
======================================================*/
.counter-warp {
  background: #F8F8F8;
}

.counter-widget {
  margin-bottom: 25px;
  position: relative;
  display: flex;
}
.counter-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  bottom: 0;
  width: 1px;
  background: rgba(34, 34, 34, 0.1);
}
.counter-widget .icon {
  position: relative;
  height: 50px;
  top: 10px;
  width: 50px;
  text-align: center;
  z-index: 1;
  padding-left: 20px;
}
.counter-widget .icon .counter-icon {
  position: absolute;
  height: 50px;
  width: 50px;
  left: 0;
  top: 0;
  z-index: -1;
  box-shadow: 0px 5px 30px rgba(34, 34, 34, 0.05);
}
.counter-widget .icon i {
  font-size: 50px;
  color: #FA8440;
}
.counter-widget .content {
  margin-left: 40px;
}
.counter-widget h1 {
  font-size: 55px;
  margin-bottom: 2px;
}

.col-lg-3:nth-child(1) .counter-widget::before {
  display: none;
}

/*
Join Us  Warp Style
======================================================*/
.join-us-warp {
  background: #F8F8F8;
}
.join-us-warp .inner-join {
  background: #222222;
  border-radius: 5px;
  position: relative;
  margin-bottom: -140px;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 70px;
  padding-right: 70px;
}
.join-us-warp .inner-join .image {
  position: absolute;
  top: 50px;
  left: 72px;
}
.join-us-warp .inner-join .image .join1-shape {
  position: absolute;
  top: -35px;
  left: -25px;
}
.join-us-warp .inner-join .image2 {
  position: absolute;
  top: 218px;
  left: 81px;
}
.join-us-warp .inner-join .image2 .join2-shape {
  position: absolute;
  top: -5px;
  left: -5px;
}
.join-us-warp .inner-join .image3 {
  position: absolute;
  top: 150px;
  left: 190px;
}
.join-us-warp .inner-join .image3 .join3-shape {
  position: absolute;
  top: 55px;
  left: 88px;
}
.join-us-warp .inner-join .image4 {
  position: absolute;
  left: 155px;
  bottom: 55px;
}
.join-us-warp .inner-join .image4 .join4-shape {
  position: absolute;
  top: 45px;
  left: -36px;
}
.join-us-warp .inner-join .image5 {
  position: absolute;
  top: 56px;
  right: 74px;
}
.join-us-warp .inner-join .image5 .join5-shape {
  position: absolute;
  top: 65px;
  right: 0;
}
.join-us-warp .inner-join .image6 {
  position: absolute;
  top: 180px;
  right: 200px;
}
.join-us-warp .inner-join .image6 .join6-shape {
  position: absolute;
  right: -40px;
  top: 13px;
}
.join-us-warp .inner-join .image7 {
  position: absolute;
  right: 68px;
  bottom: 55px;
}
.join-us-warp .inner-join .image7 .join7-shape {
  position: absolute;
  top: 61px;
  right: -37px;
}
.join-us-warp .inner-join .section-title {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.join-us-warp .inner-join .section-title h2 {
  color: #ffffff;
}
.join-us-warp .inner-join .section-title p {
  color: #CCCCCC;
}
.join-us-warp .inner-join .section-title .default-btn {
  margin-top: 10px;
}
.join-us-warp .inner-join .section-title .default-btn:hover {
  color: #ffffff;
}

/*
Inner Hero  Warp Style
======================================================*/
.inner-hero-warp {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 170px;
  padding-bottom: 215px;
}
.inner-hero-warp.bg-1 {
  background-image: url(../images/heros/inner1.jpg);
}
.inner-hero-warp.bg-2 {
  background-image: url(../images/heros/inner2.jpg.png);
}
.inner-hero-warp.bg-3 {
  background-image: url(../images/heros/inner3.jpg);
}
.inner-hero-warp.bg-4 {
  background-image: url(../images/heros/inner4.jpg);
}
.inner-hero-warp.bg-5 {
  background-image: url(../images/heros/inner5.jpg);
}
.inner-hero-warp.bg-6 {
  background-image: url(../images/heros/inner6.jpg);
}
.inner-hero-warp.bg-7 {
  background-image: url(../images/heros/inner7.jpg);
}
.inner-hero-warp.bg-8 {
  background-image: url(../images/heros/inner8.jpg);
}
.inner-hero-warp.bg-9 {
  background-image: url(../images/heros/inner9.jpg);
}
.inner-hero-warp.bg-10 {
  background-image: url(../images/heros/inner10.jpg);
}
.inner-hero-warp.bg-11 {
  background-image: url(../images/heros/inner11.jpg);
}
.inner-hero-warp.bg-12 {
  background-image: url(../images/heros/inner12.jpg);
}
.inner-hero-warp.bg-13 {
  background-image: url(../images/heros/inner13.jpg);
}
.inner-hero-warp.bg-14 {
  background-image: url(../images/heros/inner14.jpg);
}
.inner-hero-warp.bg-15 {
  background-image: url(../images/heros/inner15.jpg);
}
.inner-hero-warp.bg-16 {
  background-image: url(../images/heros/inner16.jpg);
}

.inner-hero-content {
  text-align: center;
}
.inner-hero-content h1 {
  font-weight: 900;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 10px;
}
.inner-hero-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.inner-hero-content ul li {
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  color: #ffffff;
  position: relative;
}
.inner-hero-content ul li:last-child {
  padding-right: 0;
}
.inner-hero-content ul li:first-child {
  padding-left: 0;
}
.inner-hero-content ul li:first-child::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: -4px;
  transform: rotate(17deg);
  width: 1px;
  background: #ffffff;
}
.inner-hero-content ul li a {
  color: #ffffff;
}

/*
Team Card  Warp Style
======================================================*/
.team-card {
  margin-bottom: 25px;
  background-color: #ffffff;
}
.team-card .image {
  position: relative;
}
.team-card .image .social-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  left: 20px;
  bottom: 0;
}
.team-card .image .social-list li {
  margin-bottom: 2px;
  opacity: 0;
  transition: all ease 0.5s;
}
.team-card .image .social-list li:last-child {
  margin-bottom: 0;
}
.team-card .image .social-list li a {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 60px;
  background: #ffffff;
  color: #222222;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all ease 0.5s;
}
.team-card .image .social-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  height: 0;
  z-index: -1;
  width: 100%;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.team-card .image .social-list li a:hover {
  color: #ffffff;
}
.team-card .image .social-list li a:hover::before {
  opacity: 1;
  height: 100%;
}
.team-card .image .social-list li .icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 60px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  color: #ffffff;
}
.team-card .image .social-list li:last-child {
  opacity: 1;
}
.team-card:hover .image .social-list li {
  opacity: 1;
}
.team-card .content {
  padding-top: 20px;
  padding-left: 35px;
  padding-right: 35px;
}
.team-card .content .lesson {
  position: relative;
  padding-top: 35px;
  padding-bottom: 15px;
}
.team-card .content .lesson::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -35px;
  right: -35px;
  height: 1px;
  background: #EEEEEE;
}
.team-card .content .lesson p {
  margin-bottom: 0;
}
.team-card .content .lesson p img {
  position: relative;
  top: -3px;
}
.team-card .content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.team-card .content h3 a {
  color: #222222;
}
.team-card .content h3 a:hover {
  color: #FD4045;
}

.team-warp {
  background: #F8F8F8;
}
.team-warp .explore-link {
  margin-top: 20px;
  text-align: center;
}
.team-warp .explore-link p a {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(90deg, #FD4045 -5%, #FA8440 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  position: relative;
}
.team-warp .explore-link p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}

.inner-testimonial-widget {
  margin-bottom: 25px;
  background: #F8F8F8;
  border-radius: 5px;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 45px;
  padding-right: 90px;
  margin-right: 50px;
  position: relative;
}
.inner-testimonial-widget .ri-star-fill {
  color: #FFC107;
}
.inner-testimonial-widget p {
  margin-top: 12px;
  margin-bottom: 20px;
}
.inner-testimonial-widget .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-testimonial-widget .details h5 {
  font-size: 22px;
  margin-bottom: 5px;
}
.inner-testimonial-widget .testimonial1 {
  position: absolute;
  right: -40px;
  width: 90px;
  top: 50%;
  transform: translateY(-55px);
  height: 90px;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid #EEEEEE;
}

/*
Pagination Warp  Style
======================================================*/
.all-pagination {
  padding-top: 10px;
}
.all-pagination.style2 {
  margin-top: 20px;
}
.all-pagination .pagination {
  justify-content: center;
}
.all-pagination .pagination li {
  padding-right: 5px;
  padding-left: 5px;
}
.all-pagination .pagination li:last-child {
  padding-right: 0;
}
.all-pagination .pagination li:last-child .page-link i {
  position: relative;
  left: -1px;
  font-size: 22px;
  top: 5px;
}
.all-pagination .pagination li:first-child {
  padding-left: 0;
}
.all-pagination .pagination li:first-child .page-link i {
  position: relative;
  left: -2px;
  font-size: 26px;
  top: 5px;
}
.all-pagination .pagination li .page-link {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #F8F8F8;
  text-align: center;
  line-height: 45px;
  border: none;
  color: #888888;
  transition: all ease 0.5s;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.all-pagination .pagination li .page-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.all-pagination .pagination li .page-link:hover {
  color: #ffffff;
}
.all-pagination .pagination li .page-link:hover::before {
  height: 100%;
  opacity: 1;
}
.all-pagination .pagination li .page-link:hover i {
  color: #ffffff;
}
.all-pagination .pagination li .page-link i {
  color: #222222;
}
.all-pagination .pagination li .page-link.active {
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  color: #ffffff;
}
.all-pagination .pagination li .page-link.active i {
  color: #ffffff;
}
.all-pagination .pagination li .page-link:focus {
  box-shadow: unset;
}

/*
Accordion Warp  Style
======================================================*/
.accordion-warp .accordion-button {
  background: #F8F8F8;
  border: none;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  color: #202939;
  padding: 20px 30px 20px 30px;
  box-shadow: unset;
}
.accordion-warp .accordion-button:after {
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
  line-height: 40px;
  content: "\ea13";
  font-family: remixicon !important;
  background: #ffffff;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.03);
}
.accordion-warp .accordion-button:not(.collapsed) {
  color: #222222;
  background-color: transparent;
  background: #FFFFFF !important;
  border: none;
}
.accordion-warp .accordion-button:not(.collapsed):after {
  content: "";
  width: 40px;
  height: 40px;
  background-size: cover;
  background-image: url(../images/svgs/munes.svg);
}
.accordion-warp .accordion-button:focus {
  box-shadow: unset;
}
.accordion-warp .accordion-body {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  padding: 0px 30px 20px 30px;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.05);
}
.accordion-warp .accordion-item {
  border: none;
  margin-bottom: 18px;
}

/*
Become  Warp  Style
======================================================*/
.inner-become-warp {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #F8F8F8;
  border-radius: 5px;
  padding: 55px 60px 60px 60px;
}
.inner-become-warp .input-widget {
  margin-bottom: 20px;
}
.inner-become-warp .input-widget label {
  font-family: "Fira Sans";
  font-size: 20px;
  color: #555555;
}
.inner-become-warp .input-widget .form-control {
  padding-left: 20px;
  height: 60px;
  font-weight: 300;
  color: #888888;
  border-radius: 5px;
  border: none;
  background-color: #ffffff;
}
.inner-become-warp .input-widget .form-control:focus {
  box-shadow: unset;
}
.inner-become-warp .input-widget .form-control:focus::-moz-placeholder {
  color: transparent;
}
.inner-become-warp .input-widget .form-control:focus::placeholder {
  color: transparent;
}
.inner-become-warp .input-widget .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.inner-become-warp .input-widget .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.inner-become-warp .default-btn {
  display: inline-block;
}

.become-warp {
  position: relative;
}
.become-warp .become-shape {
  position: absolute;
  right: 16%;
  bottom: 250px;
}

/*
Inner Courses  Warp  Style
======================================================*/
.popularity-warp {
  margin-bottom: 30px;
}
.popularity-warp .ply-tag p span {
  font-weight: 600;
  color: #222222;
}
.popularity-warp .selector-warp {
  position: relative;
  width: 165px;
  margin-right: 20px;
}
.popularity-warp .selector-warp .form-select {
  border: none;
  padding-left: 0;
  width: 165px;
}
.popularity-warp .selector-warp .form-select:focus {
  box-shadow: unset;
}
.popularity-warp .input-warp {
  width: 100%;
  position: relative;
  height: 60px;
}
.popularity-warp .input-warp .form-control {
  height: 100%;
  width: 100%;
  background: #F8F8F8;
  border-radius: 5px;
  padding-left: 50px;
  border: none;
  color: #888888;
}
.popularity-warp .input-warp .form-control:focus {
  box-shadow: unset;
}
.popularity-warp .input-warp .form-control:focus::-moz-placeholder {
  color: transparent;
}
.popularity-warp .input-warp .form-control:focus::placeholder {
  color: transparent;
}
.popularity-warp .input-warp .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.popularity-warp .input-warp .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.popularity-warp .input-warp i {
  position: absolute;
  top: 50%;
  font-size: 18px;
  left: 23px;
  color: #222222;
  transform: translateY(-9px);
}

/*
Course Details  Warp  Style
======================================================*/
.courses-big-widget {
  position: relative;
  padding-right: 20px;
}
.courses-big-widget .review {
  margin-bottom: 12px;
}
.courses-big-widget .review i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.courses-big-widget .review p {
  position: relative;
  bottom: -3px;
  left: 8px;
  font-size: 14px;
}
.courses-big-widget h2 {
  font-size: 40px;
  margin-bottom: 12px;
  max-width: 700px;
}
.courses-big-widget .categories {
  margin-bottom: 30px;
}
.courses-big-widget .categories p {
  color: #888888;
}
.courses-big-widget .categories p a {
  color: #555555;
}
.courses-big-widget .about-courses {
  margin-bottom: 30px;
}
.courses-big-widget .about-courses h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.courses-big-widget .certification {
  margin-bottom: 30px;
}
.courses-big-widget .certification h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.courses-big-widget .who-this {
  margin-bottom: 30px;
}
.courses-big-widget .who-this h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.courses-big-widget .learn-course {
  margin-bottom: 30px;
}
.courses-big-widget .learn-course h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.courses-big-widget .learn-course ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.courses-big-widget .learn-course ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
.courses-big-widget .learn-course ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555555;
}
.courses-big-widget .learn-course ul li:last-child {
  margin-bottom: 0;
}
.courses-big-widget .will-learn {
  margin-bottom: 30px;
}
.courses-big-widget .will-learn h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.courses-big-widget .will-learn ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.courses-big-widget .will-learn ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
.courses-big-widget .will-learn ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555555;
}
.courses-big-widget .will-learn ul li:last-child {
  margin-bottom: 0;
}
.courses-big-widget .requirements {
  margin-bottom: 30px;
}
.courses-big-widget .requirements h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.courses-big-widget .requirements ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.courses-big-widget .requirements ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
.courses-big-widget .requirements ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555555;
}
.courses-big-widget .requirements ul li:last-child {
  margin-bottom: 0;
}
.courses-big-widget .met-instructors {
  margin-bottom: 30px;
}
.courses-big-widget .met-instructors h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.courses-big-widget .met-instructors .met-content-warp {
  position: relative;
  background: #F8F8F8;
  padding-top: 65px;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;
}
.courses-big-widget .met-instructors .met-content-warp .user {
  position: absolute;
  top: -50px;
  left: 70px;
}
.courses-big-widget .met-instructors .met-content-warp .user img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.courses-big-widget .met-instructors .man-name h5 {
  font-size: 22px;
  margin-bottom: 10px;
}
.courses-big-widget .met-instructors .man-name p {
  margin-bottom: 0;
  line-height: 1;
}
.courses-big-widget .met-instructors .mane-btn {
  margin-bottom: 15px;
}
.courses-big-widget .reviews-warp h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.courses-big-widget .reviews-warp .reviewer {
  margin-bottom: 12px;
}
.courses-big-widget .reviews-warp .reviewer i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.courses-big-widget .reviews-warp .reviewer p {
  position: relative;
  bottom: -3px;
  font-weight: 700;
  color: #222222;
  left: 8px;
  font-size: 16px;
}
.courses-big-widget .reviews-warp .user {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}
.courses-big-widget .reviews-warp .content {
  margin-left: 30px;
}
.courses-big-widget .reviews-warp .content span {
  color: #222222;
  margin-bottom: 8px;
  display: inline-block;
}
.courses-big-widget .reviews-warp .review-item {
  margin-bottom: 25px;
}
.courses-big-widget .reviews-warp .review-item:last-child {
  margin-bottom: 0;
}

.course-small-warp .small-course-box .image {
  position: relative;
}
.course-small-warp .small-course-box .image .rounded-circle {
  position: absolute;
  width: 60px;
  font-size: 25px;
  height: 60px;
  line-height: 63px;
  background: #ffffff;
  color: #FD4045;
  top: 50%;
  transform: translateY(-33px);
  text-align: center;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
.course-small-warp .small-course-box .image img {
  border-radius: 5px 5px 0 0;
}
.course-small-warp .small-course-box .content {
  background: #F8F8F8;
  border-radius: 0 0 5px 5px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
}
.course-small-warp .small-course-box .content .prize-label {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.course-small-warp .small-course-box .content .prize-label li {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-weight: 600;
  color: #222222;
  border-bottom: solid 1px rgba(34, 34, 34, 0.05);
}
.course-small-warp .small-course-box .content .prize-label li:last-child {
  border: none;
}
.course-small-warp .small-course-box .content .prize-label li p {
  font-weight: 400;
  text-decoration-line: line-through;
  color: #888888;
  display: inline-block;
  margin-bottom: 0;
}
.course-small-warp .small-course-box .content .prize-label li span {
  position: absolute;
  font-weight: 400;
  right: 0;
  display: inline-block;
  color: #555555;
  text-decoration: none;
}
.course-small-warp .small-course-box .content .default-btn {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.course-small-warp .small-course-box .content .total-list li {
  margin-bottom: 10px;
}
.course-small-warp .small-course-box .content .total-list li:last-child {
  margin-bottom: 0;
}

/*
Team  Warp  Style
======================================================*/
.inner-style2-team {
  position: relative;
}
.inner-style2-team .team-card {
  margin-bottom: 25px;
  position: relative;
  background-color: #F8F8F8;
}
.inner-style2-team .team1 {
  position: absolute;
  right: 10%;
  top: 25%;
}
.inner-style2-team .team2 {
  position: absolute;
  top: 0;
  left: 42%;
}

.specific-courses h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

/*
Team  Details  Style
======================================================*/
.inner-team-details {
  background: #F8F8F8;
  border-radius: 5px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 45px;
}
.inner-team-details h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.inner-team-details span {
  display: block;
  margin-bottom: 20px;
  color: #555555;
}
.inner-team-details .man-image {
  width: 193px;
  height: auto;
}
.inner-team-details .content {
  padding-right: 120px;
  padding-left: 40px;
  position: relative;
}
.inner-team-details .content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 55px;
  bottom: 0;
  width: 1px;
  background: #D9D9D9;
}
.inner-team-details .content h5 {
  font-size: 20px;
  margin-bottom: 25px;
}
.inner-team-details .in-list {
  width: 145px;
}
.inner-team-details .in-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.inner-team-details .in-list ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 25px;
}
.inner-team-details .in-list ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #FD4045;
}
.inner-team-details .in-list ul li:last-child {
  margin-bottom: 0;
}

/*
Main Blog  Warp  Style
======================================================*/
.blog-small-warp {
  margin-left: -30px;
}
.blog-small-warp .recent-post {
  margin-bottom: 40px;
}
.blog-small-warp .recent-post h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.blog-small-warp .recent-post .blog-post {
  overflow: hidden;
  margin-bottom: 40px;
  align-items: center;
}
.blog-small-warp .recent-post .blog-post:last-child {
  margin-bottom: 0;
}
.blog-small-warp .recent-post .blog-post .thumb {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  position: relative;
  display: inline-block;
}
.blog-small-warp .recent-post .blog-post .thumb .full-image {
  width: 80px;
  height: 80px;
  display: inline-block;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-small-warp .recent-post .blog-post .thumb .full-image.bg-1 {
  background-image: url("../images/blogs/blog-details4.jpg");
}
.blog-small-warp .recent-post .blog-post .thumb .full-image.bg-2 {
  background-image: url("../images/blogs/blog-details5.jpg");
}
.blog-small-warp .recent-post .blog-post .thumb .full-image.bg-3 {
  background-image: url("../images/blogs/blog-details6.jpg");
}
.blog-small-warp .recent-post .blog-post .post-content p {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
}
.blog-small-warp .recent-post .blog-post .post-content p img {
  position: relative;
  top: -2px;
  padding-right: 3px;
}
.blog-small-warp .recent-post .blog-post .post-content h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}
.blog-small-warp .recent-post .blog-post .post-content h5 a {
  color: #222222;
  transition: all ease 0.5s;
}
.blog-small-warp .recent-post .blog-post .post-content h5 a:hover {
  color: #FD4045;
}
.blog-small-warp .recent-post .blog-post.last-blog {
  margin-bottom: 0px;
}
.blog-small-warp .recent-post .blog-item {
  background: #F8F8F8;
  border-radius: 5px;
  padding-top: 30px;
  padding-bottom: 35px;
  padding-left: 40px;
  padding-right: 40px;
}
.blog-small-warp .search-box {
  margin-bottom: 40px;
}
.blog-small-warp .search-box h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.blog-small-warp .search-box .input-box {
  position: relative;
  height: 60px;
}
.blog-small-warp .search-box .input-box .form-control {
  height: 100%;
  padding-left: 20px;
  background: #F8F8F8;
  border-radius: 5px;
  border: none;
  text-transform: capitalize;
  color: #888888;
}
.blog-small-warp .search-box .input-box .form-control:focus {
  box-shadow: unset;
}
.blog-small-warp .search-box .input-box .form-control:focus::-moz-placeholder {
  color: transparent;
}
.blog-small-warp .search-box .input-box .form-control:focus::placeholder {
  color: transparent;
}
.blog-small-warp .search-box .input-box .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.blog-small-warp .search-box .input-box .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.blog-small-warp .search-box .input-box i {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-7px);
}
.blog-small-warp .categories {
  margin-bottom: 40px;
}
.blog-small-warp .categories h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.blog-small-warp .categories ul {
  list-style: none;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 35px;
  padding-left: 40px;
  padding-right: 40px;
  background: #F8F8F8;
  border-radius: 5px;
}
.blog-small-warp .categories ul li {
  position: relative;
  margin-bottom: 15px;
}
.blog-small-warp .categories ul li span {
  position: absolute;
  right: 0;
}
.blog-small-warp .tags h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.blog-small-warp .tags .inner-tag {
  padding-top: 30px;
  padding-bottom: 35px;
  padding-left: 40px;
  padding-right: 40px;
  background: #F8F8F8;
  border-radius: 5px;
}
.blog-small-warp .tags .inner-tag a {
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.05);
  border-radius: 5px;
  background-color: #ffffff;
  display: inline-block;
  padding: 8px 20px;
  margin: 0 3px 8px 0;
  position: relative;
  z-index: 1;
}
.blog-small-warp .tags .inner-tag a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  border-radius: 5px;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.blog-small-warp .tags .inner-tag a:hover {
  color: #ffffff;
}
.blog-small-warp .tags .inner-tag a:hover::before {
  opacity: 1;
  height: 100%;
}

.blog-big-warp {
  padding-right: 30px;
}
.blog-big-warp .bb-card {
  margin-bottom: 25px;
}
.blog-big-warp .bb-card .content {
  background: #F8F8F8;
  border-radius: 0px 0px 5px 5px;
  padding-top: 55px;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
}
.blog-big-warp .bb-card .content h2 {
  font-size: 36px;
  margin-bottom: 8px;
}
.blog-big-warp .bb-card .content h2 a {
  color: #222222;
}
.blog-big-warp .bb-card .content .link-image {
  font-size: 14px;
  color: #888888;
  margin-bottom: 10px;
}
.blog-big-warp .bb-card .content .link-image a {
  font-size: 16px;
  color: #555555;
}
.blog-big-warp .bb-card .content .link-image img {
  position: relative;
  top: -2px;
  padding-right: 4px;
}
.blog-big-warp .bb-card .content .date-btn {
  margin-top: 20px;
}
.blog-big-warp .bb-card .content .date-btn p {
  margin-bottom: 0;
}
.blog-big-warp .bb-card .content .date-btn img {
  position: relative;
  top: -1px;
  padding-right: 3px;
}
.blog-big-warp .all-pagination .pagination {
  justify-content: left !important;
}

/*
Blog Details  Warp  Style
======================================================*/
.bd-big-warp {
  padding-right: 60px;
}
.bd-big-warp .blog-details-card {
  margin-bottom: 20px;
}
.bd-big-warp .blog-details-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 30px;
  padding-right: 50px;
}
.bd-big-warp .blog-details-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.bd-big-warp .blog-details-card ul li {
  display: inline-block;
  padding-right: 20px;
}
.bd-big-warp .blog-details-card ul li img {
  position: relative;
  top: -2px;
  padding-right: 4px;
}
.bd-big-warp .blog-details-card ul li span {
  font-size: 14px;
  color: #888888;
}
.bd-big-warp .p-style {
  margin-left: 60px;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: solid 3px #FD4045;
}
.bd-big-warp .p-style p {
  font-size: 20px;
  color: #222222;
}
.bd-big-warp .reviews-warp {
  margin-bottom: 50px;
}
.bd-big-warp .reviews-warp h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.bd-big-warp .reviews-warp .reviewer {
  margin-bottom: 12px;
}
.bd-big-warp .reviews-warp .reviewer i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.bd-big-warp .reviews-warp .reviewer p {
  position: relative;
  bottom: -3px;
  font-weight: 700;
  color: #222222;
  left: 8px;
  font-size: 16px;
}
.bd-big-warp .reviews-warp .user {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}
.bd-big-warp .reviews-warp .content {
  margin-left: 30px;
}
.bd-big-warp .reviews-warp .content span {
  color: #222222;
  margin-bottom: 8px;
  display: inline-block;
}
.bd-big-warp .reviews-warp .review-item {
  margin-bottom: 25px;
}
.bd-big-warp .reviews-warp .review-item:last-child {
  margin-bottom: 0;
}
.bd-big-warp .mejor-element {
  margin-bottom: 30px;
  margin-top: 30px;
}
.bd-big-warp .mejor-element h5 {
  font-size: 20px;
  margin-bottom: 15px;
}
.bd-big-warp .mejor-element ul li {
  margin-bottom: 12px;
}
.bd-big-warp .mejor-element ul li:last-child {
  margin-bottom: 0;
}
.bd-big-warp .mood-warp {
  margin-bottom: 30px;
}
.bd-big-warp .mood-warp h5 {
  font-size: 20px;
  margin-bottom: 15px;
}
.bd-big-warp .tag-share {
  margin-bottom: 80px;
}
.bd-big-warp .tag-share h5 {
  margin-bottom: 0;
  margin-right: 12px;
}
.bd-big-warp .tag-share .tag h5 {
  position: relative;
  top: -2px;
}
.bd-big-warp .tag-share .tag a {
  border-radius: 5px;
  background: #F8F8F8;
  display: inline-block;
  padding: 8px 20px;
  margin: 0 15px 0 0;
  position: relative;
  z-index: 1;
}
.bd-big-warp .tag-share .tag a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  border-radius: 5px;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.bd-big-warp .tag-share .tag a:hover {
  color: #ffffff;
}
.bd-big-warp .tag-share .tag a:hover::before {
  opacity: 1;
  height: 100%;
}
.bd-big-warp .tag-share .share {
  margin-top: 5px;
}
.bd-big-warp .tag-share .share h5 {
  position: relative;
  bottom: 5px;
}
.bd-big-warp .tag-share .social-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.bd-big-warp .tag-share .social-list li {
  display: inline-block;
  padding-right: 10px;
}
.bd-big-warp .tag-share .social-list li:last-child {
  padding-right: 0;
}
.bd-big-warp .tag-share .social-list li a {
  height: 40px;
  width: 40px;
  line-height: 48px;
  color: #888888;
  text-align: center;
  border-radius: 50%;
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}
.bd-big-warp .tag-share .social-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.bd-big-warp .tag-share .social-list li a:hover {
  color: #ffffff;
}
.bd-big-warp .tag-share .social-list li a:hover::before {
  width: 100%;
  opacity: 1;
  left: 0;
}
.bd-big-warp .leave-form {
  background: #F8F8F8;
  border-radius: 5px;
  padding-top: 42px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
.bd-big-warp .leave-form h5 {
  font-size: 24px;
  margin-bottom: 12px;
}
.bd-big-warp .leave-form p {
  margin-bottom: 20px;
}
.bd-big-warp .leave-form .form-control {
  height: 60px;
  border-radius: 5px;
  border: none;
  padding-left: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.bd-big-warp .leave-form .form-control:focus {
  box-shadow: unset;
}
.bd-big-warp .leave-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.bd-big-warp .leave-form .form-control:focus::placeholder {
  color: transparent;
}
.bd-big-warp .leave-form .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.bd-big-warp .leave-form .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.bd-big-warp .leave-form textarea {
  height: 150px !important;
  padding-top: 12px;
}
.bd-big-warp .leave-form .form-check-input {
  height: 16px;
  width: 16px;
  padding-right: 5px;
}
.bd-big-warp .leave-form .form-check-input:focus {
  box-shadow: unset;
}
.bd-big-warp .leave-form .form-check {
  margin-bottom: 20px;
}

/*
Inner Cart  Warp  Style
======================================================*/
.cart-controller .input-counter {
  height: 47px;
  width: 105px;
  position: relative;
}
.cart-controller .input-counter:before {
  position: absolute;
  top: 5px;
  right: 20px;
  color: #D9D9D9;
  font-size: 14px;
  content: "▲";
  pointer-events: none;
}
.cart-controller .input-counter:after {
  position: absolute;
  bottom: 5px;
  right: 20px;
  color: #D9D9D9;
  font-size: 14px;
  content: "▼";
  pointer-events: none;
}
.cart-controller .form-counter {
  height: 47px;
  width: 105px;
  font-weight: 700;
  padding-left: 18px;
  font-size: 16px;
  color: #222222;
  font-family: "Fira Sans";
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
.cart-controller .form-counter:focus {
  box-shadow: unset;
}
.cart-controller .form-counter::-webkit-inner-spin-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: scale(5);
  transform-origin: right center;
  opacity: 0;
  cursor: pointer;
}
.cart-controller .form-counter::-webkit-contacts-auto-fill-button {
  opacity: 0;
}
.cart-controller .style {
  padding: 45px;
  background: #F8F8F8;
  border-radius: 5px 5px 0px 0px;
  border-color: transparent;
}
.cart-controller .tab {
  border-color: transparent;
}
.cart-controller .shop-thumbnail {
  padding-left: 45px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cart-controller .shop-name {
  padding-left: 45px;
  padding-top: 60px;
}
.cart-controller .shop-price {
  padding-left: 45px;
  padding-top: 60px;
}
.cart-controller .shop-subtotal {
  padding-left: 45px;
  padding-top: 60px;
}
.cart-controller .remove {
  padding-left: 65px;
  padding-top: 60px;
}
.cart-controller .remove i {
  color: #FA8440;
  font-size: 20px;
}
.cart-controller .shop-quantity {
  padding-left: 45px;
  padding-top: 48px;
}
.cart-controller td {
  border-style: none;
}
.cart-controller tbody {
  border: solid 1px #EEEEEE;
}

.coupon-cart {
  margin-top: 20px;
}
.coupon-cart .default-btn.style2 {
  background-color: transparent;
  color: #FD4045;
  margin-right: 20px;
}
.coupon-cart .default-btn.style2:hover {
  color: #ffffff;
}
.coupon-cart .cart-button {
  position: relative;
  max-width: 368px;
  height: 60px;
}
.coupon-cart .cart-button .form-control {
  height: 60px;
  background: #F8F8F8;
  border-radius: 5px;
  border: none;
  padding-left: 20px;
}
.coupon-cart .cart-button .form-control:focus {
  box-shadow: unset;
}
.coupon-cart .cart-button .default-btn {
  position: absolute;
  right: -20px;
  top: 0;
}

.total-cart-warp h3 {
  margin-bottom: 20px;
  font-size: 30px;
}
.total-cart-warp ul {
  background: #F8F8F8;
  border-radius: 5px;
  list-style: none;
  margin-bottom: 20px;
  padding: 30px 25px;
  position: relative;
}
.total-cart-warp ul::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 53%;
  width: 1px;
  background: rgba(34, 34, 34, 0.05);
}
.total-cart-warp ul::after {
  content: "";
  position: absolute;
  top: 49%;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: rgba(34, 34, 34, 0.05);
}
.total-cart-warp ul li {
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.total-cart-warp ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.total-cart-warp ul li:last-child span {
  color: #FA8440;
}
.total-cart-warp ul li span {
  position: absolute;
  left: 320px;
}

/*
Contact Warp  Style
======================================================*/
.contact-card {
  margin-bottom: 25px;
  text-align: center;
  padding: 45px;
  background: #F8F8F8;
  border-radius: 5px;
}
.contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  line-height: 67px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
  margin-bottom: 15px;
}
.contact-card a {
  display: block;
  line-height: 1.8;
}

.inner-form-warp {
  max-width: 876px;
  padding: 70px;
  margin-left: auto;
  margin-right: auto;
  background: #F8F8F8;
  border-radius: 5px;
}
.inner-form-warp .form-control {
  height: 60px;
  background-color: #ffffff;
  padding-left: 20px;
  margin-bottom: 20px;
  border: none;
  color: #888888;
}
.inner-form-warp .form-control:focus {
  box-shadow: unset;
}
.inner-form-warp .form-control:focus::-moz-placeholder {
  color: transparent;
}
.inner-form-warp .form-control:focus::placeholder {
  color: transparent;
}
.inner-form-warp .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.inner-form-warp .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.inner-form-warp textarea {
  height: 150px !important;
  padding-top: 12px;
}

.contact-form-warp {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact-form-warp .contact-map1 {
  position: absolute;
  right: 5%;
  top: 0;
  z-index: -1;
}

/*
Shop Warp  Style
======================================================*/
.showing-warp {
  margin-bottom: 30px;
}
.showing-warp p {
  margin-bottom: 0;
}
.showing-warp .selector {
  margin-left: auto;
  width: 300px;
  text-align: end;
}
.showing-warp .selector .form-select {
  height: 60px;
  background-color: #F8F8F8;
  border: none;
  border-radius: 5px;
}
.showing-warp .selector .form-select:focus {
  box-shadow: unset;
}

.shop-card {
  margin-bottom: 25px;
  text-align: center;
}
.shop-card .image {
  position: relative;
}
.shop-card .image ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  top: 50%;
  transform: translateY(-22px);
  left: 0;
  right: 0;
  opacity: 0;
  transition: all ease 0.5s;
}
.shop-card .image ul li {
  display: inline-block;
  padding-right: 10px;
}
.shop-card .image ul li:last-child {
  padding-right: 0;
}
.shop-card .image ul li a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  font-size: 23px;
  color: #222222;
  display: inline-block;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.shop-card .image ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 0;
  width: 100%;
  border-radius: 50%;
  transition: all ease 0.5s;
  background: linear-gradient(90deg, #FD4045 -4.71%, #FA8440 104.41%);
}
.shop-card .image ul li a:hover {
  color: #ffffff;
}
.shop-card .image ul li a:hover::before {
  height: 100%;
  opacity: 1;
}
.shop-card .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;
  width: 100%;
  transition: all ease 0.5s;
  opacity: 0;
  background: rgba(34, 34, 34, 0.5);
  border-radius: 5px;
}
.shop-card .content {
  padding-top: 30px;
}
.shop-card .content .review {
  margin-bottom: 8px;
}
.shop-card .content .review i {
  color: #FFC107;
}
.shop-card .content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.shop-card .content h3 a {
  color: #222222;
}
.shop-card .content h3 a:hover {
  color: #FD4045;
}
.shop-card:hover .image::before {
  height: 100%;
  opacity: 1;
}
.shop-card:hover .image ul {
  opacity: 1;
}

/*
Shop Details  Style
======================================================*/
.inner-shop-details-warp {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.shop-details-content {
  padding-left: 20px;
}
.shop-details-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.shop-details-content span {
  display: block;
  margin-bottom: 10px;
}
.shop-details-content .review {
  margin-bottom: 20px;
}
.shop-details-content .review i {
  color: #FFC107;
}
.shop-details-content .review p {
  position: relative;
  padding-left: 5px;
  top: 2px;
}
.shop-details-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.shop-details-content ul li {
  position: relative;
  margin-bottom: 15px;
  font-family: "Fira Sans";
  font-weight: 700;
  color: #222222;
  display: flex;
  align-items: center;
}
.shop-details-content ul li:last-child {
  margin-bottom: 0;
}
.shop-details-content ul li span {
  font-family: "Roboto";
  font-weight: 400;
  color: #555555;
  margin-bottom: 0;
  margin-left: 5px;
}
.shop-details-content ul li .form-control {
  height: 47px;
  width: 105px;
  font-weight: 700;
  padding-left: 18px;
  font-size: 16px;
  color: #222222;
  font-family: "Fira Sans";
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
.shop-details-content ul li .form-control:focus {
  box-shadow: unset;
}
.shop-details-content ul li .form-control::-webkit-inner-spin-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: scale(5);
  transform-origin: right center;
  opacity: 0;
  cursor: pointer;
}
.shop-details-content ul li .form-control::-webkit-contacts-auto-fill-button {
  opacity: 0;
}
.shop-details-content ul li .input-counter {
  height: 47px;
  width: 105px;
  position: relative;
}
.shop-details-content ul li .input-counter:before {
  position: absolute;
  top: 5px;
  right: 20px;
  color: #D9D9D9;
  font-size: 14px;
  content: "▲";
  pointer-events: none;
}
.shop-details-content ul li .input-counter:after {
  position: absolute;
  bottom: 5px;
  right: 20px;
  color: #D9D9D9;
  font-size: 14px;
  content: "▼";
  pointer-events: none;
}
.shop-details-content ul li .default-btn {
  margin-left: 20px;
  padding: 12px 35px;
  margin-right: 20px;
}
.shop-details-content ul li .heart {
  height: 47px;
  width: 47px;
  text-align: center;
  line-height: 54px;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.06);
  border-radius: 5px;
}

/*
Checkout  Area  Style
======================================================*/
.inner-review-tab {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.inner-review-tab .description-warp {
  margin-top: 30px;
}
.inner-review-tab .tab-review .leave-form {
  background: #F8F8F8;
  border-radius: 5px;
  padding-top: 42px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
.inner-review-tab .tab-review .leave-form h5 {
  font-size: 24px;
  margin-bottom: 12px;
}
.inner-review-tab .tab-review .leave-form p {
  margin-bottom: 20px;
}
.inner-review-tab .tab-review .leave-form .form-control {
  height: 60px;
  border-radius: 5px;
  border: none;
  padding-left: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.inner-review-tab .tab-review .leave-form .form-control:focus {
  box-shadow: unset;
}
.inner-review-tab .tab-review .leave-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.inner-review-tab .tab-review .leave-form .form-control:focus::placeholder {
  color: transparent;
}
.inner-review-tab .tab-review .leave-form .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.inner-review-tab .tab-review .leave-form .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.inner-review-tab .tab-review .leave-form textarea {
  height: 150px !important;
  padding-top: 12px;
}
.inner-review-tab .tab-review .leave-form .form-check-input {
  height: 16px;
  width: 16px;
  padding-right: 5px;
}
.inner-review-tab .tab-review .leave-form .form-check-input:focus {
  box-shadow: unset;
}
.inner-review-tab .tab-review .leave-form .form-check {
  margin-bottom: 20px;
}
.inner-review-tab .tab-review .reviews-warp {
  margin-bottom: 50px;
}
.inner-review-tab .tab-review .reviews-warp h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.inner-review-tab .tab-review .reviews-warp .reviewer {
  margin-bottom: 12px;
}
.inner-review-tab .tab-review .reviews-warp .reviewer i {
  color: #FFC107;
  margin-left: 2px;
  margin-right: 2px;
}
.inner-review-tab .tab-review .reviews-warp .reviewer p {
  position: relative;
  bottom: -3px;
  font-weight: 700;
  color: #222222;
  left: 8px;
  font-size: 16px;
}
.inner-review-tab .tab-review .reviews-warp .user {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}
.inner-review-tab .tab-review .reviews-warp .content {
  margin-left: 30px;
}
.inner-review-tab .tab-review .reviews-warp .content span {
  color: #222222;
  margin-bottom: 8px;
  display: inline-block;
}
.inner-review-tab .tab-review .reviews-warp .review-item {
  margin-bottom: 25px;
}
.inner-review-tab .tab-review .reviews-warp .review-item:last-child {
  margin-bottom: 0;
}
.inner-review-tab .nav-pills {
  border-bottom: solid 1px #D9D9D9;
}
.inner-review-tab .nav-pills .nav-link {
  font-weight: 700;
  font-size: 22px;
  color: #222222;
  padding: 0;
  padding-bottom: 20px;
}
.inner-review-tab .nav-pills .nav-link.active {
  background-color: transparent;
  border-bottom: solid 2px #FD4045;
  border-radius: 0;
}
.inner-review-tab .nav-pills .nav-item {
  padding-right: 30px;
}
.inner-review-tab .nav-pills .nav-item:last-child {
  padding-right: 0;
}

.checkout-widget {
  padding-right: 20px;
}
.checkout-widget h4 {
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 20px;
}
.checkout-widget .checkout-form {
  background: #F8F8F8;
  border-radius: 5px;
  padding: 40px;
}
.checkout-widget .checkout-form .form-control {
  height: 60px;
  margin-bottom: 20px;
  padding-left: 20px;
  border: none;
  color: #888888;
  background-color: #ffffff;
}
.checkout-widget .checkout-form .form-control:focus {
  box-shadow: unset;
}
.checkout-widget .checkout-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.checkout-widget .checkout-form .form-control:focus::placeholder {
  color: transparent;
}
.checkout-widget .checkout-form .form-control::-moz-placeholder {
  color: #888888;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.checkout-widget .checkout-form .form-control::placeholder {
  color: #888888;
  transition: all ease 0.5s;
}
.checkout-widget .checkout-form label {
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  font-family: "Fira Sans";
  margin-bottom: 10px;
}
.checkout-widget .checkout-form textarea {
  height: 155px !important;
  padding-top: 12px;
}
.checkout-widget p {
  padding-top: 20px;
}
.checkout-widget p a {
  color: #FD4045;
}

.order-warp {
  padding: 45px 50px 50px 50px;
  background: #F8F8F8;
  border-radius: 5px;
}
.order-warp h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.order-warp .prize {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.order-warp .prize li {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-weight: 500;
  color: #555555;
  border-bottom: 1px solid rgba(34, 34, 34, 0.05);
}
.order-warp .prize li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
  font-weight: 700;
  color: #222222;
}
.order-warp .prize li:last-child span {
  color: #FA8440;
  font-weight: 600;
}
.order-warp .prize li span {
  position: absolute;
  right: 0;
}
.order-warp .bank-trasfer {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.order-warp .bank-trasfer li {
  position: relative;
  font-weight: 500;
  font-family: "Fira Sans";
  margin-bottom: 15px;
  color: #222222;
  padding-left: 30px;
}
.order-warp .bank-trasfer li:last-child {
  margin-bottom: 0;
}
.order-warp .bank-trasfer li:hover::after {
  opacity: 1;
}
.order-warp .bank-trasfer li:hover::before {
  background: #FA8440;
}
.order-warp .bank-trasfer li:first-child::after {
  opacity: 1;
}
.order-warp .bank-trasfer li:first-child::before {
  background: #FA8440;
}
.order-warp .bank-trasfer li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #E8E8E8;
}
.order-warp .bank-trasfer li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 5px;
  width: 7px;
  height: 7px;
  transition: all ease 0.5s;
  opacity: 0;
  border-radius: 50%;
  background: #FFFFFF;
}
.order-warp .bank-trasfer li p {
  font-size: 14px;
  color: #555555;
}
.order-warp .default-btn {
  width: 100%;
  margin-top: 20px;
}
.order-warp p a {
  color: #FD4045;
}

/*
404 Error Page Style
=======================================================*/
.error-area {
  text-align: center;
  position: relative;
  z-index: 1;
}
.error-area .d-table {
  width: 100%;
  height: 100%;
}
.error-area .d-table .d-table-cell {
  vertical-align: middle;
}
.error-area .error-content-wrap {
  z-index: 1;
  position: relative;
}
.error-area .error-content-wrap h3 {
  margin: 30px 0 0;
  position: relative;
  color: #222222;
}
.error-area .error-content-wrap p {
  margin: 20px 0 20px;
  font-size: 19px;
}
.error-area .error-content-wrap .default-btn.two {
  font-size: 16px;
  padding: 12px 40px;
}
.error-area .error-content-wrap .default-btn:hover {
  color: #FD4045;
}

/*
Terms & Conditions Area Style
=======================================================*/
.terms-conditions .title {
  margin-bottom: 30px;
  text-align: center;
}
.terms-conditions .title span {
  color: #FD4045;
  display: block;
  margin-bottom: 10px;
}
.terms-conditions .title h2 {
  font-size: 36px;
  color: #222222;
  font-weight: 900;
}
.terms-conditions img {
  margin-bottom: 30px;
}
.terms-conditions .conditions-content {
  margin-bottom: 30px;
}
.terms-conditions .conditions-content h3 {
  margin-bottom: 15px;
  color: #222222;
}
.terms-conditions .conditions-content p {
  margin-bottom: 10px;
  color: #555555;
}
.terms-conditions .conditions-content ul {
  margin-bottom: 15px;
  padding-left: 0;
  list-style-type: none;
  margin-top: 15px;
}
.terms-conditions .conditions-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555555;
}
.terms-conditions .conditions-content ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions .conditions-content ul li i {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  color: #FD4045;
}
.terms-conditions .conditions-content h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #222222;
}
.terms-conditions .conditions-content p {
  margin-bottom: 10px;
  color: #555555;
}

/*
Privacy Policy Area Style
=======================================================*/
.privacy-policy-wrap .title {
  margin-bottom: 30px;
  text-align: center;
}
.privacy-policy-wrap .title h2 {
  font-size: 36px;
  font-weight: 900;
  color: #222222;
  font: 30px;
}
.privacy-policy-wrap img {
  margin-bottom: 30px;
}
.privacy-policy-wrap .privacy-content {
  margin-bottom: 30px;
}
.privacy-policy-wrap .privacy-content h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #222222;
  font-size: 26px;
}
.privacy-policy-wrap .privacy-content p {
  margin-bottom: 10px;
  color: #555555;
}
.privacy-policy-wrap .privacy-content ul {
  margin-left: 0;
  margin-bottom: 15px;
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}
.privacy-policy-wrap .privacy-content li {
  position: relative;
  padding-left: 25px;
  color: #555555;
  margin-bottom: 10px;
}
.privacy-policy-wrap .privacy-content li:last-child {
  margin-bottom: 0;
}
.privacy-policy-wrap .privacy-content li i {
  position: absolute;
  left: 0;
  top: 1px;
  color: #FD4045;
  font-size: 20px;
}

.pinstructor-warp {
  position: relative;
}
.pinstructor-warp::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  width: 100%;
  z-index: -1;
  background-color: #222222;
}/*# sourceMappingURL=style.css.map */