<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Pixor | Creative Digital Agency Template
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
&gt;&gt;&gt; TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
	1.1 Theme Reset Style
	1.2 Global Elements

2. header
	2.1 topbar
	2.2 navigation

3. content
	3.1 hero-section
	3.2 partners
	3.3 about-section
	3.4 service-section
	3.5 text-animation
	3.6 project-section
	3.7 marquee-section
	3.8 fanfuct-section
	3.9 award-section
	3.10 project-title
	3.11 testimonial-section
	3.12 marquee-section-s2
	3.13 team-section
	3.14 blog-section

4. footer-section

5. Home-style-2
   5.1 marquee-section-s3
   5.2 about-section-s2
   5.3 service-section-s2
   5.4 award-section-s2
   5.5 fanfuct-section-s2
   5.6 project-section-s2
   5.7 team-section-s2
   5.8 marquee-section-s4
   5.9 blog-section-s2
   5.10 contact-section

6. Home-style-3
   6.1 about-section-s3
   6.2 service-section-s3
   6.3 project-section-s3
   6.4 partners-section-s2
   6.5 award-section-s3
   6.6 team-section-s3
   6.7 work-and-marquee-text
   6.8 testimonial-section-s2
   6.9 blog-section-s3
   6.10 contact-section-s2



7. project-single-page

8.service-single

9. team-single

10. contact-page

11.blog-pg-section

12. blog-single-section

13. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
/* 1.1	Theme Reset Style */
html {
  font-size: 15px;
}

body {
  font-family: "Inter", sans-serif;
  color: #687693;
  background-color: #fff;
  font-size: 15px;
  overflow-x: hidden !important;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #687693;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #121725;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}

#smooth-content {
  height: auto;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.9333333333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #FD5B38;
  display: inline-block;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {

  .contact-validation-active #success,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error {
    font-size: 15px;
  }
}

.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotating {
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: rgba(253, 91, 56, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #FD5B38;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-to-top:hover {
  background-color: #FD5B38;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.new_img-animet {
  visibility: hidden;
  overflow: hidden;
}

@media (min-width: 992px) {

  /* Cursor
  -----------------------------------------------------------------*/
  .hover-this .hover-anim {
    pointer-events: none;
    transition: transform 0.2s linear;
  }

  .cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: #fff;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.3s ease, opacity 0.4s ease;
    z-index: 99999;
  }

  .cursor-active {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0.1;
  }
}

.social-text .rolling-text {
  height: 30px;
}

.rolling-text:hover .letter,
.rolling-text.play .letter {
  transform: translateY(-100%);
}

.rolling-text .letter {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
  transition-delay: 0s;
}

.letter:nth-child(2) {
  transition-delay: 0.015s;
}

.letter:nth-child(3) {
  transition-delay: 0.03s;
}

.letter:nth-child(4) {
  transition-delay: 0.045s;
}

.letter:nth-child(5) {
  transition-delay: 0.06s;
}

.letter:nth-child(6) {
  transition-delay: 0.075s;
}

.letter:nth-child(7) {
  transition-delay: 0.09s;
}

.letter:nth-child(8) {
  transition-delay: 0.105s;
}

.letter:nth-child(9) {
  transition-delay: 0.12s;
}

.letter:nth-child(10) {
  transition-delay: 0.135s;
}

.letter:nth-child(11) {
  transition-delay: 0.15s;
}

.letter:nth-child(12) {
  transition-delay: 0.165s;
}

.letter:nth-child(13) {
  transition-delay: 0.18s;
}

.letter:nth-child(14) {
  transition-delay: 0.195s;
}

.letter:nth-child(15) {
  transition-delay: 0.21s;
}

.letter:nth-child(16) {
  transition-delay: 0.225s;
}

.letter:nth-child(17) {
  transition-delay: 0.24s;
}

.letter:nth-child(18) {
  transition-delay: 0.255s;
}

.letter:nth-child(19) {
  transition-delay: 0.27s;
}

.letter:nth-child(20) {
  transition-delay: 0.285s;
}

.letter:nth-child(21) {
  transition-delay: 0.3s;
}

@keyframes roted {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rolling-text {
  display: inline-block;
  overflow: hidden;
  line-height: 20px;
  height: 20px;
}

.wpo-section-title {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .wpo-section-title {
    margin-bottom: 40px;
  }
}

.wpo-section-title span {
  text-transform: uppercase;
  font-size: 20px;
  color: #FD5B38;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.wpo-section-title h2 {
  font-size: 40px;
  line-height: 55px;
  margin: 0;
  margin-top: 15px;
  position: relative;
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding-left: 40px;
  font-weight: 600;
  margin-top: 0;
}

.wpo-section-title h2:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: #FD5B38;
  content: "";
}

@media (max-width: 767px) {
  .wpo-section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 330px) {
  .wpo-section-title h2 {
    font-size: 30px;
  }
}

.wpo-section-title p {
  font-size: 18px;
}

.theme-btn,
.view-cart-btn {
  background: #BAE900;
  color: #000;
  display: inline-block;
  padding: 15px 45px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.theme-btn i,
.view-cart-btn i {
  position: relative;
  bottom: -3px;
}

.theme-btn:hover,
.view-cart-btn:hover,
.theme-btn:focus,
.view-cart-btn:focus,
.theme-btn:active,
.view-cart-btn:active {
  color: #121725;
}

.theme-btn:hover:after,
.view-cart-btn:hover:after {
  opacity: 1;
}

@media (max-width: 991px) {

  .theme-btn,
  .view-cart-btn {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .theme-btn,
  .view-cart-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.theme-btn-s2 {
  background: #fff;
  color: #565656;
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #FD5B38;
  border-radius: 55px;
  text-transform: capitalize;
  z-index: 1;
  position: relative;
}

.theme-btn-s2:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 55px;
  background: linear-gradient(left, #00ded8, #00a7d5);
  transition: opacity 0.5s ease-out;
  opacity: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}

.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
  background: #fd461f;
  color: #fff;
}

.theme-btn-s2:hover:after {
  opacity: 1;
}

@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}

.button--stroke:after {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.button__label {
  position: relative;
  text-align: center;
  transition: color 50ms ease-in-out;
}

.button--stroke:hover .button__label {
  transition: color 0.15s ease-in-out;
}

.button__spotlight {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.button--stroke .button__spotlight {
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform;
}

.button__spotlight:before {
  aspect-ratio: 1/1;
  background-color: rgba(129, 118, 118, 0.5);
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 170%;
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
}

.view-cart-btn:after {
  display: none;
}

.view-cart-btn:hover {
  background-color: #fd3a10;
}

.view-cart-btn.s1 {
  background: #ddd;
}

.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #FD5B38;
  -o-box-shadow: 0 0 5px 0 #fe856a;
  -ms-box-shadow: 0 0 5px 0 #fe856a;
  box-shadow: 0 0 5px 0 #fe856a;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-moz-placeholder {
  font-style: normal;
}

.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: #fe856a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: #FD5B38;
}

.wpo-page-title {
  min-height: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
}

@media (max-width: 991px) {
  .wpo-page-title {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .wpo-page-title {
    min-height: 300px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
  justify-content: center;
}

.wpo-page-title .wpo-breadcumb-wrap h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 57px;
  color: #fff;
  margin-bottom: 10px;
  word-break: break-all;
  margin-top: 0;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 55px;
    margin-bottom: 10px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ul {
  padding-left: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.wpo-page-title .wpo-breadcumb-wrap ul li {
  display: inline-block;
  padding: 0px 15px;
  color: #fff;
  position: relative;
  font-size: 18px;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ul li {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap ul li {
    font-size: 16px;
    padding: 0 10px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ul li:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.wpo-page-title .wpo-breadcumb-wrap ul li:last-child span {
  color: #fff;
}

.wpo-page-title .wpo-breadcumb-wrap ul li:last-child:after {
  display: none;
}

.wpo-page-title .wpo-breadcumb-wrap ul li a {
  color: #fff;
  font-size: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li a {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li a {
    font-size: 16px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
  color: #BAE900;
}

.preloader {
  background-color: #040402;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1111111111;
  overflow: hidden;
}

.preloader::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}

.preloader * {
  transition: all 0.3s;
}

.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}

.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

/*------------------------------------
    blog sidebar
------------------------------------*/
.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** instagram-widget ***/
  /*** tag-widget ***/
  /*** wpo-contact-widget ***/
}

@media screen and (min-width: 992px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}

.blog-sidebar .widget h3,
.blog-sidebar .widget h2 {
  font-size: 23px;
  color: #262626;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  padding-bottom: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

.blog-sidebar .widget h3:before,
.blog-sidebar .widget h2:before {
  content: "";
  background-color: #262626;
  width: 55px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}

.blog-sidebar .widget h3:after,
.blog-sidebar .widget h2:after {
  content: "";
  background-color: #f2f2f2;
  width: 80%;
  height: 4px;
  position: absolute;
  left: 65px;
  bottom: 0;
  border-radius: 10px;
}

.blog-sidebar&gt;.widget+.widget {
  margin-top: 65px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background-color: #F3F6F6;
  height: 70px;
  font-size: 16px;
  font-size: 1.06667rem;
  padding: 6px 50px 6px 20px;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: rgba(23, 114, 101, 0.1);
}

.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  color: #fff;
  background-color: #333;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-sidebar .about-widget {
  text-align: center;
  background-color: #F3F6F6;
  padding: 45px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px;
  }
}

.blog-sidebar .about-widget .aw-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}

.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  width: 100%;
  max-width: 200px;
}

.blog-sidebar .about-widget ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog-sidebar .about-widget ul li {
  margin-right: 10px;
}

.blog-sidebar .about-widget ul li:last-child {
  margin-right: 0;
}

.blog-sidebar .about-widget ul li a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  background-color: #f1f1f1;
  border-radius: 50%;
}

.blog-sidebar .about-widget h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-sidebar .about-widget p {
  font-size: 15px;
  font-size: 1rem;
  margin-bottom: 1.2em;
}

.blog-sidebar .category-widget ul {
  list-style: none;
}

.blog-sidebar .category-widget ul li {
  font-size: 19px;
  font-size: 1.26667rem;
  position: relative;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}

.blog-sidebar .category-widget ul&gt;li+li {
  margin-top: 12px;
}

.blog-sidebar .category-widget ul a {
  display: block;
  color: #474f62;
  font-size: 16px;
  padding: 20px;
  background: #F3F6F6;
  padding-left: 60px;
  position: relative;
  width: 100%;
}

@media (max-width: 1200px) {
  .blog-sidebar .category-widget ul a {
    padding: 10px;
    padding-left: 25px;
    font-size: 14px;
  }
}

.blog-sidebar .category-widget ul a:after {
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\e6af";
  font-family: "themify";
  transform: translateY(-50%);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .blog-sidebar .category-widget ul a:after {
    left: 5px;
  }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul a.active,
.blog-sidebar .category-widget ul li:hover:before {
  background: #779A65;
  color: #fff;
}

.blog-sidebar .category-widget ul li.current-menu-item a {
  background: #779A65;
  color: #fff;
}

.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts&gt;.post+.post {
  margin-top: 15px;
  padding-top: 15px;
}

.blog-sidebar .recent-post-widget .post .img-holder {
  width: 90px;
  float: left;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
  border-radius: 6px;
  min-height: 70px;
  object-fit: cover;
}

.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 90px);
  float: left;
  padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5em;
  margin: 0 0 0.3em;
  font-family: "Jost", sans-serif;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #1E3446;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #BAE900;
}

.blog-sidebar .recent-post-widget .post .details .date {
  font-size: 13px;
  font-size: 0.86667rem;
  color: #6e6e6e;
}

.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}

.blog-sidebar .wpo-instagram-widget ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.blog-sidebar .wpo-instagram-widget ul li {
  -ms-flex: 0 0 33.33%;
  -webkit-box-flex: 0;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}

.blog-sidebar .wpo-instagram-widget ul li img {
  width: 100%;
  border-radius: 6px;
}

.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}

.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
  font-size: 15px;
  font-size: 1rem;
  display: inline-block;
  padding: 15px 25px;
  color: #1E3446;
  background: #F3F6F6;
  border-radius: 0px;
}

@media (max-width: 1399px) {
  .blog-sidebar .tag-widget ul li a {
    padding: 15px 20px;
  }
}

@media (max-width: 1199px) {
  .blog-sidebar .tag-widget ul li a {
    padding: 8px 10px;
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

.blog-sidebar .tag-widget ul li a:hover {
  background: #BAE900;
  color: #fff;
}

.blog-sidebar .wpo-contact-widget h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 30px;
  margin-top: 0;
}

.blog-sidebar.service-sidebar .wpo-contact-widget h2::after,
.blog-sidebar.service-sidebar .wpo-contact-widget h2::before {
  background: none;
}

.blog-sidebar.service-sidebar .wpo-contact-widget h2 {
  margin-bottom: 0;
}

.blog-sidebar.service-sidebar .wpo-contact-widget h5 {
  margin-bottom: 0;
  margin-top: 0;
}


@media screen and (min-width: 992px) {
  .wpo-blog-pg-section.blog-pg-left-sidebar .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-blog-single-section.wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-blog-pg-section.blog-pg-left-sidebar .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-blog-single-section.wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 600;
  color: #121725;
  background: #ebf4fc;
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1rem;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #FD5B38;
  border-color: #FD5B38;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: 1rem;
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}


/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
  background: #163967;
  padding: 0 130px;
}

@media (max-width: 991px) {
  .topbar {
    text-align: center;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-style-1 {
    text-align: center;
    padding: 20px 0;
  }
}

.topbar {
  font-size: 16px;
  color: #e5e3e3;
  margin: 0;
}

.topbar ul {
  overflow: hidden;
  list-style: none;
  float: left;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .topbar ul {
    float: none;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.topbar ul li {
  font-size: 16px;
  float: left;
  padding: 15px 10px;
  color: #e5e3e3;
  line-height: 1em;
}

@media (max-width: 991px) {
  .topbar ul li {
    padding: 15px 10px;
  }
}

.topbar .contact-info li {
  position: relative;
}

.topbar .contact-info li:nth-child(1):before,
.topbar .contact-info li:nth-child(2):before {
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

@media (max-width: 767px) {

  .topbar .contact-info li:nth-child(1):before,
  .topbar .contact-info li:nth-child(2):before {
    display: none;
  }
}

.topbar .contact-info ul li a {
  color: #e4e4e4;
}

.topbar .contact-info ul li a:hover {
  color: #FD5B38;
}

.topbar ul li:first-child {
  padding-left: 0;
}

.topbar .contact-intro ul {
  float: right;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .topbar .contact-intro ul {
    float: none;
  }
}

@media (max-width: 1200px) {
  .topbar ul li {
    font-size: 12px;
    padding: 15px 10px;
  }
}

@media (max-width: 991px) {
  .topbar ul li {
    font-size: 13px;
  }

  .topbar {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .topbar ul li {
    float: left;
    border: none;
    padding: 8px 6px;
    font-size: 13px;
  }
}

@media (max-width: 590px) {
  .topbar ul li {
    float: none;
  }

  .topbar .contact-info ul li {
    float: left;
  }

  .topbar ul {
    flex-wrap: wrap;
  }
}

.topbar .theme-btn-s2 {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: -3px;
  color: #fff !important;
}

.topbar ul .fi {
  position: relative;
  top: 1px;
  display: inline-block;
  padding-right: 3px;
}

.topbar ul .fi:before {
  font-size: 15px;
  font-size: 1rem;
  color: #fff;
}

/* 2.2 navigation */
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  position: absolute;
  padding: 0 70px;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 991;
}

@media (max-width: 1199px) {
  .wpo-site-header {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header {
    padding: 0;
  }
}

.wpo-site-header::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  width: 95%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-50%);
}

.wpo-site-header .navigation {
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
}

.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.wpo-site-header .navigation&gt;.container {
  position: relative;
}

.wpo-site-header .row {
  width: 100%;
}

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
  }
}

.wpo-site-header #navbar {
  transition: all 0.5s;
}

.wpo-site-header #navbar&gt;ul li a:hover,
.wpo-site-header #navbar&gt;ul li a:focus {
  text-decoration: none;
  color: #FD5B38;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
    justify-content: center;
  }

  .wpo-site-header #navbar li {
    position: relative;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a {
    position: relative;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar&gt;ul&gt;li:hover&gt;.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .wpo-site-header #navbar .sub-menu&gt;li:hover&gt;.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.wpo-site-header .container-fluid {
  padding-right: 0;
}

.wpo-site-header.wpo-site-header-s3 .container-fluid {
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }

  .wpo-site-header .header-right {
    right: -10px;
  }

  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}

.wpo-site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar&gt;ul {
    z-index: 101;
  }

  .wpo-site-header #navbar ul a {
    color: #000;
  }

  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #FD5B38;
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }

  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }

  .wpo-site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
    text-align: center;
  }

  .wpo-site-header .navbar-right {
    float: none;
  }

  .wpo-site-header .navbar-nav {
    float: none;
  }

  .wpo-site-header .navbar-nav&gt;li {
    float: none;
  }
}

.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  z-index: 991;
  position: relative;
  align-items: center;
}

.wpo-site-header .header-right button {
  padding: 0;
  border: 0;
  outline: 0;
}

.wpo-site-header .header-right&gt;div {
  float: left;
  position: relative;
}

.wpo-site-header .header-right .close-form .theme-btn,
.wpo-site-header .header-right .close-form .view-cart-btn {
  padding: 18px 53px;
  background: #fff;
  border-radius: 0;
}

.wpo-site-header .header-right .close-form .theme-btn:hover,
.wpo-site-header .header-right .close-form .view-cart-btn:hover {
  background: #BAE900;
}

@media (max-width: 1400px) {

  .wpo-site-header .header-right .close-form .theme-btn,
  .wpo-site-header .header-right .close-form .view-cart-btn {
    padding: 10px 15px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {

  .wpo-site-header .header-right .close-form .theme-btn span,
  .wpo-site-header .header-right .close-form .view-cart-btn span {
    display: none;
  }
}

@media (max-width: 991px) {

  .wpo-site-header .header-right .close-form .theme-btn i,
  .wpo-site-header .header-right .close-form .view-cart-btn i {
    left: -2px;
  }
}

@media (max-width: 450px) {
  .wpo-site-header .header-right&gt;div {
    margin-right: 10px;
  }
}

.wpo-site-header .header-right&gt;div:last-child {
  position: relative;
}

@media (max-width: 767px) {
  .wpo-site-header .header-right&gt;div:last-child {
    margin: 0px;
  }
}

.wpo-site-header .header-right .header-search-form-wrapper {
  position: relative;
}

.wpo-site-header .header-right .header-search-form-wrapper .search-toggle-btn i,
.wpo-site-header .header-right .cart-toggle-btn i {
  font-size: 18px;
  color: #fff;
}

.wpo-site-header-s3 .header-right .header-search-form-wrapper .search-toggle-btn i,
.wpo-site-header-s4 .header-right .header-search-form-wrapper .search-toggle-btn i,
.wpo-site-header-s3 .header-right .cart-toggle-btn i,
.wpo-site-header-s4 .header-right .cart-toggle-btn i {
  font-size: 18px;
  color: #121725;
}

.wpo-site-header-s4:before {
  display: none;
}

.wpo-site-header .header-right .header-search-form-wrapper .search-toggle-btn {
  margin-top: 10px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .wpo-site-header .header-right .header-search-form-wrapper .search-toggle-btn {
    margin-right: 0;
  }
}

.wpo-site-header .header-right .cart-toggle-btn {
  line-height: 0.66em;
  width: 40px;
  height: 50px;
  border: 0;
  background: transparent;
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .cart-toggle-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .cart-toggle-btn {
    height: 40px;
  }
}

.wpo-site-header .header-right .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
  transform: scale(1);
}

.wpo-site-header .header-right .action-btn {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .action-btn {
    margin-right: 6px;
  }
}

.location {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 38px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

@media (max-width: 575px) {
  .location {
    display: none;
  }
}

/*** cart-search-contact ***/
.cart-search-contact button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}

.cart-search-contact .fi {
  font-size: 30px;
  font-size: 2rem;
  color: #242424;
}
.default-header .cart-search-contact .search-toggle-btn .fi {
  color: #fff;
  font-size: 20px;
} 

.default-header .header-right .search-toggle-btn i:before {
  color: #fff;
} 

.default-header .header-right .search-toggle-btn i {
  position: relative;
} 

.cart-search-contact&gt;div {
  float: left;
  position: relative;
}

.cart-search-contact&gt;div+div {
  margin-left: 12px;
}

.cart-search-contact .header-search-form {
  position: absolute;
  width: 350px;
  right: 0;
  top: 75px;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -2px 18px 40px -9px #999999;
  box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 991px) {
  .cart-search-contact .header-search-form {
    top: 65px;
  }
}

@media (max-width: 767px) {
  .cart-search-contact .header-search-form {
    right: 15px;
  }
}

@media (max-width: 575px) {
  .cart-search-contact .header-search-form {
    width: 260px;
    padding: 15px;
  }
}

.cart-search-contact .header-search-form-wrapper .fi:before {
  font-size: 18px;
  font-size: 1.2rem;
}

.cart-search-contact form div {
  position: relative;
}

.cart-search-contact form div button {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
  font-size: 18px !important;
}

.cart-search-contact input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #F3ECE9;
}

.cart-search-contact input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #B5A2BD;
}

.wpo-site-header .header-right .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}


.admin-bar .wpo-site-header .sticky-header.navigation {
    top: 32px;
}

@media(max-width: 991px) {
    .admin-bar .wpo-site-header .sticky-header.navigation {
        top: 46px;
    }
}

@media(max-width: 600px) {
    .admin-bar .wpo-site-header .sticky-header.navigation {
        top: 0;
    }
}


.mini-cart .cart-count {
  background: #FD5B38;
  width: 19px;
  height: 19px;
  font-size: 10px;
  font-size: 0.5333333333rem;
  line-height: 17px;
  color: white;
  position: absolute;
  top: -2px;
  right: -5px;
  border-radius: 50%;
  font-weight: 600;
}

.mini-cart-content {
  background: #fff;
  width: 320px;
  height: 100%;
  z-index: 100;
  position: fixed;
  right: -320px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px rgb(153, 153, 153);
  height: 100%;
  overflow: auto;
}

@media (max-width: 575px) {
  .mini-cart-content {
    width: 290px;
  }
}

.mini-cart-content .mini-cart-close {
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
  font-size: 0px;
  text-align: center;
  overflow: hidden;
  position: relative;
  float: right;
  line-height: 54px;
  border-radius: 3px;
  right: 10px;
  top: 20px;
  z-index: 1111;
}

.mini-cart-content .mini-cart-close i {
  font-size: 15px;
}

.mini-cart-content p {
  font-size: 15px;
  font-weight: 500;
  color: #121725;
  margin: 0;
  text-transform: capitalize;
}

.mini-cart-content .mini-cart-items {
  padding: 100px 20px 25px;
  position: relative;
}

.mini-cart-content .mini-cart-items h2 {
  padding: 20px 0;
  margin-bottom: 0;
}

.mini-cart-content .mini-cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #efefef;
  position: relative;
}

.mini-cart-content .mini-cart-item .icon {
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #efefef;
}

.mini-cart-content .mini-cart-item .contact h6 a {
  color: #121725;
}

.mini-cart-content .mini-cart-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.mini-cart-content .mini-cart-item-image {
  width: 50px;
  height: 50px;
  border: 2px solid #f3f3f3;
  float: left;
  margin-right: 15px;
}

.mini-cart-content .mini-cart-item-image a,
.mini-cart-content .mini-cart-item-image img {
  display: block;
  width: 46px;
  height: 46px;
}

.mini-cart-content .mini-cart-item-des a {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 600;
  text-align: left;
  color: #121725;
}

.mini-cart-content .mini-cart-item-des a:hover {
  color: #FD5B38;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-price {
  font-size: 13px;
  font-size: 0.8666666667rem;
  color: #888;
  display: block;
  margin-top: 3px;
  display: flex;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
  font-size: 12px;
  font-size: 0.8rem;
  color: #444;
  display: block;
  position: relative;
  right: -8px;
  top: 0;
}

.mini-cart-content .visible-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.02;
  z-index: -1;
}

.mini-cart-content .mini-cart-action {
  padding: 20px 0 30px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
}

.mini-cart-content .mini-cart-action .theme-btn-s2 {
  float: right;
}

.mini-cart-content .mini-cart-action .mini-btn {
  width: 240px;
}

.mini-cart-content .mini-cart-action .mini-checkout-price {
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 600;
  color: #121725;
  display: block;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-content .mini-cart-action .mini-checkout-price span {
  color: #c79652;
  font-size: 20px;
}

.mini-cart-content-toggle,
.mini-wislist-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.mini-cart-content .mini-cart-empty p {
  text-transform: capitalize;
  color: #687693;
  margin-bottom: 0;
}

.mini-cart-content .mini-cart-empty {
  padding-top: 80px;
  text-align: center;
}

.mini-cart-content .mini-cart-empty .cart-emty-icon i:before {
  font-size: 120px;
  color: #eee;
}

.mini-cart-content .mini-cart-empty a {
  display: inline-block;
}

@media (max-width: 991px) {
  .page-wrapper {
    transition: all 0.3s;
  }

  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.3s;
  }
}

.header-search-area {
  background: #fff;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.header-search-area h3 {
  font-size: 45px;
  margin: 0 0 1em;
}

.header-search-area form {
  position: relative;
}

.header-search-area input {
  height: 50px;
  font-size: 18px;
  font-size: 1.2rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  box-shadow: none;
}

.header-search-area input:focus {
  box-shadow: none;
  border-color: #FD5B38;
}

.header-search-area form button {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-size: 1.33333rem;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.header-search-area form button:focus {
  border: none;
  outline: none;
}

.header-search-area .close-form {
  position: absolute;
  right: 35px;
  top: 35px;
  bottom: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

.header-search-area .close-form button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-size: 0.86667rem;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  z-index: 99;
}

.header-search-area .close-form button:focus {
  border: 0;
  outline: 0;
}

.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}

.wpo-site-header .navigation {
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  padding-right: 120px;
}

@media (max-width: 1399px) {
  .wpo-site-header .navigation {
    padding-right: 0;
  }
}

.wpo-site-header .navigation&gt;.container {
  position: relative;
}

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
  }
}

.wpo-site-header #navbar {
  transition: all 0.5s;
}

.wpo-site-header #navbar&gt;ul li a:hover,
.wpo-site-header #navbar&gt;ul li a:focus {
  text-decoration: none;
  color: #fff;
}

.wpo-site-header #navbar&gt;ul li a:hover&gt;i,
.wpo-site-header #navbar&gt;ul li a:focus&gt;i {
  color: #BAE900;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }

  .wpo-site-header #navbar li {
    position: relative;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
    padding: 35px 22px;
    display: block;
    color: #fff;
    position: relative;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;a&gt;i {
    position: relative;
    bottom: -3px;
    transition: all 0.3s;
  }
}

@media screen and (min-width: 992px) and (max-width: 1870px) {
  .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
    padding: 35px 18px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1870px) {
  .wpo-site-header-s2 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s3 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s4 #navbar&gt;ul&gt;li&gt;a {
    padding: 35px 10px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar&gt;ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 225px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
  }

  .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    color: #121725;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: capitalize;
  }

  .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a i {
    display: none;
  }

  .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 4px;
    width: 0px;
    height: 2px;
    content: "";
    background: #FD5B38;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }

  .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a:hover:after,
  .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a {
    position: relative;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar&gt;ul&gt;li:hover&gt;.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .wpo-site-header #navbar .sub-menu&gt;li:hover&gt;.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar&gt;ul&gt;li a {
    display: block;
    font-size: 15px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
  }

  .wpo-site-header #navbar&gt;ul&gt;li a:hover,
  .wpo-site-header #navbar&gt;ul&gt;li a.active {
    color: #fff;
  }

  .wpo-site-header #navbar&gt;ul&gt;li a i {
    display: none;
  }

  .wpo-site-header #navbar&gt;ul .sub-menu&gt;li:last-child {
    border-bottom: 0;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu a {
    padding: 8px 15px 8px 45px;
  }

  .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }

  .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a {
    position: relative;
    color: #ddd;
  }

  .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a:hover,
  .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a.active {
    color: #fff;
  }

  .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }

  .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }

  .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a.rotate {
    color: #fff;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header .navbar-header .open-btn {
    display: none;
  }

  .wpo-site-header #navbar .close-navbar {
    display: none;
  }
}

.wpo-site-header .menu-close {
  display: none;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }

  .wpo-site-header .container {
    width: 100%;
  }

  .wpo-site-header .mobail-menu button {
    background-color: #FD5B38;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }

  .wpo-site-header .mobail-menu button:focus {
    outline: none;
    box-shadow: none;
  }

  .wpo-site-header .mobail-menu button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }

  .wpo-site-header #navbar {
    background: #040402;
    display: block !important;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }

  .wpo-site-header #navbar .navbar-nav {
    display: block;
  }

  .wpo-site-header #navbar&gt;ul {
    position: relative;
    z-index: 101;
  }

  .wpo-site-header #navbar ul a {
    color: #000;
  }

  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #FD5B38;
  }

  .wpo-site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }

  .wpo-site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .wpo-site-header .menu-close {
    display: block;
    z-index: 99;
    background: none;
    text-align: center;
    color: #fff;
    border: 0;
    text-align: center;
    margin-left: auto;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
  }

  .wpo-site-header .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

.wpo-site-header .navbar-header .navbar-brand img {
  max-width: 170px;
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }

  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }

  .wpo-site-header .navbar-header {
    float: none;
  }

  .wpo-site-header .navbar-right {
    float: none;
  }

  .wpo-site-header .navbar-nav {
    float: none;
  }

  .wpo-site-header .navbar-nav&gt;li {
    float: none;
  }
}

@media (max-width: 440px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 170px;
  }
}

@media (max-width: 370px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 140px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
    padding: 30px 15px;
  }
}

@media (max-width: 1600px) {
  .wpo-site-header-s2 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s3 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s4 #navbar&gt;ul&gt;li&gt;a {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
    padding: 30px 10px;
    font-size: 16px;
  }

  .wpo-site-header-s2 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s3 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s4 #navbar&gt;ul&gt;li&gt;a {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
    padding: 30px 6px;
    font-size: 16px;
  }

  .wpo-site-header-s2 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s3 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s4 #navbar&gt;ul&gt;li&gt;a {
    font-size: 13px;
    padding: 30px 5px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
    font-size: 15px;
  }
}

@media (max-width: 767px) {

  .header-right .theme-btn,
  .header-right .view-cart-btn {
    padding: 20px 12px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
    padding: 15px 30px;
  }
}

@media (max-width: 991px) {

  .wpo-site-header,
  .wpo-header-style-2 {
    z-index: 99999;
  }
}

.wpo-site-header .navigation.sticky-header {
  padding: 0 130px;
  background: #121725;
}


@media (max-width: 1700px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 50px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 20px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px 10px;
  }
}

.wpo-site-header-s2 .navigation.sticky-header {
  padding: 0 0;
}

/* wpo-site-header-s2 */
.wpo-site-header-s2 {
  padding: 0;
}

@media (max-width: 991px) {
  .wpo-site-header-s2 {
    padding: 10px;
  }
}

.wpo-site-header-s2::before {
  display: none;
}

.wpo-site-header-s2 .navigation {
  padding-right: 0;
}

.wpo-site-header-s2 .container-fluid {
  max-width: 1700px;
  margin-right: 0;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .wpo-site-header-s2 .container-fluid {
    justify-content: center;
  }
}

@media (max-width: 1499px) {
  .wpo-site-header-s2 .header-right .close-form {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-site-header-s3 .header-right .close-form,
  .wpo-site-header-s4 .header-right .close-form {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header-s2 #navbar {
    justify-content: left;
  }
}

.wpo-site-header-s2 .header-right&gt;div:last-child {
  margin: 0px;
}


.wpo-site-header-s2 .header-right .close-form .theme-btn,
.wpo-site-header-s2 .header-right .close-form .view-cart-btn {
  padding: 35px 53px;
  background: #BAE900;
}

@media (max-width: 1399px) {

  .wpo-site-header-s2 .header-right .close-form .theme-btn,
  .wpo-site-header-s2 .header-right .close-form .view-cart-btn {
    padding: 30px 25px;
  }
}

@media (max-width: 991px) {

  .wpo-site-header-s2 .header-right .close-form .theme-btn,
  .wpo-site-header-s2 .header-right .close-form .view-cart-btn {
    padding: 20px 40px;
  }
}

@media (max-width: 575px) {

  .wpo-site-header-s2 .header-right .close-form .theme-btn,
  .wpo-site-header-s2 .header-right .close-form .view-cart-btn {
    padding: 15px 25px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header-s2 .header-right {
    right: 0px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header-s2 .navigation {
    padding: 0px 0;
  }
}

/* wpo-site-header-s3 */
.wpo-site-header-s3,
.wpo-site-header-s4 {
  padding: 0;
}

@media (max-width: 991px) {
  .wpo-site-header-s3,
  .wpo-site-header-s4 {
    padding: 20px 0;
  }
}

.wpo-site-header-s3 .navigation,
.wpo-site-header-s4 .navigation {
  padding: 0;
  padding-left: 125px;
}

@media (max-width: 1499px) {

  .wpo-site-header-s3 .navigation,
  .wpo-site-header-s4 .navigation {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {

  .wpo-site-header-s3 .navigation,
  .wpo-site-header-s4 .navigation {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {

  .wpo-site-header-s3 .navigation,
  .wpo-site-header-s4 .navigation {
    padding-left: 0px;
  }
}

.wpo-site-header-s3:before,
.wpo-site-header-s4:before {
  width: 100%;
  background: #EDEDED;
  bottom: 7px;
}

.wpo-site-header-s3 .navigation.sticky-header,
.wpo-site-header-s4 .navigation.sticky-header {
  padding: 0 0 0 125px;
  background: #ffffff;
}

@media (max-width: 1499px) {

  .wpo-site-header-s3 .navigation.sticky-header,
  .wpo-site-header-s4 .navigation.sticky-header {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {

  .wpo-site-header-s3 .navigation.sticky-header,
  .wpo-site-header-s4 .navigation.sticky-header {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {

  .wpo-site-header-s3 .navigation.sticky-header,
  .wpo-site-header-s4 .navigation.sticky-header {
    padding-left: 0px;
  }
}

.wpo-site-header-s3 .header-right&gt;div:last-child,
.wpo-site-header-s4 .header-right&gt;div:last-child {
  margin: 0px;
}

.wpo-site-header-s3 .header-right .close-form .theme-btn,
.wpo-site-header-s3 .header-right .close-form .view-cart-btn,
.wpo-site-header-s4 .header-right .close-form .theme-btn,
.wpo-site-header-s4 .header-right .close-form .view-cart-btn {
  padding: 35px 53px;
  background: #BAE900;
}

@media (max-width: 1199px) {

  .wpo-site-header-s3 .header-right .close-form .theme-btn,
  .wpo-site-header-s3 .header-right .close-form .view-cart-btn,
  .wpo-site-header-s4 .header-right .close-form .theme-btn,
  .wpo-site-header-s4 .header-right .close-form .view-cart-btn {
    padding: 20px 40px;
  }
}

@media (max-width: 575px) {

  .wpo-site-header-s3 .header-right .close-form .theme-btn,
  .wpo-site-header-s3 .header-right .close-form .view-cart-btn,
  .wpo-site-header-s4 .header-right .close-form .theme-btn,
  .wpo-site-header-s4 .header-right .close-form .view-cart-btn {
    padding: 15px 25px;
  }
}

@media (max-width: 991px) {

  .wpo-site-header-s3 .header-right,
  .wpo-site-header-s4 .header-right {
    right: 0px;
  }
}

.wpo-site-header-s3 .location,
.wpo-site-header-s4 .location {
  color: #121725;
  font-size: 16px;
  font-weight: 600;
  line-height: 38px;
  margin-right: 95px;
}

@media (max-width: 1499px) {

  .wpo-site-header-s3 .location,
  .wpo-site-header-s4 .location {
    margin-right: 50px;
  }
}

@media (max-width: 1799px) {
  .wpo-site-header-s3 .location,
  .wpo-site-header-s4 .location {
    margin-right: 20px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header-s3 .location,
  .wpo-site-header-s4 .location {
    display: none;
  }
}

@media (max-width: 1800px) {
  .wpo-site-header-s2 .location,
  .wpo-site-header-s3 .location {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header-s2 .location,
  .wpo-site-header-s3 .location {
    display: none;
  }
}

@media (max-width: 1199px) {

  .wpo-site-header-s3 .location,
  .wpo-site-header-s4 .location {
    margin-right: 5px;
    font-size: 13px;
  }
}
@media (max-width: 1199px) {

  .wpo-site-header-s3 .location,
  .wpo-site-header-s4 .location {
    display: none;
  }
}

@media (max-width: 991px) {

  .wpo-site-header-s3 .location,
  .wpo-site-header-s4 .location {
    display: none;
  }
}

.wpo-site-header-s3 .location&gt;span,
.wpo-site-header-s4 .location&gt;span {
  color: #EE3736;
}

@media screen and (min-width: 992px) {

  .wpo-site-header-s3 #navbar&gt;ul&gt;li&gt;a,
  .wpo-site-header-s4 #navbar&gt;ul&gt;li&gt;a {
    color: #121725;
  }

  .wpo-site-header-s3 #navbar&gt;ul li a:hover,
  .wpo-site-header-s3 #navbar&gt;ul li a:focus,
  .wpo-site-header-s4 #navbar&gt;ul li a:hover,
  .wpo-site-header-s4 #navbar&gt;ul li a:focus {
    color: #BAE900;
    text-decoration: underline;
  }

  .wpo-site-header-s3 #navbar&gt;ul&gt;li:hover&gt;.sub-menu a:after,
  .wpo-site-header-s4 #navbar&gt;ul&gt;li:hover&gt;.sub-menu a:after {
    display: none;
  }
}

/* wpo-site-header-s4 */
.wpo-site-header-s4 {
  position: relative;
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 hero-section*/
.hero-section,
.hero-section-s2 {
  position: relative;
  height: 1003px;
  background: #040402;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {

  .hero-section,
  .hero-section-s2 {
    height: 100%;
  }
}

.hero-section .hero-wrap,
.hero-section-s2 .hero-wrap {
  padding-top: 100px;
  position: relative;
}

.hero-section .p-style,
.hero-section-s2 .p-style {
  max-width: 344px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-bottom: 20px;
  position: absolute;
  left: 0;
  top: 50px;
}

@media (max-width: 991px) {

  .hero-section .p-style,
  .hero-section-s2 .p-style {
    position: unset;
  }
}

@media (max-width: 575px) {

  .hero-section .p-style,
  .hero-section-s2 .p-style {
    margin-bottom: 20px;
  }
}

.hero-section .p-style p,
.hero-section-s2 .p-style p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 31px;
  text-transform: capitalize;
  max-width: 240px;
  margin-bottom: 0;
}

@media (max-width: 575px) {

  .hero-section .p-style p,
  .hero-section-s2 .p-style p {
    font-size: 16px;
    line-height: 25px;
  }
}

.hero-section .p-style i,
.hero-section-s2 .p-style i {
  font-size: 25px;
  color: #FD5B38;
}

.hero-section .title,
.hero-section-s2 .title {
  max-width: 1162px;
  position: relative;
}

@media (max-width: 991px) {

  .hero-section .title,
  .hero-section-s2 .title {
    padding: 100px 0;
  }
}

@media (max-width: 575px) {

  .hero-section .title,
  .hero-section-s2 .title {
    padding: 80px 0 100px;
  }
}

.hero-section h2,
.hero-section-s2 h2 {
  color: #fff;
  font-size: 180px;
  font-style: italic;
  font-weight: 600;
  line-height: 193px;
  text-transform: uppercase;
  display: block;
  text-align: end;
  margin-top: 0;
}

@media (max-width: 1199px) {

  .hero-section h2,
  .hero-section-s2 h2 {
    font-size: 140px;
    line-height: 170px;
  }
}

@media (max-width: 991px) {

  .hero-section h2,
  .hero-section-s2 h2 {
    text-align: left;
    font-size: 100px;
    line-height: 120px;
  }
}

@media (max-width: 575px) {

  .hero-section h2,
  .hero-section-s2 h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

.hero-section .normal,
.hero-section-s2 .normal {
  font-weight: 700;
  font-style: normal;
  text-align: left;
}

.hero-section .normal img,
.hero-section-s2 .normal img {
  position: relative;
  margin-top: -40px;
}

@media (max-width: 991px) {

  .hero-section .normal img,
  .hero-section-s2 .normal img {
    display: none;
  }
}

.hero-section .text-stroke,
.hero-section-s2 .text-stroke {
  color: transparent;
  font-style: normal;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  text-align: left;
}

.hero-section .text-stroke img,
.hero-section-s2 .text-stroke img {
  position: relative;
  margin-top: -30px;
}

@media (max-width: 991px) {

  .hero-section .text-stroke img,
  .hero-section-s2 .text-stroke img {
    max-width: 100px;
  }
}

@media (max-width: 575px) {

  .hero-section .text-stroke img,
  .hero-section-s2 .text-stroke img {
    max-width: 40px;
    margin-top: -10px;
  }
}

.hero-section .p-style-s2,
.hero-section-s2 .p-style-s2 {
  max-width: 344px;
  position: absolute;
  margin-right: -120px;
  bottom: 45px;
  right: 0;
}

@media (max-width: 991px) {

  .hero-section .p-style-s2,
  .hero-section-s2 .p-style-s2 {
    position: unset;
  }
}

@media (max-width: 575px) {

  .hero-section .p-style-s2,
  .hero-section-s2 .p-style-s2 {
    margin-top: 20px;
  }
}

.hero-section .p-style-s2 p,
.hero-section-s2 .p-style-s2 p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 31px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 575px) {

  .hero-section .p-style-s2 p,
  .hero-section-s2 .p-style-s2 p {
    font-size: 16px;
    line-height: 25px;
  }
}

.hero-section .start,
.hero-section-s2 .start {
  position: absolute;
  right: -30px;
  top: 150px;
  animation: rotateAniamtion 18s ease-in infinite;
  z-index: -1;
}

@media (max-width: 991px) {

  .hero-section .start,
  .hero-section-s2 .start {
    display: none;
  }
}

.hero-section .content_middle,
.hero-section-s2 .content_middle {
  max-width: 353px;
  max-height: 401px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-section .content_middle img,
.hero-section-s2 .content_middle img {
  transform: rotate(-15.259deg);
  filter: blur(5px);
}

.hero-section .bg-shape,
.hero-section-s2 .bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -11;
  width: 100%;
}

.hero-section .round-shape,
.hero-section-s2 .round-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 991px) {

  .hero-section .round-shape,
  .hero-section-s2 .round-shape {
    display: none;
  }
}

@keyframes rotateAniamtion {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes roted {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* hero-section-s2 */
.hero-section-s2 {
  background: transparent;
  height: 944px;
}

@media (max-width: 991px) {
  .hero-section-s2 {
    height: 100%;
  }
}

.hero-section-s2 .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-section-s2 .bg-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.61);
}

.hero-section-s2 .bg-image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .hero-section-s2 .hero-wrap {
    padding-top: 0px;
  }
}

.hero-section-s2 h2 {
  font-size: 120px;
  font-weight: 700;
  line-height: 116px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .hero-section-s2 h2 {
    font-size: 100px;
  }
}

@media (max-width: 991px) {
  .hero-section-s2 h2 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .hero-section-s2 h2 {
    font-size: 60px;
    line-height: 80px;
  }
}

@media (max-width: 575px) {
  .hero-section-s2 h2 {
    font-size: 30px;
    line-height: 50px;
  }
}

.hero-section-s2 .bottom-image {
  display: flex;
  align-items: center;
  max-width: 810px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .hero-section-s2 .bottom-image {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .hero-section-s2 .bottom-image {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .hero-section-s2 .bottom-image {
    margin-top: 10px;
    display: block;
  }
}

.hero-section-s2 .bottom-image .image {
  max-width: 655px;
  max-height: 142px;
}

.hero-section-s2 .bottom-image .image img {
  width: 100%;
  border-radius: 71px;
}

.hero-section-s2 .bottom-image a {
  max-width: 140px;
  max-height: 140px;
  width: 100%;
  width: 100%;
  background: #EE3736;
  text-align: center;
  line-height: 140px;
  border-radius: 100%;
  font-size: 30px;
  color: #fff;
  padding-top: 5px;
  margin-left: 35px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .hero-section-s2 .bottom-image a {
    max-width: 100px;
    max-height: 100px;
    line-height: 100px;
  }
}

@media (max-width: 575px) {
  .hero-section-s2 .bottom-image a {
    max-width: 60px;
    max-height: 60px;
    line-height: 60px;
    margin-left: 0;
    display: block;
    margin-top: 10px;
  }
}

.hero-section-s2 .bottom-image a:hover {
  background: #c52626;
}

.hero-section-s2 .bottom-image a i {
  margin-left: -7px;
}

.hero-section-s2 .p-style-s2 {
  bottom: 0;
}

@media (max-width: 1399px) {
  .hero-section-s2 .p-style-s2 {
    position: unset;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .hero-section-s2 .p-style-s2 {
    margin-right: 0;
  }
}

.hero-section-s2 .p-style-s2 p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: lowercase;
}

@media (max-width: 767px) {
  .hero-section-s2 .p-style-s2 p {
    font-size: 16px;
  }
}

.hero-section-s2 .hero-social {
  position: absolute;
  left: 1px;
  bottom: 30px;
}

.hero-section-s2 .hero-social li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}

.hero-section-s2 .hero-social li a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 38px;
  background: transparent;
  width: 38px;
  height: 60px;
  line-height: 60px;
  display: block;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 757px) {
  .hero-section-s2 .hero-social li a {
    font-size: 15px;
    width: 35px;
    height: 50px;
    line-height: 50px;
  }
}

.hero-section-s2 .hero-social li a:hover,
.hero-section-s2 .hero-social li a.active {
  background: #343434;
}

/* hero-section-s3 */
.hero-section-s3 {
  position: relative;
  height: 1085px;
  background: #fff;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .hero-section-s3 {
    height: 900px;
  }
}

@media (max-width: 991px) {
  .hero-section-s3 {
    height: 100%;
  }
}

.hero-section-s3 .hero-wrap {
  position: relative;
  padding: 100px 0 150px;
}

.hero-section-s3 h2 {
  color: #000;
  font-size: 190px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .hero-section-s3 h2 {
    font-size: 150px;
  }
}

@media (max-width: 1199px) {
  .hero-section-s3 h2 {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .hero-section-s3 h2 {
    font-size: 60px;
  }
}

.hero-section-s3 h2 span {
  font-size: 90px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .hero-section-s3 h2 span {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .hero-section-s3 h2 span {
    font-size: 40px;
  }
}

.hero-section-s3 h3 {
  color: #121725;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 130px;
}

@media (max-width: 1399px) {
  .hero-section-s3 h3 {
    font-size: 100px;
  }
}

@media (max-width: 1199px) {
  .hero-section-s3 h3 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .hero-section-s3 h3 {
    font-size: 40px;
  }
}

.hero-section-s3 h3 span {
  font-size: 80px;
}

@media (max-width: 1199px) {
  .hero-section-s3 h3 span {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .hero-section-s3 h3 span {
    font-size: 50px;
  }
}

.hero-section-s3 .p-style-s2 {
  max-width: 344px;
  margin-top: 40px;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .hero-section-s3 .p-style-s2 {
    margin-bottom: 40px;
  }
}

.hero-section-s3 .p-style-s2 p {
  color: #121725;
  font-size: 20px;
  font-weight: 500;
  line-height: 31px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .hero-section-s3 .p-style-s2 p {
    font-size: 16px;
    line-height: 25px;
  }
}

.hero-section-s3 a {
  width: 140px;
  height: 140px;
  line-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121725;
  border-radius: 100%;
  color: #fff;
  font-size: 30px;
}

@media (max-width: 767px) {
  .hero-section-s3 a {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}

.hero-section-s3 .bg-shape {
  position: absolute;
  left: 0;
  top: 86px;
  z-index: -1;
}

.hero-section-s3 .bg-image {
  right: -100px;
  bottom: 0px;
  position: absolute;
  max-width: 1149px;
  max-height: 601px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-section-s3 .bg-image {
    max-width: 1020px;
  }
}

@media (max-width: 1199px) {
  .hero-section-s3 .bg-image {
    max-width: 900px;
  }
}

@media (max-width: 991px) {
  .hero-section-s3 .bg-image {
    display: none;
  }
}

.hero-section-s3 .shape {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #000;
  height: 80px;
  left: 0;
}

.hero-section-s3 .shape-2 {
  width: 233px;
  height: 208px;
  position: absolute;
  background: #BAE900;
  z-index: 1;
  border-top-left-radius: 23px;
  z-index: -1;
  right: -67px;
  bottom: -5px;
}

.hero-section-s3 .btn-wrapper:hover {
  color: #fff;
}

/*--------------------------------------------------------------
4. footer-section
--------------------------------------------------------------*/
.footer-section,
.footer-section-s3 {
  background: #000;
  overflow: hidden;
}

.footer-section .footer-topbar .wraper,
.footer-section-s3 .footer-topbar .wraper {
  max-width: 930px;
  margin: 0 auto;
  padding-bottom: 55px;
}

.footer-section .footer-topbar h2,
.footer-section-s3 .footer-topbar h2 {
  color: #fff;
  font-size: 108px;
  font-weight: 700;
  line-height: 114px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .footer-section .footer-topbar h2,
  .footer-section-s3 .footer-topbar h2 {
    font-size: 70px;
  }
}

@media (max-width: 767px) {

  .footer-section .footer-topbar h2,
  .footer-section-s3 .footer-topbar h2 {
    font-size: 60px;
    line-height: 84px;
  }
}

@media (max-width: 575px) {

  .footer-section .footer-topbar h2,
  .footer-section-s3 .footer-topbar h2 {
    font-size: 40px;
    line-height: 74px;
  }
}

.footer-section .footer-topbar h2 span,
.footer-section-s3 .footer-topbar h2 span {
  font-style: italic;
  font-weight: 400;
  color: #BAE900;
}

.footer-section .footer-topbar .theme-btn,
.footer-section .footer-topbar .view-cart-btn,
.footer-section-s3 .footer-topbar .theme-btn,
.footer-section-s3 .footer-topbar .view-cart-btn {
  padding: 30px 70px;
  margin-right: 40px;
  border-radius: 100px;
}

@media (max-width: 991px) {

  .footer-section .footer-topbar .theme-btn,
  .footer-section .footer-topbar .view-cart-btn,
  .footer-section-s3 .footer-topbar .theme-btn,
  .footer-section-s3 .footer-topbar .view-cart-btn {
    font-size: 18px;
    padding: 20px 54px;
  }
}

@media (max-width: 767px) {

  .footer-section .footer-topbar .theme-btn,
  .footer-section .footer-topbar .view-cart-btn,
  .footer-section-s3 .footer-topbar .theme-btn,
  .footer-section-s3 .footer-topbar .view-cart-btn {
    padding: 17px 30px;
    font-size: 14px;
    margin-right: 20px;
  }
}

.footer-section .footer-topbar .theme-btn .rolling-text,
.footer-section .footer-topbar .view-cart-btn .rolling-text,
.footer-section-s3 .footer-topbar .theme-btn .rolling-text,
.footer-section-s3 .footer-topbar .view-cart-btn .rolling-text {
  line-height: 28px;
}

.footer-section .footer-topbar .topbar-button,
.footer-section-s3 .footer-topbar .topbar-button {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {

  .footer-section .footer-topbar .topbar-button,
  .footer-section-s3 .footer-topbar .topbar-button {
    display: block;
  }
}

.footer-section .footer,
.footer-section-s3 .footer {
  display: flex;
  align-items: start;
}

@media (max-width: 991px) {

  .footer-section .footer,
  .footer-section-s3 .footer {
    flex-wrap: wrap;
  }
}

.footer-section .item,
.footer-section-s3 .item {
  padding: 80px 0;
  border-top: 1px solid #232222;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {

  .footer-section .item,
  .footer-section-s3 .item {
    padding: 30px 0;
  }
}

.footer-section .item .shape,
.footer-section-s3 .item .shape {
  position: absolute;
  left: 0;
  top: 30%;
  z-index: -1;
  transform: translateY(-50%);
  animation: rotateAniamtion 25s ease-in infinite;
}

@media (max-width: 991px) {

  .footer-section .item .shape,
  .footer-section-s3 .item .shape {
    display: none;
  }
}

.footer-section .item .shape img,
.footer-section-s3 .item .shape img {
  width: 120px;
}

.footer-section .item ul,
.footer-section-s3 .item ul {
  padding-left: 0;
}

.footer-section .item ul li,
.footer-section-s3 .item ul li {
  display: block;
}

.footer-section .item ul li a,
.footer-section-s3 .item ul li a {
  color: #DDD;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.footer-section .item ul li a:hover,
.footer-section-s3 .item ul li a:hover {
  color: #BAE900;
}

.footer-section .item ul li+li,
.footer-section-s3 .item ul li+li {
  padding-top: 15px;
}

.footer-section .item:first-child,
.footer-section-s3 .item:first-child {
  max-width: 575px;
  width: 100%;
  padding-left: 330px;
}

@media (max-width: 1399px) {

  .footer-section .item:first-child,
  .footer-section-s3 .item:first-child {
    padding-left: 150px;
  }
}

@media (max-width: 991px) {

  .footer-section .item:first-child,
  .footer-section-s3 .item:first-child {
    padding-left: 0px;
    max-width: 100%;
    width: 50%;
  }
}

@media (max-width: 767px) {

  .footer-section .item:first-child,
  .footer-section-s3 .item:first-child {
    width: 100%;
  }
}

.footer-section .item:nth-child(2),
.footer-section-s3 .item:nth-child(2) {
  max-width: 350px;
  width: 100%;
  padding-left: 80px;
  border-left: 1px solid #232222;
}

@media (max-width: 991px) {

  .footer-section .item:nth-child(2),
  .footer-section-s3 .item:nth-child(2) {
    padding-left: 20px;
    max-width: 100%;
    width: 50%;
    border-left: 0;
  }
}

@media (max-width: 767px) {

  .footer-section .item:nth-child(2),
  .footer-section-s3 .item:nth-child(2) {
    padding-left: 0;
    width: 100%;
    padding-top: 0;
    border-top: 0;
    padding-bottom: 30px;
  }
}

.footer-section .item:last-child,
.footer-section-s3 .item:last-child {
  max-width: 370px;
  width: 100%;
}

@media (max-width: 991px) {

  .footer-section .item:last-child,
  .footer-section-s3 .item:last-child {
    border-top: 0;
    padding-top: 0;
    max-width: 100%;
    width: 50%;
  }
}

@media (max-width: 767px) {

  .footer-section .item:last-child,
  .footer-section-s3 .item:last-child {
    width: 100%;
    padding-bottom: 30px;
  }
}

.footer-section .title,
.footer-section-s3 .title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.footer-section .widget-contact .title,
.footer-section-s3 .widget-contact .title {
  text-transform: uppercase;
  font-weight: 700;
}

.footer-section .widget-contact h3,
.footer-section-s3 .widget-contact h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: lowercase;
}

@media (max-width: 991px) {

  .footer-section .widget-contact h3,
  .footer-section-s3 .widget-contact h3 {
    font-size: 16px;
  }
}

.footer-section .widget-contact h4,
.footer-section-s3 .widget-contact h4 {
  color: #BAE900;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 991px) {

  .footer-section .widget-contact h4,
  .footer-section-s3 .widget-contact h4 {
    font-size: 20px;
  }
}

.footer-section .widget-social,
.footer-section-s3 .widget-social {
  margin-top: 40px;
}

.footer-section .widget-social li,
.footer-section-s3 .widget-social li {
  display: inline !important;
  margin-right: 25px;
}

.footer-section .widget-social li a,
.footer-section-s3 .widget-social li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  transition: all 0.3s ease-in-out;
}

.footer-section .widget-social li a:hover,
.footer-section-s3 .widget-social li a:hover {
  color: #BAE900;
}

.footer-section .widget-newsletter .newsletter .form-fild,
.footer-section-s3 .widget-newsletter .newsletter .form-fild {
  position: relative;
}

.footer-section .widget-newsletter .newsletter .form-fild .fild,
.footer-section-s3 .widget-newsletter .newsletter .form-fild .fild {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
  border: transparent;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
  background: #181818;
  padding: 18px 25px;
  max-width: 350px;
  width: 100%;
  color: #DDDDDD;
}

@media (max-width: 1399px) {

  .footer-section .widget-newsletter .newsletter .form-fild .fild,
  .footer-section-s3 .widget-newsletter .newsletter .form-fild .fild {
    max-width: 280px;
    padding: 14px 25px;
  }
}

.footer-section .widget-newsletter .newsletter .form-fild .fild:focus-visible,
.footer-section-s3 .widget-newsletter .newsletter .form-fild .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}

.footer-section .widget-newsletter .newsletter .form-fild .fild::-webkit-input-placeholder,
.footer-section-s3 .widget-newsletter .newsletter .form-fild .fild::-webkit-input-placeholder {
  color: #DDDDDD;
}

.footer-section .widget-newsletter .newsletter .form-fild .fild::-moz-placeholder,
.footer-section-s3 .widget-newsletter .newsletter .form-fild .fild::-moz-placeholder {
  color: #DDDDDD;
}

.footer-section .widget-newsletter .newsletter .form-fild .fild:-ms-input-placeholder,
.footer-section-s3 .widget-newsletter .newsletter .form-fild .fild:-ms-input-placeholder {
  color: #DDDDDD;
}

.footer-section .widget-newsletter .newsletter .form-fild .fild:-moz-placeholder,
.footer-section-s3 .widget-newsletter .newsletter .form-fild .fild:-moz-placeholder {
  color: #DDDDDD;
}

.footer-section .widget-newsletter .newsletter .form-fild button,
.footer-section-s3 .widget-newsletter .newsletter .form-fild button {
  right: 0px;
  top: 6px;
  background: transparent;
  border: 0 solid transparent;
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: #fff;
  transform: scaleX(-1);
  position: relative;
}

.footer-section .widget-newsletter .newsletter .terms,
.footer-section-s3 .widget-newsletter .newsletter .terms {
  margin-top: 30px;
}

.footer-section .widget-newsletter .newsletter .terms .checkbox-input,
.footer-section-s3 .widget-newsletter .newsletter .terms .checkbox-input {
  display: none;
}

.footer-section .widget-newsletter .newsletter .terms .custom-checkbox,
.footer-section-s3 .widget-newsletter .newsletter .terms .custom-checkbox {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.09);
  display: inline-block;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  bottom: -6px;
}

.footer-section .widget-newsletter .newsletter .terms .checkbox-input:checked+.checkbox-label .custom-checkbox::before,
.footer-section-s3 .widget-newsletter .newsletter .terms .checkbox-input:checked+.checkbox-label .custom-checkbox::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #BAE900;
  border-radius: 100px;
  transform: translate(-50%, -50%);
}

.footer-section .widget-newsletter .newsletter .terms label,
.footer-section-s3 .widget-newsletter .newsletter .terms label {
  color: #ddd;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

@media (max-width: 1399px) {

  .footer-section .widget-newsletter .newsletter .terms label,
  .footer-section-s3 .widget-newsletter .newsletter .terms label {
    margin-left: 5px;
    font-size: 13px;
  }
}

.footer-section .footer-lower .row,
.footer-section-s3 .footer-lower .row {
  border-top: 1px solid #232222;
  padding: 25px 0;
}

.footer-section .footer-lower .footer-nav-list,
.footer-section-s3 .footer-lower .footer-nav-list {
  text-align: end;
}

@media (max-width: 767px) {

  .footer-section .footer-lower .footer-nav-list,
  .footer-section-s3 .footer-lower .footer-nav-list {
    text-align: left;
  }
}

.footer-section .footer-lower .footer-nav-list ul,
.footer-section-s3 .footer-lower .footer-nav-list ul {
  display: flex;
  justify-content: end;
}

@media (max-width: 767px) {

  .footer-section .footer-lower .footer-nav-list ul,
  .footer-section-s3 .footer-lower .footer-nav-list ul {
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: left;
  }
}

.footer-section .footer-lower .footer-nav-list ul li,
.footer-section-s3 .footer-lower .footer-nav-list ul li {
  padding: 12px 20px;
  list-style: none;
}

@media (max-width: 991px) {

  .footer-section .footer-lower .footer-nav-list ul li,
  .footer-section-s3 .footer-lower .footer-nav-list ul li {
    padding: 12px 10px;
  }
}

@media (max-width: 767px) {

  .footer-section .footer-lower .footer-nav-list ul li,
  .footer-section-s3 .footer-lower .footer-nav-list ul li {
    padding: 5px 7px;
  }
}

.footer-section .footer-lower .footer-nav-list ul li a,
.footer-section-s3 .footer-lower .footer-nav-list ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.footer-section .footer-lower .footer-nav-list ul li a i,
.footer-section-s3 .footer-lower .footer-nav-list ul li a i {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  color: #BAE900;
}

.footer-section .footer-lower .footer-nav-list ul li a:hover i,
.footer-section-s3 .footer-lower .footer-nav-list ul li a:hover i {
  opacity: 1;
  visibility: visible;
}

/* footer-section-s2 */
.footer-section-s2 {
  margin: 60px 70px;
  margin-top: 0;
  background: #000;
  border-radius: 28px;
  padding-top: 210px;
}

@media (max-width: 1599px) {
  .footer-section-s2 {
    margin: 0px 20px 60px;
    padding-top: 110px;
  }
}

@media (max-width: 991px) {
  .footer-section-s2 {
    margin: 0px 20px 30px;
    padding-top: 50px;
  }
}

@media (max-width: 575px) {
  .footer-section-s2 {
    margin: 0px 10px 20px;
    padding-top: 30px;
  }
}

.footer-section-s2 .footer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-section-s2 .footer-topbar {
    display: block;
    text-align: center;
  }
}

.footer-section-s2 .footer-topbar h2 {
  color: #FFF;
  font-size: 127px;
  font-weight: 700;
  line-height: 96px;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .footer-section-s2 .footer-topbar h2 {
    font-size: 95px;
  }
}

@media (max-width: 991px) {
  .footer-section-s2 .footer-topbar h2 {
    font-size: 80px;
  }
}

@media (max-width: 757px) {
  .footer-section-s2 .footer-topbar h2 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .footer-section-s2 .footer-topbar h2 {
    font-size: 30px;
  }
}

.footer-section-s2 .footer-topbar .theme-btn,
.footer-section-s2 .footer-topbar .view-cart-btn {
  color: #D9D9D9;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(129, 118, 118, 0.1);
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

@media (max-width: 991px) {

  .footer-section-s2 .footer-topbar .theme-btn,
  .footer-section-s2 .footer-topbar .view-cart-btn {
    margin: 0 auto;
    width: 150px;
    height: 150px;
  }
}

.footer-section-s2 .footer {
  display: flex;
}

@media (max-width: 991px) {
  .footer-section-s2 .footer {
    display: block;
  }
}

.footer-section-s2 .left-widget {
  width: 50%;
  padding-top: 55px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
}

@media (max-width: 991px) {
  .footer-section-s2 .left-widget {
    width: 100%;
    border: 0;
  }
}

@media (max-width: 757px) {
  .footer-section-s2 .left-widget {
    display: block;
  }
}

.footer-section-s2 .widget-contact {
  width: 50%;
  max-width: 253px;
  margin-bottom: 30px;
  margin-right: 60px;
}

@media (max-width: 1199px) {
  .footer-section-s2 .widget-contact {
    margin-right: 0px;
  }
}

@media (max-width: 991px) {
  .footer-section-s2 .widget-contact {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-section-s2 .widget-contact {
    margin-bottom: 40px;
  }
}

.footer-section-s2 .widget-contact h3 {
  color: #D9D9D9;
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .footer-section-s2 .widget-contact h3 {
    font-size: 20px;
  }
}

.footer-section-s2 .widget-contact h4 {
  color: #BAE900;
  font-size: 24px;
  font-weight: 600;
  text-transform: lowercase;
}

@media (max-width: 1199px) {
  .footer-section-s2 .widget-contact h4 {
    font-size: 20px;
  }
}

.footer-section-s2 .title {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .footer-section-s2 .title {
    margin-bottom: 20px;
  }
}

.footer-section-s2 .title h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .footer-section-s2 .title h2 {
    font-size: 20px;
  }
}

.footer-section-s2 .title h2 i {
  font-size: 15px;
  padding-left: 10px;
}

.footer-section-s2 .title p {
  color: #636776;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .footer-section-s2 .title p {
    font-size: 15px;
    line-height: 30px;
  }
}

.footer-section-s2 .right-widget {
  width: 50%;
  margin-left: 60px;
  padding-top: 55px;
}

@media (max-width: 1199px) {
  .footer-section-s2 .right-widget {
    margin-left: 5px;
  }
}

@media (max-width: 991px) {
  .footer-section-s2 .right-widget {
    width: 100%;
    margin-left: 0px;
    padding-top: 0;
  }
}

.footer-section-s2 .right-widget .contact-map {
  max-width: 599px;
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .footer-section-s2 .right-widget .contact-map {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.footer-section-s2 .right-widget .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

.footer-section-s2 .f-menu {
  max-width: 599px;
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .footer-section-s2 .f-menu {
    max-width: 100%;
    margin-bottom: 25px;
  }
}

.footer-section-s2 .f-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 0;
}

.footer-section-s2 .f-menu ul li {
  list-style: none;
  display: inline-block;
}

.footer-section-s2 .f-menu ul a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .footer-section-s2 .f-menu ul a {
    font-size: 16px;
  }
}

.footer-section-s2 .f-menu ul a:hover {
  color: #BAE900;
}

.footer-section-s2 .footer-lower .row {
  padding: 45px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
  .footer-section-s2 .footer-lower .row {
    padding: 20px 0 30px;
  }
}

.footer-section-s2 .footer-lower p {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1199px) {
  .footer-section-s2 .footer-lower p {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .footer-section-s2 .footer-lower p {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer-section-s2 .footer-lower .copyright span {
  color: #BAE900;
}

.footer-section-s2 .widget-social {
  text-align: right;
  padding-left: 0;
}

@media (max-width: 991px) {
  .footer-section-s2 .widget-social {
    text-align: center;
  }
}

.footer-section-s2 .widget-social li {
  display: inline !important;
  margin: 0 7px;
}

.footer-section-s2 .widget-social li:last-child {
  margin-right: 0;
}

.footer-section-s2 .widget-social li a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #292929;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
}

.footer-section-s2 .widget-social li a:hover {
  color: #BAE900;
}

/* footer-section-s3 */
.footer-section-s3 {
  z-index: 1;
  position: relative;
}

.footer-section-s3 .footer-topbar .wraper {
  padding: 0 60px;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 70px;
}

@media (max-width: 1399px) {
  .footer-section-s3 .footer-topbar .wraper {
    padding: 0;
    padding-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .footer-section-s3 .footer-topbar .wraper {
    display: block;
    text-align: center;
  }
}

.footer-section-s3 .footer-topbar h2 {
  width: calc(100% - 175px);
  color: #FFF;
  font-size: 42px;
  font-weight: 700;
  line-height: 65px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .footer-section-s3 .footer-topbar h2 {
    width: 100%;
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 757px) {
  .footer-section-s3 .footer-topbar h2 {
    font-size: 20px;
  }
}

.footer-section-s3 .footer-topbar h2 span {
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
  line-height: 65px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .footer-section-s3 .footer-topbar h2 span {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 757px) {
  .footer-section-s3 .footer-topbar h2 span {
    font-size: 20px;
  }
}

.footer-section-s3 .footer-topbar h2 .color {
  color: #939393;
  font-style: normal;
  -webkit-text-decoration: underline 2px solid #BAE900;
  text-decoration: underline 2px solid #BAE900;
  font-size: 42px;
  font-weight: 700;
  line-height: 65px;
}

@media (max-width: 991px) {
  .footer-section-s3 .footer-topbar h2 .color {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 757px) {
  .footer-section-s3 .footer-topbar h2 .color {
    font-size: 20px;
    line-height: 45px;
  }
}

.footer-section-s3 .footer-topbar .topbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 175px;
  max-height: 175px;
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .footer-section-s3 .footer-topbar .topbar-btn {
    margin: 100px auto;
    max-width: 150px;
    max-height: 150px;
    font-size: 18px;
  }
}

.footer-section-s3 .footer-topbar .topbar-btn .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.footer-section-s3 .footer {
  padding: 0 60px;
}

@media (max-width: 1399px) {
  .footer-section-s3 .footer {
    padding: 0;
  }
}

.footer-section-s3 .item:first-child {
  max-width: 575px;
  width: 100%;
  padding-left: 0px;
}

@media (max-width: 991px) {
  .footer-section-s3 .item:first-child {
    max-width: 100%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-section-s3 .item:first-child {
    max-width: 100%;
    width: 100%;
  }
}

.footer-section-s3 .title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-section-s3 .item:nth-child(2) {
  border-left: 1px solid #232222;
  border-right: 1px solid #232222;
}

@media (max-width: 991px) {
  .footer-section-s3 .item:nth-child(2) {
    border-left: 0;
    border-right: 0;
  }
}

.footer-section-s3 .item:last-child {
  padding-left: 80px;
}

@media (max-width: 991px) {
  .footer-section-s3 .item:last-child {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .footer-section-s3 .item:last-child {
    padding-left: 0;
  }
}

.footer-section-s3 .item:last-child ul li {
  color: #DDD;
  font-size: 16px;
  font-weight: 500;
}

.footer-section-s3 .footer-lower .row {
  padding: 45px 60px 40px;
  border-top: 1px solid transparent;
}

@media (max-width: 1399px) {
  .footer-section-s3 .footer-lower .row {
    padding: 45px 0 40px;
  }
}

@media (max-width: 991px) {
  .footer-section-s3 .footer-lower .row {
    padding: 20px 0 30px;
  }
}

.footer-section-s3 .footer-lower p {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1199px) {
  .footer-section-s3 .footer-lower p {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .footer-section-s3 .footer-lower p {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer-section-s3 .footer-lower .copyright span {
  color: #BAE900;
}

.footer-section-s3 .widget-social {
  text-align: right;
  margin-top: 0;
}

@media (max-width: 991px) {
  .footer-section-s3 .widget-social {
    text-align: center;
  }
}

.footer-section-s3 .widget-social li {
  display: inline !important;
  margin: 0 7px;
}

.footer-section-s3 .widget-social li:last-child {
  margin-right: 0;
}

.footer-section-s3 .widget-social li a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #292929;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
}

.footer-section-s3 .widget-social li a:hover {
  color: #BAE900;
}

.footer-section-s3 .f-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.wpo-lower-footer.has-not-copyright {
    background-color: #000;
    padding: 15px 0;
}

.wpo-lower-footer.has-not-copyright p {
  margin-bottom: 0;
  color: #fff;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/*3.2 partners */
.partners-section ul {
  border-bottom: 1px solid rgba(217, 217, 217, 0.43);
  padding-bottom: 10px;
}

.partners-section ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

@media (max-width: 757px) {
  .partners-section ul li {
    height: 120px;
  }
}

.partners-section ul li img {
  width: auto;
  margin: 0 auto;
}

.partners-section ul .slick-slide {
  display: flex;
}

/*3.3 about-section */
.about-section {
  padding: 185px 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  .about-section {
    padding: 90px 0;
  }
}

@media (max-width: 757px) {
  .about-section {
    padding: 80px 0;
  }
}

.about-wraper h2 {
  color: #121725;
  font-size: 65px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .about-wraper h2 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .about-wraper h2 {
    font-size: 45px;
    line-height: 65px;
  }
}

@media (max-width: 757px) {
  .about-wraper h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {
  .about-wraper h2 {
    font-size: 30px;
    line-height: 45px;
  }
}

.about-wraper h2 span {
  color: #BCC0CB;
  font-weight: 500;
  text-decoration-line: underline;
}

.about-wraper h2 .color {
  color: #FD5B38;
  text-decoration-line: none;
}

.about-wraper h2 .line {
  text-decoration-line: none;
}

.about-wraper h2 img {
  position: absolute;
  top: -450px;
  right: 310px;
  transform: rotate(-15deg);
  max-width: 240px;
  max-height: 340px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 757px) {
  .about-wraper h2 img {
    display: none;
  }
}

.about-wraper h2:hover img {
  right: 320px;
  opacity: 1;
  visibility: visible;
}

.about-wraper p {
  color: #565656;
  font-size: 16px;
  font-weight: 500;
  text-transform: lowercase;
  max-width: 535px;
  margin-left: auto !important;
}

@media (max-width: 991px) {
  .about-wraper p {
    margin-left: 0 !important;
  }
}

.about-wraper a {
  color: #FD5B38;
}

.about-wraper a span {
  font-size: 22px;
  line-height: 20px;
}

.about-wraper a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.about-wraper .funfact {
  max-width: 535px;
  margin-left: auto;
  display: flex;
}

@media (max-width: 991px) {
  .about-wraper .funfact {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .about-wraper .funfact {
    flex-direction: column;
  }
}

.about-wraper .funfact .item {
  max-width: 50%;
  margin-right: 100px;
}

@media (max-width: 575px) {
  .about-wraper .funfact .item {
    margin-right: 0px;
    max-width: 100%;
  }
}

.about-wraper .funfact .item h3 {
  line-height: 28.8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 575px) {
  .about-wraper .funfact .item h3 {
    font-size: 40px;
  }
}

.about-wraper .funfact .item h3 span {
  color: #000;
  text-transform: lowercase;
  margin-bottom: 0;
  text-decoration: none;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.about-wraper .funfact .item p span {
  color: #FD5B38;
  text-decoration: underline;
  font-size: 18px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .about-wraper .funfact .item p span {
    font-size: 16px;
    line-height: 30px;
  }
}

.about-wraper .funfact .item p i {
  font-size: 20px;
  line-height: 38px;
  position: relative;
  bottom: -5px;
  right: -5px;
  text-decoration: none;
  color: #FD5B38;
}

@media (max-width: 575px) {
  .about-wraper .funfact .item p i {
    font-size: 16px;
  }
}

/*3.4 service-section */
.service-section,
.service-section-s2 {
  position: relative;
  z-index: 1;
  background: #080905;
  overflow: hidden;
}

.service-section .bg-shape,
.service-section-s2 .bg-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.service-section .title,
.service-section-s2 .title {
  margin-bottom: 30px;
}

.service-section .title h2,
.service-section-s2 .title h2 {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.14);
}

@media (max-width: 991px) {

  .service-section .title h2,
  .service-section-s2 .title h2 {
    font-size: 16px;
  }
}

.service-section .title h3,
.service-section-s2 .title h3 {
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {

  .service-section .title h3,
  .service-section-s2 .title h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {

  .service-section .title h3,
  .service-section-s2 .title h3 {
    font-size: 40px;
    line-height: 55px;
  }
}

.service-section .title h3 span,
.service-section-s2 .title h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {

  .service-section .title h3 span,
  .service-section-s2 .title h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {

  .service-section .title h3 span,
  .service-section-s2 .title h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.service-section .row.g-0,
.service-section-s2 .row.g-0 {
  margin: 0 -30px;
}

@media (max-width: 1399px) {

  .service-section .row.g-0,
  .service-section-s2 .row.g-0 {
    margin: 0;
  }
}

.service-section .service-all,
.service-section-s2 .service-all {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 196px;
  max-width: 196px;
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 50px;
}

.service-section .service-all .shape,
.service-section-s2 .service-all .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.service-section .service-all span,
.service-section-s2 .service-all span {
  max-width: 130px;
}

.service-card {
  padding-top: 68px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.13);
  margin: 0 30px;
  transition: all 0.8s ease-in-out;
}

@media (max-width: 1399px) {
  .service-card {
    margin: 0 15px;
  }
}

@media (max-width: 991px) {
  .service-card {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .service-card {
    padding-top: 50px;
  }
}

.service-card .text span {
  color: #878889;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 38px;
  text-transform: capitalize;
}

.service-card .text h2 {
  margin-bottom: 0;
  margin-top: 0;
}

.service-card .text h2 a {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  display: block;
  transition: all 0.8s ease-in-out;
}

@media (max-width: 767px) {
  .service-card .text h2 a {
    font-size: 25px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .service-card .text h2 a {
    font-size: 20px;
  }
}

.service-card .text h2 a:hover {
  color: #FD5B38;
}

.service-card .icon {
  color: #FD5B38;
  font-size: 30px;
}

.service-card .image {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.service-card .image img {
  max-width: 250px;
  max-height: 250px;
}

@media (max-width: 767px) {
  .service-card .image img {
    max-width: 200px;
    max-height: 200px;
  }
}

@media (max-width: 575px) {
  .service-card .image img {
    max-width: 150px;
    max-height: 150px;
  }
}

.service-card.active {
  border-bottom: 1px solid transparent;
}

.service-card.active .image {
  opacity: 1;
  visibility: visible;
}

/*3.5 text-animation */
.text-animation {
  padding: 54px 0 60px !important;
  border-bottom: 1px solid #D9D9D9;
  overflow: hidden;
}

.text-animation .text-slider .item {
  display: flex;
  align-items: center;
}

.text-animation .text-slider .item div {
  display: flex;
  align-items: center;
  margin-left: 100px;
}

.text-animation .text-slider h2 {
  color: "Plus Jakarta Sans", sans-serif;
  font-size: 70px;
  font-style: italic;
  font-weight: 700;
  line-height: 90px;
  text-transform: uppercase;
  margin: 0;
  margin-left: 40px;
}

@media (max-width: 1699px) {
  .text-animation .text-slider h2 {
    font-size: 55px;
    line-height: 85px;
  }
}

@media (max-width: 1399px) {
  .text-animation .text-slider h2 {
    font-size: 48px;
    line-height: 85px;
  }
}

@media (max-width: 1199px) {
  .text-animation .text-slider h2 {
    font-size: 37px;
    line-height: 70px;
  }
}

@media (max-width: 991px) {
  .text-animation .text-slider h2 {
    font-size: 26px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .text-animation .text-slider h2 {
    margin-left: 10px;
    font-size: 20px;
    line-height: 40px;
  }
}

/*3.6 project-section */
.project-section {
  padding-bottom: 100px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .project-section {
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .project-section {
    padding-bottom: 0px;
  }
}

.project-section .container {
  padding-right: 60px;
}

@media (max-width: 1399px) {
  .project-section .container {
    padding: 0;
  }
}

.section-title-s1 .title {
  max-width: 420px;
}

.section-title-s1 .title h2 {
  color: #121725;
  font-size: 83px;
  font-weight: 700;
  line-height: 88px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 991px) {
  .section-title-s1 .title h2 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .section-title-s1 .title h2 {
    font-size: 40px;
    line-height: 55px;
  }
}

.section-title-s1 .title h2 span {
  font-size: 80px;
  font-style: italic;
  font-weight: 500;
  line-height: 88px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .section-title-s1 .title h2 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .section-title-s1 .title h2 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.section-title-s1 .project-btn {
  text-align: right;
}

@media (max-width: 991px) {
  .section-title-s1 .project-btn {
    text-align: left;
    margin-top: 20px;
  }
}

.section-title-s1 .project-btn .rolling-text {
  line-height: 28px;
  text-transform: uppercase;
}

.project-section .gallery-container {
  margin: 0 -44px;
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .project-section .gallery-container {
    margin: 0;
    margin-top: 80px;
  }
}

@media (max-width: 991px) {
  .project-section .gallery-container {
    margin-top: 50px;
  }
}

.project-section .gallery-container .col:nth-child(2) {
  margin-top: 100px;
}

@media (max-width: 991px) {
  .project-section .gallery-container .col:nth-child(2) {
    margin-top: 0;
  }
}

.project-card {
  margin: 0 44px;
  margin-bottom: 90px;
}

@media (max-width: 1199px) {
  .project-card {
    margin: 0;
    margin-bottom: 90px;
  }
}

.project-card img {
  width: 100%;
}

.project-card .text {
  padding-top: 30px;
}

.project-card .text h2 {
  margin-bottom: 20px;
  margin-top: 0;
}

.project-card .text h2 a {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-card .text span {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 16.5px;
  border: 1px solid #E7E7E7;
  display: inline-block;
  padding: 0 22px;
  margin-right: 30px;
}

/*3.7 marquee-section */
.marquee-section {
  overflow: hidden;
}

.marquee-section .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #101112;
  padding: 0.5rem 0;
}

.marquee-section .marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee-s2 {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.marquee-section h2 {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 0.57px;
  text-transform: uppercase;
  margin-top: 0;
}

@media (max-width: 1399px) {
  .marquee-section h2 {
    margin-right: 20px;
  }
}

.marquee-section h2 img {
  line-height: 65px;
  padding-right: 30px;
}

@media (max-width: 1399px) {
  .marquee-section h2 img {
    padding-right: 20px;
  }
}

/*3.8 fanfuct-section */
.fanfuct-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.fanfuct-section .top-content {
  position: relative;
  padding-bottom: 250px;
}

@media (max-width: 991px) {
  .fanfuct-section .top-content {
    padding-bottom: 60px;
  }
}

.fanfuct-section .top-content .left-image {
  width: 246px;
  height: 298px;
  position: absolute;
  left: 60px;
  top: 0;
}

@media (max-width: 1199px) {
  .fanfuct-section .top-content .left-image {
    left: 0px;
  }
}

@media (max-width: 991px) {
  .fanfuct-section .top-content .left-image {
    display: none;
  }
}

.fanfuct-section .top-content .left-image img {
  width: 100%;
  transform: rotate(-15.636deg);
}

.fanfuct-section .top-content .right-image {
  width: 246px;
  height: 298px;
  position: absolute;
  right: 60px;
  top: 0;
}

@media (max-width: 1199px) {
  .fanfuct-section .top-content .right-image {
    right: 0px;
  }
}

@media (max-width: 991px) {
  .fanfuct-section .top-content .right-image {
    display: none;
  }
}

.fanfuct-section .top-content .right-image img {
  width: 100%;
  transform: rotate(-164.36deg);
}

.fanfuct-section .title {
  max-width: 473px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991px) {
  .fanfuct-section .title {
    max-width: 300px;
  }
}

.fanfuct-section .title h3 {
  color: #121725;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .fanfuct-section .title h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .fanfuct-section .title h3 {
    font-size: 40px;
    line-height: 55px;
  }
}

.fanfuct-section .title h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .fanfuct-section .title h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .fanfuct-section .title h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

@media (max-width: 991px) {
  .fanfuct-section .item {
    text-align: center;
  }
}

.fanfuct-section .item h3 {
  color: #000;
  font-size: 26px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .fanfuct-section .item h3 {
    font-size: 20px;
    margin-bottom: 0px;
  }
}

.fanfuct-section .item h2 {
  color: #121725;
  font-size: 107px;
  font-weight: 700;
  line-height: 99px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .fanfuct-section .item h2 {
    font-size: 60px;
    line-height: 99px;
  }
}

.fanfuct-section .col:last-child {
  padding-left: 70px;
}

@media (max-width: 991px) {
  .fanfuct-section .col:last-child {
    padding-left: 0px;
  }
}

.fanfuct-section .bg-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 757px) {
  .fanfuct-section .bg-shape {
    display: none;
  }
}

/*3.9 award-section */
.award-section,
.award-section-s2 {
  overflow: hidden;
}

.award-section .title,
.award-section-s2 .title {
  margin-bottom: 80px;
}

@media (max-width: 991px) {

  .award-section .title,
  .award-section-s2 .title {
    margin-bottom: 60px;
  }
}

@media (max-width: 757px) {

  .award-section .title,
  .award-section-s2 .title {
    margin-bottom: 40px;
  }
}

.award-section .title h2,
.award-section-s2 .title h2 {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.4);
}

@media (max-width: 991px) {

  .award-section .title h2,
  .award-section-s2 .title h2 {
    font-size: 16px;
  }
}

.award-section .title h3,
.award-section-s2 .title h3 {
  color: #000;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
  max-width: 700px;
}

@media (max-width: 991px) {

  .award-section .title h3,
  .award-section-s2 .title h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {

  .award-section .title h3,
  .award-section-s2 .title h3 {
    font-size: 40px;
    line-height: 55px;
  }
}

.award-section .title h3 span,
.award-section-s2 .title h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {

  .award-section .title h3 span,
  .award-section-s2 .title h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {

  .award-section .title h3 span,
  .award-section-s2 .title h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.award-section .image,
.award-section-s2 .image {
  position: relative;
  max-width: 493px;
  height: 556px;
  z-index: 1;
}

@media (max-width: 1399px) {

  .award-section .image,
  .award-section-s2 .image {
    margin-left: -50px;
  }
}

@media (max-width: 1199px) {

  .award-section .image,
  .award-section-s2 .image {
    margin-left: -115px;
  }
}

@media (max-width: 991px) {

  .award-section .image,
  .award-section-s2 .image {
    margin-left: 0;
    margin-bottom: 50px;
  }
}

.award-section .image .image-1,
.award-section-s2 .image .image-1 {
  max-width: 238px;
  max-height: 267px;
  position: absolute;
  left: 0;
  top: 60px;
}

.award-section .image .image-1 img,
.award-section-s2 .image .image-1 img {
  width: 100%;
  border-radius: 25px;
}

.award-section .image .image-2,
.award-section-s2 .image .image-2 {
  max-width: 238px;
  max-height: 205px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.award-section .image .image-2 img,
.award-section-s2 .image .image-2 img {
  width: 100%;
  border-radius: 25px;
}

.award-section .image .image-3,
.award-section-s2 .image .image-3 {
  max-width: 238px;
  max-height: 392px;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 575px) {

  .award-section .image .image-3,
  .award-section-s2 .image .image-3 {
    display: none;
  }
}

.award-section .image .image-3 img,
.award-section-s2 .image .image-3 img {
  width: 100%;
  border-radius: 25px;
}

.award-section .image .image-4,
.award-section-s2 .image .image-4 {
  max-width: 100px;
  max-height: 100px;
  position: absolute;
  right: 75px;
  bottom: 10px;
  animation: rotateAniamtion 18s ease-in infinite;
}

@media (max-width: 425px) {

  .award-section .image .image-4,
  .award-section-s2 .image .image-4 {
    display: none;
  }
}

.award-section .image .image-4 img,
.award-section-s2 .image .image-4 img {
  width: 100%;
}

.award-section .bg-text h1,
.award-section-s2 .bg-text h1 {
  font-size: 120px;
  font-weight: 600;
  line-height: 99px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.38);
  transform: rotate(-38.849deg);
  z-index: -1;
  margin-bottom: 0;
  position: absolute;
  top: 40%;
  left: -80px;
}

.award-section .content ul,
.award-section-s2 .content ul {
  list-style: none;
  padding-left: 70px;
}

@media (max-width: 1199px) {

  .award-section .content ul,
  .award-section-s2 .content ul {
    padding-left: 0;
  }
}

.award-section .content ul li,
.award-section-s2 .content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(119, 120, 129, 0.24);
  padding-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.award-section .content ul li span,
.award-section-s2 .content ul li span {
  color: #FD5B38;
  font-size: 15px;
  font-weight: 600;
  line-height: 38px;
}

.award-section .content ul li h2,
.award-section-s2 .content ul li h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.award-section .content ul li h2 a,
.award-section-s2 .content ul li h2 a {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {

  .award-section .content ul li h2 a,
  .award-section-s2 .content ul li h2 a {
    font-size: 25px;
  }
}

@media (max-width: 425px) {

  .award-section .content ul li h2 a,
  .award-section-s2 .content ul li h2 a {
    font-size: 20px;
  }
}

.award-section .content ul li i,
.award-section-s2 .content ul li i {
  width: 48px;
  height: 48px;
  color: #000;
  display: block;
  font-size: 30px;
  transform: rotate(86deg);
  padding-top: 30px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 425px) {

  .award-section .content ul li i,
  .award-section-s2 .content ul li i {
    font-size: 20px;
    padding-top: 15px;
    padding-left: 10px;
  }
}

.award-section .content ul li:hover h2 a,
.award-section-s2 .content ul li:hover h2 a {
  text-decoration: underline;
}

.award-section .content ul li:hover i,
.award-section-s2 .content ul li:hover i {
  color: #FD5B38;
}

/*3.10 project-title */
.project-title {
  overflow: hidden;
}

.project-title .title {
  max-width: 1109px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.project-title .title h2 {
  color: #121725;
  font-size: 225px;
  font-weight: 800;
  line-height: 208px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .project-title .title h2 {
    font-size: 180px;
    line-height: 180px;
  }
}

@media (max-width: 767px) {
  .project-title .title h2 {
    font-size: 150px;
    line-height: 150px;
  }
}

@media (max-width: 575px) {
  .project-title .title h2 {
    font-size: 80px;
    line-height: 88px;
  }
}

.project-title .title h2 span {
  font-size: 120px;
  font-weight: 600;
  display: block;
}

@media (max-width: 991px) {
  .project-title .title h2 span {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .project-title .title h2 span {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  .project-title .title h2 span {
    font-size: 50px;
  }
}

.project-title .title .circel-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.project-title .title .circel-shape img {
  animation: rotateAniamtion 25s ease-in infinite;
}

.project-title .title .bg-shape {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 991px) {
  .project-title .title .bg-shape {
    display: none;
  }
}

.project-title a {
  color: #FD5B38;
}

.project-title a .rolling-text {
  height: 30px;
}

.project-title a span {
  font-size: 22px;
  line-height: 35px;
}

.project-title a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -1px;
}

/* 3.11 testimonial-section */
.testimonial-section .testimonial-wrap {
  border-radius: 16px;
  background: #080905;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 177px 0 153px;
  margin: 0 93px;
}

@media (max-width: 1399px) {
  .testimonial-section .testimonial-wrap {
    margin: 0 20px;
    padding: 100px 0 100px;
  }
}

@media (max-width: 757px) {
  .testimonial-section .testimonial-wrap {
    margin: 0;
    padding: 90px 0 90px;
  }
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-wrap {
    padding-bottom: 130px;
  }
}

.testimonial-section .image {
  max-width: 439px;
  max-height: 563px;
  position: relative;
}

@media (max-width: 991px) {
  .testimonial-section .image {
    margin-bottom: 50px;
  }
}

.testimonial-section .image img {
  width: 100%;
}

.testimonial-section .image .start {
  position: absolute;
  z-index: 1;
  right: -34px;
  bottom: 0;
  max-width: 170px;
  max-height: 179px;
  width: 100%;
  height: 100%;
  animation: rotateAniamtion 25s ease-in infinite;
}

@media (max-width: 757px) {
  .testimonial-section .image .start {
    display: none;
  }
}

.testimonial-section .shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.testimonial-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.testimonial-section .side-text-slid {
  max-width: 1053px;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: absolute;
  z-index: -1;
  top: 33%;
  left: -91px;
  transform: rotate(-38.849deg);
}

@media (max-width: 1199px) {
  .testimonial-section .side-text-slid {
    max-width: 753px;
  }
}

@media (max-width: 575px) {
  .testimonial-section .side-text-slid {
    max-width: 500px;
  }
}

.testimonial-section .side-text-slid .marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.testimonial-section .side-text-slid h2 {
  font-size: 160px;
  font-weight: 600;
  line-height: 99px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.38);
  z-index: -1;
  margin-bottom: 0;
  display: inline-block;
  margin-left: 100px;
}

@media (max-width: 1199px) {
  .testimonial-section .side-text-slid h2 {
    font-size: 100px;
    line-height: 99px;
  }
}

@media (max-width: 575px) {
  .testimonial-section .side-text-slid h2 {
    font-size: 80px;
    line-height: 99px;
  }
}

.testimonial-section .slick-arrow {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: -30px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.13);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: #fff;
}

@media (max-width: 575px) {
  .testimonial-section .slick-arrow {
    bottom: -80px;
  }
}

.testimonial-section .slick-arrow.slick-prev,
.testimonial-section .slick-arrow.slick-next {
  right: 100px;
}

.testimonial-section .slick-arrow.slick-prev::after,
.testimonial-section .slick-arrow.slick-next::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e629";
  font-family: "themify";
  font-size: 15px;
  color: #121725;
  transition: all 0.3s ease-in-out;
}

.testimonial-section .slick-arrow.slick-prev::before,
.testimonial-section .slick-arrow.slick-next::before {
  display: none;
}

.testimonial-section .slick-arrow.slick-next {
  right: 40px;
}

.testimonial-section .slick-arrow.slick-next::after {
  content: "\e628";
}

.testimonial-section .slick-arrow.slick-next::before {
  display: none;
}

.testimonial-section .slick-arrow:hover {
  background: #FD5B38;
}

.testimonial-section .slick-arrow:hover::after {
  color: #fff;
}

.testimonial-content {
  margin-left: 65px;
}

@media (max-width: 1399px) {
  .testimonial-content {
    margin-left: 0;
  }
}

.testimonial-content h3 {
  color: #fff;
  font-size: 80px;
  font-style: italic;
  font-weight: 500;
  line-height: 99px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .testimonial-content h3 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
  }
}

.testimonial-content h3 span {
  color: #FD5B38;
}

.testimonial-content .item p {
  color: #F4F4F4;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .testimonial-content .item p {
    font-size: 20px;
    line-height: 35px;
  }
}

@media (max-width: 575px) {
  .testimonial-content .item p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.testimonial-content .item h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.66px;
}

@media (max-width: 575px) {
  .testimonial-content .item h4 {
    font-size: 18px;
  }
}

.testimonial-content .item h4 span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/*3.12 marquee-section-s2 */
.marquee-section-s2,
.marquee-section-s3,
.marquee-section-s4,
.text-animation {
  padding-top: 70px;
  padding-bottom: 150px;
  overflow: hidden;
}

@media (max-width: 991px) {

  .marquee-section-s2,
  .marquee-section-s3,
  .marquee-section-s4,
  .text-animation {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

.marquee-section-s2 .marquee_container,
.marquee-section-s3 .marquee_container,
.marquee-section-s4 .marquee_container,
.text-animation .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
}

.marquee-section-s2 .marquee,
.marquee-section-s3 .marquee,
.marquee-section-s4 .marquee,
.text-animation .marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-section-s2 h2,
.marquee-section-s3 h2,
.marquee-section-s4 h2,
.text-animation h2 {
  display: inline-block;
  margin: 0 20px;
  color: #121725;
  font-size: 90px;
  font-weight: 600;
  line-height: 90px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .marquee-section-s2 h2,
  .marquee-section-s3 h2,
  .marquee-section-s4 h2,
  .text-animation h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

.marquee-section-s2 h2 span,
.marquee-section-s3 h2 span,
.marquee-section-s4 h2 span,
.text-animation h2 span {
  color: #FD5B38;
}

.marquee-section-s2 h2 i,
.marquee-section-s3 h2 i,
.marquee-section-s4 h2 i,
.text-animation h2 i {
  color: #FD5B38;
  position: relative;
  bottom: -14px;
}

/* 3.13 team-section */
.team-section {
  background: url(../images/team/bg.jpg) center/cover no-repeat;
  overflow: hidden;
}

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

.team-section .title h2 {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.14);
}

@media (max-width: 991px) {
  .team-section .title h2 {
    font-size: 16px;
  }
}

.team-section .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .team-section .title-bottom {
    display: block;
  }
}

.team-section .title-bottom h3 {
  max-width: 520px;
  color: #121725;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .team-section .title-bottom h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .team-section .title-bottom h3 {
    font-size: 40px;
    line-height: 55px;
  }
}

.team-section .title-bottom h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .team-section .title-bottom h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .team-section .title-bottom h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.team-section .title-bottom a {
  color: #FD5B38;
}

.team-section .title-bottom a span {
  font-size: 22px;
  line-height: 20px;
}

.team-section .title-bottom a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.team-section .team-btn {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 10px;
}

.team-section .team-btn .theme-btn,
.team-section .team-btn .view-cart-btn {
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.07);
  padding: 23px 70px;
}

@media (max-width: 1199px) {

  .team-section .team-btn .theme-btn,
  .team-section .team-btn .view-cart-btn {
    padding: 18px 45px;
  }
}

@media (max-width: 767px) {

  .team-section .team-btn .theme-btn,
  .team-section .team-btn .view-cart-btn {
    padding: 15px 40px;
  }
}

.team-section .team-btn .theme-btn .rolling-text,
.team-section .team-btn .view-cart-btn .rolling-text {
  line-height: 28px;
}

.team-card {
  margin-bottom: 30px;
}

.team-card .image {
  position: relative;
}

.team-card .image img {
  width: 100%;
  border-radius: 157px;
}

.team-card .image ul {
  list-style: none;
  background: #fff;
  position: absolute;
  left: -20px;
  bottom: 0;
  padding: 0 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.team-card .image ul li {
  display: inline-block;
}

.team-card .image ul li a {
  color: #5E5F63;
  text-align: center;
  font-size: 16px;
  padding: 13px 10px;
  display: block;
  transition: all 0.3s ease-in-out;
}

.team-card .image ul li a:hover {
  color: #FD5B38;
}

.team-card .text {
  text-align: center;
  margin-top: 20px;
}

.team-card .text h2 {
  margin-bottom: 10px;
}

.team-card .text h2 a {
  color: #121725;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .team-card .text h2 a {
    font-size: 18px;
    line-height: 22px;
  }
}

.team-card .text span {
  color: #FD5B38;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.team-card:hover .image ul {
  left: 0px;
  opacity: 1;
  visibility: visible;
}

/*3.14 blog-section */
.blog-section {
  overflow: hidden;
}

.blog-section .post-slider {
  padding-bottom: 10px;
}

.blog-section .title {
  margin-bottom: 45px;
}

.blog-section .title h2 {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.14);
}

@media (max-width: 991px) {
  .blog-section .title h2 {
    font-size: 16px;
  }
}

.blog-section .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .blog-section .title-bottom {
    display: block;
  }
}

.blog-section .title-bottom h3 {
  max-width: 620px;
  color: #121725;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .blog-section .title-bottom h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .blog-section .title-bottom h3 {
    font-size: 40px;
    line-height: 55px;
  }
}

.blog-section .title-bottom h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .blog-section .title-bottom h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .blog-section .title-bottom h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.blog-section .title-bottom a {
  color: #FD5B38;
}

.blog-section .title-bottom a span {
  font-size: 22px;
  line-height: 24px;
}

.blog-section .title-bottom a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.blog-section .owl-nav {
  display: none;
}

.blog-section .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.blog-section .owl-dot {
  border: 0;
  width: 7px;
  height: 12px;
  background: #D0D0D0;
  border-radius: 7px;
  margin: 0 10px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.blog-section .owl-dot::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 1px solid #FF7236;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.blog-section .owl-dot.active {
  background: #FD5B38;
}

.blog-section .owl-dot.active::after {
  opacity: 1;
  visibility: visible;
}

.blog-card {
  border-radius: 10px;
  background: #000;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

@media (max-width: 757px) {
  .blog-card {
    display: block;
    padding: 0;
  }
}

.blog-card .image {
  max-width: 260px;
  width: 100%;
}

@media (max-width: 757px) {
  .blog-card .image {
    max-width: 100%;
  }
}

.blog-card .image img {
  width: 100%;
  border-radius: 8px;
  min-height: 324px;
  object-fit: cover;
}

.blog-card .content {
  padding: 0 50px;
  padding-left: 30px;
}

@media (max-width: 1399px) {
  .blog-card .content {
    padding: 0px 20px;
    padding-left: 19px;
  }
}

@media (max-width: 757px) {
  .blog-card .content {
    padding: 20px;
  }
}

.blog-card .content span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 39px;
  text-transform: uppercase;
}

.blog-card .content h3 {
  margin-bottom: 18px;
  margin-top: 0;
}

.blog-card .content h3 a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 1399px) {
  .blog-card .content h3 a {
    font-size: 18px;
  }
}

.blog-card .content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
}

.blog-card .content a {
  color: #FD5B38;
}

.blog-card .content a span {
  text-decoration: underline;
  text-transform: capitalize;
  color: #FD5B38;
  font-size: 16px;
  font-weight: 500;
  line-height: 38px;
}

.blog-card .content a i {
  font-size: 18px;
  line-height: 38px;
  position: relative;
  bottom: -7px;
}

/*--------- 5. Home-style-2 --------------*/
/*5.1 marquee-section-s3 */
.marquee-section-s3 {
  padding-top: 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  .marquee-section-s3 {
    padding-bottom: 60px;
  }
}

@media (max-width: 757px) {
  .marquee-section-s3 {
    padding: 40px 0;
  }
}

.marquee-section-s3 h2 {
  display: inline-block;
  margin: 0 20px;
  color: #121725;
  font-size: 90px;
  font-weight: 700;
  line-height: 90px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .marquee-section-s3 h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

.marquee-section-s3 h2 span {
  color: #121725;
}

.marquee-section-s3 h2 i {
  color: #121725;
  position: relative;
  bottom: 0px;
}

/*5.2 about-section-s2 */
.about-section-s2 {
  padding-top: 0;
  padding-bottom: 140px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .about-section-s2 {
    padding-bottom: 100px;
  }
}

@media (max-width: 757px) {
  .about-section-s2 {
    padding-bottom: 80px;
  }
}

.about-section-s2 .top-img {
  position: relative;
}

.about-section-s2 .top-img img {
  width: 100%;
}

@media (max-width: 991px) {
  .about-section-s2 .top-img img {
    margin-bottom: 30px;
  }
}

.about-section-s2 .top-img .circle-content {
  width: 157px;
  height: 157px;
  position: absolute;
  right: 100px;
  top: 40%;
}

@media (max-width: 757px) {
  .about-section-s2 .top-img .circle-content {
    display: none;
  }
}

.about-section-s2 .top-img .circle-content .rotate-anm {
  animation: roted 30s linear infinite;
}

.about-section-s2 .top-img .circle-content svg {
  font-size: 17px;
}

.about-section-s2 .top-img .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-section-s2 .about-wraper {
  text-align: center;
}

.about-section-s2 .about-wraper .circle-content {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 80px auto 30px;
}

@media (max-width: 757px) {
  .about-section-s2 .about-wraper .circle-content {
    margin: 50px auto 30px;
  }
}

.about-section-s2 .about-wraper .circle-content .rotate-anm {
  animation: roted 30s linear infinite;
}

.about-section-s2 .about-wraper .circle-content svg {
  font-size: 16px;
}

.about-section-s2 .about-wraper .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-section-s2 .about-wraper h2 img {
  top: -300px;
}

.about-section-s2 .about-wraper h2 {
  margin-bottom: 25px;
}

.about-section-s2 .about-wraper h2 span {
  color: #121725;
  text-decoration-line: none;
}

.rotate-anm {
  animation: roted 30s linear infinite;
}

/*5.3 service-section-s2 */
.service-section-s2 {
  padding-bottom: 150px;
  overflow: hidden;
}

@media (max-width: 757px) {
  .service-section-s2 {
    padding-bottom: 100px;
  }
}

.service-section-s2 .title {
  margin-bottom: 45px;
}

.service-section-s2 .title h2 {
  color: #E0190B;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.14);
}

@media (max-width: 991px) {
  .service-section-s2 .title h2 {
    font-size: 16px;
  }
}

.service-section-s2 .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .service-section-s2 .title-bottom {
    display: block;
  }
}

.service-section-s2 .title-bottom h3 {
  max-width: 720px;
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .service-section-s2 .title-bottom h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .service-section-s2 .title-bottom h3 {
    font-size: 30px;
    line-height: 50px;
  }
}

.service-section-s2 .title-bottom h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .service-section-s2 .title-bottom h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .service-section-s2 .title-bottom h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.service-section-s2 .title-bottom a {
  color: #E0190B;
}

.service-section-s2 .title-bottom a span {
  font-size: 22px;
  line-height: 22px;
}

.service-section-s2 .title-bottom a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.service-section-s2 .service-card {
  padding: 50px 50px;
  margin: 0;
  align-items: center;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .service-section-s2 .service-card {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .service-section-s2 .service-card {
    padding: 20px 20px;
  }
}

.service-section-s2 .service-card .text h2 {
  margin-bottom: 0;
}

.service-section-s2 .service-card .text h2 a {
  text-transform: uppercase;
}

.service-section-s2 .service-card .icon {
  color: #fff;
}

.service-section-s2 .service-card .image img {
  max-width: 350px;
  max-height: 446px;
  border-radius: 9px;
}

@media (max-width: 991px) {
  .service-section-s2 .service-card .image img {
    max-width: 200px;
    max-height: 200px;
  }
}

@media (max-width: 575px) {
  .service-section-s2 .service-card .image img {
    max-width: 150px;
    max-height: 150px;
  }
}

.service-section-s2 .service-card.active {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9px;
}

/*5.4 award-section-s2 */
.award-section-s2 {
  overflow: hidden;
}

.award-section-s2 .title {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .award-section-s2 .title {
    margin-bottom: 40px;
  }
}

.award-section-s2 .title h2 {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(108, 108, 108, 0.22);
}

@media (max-width: 991px) {
  .award-section-s2 .title h2 {
    font-size: 16px;
  }
}

.award-section-s2 .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .award-section-s2 .title-bottom {
    display: block;
  }
}

.award-section-s2 .title-bottom h3 {
  max-width: 720px;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .award-section-s2 .title-bottom h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .award-section-s2 .title-bottom h3 {
    font-size: 30px;
    line-height: 50px;
  }
}

.award-section-s2 .title-bottom h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .award-section-s2 .title-bottom h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .award-section-s2 .title-bottom h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.award-section-s2 .title-bottom a {
  color: #FD5B38;
}

.award-section-s2 .title-bottom a span {
  font-size: 22px;
  line-height: 22px;
}

.award-section-s2 .title-bottom a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.award-section-s2 .image {
  position: relative;
  max-width: 560px;
  z-index: 1;
  height: 100%;
  max-height: 647px;
}

@media (max-width: 1399px) {
  .award-section-s2 .image {
    margin-left: 0px;
  }
}

@media (max-width: 1199px) {
  .award-section-s2 .image {
    margin-left: -100px;
  }
}

@media (max-width: 991px) {
  .award-section-s2 .image {
    margin-left: 0;
    margin-bottom: 50px;
  }
}

.award-section-s2 .image img {
  width: 100%;
  border-radius: 12px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

@media (max-width: 767px) {
  .award-section-s2 .image img {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.award-section-s2 .mid-text {
  position: absolute;
  top: 35%;
  left: 12%;
  transform: rotate(-42.959deg);
}

@media (max-width: 575px) {
  .award-section-s2 .mid-text {
    display: none;
  }
}

.award-section-s2 .mid-text h2 {
  color: #FFF;
  text-shadow: 0px 4px 18px rgba(255, 255, 255, 0.25);
  font-family: "Inter", sans-serif;
  font-size: 88px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.award-section-s2 .mid-text span {
  text-shadow: 0px 4px 18px rgba(255, 255, 255, 0.25);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-size: 88px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  top: -113px;
  right: -4px;
}

.award-section-s2 .circle-content {
  width: 200px;
  height: 200px;
  position: absolute;
  left: -100px;
  bottom: 0px;
}

@media (max-width: 767px) {
  .award-section-s2 .circle-content {
    display: none;
  }
}

.award-section-s2 .circle-content svg {
  font-size: 12px;
  letter-spacing: 2px;
}

.award-section-s2 .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.award-section-s2 .content ul li h2 span {
  color: #010101;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 3.64px;
  text-transform: lowercase;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .award-section-s2 .content ul li h2 span {
    font-size: 25px;
    line-height: 30px;
    padding-left: 10px;
  }
}

@media (max-width: 575px) {
  .award-section-s2 .content ul li h2 span {
    font-size: 20px;
  }
}

.award-section-s2 .content ul li {
  position: relative;
  z-index: 1;
}

.award-section-s2 .content ul li .image-item {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.award-section-s2 .content ul li .image-item img {
  border-radius: 9px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.13);
}

.award-section-s2 .content ul li.active .image-item {
  opacity: 1;
  visibility: visible;
}

/*5.5 fanfuct-section-s2 */
.fanfuct-section-s2 {
  padding-bottom: 110px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .fanfuct-section-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 757px) {
  .fanfuct-section-s2 {
    padding-bottom: 50px;
  }
}

.fanfuct-section-s2 .title {
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.fanfuct-section-s2 .title .shape {
  margin-bottom: 20px;
}

.fanfuct-section-s2 .title .shape svg path {
  fill: #EE3736;
}

.fanfuct-section-s2 .title p {
  color: #121725;
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
}

@media (max-width: 991px) {
  .fanfuct-section-s2 .title p {
    font-size: 40px;
    line-height: 55px;
  }
}

@media (max-width: 575px) {
  .fanfuct-section-s2 .title p {
    font-size: 30px;
    line-height: 40px;
  }
}

.fanfuct-section-s2 .title p span {
  font-weight: 400;
}

.fanfuct-section-s2 .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  border-radius: 308px;
  background: transparent;
  transition: all 0.3s ease-in-out;
  max-width: 308px;
  height: 308px;
  margin: 0 auto;
  margin-bottom: 30px;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .fanfuct-section-s2 .item {
    height: 270px;
  }
}

@media (max-width: 1199px) {
  .fanfuct-section-s2 .item {
    height: 230px;
  }
}

@media (max-width: 991px) {
  .fanfuct-section-s2 .item {
    border-radius: 0px;
  }
}

.fanfuct-section-s2 .item h2 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 90px;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .fanfuct-section-s2 .item h2 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .fanfuct-section-s2 .item h2 {
    font-size: 50px;
  }
}

.fanfuct-section-s2 .item h3 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .fanfuct-section-s2 .item h3 {
    font-size: 15px;
  }
}

.fanfuct-section-s2 .item:hover,
.fanfuct-section-s2 .item.active {
  background: #F4F4F4;
}

.fanfuct-section-s2 .col:nth-child(2) .item {
  background: #F4F4F4;
}

/*5.6 project-section-s2 */
.project-section-s2 {
  background: #EDEDED;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .project-section-s2 {
    padding-bottom: 0;
  }
}

.section-title-s2 .title {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .section-title-s2 .title {
    margin-bottom: 40px;
  }
}

.section-title-s2 .title p {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(108, 108, 108, 0.22);
}

@media (max-width: 991px) {
  .section-title-s2 .title p {
    font-size: 16px;
  }
}

.section-title-s2 .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .section-title-s2 .title-bottom {
    display: block;
  }
}

.section-title-s2 .title-bottom h2 {
  max-width: 720px;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
  margin-top: 0;
}

@media (max-width: 991px) {
  .section-title-s2 .title-bottom h2 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .section-title-s2 .title-bottom h2 {
    font-size: 30px;
    line-height: 50px;
  }
}

.section-title-s2 .title-bottom h2 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .section-title-s2 .title-bottom h2 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .section-title-s2 .title-bottom h2 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.section-title-s2 .title-bottom a {
  color: #FD5B38;
}

.section-title-s2 .title-bottom a span {
  font-size: 22px;
  line-height: 22px;
}

.section-title-s2 .title-bottom a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.project-section-s2 .project-card {
  position: relative;
}

.project-section-s2 .project-card img {
  border-radius: 15px;
}

.project-section-s2 .project-card .slingle-page-link {
  width: 176px;
  height: 176px;
  background: #FD5B38;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

@media (max-width: 991px) {
  .project-section-s2 .project-card .slingle-page-link {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }
}

.project-section-s2 .project-card:hover .slingle-page-link {
  opacity: 1;
  visibility: visible;
}

.project-section-s2 .project-card .text span {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  border: 0;
  margin-right: 0;
  color: #636776;
  position: relative;
  padding-right: 0;
}

.project-section-s2 .project-card .text span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 16px;
  height: 2px;
  background: #FD5B38;
}

.project-section-s2 .project-card .text h2 {
  margin-bottom: 0;
}

.project-section-s2 .project-card .text h2 a {
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
}

.project-section-s2 .col:first-child {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .project-section-s2 .col:first-child {
    margin-top: 0;
  }
}

.project-section-s2 .col:first-child .project-card {
  max-width: 480px;
}

@media (max-width: 991px) {
  .project-section-s2 .col:first-child .project-card {
    max-width: 100%;
  }
}

.project-section-s2 .col:last-child {
  margin-left: auto;
}

.project-section-s2 .col:last-child .project-card {
  max-width: 480px;
  margin-left: auto;
}

@media (max-width: 991px) {
  .project-section-s2 .col:last-child .project-card {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .project-section-s2 .col:last-child .project-card {
    margin-left: auto;
    margin-right: auto;
  }
}

.project-section-s2 .sortable-gallery {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.project-section-s2 .side-text-slid {
  max-width: 1833px;
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
  position: absolute;
  z-index: -1;
  top: 49%;
  left: -226px;
  transform: rotate(-50deg);
}

@media (max-width: 1199px) {
  .project-section-s2 .side-text-slid {
    max-width: 753px;
  }
}

@media (max-width: 991px) {
  .project-section-s2 .side-text-slid {
    display: none;
  }
}

.project-section-s2 .side-text-slid .marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.project-section-s2 .side-text-slid h2 {
  color: #FFF;
  text-shadow: 0px 4px 18px rgba(155, 157, 166, 0.25);
  font-size: 170px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .project-section-s2 .side-text-slid h2 {
    font-size: 100px;
    line-height: 99px;
  }
}

@media (max-width: 575px) {
  .project-section-s2 .side-text-slid h2 {
    font-size: 80px;
    line-height: 99px;
  }
}

/*5.7 team-section-s2 */
.team-section-s2 {
  overflow: hidden;
}

.team-section-s2 .title {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .team-section-s2 .title {
    margin-bottom: 40px;
  }
}

.team-section-s2 .title h2 {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(108, 108, 108, 0.22);
}

@media (max-width: 991px) {
  .team-section-s2 .title h2 {
    font-size: 16px;
  }
}

.team-section-s2 .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .team-section-s2 .title-bottom {
    display: block;
  }
}

.team-section-s2 .title-bottom h3 {
  max-width: 720px;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .team-section-s2 .title-bottom h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .team-section-s2 .title-bottom h3 {
    font-size: 30px;
    line-height: 50px;
  }
}

.team-section-s2 .title-bottom h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .team-section-s2 .title-bottom h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .team-section-s2 .title-bottom h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.team-section-s2 .title-bottom a {
  color: #FD5B38;
}

.team-section-s2 .title-bottom a span {
  font-size: 22px;
  line-height: 22px;
}

.team-section-s2 .title-bottom a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.team-section-s2 .team-card .image {
  overflow: hidden;
}

.team-section-s2 .team-card .image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.team-section-s2 .team-card .image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  transition: all 0.4s ease-in-out;
}

.team-section-s2 .team-card .image ul {
  left: auto;
  right: -30px;
  top: 50%;
  bottom: auto;
  padding: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  background: transparent;
  transition: all 0.5s ease-in-out;
}

.team-section-s2 .team-card .image ul li {
  display: block;
}

.team-section-s2 .team-card .image ul li:first-child a {
  transition: all 0.2s ease-in-out;
}

.team-section-s2 .team-card .image ul li:nth-child(2) a {
  transition: all 0.4s ease-in-out;
}

.team-section-s2 .team-card .image ul li:nth-child(3) a {
  transition: all 0.6s ease-in-out;
}

.team-section-s2 .team-card .image ul li:last-child a {
  transition: all 0.8s ease-in-out;
}

.team-section-s2 .team-card .image ul li a {
  background: #EE3736;
  color: #fff;
  text-align: center;
  font-size: 15px;
  padding: 8px 14px;
  display: block;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.team-section-s2 .team-card .image ul li a:hover {
  background: #171717;
}

.team-section-s2 .team-card .text h2 a {
  text-transform: uppercase;
}

.team-section-s2 .team-card .text span {
  color: #636776;
  text-transform: uppercase;
}

.team-section-s2 .team-card:hover .image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.team-section-s2 .team-card:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.team-section-s2 .team-card:hover .image ul {
  opacity: 1;
  visibility: visible;
}

.team-section-s2 .team-card:hover .image ul li a {
  transform: translateX(-30px) translateX(0);
  opacity: 1;
}

.team-section-s2 .circle-bottom {
  position: relative;
}

.team-section-s2 .circle-bottom .circle-content {
  width: 190px;
  height: 190px;
  position: relative;
  margin: 0 auto;
}

.team-section-s2 .circle-bottom .circle-content svg {
  font-size: 12px;
  letter-spacing: 2px;
}

.team-section-s2 .circle-bottom .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*5.8 marquee-section-s4 */
.marquee-section-s4,
.award-section-s3 {
  padding: 0;
  overflow: hidden;
}

@media (max-width: 991px) {

  .marquee-section-s4 .marquee_container,
  .award-section-s3 .marquee_container {
    padding: 0;
  }
}

.marquee-section-s4 .marquee,
.award-section-s3 .marquee {
  animation: marquee 50s linear infinite;
}

.marquee-section-s4 h2,
.award-section-s3 h2 {
  display: inline-block;
  color: #121725;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 100px;
  font-weight: 700;
  line-height: 69px;
}

@media (max-width: 991px) {

  .marquee-section-s4 h2,
  .award-section-s3 h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

.marquee-section-s4 h2 span,
.award-section-s3 h2 span {
  font-size: 100px;
  font-weight: 400;
  line-height: 69px;
  color: #121725;
}

@media (max-width: 991px) {

  .marquee-section-s4 h2 span,
  .award-section-s3 h2 span {
    font-size: 60px;
    line-height: 70px;
  }
}

.marquee-section-s4 h2 .color,
.award-section-s3 h2 .color {
  color: #EE3736;
  font-size: 100px;
  font-weight: 700;
  line-height: 69px;
}

@media (max-width: 991px) {

  .marquee-section-s4 h2 .color,
  .award-section-s3 h2 .color {
    font-size: 60px;
    line-height: 70px;
  }
}

.marquee-section-s4 .s2,
.award-section-s3 .s2 {
  margin-top: 20px;
}

@media (max-width: 991px) {

  .marquee-section-s4 .s2,
  .award-section-s3 .s2 {
    margin-top: 0px;
  }
}

.marquee-section-s4 .s2 .marquee-s2,
.award-section-s3 .s2 .marquee-s2 {
  animation: marquee-s2 50s linear infinite;
  display: inline-block;
}

.marquee-section-s4 .s2 h2,
.award-section-s3 .s2 h2 {
  color: transparent;
  font-style: normal;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-size: 100px;
  font-weight: 700;
  line-height: 69px;
  text-transform: uppercase;
}

@media (max-width: 991px) {

  .marquee-section-s4 .s2 h2,
  .award-section-s3 .s2 h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

/*5.9 blog-section-s2 */
.blog-section-s2 {
  overflow: hidden;
}

.blog-section-s2 .title {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .blog-section-s2 .title {
    margin-bottom: 40px;
  }
}

.blog-section-s2 .title h2 {
  color: #FD5B38;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(108, 108, 108, 0.22);
}

@media (max-width: 991px) {
  .blog-section-s2 .title h2 {
    font-size: 16px;
  }
}

.blog-section-s2 .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .blog-section-s2 .title-bottom {
    display: block;
  }
}

.blog-section-s2 .title-bottom h3 {
  max-width: 720px;
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .blog-section-s2 .title-bottom h3 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .blog-section-s2 .title-bottom h3 {
    font-size: 30px;
    line-height: 50px;
  }
}

.blog-section-s2 .title-bottom h3 span {
  font-size: 65px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .blog-section-s2 .title-bottom h3 span {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .blog-section-s2 .title-bottom h3 span {
    font-size: 40px;
    line-height: 55px;
  }
}

.blog-section-s2 .title-bottom a {
  color: #FD5B38;
}

.blog-section-s2 .title-bottom a span {
  font-size: 22px;
  line-height: 25px;
}

.blog-section-s2 .title-bottom a i {
  font-size: 22px;
  line-height: 38px;
  position: relative;
  bottom: -4px;
}

.blog-section-s2 .blog-card {
  display: block;
  padding: 0;
  background: transparent;
  margin-bottom: 30px;
}

.blog-section-s2 .blog-card .image {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.blog-section-s2 .blog-card .image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.blog-section-s2 .blog-card .image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  transition: all 0.4s ease-in-out;
}

.blog-section-s2 .blog-card .content {
  padding: 0;
  padding-top: 10px;
}

.blog-section-s2 .blog-card .content span {
  color: #8D8F96;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  line-height: 39px;
  text-transform: uppercase;
}

.blog-section-s2 .blog-card .content h3 {
  margin-bottom: 25px;
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.67);
  margin-top: 0;
}

.blog-section-s2 .blog-card .content h3 a {
  color: #121725;
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .blog-section-s2 .blog-card .content h3 a {
    font-size: 17px;
  }
}

.blog-section-s2 .blog-card .content h3 a:hover {
  color: #d42f2f;
}

.blog-section-s2 .blog-card .content a {
  color: #FD5B38;
}

.blog-section-s2 .blog-card .content a span {
  color: #121725;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 29px;
}

.blog-section-s2 .blog-card .content a i {
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: #EE3736;
  font-size: 11px;
  line-height: 26px;
  position: relative;
  bottom: -2px;
  left: 10px;
  color: #fff;
  text-align: center;
  display: inline-block;
}

.blog-section-s2 .blog-card .content a i:before {
  left: -1px;
  position: relative;
}

.blog-section-s2 .blog-card:hover .image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.blog-section-s2 .blog-card:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-section-s2 .blog-btn {
  text-align: center;
  margin-top: 20px;
}

.blog-section-s2 .blog-btn .theme-btn,
.blog-section-s2 .blog-btn .view-cart-btn {
  background: #EE3736;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  padding: 24px 78px;
}

@media (max-width: 991px) {

  .blog-section-s2 .blog-btn .theme-btn,
  .blog-section-s2 .blog-btn .view-cart-btn {
    padding: 20px 60px;
  }
}

.blog-section-s2 .blog-btn .theme-btn:hover,
.blog-section-s2 .blog-btn .view-cart-btn:hover {
  background: #d42f2f;
}

/*5.10 contact-section */
.contact-section,
.contact-section-s2 {
  position: relative;
  margin-bottom: -80px;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {

  .contact-section,
  .contact-section-s2 {
    margin-bottom: 90px;
  }
}

@media (max-width: 767px) {

  .contact-section,
  .contact-section-s2 {
    margin-bottom: 80px;
  }
}

.contact-section .contact-wrap,
.contact-section-s2 .contact-wrap {
  background: #EE3736;
  border-radius: 20px;
  padding: 30px 0;
}

@media (max-width: 991px) {

  .contact-section .contact-wrap,
  .contact-section-s2 .contact-wrap {
    padding: 30px;
  }
}

@media (max-width: 575px) {

  .contact-section .contact-wrap,
  .contact-section-s2 .contact-wrap {
    padding: 30px 20px;
  }
}

.contact-section .circle-bottom,
.contact-section-s2 .circle-bottom {
  position: relative;
}

.contact-section .circle-bottom .circle-content,
.contact-section-s2 .circle-bottom .circle-content {
  max-width: 611px;
  max-height: 614px;
  position: relative;
  margin: 0 auto;
}

@media (max-width: 991px) {

  .contact-section .circle-bottom .circle-content,
  .contact-section-s2 .circle-bottom .circle-content {
    max-width: 411px;
    max-height: 414px;
  }
}

@media (max-width: 767px) {

  .contact-section .circle-bottom .circle-content,
  .contact-section-s2 .circle-bottom .circle-content {
    max-width: 311px;
    max-height: 314px;
  }
}

@media (max-width: 575px) {

  .contact-section .circle-bottom .circle-content,
  .contact-section-s2 .circle-bottom .circle-content {
    max-width: 211px;
    max-height: 214px;
  }
}

.contact-section .circle-bottom .circle-content svg,
.contact-section-s2 .circle-bottom .circle-content svg {
  font-size: 12px;
  letter-spacing: 2px;
  fill: #fff;
}

.contact-section .circle-bottom .circle-content .arrows,
.contact-section-s2 .circle-bottom .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.contact-section .contact-from,
.contact-section-s2 .contact-from {
  max-width: 525px;
}

@media (max-width: 991px) {

  .contact-section .contact-from,
  .contact-section-s2 .contact-from {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {

  .contact-section .contact-from,
  .contact-section-s2 .contact-from {
    margin-top: 20px;
  }
}

.contact-section .contact-from h3,
.contact-section-s2 .contact-from h3 {
  color: #FFF;
  font-size: 60px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {

  .contact-section .contact-from h3,
  .contact-section-s2 .contact-from h3 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {

  .contact-section .contact-from h3,
  .contact-section-s2 .contact-from h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}

.contact-section .contact-from input,
.contact-section .contact-from textarea,
.contact-section-s2 .contact-from input,
.contact-section-s2 .contact-from textarea {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 25px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.42);
  background: transparent;
  margin-bottom: 60px;
}

.contact-section .contact-from input:focus-visible,
.contact-section .contact-from textarea:focus-visible,
.contact-section-s2 .contact-from input:focus-visible,
.contact-section-s2 .contact-from textarea:focus-visible {
  outline: 0;
}

.contact-section .contact-from input:-moz-placeholder,
.contact-section .contact-from textarea:-moz-placeholder,
.contact-section-s2 .contact-from input:-moz-placeholder,
.contact-section-s2 .contact-from textarea:-moz-placeholder {
  color: #fff;
}

.contact-section .contact-from input:-ms-input-placeholder,
.contact-section .contact-from textarea:-ms-input-placeholder,
.contact-section-s2 .contact-from input:-ms-input-placeholder,
.contact-section-s2 .contact-from textarea:-ms-input-placeholder {
  color: #fff;
}

.contact-section .contact-from input::-webkit-input-placeholder,
.contact-section .contact-from textarea::-webkit-input-placeholder,
.contact-section-s2 .contact-from input::-webkit-input-placeholder,
.contact-section-s2 .contact-from textarea::-webkit-input-placeholder {
  color: #fff;
}

.contact-section .contact-from textarea,
.contact-section-s2 .contact-from textarea {
  min-height: 40px;
  height: 100%;
  margin-top: 20px;
  padding-bottom: 0;
  height: 60px;
}

.contact-section .contact-from .contact-btn,
.contact-section-s2 .contact-from .contact-btn {
  padding: 25px 60px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  color: #121725;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  border: 0;
  width: auto;
  margin-bottom: 0;
}

.contact-section.s1 .contact-from .wpcf7-not-valid-tip {
  color: #6a4040;
  margin-top: -20px;
}

@media (max-width: 575px) {

  .contact-section .contact-from .contact-btn,
  .contact-section-s2 .contact-from .contact-btn {
    padding: 20px 30px;
  }
}

.contact-section .contact-from .message,
.contact-section-s2 .contact-from .message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  display: none;
}

.contact-section .contact-from .message.success,
.contact-section-s2 .contact-from .message.success {
  background-color: #4CAF50;
  color: white;
}

.contact-section .contact-from .message.error,
.contact-section-s2 .contact-from .message.error {
  background-color: #f44336;
  color: white;
}

/* pricing-page */
.pricing-page .pricing-card {
  background: #121725;
  border-radius: 20px;
  padding: 30px 30px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.pricing-page .pricing-card::before {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.pricing-page .pricing-card .title {
  padding-bottom: 20px;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.06);
}

.pricing-page .pricing-card .title h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-top: 0;
}

.pricing-page .pricing-card .title p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 0;
  color: #BCC0CB;
}

.pricing-page .pricing-card .pricing-top {
  margin: 20px 0;
}

.pricing-page .pricing-card .pricing-top h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}

.pricing-page .pricing-card .pricing-top h2&gt;sub {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  top: -5px;
}

.pricing-page .pricing-card .pricing-top h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.pricing-page .pricing-card .pricing-top h3&gt;sub {
  position: relative;
  top: -2px;
  color: #BCC0CB;
}

.pricing-page .pricing-card .theme-btn,
.pricing-page .pricing-card .view-cart-btn {
  width: 100%;
  text-align: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  color: #fff;
  text-transform: capitalize;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}

.pricing-page .pricing-card .theme-btn .rolling-text,
.pricing-page .pricing-card .view-cart-btn .rolling-text {
  line-height: 28px;
}

.pricing-page .pricing-card ul {
  padding-top: 30px;
  padding-left: 0;
  list-style: none;
}

.pricing-page .pricing-card ul li {
  position: relative;
  color: #DDD;
  font-size: 16px;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 13px;
}

.pricing-page .pricing-card ul li:last-child {
  margin-bottom: 0;
}

.pricing-page .pricing-card ul li::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "\e64c";
  font-family: "themify";
  font-size: 14px;
}

.pricing-page .pricing-card.active,
.pricing-page .pricing-card:hover {
  border: 2px solid #BAE900;
}

.pricing-page .pricing-card.active::before,
.pricing-page .pricing-card:hover::before {
  opacity: 1;
  visibility: visible;
}

.pricing-page .pricing-card.active .theme-btn,
.pricing-page .pricing-card.active .view-cart-btn,
.pricing-page .pricing-card:hover .theme-btn,
.pricing-page .pricing-card:hover .view-cart-btn {
  background: #BAE900;
  border: 2px solid rgba(255, 255, 255, 0.06);
  color: #121725;
}

/*------------ 6. Home-style-3 --------------*/
/*6.1 about-section-s3 */
.about-section-s3 {
  overflow: hidden;
}

.about-section-s3 .wraper {
  position: relative;
}

.about-section-s3 .top-content {
  display: flex;
  align-items: start;
}

@media (max-width: 991px) {
  .about-section-s3 .top-content {
    display: block;
  }
}

.about-section-s3 .left {
  display: flex;
  align-items: center;
  max-width: 690px;
  width: 100%;
  padding-right: 95px;
}

@media (max-width: 1399px) {
  .about-section-s3 .left {
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .about-section-s3 .left {
    padding-right: 0px;
  }
}

.about-section-s3 .left .left-content {
  max-width: 267px;
  background: #EBEBEB;
  width: 100%;
  padding: 50px 30px 30px;
  overflow: hidden;
}

.about-section-s3 .left .left-content i {
  color: #121725;
  font-size: 28px;
}

.about-section-s3 .left .left-content p {
  color: rgba(18, 23, 37, 0.7);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: lowercase;
}

.about-section-s3 .left .left-content h3 {
  color: #000;
  font-size: 90px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-section-s3 .left .left-content h3 {
    font-size: 40px;
  }
}

.about-section-s3 .left .left-content h3 span {
  font-size: 50px;
}

.about-section-s3 .left img {
  width: calc(100% - 267px);
  margin-left: 10px;
}

@media (max-width: 991px) {
  .about-section-s3 .left img {
    display: none;
  }
}

.about-section-s3 .right {
  max-width: 700px;
}

@media (max-width: 991px) {
  .about-section-s3 .right {
    margin-top: 20px;
  }
}

.about-section-s3 .right h2 {
  color: #000;
  font-size: 59px;
  font-weight: 700;
  line-height: 70px;
}

@media (max-width: 991px) {
  .about-section-s3 .right h2 {
    font-size: 49px;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  .about-section-s3 .right h2 {
    font-size: 39px;
    line-height: 60px;
  }
}

@media (max-width: 425px) {
  .about-section-s3 .right h2 {
    font-size: 29px;
    line-height: 50px;
  }
}

.about-section-s3 .right h2 span {
  font-weight: 400;
}

.about-section-s3 .bottom-content {
  max-width: 490px;
  padding-top: 55px;
}

@media (max-width: 991px) {
  .about-section-s3 .bottom-content {
    padding-top: 15px;
  }
}

.about-section-s3 .bottom-content p {
  color: rgba(18, 23, 37, 0.7);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: lowercase;
  margin-bottom: 55px;
}

@media (max-width: 991px) {
  .about-section-s3 .bottom-content p {
    margin-bottom: 35px;
  }
}

@media (max-width: 425px) {
  .about-section-s3 .bottom-content p {
    font-size: 16px;
    line-height: 30px;
  }
}

.about-section-s3 .bottom-content .theme-btn,
.about-section-s3 .bottom-content .view-cart-btn {
  padding: 27px 75px;
}

@media (max-width: 991px) {

  .about-section-s3 .bottom-content .theme-btn,
  .about-section-s3 .bottom-content .view-cart-btn {
    padding: 20px 55px;
  }
}

@media (max-width: 425px) {

  .about-section-s3 .bottom-content .theme-btn,
  .about-section-s3 .bottom-content .view-cart-btn {
    padding: 15px 40px;
  }
}

.about-section-s3 .bottom-content .theme-btn .rolling-text,
.about-section-s3 .bottom-content .view-cart-btn .rolling-text {
  line-height: 28px;
}

.about-section-s3 .funfact-wrap {
  max-width: 710px;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}

@media (max-width: 1399px) {
  .about-section-s3 .funfact-wrap {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .about-section-s3 .funfact-wrap {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .about-section-s3 .funfact-wrap {
    margin-top: 30px;
    position: unset;
  }
}

@media (max-width: 425px) {
  .about-section-s3 .funfact-wrap {
    flex-direction: column;
  }
}

.about-section-s3 .funfact-wrap .item {
  max-width: 366px;
  width: 100%;
  height: 100%;
  height: 366px;
  border-radius: 366px;
  border: 1px solid #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 -10px;
}

@media (max-width: 1399px) {
  .about-section-s3 .funfact-wrap .item {
    height: 320px;
  }
}

@media (max-width: 1199px) {
  .about-section-s3 .funfact-wrap .item {
    max-width: 220px;
    height: 220px;
  }
}

@media (max-width: 425px) {
  .about-section-s3 .funfact-wrap .item {
    margin: -10px 0;
  }
}

.about-section-s3 .funfact-wrap .item h2 {
  color: #000;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}

.about-section-s3 .funfact-wrap .item h2 span {
  font-size: 141px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .about-section-s3 .funfact-wrap .item h2 span {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .about-section-s3 .funfact-wrap .item h2 span {
    font-size: 50px;
  }
}

.about-section-s3 .funfact-wrap .item h2 .icon {
  color: #000;
  font-size: 50px;
  font-weight: 500;
  position: relative;
  bottom: -30px;
}

@media (max-width: 1199px) {
  .about-section-s3 .funfact-wrap .item h2 .icon {
    bottom: -10px;
  }
}

@media (max-width: 991px) {
  .about-section-s3 .funfact-wrap .item h2 .icon {
    font-size: 30px;
    bottom: 0px;
  }
}

.about-section-s3 .funfact-wrap .item p {
  color: rgba(18, 23, 37, 0.7);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-transform: lowercase;
  margin: 0;
  max-width: 238px;
  margin: 0 auto;
}

/* section-image */
.section-image img {
  width: 100%;
}

/*6.2 service-section-s3 */
.service-section-s3 {
  overflow: hidden;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .service-section-s3 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .service-section-s3 {
    padding-bottom: 50px;
  }
}

.service-section-s3 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .service-section-s3 .title {
    display: block;
    text-align: center;
  }
}

.service-section-s3 .title h3 {
  color: #000;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  max-width: 620px;
}

@media (max-width: 991px) {
  .service-section-s3 .title h3 {
    margin: 10px 0 20px;
  }
}

@media (max-width: 991px) {
  .service-section-s3 .title h3 {
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .service-section-s3 .title h3 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .service-section-s3 .title h3 {
    font-size: 35px;
  }
}

.service-section-s3 .title h3 span {
  font-weight: 400;
  line-height: 100%;
}

.service-section-s3 .title .rolling-text {
  line-height: 28px;
}

@media (max-width: 991px) {

  .service-section-s3 .title .theme-btn i,
  .service-section-s3 .title .view-cart-btn i {
    display: none;
  }
}

.service-card-s3 {
  background: #181818;
  padding: 45px 60px 70px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .service-card-s3 {
    padding: 30px 30px 40px;
  }
}

@media (max-width: 1199px) {
  .service-card-s3 {
    padding: 30px 20px 40px;
  }
}

.service-card-s3 .num {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 72px;
  text-transform: capitalize;
}

.service-card-s3 .icon {
  width: 63px;
  height: 63px;
  margin: 28px 0;
}

@media (max-width: 1199px) {
  .service-card-s3 .icon {
    margin: 20px 0;
  }
}

@media (max-width: 991px) {
  .service-card-s3 .icon {
    margin: 10px 0 20px;
  }
}

.service-card-s3 h2 {
  margin-bottom: 0;
  margin-top: 0;
}

.service-section-s3 .service-card-s3 p {
  margin-bottom: 0;
}

.service-card-s3 h2 a {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 72px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .service-card-s3 h2 a {
    font-size: 20px;
    line-height: 45px;
  }
}

.service-card-s3 h2 a:hover {
  color: #BAE900;
}

.service-card-s3 p {
  color: #DDD;
  font-size: 17px;
  font-weight: 500;
  line-height: 28.8px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .service-card-s3 p {
    font-size: 15px;
  }
}

/*6.3 project-section-s3 */
.project-section-s3 {
  overflow: hidden;
}

.section-title-s3 .title {
  display: flex;
  align-items: center;
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .section-title-s3 .title {
    display: block;
    margin-bottom: 60px;
  }
}

.section-title-s3 .left {
  display: flex;
  align-items: center;
  max-width: 860px;
  width: 100%;
  padding-right: 90px;
}

@media (max-width: 1399px) {
  .section-title-s3 .left {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .section-title-s3 .left {
    padding-right: 0px;
  }
}

.section-title-s3 .left .left-content {
  width: calc(100% - 210px);
  padding-right: 75px;
}

@media (max-width: 1399px) {
  .section-title-s3 .left .left-content {
    padding-right: 10px;
  }
}

.section-title-s3 .left .left-content h2 {
  color: #000;
  font-size: 200px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 1399px) {
  .section-title-s3 .left .left-content h2 {
    font-size: 150px;
  }
}

@media (max-width: 1199px) {
  .section-title-s3 .left .left-content h2 {
    font-size: 100px;
  }
}

.section-title-s3 .left img {
  max-width: 210px;
}

@media (max-width: 991px) {
  .section-title-s3 .left img {
    display: none;
  }
}

.section-title-s3 .right {
  max-width: 460px;
  width: 100%;
}

@media (max-width: 991px) {
  .section-title-s3 .right {
    margin-top: 20px;
  }
}

.section-title-s3 .right h3 {
  color: #000;
  font-size: 37px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .section-title-s3 .right h3 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .section-title-s3 .right h3 {
    font-size: 30px;
  }
}

@media (max-width: 425px) {
  .section-title-s3 .right h3 {
    font-size: 29px;
  }
}

.section-title-s3 .right h3 span {
  font-weight: 700;
}

.project-section-s3 .swiper {
  margin-bottom: 12px;
}

.project-section-s3 .swiper.s2 {
  margin-bottom: 0;
}

.project-section-s3 .swiper-slide {
  max-width: 573px;
  overflow: hidden;
}

.project-section-s3 .swiper-slide img {
  width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.project-section-s3 .swiper-slide img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  transition: all 0.4s ease-in-out;
}

.project-section-s3 .swiper-slide:hover img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.project-section-s3 .swiper-slide:hover img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

/*6.4 partners-section-s2 */
.partners-section-s2 .title {
  margin-bottom: 50px;
}

.partners-section-s2 .title h2 {
  margin-bottom: 0;
  color: #030303;
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  text-transform: capitalize;
}

.partners-section-s2 .title h2 span {
  color: #FD5B38;
}

.partners-section-s2 .partner-grids {
  display: flex;
  flex-wrap: wrap;
}

.partners-section-s2 .grid {
  flex-basis: 16.66%;
  text-align: center;
  border: 1px solid rgba(49, 46, 46, 0.15);
  margin: -1px 0 0 -1px;
  padding: 55px 35px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 991px) {
  .partners-section-s2 .grid {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .partners-section-s2 .grid {
    flex-basis: 25%;
    padding: 30px 40px;
  }
}

@media (max-width: 767px) {
  .partners-section-s2 .grid {
    flex-basis: 50%;
    padding: 30px 40px;
  }
}

@media (max-width: 440px) {
  .partners-section-s2 .grid {
    flex-basis: 50%;
    padding: 20px;
  }
}

.partners-section-s2 img {
  display: inline-block;
  max-width: 70%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .partners-section-s2 img {
    width: 100%;
  }
}

/*6.5 award-section-s3 */
.award-section-s3 {
  padding: 150px 0;
  margin-bottom: -50px;
}

@media (max-width: 425px) {
  .award-section-s3 {
    padding: 100px 0;
  }
}

.award-section-s3 .swiper-slide {
  max-width: 650px;
}

.award-section-s3 .swiper-slide .text {
  width: calc(100% - 60px);
}

.award-section-s3 .swiper-slide .awward-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.award-section-s3 .swiper-slide .awward-item span {
  color: #121725;
  font-size: 15px;
  font-weight: 600;
  line-height: 38px;
  text-transform: capitalize;
}

.award-section-s3 .swiper-slide .awward-item span .color {
  color: #BAE900;
}

.award-section-s3 .swiper {
  overflow: unset;
}

.award-section-s3 .swiper-slide .awward-item h2 {
  text-transform: capitalize;
  line-height: 10px;
  display: block;
}

@media (max-width: 991px) {
  .award-section-s3 .swiper-slide .awward-item h2 {
    line-height: 30px;
  }
}

@media (max-width: 650px) {
  .award-section-s3 .swiper-slide .awward-item h2 {
    line-height: 20px;
  }
}

@media (max-width: 575px) {
  .award-section-s3 .swiper-slide .awward-item h2 {
    line-height: 10px;
  }
}

.award-section-s3 .swiper-slide .awward-item h2 {
  color: #121725;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  font-size: 50px;
}

@media (max-width: 650px) {
  .award-section-s3 .swiper-slide .awward-item h2 {
    font-size: 40px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .award-section-s3 .swiper-slide .awward-item h2 {
    font-size: 20px;
  }
}

.award-section-s3 .swiper-slide .awward-item i {
  width: 48px;
  height: 48px;
  color: #BAE900;
  display: block;
  font-size: 30px;
  padding-top: 30px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 425px) {
  .award-section-s3 .swiper-slide .awward-item i {
    font-size: 20px;
    padding-top: 15px;
    padding-left: 10px;
  }
}

.award-section-s3 .swiper-slide .awward-item .image-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.award-section-s3 .swiper-slide .awward-item .image-item img {
  border-radius: 9px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.13);
  max-width: 245px;
  max-height: 332px;
}

@media (max-width: 425px) {
  .award-section-s3 .swiper-slide .awward-item .image-item img {
    max-width: 145px;
    max-height: 232px;
  }
}

.award-section-s3 .swiper-slide .awward-item.active .image-item {
  opacity: 1;
  visibility: visible;
}

.award-section-s3 .swiper-slide .awward-item:hover .image-item {
  opacity: 1;
  visibility: visible;
}

.award-section-s3 .swiper-slide .awward-item:hover h2 a {
  text-decoration: underline;
}

.award-section-s3 .swiper-slide .awward-item:hover i {
  color: #FD5B38;
}

/*6.6 team-section-s3 */
.team-section-s3 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .team-section-s3 .title {
    display: block;
    text-align: center;
  }
}

.team-section-s3 .title h3 {
  color: #000;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  max-width: 620px;
}

@media (max-width: 991px) {
  .team-section-s3 .title h3 {
    margin: 10px 0 20px;
  }
}

@media (max-width: 991px) {
  .team-section-s3 .title h3 {
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .team-section-s3 .title h3 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .team-section-s3 .title h3 {
    font-size: 35px;
  }
}

.team-section-s3 .title h3 span {
  font-weight: 400;
  line-height: 100%;
}

.team-section-s3 .title .rolling-text {
  line-height: 28px;
}

@media (max-width: 991px) {

  .team-section-s3 .title .theme-btn i,
  .team-section-s3 .title .view-cart-btn i {
    display: none;
  }
}

.team-section-s3 .team-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #121725;
  padding: 30px 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .team-section-s3 .team-card {
    display: block;
  }
}

.team-section-s3 .team-card .image {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%) scale(0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .team-section-s3 .team-card .image {
    left: 40%;
  }
}

.team-section-s3 .team-card .image img {
  width: 418px;
  height: 418px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1399px) {
  .team-section-s3 .team-card .image img {
    width: 318px;
    height: 318px;
  }
}

@media (max-width: 991px) {
  .team-section-s3 .team-card .image img {
    width: 218px;
    height: 218px;
  }
}

@media (max-width: 575px) {
  .team-section-s3 .team-card .image img {
    width: 180px;
    height: 180px;
  }
}

.team-section-s3 .team-card .text {
  display: flex;
  align-items: center;
  margin: 0;
}

@media (max-width: 767px) {
  .team-section-s3 .team-card .text {
    display: block;
    text-align: left;
  }
}

.team-section-s3 .team-card .text h2 {
  margin-bottom: 0;
  margin-top: 0;
}

.team-section-s3 .team-card .text h2 a {
  color: #121725;
  font-size: 34px;
  font-weight: 700;
  line-height: 60px;
}

@media (max-width: 1199px) {
  .team-section-s3 .team-card .text h2 a {
    font-size: 18px;
    line-height: 22px;
  }
}

.team-section-s3 .team-card .text span {
  color: #121725;
  font-size: 22px;
  font-weight: 500;
  line-height: 0px;
  text-transform: capitalize;
  position: relative;
  bottom: -5px;
}

@media (max-width: 767px) {
  .team-section-s3 .team-card .text span {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .team-section-s3 .team-card .icon {
    margin-top: 10px;
  }
}

.team-section-s3 .team-card .icon a {
  color: #121725;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.55px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .team-section-s3 .team-card .icon a {
    font-size: 14px;
    letter-spacing: 1.55px;
  }
}

@media (max-width: 575px) {
  .team-section-s3 .team-card .icon a {
    font-size: 13px;
    letter-spacing: 1.55px;
  }
}

.team-section-s3 .team-card .icon a i {
  padding-left: 20px;
}

@media (max-width: 575px) {
  .team-section-s3 .team-card .icon a i {
    padding-left: 10px;
  }
}

.team-section-s3 .team-card.active .image {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

/*6.7 work-and-marquee-text */
.work-and-marquee-text {
  background: #0A0906;
  padding-top: 30px;
}

.marquee-section-s4.style2 {
  background: #0A0906;
}

.marquee-section-s4.style2 h2 span {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 90px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .marquee-section-s4.style2 h2 span {
    font-size: 40px;
    line-height: 60px;
  }
}

.marquee-section-s4.style2 h2 span img {
  margin: 0 20px;
  text-align: center;
}

.work-section .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 150px;
}

@media (max-width: 991px) {
  .work-section .title {
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }
}

.work-section .title h3 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  max-width: 620px;
}

@media (max-width: 991px) {
  .work-section .title h3 {
    margin: 10px 0 20px;
  }
}

@media (max-width: 991px) {
  .work-section .title h3 {
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .work-section .title h3 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .work-section .title h3 {
    font-size: 35px;
  }
}

.work-section .title h3 span {
  font-weight: 400;
  line-height: 100%;
}

.work-section .title .rolling-text {
  line-height: 28px;
}

@media (max-width: 991px) {

  .work-section .title .theme-btn i,
  .work-section .title .view-cart-btn i {
    display: none;
  }
}

.work-section .item {
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .work-section .item {
    margin-bottom: 30px;
  }
}

.work-section .item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 15px;
  width: 100%;
  border-bottom: 1.5px dashed rgba(255, 255, 255, 0.34);
  transform: translateY(-50%);
}

.work-section .item img {
  width: 60px;
  height: 60px;
}

.work-section .item h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 40px 0 35px;
}

.work-section .item p {
  color: #848484;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .work-section .item p {
    margin-bottom: 30px;
  }
}

.work-section .item span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0E1012;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.09));
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}

.work-section .item:hover span,
.work-section .item.active span {
  background: #BAE900;
  color: #0E1012;
}

/*6.8 testimonial-section-s2 */
.testimonial-section-s2 {
  overflow: hidden;
}

.testimonial-section-s2 .testimonial-left {
  max-width: 490px;
  height: 490px;
  position: relative;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .testimonial-left {
    margin: 0 -50px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-left {
    margin: 0;
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 .testimonial-left {
    display: none;
  }
}

.testimonial-section-s2 .image-1 {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 297px;
  max-height: 297px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.testimonial-section-s2 .image-1 img {
  filter: grayscale(100%);
}

.testimonial-section-s2 .image-2 {
  position: absolute;
  top: 0;
  right: -85px;
  max-width: 297px;
  max-height: 297px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.testimonial-section-s2 .image-3 {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 297px;
  max-height: 297px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.testimonial-section-s2 .image-4 {
  position: absolute;
  right: 0;
  bottom: -88px;
  max-width: 297px;
  max-height: 297px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.testimonial-section-s2 .image-4 img {
  mix-blend-mode: lighten;
  filter: grayscale(100%);
}

.testimonial-section-s2 .title h2 {
  color: #121725;
  font-size: 58px;
  font-weight: 700;
  line-height: 70px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .testimonial-section-s2 .title h2 {
    font-size: 45px;
    line-height: 60px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .title h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 .title h2 {
    font-size: 30px;
    line-height: 50px;
  }
}

.testimonial-section-s2 .title h2 span {
  font-weight: 400;
}

.testimonial-section-s2 .testimonial-right {
  padding-left: 65px;
}

@media (max-width: 991px) {
  .testimonial-section-s2 .testimonial-right {
    padding-left: 0;
  }
}

.testimonial-section-s2 .testimonial-slider {
  max-width: 640px;
}

.testimonial-section-s2 .testimonial-slider .slick-arrow {
  display: none !important;
}

.testimonial-section-s2 .item {
  position: relative;
}

.testimonial-section-s2 .item p {
  color: #8D8F96;
  font-size: 24px;
  font-weight: 400;
  line-height: 47px;
  margin: 40px 0;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .item p {
    font-size: 20px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s2 .item p {
    margin: 20px 0 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 .item p {
    margin: 10px 0 20px;
  }
}

.testimonial-section-s2 .author {
  max-width: 358px;
  display: flex;
  align-items: center;
}

.testimonial-section-s2 .author .image {
  width: 72px;
  height: 72px;
}

.testimonial-section-s2 .author .image img {
  width: 100%;
  border-radius: 100px;
}

.testimonial-section-s2 .author .text {
  padding-left: 20px;
}

.testimonial-section-s2 .author .text h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  margin: 0;
  margin-bottom: 10px;
}

.testimonial-section-s2 .author .text span {
  color: #849AB2;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.15px;
}

.testimonial-section-s2 ul {
  list-style: none;
  position: absolute;
  right: 115px;
  bottom: 30px;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 ul {
    right: 0;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 ul {
    position: unset;
    margin-bottom: 20px;
  }
}

.testimonial-section-s2 ul li {
  display: inline-block;
}

/*6.9 blog-section-s3 */
.blog-section-s3 {
  overflow: hidden;
  padding-bottom: 90px;
  background: linear-gradient(180deg, rgba(237, 237, 237, 0) 0%, #F4F5F6 100%);
}

@media (max-width: 991px) {
  .blog-section-s3 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .blog-section-s3 {
    padding-bottom: 50px;
  }
}

.blog-section-s3 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .blog-section-s3 .title {
    display: block;
    text-align: center;
  }
}

.blog-section-s3 .title h3 {
  color: #000;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  max-width: 620px;
}

@media (max-width: 991px) {
  .blog-section-s3 .title h3 {
    margin: 10px 0 20px;
  }
}

@media (max-width: 991px) {
  .blog-section-s3 .title h3 {
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .blog-section-s3 .title h3 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .blog-section-s3 .title h3 {
    font-size: 35px;
  }
}

.blog-section-s3 .title h3 span {
  font-weight: 400;
  line-height: 100%;
}

.blog-section-s3 .title .rolling-text {
  line-height: 28px;
}

@media (max-width: 991px) {

  .blog-section-s3 .title .theme-btn i,
  .blog-section-s3 .title .view-cart-btn i {
    display: none;
  }
}

.blog-section-s3 .blog-card {
  display: block;
  padding: 0;
  background: transparent;
  margin-bottom: 30px;
}

.blog-section-s3 .blog-card .image {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.blog-section-s3 .blog-card .image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.blog-section-s3 .blog-card .image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  transition: all 0.4s ease-in-out;
}

.blog-section-s3 .blog-card .image a {
  width: 148px;
  height: 140px;
  line-height: 160px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 100%;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.blog-section-s3 .blog-card .content {
  padding: 20px 30px 35px;
  background: #1A1A1A;
}

.blog-section-s3 .blog-card .content span {
  color: #8D8F96;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px;
  text-transform: uppercase;
}

.blog-section-s3 .blog-card .content h3 {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 0;
  margin-top: 0;
}

.blog-section-s3 .blog-card .content h3 a {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .blog-section-s3 .blog-card .content h3 a {
    font-size: 17px;
  }
}

.blog-section-s3 .blog-card .content h3 a:hover {
  color: #FD5B38;
}

.blog-section-s3 .blog-card .content a {
  color: #FD5B38;
}

.blog-section-s3 .blog-card .content a span {
  color: #FD5B38;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 29px;
}

.blog-section-s3 .blog-card .content a i {
  width: 22px;
  height: 22px;
  border-radius: 100px;
  font-size: 15px;
  line-height: 26px;
  position: relative;
  bottom: -2px;
  left: 10px;
  color: #FD5B38;
  text-align: center;
  display: inline-block;
}

.blog-section-s3 .blog-card .content a i:before {
  left: -1px;
  position: relative;
}

.blog-section-s3 .blog-card:hover .image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.blog-section-s3 .blog-card:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-section-s3 .blog-card:hover .image a {
  opacity: 1;
  visibility: visible;
}

/*6.10 contact-section-s2 */
.contact-section-s2 {
  margin: 0;
  overflow: hidden;
  padding: 180px 0;
}

@media (max-width: 1199px) {
  .contact-section-s2 {
    padding: 120px 0;
  }
}

@media (max-width: 991px) {
  .contact-section-s2 {
    padding: 90px 0;
  }
}

@media (max-width: 757px) {
  .contact-section-s2 {
    padding: 80px 0;
  }
}

.contact-section-s2 .contact-wrap {
  background: transparent;
  border-radius: 0px;
  padding: 0;
}

.contact-section-s2 .contact-from {
  max-width: 100%;
}

.contact-section-s2 .contact-from form {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .contact-section-s2 .contact-from {
    margin-top: 0px;
  }

  .contact-section-s2 .contact-from form {
    margin-top: 30px;
  }
}

.contact-section-s2 .contact-from h3 {
  color: #121725;
  margin-bottom: 25px;
  text-transform: capitalize;
  margin-top: 0;
}

.contact-section-s2 .contact-from h3 span {
  font-weight: 400;
}

.contact-section-s2 .contact-from p {
  color: #8D8F96;
  font-size: 18px;
  font-weight: 400;
  line-height: 31.8px;
  text-transform: lowercase;
}

.contact-section-s2 .contact-from label {
  color: #010101;
  font-size: 18px;
  font-weight: 600;
  line-height: 10px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.contact-section-s2 .contact-from input,
.contact-section-s2 .contact-from select {
  color: #121725;
  padding: 20px;
  width: 100%;
  border: 0;
  border-bottom: 0;
  background: #EFEFEF;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 600;
  height: 70px;
}

.contact-section-s2 .contact-from .wpcf7-not-valid-tip {
  margin-top: -20px;
}

.contact-section-s2 .contact-from input:focus-visible,
.contact-section-s2 .contact-from select:focus-visible {
  outline: 0;
}

.contact-section-s2 .contact-from input:-moz-placeholder,
.contact-section-s2 .contact-from select:-moz-placeholder {
  color: #121725;
}

.contact-section-s2 .contact-from input:-ms-input-placeholder,
.contact-section-s2 .contact-from select:-ms-input-placeholder {
  color: #121725;
}

.contact-section-s2 .contact-from input::-webkit-input-placeholder,
.contact-section-s2 .contact-from select::-webkit-input-placeholder {
  color: #121725;
}

.contact-section-s2 .contact-from select {
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #EFEFEF url(../images/select-icon2.png) no-repeat calc(100% - 30px) center;
  position: relative;
}

.contact-section-s2 .contact-from select:focus {
  background: #EFEFEF url(../images/select-icon2.png) no-repeat calc(100% - 30px) center;
}

.contact-section-s2 .contact-from .contact-btn {
  padding: 20px 60px;
  background: #BAE900;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  color: #121725;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin-top: 30px;
  width: auto;
}

@media (max-width: 575px) {
  .contact-section-s2 .contact-from .contact-btn {
    padding: 20px 30px;
  }
}

.contact-section-s2 .contact-from .message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  display: none;
}

.contact-section-s2 .contact-from .message.success {
  background-color: #4CAF50;
  color: white;
}

.contact-section-s2 .contact-from .message.error {
  background-color: #f44336;
  color: white;
}

.contact-section-s2 .contact-image {
  position: absolute;
  right: -9%;
  bottom: -20px;
  transform: translateX(-50%);
}

@media (max-width: 1799px) {
  .contact-section-s2 .contact-image {
    right: -15%;
  }
}

@media (max-width: 1499px) {
  .contact-section-s2 .contact-image {
    right: -20%;
  }
}

@media (max-width: 1399px) {
  .contact-section-s2 .contact-image {
    right: -30%;
  }
}

@media (max-width: 1199px) {
  .contact-section-s2 .contact-image {
    max-width: 600px;
    bottom: 0px;
    right: -40%;
  }
}

@media (max-width: 991px) {
  .contact-section-s2 .contact-image {
    display: none;
  }
}

.contact-section-s2 .contact-image .shape {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -11;
}

.contact-section-s2 .contact-image .round-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

/*7. project-single-page */
.project-single-page .project-wrap {
  padding-right: 105px;
}

@media (max-width: 1399px) {
  .project-single-page .project-wrap {
    padding-right: 0;
  }
}

.project-top-info .section-title {
  text-align: left;
  max-width: 700px;
  margin-bottom: 0;
}

.project-top-info .section-title h2 {
  color: #FD5B38;
  font-size: 20px;
  font-weight: 700;
}

.project-top-info .section-title h3 {
  font-size: 48px;
  font-weight: 500;
  line-height: 55px;
  letter-spacing: -1.44px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .project-top-info .section-title h3 {
    font-size: 30px;
    line-height: 45px;
  }
}

.project-top-info .section-title p {
  color: #696969;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 50px;
}

.project-top-info .theme-btn,
.project-top-info .view-cart-btn {
  text-transform: capitalize;
  font-weight: 600;
}

.project-top-info .theme-btn .rolling-text,
.project-top-info .view-cart-btn .rolling-text {
  line-height: 28px;
}

.project-top-info .project-info ul {
  max-width: 304px;
  width: 100%;
  padding: 50px;
  background: #F0F0F0;
  margin-left: auto;
}

@media (max-width: 991px) {
  .project-top-info .project-info ul {
    margin-right: auto;
    margin-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .project-top-info .project-info ul {
    padding: 30px;
  }
}

.project-top-info .project-info ul li {
  display: block;
  text-align: left;
  margin-bottom: 40px;
}

.project-top-info .project-info ul li:last-child {
  margin-bottom: 0;
}

.project-top-info .project-info ul li h3 {
  color: #121725;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.6px;
  margin: 0;
}

.project-top-info .project-info ul li span {
  color: #696969;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.project-top-info .project-info ul li span a {
  color: #FD5B38;
  text-decoration-line: underline;
}

.project-top-info .image-gallery {
  margin-top: 70px;
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .project-top-info .image-gallery {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.project-top-info .image-gallery ul {
  margin: -12px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .project-top-info .image-gallery ul {
    margin: -5px;
  }
}

.project-top-info .image-gallery ul li {
  flex: 30%;
  max-width: 30%;
  padding: 12px;
}

@media (max-width: 1199px) {
  .project-top-info .image-gallery ul li {
    flex: 50%;
    max-width: 50%;
    padding: 5px;
  }
}

@media (max-width: 991px) {
  .project-top-info .image-gallery ul li {
    flex: 100%;
    max-width: 100%;
    padding: 5px;
  }
}

.project-top-info .image-gallery ul li img {
  width: 100%;
  max-height: 510px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .project-top-info .image-gallery ul li img {
    max-height: 400px;
  }
}

.project-top-info .image-gallery ul li:last-child {
  flex: 70%;
  max-width: 70%;
}

@media (max-width: 1199px) {
  .project-top-info .image-gallery ul li:last-child {
    flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .project-top-info .image-gallery ul li:last-child {
    flex: 100%;
    max-width: 100%;
  }
}

.project-wrap .info-item {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .project-wrap .info-item {
    display: block;
  }
}

.project-wrap .right {
  width: 50%;
}

@media (max-width: 991px) {
  .project-wrap .right {
    width: 100%;
  }
}

.project-wrap .item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 85px;
  border-bottom: 1px solid rgba(2, 6, 38, 0.07);
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .project-wrap .item {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

.project-wrap .item:last-child {
  border-bottom: 1px solid transparent;
  margin-bottom: 0;
}

.project-wrap .item .left {
  width: calc(100% - 520px);
  display: block;
}

@media (max-width: 991px) {
  .project-wrap .item .left {
    width: 100%;
  }
}

.project-wrap .item .right {
  max-width: 520px;
  width: 100%;
}

.project-wrap .item h2 {
  color: #121725;
  font-size: 48px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -1.44px;
  max-width: 380px;
}

@media (max-width: 1199px) {
  .project-wrap .item h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .project-wrap .item h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.project-wrap .item p {
  margin-bottom: 0;
  color: #5E5F63;
}

.project-wrap .item .item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .project-wrap .item .item {
    display: block;
  }
}

.project-wrap .item ul li {
  color: #16171A;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.48px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .project-wrap .item ul li {
    margin-bottom: 0px;
  }
}

.project-wrap .item ul li:last-child {
  margin-bottom: 0;
}

.project-wrap .item ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 15px;
  content: "\e64c";
  font-family: "themify";
  transform: translateY(-50%);
  color: #FD5B38;
}

.project-wrap .right.s2 .item ul li {
  padding-left: 0;
}

.project-wrap .right.s2 .item ul li::before {
  display: none;
}

.project-wrap .right.s2 .item ul li h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.project-wrap .right.s2 .item ul li h3 i {
  width: 25px;
  height: 25px;
  display: inline-block;
  background: #FD5B38;
  border-radius: 100px;
  text-align: center;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .project-wrap .right.s2 .item ul li h3 i {
    width: 20px;
    height: 20px;
    font-size: 15px;
    line-height: 20px;
  }
}

.project-wrap .right.s2 .item ul li span {
  color: #5E5F63;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.project-wrap .p-img img {
  margin-bottom: 10px;
}

.page-chang {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 575px) {
  .page-chang {
    flex-direction: column;
    align-items: center;
  }
}

.page-chang .post a {
  color: #121725;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.66px;
  text-decoration-line: underline;
  display: block;
}

@media (max-width: 991px) {
  .page-chang .post a {
    font-size: 18px;
    line-height: 25px;
  }
}

.page-chang .post .next {
  color: #696969;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.page-chang .post-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
}

@media (max-width: 575px) {
  .page-chang .post-btn {
    margin: 20px 0;
  }
}

.page-chang .next-post {
  text-align: right;
}

.project-info-wrapper .project-single-content-des-right {
  margin-left: auto;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .project-info-wrapper .project-single-content-des-right {
    flex-basis: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .project-info-wrapper .project-single-content-des-right {
    margin-left: 0;
    max-width: 100%;
    margin-top: 20px;
  }
}

.project-info-wrapper .project-single-content-des-right ul {
  list-style: none;
  padding: 50px 30px;
  box-shadow: 0px 2px 10px rgba(14, 29, 44, 0.15);
}

@media (max-width: 575px) {
  .project-info-wrapper .project-single-content-des-right ul {
    padding: 50px 20px;
  }
}

.project-info-wrapper .project-single-content-des-right ul li {
  display: flex;
  padding: 10px 0;
  font-size: 16px;
  color: #000B47;
  font-weight: 600;
  position: relative;
  justify-content: space-between;
  font-weight: 600;
}

.project-info-wrapper .project-single-content-des-right ul li span {
  flex-basis: 60%;
  color: #687693;
  font-weight: 400;
}

.project-info-wrapper .project-single-content-des-right ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-info-wrapper .project-single-content-des-right ul li:first-child {
  padding-top: 0;
}

.project-single-area .project-single-wrap .list-widget ul {
  list-style: none;
}

.project-single-area .project-single-wrap .list-widget ul li {
  padding: 7px 0;
  padding-left: 35px;
  position: relative;
}

.project-single-area .project-single-wrap .list-widget ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background: rgba(35, 63, 214, 0.1);
  content: "\e64c";
  font-family: "themify";
  text-align: center;
  color: #FD5B38;
  font-size: 14px;
}

/* 8.service-single */
.service-single-wrap .title-image {
  margin-bottom: 30px;
}

.service-single-wrap .title-image img {
  width: 100%;
}

.service-single-wrap h2 {
  color: #121725;
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.service-single-wrap h3 {
  color: #121725;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}

.service-single-wrap p {
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  line-height: 30.8px;
  margin-bottom: 40px;
}

.service-single-wrap .video-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

@media (max-width: 1199px) {
  .service-single-wrap .video-wrap {
    display: block;
  }
}

.service-single-wrap .video-img {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.service-single-wrap .video-content {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .service-single-wrap .video-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.service-single-wrap .video-content h2 {
  color: #121725;
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
}

.service-single-wrap .video-content p {
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 20px;
}

.service-single-wrap .video-content ul li {
  display: block;
  color: #5E5F63;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 15px;
}

.service-single-wrap .video-content ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background: #FFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}

.service-single-wrap .video-holder {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-single-wrap .video-holder a {
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  text-align: center;
  line-height: 60px;
  color: #071e93;
  font-size: 30px;
  border-radius: 50%;
  position: relative;
}

.service-single-wrap .video-holder a:before {
  content: " ";
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: -7px;
  animation: pulse 1s infinite;
  z-index: -1;
}

.service-single-wrap .video-holder a i {
  font-size: 20px;
}

.service-single-wrap .quate {
  background: #FFF;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  padding: 15px 70px 15px 25px;
  border-left: 4px solid #071e93;
  margin-bottom: 0;
  color: #121725;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

@media (max-width: 991px) {
  .service-single-wrap .quate {
    padding: 15px 20px 15px 25px;
  }
}

/*==========================================
9. team-single
===========================================*/
.team-pg-area {
  margin: 0 auto;
}

.team-pg-area .team-inner {
  background: #fafbfe;
  position: relative;
  z-index: 1;
}

.team-info-img {
  padding: 40px;
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
  position: relative;
  z-index: 1;
  background: #fff;
}

.team-info-img img {
  width: 100%;
  height: 565px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .team-info-img img {
    height: 100%;
  }
}

.team-info-text h2 {
  font-size: 30px;
  font-weight: 700;
}

.team-info-text span {
  display: block;
  margin-bottom: 20px;
  color: #FD5B38;
}

.team-info-text ul {
  overflow: hidden;
  padding-top: 10px;
  list-style: none;
  display: flex;
  align-items: center;
}

.team-info-text ul li {
  font-size: 22px;
}

@media (max-width: 575px) {
  .team-info-text ul li {
    font-size: 15px;
  }
}

.team-info-text ul li a {
  color: #121725;
  width: 36px;
  height: 36px;
  line-height: 40px;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  border: 1px solid #BCC0CB;
}

.team-info-text ul li a:hover {
  color: #fff;
  background: #FD5B38;
}

.team-info-text ul li+li {
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .team-info-text ul li+li {
    margin-left: 15px;
  }
}

.at-progress {
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px 0;
}

@media (max-width: 991px) {
  .at-progress {
    padding-bottom: 0;
  }
}

.team-info-text {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .team-info-text {
    padding-left: 0;
    margin-top: 30px;
  }
}

.team-info-text h2 {
  text-align: left;
  font-size: 27px;
  font-weight: 700;
  color: #1d2327;
}

.team-info-text .wpo-skill-progress {
  padding: 0;
  box-shadow: none;
  padding-bottom: 30px;
  padding-top: 10px;
}

.team-info-text .wpo-skill-progress .progress {
  height: 10px;
}

.team-info-text .wpo-skill-progress .progress-bar {
  background-color: #BAE900;
}

.team-info-text .wpo-skill-progress .progress-number {
  position: absolute;
  right: 0;
  top: -10px;
  font-size: 18px;
  color: #14212b;
  font-weight: 600;
}

.wpo-progress-single {
  margin-bottom: 30px;
  position: relative;
}

.team-info-wrap ul {
  padding-left: 0;
}

.exprience-wrap p {
  color: #5d5851;
}

.exprience-wrap h2 {
  margin-bottom: 20px;
}

.education-area {
  max-width: 600px;
}

.education-area ul {
  list-style: none;
}

.education-area ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.education-area ul li:before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FD5B38;
  content: "";
}

.ex-wiget {
  padding-top: 60px;
}

.ex-wiget ul {
  list-style: none;
}

.ex-wiget h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
}

.wpo-contact-area .quote-form {
  padding-left: 0;
  margin-left: -10px;
}

.wpo-contact-area button {
  border-radius: 0;
}

.wpo-contact-area button:after {
  display: none;
}

.half-col {
  float: left;
  width: 50%;
  padding: 0 10px 5px;
}

.full-col {
  padding: 0 10px 5px;
}

.exprience-area {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .team-info-img {
    padding: 25px;
  }

  .team-info-img img {
    width: 100%;
  }

  .custom-grid {
    float: left;
    width: 50%;
  }

  .exprience-area {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .half-col {
    float: none;
    width: 100%;
  }
}

@media (max-width: 375px) {
  .custom-grid {
    float: none;
    width: 100%;
  }
}

/*10. contact-page */
.office-info {
  padding-bottom: 120px;
  margin: 0 -10px;
}

@media (max-width: 1199px) {
  .office-info {
    margin: 0px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .office-info {
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}

.office-info .office-info-item {
  text-align: center;
  padding: 40px;
  margin: 0 10px;
  border-radius: 8px;
  border: 1px solid #FFF;
  box-shadow: 0px 15px 10px 0px rgba(194, 185, 185, 0.18);
  overflow: hidden;
  background: transparent;
  position: relative;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .office-info .office-info-item {
    margin: 0px;
    padding: 30px;
  }
}

.office-info .office-info-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #FF7236;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  margin: 0 auto;
}

.office-info .office-info-item .office-info-icon .icon i:before {
  font-size: 50px;
  color: #BAE900;
  transition: all 0.3s ease-in-out;
}

.office-info .office-info-item .office-info-text h2 {
  margin: 20px 0;
  color: #212121;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
  color: #636776;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: all 0.3s ease-in-out;
}

.office-info .office-info-item.active::before,
.office-info .office-info-item:hover::before {
  opacity: 0.95;
  visibility: visible;
}

.office-info .office-info-item.active .office-info-icon .icon i:before,
.office-info .office-info-item:hover .office-info-icon .icon i:before {
  color: #FD5B38;
}

.office-info .office-info-item.active .office-info-text h2,
.office-info .office-info-item:hover .office-info-text h2 {
  color: #fff;
}

.office-info .office-info-item.active .office-info-text p,
.office-info .office-info-item:hover .office-info-text p {
  color: #fff;
}

.contact-left {
  max-width: 518px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 1199px) {
  .contact-left {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .contact-left {
    margin-bottom: 30px;
  }
}

.contact-left h2 {
  color: #0A1222;
  font-size: 44px;
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .contact-left h2 {
    font-size: 35px;
  }
}

.contact-left p {
  color: #636776;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 30px;
}

.contact-left img {
  width: 100%;
}

.contact-right {
  max-width: 484px;
  padding-left: 40px;
}

@media (max-width: 1199px) {
  .contact-right {
    padding-left: 0;
  }
}

.contact-right .title h2 {
  color: #212121;
  font-size: 44px;
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .contact-right .title h2 {
    font-size: 35px;
  }
}

.contact-right .title p {
  color: #636776;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 30px;
}

.contact-form .input-item {
  position: relative;
  margin-bottom: 40px;
}

.contact-form .input-item .fild {
  padding-bottom: 20px;
  padding-left: 30px;
  color: #636776;
  font-size: 18px;
  font-weight: 500;
  border: 0;
  width: 100%;
  height: 45px;
  border-bottom: 1px solid rgba(92, 92, 91, 0.3);
}

.contact-form .input-item .fild:focus-visible {
  outline: 0;
}

.contact-form .input-item label {
  position: absolute;
  left: 0;
  top: -2px;
}

.contact-form .input-item label i {
  color: #212121;
  font-size: 20px;
}

.contact-form .input-item:nth-child(3) label {
  top: 2px;
}

.contact-form .input-item .textarea {
  height: 120px;
}

.contact-form .submitbtn {
  margin-bottom: 0;
  width: 222px;
  height: 63px;
  position: relative;
}

.contact-form .submitbtn .fild {
  padding: 0;
  background: #FD5B38;
  height: 63px;
  line-height: 63px;
  color: #fff;
}

.contact-form .submitbtn label {
  position: absolute;
  left: 30px;
  top: 54%;
  transform: translateY(-50%);
}

.contact-form .submitbtn label i {
  color: #fff;
  font-size: 23px;
}

.contact-form ::-webkit-input-placeholder {
  color: #636776;
}

.contact-form ::-moz-placeholder {
  color: #636776;
}

.contact-form :-ms-input-placeholder {
  color: #636776;
}

.contact-form :-moz-placeholder {
  color: #636776;
}

.map-section .wpo-map {
  height: 410px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  filter: grayscale(100%);
}

.map-section h2.hidden {
  display: none;
}

/*--------------------------------------------------------------
13. wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}

.wpo-blog-pg-section .wpo-blog-content .post {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 40px;
  }
}

.wpo-blog-pg-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta {
    margin-bottom: 30px;
  }
}

.wpo-blog-pg-section .entry-meta ul {
  list-style: none;
  padding-left: 0;
}

.wpo-blog-pg-section .entry-meta ul li {
  font-size: 14px;
  float: left;
  text-transform: uppercase;
  color: #636893;
}

.wpo-blog-pg-section .entry-meta ul li a {
  color: #636893;
  font-weight: 500;
}


.wpo-blog-pg-section .entry-meta ul li a:hover {
  color: #FD5B38;
}

.wpo-blog-pg-section .entry-meta ul li i {
  position: relative;
  top: 2px;
  margin-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li i:before {
  font-size: 14px;
}

.wpo-blog-pg-section .entry-meta ul li+li {
  margin-left: 20px;
  padding-left: 0px;
  position: relative;
}

.wpo-blog-pg-section .entry-meta ul li+li i {
  padding-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li+li+li i {
  top: 1px;
}

.wpo-blog-pg-section .entry-meta ul li+li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  /*content: "";*/
  background: #FD5B38;
  border-radius: 50%;
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li+li:before {
    display: none;
  }
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li+li {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta ul li {
    font-size: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.wpo-blog-pg-section .post h3 {
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 700;
  margin: -0.27em 0 0.7em;
  word-break: break-all;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 20px;
  }
}

.wpo-blog-pg-section .post h3 a {
  color: #232f4b;
}

.wpo-blog-pg-section .post h3 a:hover {
  color: #FD5B38;
}

.wpo-blog-pg-section .post p {
  margin-bottom: 1.5em;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post p {
    font-size: 16px;
  }
}

.wpo-blog-pg-section .post a.read-more {
  color: #232f4b;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #FD5B38;
}

.wpo-blog-pg-section .post a.read-more:hover {
  color: #EBB011;
}

@media (max-width: 767px) {

  .wpo-blog-pg-section .format-standard,
  .wpo-blog-pg-section .format-quote {
    padding: 25px 20px 45px;
  }
}

.wpo-blog-pg-section .format-standard {
  position: relative;
}

.wpo-blog-pg-section .format-gallery {
  position: relative;
}

.wpo-blog-pg-section .format-gallery .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
  background: #FD5B38;
  color: #fff;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 58px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  color: #FD5B38;
  transition: all 0.3s;
  border: 0;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
  left: 15px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  right: 15px;
}

.wpo-blog-pg-section .format-quote {
  text-align: center;
  padding: 80px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .format-quote {
    padding: 40px 20px;
  }
}

.wpo-blog-pg-section .format-quote p {
  margin-bottom: 0;
}

.wpo-blog-pg-section .format-quote:before {
  font-size: 250px;
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
  position: relative;
}

.wpo-blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}

.wpo-blog-pg-section .format-video .video-holder:before {
  content: "";
  background-color: #FD5B38;
  background: linear-gradient(left, #1835c7, #FD5B38);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  opacity: 0.5;
}

.wpo-blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.7;
}

.wpo-blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.wpo-blog-pg-section .format-video .video-holder a:before {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  -webkit-animation: save-the-date-pulse 1s infinite;
  animation: save-the-date-pulse 1s infinite;
  border-radius: 50%;
  z-index: -1;
}

.wpo-blog-pg-section .format-video .video-holder .fi:before {
  font-size: 20px;
  font-size: 1.3333333333rem;
  color: #FD5B38;
}

@media screen and (min-width: 1200px) {
  .blog-pg-left-sidebar .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-fullwidth .wpo-blog-content {
    padding: 0;
  }
}

@-webkit-keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

/*--------------------------------------------------------------
11. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.wpo-blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
}

.wpo-blog-single-section .entry-meta ul {
  list-style: none;
  padding-left: 0;
}

.wpo-blog-single-section .entry-meta ul li {
  font-size: 14px;
  float: left;
  text-transform: uppercase;
  color: #636893;
}

.wpo-blog-single-section .entry-meta ul li a {
  color: #636893;
  font-weight: 500;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
  color: #BAE900;
}

.wpo-blog-single-section .entry-meta ul li i {
  position: relative;
  top: 2px;
  margin-right: 3px;
}

.wpo-blog-single-section .entry-meta ul li i:before {
  font-size: 14px;
}

.wpo-blog-single-section .entry-meta ul li+li {
  margin-left: 20px;
  padding-left: 0px;
  position: relative;
}

.wpo-blog-single-section .entry-meta ul li+li i {
  padding-right: 4px;
}

.wpo-blog-single-section .entry-meta ul li+li+li i {
  position: relative;
  top: 0px;
}

.wpo-blog-single-section .entry-meta ul li+li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  /*content: "";*/
  background: #BAE900;
  border-radius: 50%;
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li+li:before {
    display: none;
  }
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li+li {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta ul li {
    font-size: 12px;
  }
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.wpo-blog-single-section .entry-media img {
  width: 100%;
}

.wpo-blog-single-section .post h2 {
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
  font-weight: 600;
}

.wpo-blog-single-section .post p {
  margin-bottom: 1.5em;
}

.wpo-blog-single-section .post h3 {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h3 {
    font-size: 20px;
  }
}

.wpo-blog-single-section .post blockquote {
  background-color: #f1f3ff;
  color: #233d62;
  font-size: 20px;
  line-height: 1.6em;
  padding: 65px;
  margin-top: 50px;
  margin-bottom: 40px;
  border: 0;
  position: relative;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post blockquote {
    padding: 55px 25px;
  }
}

.wpo-blog-single-section .post blockquote:before {
  font-family: "themify";
  content: "\e67e";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #f4f8fc;
  background: #fff;
  color: #BAE900;
  border-radius: 50%;
  transform: rotate(180deg)
}

.wpo-blog-single-section .post .gallery {
  overflow: hidden;
  margin: 40px -7.5px 0;
}

.wpo-blog-single-section .post .gallery&gt;div {
  width: calc(50% - 15px);
  float: left;
  margin: 0 7.5px 15px;
}

.wpo-blog-single-section .post .gallery img {
  width: 100%;
}

.wpo-blog-single-section .tag-share,
.wpo-blog-single-section .tag-share-s2 {
  margin: 75px 0 0;
  color: #232f4b;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share,
  .wpo-blog-single-section .tag-share-s2 {
    margin-top: 40px;
  }
}

.wpo-blog-single-section .tag-share ul,
.wpo-blog-single-section .tag-share-s2 ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.wpo-blog-single-section .tag-share ul li,
.wpo-blog-single-section .tag-share-s2 ul li {
  float: left;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share ul li,
  .wpo-blog-single-section .tag-share-s2 ul li {
    margin: 2px;
  }
}

.wpo-blog-single-section .tag-share ul&gt;li+li,
.wpo-blog-single-section .tag-share-s2 ul&gt;li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share ul&gt;li+li,
  .wpo-blog-single-section .tag-share-s2 ul&gt;li+li {
    margin: 2px;
  }
}

.wpo-blog-single-section .tag-share .tag,
.wpo-blog-single-section .tag-share-s2 .tag {
  display: flex;
  align-items: center;
}

.wpo-blog-single-section .tag-share .tag&gt;span,
.wpo-blog-single-section .tag-share-s2 .tag&gt;span {
  color: #232f4b;
  font-weight: 600;
  display: inline-block;
  padding-right: 15px;
  text-transform: uppercase;
}

.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
  list-style: none;
  position: relative;
  padding-left: 0;
}

.wpo-blog-single-section .tag-share .tag li,
.wpo-blog-single-section .tag-share-s2 .tag li {
  position: relative;
}

.wpo-blog-single-section .tag-share .tag a,
.wpo-blog-single-section .tag-share-s2 .tag a {
  font-size: 12px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 5px 18px;
  color: #1d2327;
  background: #f5f5f5;
  border-radius: 15px;
  text-transform: uppercase;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share .tag a,
  .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 14px;
  }
}


.wpo-blog-single-section .tag-share-s2 {
  margin: 0;
  border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
  padding: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag ul&gt;li:first-child a {
  color: #3c5ba4;
}

.wpo-blog-single-section .tag-share-s2 .tag ul&gt;li:nth-child(2) a {
  color: #47a0d9;
}

.wpo-blog-single-section .tag-share-s2 .tag ul&gt;li:nth-child(3) a {
  color: #0073b1;
}

.wpo-blog-single-section .tag-share-s2 .tag ul&gt;li:nth-child(4) a {
  color: #9c0343;
}


.wpo-blog-single-section .has-tag-share .tag a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
  padding: 0;
}

.wpo-blog-single-section .has-tag-share .tag ul&gt;li:first-child a {
  color: #3c5ba4;
}

.wpo-blog-single-section .has-tag-share .tag ul&gt;li:nth-child(2) a {
  color: #47a0d9;
}

.wpo-blog-single-section .has-tag-share .tag ul&gt;li:nth-child(3) a {
  color: #0073b1;
}

.wpo-blog-single-section .has-tag-share .tag ul&gt;li:nth-child(4) a {
  color: #9c0343;
}

.wpo-blog-single-section .tag-share .tag ul li a:hover,
.wpo-blog-single-section .tag-share-s2 .tag ul li a:hover {
  color: #fff;
  background: #BAE900;
}

.wpo-blog-single-section .author-box {
  margin: 50px 0 60px;
}

.wpo-blog-single-section .author-box .author-avatar {
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-avatar {
    float: none;
  }
}

.wpo-blog-single-section .author-box .author-avatar img {
  border-radius: 50%;
}

.wpo-blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}

.wpo-blog-single-section .author-box .author-content p {
  margin-bottom: 20px;
}

.wpo-blog-single-section .author-box .author-name {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  color: #232f4b;
}

.wpo-blog-single-section .author-box .social-link {
  display: inline-block;
  list-style: none;
}

.wpo-blog-single-section .author-box .social-link li {
  float: left;
  margin-right: 12px;
}

.wpo-blog-single-section .author-box .social-link a {
  display: block;
  font-size: 13px;
  color: #232f4b;
}

.wpo-blog-single-section .author-box .social-link a:hover {
  color: #BAE900;
}

.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #d8e0f1;
  padding: 0 25px;
}

.wpo-blog-single-section .more-posts&gt;div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts&gt;div {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .more-posts&gt;div&gt;a {
  display: inline-block;
}

.wpo-blog-single-section .more-posts .previous-post,
.wpo-blog-single-section .more-posts .next-post {
  padding: 40px 0;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .more-posts .previous-post,
  .wpo-blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}

.wpo-blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #d8e0f1;
  padding-left: 15px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #d8e0f1;
  }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link:before {
  font-family: "themify";
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}

.wpo-blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link {
  padding-left: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
  font-family: "themify";
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}

.wpo-blog-single-section .more-posts .previous-post&gt;a&gt;span,
.wpo-blog-single-section .more-posts .next-post&gt;a&gt;span {
  display: block;
}

.wpo-blog-single-section .more-posts .post-control-link {
  font-size: 14px;
  color: #6e6e6e;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.wpo-blog-single-section .more-posts .post-name {
  font-size: 18px;
  font-size: 1.2rem;
  color: #232f4b;
  margin: 0.7em 0 0;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #BAE900;
}

.wpo-blog-single-section .comments-area {
  margin-top: 70px;
}

.wpo-blog-single-section .comments-area li&gt;div {
  border-bottom: 1px solid #e4effb;
  padding: 35px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area li&gt;div {
    padding: 35px 25px;
  }
}

.wpo-blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.wpo-blog-single-section .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}

.wpo-blog-single-section .comments-area ol&gt;li:last-child div {
  border-bottom: 0;
}

.wpo-blog-single-section .comments-area .comments-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 1em;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 18px;
  }
}

.wpo-blog-single-section .comments-area li&gt;div {
  position: relative;
}

.wpo-blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 35px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-theme {
    position: static;
  }
}

.wpo-blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.wpo-blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.wpo-blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
}

.wpo-blog-single-section .comments-area .comments-meta h4 {
  font-size: 17px;
  color: #232f4b;
  font-weight: 700;
  margin: 0 0 1em;
}

.wpo-blog-single-section .comments-area .comments-meta h4 span {
  font-size: 15px;
  font-size: 1rem;
  color: #6e6e6e;
  font-weight: normal;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.wpo-blog-single-section .comments-area .comment-reply-link {
  font-size: 14px;
  font-weight: 600;
  color: #232f4b;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #EBB011;
}


.wpo-blog-single-section .comment-respond .comment-reply-title {
  font-size: 24px;
  margin: 0 0 1.1em;
  font-weight: 700;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
  }
}

.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
  background-color: #f9f9f9;
  width: 100%;
  height: 55px;
  border: 1px solid #E3E3E3;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  transition: all 0.3s;
}

.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #BAE900;
}

@media (max-width: 991px) {

  .wpo-blog-single-section .comment-respond form input,
  .wpo-blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}

.wpo-blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}

.wpo-blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}

.wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(1) {
  width: 49%;
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(1) {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(2) {
  width: 49%;
  float: right;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(2) {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .comment-respond .form-submit input {
  max-width: 185px;
  background-color: #000;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  font-size: 18px;
  border-radius: 0px;
  height: 55px;
  font-weight: 500;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
  background-color: #333;
}

@media screen and (min-width: 1200px) {
  .wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}


/* 3.9 sponsor-section */
.sponsor-section .item {
  max-width: 240px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 15px;
}

.sponsor-section .item img {
  filter: grayscale(100%);
  transition: all .3s;
  width: 100%;
}

.sponsor-section .item:hover img {
  filter: grayscale(0);
}

@media (max-width: 575px) {
  .sponsor-section .item {
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
}

.sponsor-section .item img {
  max-width: 180px;
}

.sponsor-section .slick-dots {
  margin-top: 20px;
  bottom: -50px;
}

.sponsor-section button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #fff;
}

.sponsor-section button::before {
  font-size: 0;
}

.sponsor-section .slick-dots li button {
  width: 12px;
  height: 12px;
  background: #fff;
  margin: 0 3px;
}

.sponsor-section .slick-dots li button:before {
  font-size: 0px;
}

.sponsor-section li.slick-active button {
  background-color: #112143;
}


/*==========================================
10. speaker-single
===========================================*/

.speaker-info-img {
  padding: 25px;
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
}

@media (max-width: 991px) {
  .speaker-info-img {
    margin-bottom: 40px;
  }
}

.speaker-info-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 585px;
  min-height: 585px;
}

@media (max-width: 991px) {
  .speaker-info-img img {
    max-height: 100%;
    min-height: auto;
  }
}

.speaker-info-text h2 {
  font-size: 27px;
  font-weight: 600;
  color: #112143;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
  background: #eee;
  padding: 20px;
}

.speaker-info-text {
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
  padding: 68px 50px;
}

@media (max-width: 575px) {
  .speaker-info-text {
    padding: 30px 15px;
  }
}

.speaker-info-text ul {
  padding-left: 0;
}

.speaker-info-text ul li {
  font-size: 17px;
  color: #1d2327;
  font-weight: 600;
  margin-bottom: 22px;
  list-style: none;
}

.speaker-info-text ul li:last-child {
  padding-bottom: 0;
}

.speaker-info-text ul li span {
  font-size: 16px;
  color: #8c8c8c;
  display: inline-block;
  position: relative;
  padding-left: 5px;
  font-weight: 400;
}

.speaker-info-text ul li:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
15. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
  padding-bottom: 0px;
}

.wpo-contact-pg-section .wpo-contact-title {
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-title {
    margin-bottom: 30px;
  }
}

.wpo-contact-pg-section .wpo-contact-title h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 25px;
  }

  .wpo-contact-pg-section .wpo-contact-title p {
    font-size: 17px;
  }
}

.wpo-contact-pg-section .wpo-contact-form-area {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  position: relative;
  z-index: 99;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 20px;
  }
}


.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
  background: #f9f9f9;
  width: 100%;
  height: 50px;
  border: 1px solid #E3E3E3;
  border-radius: 0px;
  box-shadow: none !important;
}

@media (max-width: 991px) {

  .wpo-contact-pg-section form input,
  .wpo-contact-pg-section form select,
  .wpo-contact-pg-section form textarea {
    height: 45px;
  }
}

.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
  border-color: #c6cfff;
  background: #f4f6fa;
}

.wpo-contact-pg-section form textarea {
  height: 180px;
  padding-top: 15px;
}

.wpo-contact-pg-section form .form-field {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 25px;
}

@media (max-width: 600px) {
  .wpo-contact-pg-section form .form-field {
    width: calc(100% - 25px);
    float: none;
  }
}

.wpo-contact-pg-section form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.wpo-contact-pg-section form {
  margin: 0 -15px;
  overflow: hidden;
}

.wpo-contact-pg-section form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form select {
  display: inline-block;
  color: #6d6d6d;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: 1rem;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.wpo-contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section form .submit-area {
    margin-bottom: 0;
  }
}

.wpo-contact-form-wrap {
  padding: 30px;
}

.wpo-contact-pg-section form .submit-area .theme-btn,
.wpo-contact-pg-section form .submit-area .theme-btn-s3,
.wpo-contact-pg-section form .submit-area .theme-btn-s4,
.wpo-contact-pg-section form .submit-area .view-cart-btn {
  border-radius: 30px;
  /*font-family: "Nunito Sans", sans-serif;*/
  font-size: 16px;
  width: auto;
  background: #BAE900;
  height: auto;
  border: 0;
}

.wpo-contact-pg-section form .submit-area .theme-btn:after,
.wpo-contact-pg-section form .submit-area .theme-btn-s3:after,
.wpo-contact-pg-section form .submit-area .theme-btn-s4:after,
.wpo-contact-pg-section form .submit-area .view-cart-btn:after {
  border-radius: 30px;
}

.wpo-contact-pg-section form .wpo-contact-form-wrapper&gt;div {
  width: calc(50% - 25px);
  float: left;
  margin: 0 12px 25px;
}

@media (max-width: 600px) {
  .wpo-contact-pg-section form .wpo-contact-form-wrapper&gt;div {
    width: calc(100% - 25px);
    float: none;
    padding-left: 0;
  }
}

.wpo-contact-pg-section form .wpo-contact-form-wrapper .submit-area {
  width: 100%;
  margin-bottom: 23px;
}

.wpo-contact-pg-section form .wpo-contact-form-wrapper .submit-area .consultar-cf7-btn {
  width: auto;
  display: inline-block;
  padding-right: 50px;
  padding-left: 50px;
  height: 55px;
  background: #db9e30;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.wpo-contact-form-wrapper .wpcf7-spinner {
  display: block;
}

.wpo-contact-pg-section .wpcf7 .ajax-loader {
  display: block;
}

.wpo-contact-pg-section form .wpo-contact-form-wrapper .submit-area .consultar-cf7-btn:hover {
  background: #fd3800;
  transition: .3s;
}

.wpo-contact-pg-section form .wpo-contact-form-wrapper .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.discuss-form .wpo-contact-form {
  background: #252628;
  border-color: #38393C;
}

.discuss-form .wpo-contact-form .form-control {
  border-color: #38393C;
}

.contact-page-section .wpo-contact-form {
  background: #F3F6F6;
  padding: 70px 65px;
  border: 1px solid #38393C;
  background: #1B1C1E;
  margin: 0;
}

@media (max-width: 1399px) {
  .contact-page-section .wpo-contact-form {
    padding: 70px 20px;
    max-width: 100%;
  }
}

.contact-page-section .wpo-contact-form .title h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  line-height: 76px;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 767px) {
  .contact-page-section .wpo-contact-form .title h2 {
    font-size: 40px;
  }
}

.contact-page-section .wpo-contact-form .title span {
  color: #FD5B38;
  font-size: 25px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 40px;
  display: block;
}

@media (max-width: 767px) {
  .contact-page-section .wpo-contact-form .title span {
    font-size: 20px;
    line-height: 30px;
  }
}

.contact-page-section .wpo-contact-form .input-filled {
  margin-bottom: 20px;
}

.contact-page-section .wpo-contact-form .filled,
.contact-page-section .wpo-contact-form textarea {
  width: 100%;
  height: 60px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  padding: 0 20px;
  border: 1px solid #38393C;
  background: #1B1C1E;
}

.contact-page-section .wpo-contact-form .filled:focus-visible,
.contact-page-section .wpo-contact-form textarea:focus-visible {
  outline: 0;
}

.contact-page-section .wpo-contact-form textarea {
  padding: 20px;
  height: 100%;
  height: 184px;
}

.contact-page-section .wpo-contact-form ::-webkit-input-placeholder {
  color: #fff;
}

.contact-page-section .wpo-contact-form ::-moz-placeholder {
  color: #fff;
}

.contact-page-section .wpo-contact-form :-ms-input-placeholder {
  color: #fff;
}

.contact-page-section .wpo-contact-form :-moz-placeholder {
  color: #fff;
}

.contact-page-section .wpo-contact-form .theme-btn {
  text-transform: capitalize;
}

.contact-page-section .contact-info-wrap {
  max-width: 330px;
  margin-left: 20px;
  margin-bottom: 80px;
}

@media (max-width: 1199px) {
  .contact-page-section .contact-info-wrap {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .contact-page-section .contact-info-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.contact-page-section .contact-info-wrap ul {
  display: flex;
  align-content: space-between;
  flex-direction: column;
  padding-left: 0;
}

.contact-page-section .contact-info-wrap .contact-info {
  border: 1px solid #38393C;
  padding: 32px 25px;
}

@media (max-width: 1199px) {
  .contact-page-section .contact-info-wrap .contact-info {
    padding: 30px 15px;
  }
}

.contact-page-section .contact-info-wrap .contact-info .content {
  margin-left: 25px;
}

.contact-page-section .contact-info-wrap .contact-info .content h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 13px;
}

.contact-page-section .contact-info-wrap .contact-info .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
}

/* 3.11 contact-info-section */
.contact-info-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-info-section .ct-shape {
  position: absolute;
  left: -3%;
  top: -20%;
  z-index: -1;
}


.contact-info-section .office-info .col {
  padding: 15px;
}

.contact-page .contact-info-section .office-info .col {
  padding: 15px;
}

@media (max-width: 1399px) {
  .contact-info-section .office-info .col {
    padding: 15px;
  }
}

@media (max-width: 1199px) {
  .contact-info-section .office-info .col {
    padding: 15px;
  }
}

@media (max-width: 1200px) {
  .contact-info-section .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .contact-info-section .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}

.contact-info-section .office-info .office-info-item {
  text-align: center;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
}

.contact-info-section .office-info .office-info-item .office-info-icon .icon {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 85px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}

.contact-info-section .office-info .office-info-item .office-info-icon .icon i {
  line-height: unset;
}

.contact-info-section .office-info .office-info-item .office-info-icon .icon i:before {
  font-size: 35px;
  line-height: unset;
}

.contact-info-section .office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 20px 0;
}

.contact-info-section .office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
}

.contact-info-section .wpo-contact-form-area {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  padding-bottom: 0;
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
}

@media (max-width: 767px) {
  .contact-info-section .wpo-contact-form-area {
    padding: 30px;
    padding-top: 50px;
  }
}

/*--------------------------------------------------------------
12. wpo-faq-page
--------------------------------------------------------------*/
.wpo-faq-section .wpo-section-title {
  text-align: center;
}

.wpo-faq-section .wpo-section-title h2 {
  display: inline-block;
}

.wpo-faq-section .accordion-item {
  border: 0;
  border: 1px solid #e1e1e1;
  padding: 5px 20px;
  margin-bottom: 20px;
}

.wpo-faq-section .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.wpo-faq-section .accordion-item button {
  padding: 20px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  color: #000B47;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.wpo-faq-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  transform: rotate(0deg);
  font-weight: 700;
}

.wpo-faq-section .accordion-item button.collapsed {
  color: #373b3e;
}

.wpo-faq-section .accordion-item button.collapsed::after {
  content: "\e61a";
}

.wpo-faq-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.wpo-faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.wpo-faq-section .accordion-button {
  background: transparent;
  box-shadow: none;
}

.wpo-faq-section .accordion-header {
  margin-top: 0;
}


/*--------------------------------------------------------------
#  shop-pg-section
--------------------------------------------------------------*/

.shop-pg-section .shop-grids {
  margin: 0 -15px;
}

.shop-pg-section .shop-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 991px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 550px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(100% - 30px);
    float: none;
  }
}

.shop-pg-section .grid:hover .cart-details li {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.shop-pg-section .img-cart {
  position: relative;
  overflow: hidden;
  /*    z-index: 1;*/
}

.shop-pg-section .img-cart:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  background: rgba(20, 33, 43, 0.4);
  transition: all 0.3s;
}

.shop-pg-section .img-cart:hover:before {
  height: 100%;
}

.shop-pg-section .cart-details {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 20px;
  text-align: center;
}

.shop-pg-section .cart-details ul {
  overflow: hidden;
  display: inline-block;
  list-style-type: none;
  padding-left: 0;
}

.shop-pg-section .cart-details li {
  float: left;
  margin: 7px;
  position: relative;
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.shop-pg-section .cart-details li:last-child {
  transition: all 0.3s;
}

.shop-pg-section .details {
  text-align: center;
  padding: 30px 15px;
}

.shop-pg-section .details h4 {
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 0.4em;
}

@media (max-width: 991px) {
  .shop-pg-section .details h4 {
    font-size: 20px;
  }
}

.shop-pg-section .details h4 a {
  color: #233D50;
}

.shop-pg-section .details h4 a:hover {
  color: #FD5B38;
}

.shop-pg-section .details del {
  color: #aaa;
  font-weight: 500;
  display: inline-block;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .shop-pg-section .details del {
    font-size: 14px;
  }
}

.shop-pg-section .details .price {
  color: #233D50;
  font-weight: 500;
}

@media (max-width: 991px) {
  .shop-pg-section .details .price {
    font-size: 14px;
  }
}

.shop-pg-section .pagination-wrapper {
  text-align: center;
  clear: both;
}

.shop-pg-section .details ins {
  text-decoration: none;
  font-weight: 600;
}

.shop-pg-section .cart-details .theme-btn {
  background: #d2f34a;
  color: #000;
}

/*--------------------------------------------------------------
16. error-page-section
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}

.error-404-section .error h2 {
  font-size: 150px;
  margin: 0;
}

@media (max-width: 991px) {
  .error-404-section .error h2 {
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error h2 {
    font-size: 100px;
  }
}


.error-404-section .error-message {
  margin-top: 0px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 0px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}

.error-404-section .error-message h3 {
  font-size: 30px;
  font-size: 2rem;
  margin: 0 0 0.8em;
}

.error-404-section .error-message p {
  max-width: 750px;
  margin: auto;
  margin-bottom: 1.8em;
}</pre></body></html>