@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Foxisa – Personal Portfolio HTML5 Template
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
	1.1 Theme Reset Style
	1.2 Global Elements

2. header
	2.1 navigation

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

4. footer-section



6. project-single-page

7.service-single

9. contact-page

10.blog-pg-section

11. blog-single-section

12. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* 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: #73161E;
  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(238, 55, 54, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #73161E;
  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: #73161E;
}

.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;
}

.section-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title h2 {
  position: relative;
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 15px;
    line-height: 40px;
  }
}
@media (max-width: 330px) {
  .section-title h2 {
    font-size: 14px;
  }
}
.section-title h2 span {
  position: absolute;
  left: 0;
  top: 0;
}
.section-title h3 {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 68px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .section-title h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 330px) {
  .section-title h3 {
    font-size: 25px;
  }
}
.section-title p {
  font-size: 18px;
}

.theme-btn, .view-cart-btn {
  background: #73161E;
  color: #000;
  display: inline-block;
  padding: 15px 45px;
  border: 0;
  text-transform: capitalize;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.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 #73161E;
  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: #ec201e;
  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: #e81514;
}
.view-cart-btn.s1 {
  background: #ddd;
}
.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.open-color-icon {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  z-index: 9999;
}

.switcher-open {
  width: 50px;
  height: 50px;
  background: #1B1B1B;
  transition: all 0.3s;
  border: transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.switcher-open i {
  font-size: 24px;
  line-height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.switcher-open i.ti-close {
  display: none;
}

.color-bar {
  width: 250px;
  padding: 20px 20px;
  background: #1B1B1B;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  right: -250px;
}
.color-bar h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #DFDFDF;
  margin-bottom: 20px;
}
.color-bar button {
  padding: 8px 25px;
  border: transparent;
  background: #2B2B2B;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 25px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.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: #73161E;
  -o-box-shadow: 0 0 5px 0 #f26665;
  -ms-box-shadow: 0 0 5px 0 #f26665;
  box-shadow: 0 0 5px 0 #f26665;
}
.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: #f26665;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #73161E;
}

.page-title {
  min-height: 180px;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0F0E0E;
}

.page-title .breadcumb-wrap {
  text-align: left;
}

.page-title .breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}

.page-title .breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  padding-right: 20px;
  color: #fff;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}

.page-title .breadcumb-wrap ol li:last-child {
  padding-right: 0;
}

.page-title .breadcumb-wrap ol li:after {
  content: "\e649";
  font-family: "themify";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

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

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

.page-title .breadcumb-wrap ol li a {
  color: #fff;
  transition: all 0.3s;
}

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

.preloader {
  background-color: #040402;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1111111111;
  overflow: hidden;
}
.preloader::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: url(../images/slider/bg-shap.svg);
  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: 1200px) {
  .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 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  padding-left: 10px;
}
.blog-sidebar .widget h3:before {
  content: "";
  background-color: #73161E;
  width: 2px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}
.blog-sidebar .search-widget {
  background: #161515;
  padding: 40px 30px;
}
@media (max-width: 1200px) {
  .blog-sidebar .search-widget {
    padding: 35px 20px;
  }
}
.blog-sidebar .search-widget form div {
  position: relative;
}
.blog-sidebar .search-widget input {
  background-color: #fff;
  height: 55px;
  font-size: 16px;
  padding: 6px 50px 6px 20px;
  border: 0;
  box-shadow: none;
  transition: all 0.3s;
}
.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  color: #121725;
  background-color: transparent;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  border-radius: 6px;
  transform: translateY(-50%);
}
.blog-sidebar .about-widget {
  text-align: center;
  background: #161515;
  padding: 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px 20px;
  }
}
.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}
.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  width: 100%;
  max-width: 100px;
  height: 100px;
}
.blog-sidebar .about-widget ul {
  list-style: none;
  display: flex;
  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: 42px;
  height: 37px;
  line-height: 37px;
  background-color: transparent;
  color: #7D7E80;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease-in-out;
}
.blog-sidebar .about-widget ul li a:hover {
  background-color: #73161E;
  border: 1px solid transparent;
  color: #fff;
}
.blog-sidebar .about-widget h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.blog-sidebar .about-widget span {
  color: #ddd;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 25px;
  display: block;
}
.blog-sidebar .about-widget p {
  color: #ddd;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 30px;
}
.blog-sidebar .about-widget a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: #121725;
  text-decoration: underline;
}
.blog-sidebar .about-widget a:hover {
  color: #73161E;
}
.blog-sidebar .category-widget {
  background: #161515;
  padding: 40px 30px;
}
@media (max-width: 1200px) {
  .blog-sidebar .category-widget {
    padding: 35px 20px;
  }
}
.blog-sidebar .category-widget ul {
  list-style: none;
}
.blog-sidebar .category-widget ul li {
  font-size: 19px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}
.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 15px;
}
.blog-sidebar .category-widget ul > li + li {
  margin-top: 20px;
}
.blog-sidebar .category-widget ul a {
  display: block;
  font-size: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 12px 15px;
  background: #161515;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.blog-sidebar .category-widget ul a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}
@media (max-width: 767px) {
  .blog-sidebar .category-widget ul a span {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before,
.blog-sidebar .category-widget ul li .active {
  color: #fff;
  background: #73161E;
}
.blog-sidebar .recent-post-widget {
  background: #161515;
  padding: 40px 30px;
}
@media (max-width: 1200px) {
  .blog-sidebar .recent-post-widget {
    padding: 35px 20px;
  }
}
.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}
.blog-sidebar .recent-post-widget .posts > .post + .post {
  margin-top: 15px;
  padding-top: 15px;
}
.blog-sidebar .recent-post-widget .post .img-holder {
  width: 100px;
  float: left;
}
.blog-sidebar .recent-post-widget .post .img-holder img {
  width: 100%;
}
.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 100px);
  float: left;
  padding-left: 20px;
}
.blog-sidebar .recent-post-widget .post h4 {
  margin: 0 0 0.3em;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 28.8px;
}
@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;
  }
}
.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #fff;
}
.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #73161E;
}
.blog-sidebar .recent-post-widget .post .details .date {
  color: #ddd;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}
.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
  color: #73161E;
}
.blog-sidebar .wpo-instagram-widget ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.blog-sidebar .wpo-instagram-widget ul li {
  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 {
  background: #161515;
  padding: 40px 30px;
}
@media (max-width: 1200px) {
  .blog-sidebar .tag-widget {
    padding: 35px 20px;
  }
}
.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: 5px 18px;
  color: #77787B;
  background: #FFF;
}
.blog-sidebar .tag-widget ul li a:hover {
  background: #73161E;
  color: #fff;
}
.blog-sidebar .wpo-contact-widget {
  border: 0;
  background: url(../images/bg-2.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding: 30px 40px;
}
.blog-sidebar .wpo-contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
}
@media (max-width: 1200px) {
  .blog-sidebar .wpo-contact-widget {
    padding: 20px;
  }
}
.blog-sidebar .wpo-contact-widget h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}
.blog-sidebar .wpo-contact-widget h2::before {
  left: 28px;
  background: url(../images/Single-title-shape2.png) no-repeat right center;
}
.blog-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}
.blog-sidebar .wpo-contact-widget a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding-right: 90px;
  position: relative;
  margin-top: 10px;
}
.blog-sidebar .wpo-contact-widget a::before {
  font-family: "themify";
  content: "\e628";
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

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

@media screen and (min-width: 1200px) {
  .blog-single-section.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: #73161E;
  border-color: #73161E;
  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;
  }
}

/* start body bark mode css  */
body {
  transition: all 0.5s ease-in-out;
}

body.light .wpo-site-header .navbar-header .navbar-brand .dark {
  display: inline;
}
body.light .wpo-site-header .navbar-header .navbar-brand .light {
  display: none;
}
body.light .wpo-site-header::before {
  background: #dfdfdf;
}
body.light .wpo-site-header::after {
  background: #dfdfdf;
}
@media screen and (min-width: 992px) {
  body.light .wpo-site-header #navbar > ul > li > a {
    color: #000;
  }
}
@media screen and (min-width: 992px) {
  body.light .wpo-site-header #navbar > ul .sub-menu {
    background-color: #fff;
  }
}
@media screen and (min-width: 992px) {
  body.light .wpo-site-header #navbar > ul > li .sub-menu a {
    color: #000;
  }
}
body.light .wpo-site-header .header-right .cart-toggle-btn img {
  filter: invert(1);
}
body.light .mini-cart-content {
  background: #fff;
}
body.light .mini-cart-content .mini-cart-items h2,
body.light .mini-cart-content .mini-cart-item .contact span,
body.light .mini-cart-content .mini-cart-item .icon,
body.light .hero-section .hero-wrap h3,
body.light .hero-section .hero-wrap h4,
body.light .hero-section .hero-wrap p,
body.light .about-section .about-content h3,
body.light .about-section .about-content .funfact-wrap .item h2 span,
body.light .about-section .about-content ul li strong,
body.light .section-title h3,
body.light .work-section .title h3,
body.light .work-section .work-item h2,
body.light .work-section .work-item p,
body.light .work-section .work-item span,
body.light .project-section .title h3,
body.light .award-section .title h3,
body.light .award-section .content ul li h2 a,
body.light .award-section .content ul li h2 span,
body.light .skill-section .item strong,
body.light .cta-section .cta-content .title h3,
body.light .cta-section .cta-content .title p,
body.light .cta-section .cta-content .cta-widget .widget h3,
body.light .cta-section .cta-content .cta-widget .widget span,
body.light .cta-section .cta-content .cta-widget .widget ul li a,
body.light .blog-section-s2 .title h3,
body.light .blog-section-s2 .blog-card .content span,
body.light .blog-section-s2 .blog-card .content h3 a,
body.light .marquee-section-s2 h2,
body.light .service-single-wrap h2,
body.light .service-single-wrap p,
body.light .service-single-wrap h3,
body.light .service-single-wrap .video-content ul li,
body.light .project-top-info .section-title h2,
body.light .project-top-info .section-title p,
body.light .project-single-page h2,
body.light .project-single-page p,
body.light .project-wrap .item ul li,
body.light .project-single-page h3,
body.light .project-wrap .right.s2 .item ul li span,
body.light .page-chang .post a,
body.light .blog-pg-section .entry-meta ul li a,
body.light .blog-pg-section .post h3 a,
body.light .blog-pg-section .post p,
body.light .blog-pg-section .post a.read-more,
body.light .blog-pg-section .post a.read-more::before,
body.light .blog-sidebar .widget h3,
body.light .blog-sidebar .recent-post-widget .post .details .date,
body.light .blog-sidebar .recent-post-widget .post h4 a,
body.light .page-title .breadcumb-wrap ol li,
body.light .page-title .breadcumb-wrap ol li a,
body.light .blog-single-section .entry-meta ul li a,
body.light .blog-single-section .post h3,
body.light .blog-single-section .post p,
body.light .blog-single-section .post-team-content h3,
body.light .blog-single-section .post-team-content ul li,
body.light .blog-single-section p,
body.light .blog-single-section .tag-share .tag > span,
body.light .blog-single-section .tag-share-s2 .tag > span,
body.light .blog-single-section .comments-area .comments-title,
body.light .blog-single-section .comments-area .comments-meta h4,
body.light .blog-single-section .comments-area .comments-meta h4 span,
body.light .blog-single-section .comments-area .comment-main-area p,
body.light .blog-single-section .comment-respond .comment-reply-title,
body.light .blog-single-section .comment-respond form input,
body.light .blog-single-section .comment-respond form textarea,
body.light .contact-left h2,
body.light .contact-left p,
body.light .contact-right .title h2,
body.light .contact-right .title p,
body.light .contact-form .input-item label i,
body.light .contact-form .input-item .fild,
body.light .office-info .office-info-item .office-info-text h2,
body.light .office-info .office-info-item .office-info-text p,
body.light .office-info .office-info-item .office-info-icon .icon .fi:before,
body.light .error-404-section .error-message h3,
body.light .error-404-section .error-message h4 {
  color: #000;
}
body.light .mini-cart-content .mini-cart-item .icon,
body.light .skill-section .item strong,
body.light .cta-section .cta-content .cta-widget .widget ul li a,
body.light .cta-section .cta-content .cta-widget,
body.light .blog-single-section .comment-respond form input,
body.light .blog-single-section .comment-respond form textarea,
body.light .office-info .office-info-item {
  border: 1px solid #dfdfdf;
}
body.light .about-section .about-content .funfact-wrap .item h2,
body.light .award-section .content ul li {
  border-bottom: 1px solid #dfdfdf;
}
body.light .mini-cart-content .mini-cart-item {
  border-top: 1px solid #dfdfdf;
}
body.light .skill-section .item:hover strong {
  color: #fff;
  border: 1px solid transparent;
}
body.light .service-single-wrap .quate {
  color: #fff;
}
body.light .hero-section,
body.light .about-section,
body.light .wpo-site-header .navigation.sticky-header,
body.light .service-section,
body.light .work-section,
body.light .project-section,
body.light .award-section,
body.light .skill-section,
body.light .cta-section,
body.light .testimonial-section,
body.light .blog-section,
body.light .marquee-section-s2,
body.light .service-single-page,
body.light .project-single-page,
body.light .blog-pg-section,
body.light .blog-single-section,
body.light .contact-page, body.light .error-404-section {
  background: #fff;
}
body.light .blog-sidebar .search-widget,
body.light .blog-sidebar .category-widget,
body.light .blog-sidebar .recent-post-widget,
body.light .blog-sidebar .tag-widget,
body.light .page-title,
body.light .blog-single-section .comment-respond,
body.light .wpo-site-header-s2 {
  background: #f9f9f9;
}
body.light .wpo-site-header-s2 {
  border-bottom: 1px solid #fff;
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/* 2.1 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;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 11;
  padding: 0 70px;
}
@media (max-width: 1699px) {
  .wpo-site-header {
    padding: 0 40px;
  }
}
@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: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}
.wpo-site-header::after {
  position: absolute;
  left: 320px;
  bottom: 0;
  content: "";
  width: 1px;
  height: 96px;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .wpo-site-header::after {
    left: 220px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header::after {
    display: none;
  }
}

.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 > .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 > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #73161E;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
    justify-content: end;
  }
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > 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 > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
.wpo-site-header .container-fluid {
  padding-right: 0;
}

@media (max-width: 991px) {
  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .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 > 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: #73161E;
  }
  .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 > 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 > 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;
  color: #FFF;
  font-size: 15px;
  letter-spacing: 2.55px;
  text-transform: uppercase;
}
@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: 991px) {
  .wpo-site-header .header-right .close-form .theme-btn, .wpo-site-header .header-right .close-form .view-cart-btn {
    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;
  }
}

.wpo-site-header .header-right > div:last-child {
  position: relative;
}
@media (max-width: 767px) {
  .wpo-site-header .header-right > 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 .fi:before {
  font-size: 18px;
}

.wpo-site-header .header-right .cart-toggle-btn {
  line-height: 0.66em;
  width: 100px;
  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);
}

.location {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 38px;
}
@media (max-width: 575px) {
  .location {
    display: none;
  }
}

.mini-cart .cart-count {
  background: #73161E;
  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: #161515;
  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: #A9ADB9;
  margin: 0;
  text-transform: capitalize;
}
.mini-cart-content .mini-cart-items {
  padding: 100px 20px 25px;
}
.mini-cart-content .mini-cart-items h2 {
  padding: 20px 0;
  margin-bottom: 0;
  color: #fff;
}
.mini-cart-content .mini-cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #3A3938;
}
.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 #3A3938;
  color: #fff;
}
.mini-cart-content .mini-cart-item .contact h6 {
  color: #A9ADB9;
  font-size: 15px;
  line-height: 20px;
}
.mini-cart-content .mini-cart-item .contact h6 a {
  color: #A9ADB9;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.mini-cart-content .mini-cart-item .contact span {
  color: #fff;
  font-size: 15px;
}
.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: 1px solid #3A3938;
  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 {
  position: relative;
  overflow: hidden;
}
.mini-cart-content .mini-cart-item-des a {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 600;
  text-align: left;
  color: #fff;
}
.mini-cart-content .mini-cart-item-des a:hover {
  color: #73161E;
}
.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;
}
.mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
  font-size: 12px;
  font-size: 0.8rem;
  color: #444;
  display: block;
  position: absolute;
  right: 0;
  top: 6px;
}
.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%);
}
.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;
}

@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: #73161E;
}

.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;
}
.wpo-site-header .navigation > .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 > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #fff;
}
.wpo-site-header #navbar > ul li a:hover > i,
.wpo-site-header #navbar > ul li a:focus > 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 > ul > li > a {
    padding: 35px 45px;
    display: block;
    position: relative;
    color: #A9ADB9;
    font-size: 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  .wpo-site-header #navbar > ul > li > a > i {
    position: relative;
    bottom: -3px;
    transition: all 0.3s;
  }
  .wpo-site-header #navbar > ul .sub-menu {
    background-color: #0F0E0E;
    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 > ul > li .sub-menu a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: capitalize;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 4px;
    width: 0px;
    height: 2px;
    content: "";
    background: #73161E;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:hover:after, .wpo-site-header #navbar > ul > li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > 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 > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li a {
    display: block;
    font-size: 15px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
  }
  .wpo-site-header #navbar > ul > li a:hover, .wpo-site-header #navbar > ul > li a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul > li a i {
    display: none;
  }
  .wpo-site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #ddd;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a:hover, .wpo-site-header #navbar > ul .menu-item-has-children > a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > 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 > ul .menu-item-has-children > a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > 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: #73161E;
    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: #161515;
    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 > 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: #73161E;
  }
  .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: 380px;
}
.wpo-site-header .navbar-header .navbar-brand .dark {
  display: none;
}
@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 > li {
    float: none;
  }
}

@media (max-width: 440px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 220px;
  }
}
@media (max-width: 370px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 220px;
  }
}
@media (max-width: 1650px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 20px;
  }
}
@media (max-width: 1400px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 10px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > 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 > ul > li > a {
    padding: 15px 30px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header,
  .wpo-header-style-2 {
    z-index: 99999;
  }
}
.wpo-site-header .navigation.sticky-header {
  background: #161515;
  padding: 0 70px;
}
@media (max-width: 1699px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 20px;
  }
}

@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 */
.wpo-site-header-s2 {
  position: unset;
  background: #161515;
}
.wpo-site-header-s2::before {
  display: none;
}
.wpo-site-header-s2::after {
  display: none;
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 hero-section*/
.hero-section {
  background: #161515;
  position: relative;
  height: 921px;
  display: flex;
  align-items: center;
  z-index: 1;
}
@media (max-width: 1399px) {
  .hero-section {
    height: 821px;
  }
}
@media (max-width: 1199px) {
  .hero-section {
    height: 650px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    height: 100%;
    padding: 100px 0 0;
    display: block;
  }
}
.hero-section .hero-wrap {
  max-width: 710px;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .hero-section .hero-wrap {
    padding-top: 50px;
    max-width: 100%;
  }
}
.hero-section .hero-wrap h2 {
  color: #73161E;
  font-size: 16px;
  font-weight: 700;
  line-height: 31px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero-section .hero-wrap h2 {
    font-size: 15px;
  }
}
.hero-section .hero-wrap h3 {
  color: #fff;
  font-size: 105px;
  font-weight: 700;
  letter-spacing: -4.2px;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .hero-section .hero-wrap h3 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-wrap h3 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-section .hero-wrap h3 {
    font-size: 40px;
  }
}
.hero-section .hero-wrap h3 span {
  position: relative;
  color: #73161E;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -4.2px;
  z-index: 1;
}
.hero-section .hero-wrap h3 span .shape {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media (max-width: 757px) {
  .hero-section .hero-wrap h3 span .shape {
    display: none;
  }
}
.hero-section .hero-wrap h4 {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -3.2px;
  text-transform: capitalize;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .hero-section .hero-wrap h4 {
    font-size: 53px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-wrap h4 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero-section .hero-wrap h4 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.hero-section .hero-wrap p {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  max-width: 450px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero-section .hero-wrap p {
    font-size: 15px;
  }
}
.hero-section .imgage {
  max-width: 800px;
  max-width: 810px;
  position: absolute;
  right: 100px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1699px) {
  .hero-section .imgage {
    right: 50px;
  }
}
@media (max-width: 1499px) {
  .hero-section .imgage {
    right: 0px;
  }
}
@media (max-width: 1399px) {
  .hero-section .imgage {
    max-width: 600px;
  }
}
@media (max-width: 1199px) {
  .hero-section .imgage {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .hero-section .imgage {
    position: unset;
    margin: 0 auto;
    margin-top: 30px;
  }
}

@keyframes rotateAniamtion {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes roted {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
4. footer-section
--------------------------------------------------------------*/
.footer-section {
  background: #000;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.footer-section .footer-topbar .wraper {
  max-width: 930px;
  margin: 0 auto;
  padding-bottom: 55px;
}
.footer-section .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 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-topbar h2 {
    font-size: 60px;
    line-height: 84px;
  }
}
@media (max-width: 575px) {
  .footer-section .footer-topbar h2 {
    font-size: 40px;
    line-height: 74px;
  }
}
.footer-section .footer-topbar h2 span {
  font-style: italic;
  font-weight: 400;
  color: #fff;
}
.footer-section .footer-topbar .theme-btn, .footer-section .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 {
    font-size: 18px;
    padding: 20px 54px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-topbar .theme-btn, .footer-section .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 {
  line-height: 28px;
}
.footer-section .footer-topbar .topbar-button {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-section .footer-topbar .topbar-button {
    display: block;
  }
}
.footer-section .footer {
  display: flex;
  align-items: start;
}
@media (max-width: 991px) {
  .footer-section .footer {
    flex-wrap: wrap;
  }
}
.footer-section .item {
  padding: 80px 0;
  border-top: 1px solid #232222;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer-section .item {
    padding: 30px 0;
  }
}
.footer-section .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 {
    display: none;
  }
}
.footer-section .item .shape img {
  width: 120px;
}
.footer-section .item ul li {
  display: block;
}
.footer-section .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 {
  color: #73161E;
}
.footer-section .item ul li + li {
  padding-top: 15px;
}
.footer-section .item:first-child {
  max-width: 575px;
  width: 100%;
  padding-left: 330px;
}
@media (max-width: 1399px) {
  .footer-section .item:first-child {
    padding-left: 150px;
  }
}
@media (max-width: 991px) {
  .footer-section .item:first-child {
    padding-left: 0px;
    max-width: 100%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer-section .item:first-child {
    width: 100%;
  }
}
.footer-section .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) {
    padding-left: 20px;
    max-width: 100%;
    width: 50%;
    border-left: 0;
  }
}
@media (max-width: 767px) {
  .footer-section .item:nth-child(2) {
    padding-left: 0;
    width: 100%;
    padding-top: 0;
    border-top: 0;
    padding-bottom: 30px;
  }
}
.footer-section .item:last-child {
  max-width: 370px;
  width: 100%;
}
@media (max-width: 991px) {
  .footer-section .item:last-child {
    border-top: 0;
    padding-top: 0;
    max-width: 100%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer-section .item:last-child {
    width: 100%;
    padding-bottom: 30px;
  }
}
.footer-section .title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.footer-section .widget-contact .title {
  text-transform: uppercase;
  font-weight: 700;
}
.footer-section .widget-contact h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: lowercase;
}
@media (max-width: 991px) {
  .footer-section .widget-contact h3 {
    font-size: 16px;
  }
}
.footer-section .widget-contact h4 {
  color: #BAE900;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .footer-section .widget-contact h4 {
    font-size: 20px;
  }
}
.footer-section .widget-social {
  margin-top: 40px;
}
.footer-section .widget-social li {
  display: inline !important;
  margin-right: 25px;
}
.footer-section .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 {
  color: #BAE900;
}
.footer-section .widget-newsletter .newsletter .form-fild {
  position: relative;
}
.footer-section .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 {
    max-width: 280px;
    padding: 14px 25px;
  }
}
.footer-section .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 {
  color: #DDDDDD;
}
.footer-section .widget-newsletter .newsletter .form-fild .fild::-moz-placeholder {
  color: #DDDDDD;
}
.footer-section .widget-newsletter .newsletter .form-fild .fild:-ms-input-placeholder {
  color: #DDDDDD;
}
.footer-section .widget-newsletter .newsletter .form-fild .fild:-moz-placeholder {
  color: #DDDDDD;
}
.footer-section .widget-newsletter .newsletter .form-fild button {
  right: 50px;
  top: 6px;
  background: transparent;
  border: 0 solid transparent;
  width: 50px;
  height: 50px;
}
.footer-section .widget-newsletter .newsletter .terms {
  margin-top: 30px;
}
.footer-section .widget-newsletter .newsletter .terms .checkbox-input {
  display: none;
}
.footer-section .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 {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #73161E;
  border-radius: 100px;
  transform: translate(-50%, -50%);
}
.footer-section .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 {
    margin-left: 5px;
    font-size: 13px;
  }
}
.footer-section .footer-lower .row {
  border-top: 1px solid #232222;
  padding: 25px 0;
}
.footer-section .footer-lower .footer-nav-list {
  text-align: end;
}
@media (max-width: 767px) {
  .footer-section .footer-lower .footer-nav-list {
    text-align: left;
  }
}
.footer-section .footer-lower .footer-nav-list ul {
  display: flex;
  justify-content: end;
}
@media (max-width: 767px) {
  .footer-section .footer-lower .footer-nav-list ul {
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: left;
  }
}
.footer-section .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 {
    padding: 12px 10px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-lower .footer-nav-list ul li {
    padding: 5px 7px;
  }
}
.footer-section .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 {
  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 {
  opacity: 1;
  visibility: visible;
}
.footer-section .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 .footer-topbar .wraper {
    padding: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-topbar .wraper {
    display: block;
    text-align: center;
  }
}
.footer-section .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 .footer-topbar h2 {
    width: 100%;
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 757px) {
  .footer-section .footer-topbar h2 {
    font-size: 20px;
  }
}
.footer-section .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 .footer-topbar h2 span {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 757px) {
  .footer-section .footer-topbar h2 span {
    font-size: 20px;
  }
}
.footer-section .footer-topbar h2 .color {
  color: #939393;
  font-style: normal;
  -webkit-text-decoration: underline 2px solid #73161E;
          text-decoration: underline 2px solid #73161E;
  font-size: 42px;
  font-weight: 700;
  line-height: 65px;
}
@media (max-width: 991px) {
  .footer-section .footer-topbar h2 .color {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 757px) {
  .footer-section .footer-topbar h2 .color {
    font-size: 20px;
    line-height: 45px;
  }
}
.footer-section .footer-topbar .topbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 175px;
  max-height: 175px;
  color: #fff;
  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 .footer-topbar .topbar-btn {
    margin: 100px auto;
    max-width: 150px;
    max-height: 150px;
    font-size: 18px;
  }
}
.footer-section .footer-topbar .topbar-btn .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.footer-section .footer {
  padding: 0 60px;
}
@media (max-width: 1399px) {
  .footer-section .footer {
    padding: 0;
  }
}
.footer-section .item:first-child {
  max-width: 575px;
  width: 100%;
  padding-left: 0px;
}
@media (max-width: 991px) {
  .footer-section .item:first-child {
    max-width: 100%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer-section .item:first-child {
    max-width: 100%;
    width: 100%;
  }
}
.footer-section .title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-section .item:nth-child(2) {
  border-left: 1px solid #232222;
  border-right: 1px solid #232222;
}
@media (max-width: 991px) {
  .footer-section .item:nth-child(2) {
    border-left: 0;
    border-right: 0;
  }
}
.footer-section .item:last-child {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .footer-section .item:last-child {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-section .item:last-child {
    padding-left: 0;
  }
}
.footer-section .item:last-child ul li {
  color: #DDD;
  font-size: 16px;
  font-weight: 500;
}
.footer-section .footer-lower .row {
  padding: 45px 60px 40px;
  border-top: 1px solid transparent;
}
@media (max-width: 1399px) {
  .footer-section .footer-lower .row {
    padding: 45px 0 40px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-lower .row {
    padding: 20px 0 30px;
  }
}
.footer-section .footer-lower p {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 1199px) {
  .footer-section .footer-lower p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-lower p {
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer-section .footer-lower .copyright span {
  color: #73161E;
}
.footer-section .widget-social {
  text-align: right;
  margin-top: 0;
}
@media (max-width: 991px) {
  .footer-section .widget-social {
    text-align: center;
  }
}
.footer-section .widget-social li {
  display: inline !important;
  margin: 0 7px;
}
.footer-section .widget-social li:last-child {
  margin-right: 0;
}
.footer-section .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 .widget-social li a:hover {
  color: #73161E;
}
.footer-section .f-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.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 marquee-section */
.marquee-section {
  overflow: hidden;
}
.marquee-section .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #262626;
  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: capitalize;
}
@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.3 about-section */
.about-section {
  background: #0F0E0E;
  overflow: hidden;
}
.about-section .about-image {
  max-width: 570px;
  height: 600px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .about-section .about-image {
    margin-left: -50px;
  }
}
@media (max-width: 1199px) {
  .about-section .about-image {
    margin-left: -120px;
  }
}
@media (max-width: 991px) {
  .about-section .about-image {
    margin-left: 0px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .about-section .about-image {
    height: 500px;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .about-section .about-image {
    height: 400px;
  }
}
.about-section .about-image .left-img {
  max-width: 272px;
  max-height: 288px;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
@media (max-width: 575px) {
  .about-section .about-image .left-img {
    max-width: 172px;
    max-height: 188px;
  }
}
.about-section .about-image .left-img img {
  border-radius: 95px;
  width: 100%;
}
@media (max-width: 575px) {
  .about-section .about-image .left-img img {
    border-radius: 45px;
  }
}
.about-section .about-image .right-img {
  max-width: 272px;
  max-height: 288px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .about-section .about-image .right-img {
    max-width: 172px;
    max-height: 188px;
  }
}
.about-section .about-image .right-img img {
  width: 100%;
  border-radius: 95px;
}
@media (max-width: 575px) {
  .about-section .about-image .right-img img {
    border-radius: 45px;
  }
}
.about-section .about-image .main-image {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 767px) {
  .about-section .about-image .main-image {
    display: none;
  }
}
.about-section .about-image .main-image img {
  width: 100%;
}
.about-section .about-image .shape-round {
  border-radius: 421.203px;
  background: radial-gradient(98.04% 94.31% at 57.14% 9.45%, #FFF 25.72%, #F14948 100%);
  filter: blur(16px);
  width: 383px;
  height: 421.203px;
  transform: rotate(-45deg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .about-section .about-image .shape-round {
    width: 283px;
    height: 321.203px;
  }
}
.about-section .about-image .mid-text {
  position: absolute;
  top: 42%;
  left: 14%;
  transform: rotate(-42.959deg);
}
@media (max-width: 767px) {
  .about-section .about-image .mid-text {
    display: none;
  }
}
.about-section .about-image .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;
}
.about-section .about-image .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: -111px;
  right: 3px;
}
.about-section .about-content h2 {
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-section .about-content h3 {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 55px;
  text-transform: capitalize;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .about-section .about-content h3 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .about-section .about-content h3 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}
.about-section .about-content p {
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 30px;
  margin-bottom: 20px;
}
.about-section .about-content .funfact-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .about-section .about-content .funfact-wrap {
    flex-direction: column;
  }
}
.about-section .about-content .funfact-wrap .item {
  width: 50%;
  padding-right: 40px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .about-section .about-content .funfact-wrap .item {
    width: 100%;
    padding-right: 0px;
  }
}
.about-section .about-content .funfact-wrap .item h2 {
  color: #FFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.29);
  line-height: 35.8px;
}
@media (max-width: 575px) {
  .about-section .about-content .funfact-wrap .item h2 {
    padding-bottom: 20px;
  }
}
.about-section .about-content .funfact-wrap .item h2 span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 70px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .about-section .about-content .funfact-wrap .item h2 span {
    font-size: 40px;
  }
}
.about-section .about-content .funfact-wrap .item h2 .icon {
  top: 10px;
  left: 5px;
  font-size: 40px;
  position: relative;
}
.about-section .about-content .funfact-wrap .item h3 {
  margin-top: 20px;
  color: #757575;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28.8px;
  margin-bottom: 0;
  display: block;
}
@media (max-width: 575px) {
  .about-section .about-content .funfact-wrap .item h3 {
    font-size: 15px;
    margin-top: 10px;
  }
}
.about-section .about-content ul {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .about-section .about-content ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-section .about-content ul li {
  flex-basis: 33.33%;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .about-section .about-content ul li {
    flex-basis: 50%;
  }
}
.about-section .about-content ul li span {
  color: #73161E;
  font-size: 14px;
  font-weight: 700;
  line-height: 28.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.about-section .about-content ul li strong {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 28.8px;
  text-transform: uppercase;
}
.about-section .about-content .theme-btn, .about-section .about-content .view-cart-btn {
  margin-top: 50px;
  color: #fff;
  padding: 19px 65px;
}
@media (max-width: 575px) {
  .about-section .about-content .theme-btn, .about-section .about-content .view-cart-btn {
    padding: 15px 40px;
  }
}

/*3.4 service-section */
.service-section {
  position: relative;
  z-index: 1;
  background: #131313;
  overflow: hidden;
}
.service-section .section-title {
  text-align: left;
  max-width: 685px;
}
@media (max-width: 991px) {
  .service-section .section-title {
    margin-bottom: 20px;
  }
}
.service-section .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.service-section .shape-round {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -11;
}

.service-slider {
  padding: 0 70px;
}
@media (max-width: 1599px) {
  .service-slider {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .service-slider {
    padding: 0 10px;
  }
}
.service-slider .owl-nav {
  display: none;
}
.service-slider .owl-dots {
  text-align: center;
  margin-top: 50px;
}
.service-slider .owl-dot {
  height: 7px;
  width: 65px;
  border: 0;
  border-radius: 100px;
  color: #fff;
  margin: 0 5px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .service-slider .owl-dot {
    width: 30px;
  }
}
.service-slider .owl-dot.active {
  background: #73161E;
}

.service-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-card::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  content: "";
  background: radial-gradient(272.74% 97.55% at 66.64% 8.36%, rgba(0, 7, 31, 0) 0%, rgba(15, 14, 14, 0.91) 99.98%, rgba(15, 14, 14, 0.91) 99.99%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.service-card .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}
.service-card .content {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 340px;
  height: 100%;
  display: flex;
  z-index: 11;
  flex-direction: column;
  justify-content: space-around;
  padding-left: 40px;
  padding-right: 60px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .service-card .content {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 330px;
  }
}
@media (max-width: 767px) {
  .service-card .content {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .service-card .content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.service-card .content::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0F0E0E;
  transition: all 1.5s ease-in-out;
  z-index: -1;
}
.service-card .content .icon {
  transition: all 1.5s ease-in-out;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.service-card .content .text span {
  display: inline-block;
  color: #73161E;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.66px;
}
.service-card .content .text h2 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .service-card .content .text h2 {
    margin-bottom: 10px;
  }
}
.service-card .content .text h2 a {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
  transition: all 1.5s ease-in-out;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
}
.service-card .content .text p {
  transition: all 1.5s ease-in-out;
  color: #5E5F63;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.service-card .content .text .service-single-link {
  width: 76px;
  height: 47px;
  line-height: 47px;
  border-radius: 23.5px;
  background: #73161E;
  display: block;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .service-card .content .text .service-single-link {
    margin-top: 0px;
    width: 50px;
    height: 30px;
    line-height: 47px;
  }
}
.service-card .content .text .service-single-link i {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  position: absolute;
  left: 70px;
}
@media (max-width: 991px) {
  .service-card .content .text .service-single-link i {
    left: 60px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .service-card .content .text .service-single-link i {
    left: 28px;
    font-size: 13px;
    line-height: 32px;
  }
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover .content i {
  opacity: 0;
  visibility: hidden;
}
.service-card:hover .content::before {
  width: 0;
}
.service-card:hover .content .text h2 a {
  color: #fff;
}
.service-card:hover .content .text p {
  color: #C2C2C2;
}
.service-card:hover .content .text .service-single-link i {
  opacity: 1;
  visibility: visible;
}

/*3.5 partners */
.partners-section {
  background: #0F0E0E;
}
.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.6 work-section */
.work-section {
  background: #0F0E0E;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.work-section::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 135px;
  width: 100%;
  border-bottom: 1.5px dashed #444242;
  z-index: -1;
}
@media (max-width: 991px) {
  .work-section::before {
    bottom: 105px;
  }
}
@media (max-width: 767px) {
  .work-section::before {
    display: none;
  }
}
.work-section .title {
  margin-bottom: 70px;
}
.work-section .title h2 {
  color: #121725;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .work-section .title h2 {
    font-size: 15px;
  }
}
.work-section .title h2 span {
  display: inline-block;
}
.work-section .title h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .work-section .title h3 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .work-section .title h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.work-section .title .work-btn {
  text-align: end;
}
@media (max-width: 991px) {
  .work-section .title .work-btn {
    text-align: left;
    margin-top: 20px;
  }
}
.work-section .title .work-btn .theme-btn, .work-section .title .work-btn .view-cart-btn {
  padding: 15px 60px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.55px;
}
@media (max-width: 1199px) {
  .work-section .title .work-btn .theme-btn, .work-section .title .work-btn .view-cart-btn {
    padding: 12px 40px;
  }
}
.work-section .owl-carousel .owl-stage-outer {
  margin-right: -375px;
}
@media (max-width: 991px) {
  .work-section .owl-carousel .owl-stage-outer {
    margin-right: 0;
  }
}
.work-section .owl-nav {
  display: none;
}
.work-section .owl-dots {
  display: none;
}
.work-section .work-item {
  max-width: 430px;
  position: relative;
}
.work-section .work-item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 2px;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  border: 1px solid #73161E;
}
.work-section .work-item::after {
  position: absolute;
  content: "";
  left: 10px;
  bottom: 12px;
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: #73161E;
}
.work-section .work-item span {
  color: #FDFDFD;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}
.work-section .work-item span img {
  width: 14px;
  height: 14px;
  display: inline-block;
}
.work-section .work-item h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 47px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .work-section .work-item h2 {
    font-size: 20px;
  }
}
.work-section .work-item .color {
  color: #73161E;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
  display: block;
}
.work-section .work-item p {
  color: #DDD;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 99px;
  max-width: 316px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .work-section .work-item p {
    padding-bottom: 50px;
  }
}

/*3.7 project-section */
.project-section,
.project-section-s2 {
  background: #0F0E0E;
  overflow: hidden;
}
.project-section .title,
.project-section-s2 .title {
  max-width: 633px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .project-section .title,
  .project-section-s2 .title {
    margin-bottom: 40px;
  }
}
.project-section .title h2,
.project-section-s2 .title h2 {
  color: #121725;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .project-section .title h2,
  .project-section-s2 .title h2 {
    font-size: 15px;
  }
}
.project-section .title h2 span,
.project-section-s2 .title h2 span {
  display: inline-block;
}
.project-section .title h3,
.project-section-s2 .title h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .project-section .title h3,
  .project-section-s2 .title h3 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .project-section .title h3,
  .project-section-s2 .title h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.project-section .project-wrapper,
.project-section-s2 .project-wrapper {
  overflow: hidden;
}
.project-card {
  position: relative;
}
.project-card .image {
  position: relative;
}
.project-card .image::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(172deg, rgba(0, 0, 0, 0) -5.38%, rgba(0, 0, 0, 0.12) 43.86%, #000 102.74%);
}
.project-card .image img {
  width: 100%;
}
@media (max-width: 767px) {
  .project-card .image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
}
.project-card .content {
  max-width: 1160px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .project-card .content {
    padding: 0 20px;
    bottom: 0px;
  }
}
@media (max-width: 767px) {
  .project-card .content {
    display: block;
  }
}
.project-card .text h2 a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 49px;
}
@media (max-width: 991px) {
  .project-card .text h2 a {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .project-card .text h2 a {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}
.project-card .text span {
  text-transform: capitalize;
  display: inline-block;
  color: #73161E;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .project-card .text span {
    font-size: 15px;
    line-height: 25px;
  }
}
.project-card .slingle-page-link {
  width: 78px;
  height: 78px;
  line-height: 78px;
  background: #554A4A;
  text-align: center;
  border-radius: 100px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  font-size: 20px;
}
@media (max-width: 991px) {
  .project-card .slingle-page-link {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    display: block;
  }
}

/*3.8 text-animation */
.text-animation {
  padding: 54px 0 60px !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
  border-right: 0;
  overflow: hidden;
  background: #0F0E0E;
}
.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 {
  margin: 0;
  padding-left: 40px;
  color: #73161E;
  font-size: 75px;
  font-weight: 700;
  line-height: 90px;
  text-transform: uppercase;
}
@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;
  }
}
.text-animation .text-slider h2 span {
  display: inline-block;
}
.text-animation .text-slider .text-stroke-color {
  color: transparent;
  font-style: normal;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.43);
}

/*3.9 skill-section */
.skill-section {
  background: #0F0E0E;
}
.skill-section .section-title {
  text-align: center;
}
.skill-section .skill-wraper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1199px) {
  .skill-section .skill-wraper {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .skill-section .skill-wraper {
    flex-wrap: wrap;
  }
}
.skill-section .item {
  flex-basis: 16.66%;
  text-align: center;
}
@media (max-width: 991px) {
  .skill-section .item {
    flex-basis: 32.33%;
  }
}
@media (max-width: 767px) {
  .skill-section .item {
    flex-basis: 30.33%;
  }
}
@media (max-width: 575px) {
  .skill-section .item {
    flex-basis: 100%;
  }
}
.skill-section .item .icon {
  width: 100%;
  border-radius: 148px;
  max-width: 176px;
  min-height: 233px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, #292B24 0%, #000 100%);
}
@media (max-width: 991px) {
  .skill-section .item .icon {
    margin: 0 auto;
  }
}
.skill-section .item h2 {
  margin-top: 20px;
  margin-bottom: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 500;
}
.skill-section .item h2 span {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.skill-section .item strong {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  border-radius: 148px;
  background: transparent;
  border-radius: 148px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  max-height: 46px;
  line-height: 46px;
  display: block;
  margin-top: 25px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .skill-section .item strong {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .skill-section .item strong {
    max-width: 158px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.skill-section .item:hover strong {
  background: #171717;
  border: 1px solid transparent;
}

/*3.10 cta-section */
.cta-section {
  background: #0F0E0E;
}
.cta-section .cta-content {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cta-section .cta-content {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.cta-section .cta-content .title {
  margin-bottom: 60px;
}
.cta-section .cta-content .title h2 {
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
.cta-section .cta-content .title h3 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 74px;
}
@media (max-width: 757px) {
  .cta-section .cta-content .title h3 {
    font-size: 40px;
    line-height: 45px;
  }
}
.cta-section .cta-content .title h3 span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: italic;
  font-weight: 400;
}
.cta-section .cta-content .title p {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  max-width: 518px;
  margin-bottom: 0;
}
.cta-section .cta-content .cta-widget {
  display: flex;
  flex-wrap: wrap;
  max-width: 572px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 60px;
}
@media (max-width: 1199px) {
  .cta-section .cta-content .cta-widget {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .cta-section .cta-content .cta-widget {
    padding: 20px 20px;
  }
}
.cta-section .cta-content .cta-widget .widget {
  flex-basis: 50%;
  margin-bottom: 67px;
}
@media (max-width: 575px) {
  .cta-section .cta-content .cta-widget .widget {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.cta-section .cta-content .cta-widget .widget:nth-child(3) {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .cta-section .cta-content .cta-widget .widget:nth-child(3) {
    margin-bottom: 20px;
  }
}
.cta-section .cta-content .cta-widget .widget:last-child {
  margin-bottom: 0;
}
.cta-section .cta-content .cta-widget .widget h3 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .cta-section .cta-content .cta-widget .widget h3 {
    font-size: 18px;
    line-height: 25px;
  }
}
.cta-section .cta-content .cta-widget .widget span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 575px) {
  .cta-section .cta-content .cta-widget .widget span {
    font-size: 15px;
    line-height: 25px;
  }
}
.cta-section .cta-content .cta-widget .widget span span {
  color: #73161E;
}
.cta-section .cta-content .cta-widget .widget ul {
  margin-left: -7px;
}
.cta-section .cta-content .cta-widget .widget ul li {
  display: inline !important;
  margin: 0 7px;
}
.cta-section .cta-content .cta-widget .widget ul 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;
}
.cta-section .cta-content .cta-widget .widget ul li a:hover {
  color: #73161E;
}
.cta-section .cta-from {
  background: #211F1F;
  max-width: 527px;
  padding: 50px 35px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .cta-section .cta-from {
    padding: 40px 20px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-from {
    margin-left: 0;
  }
}
.cta-section .cta-from h2 {
  color: #FFF;
  font-size: 48px;
  font-weight: 600;
  line-height: 54px;
  margin-bottom: 50px;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cta-section .cta-from h2 {
    padding: 0;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .cta-section .cta-from h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
.cta-section .cta-from .from {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cta-section .cta-from .from {
    padding: 0;
  }
}
.cta-section .cta-from input,
.cta-section .cta-from textarea {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  border-bottom: 1px solid rgba(236, 236, 236, 0.06);
  width: 100%;
  padding: 20px;
  padding-left: 0;
  background: transparent;
  margin-bottom: 40px;
  display: block;
}
@media (max-width: 991px) {
  .cta-section .cta-from input,
  .cta-section .cta-from textarea {
    margin-bottom: 20px;
  }
}
.cta-section .cta-from input::-moz-placeholder, .cta-section .cta-from textarea::-moz-placeholder {
  color: #fff;
}
.cta-section .cta-from input::placeholder,
.cta-section .cta-from textarea::placeholder {
  color: #fff;
}
.cta-section .cta-from input:focus,
.cta-section .cta-from textarea:focus {
  outline: 0;
}
.cta-section .cta-from textarea {
  margin-top: 40px;
}
.cta-section .cta-from button {
  width: 100%;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.38px;
  text-transform: uppercase;
  padding: 25px 0;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .cta-section .cta-from button {
    padding: 15px 0;
    margin-top: 20px;
  }
}
.cta-section .cta-from button i {
  padding-left: 10px;
}
.cta-section .cta-from-wrap {
  position: relative;
  z-index: 1;
}
.cta-section .shape {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 575px) {
  .cta-section .shape {
    display: none;
  }
}

/*3.11 award-section */
.award-section {
  overflow: hidden;
  background: #0F0E0E;
  position: relative;
  z-index: 1;
}
.award-section .bg-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  z-index: -11;
  transform: translate(-50%, -50%);
}
.award-section .title {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .award-section .title {
    margin-bottom: 60px;
  }
}
@media (max-width: 757px) {
  .award-section .title {
    margin-bottom: 40px;
  }
}
.award-section .title h2 {
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .award-section .title h2 {
    font-size: 16px;
  }
}
.award-section .title h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
}
@media (max-width: 991px) {
  .award-section .title h3 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .award-section .title h3 {
    font-size: 35px;
    line-height: 55px;
  }
}
.award-section .image {
  position: relative;
  max-width: 493px;
  height: 556px;
  z-index: 1;
}
@media (max-width: 1399px) {
  .award-section .image {
    margin-left: -50px;
  }
}
@media (max-width: 1199px) {
  .award-section .image {
    margin-left: -115px;
  }
}
@media (max-width: 991px) {
  .award-section .image {
    margin-left: 0;
    margin-bottom: 50px;
  }
}
.award-section .image .image-1 {
  max-width: 238px;
  max-height: 267px;
  position: absolute;
  left: 0;
  top: 60px;
}
.award-section .image .image-1 img {
  width: 100%;
  border-radius: 25px;
}
.award-section .image .image-2 {
  max-width: 238px;
  max-height: 205px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.award-section .image .image-2 img {
  width: 100%;
  border-radius: 25px;
}
.award-section .image .image-3 {
  max-width: 238px;
  max-height: 392px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 575px) {
  .award-section .image .image-3 {
    display: none;
  }
}
.award-section .image .image-3 img {
  width: 100%;
  border-radius: 25px;
}
.award-section .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 {
    display: none;
  }
}
.award-section .image .image-4 img {
  width: 100%;
}
.award-section .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(255, 255, 255, 0.38);
  transform: rotate(-38.849deg);
  z-index: -1;
  margin-bottom: 0;
  position: absolute;
  top: 40%;
  left: -80px;
}
.award-section .content ul {
  list-style: none;
  padding-left: 70px;
}
@media (max-width: 1199px) {
  .award-section .content ul {
    padding-left: 0;
  }
}
.award-section .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 {
  color: #73161E;
  font-size: 15px;
  font-weight: 600;
  line-height: 38px;
}
.award-section .content ul li h2 a {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .award-section .content ul li h2 a {
    font-size: 25px;
  }
}
@media (max-width: 425px) {
  .award-section .content ul li h2 a {
    font-size: 20px;
  }
}
.award-section .content ul li h2 span {
  color: #fff;
  letter-spacing: 3.64px;
  text-transform: lowercase;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .award-section .content ul li h2 span {
    font-size: 25px;
  }
}
@media (max-width: 425px) {
  .award-section .content ul li h2 span {
    font-size: 20px;
  }
}
.award-section .content ul li i {
  width: 48px;
  height: 48px;
  color: #73161E;
  display: block;
  font-size: 30px;
  padding-top: 30px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 425px) {
  .award-section .content ul li i {
    font-size: 20px;
    padding-top: 15px;
    padding-left: 10px;
  }
}
.award-section .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 .content ul li .image-item img {
  border-radius: 9px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.13);
}
.award-section .content ul li:hover h2 a, .award-section .content ul li.active h2 a {
  text-decoration: underline;
}
.award-section .content ul li:hover .image-item, .award-section .content ul li.active .image-item {
  opacity: 1;
  visibility: visible;
}

/* 3.12 testimonial-section */
.testimonial-section {
  background: #0F0E0E;
}
.testimonial-section .testimonial-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 177px 0 153px;
  margin: 0 93px;
  border-radius: 16px;
  background: #211F1F;
}
@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%;
  border-radius: 19px;
}
.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: #73161E;
}
.testimonial-section .slick-arrow:hover::after {
  color: #fff;
}

.testimonial-content {
  margin-left: 65px;
}
@media (max-width: 1399px) {
  .testimonial-content {
    margin-left: 0;
  }
}
.testimonial-content h2 {
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-content h3 {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .testimonial-content h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.testimonial-content .item p {
  color: #F4F4F4;
  font-size: 24px;
  font-weight: 400;
  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: 500;
  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: 400;
}

/*3.13 blog-section */
.blog-section {
  overflow: hidden;
  background: #0F0E0E;
  position: relative;
  z-index: 1;
}
.blog-section .title {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .blog-section .title {
    margin-bottom: 60px;
  }
}
@media (max-width: 757px) {
  .blog-section .title {
    margin-bottom: 40px;
  }
}
.blog-section .title h2 {
  color: #73161E;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .blog-section .title h2 {
    font-size: 16px;
  }
}
.blog-section .title h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
}
@media (max-width: 991px) {
  .blog-section .title h3 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .blog-section .title h3 {
    font-size: 35px;
    line-height: 55px;
  }
}
.blog-section .blog-card {
  display: block;
  padding: 0;
  background: transparent;
  margin-bottom: 30px;
}
.blog-section .blog-card .image {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.blog-section .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 .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 .blog-card .content {
  padding: 0;
  padding-top: 10px;
}
.blog-section .blog-card .content span {
  color: #ddd;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
}
.blog-section .blog-card .content h3 {
  margin-bottom: 10px;
  display: block;
}
.blog-section .blog-card .content h3 a {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .blog-section .blog-card .content h3 a {
    font-size: 17px;
  }
}
.blog-section .blog-card .content h3 a:hover {
  color: #d42f2f;
}
.blog-section .blog-card .content a {
  color: #73161E;
}
.blog-section .blog-card .content a span {
  color: #ddd;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  line-height: 29px;
}
.blog-section .blog-card:hover .image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.blog-section .blog-card:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

/*3.14 marquee-section-s2 */
.marquee-section-s2,
.text-animation {
  padding-top: 70px;
  padding-bottom: 150px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .marquee-section-s2,
  .text-animation {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.marquee-section-s2 .marquee_container,
.text-animation .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
}
.marquee-section-s2 .marquee,
.text-animation .marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-section-s2 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,
  .text-animation h2 {
    font-size: 60px;
    line-height: 70px;
  }
}
.marquee-section-s2 h2 span,
.text-animation h2 span {
  color: #73161E;
}
.marquee-section-s2 h2 i,
.text-animation h2 i {
  color: #73161E;
  position: relative;
  bottom: -14px;
}

.marquee-section-s2 {
  padding-top: 0;
  padding-bottom: 70px;
  overflow: hidden;
  background: #0F0E0E;
}
@media (max-width: 991px) {
  .marquee-section-s2 .marquee_container {
    padding: 0;
  }
}
.marquee-section-s2 .marquee {
  animation: marquee 50s linear infinite;
}
.marquee-section-s2 h2 {
  display: inline-block;
  color: #fff;
  margin-bottom: 0;
  font-size: 100px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .marquee-section-s2 h2 {
    font-size: 60px;
    line-height: 70px;
  }
}
.marquee-section-s2 h2 span {
  font-size: 100px;
  font-weight: 400;
  line-height: 69px;
  color: #73161E;
}
@media (max-width: 991px) {
  .marquee-section-s2 h2 span {
    font-size: 60px;
    line-height: 70px;
  }
}

@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);
  }
}
/*6. project-single-page */
.project-single-page {
  background: #0F0E0E;
}
.project-single-page .project-wrap {
  padding-right: 105px;
}
@media (max-width: 1399px) {
  .project-single-page .project-wrap {
    padding-right: 0;
  }
}
.project-single-page p {
  color: #ddd;
}
.project-single-page h2,
.project-single-page h3 {
  color: #fff;
}

.project-top-info .section-title {
  text-align: left;
  max-width: 700px;
  margin-bottom: 0;
}
.project-top-info .section-title h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  padding: 0;
}
.project-top-info .section-title h3 {
  font-size: 48px;
  font-weight: 500;
  line-height: 55px;
  letter-spacing: -1.44px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: none;
}
@media (max-width: 767px) {
  .project-top-info .section-title h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
.project-top-info .section-title p {
  color: #ddd;
  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: #161515;
  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: #fff;
  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: #fff;
  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: #ddd;
}
.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: #ddd;
  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: #73161E;
}
.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: #73161E;
  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: #ddd;
  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: #fff;
  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: #ddd;
  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;
}

/* 7.service-single */
.service-single-page {
  background: #0F0E0E;
}

.service-single-wrap .title-image {
  margin-bottom: 30px;
}
.service-single-wrap .title-image img {
  width: 100%;
}
.service-single-wrap h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.service-single-wrap h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}
.service-single-wrap p {
  color: #DDD;
  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: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
}
.service-single-wrap .video-content p {
  color: #DDD;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 20px;
}
.service-single-wrap .video-content ul li {
  display: block;
  color: #DDD;
  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: #73161E;
  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: #565656;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  padding: 15px 70px 15px 25px;
  border-left: 4px solid #73161E;
  margin-bottom: 0;
  color: #DDD;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 991px) {
  .service-single-wrap .quate {
    padding: 15px 20px 15px 25px;
  }
}

/*9. contact-page */
.contact-page {
  background: #0F0E0E;
}

.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 rgba(255, 255, 255, 0.07);
  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 .fi:before {
  font-size: 50px;
  color: #73161E;
  transition: all 0.3s ease-in-out;
}
.office-info .office-info-item .office-info-text h2 {
  margin: 20px 0;
  color: #fff;
  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: #ddd;
  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 .fi:before, .office-info .office-info-item:hover .office-info-icon .icon .fi:before {
  color: #fff;
}
.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: #fff;
  font-size: 44px;
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .contact-left h2 {
    font-size: 35px;
  }
}
.contact-left p {
  color: #ddd;
  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: #fff;
  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: #ddd;
  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: #fff;
  font-size: 18px;
  font-weight: 400;
  border: 0;
  width: 100%;
  height: 45px;
  border-bottom: 1px solid rgba(92, 92, 91, 0.3);
  background: transparent;
}
.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: #fff;
  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: #73161E;
  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;
}

/*--------------------------------------------------------------
10.blog-pg-section
--------------------------------------------------------------*/
.blog-pg-section {
  background: #0F0E0E;
}
.blog-pg-section .blog-content .post {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .blog-pg-section .blog-content .post {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .blog-pg-section .blog-content .post {
    margin-bottom: 40px;
  }
}
.blog-pg-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}
@media (max-width: 767px) {
  .blog-pg-section .entry-meta {
    margin: 25px 0;
  }
}
.blog-pg-section .entry-meta ul {
  list-style: none;
}
.blog-pg-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  float: left;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
}
.blog-pg-section .entry-meta ul li a {
  color: #fff;
}
.blog-pg-section .entry-meta ul li a:hover {
  color: #73161E;
}
.blog-pg-section .entry-meta ul li i {
  position: relative;
  margin-right: 3px;
}
.blog-pg-section .entry-meta ul li i:before {
  font-size: 16px;
  line-height: 15px;
  color: #565656;
}
.blog-pg-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}
.blog-pg-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #ddd;
  width: 9px;
  height: 1px;
}
@media (max-width: 440px) {
  .blog-pg-section .entry-meta ul li + li:before {
    display: none;
  }
}
@media (max-width: 440px) {
  .blog-pg-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .blog-pg-section .entry-meta ul li {
    font-size: 12px;
  }
}
@media (max-width: 440px) {
  .blog-pg-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}
.blog-pg-section .post h3 {
  font-size: 34px;
  line-height: 1.2em;
  font-weight: 600;
  margin: -0.27em 0 0.7em;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 991px) {
  .blog-pg-section .post h3 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .blog-pg-section .post h3 {
    font-size: 22px;
  }
}
.blog-pg-section .post h3 a {
  color: #fff;
}
.blog-pg-section .post h3 a:hover {
  color: #73161E;
}
.blog-pg-section .post p {
  margin-bottom: 2em;
  color: #ddd;
}
@media (max-width: 991px) {
  .blog-pg-section .post p {
    font-size: 16px;
  }
}
.blog-pg-section .post a.read-more {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  padding-right: 50px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.blog-pg-section .post a.read-more::before {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "themify";
  content: "\e628";
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.blog-pg-section .entry-media {
  position: relative;
}
.blog-pg-section .entry-media span {
  position: absolute;
  left: 16px;
  top: 16px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  background: #0F0E0E;
  border-radius: 10px;
  display: inline-block;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .blog-pg-section .entry-media span {
    font-size: 16px;
    line-height: 24px;
  }
}
.blog-pg-section .entry-media img {
  width: 100%;
}

@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 .blog-content {
    padding: 0;
  }
}
@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. blog-single-section
--------------------------------------------------------------*/
.blog-single-section {
  background: #0F0E0E;
  /*** tag-share ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}
.blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}
@media (max-width: 767px) {
  .blog-single-section .entry-meta {
    margin: 25px 0;
  }
}
.blog-single-section .entry-meta ul {
  list-style: none;
}
.blog-single-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  float: left;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
}
.blog-single-section .entry-meta ul li a {
  color: #fff;
}
.blog-single-section .entry-meta ul li a:hover {
  color: #73161E;
}
.blog-single-section .entry-meta ul li i {
  position: relative;
  margin-right: 3px;
}
.blog-single-section .entry-meta ul li i:before {
  font-size: 16px;
  line-height: 15px;
  color: #73161E;
}
.blog-single-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}
.blog-single-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #676A7D;
  width: 9px;
  height: 1px;
}
@media (max-width: 440px) {
  .blog-single-section .entry-meta ul li + li:before {
    display: none;
  }
}
@media (max-width: 440px) {
  .blog-single-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .blog-single-section .entry-meta ul li {
    font-size: 12px;
  }
}
@media (max-width: 440px) {
  .blog-single-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}
.blog-single-section .post h3 {
  font-size: 34px;
  line-height: 1.2em;
  font-weight: 600;
  margin: -0.27em 0 0.7em;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
}
@media (max-width: 991px) {
  .blog-single-section .post h3 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .blog-single-section .post h3 {
    font-size: 22px;
  }
}
.blog-single-section .post h3 {
  color: #fff;
}
.blog-single-section .post p {
  margin-bottom: 2em;
  color: #ddd;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 991px) {
  .blog-single-section .post p {
    font-size: 16px;
  }
}
.blog-single-section .entry-media {
  position: relative;
}
.blog-single-section .entry-media span {
  position: absolute;
  left: 16px;
  top: 16px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  background: #73161E;
  border-radius: 10px;
  display: inline-block;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .blog-single-section .entry-media span {
    font-size: 16px;
    line-height: 24px;
  }
}
.blog-single-section .entry-media img {
  width: 100%;
}
.blog-single-section blockquote {
  background-color: #F4F6F8;
  padding: 40px 34px;
  margin-top: 60px;
  margin-bottom: 40px;
  border: 0;
  position: relative;
  color: #16171A;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 43px;
}
@media (max-width: 767px) {
  .blog-single-section blockquote {
    padding: 35px 25px;
    font-size: 18px;
    line-height: 30px;
  }
}
.blog-single-section blockquote:before {
  font-family: "themify";
  content: "\e67f";
  font-size: 25px;
  color: #73161E;
  position: absolute;
  right: 40px;
  bottom: 30px;
}
.blog-single-section blockquote span {
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  display: block;
  position: relative;
  padding-left: 30px;
}
.blog-single-section blockquote span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 2px;
  content: "";
  background: #191515;
  transform: translateY(-50%);
}
.blog-single-section .post-team-content {
  margin-bottom: 60px;
}
.blog-single-section .post-team-content h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 30px;
}
.blog-single-section .post-team-content ul li {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 24px;
  color: #ddd;
}
.blog-single-section .post-team-content ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .blog-single-section .post-team-content ul li:last-child {
    margin-bottom: 24px;
  }
}
.blog-single-section .post-team-content ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 28px;
  height: 28px;
  background: #FFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.blog-single-section .post-team-content ul li:hover::before {
  background: #73161E;
}
.blog-single-section .post-team-content img {
  width: 100%;
}
.blog-single-section .im-1 {
  margin-bottom: 30px;
}
.blog-single-section p {
  color: #ddd;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}
.blog-single-section .tag-share-wrap {
  margin-top: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
@media (max-width: 991px) {
  .blog-single-section .tag-share-wrap {
    margin-top: 30px;
  }
}
.blog-single-section .tag-share,
.blog-single-section .tag-share-s2 {
  color: #fff;
}
.blog-single-section .tag-share ul,
.blog-single-section .tag-share-s2 ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}
.blog-single-section .tag-share ul li,
.blog-single-section .tag-share-s2 ul li {
  float: left;
}
@media (max-width: 767px) {
  .blog-single-section .tag-share ul li,
  .blog-single-section .tag-share-s2 ul li {
    margin: 2px;
  }
}
.blog-single-section .tag-share ul > li + li,
.blog-single-section .tag-share-s2 ul > li + li {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .blog-single-section .tag-share ul > li + li,
  .blog-single-section .tag-share-s2 ul > li + li {
    margin: 2px;
  }
}
.blog-single-section .tag-share .tag,
.blog-single-section .tag-share-s2 .tag {
  display: flex;
  align-items: center;
}
.blog-single-section .tag-share .tag > span,
.blog-single-section .tag-share-s2 .tag > span {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: inline-block;
  padding-right: 15px;
  text-transform: capitalize;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.blog-single-section .tag-share .tag ul,
.blog-single-section .tag-share-s2 .tag ul {
  list-style: none;
  position: relative;
}
.blog-single-section .tag-share .tag li,
.blog-single-section .tag-share-s2 .tag li {
  position: relative;
}
.blog-single-section .tag-share .tag a,
.blog-single-section .tag-share-s2 .tag a {
  display: inline-block;
  padding: 2px 15px;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  border: 1px solid #F6F3EE;
  background: #FFF;
}
@media (max-width: 767px) {
  .blog-single-section .tag-share .tag a,
  .blog-single-section .tag-share-s2 .tag a {
    font-size: 13px;
  }
}
.blog-single-section .tag-share .tag a:hover,
.blog-single-section .tag-share-s2 .tag a:hover {
  color: #fff;
  background: #73161E;
}
.blog-single-section .tag-share-s2 {
  margin: 0;
  border-bottom: 0;
}
.blog-single-section .tag-share-s2 .tag {
  justify-content: end;
}
@media (max-width: 991px) {
  .blog-single-section .tag-share-s2 .tag {
    margin-top: 20px;
    justify-content: left;
  }
}
.blog-single-section .tag-share-s2 .tag a {
  padding: 0;
  background: #F2F6F7;
  color: #020626;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 400;
}
.blog-single-section .item-img img {
  width: 100%;
}
.blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #3A3938;
  padding: 0 25px;
}
.blog-single-section .more-posts > div {
  width: 50%;
  float: left;
}
@media (max-width: 767px) {
  .blog-single-section .more-posts > div {
    width: 100%;
    float: none;
  }
}
.blog-single-section .more-posts > div > a {
  display: inline-block;
}
.blog-single-section .more-posts .previous-post,
.blog-single-section .more-posts .next-post {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post,
  .blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}
.blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #3A3938;
  padding-left: 15px;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #3A3938;
  }
}
.blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}
.blog-single-section .more-posts .next-post .post-control-link:before {
  font-family: "themify";
  content: "\e628";
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}
.blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}
.blog-single-section .more-posts .previous-post .post-control-link {
  padding-left: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}
.blog-single-section .more-posts .previous-post .post-control-link:before {
  font-family: "themify";
  content: "\e629";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}
.blog-single-section .more-posts .previous-post > a > span,
.blog-single-section .more-posts .next-post > a > span {
  display: block;
}
.blog-single-section .more-posts .post-control-link {
  font-size: 14px;
  font-size: 0.9333333333rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}
.blog-single-section .more-posts .post-name {
  font-size: 16px;
  font-size: 1.0666666667rem;
  color: #fff;
  margin: 0.7em 0 0;
}
@media (max-width: 991px) {
  .blog-single-section .more-posts .post-name {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}
.blog-single-section .more-posts a:hover .post-control-link {
  color: #73161E;
}
.blog-single-section .comments-area {
  margin-top: 70px;
}
.blog-single-section .comments-area .comment-wrapper {
  position: relative;
}
.blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}
.blog-single-section .comments-area ol ul {
  padding-left: 100px;
  list-style-type: none;
}
@media (max-width: 991px) {
  .blog-single-section .comments-area ol ul {
    padding-left: 40px;
  }
}
.blog-single-section .comments-area ol > li:last-child div {
  border-bottom: 0;
}
.blog-single-section .comments-area .comments-title {
  margin-bottom: 40px;
  text-transform: capitalize;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 991px) {
  .blog-single-section .comments-area .comments-title {
    font-size: 20px;
  }
}
.blog-single-section .comments-area li > div {
  position: relative;
}
.blog-single-section .comments-area .comment-theme {
  position: absolute;
}
@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-theme {
    position: static;
  }
}
.blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}
.blog-single-section .comments-area .comment-main-area {
  margin-bottom: 40px;
}
.blog-single-section .comments-area .comment-main-area {
  padding-left: 110px;
}
@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}
.blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 20px;
  color: #ddd;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
}
.blog-single-section .comments-area .comments-meta h4 {
  font-size: 20px;
  color: #121725;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}
.blog-single-section .comments-area .comments-meta h4 span {
  font-size: 15px;
  color: #fff;
  font-weight: normal;
  text-transform: none;
  display: block;
  font-family: "Inter", sans-serif;
}
@media (max-width: 767px) {
  .blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}
.blog-single-section .comments-area .comment-reply-link {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  position: absolute;
  right: 20px;
  top: 0;
}
.blog-single-section .comments-area .comment-reply-link:hover {
  color: #73161E;
}
.blog-single-section .comment-respond {
  background: #161515;
  padding: 60px 40px 80px;
  margin-top: 60px;
}
@media (max-width: 575px) {
  .blog-single-section .comment-respond {
    padding: 40px 20px 40px;
  }
}
.blog-single-section .comment-respond .comment-reply-title {
  font-size: 22px;
  text-transform: capitalize;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
  }
}
.blog-single-section .comment-respond form input,
.blog-single-section .comment-respond form textarea {
  background-color: transparent;
  width: 100%;
  height: 65px;
  padding: 6px 15px;
  margin-bottom: 33px;
  outline: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
}
@media (max-width: 575px) {
  .blog-single-section .comment-respond form input,
  .blog-single-section .comment-respond form textarea {
    margin-bottom: 25px;
  }
}
.blog-single-section .comment-respond form input:focus,
.blog-single-section .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #73161E;
}
@media (max-width: 991px) {
  .blog-single-section .comment-respond form input,
  .blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}
.blog-single-section .comment-respond form textarea {
  padding: 15px;
  height: 280px;
}
@media (max-width: 991px) {
  .blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}
.blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}
.blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
  width: 49%;
  float: left;
}
@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
    width: 100%;
    float: none;
  }
}
.blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: right;
}
@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 100%;
    float: none;
  }
}
.blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
  width: 49%;
  float: left;
}
@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
    width: 100%;
    float: none;
  }
}
.blog-single-section .comment-respond .form-inputs > input:nth-child(4) {
  width: 49%;
  float: right;
}
@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(4) {
    width: 100%;
    float: none;
  }
}
.blog-single-section .comment-respond .form-submit input {
  max-width: 240px;
  border: 0;
  outline: 0;
  background: #73161E;
  margin: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .blog-single-section .comment-respond .form-submit input {
    height: 50px;
  }
}
.blog-single-section .comment-respond .terms {
  margin-bottom: 40px;
}
.blog-single-section .comment-respond .terms .checkbox {
  width: 20px;
  height: 0;
  padding: 0;
  margin: 0;
}
.blog-single-section .comment-respond .terms input[type=checkbox] {
  position: relative;
  cursor: pointer;
}
.blog-single-section .comment-respond .terms input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 17px;
  height: 17px;
  transition: all 0.2s linear;
  border: 1px solid #949392;
}
.blog-single-section .comment-respond .terms input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 17px;
  height: 17px;
  transition: all 0.2s linear;
  border: 1px solid #949392;
}
.blog-single-section .comment-respond .terms input[type=checkbox]:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: solid #fff;
  border-width: 0 0px 0px 0;
  transform: rotate(180deg);
  position: absolute;
  top: -11px;
  left: 3px;
  transition: all 0.2s linear;
}
.blog-single-section .comment-respond .terms input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid #73161E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: -11px;
  left: 3px;
}
.blog-single-section .comment-respond .terms label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: #838383;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 1399px) {
  .blog-single-section .comment-respond .terms label {
    margin-left: 5px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .blog-single-section .comment-respond .terms label {
    margin-left: 25px;
    position: relative;
    margin-top: -25px;
  }
}

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

/*--------------------------------------------------------------
12. error-404-section
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
  background: #0F0E0E;
}
.error-404-section .error-message h3 {
  color: #fff;
  font-size: 400px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 0;
  margin-top: -70px;
}
@media (max-width: 1199px) {
  .error-404-section .error-message h3 {
    font-size: 250px;
    margin-top: -50px;
  }
}
@media (max-width: 991px) {
  .error-404-section .error-message h3 {
    font-size: 150px;
    margin-top: -30px;
  }
}
@media (max-width: 767px) {
  .error-404-section .error-message h3 {
    font-size: 100px;
    margin-top: -10px;
  }
}
.error-404-section .error-message h4 {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .error-404-section .error-message h4 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .error-404-section .error-message h4 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .error-404-section .error-message h4 {
    font-size: 20px;
  }
}
.error-404-section .error-message .theme-btn, .error-404-section .error-message .view-cart-btn {
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */



@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 71.667%;
  }}


  .cta-banner {
    background-image: url('../images/solid/home/banner.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    
    z-index: 1;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
  }

  .cta-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .cta-content .cta-btn {
    background-color: #73161E;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .cta-content .cta-btn:hover {
    background-color: #73161E;
  }

  @media (max-width: 768px) {
    .cta-content h1 {
      font-size: 32px;
    }
    .cta-content p {
      font-size: 16px;
    }
  }

  .cta-banners {
    background-image: url('../images/solid/about/banner.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
  }

  .cta-banners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 1;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
  }

  .cta-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .cta-content .cta-btn {
    background-color: #73161E;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .cta-content .cta-btn:hover {
    background-color: #73161E;
  }

  @media (max-width: 768px) {
    .cta-content h1 {
      font-size: 32px;
    }
    .cta-content p {
      font-size: 16px;
    }
  }

  
  .cta-bannerss {
    background-image: url('../images/solid/contact/banner.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
  }

  .cta-bannerss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 1;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
  }

  .cta-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
  }

  .cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .cta-content .cta-btn {
    background-color: #73161E;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .cta-content .cta-btn:hover {
    background-color: #73161E;
  }

  @media (max-width: 768px) {
    .cta-content h1 {
      font-size: 32px;
    }
    .cta-content p {
      font-size: 16px;
    }
  }
  