@charset "UTF-8";
:root {
  --rr-ff-body: 'Archivo', sans-serif;
  --rr-ff-heading: 'Titillium Web', serif;
  --rr-ff-p: 'Archivo', sans-serif;
  --rr-fw-normal: normal;
  --rr-fw-thin: 100;
  --rr-fw-elight: 200;
  --rr-fw-light: 300;
  --rr-fw-regular: 400;
  --rr-fw-medium: 500;
  --rr-fw-sbold: 600;
  --rr-fw-bold: 700;
  --rr-fw-ebold: 800;
  --rr-fw-black: 900;
  --rr-fs-body: 16px;
  --rr-fs-p: 16px;
  --rr-fs-h1: 82px;
  --rr-fs-h2: 48px;
  --rr-fs-h3: 24px;
  --rr-fs-h4: 20px;
  --rr-fs-h5: 16px;
  --rr-fs-h6: 14px;
  --rr-color-common-white: #ffffff;
  --rr-color-common-black: #000000;
  --rr-color-common-dark: #232323;
  --rr-color-heading-primary: #171717;
  --rr-color-text-body: #6E777D;
  --rr-color-theme-primary: #FF6600;
  --rr-color-theme-secondary: #ffc226;
  --rr-color-grey-1: #F8F8F8;
  --rr-color-border-1: #ddd;
}

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

    Template Name: PixFix - Handyman Services WordPress Theme
    Author: RRDevs
    Support: rubelmah55@gmail.com
    Description: PixFix - Handyman Services WordPress Theme
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

	01. Theme Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  font-family: var(--rr-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--rr-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--rr-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--rr-fs-h1);
}

h2 {
  font-size: var(--rr-fs-h2);
}

h3 {
  font-size: var(--rr-fs-h3);
}

h4 {
  font-size: var(--rr-fs-h4);
}

h5 {
  font-size: var(--rr-fs-h5);
}

h6 {
  font-size: var(--rr-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--rr-ff-p);
  font-size: 16px;
  font-weight: var(--rr-fw-normal);
  color: var(--rr-color-text-body);
  margin-bottom: 15px;
  line-height: 28px;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--rr-color-theme-primary);
}

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.b-radius {
  border-radius: 6px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

.pt-180 {
  padding-top: 180px;
}
@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 992px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 60px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 60px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

.bg-grey {
  background-color: var(--rr-color-grey-1);
}

.bg-dark-1 {
  background-color: var(--rr-color-heading-primary);
}

.container {
  max-width: 1315px;
}

.bd-bottom {
  border-bottom: 1px solid #edebf9;
}

.top-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 468px;
  height: 478px;
  position: absolute;
  top: -200px;
  left: -200px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .top-shape {
    top: -250px;
    left: -250px;
  }
}
@media only screen and (max-width: 992px) {
  .top-shape {
    display: none;
  }
}

.bottom-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  width: 468px;
  height: 478px;
  position: absolute;
  bottom: -200px;
  right: -200px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .bottom-shape {
    bottom: -250px;
    right: -250px;
  }
}
@media only screen and (max-width: 992px) {
  .bottom-shape {
    display: none;
  }
}

.bg-color-top {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.overflow-h {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 30px;
  }
}
.section-heading .sub-heading {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.section-heading .section-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  text-transform: inherit;
  letter-spacing: -1.44px;
  position: relative;
}
@media (max-width: 1170px) {
  .section-heading .section-title {
    font-size: 40px;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
.section-heading.white-content .sub-heading {
  color: var(--rr-color-theme-primary);
}
.section-heading.white-content p,
.section-heading.white-content .section-title {
  color: var(--rr-color-common-white);
}
.section-heading.heading-2 {
  margin-bottom: 30px;
}
.section-heading.heading-2 .section-title {
  margin-bottom: 25px;
}
@media (max-width: 1170px) {
  .section-heading.heading-2 .section-title {
    margin: 0;
    margin-bottom: 25px;
  }
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 30px;
  }
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
  color: var(--rr-color-common-white);
}

/* Site Preloader */
.preloader-close {
  position: fixed;
  z-index: 99;
  font-size: 26px;
  background: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  width: 60px;
  height: 60px;
  border: 1px solid var(--rr-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 50px;
  top: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.preloader-close:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--rr-color-common-white);
  z-index: 999;
}

.sk-three-bounce {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--rr-color-common-white);
}

.sk-three-bounce .sk-child {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--rr-color-theme-primary);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce.is-brick-red.sk-three-bounce .sk-child {
  background-color: var(--rr-color-theme-primary);
}

.sk-three-bounce.is-mainly-blue.sk-three-bounce .sk-child {
  background-color: var(--rr-color-theme-primary);
}

.sk-three-bounce.is-orange.sk-three-bounce .sk-child {
  background-color: var(--rr-color-theme-primary);
}

.sk-three-bounce.is-purple.sk-three-bounce .sk-child {
  background-color: var(--rr-color-theme-primary);
}

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .mt-cursor:before {
    background: var(--rr-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }

  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }

  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }

  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}
.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}
/**
    Buttons CSS
*/
.rr-primary-btn {
  background-color: var(--rr-color-theme-primary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 23px 30px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.rr-primary-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.rr-primary-btn:hover {
  color: var(--rr-color-common-white);
}
.rr-primary-btn:hover:before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.rr-primary-btn i {
  margin-left: 10px;
  font-size: 13px;
}
.rr-primary-btn:focus {
  color: var(--rr-color-common-white);
}
.rr-primary-btn.transparent {
  background-color: transparent;
  border: 1px solid var(--rr-color-theme-primary);
  color: var(--rr-color-heading-primary);
}
.rr-primary-btn.transparent:hover {
  color: var(--rr-color-common-white);
}
.rr-primary-btn.transparent:before {
  background-color: var(--rr-color-theme-primary);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  background-color: var(--rr-color-common-white);
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media only screen and (max-width: 992px) {
  .header {
    position: inherit;
    height: auto !important;
  }
}
.header .top-bar {
  background-color: var(--rr-color-theme-primary);
}
.header .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  padding: 15px 0;
}
@media only screen and (max-width: 992px) {
  .header .top-bar-inner {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .header .top-bar-inner {
    display: none;
  }
}
.header .top-bar-inner .top-bar-list {
  list-style: none;
  display: flex;
  align-items: center;
}
.header .top-bar-inner .top-bar-list li {
  font-size: 16px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--rr-color-common-white);
}
.header .top-bar-inner .top-bar-list li a {
  color: var(--rr-color-common-white);
}
.header .top-bar-inner .top-bar-list li:not(:last-of-type) {
  margin-right: 30px;
}
.header .top-bar-inner .top-social-list {
  display: flex;
  align-items: center;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .top-bar-inner .top-social-list {
    display: none;
  }
}
.header .top-bar-inner .top-social-list li a {
  color: var(--rr-color-common-white);
}
.header .top-bar-inner .top-social-list li:not(:last-of-type) {
  margin-right: 25px;
}
.header .primary-header-inner {
  background-color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 20px 0;
  }
}
.header .primary-header-inner .header-logo img {
  max-width: 170px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
.header .primary-header-inner .header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 10px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  display: block;
  font-size: 18px;
  padding: 40px 0;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li a {
    font-size: 16px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a:hover {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a i {
  font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a:before {
  content: "";
  background-color: var(--rr-color-theme-primary);
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 40px;
  transform: skewX(30deg);
  transition: all 0.4s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active a {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active a:before {
  width: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active ul li a {
  color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active ul li a:hover {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active.menu-item-has-children:after {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li ul {
  background-color: var(--rr-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 109px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:not(:last-of-type) {
  border-bottom: 1px dashed var(--rr-color-border-1);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover {
  background-color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
  color: var(--rr-color-common-black);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a {
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--rr-color-common-black);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 0;
  letter-spacing: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:hover {
  padding-left: 10px;
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:before {
  display: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li.active {
  background-color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li.active a {
  color: var(--rr-color-common-white) !important;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover a:before {
  width: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li ul {
  top: 0;
  left: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover li a {
  color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover li a:hover {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children {
  position: relative;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
  padding-right: 17px;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
    padding-right: 13px;
  }
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li {
  margin: 0;
  padding-left: 25px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li a {
  padding-right: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "";
  color: var(--rr-color-heading-primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:hover:after {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-logo img {
    width: 90px;
  }
}
.header .primary-header-inner .header-right .search-icon {
  color: var(--rr-color-heading-primary);
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .search-icon {
    margin-right: 20px;
  }
}
.header .primary-header-inner .header-right .header-contact {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-contact {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-contact {
    display: none;
  }
}
.header .primary-header-inner .header-right .header-contact .contact {
  margin-bottom: 0;
}
.header .primary-header-inner .header-right .header-contact .contact span {
  display: block;
  font-family: var(--rr-ff-body);
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.header .primary-header-inner .header-right .header-contact .contact a {
  font-size: 21px;
  font-weight: 700;
}
.header .primary-header-inner .header-right .sidebar-trigger {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 7px;
  margin-left: 20px;
  border-radius: 3px;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-right .sidebar-trigger {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .sidebar-trigger {
    display: none;
  }
}
.header .primary-header-inner .header-right .sidebar-trigger span {
  background-color: var(--rr-color-heading-primary);
  width: 30px;
  height: 3px;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-right .sidebar-trigger span:nth-child(2) {
  width: 20px;
}
.header .primary-header-inner .header-right .sidebar-trigger span:nth-child(3) {
  width: 25px;
}
.header .primary-header-inner .header-right .sidebar-trigger:hover span:nth-child(2) {
  width: 25px;
}
.header .primary-header-inner .header-right .sidebar-trigger:hover span:nth-child(3) {
  width: 20px;
}
.header .primary-header-inner .header-right .header-right-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-right-item {
    line-height: 1;
  }
}
.header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--rr-color-heading-primary);
  font-size: 30px;
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
    display: none;
  }
}
.header .primary-header-inner .header-right .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-right-item .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}

@media (min-width: 993px) {
  .header-2 .header-logo {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 1;
  }
}
@media (min-width: 993px) and (max-width: 1600px) {
  .header-2 .header-logo {
    left: 2%;
  }
}
@media (min-width: 993px) {
  .header-2:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 19%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  }
}
@media (min-width: 993px) and (max-width: 1600px) {
  .header-2:before {
    width: 15%;
  }
}
@media (min-width: 993px) and (max-width: 1170px) {
  .header-2:before {
    width: 17%;
  }
}
.header-2 .top-bar {
  background-color: var(--rr-color-grey-1);
}
.header-2 .top-bar .top-bar-inner {
  padding-left: 110px;
}
@media (max-width: 1600px) {
  .header-2 .top-bar .top-bar-inner {
    padding-left: 210px;
  }
}
@media (max-width: 1170px) {
  .header-2 .top-bar .top-bar-inner {
    padding-left: 180px;
  }
}
@media only screen and (max-width: 992px) {
  .header-2 .top-bar .top-bar-inner {
    padding-left: 0;
  }
}
.header-2 .top-bar .top-bar-list li {
  color: var(--rr-color-text-body);
}
.header-2 .top-bar .top-bar-list li a {
  color: var(--rr-color-text-body);
}
.header-2 .top-bar .top-bar-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.header-2 .top-bar .top-bar-list li i {
  color: var(--rr-color-heading-primary);
}
@media (max-width: 1170px) {
  .header-2 .top-bar .top-social-list {
    display: none;
  }
}
.header-2 .top-bar .top-social-list li a {
  color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-social-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.header-2 .primary-header-inner {
  padding-left: 100px;
}
@media (max-width: 1600px) {
  .header-2 .primary-header-inner {
    padding-left: 200px;
  }
}
@media (max-width: 1170px) {
  .header-2 .primary-header-inner {
    padding-left: 170px;
  }
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header-inner {
    padding-left: 0;
  }
}
.header-2 .primary-header-inner .header-logo {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header-inner .header-logo {
    display: block;
  }
}
@media (max-width: 1170px) {
  .header-2 .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 7px;
  }
}
@media (max-width: 1170px) {
  .header-2 .primary-header-inner .header-menu-wrap .sub-menu li a {
    font-size: 14px;
  }
}
.header-2 .primary-header.fixed .primary-header-inner {
  padding-left: 0;
}
.header-2 .primary-header.fixed .primary-header-inner .header-logo {
  display: block;
  position: inherit;
  transform: translate(0);
}

.header-4 .top-bar {
  background-color: var(--rr-color-heading-primary);
}
.header-4 .top-bar .top-bar-inner .top-bar-list li i {
  color: var(--rr-color-theme-primary);
}
.header-4 .top-bar .top-bar-inner .top-bar-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.header-4 .top-bar .top-bar-inner .top-social-list li a {
  color: var(--rr-color-theme-primary);
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--rr-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--rr-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--rr-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--rr-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--rr-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--rr-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--rr-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.primary-header {
  width: 100%;
}
.primary-header.fixed {
  background-color: var(--rr-color-common-white);
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}

@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--rr-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-head a img {
    max-width: 120px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 35px;
    right: 40px;
    color: var(--rr-color-heading-primary);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-color-border-1);
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu p {
    color: var(--rr-color-common-white);
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .list-header {
    color: var(--rr-color-common-white);
    font-family: var(--rr-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-list li {
    font-family: var(--rr-ff-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--rr-color-heading-primary);
  }
  .mobile-side-menu .side-menu-list li span,
.mobile-side-menu .side-menu-list li a {
    color: var(--rr-color-heading-primary);
    margin-left: 10px;
    font-size: 18px;
  }
  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }
  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }
  .mobile-side-menu .mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rr-color-border-1);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--rr-color-heading-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    position: absolute;
    padding: 0;
    top: -3px;
    right: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 14px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "";
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
  }
}
#popup-search-box {
  background-color: var(--rr-color-common-white);
  position: fixed;
  width: 100%;
  height: 20%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 20px 15px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid var(--rr-color-border-1);
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}
#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.png), auto;
}
#popup-search-box .box-inner-wrap .search-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--rr-color-heading-primary);
  border: 1px solid var(--rr-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #popup-search-box .box-inner-wrap .search-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
  }
}
#popup-search-box .box-inner-wrap .search-close:hover {
  background-color: var(--rr-color-theme-primary);
  border: 1px solid var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.slider-section {
  overflow: hidden;
}

.pixfix-slider {
  background-color: var(--rr-color-heading-primary);
  position: relative;
  z-index: 2;
}

.slider-item {
  min-height: 800px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1170px) {
  .slider-item {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item {
    height: 1100px;
  }
}
.slider-item .slider-content-wrap {
  margin-top: 150px;
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap {
    margin-top: 80px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap {
    margin-bottom: 90px;
  }
}
.slider-item .slider-content-wrap .slider-content {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .slider-content .shapes {
    display: none;
  }
}
.slider-item .slider-content-wrap .slider-content .shapes .shape {
  position: absolute;
}
.slider-item .slider-content-wrap .slider-content .shapes .shape.shape-1 {
  top: 0;
  right: -40px;
}
@media (max-width: 1170px) {
  .slider-item .slider-content-wrap .slider-content .shapes .shape.shape-1 {
    right: 60px;
  }
}
.slider-item .slider-content-wrap .slider-content .shapes .shape.shape-2 {
  top: 30%;
  left: -40px;
}
.slider-item .slider-content-wrap .slider-content .shapes .shape.shape-3 {
  top: 36%;
  right: 20%;
}
.slider-item .slider-content-wrap .slider-content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap .slider-content-inner {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .slider-content-inner {
    flex-direction: column;
    align-items: baseline;
    row-gap: 50px;
  }
}
.slider-item .slider-content-wrap .pixfix-caption {
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap .pixfix-caption {
    margin-bottom: 30px;
  }
}
.slider-item .slider-content-wrap .pixfix-caption.sub-heading {
  margin-bottom: 0;
}
.slider-item .slider-content-wrap .pixfix-small-cap {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  font-size: 16px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 20px;
  z-index: 1;
}
.slider-item .slider-content-wrap .pixfix-small-cap:before {
  background-image: url(../img/shapes/hero-text-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -7px;
  left: 0;
  z-index: -1;
  animation: section-animation-2 3s infinite;
}
.slider-item .slider-content-wrap .pixfix-cap {
  color: var(--rr-color-common-white);
  font-size: 75px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.47px;
}
@media (max-width: 1170px) {
  .slider-item .slider-content-wrap .pixfix-cap {
    max-width: 600px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .pixfix-cap {
    font-size: 42px;
  }
}
.slider-item .slider-content-wrap .pixfix-cap span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--rr-color-common-white);
}
.slider-item .slider-content-wrap .slider-list {
  margin-bottom: 50px;
  list-style: none;
}
.slider-item .slider-content-wrap .slider-list li {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.slider-item .slider-content-wrap .slider-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.slider-item .slider-content-wrap .slider-list li i {
  color: var(--rr-color-theme-primary);
  margin-right: 15px;
  font-size: 18px;
}
.slider-item .slider-content-wrap .slider-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 35px;
  flex-wrap: wrap;
  row-gap: 40px;
}
.slider-item .slider-content-wrap .slider-btn-wrap .video-btn a {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.slider-item .slider-content-wrap .slider-btn-wrap .video-btn a .play-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  font-size: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slider-item .slider-content-wrap .slider-btn-wrap .video-btn a .play-btn:hover {
  color: var(--rr-color-common-white);
  background-color: var(--rr-color-theme-primary);
}
.slider-item .slider-content-wrap .slider-btn-wrap .video-btn a .play-btn i {
  margin-left: 2px;
}
.slider-item .slider-content-wrap .slider-btn-wrap .video-btn span {
  color: var(--rr-color-common-white);
  display: block;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slider-item .slider-content-wrap .slider-btn-wrap .video-btn span:hover {
  color: var(--rr-color-theme-primary);
}
.slider-item .slider-img {
  position: relative;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media (max-width: 1170px) {
  .slider-item .slider-img {
    position: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.slider-item .slider-img .bg-img {
  position: absolute;
  bottom: 20px;
  left: 85px;
}
@media (max-width: 1399px) {
  .slider-item .slider-img .bg-img {
    left: 0;
  }
}
@media (max-width: 1170px) {
  .slider-item .slider-img .bg-img {
    position: inherit;
  }
}
.slider-item .slider-img .slider-men {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 24%;
  text-align: center;
}
@media (max-width: 1399px) {
  .slider-item .slider-img .slider-men {
    right: 22%;
  }
}
@media (max-width: 1170px) {
  .slider-item .slider-img .slider-men {
    right: inherit;
  }
}
@media only screen and (max-width: 992px) {
  .slider-item.item-2 {
    height: auto;
    min-height: auto;
  }
}
@media only screen and (max-width: 992px) {
  .slider-item.item-2 .slider-content-wrap {
    margin: 80px 0;
  }
}
.slider-item.item-2 .slider-content-wrap .slider-content .pixfix-cap {
  margin-bottom: 10px;
}
@media (max-width: 1170px) {
  .slider-item.item-2 .slider-content-wrap .slider-content .pixfix-cap {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item.item-2 .slider-content-wrap .slider-content .pixfix-cap {
    font-size: 38px;
  }
}
.slider-item.item-2 .slider-content-wrap .slider-content .slider-desc {
  color: var(--rr-color-common-white);
  margin-bottom: 50px;
}
@media (max-width: 1170px) {
  .slider-item.item-2 .slider-content-wrap .slider-content .slider-desc {
    max-width: 500px;
  }
  .slider-item.item-2 .slider-content-wrap .slider-content .slider-desc br {
    display: none;
  }
}
.slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap {
  column-gap: 50px;
}
.slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap .header-contact {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media only screen and (max-width: 992px) {
  .slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap .header-contact {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap .header-contact {
    display: none;
  }
}
.slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap .header-contact .contact {
  margin-bottom: 0;
}
.slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap .header-contact .contact span {
  display: block;
  font-family: var(--rr-ff-body);
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap .header-contact .contact a {
  color: var(--rr-color-common-white);
  font-size: 21px;
  font-weight: 700;
}
.slider-item.item-2 .slider-content-wrap .slider-content .slider-btn-wrap .header-contact .contact a:hover {
  color: var(--rr-color-theme-primary);
}
.slider-item .slider-img-box {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1700px) {
  .slider-item .slider-img-box {
    right: -13%;
  }
}
@media (max-width: 1600px) {
  .slider-item .slider-img-box {
    right: -20%;
  }
}
@media (max-width: 1399px) {
  .slider-item .slider-img-box {
    right: -25%;
  }
}
@media (max-width: 1170px) {
  .slider-item .slider-img-box {
    right: -40%;
  }
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-img-box {
    display: none;
  }
}
.slider-item .slider-img-box .shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -13%;
}

@keyframes section-animation-2 {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
.pixfix-swiper-pagination {
  height: 100%;
  width: auto !important;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50px !important;
  z-index: 2;
}
@media (max-width: 1399px) {
  .pixfix-swiper-pagination {
    left: 25px !important;
  }
}
@media (max-width: 1250px) {
  .pixfix-swiper-pagination {
    display: none;
  }
}
.pixfix-swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 50%;
  opacity: 1;
  display: block;
}
.pixfix-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--rr-color-common-white);
}
.pixfix-swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  background-color: var(--rr-color-common-white);
  width: 5px;
  height: 5px;
  border: 1px solid var(--rr-color-common-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pixfix-swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
  margin-bottom: 10px;
}

.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

.ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
/* Slider 2 */
.slider-2 .slider-item .slide-img-wrap {
  height: 830px;
}
.slider-2 .slider-item .slider-content-wrap {
  left: -100px;
  margin-top: 0;
}
@media (max-width: 1399px) {
  .slider-2 .slider-item .slider-content-wrap {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slider-2 .slider-item .slider-content-wrap .slider-content-inner {
    padding-right: 0;
  }
}
.slider-2 .slider-item .slider-content-wrap .slider-content {
  background: linear-gradient(90deg, #0F1B24 0.39%, rgba(15, 27, 36, 0) 99.62%);
  padding: 60px 100px;
}
@media only screen and (max-width: 767px) {
  .slider-2 .slider-item .slider-content-wrap .slider-content {
    padding: 50px 30px;
  }
}
.slider-2 .slider-item .slider-content-wrap .slider-content .pixfix-caption.heading {
  margin-bottom: 20px;
}
.slider-2 .slider-item .slider-content-wrap .slider-content .slider-desc {
  margin-bottom: 40px;
}
.slider-2 .slider-item .slider-content-wrap .slider-content .slider-desc p {
  color: var(--rr-color-common-white);
  max-width: 620px;
  width: 100%;
  margin-bottom: 0;
}
.slider-2 .slider-item .slider-content-wrap .slider-content .slider-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.slider-2 .slider-item .slider-content-wrap .slider-content .slider-btn-wrap .slider-btn .lt-primary-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.slider-2 .slider-item .slider-content-wrap .slider-content .slider-btn-wrap .slider-btn .lt-primary-btn:hover {
  border: 1px solid var(--rr-color-heading-primary);
}
.slider-2 .slider-item .slider-content-wrap .slider-content .slider-btn-wrap .slider-btn .lt-primary-btn.active {
  background-color: var(--rr-color-heading-primary);
  border: 1px solid var(--rr-color-heading-primary);
}
@media only screen and (max-width: 767px) {
  .slider-2 .slider-item .slide-img-wrap {
    height: 650px;
  }
}
.slider-2 .pixfix-swiper-pagination {
  left: auto !important;
  right: 100px;
  top: 40%;
}
@media (max-width: 1250px) {
  .slider-2 .pixfix-swiper-pagination {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .slider-2 .pixfix-swiper-pagination {
    right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-2 .pixfix-swiper-pagination {
    display: none;
  }
}
.slider-2 .pixfix-swiper-pagination .swiper-pagination-bullet {
  background-color: var(--rr-color-common-white);
  height: 10px;
  width: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
}
.slider-2 .pixfix-swiper-pagination .swiper-pagination-bullet:before {
  display: none;
}
.slider-2 .pixfix-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--rr-color-theme-primary);
  height: 20px;
  border-radius: 5px;
}

/* Text Animation */
.pixfix-animation,
.pixfix-animation span {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.pixfix-animation span {
  display: inline-block;
}

/* Fade Effect */
.pixfix-fadeIn {
  animation-name: asFadeIn;
}

@keyframes asFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pixfix-fadeInLeft {
  animation-name: asFadeInLeft;
}

@keyframes asFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
  }
}
.pixfix-fadeInRight {
  animation-name: asFadeInRight;
}

@keyframes asFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
  }
}
.pixfix-fadeInDown {
  animation-name: asFadeInTop;
}

@keyframes asFadeInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
  }
}
.pixfix-fadeInUp {
  animation-name: asFadeInBottom;
}

@keyframes asFadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
  }
}
/* Image Effect */
.pixfix-img-effect {
  animation-name: imgEffect;
}

@keyframes imgEffect {
  from {
    opacity: 0;
    transform: translatex(50%) scalex(2);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translatex(0) scalex(1);
    filter: blur(0);
  }
}
/* Move From Effect */
.pixfix-moveFromLeft {
  animation-name: asMoveFromLeft;
}

@keyframes asMoveFromLeft {
  from {
    visibility: hidden;
    transform: translateX(-50px);
  }
  to {
    visibility: visible;
  }
}
.pixfix-moveFromRight {
  animation-name: asMoveFromRight;
}

@keyframes asMoveFromRight {
  from {
    visibility: hidden;
    transform: translateX(50px);
  }
  to {
    visibility: visible;
  }
}
.pixfix-moveFromTop {
  animation-name: asMoveFromTop;
}

@keyframes asMoveFromTop {
  from {
    visibility: hidden;
    transform: translateY(-50px);
  }
  to {
    visibility: visible;
  }
}
.pixfix-moveFromBottom {
  animation-name: asMoveFromBottom;
}

@keyframes asMoveFromBottom {
  from {
    visibility: hidden;
    transform: translateY(50px);
  }
  to {
    visibility: visible;
  }
}
/* Blur Effect */
.pixfix-blurIn {
  animation-name: asBlurIn;
}

@keyframes asBlurIn {
  from {
    filter: blur(20px);
    opacity: 0;
  }
}
.pixfix-blurInLeft {
  animation-name: asBlurInLeft;
}

@keyframes asBlurInLeft {
  from {
    transform: translateX(50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.pixfix-blurInRight {
  animation-name: asBlurInRight;
}

@keyframes asBlurInRight {
  from {
    transform: translateX(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.pixfix-blurInTop {
  animation-name: asBlurInTop;
}

@keyframes asBlurInTop {
  from {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.pixfix-blurInBottom {
  animation-name: asBlurInBottom;
}

@keyframes asBlurInBottom {
  from {
    transform: translateY(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}
/* Zoom Effect */
.pixfix-zoomIn {
  animation-name: asZoomIn;
}

@keyframes asZoomIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.pixfix-zoomInLeft {
  animation-name: asZoomInLeft;
}

@keyframes asZoomInLeft {
  from {
    transform: scale(5) translateX(-50%);
    opacity: 0;
  }
}
.pixfix-zoomInRight {
  animation-name: asZoomInRight;
}

@keyframes asZoomInRight {
  from {
    transform: scale(5) translateX(50%);
    opacity: 0;
  }
}
.pixfix-zoomInTop {
  animation-name: asZoomInTop;
}

@keyframes asZoomInTop {
  from {
    transform: scale(10) translateY(-50%);
    opacity: 0;
  }
}
.pixfix-zoomInBottom {
  animation-name: asZoomInBottom;
}

@keyframes asZoomInBottom {
  from {
    transform: scale(10) translateY(50%);
    opacity: 0;
  }
}
/* Flip Effect */
.pixfix-flipInTop {
  animation-name: asFlipInTop;
}

@keyframes asFlipInTop {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: 0 0;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}
.pixfix-flipInBottom {
  animation-name: asFlipInBottom;
}

@keyframes asFlipInBottom {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: bottom;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}
/* Roll Effect */
.pixfix-rollFromLeft {
  animation-name: asRollFromLeft;
}

@keyframes asRollFromLeft {
  from {
    transform: translateX(-60px) perspective(600px) rotateY(180deg);
    opacity: 0;
  }
}
.pixfix-rollFromRight {
  animation-name: asRollFromRight;
}

@keyframes asRollFromRight {
  from {
    transform: translateX(60px) perspective(600px) rotateY(-180deg);
    opacity: 0;
  }
}
.pixfix-rollFromTop {
  animation-name: asRollFromTop;
}

@keyframes asRollFromTop {
  from {
    transform: translateY(-60px) perspective(600px) rotateX(180deg);
    opacity: 0;
  }
}
.pixfix-rollFromBottom {
  animation-name: asRollFromBottom;
}

@keyframes asRollFromBottom {
  from {
    transform: translateY(60px) perspective(600px) rotateX(-180deg);
    opacity: 0;
  }
}
/* Rotate Skate Effect */
.pixfix-rotateSkateInRight {
  animation-name: asRotateSkateInRight;
}

@keyframes asRotateSkateInRight {
  from {
    transform: scaleX(0.2) translateX(100px);
    opacity: 0;
  }
}
.pixfix-rotateSkateInLeft {
  animation-name: asRotateSkateInLeft;
}

@keyframes asRotateSkateInLeft {
  from {
    transform: scaleX(0.2) translateX(-100px);
    opacity: 0;
  }
}
.pixfix-rotateSkateInTop {
  animation-name: asRotateSkateInTop;
}

@keyframes asRotateSkateInTop {
  from {
    transform: scaleY(0.2) translateY(-100px);
    opacity: 0;
  }
}
.pixfix-rotateSkateInBottom {
  animation-name: asRotateSkateInBottom;
}

@keyframes asRotateSkateInBottom {
  from {
    transform: scaleY(0.2) translateY(100px);
    opacity: 0;
  }
}
/* PopUp Effect */
.pixfix-popUp {
  animation-name: asPopUp;
}

@keyframes asPopUp {
  0% {
    visibility: hidden;
  }
  50% {
    transform: scale(1.1);
    visibility: visible;
  }
}
.pixfix-popUpLeft {
  animation-name: asPopUpLeft;
}

@keyframes asPopUpLeft {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(-20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}
.pixfix-popUpRight {
  animation-name: asPopUpRight;
}

@keyframes asPopUpRight {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}
/* !END: Theme Slider CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.hero-section {
  background-color: var(--rr-color-heading-primary);
  overflow: hidden;
}
@media (max-width: 1170px) {
  .hero-section .hero-wrap {
    flex-direction: column;
  }
  .hero-section .hero-wrap > div {
    width: 100%;
  }
}

.hero-content {
  position: relative;
  padding: 140px 0;
}
@media only screen and (max-width: 992px) {
  .hero-content {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .shapes {
    display: none;
  }
}
.hero-content .shapes .shape {
  position: absolute;
}
.hero-content .shapes .shape.shape-1 {
  top: 20%;
  right: -40px;
}
@media (max-width: 1170px) {
  .hero-content .shapes .shape.shape-1 {
    right: 60px;
  }
}
.hero-content .shapes .shape.shape-2 {
  top: 40%;
  left: -40px;
}
.hero-content .shapes .shape.shape-3 {
  top: 36%;
  right: 20%;
}
.hero-content .sub-title {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  font-size: 16px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 20px;
  z-index: 1;
}
.hero-content .sub-title:before {
  background-image: url(../img/shapes/hero-text-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -7px;
  left: 0;
  z-index: -1;
}
.hero-content .title {
  color: var(--rr-color-common-white);
  font-size: 82px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 35px;
  letter-spacing: -2.47px;
}
@media (max-width: 1170px) {
  .hero-content .title {
    max-width: 600px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .title {
    font-size: 50px;
  }
}
.hero-content .title span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--rr-color-common-white);
}
.hero-content .hero-list {
  margin-bottom: 50px;
  list-style: none;
}
.hero-content .hero-list li {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.hero-content .hero-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.hero-content .hero-list li i {
  color: var(--rr-color-theme-primary);
  margin-right: 15px;
  font-size: 18px;
}
.hero-content .hero-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 35px;
  flex-wrap: wrap;
  row-gap: 40px;
}
.hero-content .hero-btn-wrap .video-btn a {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.hero-content .hero-btn-wrap .video-btn a .play-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  font-size: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero-content .hero-btn-wrap .video-btn a .play-btn:hover {
  color: var(--rr-color-common-white);
  background-color: var(--rr-color-theme-primary);
}
.hero-content .hero-btn-wrap .video-btn a .play-btn i {
  margin-left: 2px;
}
.hero-content .hero-btn-wrap .video-btn span {
  color: var(--rr-color-common-white);
  display: block;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero-content .hero-btn-wrap .video-btn span:hover {
  color: var(--rr-color-theme-primary);
}

.hero-img {
  position: relative;
  height: 100%;
}
@media (max-width: 1170px) {
  .hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero-img .bg-img {
  position: absolute;
  bottom: 20px;
  left: 85px;
}
@media (max-width: 1399px) {
  .hero-img .bg-img {
    left: 0;
  }
}
@media (max-width: 1170px) {
  .hero-img .bg-img {
    position: inherit;
  }
}
.hero-img .hero-men {
  max-width: 740px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: -110px;
  text-align: center;
}
@media (max-width: 1399px) {
  .hero-img .hero-men {
    right: 0;
  }
}
@media (max-width: 1170px) {
  .hero-img .hero-men {
    right: inherit;
  }
}

.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

.ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
.hero-2 {
  background-color: var(--rr-color-grey-1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1170px) {
  .hero-2 {
    padding-bottom: 60px;
  }
}
.hero-2 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-2 .hero-content {
  padding: 180px 0;
}
@media (max-width: 1170px) {
  .hero-2 .hero-content {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-2 .hero-content {
    padding: 50px 0;
  }
}
.hero-2 .hero-content .sub-title {
  color: var(--rr-color-heading-primary);
  border-bottom: 3px solid var(--rr-color-theme-primary);
}
.hero-2 .hero-content .sub-title:before {
  display: none;
}
.hero-2 .hero-content .title {
  color: var(--rr-color-heading-primary);
  font-size: 78px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .title {
    font-size: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-2 .hero-content .title {
    font-size: 45px;
  }
}
.hero-2 .hero-content .title span {
  color: var(--rr-color-theme-primary);
  -webkit-text-fill-color: inherit;
  -webkit-text-stroke-width: inherit;
  -webkit-text-stroke-color: inherit;
}
.hero-2 .hero-content p {
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content p br {
    display: none;
  }
}
@media (max-width: 1170px) {
  .hero-2 .hero-content p br {
    display: block;
  }
}

.hero-img-wrap {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  height: 560px;
  z-index: 1;
  margin-left: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .hero-img-wrap {
    max-width: 670px;
  }
}
@media (max-width: 1170px) {
  .hero-img-wrap {
    justify-content: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap {
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap {
    height: auto;
  }
}
.hero-img-wrap .shape {
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-img-wrap .shape {
    left: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap .shape {
    left: 50%;
    top: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .shape {
    top: 28%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .top-right-shape {
    display: none;
  }
}
.hero-img-wrap .top-right-shape .img-shape {
  position: absolute;
}
.hero-img-wrap .top-right-shape .img-shape.shape-1 {
  top: 30px;
  left: 0;
}
.hero-img-wrap .top-right-shape .img-shape.shape-2 {
  top: 30%;
  right: -15px;
}
.hero-img-wrap .round-shape {
  position: absolute;
  bottom: 0;
  left: 35%;
  transform: translate(-50%);
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .round-shape {
    display: none;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-3 .hero-img-box {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1700px) {
  .hero-3 .hero-img-box {
    right: -13%;
  }
}
@media (max-width: 1600px) {
  .hero-3 .hero-img-box {
    right: -20%;
  }
}
@media (max-width: 1399px) {
  .hero-3 .hero-img-box {
    right: -25%;
  }
}
@media (max-width: 1170px) {
  .hero-3 .hero-img-box {
    right: -40%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-3 .hero-img-box {
    display: none;
  }
}
.hero-3 .hero-img-box .shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -13%;
}
.hero-3 .hero-content .sub-title {
  border-bottom: 1px solid var(--rr-color-theme-primary);
}
.hero-3 .hero-content .sub-title:before {
  display: none;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-3 .hero-content .title {
    font-size: 40px;
  }
}
.hero-3 .hero-content p {
  color: var(--rr-color-common-white);
  margin-bottom: 50px;
}
@media (max-width: 1170px) {
  .hero-3 .hero-content p {
    max-width: 500px;
  }
  .hero-3 .hero-content p br {
    display: none;
  }
}
.hero-3 .hero-content .hero-btn-wrap {
  column-gap: 50px;
}
.hero-3 .hero-content .hero-btn-wrap .header-contact {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media only screen and (max-width: 992px) {
  .hero-3 .hero-content .hero-btn-wrap .header-contact {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-3 .hero-content .hero-btn-wrap .header-contact {
    display: none;
  }
}
.hero-3 .hero-content .hero-btn-wrap .header-contact .contact {
  margin-bottom: 0;
}
.hero-3 .hero-content .hero-btn-wrap .header-contact .contact span {
  display: block;
  font-family: var(--rr-ff-body);
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.hero-3 .hero-content .hero-btn-wrap .header-contact .contact a {
  color: var(--rr-color-common-white);
  font-size: 21px;
  font-weight: 700;
}
.hero-3 .hero-content .hero-btn-wrap .header-contact .contact a:hover {
  color: var(--rr-color-theme-primary);
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
.about-img-wrap {
  display: grid;
  grid-template-columns: 235px 1fr;
  grid-gap: 24px;
  max-width: 585px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap {
    grid-template-columns: 135px 1fr;
  }
}
.about-img-wrap .left-img {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  row-gap: 24px;
}
.about-img-wrap .right-img .img-item {
  height: 100%;
}
.about-img-wrap .right-img .img-item img {
  height: 100%;
  object-fit: cover;
}

.about-item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 40px;
  margin-bottom: 40px;
}
.about-item-wrap .about-item {
  padding-left: 20px;
  border-left: 3px solid var(--rr-color-theme-primary);
}
.about-item-wrap .about-item .about-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.about-item-wrap .about-item .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.about-item-wrap .about-item p:last-child {
  margin-bottom: 0;
}

.about-2 .about-img {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .about-2 .about-img {
    margin-bottom: 40px;
  }
}
.about-2 .about-img:before {
  background-color: transparent;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 10px solid var(--rr-color-theme-primary);
  transform: rotate(-5deg);
}
.about-2 .about-img .img-content {
  background-color: var(--rr-color-grey-1);
  position: absolute;
  bottom: 50px;
  left: -40px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding: 15px 20px;
}
@media only screen and (max-width: 767px) {
  .about-2 .about-img .img-content {
    left: 0;
  }
}
.about-2 .about-img .img-content .content-right .title {
  margin-bottom: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .about-2 .about-img .img-content .content-right .title {
    font-size: 18px;
  }
}
.about-2 .about-img .img-content .content-right p {
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .about-2 .about-img .img-content .content-right p {
    font-size: 14px;
  }
  .about-2 .about-img .img-content .content-right p br {
    display: none;
  }
}
.about-2 .about-img .img-content .content-right p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1170px) {
  .about-2 .about-content {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 992px) {
  .about-2 .about-content {
    padding-left: 0;
  }
}
.about-2 .about-content .about-list {
  list-style: none;
  margin-bottom: 40px;
}
.about-2 .about-content .about-list li {
  font-family: var(--rr-ff-heading);
  display: flex;
  align-items: center;
  color: var(--rr-color-text-body);
  text-transform: uppercase;
  font-weight: 700;
}
.about-2 .about-content .about-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.about-2 .about-content .about-list li i {
  color: var(--rr-color-theme-primary);
  margin-right: 10px;
}

.about-section-3 .about-thumb {
  position: relative;
  max-width: 630px;
  width: 100%;
}
.about-section-3 .about-thumb .about-thumb-content {
  background-color: var(--rr-color-common-white);
  padding: 25px 20px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.about-section-3 .about-thumb .about-thumb-content .user {
  background-color: var(--rr-color-theme-primary);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-section-3 .about-thumb .about-thumb-content .thumb-counter .esta {
  font-size: 16px;
  color: var(--rr-color-heading-primary);
}
.about-section-3 .about-thumb .about-thumb-content .thumb-counter .year {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.about-section-3 .about-thumb .about-thumb-content .thumb-counter .year .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
  margin-bottom: 4px;
}
.about-section-3 .about-thumb .about-thumb-content .thumb-counter .year .odometer-formatting-mark {
  display: none;
}
.about-section-3 .about-content {
  padding-left: 40px;
}
@media only screen and (max-width: 992px) {
  .about-section-3 .about-content {
    padding-left: 0;
  }
}

.about-box-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 30px;
}
.about-box-wrap .about-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--rr-color-border-1);
  padding: 15px 20px;
}
.about-box-wrap .about-box .title {
  margin-bottom: 0;
  padding-left: 20px;
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.service-item .service-content {
  text-align: center;
  padding: 50px 40px;
  border: 1px solid var(--rr-color-border-1);
}
.service-item .service-content .service-icon {
  height: 65px;
  width: 65px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.service-item .service-content .service-icon svg {
  color: var(--rr-color-heading-primary);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .service-content .title {
  font-weight: 700;
  margin-bottom: 20px;
}
.service-item .service-content p {
  margin-bottom: 25px;
}
@media (max-width: 1170px) {
  .service-item .service-content p br {
    display: none;
  }
}
.service-item .service-content .read-more {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1;
}
.service-item .service-content .read-more:hover {
  color: var(--rr-color-theme-primary);
}
.service-item .service-thumb {
  height: 250px;
  overflow: hidden;
}
.service-item .service-thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item:hover .service-icon svg {
  color: var(--rr-color-theme-primary);
}
.service-item:hover .service-thumb img {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}

.service-2 {
  margin-bottom: -150px;
  position: relative;
  z-index: 2;
}

.service-box .service-img-wrap {
  position: relative;
}
.service-box .service-img-wrap .service-img {
  height: 270px;
  overflow: hidden;
}
.service-box .service-img-wrap .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.service-box .service-img-wrap .service-icon {
  background-color: var(--rr-color-theme-primary);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  left: 40px;
}
@media only screen and (max-width: 767px) {
  .service-box .service-img-wrap .service-icon {
    left: 20px;
  }
}
.service-box .service-content {
  background-color: var(--rr-color-common-white);
  padding: 70px 40px 40px 40px;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
}
@media only screen and (max-width: 767px) {
  .service-box .service-content {
    padding: 70px 20px 40px 20px;
  }
}
.service-box .service-content .title {
  font-weight: 700;
  margin-bottom: 20px;
}
.service-box .service-content p {
  margin-bottom: 20px;
}
.service-box .service-content .read-more {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1;
}
.service-box .service-content .read-more:hover {
  color: var(--rr-color-theme-primary);
}
.service-box:hover .service-img img {
  transform: scale(1.03);
}

.service-3 .service-item {
  text-align: left;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-3 .service-item:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 0%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service-3 .service-item:hover:before {
  width: 100%;
}
.service-3 .service-item .service-content {
  text-align: left;
  border: 2px solid rgba(221, 221, 221, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .service-3 .service-item .service-content {
    padding: 40px 20px;
  }
}
.service-3 .service-item .service-content .service-icon {
  background-color: rgba(255, 102, 0, 0.1);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-bottom: 25px;
}
.service-3 .service-item .service-content .service-icon img {
  opacity: 0.65;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-3 .service-item .service-content .read-more i {
  color: var(--rr-color-theme-primary);
}
.service-3 .service-item.heading:before {
  display: none;
}
.service-3 .service-item.heading .service-content {
  text-align: left;
  padding: 0;
  border: none;
}
.service-3 .service-item:hover {
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
  border: none;
}
.service-3 .service-item:hover .service-content {
  border: 2px solid transparent;
}
.service-3 .service-item:hover .service-content .service-icon img {
  opacity: 1;
}
.service-3 .service-item:hover.heading {
  box-shadow: none;
}
.service-3 .service-item:hover.heading .service-content {
  border: none;
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Goal CSS
----------------------------------------*/
.goal-section {
  overflow: hidden;
}
@media (max-width: 1399px) {
  .goal-section .section-heading .section-title br {
    display: none;
  }
}
@media (max-width: 1170px) {
  .goal-section .goal-wrap {
    flex-direction: column;
  }
  .goal-section .goal-wrap > div {
    width: 100%;
  }
}

.goal-content .goal-item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 30px;
  margin-bottom: 40px;
}
.goal-content .goal-item-wrap .goal-item {
  background-color: #232323;
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 15px;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .goal-content .goal-item-wrap .goal-item {
    grid-template-columns: 1fr;
    width: 100%;
    grid-gap: 15px;
  }
}
.goal-content .goal-item-wrap .goal-item .goal-icon {
  background-color: var(--rr-color-heading-primary);
  border-radius: 50%;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goal-content .goal-item-wrap .goal-item .goal-icon svg {
  height: 45px;
  width: 45px;
  margin: 0 auto;
  color: var(--rr-color-theme-primary);
}
.goal-content .goal-item-wrap .goal-item .goal-info .title {
  color: var(--rr-color-common-white);
  font-weight: 700px;
  margin-bottom: 15px;
}
.goal-content .goal-item-wrap .goal-item .goal-info p {
  color: var(--rr-color-common-white);
  font-size: 16px;
  opacity: 0.8;
}
.goal-content .goal-item-wrap .goal-item .goal-info p:last-child {
  margin-bottom: 0;
}
.goal-content .goal-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.goal-content .goal-btn-wrap .goal-contact {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.goal-content .goal-btn-wrap .goal-contact .contact-icon {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  font-size: 20px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.goal-content .goal-btn-wrap .goal-contact .number {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.goal-content .goal-btn-wrap .goal-contact .number span {
  display: block;
  margin-bottom: 10px;
}

.goal-img {
  position: relative;
  text-align: right;
  z-index: 1;
}
@media (max-width: 1170px) {
  .goal-img {
    text-align: center;
  }
}
.goal-img .bg-shape {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 170px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .goal-img .bg-shape {
    bottom: 0;
    left: 40%;
  }
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Subscribe CSS
----------------------------------------*/
.subscribe-section {
  position: relative;
  z-index: 1;
}
.subscribe-section .bg-color {
  background-color: var(--rr-color-heading-primary);
  height: 50%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.subscribe-wrap {
  background-color: var(--rr-color-grey-1);
  padding: 0 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .subscribe-wrap {
    padding: 50px 20px 0 20px;
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
.subscribe-wrap .shape {
  background-color: var(--rr-color-theme-primary);
  width: 190px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 80px;
  transform: skew(-25deg);
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .subscribe-wrap .shape {
    left: 0;
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .subscribe-wrap .shape {
    display: none;
  }
}
.subscribe-wrap .subscribe-man {
  text-align: center;
  padding-right: 30px;
}
.subscribe-wrap .subscribe-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 70px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 1170px) {
  .subscribe-wrap .subscribe-content {
    column-gap: 40px;
  }
}
.subscribe-wrap .subscribe-content .section-heading {
  margin-bottom: 0;
}
.subscribe-wrap .subscribe-content .section-heading .section-title {
  margin-bottom: 0;
  font-size: 43px;
}
@media only screen and (max-width: 992px) {
  .subscribe-wrap .subscribe-content .section-heading .section-title {
    font-size: 36px;
  }
}
.subscribe-wrap .subscribe-content .subscribe-form {
  max-width: 430px;
  width: 100%;
  position: relative;
}
.subscribe-wrap .subscribe-content .subscribe-form .form-control {
  border: 1px solid var(--rr-color-border-1);
  padding: 21px 162px 21px 20px;
  box-shadow: none;
  border-radius: 0;
}
.subscribe-wrap .subscribe-content .subscribe-form .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
}
.subscribe-wrap .subscribe-content .subscribe-form .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
}
.subscribe-wrap .subscribe-content .subscribe-form .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
}
.subscribe-wrap .subscribe-content .subscribe-form .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
}
.subscribe-wrap .subscribe-content .subscribe-form .rr-primary-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

/* !END: Theme Subscribe CSS */
/**----------------------------------------
START: Theme Team CSS
----------------------------------------*/
.team-top {
  align-items: end;
}

.team-item .team-thumb {
  height: 390px;
  overflow: hidden;
}
.team-item .team-thumb img {
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content {
  background-color: var(--rr-color-grey-1);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .team-item .team-content {
    padding: 30px 20px;
  }
}
.team-item .team-content .team-author .title {
  font-weight: 700;
}
.team-item .team-content .team-author span {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content .team-social {
  position: relative;
}
.team-item .team-content .team-social .expand {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 15px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.team-item .team-content .team-social .expand:hover {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
}
.team-item .team-content .team-social .social-list {
  position: absolute;
  bottom: 55px;
  right: 0px;
  list-style: none;
}
.team-item .team-content .team-social .social-list li {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item .team-content .team-social .social-list li a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 15px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content .team-social .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.team-item .team-content .team-social .social-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.team-item .team-content .team-social .social-list li:nth-child(4) {
  transition-delay: 100ms;
}
.team-item .team-content .team-social .social-list li:nth-child(3) {
  transition-delay: 150ms;
}
.team-item .team-content .team-social .social-list li:nth-child(2) {
  transition-delay: 200ms;
}
.team-item .team-content .team-social .social-list li:nth-child(1) {
  transition-delay: 250ms;
}
.team-item .team-content .team-social:hover .social-list li {
  visibility: visible;
  opacity: 1;
}
.team-item:hover .team-content {
  background-color: var(--rr-color-heading-primary);
}
.team-item:hover .team-content .team-author .title a {
  color: var(--rr-color-common-white);
}
.team-item:hover .team-content .team-author .title a:hover {
  color: var(--rr-color-theme-primary);
}
.team-item:hover .team-content .team-author span {
  color: var(--rr-color-common-white);
}

/* !END: Theme Team CSS */
/**----------------------------------------
START: Theme Testi CSS
----------------------------------------*/
.testimonial-section {
  position: relative;
  z-index: 1;
}
.testimonial-section .testi-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1170px) {
  .testimonial-section .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .testimonial-section .testi-wrap {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}

.testi-carousel {
  padding-bottom: 20px;
}
.testi-carousel .swiper-pagination {
  bottom: 50px;
  left: 45px;
  text-align: start;
  margin: 0;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--rr-color-theme-primary);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  border: 2px solid var(--rr-color-theme-primary);
  margin: 0;
  opacity: 1;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
  margin-right: 20px;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background-color: transparent;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid var(--rr-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testi-item {
  padding: 40px 40px 80px 40px;
  position: relative;
}
.testi-item .quote {
  position: absolute;
  top: 40px;
  right: 40px;
}
.testi-item .testi-thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.testi-item .testi-content .title {
  font-weight: 700;
  margin-bottom: 15px;
}
.testi-item .testi-content .reviews {
  display: flex;
  align-items: center;
  column-gap: 10px;
  list-style: none;
  margin-bottom: 15px;
}
.testi-item .testi-content .reviews li i {
  color: #F8BC26;
}
.testi-item .testi-content p:last-child {
  margin-bottom: 0;
}

.testi-2 .testi-item-wrapper {
  background-color: var(--rr-color-heading-primary);
  padding: 0 80px 0 80px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .testi-2 .testi-item-wrapper {
    padding: 0 50px;
    padding-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .testi-2 .testi-item-wrapper {
    padding: 0 30px;
    padding-top: 70px;
  }
}
.testi-2 .testi-item-wrapper .bg-color {
  background-color: var(--rr-color-common-white);
  height: 80px;
}
@media only screen and (max-width: 992px) {
  .testi-2 .testi-item-wrapper .bg-color {
    display: none;
  }
}
.testi-2 .testi-item-wrapper .testi-wrap {
  display: flex;
  align-items: end;
  column-gap: 60px;
  flex-wrap: wrap;
  row-gap: 40px;
}
@media only screen and (max-width: 992px) {
  .testi-2 .testi-item-wrapper .testi-wrap {
    justify-content: center;
    align-items: center;
  }
}
.testi-2 .testi-item-wrapper .testi-carousel-wrap {
  background-color: transparent;
  padding: 0;
  position: inherit;
  transform: translate(0);
  max-width: 540px;
}
.testi-2 .testi-item-wrapper .testi-carousel-wrap .swiper-arrow {
  column-gap: 10px;
  position: absolute;
  bottom: auto;
  top: 20px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .testi-2 .testi-item-wrapper .testi-carousel-wrap .swiper-arrow {
    display: none;
  }
}
.testi-2 .testi-item-wrapper .testi-carousel-wrap .swiper-arrow .swiper-nav {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--rr-color-common-white);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testi-2 .testi-item-wrapper .testi-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.testi-2 .testi-item-wrapper .testi-carousel-wrap .swiper-arrow .swiper-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--rr-color-theme-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testi-2 .testi-item-wrapper .testi-carousel-wrap .testi-box .author-box img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-right: 20px;
}
.testi-2 .testi-item-wrapper .testi-carousel-wrap .testi-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 34px;
}
.testi-2 .testi-item-wrapper .sponsor-carousel {
  padding: 90px 0;
}

.bg-color {
  background-color: var(--rr-color-heading-primary);
  height: 45%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testi-wrapper {
  position: relative;
}
.testi-wrapper .testi-img {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .testi-wrapper .testi-img {
    display: none;
  }
}

.testi-carousel-wrap {
  background-color: var(--rr-color-common-dark);
  padding: 60px;
  max-width: 630px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .testi-carousel-wrap {
    padding: 40px 20px;
    position: inherit;
    transform: translateY(0);
  }
}
.testi-carousel-wrap .testi-box .testi-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 30px;
}
.testi-carousel-wrap .testi-box .testi-author-wrap .author {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.testi-carousel-wrap .testi-box .testi-author-wrap .author span {
  font-family: var(--rr-ff-body);
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}
.testi-carousel-wrap .testi-box .testi-author-wrap .reviews {
  display: flex;
  align-items: center;
  column-gap: 10px;
  list-style: none;
}
.testi-carousel-wrap .testi-box .testi-author-wrap .reviews li i {
  color: #F8BC26;
}
.testi-carousel-wrap .testi-box p {
  font-size: 17px;
  font-weight: 400;
}
.testi-carousel-wrap .testi-box p:last-child {
  margin-bottom: 0;
}
.testi-carousel-wrap .swiper-arrow {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -40px;
  right: 0;
}
.testi-carousel-wrap .swiper-arrow .swiper-nav {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testi-carousel-wrap .swiper-arrow .swiper-nav:hover {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
}
.testi-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-testi .testi-img {
  text-align: left;
}

/* !END: Theme Testi CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--rr-color-common-white);
  border-left: 1px solid #eee;
  padding: 60px 50px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: scroll;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 70px;
  color: var(--grey-color);
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 200px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .sidebar-area {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .sidebar-area {
    width: 350px;
    padding: 60px 30px;
  }

  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }

  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
}
.side-menu-about {
  margin: 50px 0 50px 0;
}

.side-menu-about p {
  margin: 25px 0;
}

.side-menu-header h3 {
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 20px;
}

.side-menu-list {
  margin: 25px 0 35px 0;
}

.side-menu-list li {
  display: flex;
  align-items: center;
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: var(--rr-color-theme-primary);
  font-size: 12px;
  color: var(--rr-color-common-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
  background-color: var(--rr-color-theme-primary);
  color: #fff;
}

.side-menu-list li p {
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  font-size: 16px;
  color: var(--rr-color-text-body);
  padding-left: 10px;
}
.side-menu-list li a:hover {
  color: var(--rr-color-theme-primary);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}
.side-menu-social li {
  display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
  margin-right: 10px;
}
.side-menu-social li a {
  background-color: transparent;
  font-size: 17px;
  color: var(--rr-color-heading-primary);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-border-1);
}
.side-menu-social li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.project-section {
  overflow: hidden;
}

.project-item {
  position: relative;
  overflow: hidden;
}
.project-item .project-thumb {
  height: 490px;
  overflow: hidden;
}
.project-item .project-thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.project-item .project-content {
  position: absolute;
  bottom: 30px;
  left: -40px;
  border-right: 5px solid var(--rr-color-theme-primary);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .project-item .project-content {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
}
.project-item .project-content .title {
  background-color: var(--rr-color-heading-primary);
  padding: 20px 30px;
  margin-bottom: 0;
}
.project-item .project-content .title a {
  color: var(--rr-color-common-white);
}
.project-item .project-content .title a:hover {
  color: var(--rr-color-theme-primary);
}
.project-item:hover .project-content {
  visibility: visible;
  opacity: 1;
  left: -1px;
}

.project-carousel {
  overflow: visible;
  padding-bottom: 100px;
}
.project-carousel .swiper-scrollbar {
  background-color: #232323;
  width: 300px;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
}
.project-carousel .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--rr-color-theme-primary);
  width: 100px !important;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.skill-section {
  position: relative;
  z-index: 1;
}
.skill-section .bg-color {
  background-color: var(--rr-color-heading-primary);
  height: 35%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.skill-section.about-page .skill-wrap {
  box-shadow: none;
  padding: 0;
}
.skill-section.about-page .skill-wrap .skill-content {
  padding-right: 40px;
}
@media only screen and (max-width: 992px) {
  .skill-section.about-page .skill-wrap .skill-content {
    padding-right: 0;
  }
}
.skill-section.about-page .skill-wrap .skill-img {
  padding-left: 40px;
}
@media only screen and (max-width: 992px) {
  .skill-section.about-page .skill-wrap .skill-img {
    padding-left: 0;
  }
}

.skill-wrap {
  background-color: var(--rr-color-common-white);
  padding: 120px 80px;
  justify-content: space-between;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
}
@media only screen and (max-width: 992px) {
  .skill-wrap {
    padding: 70px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .skill-wrap {
    padding: 50px 20px;
  }
}
.skill-wrap .skill-img {
  text-align: right;
}
@media only screen and (max-width: 992px) {
  .skill-wrap .skill-img {
    margin-top: 40px;
    text-align: center;
  }
}

.skills-item {
  overflow: hidden;
}
.skills-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.skills-item .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .skills-item .title {
    font-size: 18px;
  }
}
.skills-item .progress {
  height: 12px;
  overflow: visible;
  border-radius: 0;
}
.skills-item .progress .progress-bar {
  position: relative;
  background-color: var(--rr-color-theme-primary);
  overflow: visible;
}
.skills-item .progress .progress-bar span {
  font-size: 24px;
  font-weight: 700;
  background-repeat: no-repeat;
  color: var(--rr-color-heading-primary);
  padding: 10px 10px 20px 10px;
  position: absolute;
  top: -55px;
  right: -11px;
}
@media only screen and (max-width: 767px) {
  .skills-item .progress .progress-bar span {
    font-size: 18px;
    padding-top: 20px;
    top: -60px;
  }
}

.skill-2 .skills-items {
  padding-right: 30px;
}
@media only screen and (max-width: 992px) {
  .skill-2 .skills-items {
    padding: 0;
  }
}
.skill-2 .skills-items.item-2 {
  padding-right: 0;
  padding-left: 30px;
}
@media only screen and (max-width: 992px) {
  .skill-2 .skills-items.item-2 {
    padding: 0;
    padding-top: 16px;
  }
}

.skill-top {
  align-items: end;
}
.skill-top p {
  max-width: 600px;
  width: 100%;
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Feature CSS
----------------------------------------*/
.feature-item {
  background-color: var(--rr-color-grey-1);
  padding: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .feature-item {
    padding: 40px 20px;
  }
}
.feature-item .shape {
  position: absolute;
  bottom: -30px;
  right: -30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.feature-item .feature-icon {
  background-color: var(--rr-color-theme-primary);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.feature-item .feature-icon svg {
  color: var(--rr-color-common-white);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.feature-item .feature-content .title {
  font-weight: 700;
  margin-bottom: 20px;
}
.feature-item .feature-content p {
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.feature-item .feature-content .read-more {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.feature-item .feature-content .read-more i {
  color: var(--rr-color-theme-primary);
}
.feature-item .feature-content .read-more:hover {
  color: var(--rr-color-theme-primary);
}
.feature-item:hover {
  background-color: var(--rr-color-theme-primary);
}
.feature-item:hover .shape {
  visibility: visible;
  opacity: 1;
  right: 0;
  bottom: 0;
}
.feature-item:hover .feature-icon {
  background-color: var(--rr-color-common-white);
}
.feature-item:hover .feature-icon svg {
  color: var(--rr-color-theme-primary);
}
.feature-item:hover .feature-content .title a {
  color: var(--rr-color-common-white);
}
.feature-item:hover .feature-content p {
  color: var(--rr-color-common-white);
}
.feature-item:hover .feature-content .read-more {
  color: var(--rr-color-common-white);
}
.feature-item:hover .feature-content .read-more i {
  color: var(--rr-color-common-white);
}

.feature-wrap {
  max-width: 1540px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  padding: 260px 0 120px 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .feature-wrap {
    padding: 220px 0 70px 0;
  }
}
.feature-wrap .feature-img {
  background-image: url(../img/images/feature-img-1.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.feature-wrap .overlay {
  background-image: url(../img/shapes/overlay-shape.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.feature-info .about-box-wrap {
  margin-top: 40px;
}
.feature-info .about-box-wrap .about-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-info .about-box-wrap .about-box .title {
  color: var(--rr-color-common-white);
}

/* !END: Theme Feature CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.counter-1 .counter-item {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .counter-1 .counter-item {
    margin-bottom: 30px;
  }
}
.counter-1 .counter-item:before {
  background-color: #333333;
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: -5px;
}
@media only screen and (max-width: 767px) {
  .counter-1 .counter-item:before {
    display: none;
  }
}
.counter-1 .counter-item.item-2:before {
  display: none;
}
@media only screen and (max-width: 767px) {
  .counter-1 .counter-item.item-2 {
    margin-bottom: 0px;
  }
}
.counter-1 .counter-item .counter-icon {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .counter-1 .counter-item .counter-icon {
    margin-bottom: 15px;
  }
}
.counter-1 .counter-item .title {
  color: var(--rr-color-common-white);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 0;
}
.counter-1 .counter-item .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
  margin-bottom: 4px;
}
.counter-1 .counter-item p {
  font-size: 16px;
  color: var(--rr-color-common-white);
  margin-bottom: 0;
}
.counter-1.bright-color .counter-item:before {
  background-color: var(--rr-color-border-1);
}
.counter-1.bright-color .counter-item .title {
  color: var(--rr-color-heading-primary);
  margin-bottom: 10px;
}
.counter-1.bright-color .counter-item p {
  color: var(--rr-color-heading-primary);
}
.counter-1.bright-color .counter-item .counter-icon {
  margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
  .counter-2 .counter-info {
    margin-bottom: 40px;
  }
}
.counter-2 .counter-info .counter-list {
  margin-bottom: 50px;
}
.counter-2 .counter-info .counter-list li {
  font-family: var(--rr-ff-heading);
  display: flex;
  align-items: center;
  color: var(--rr-color-common-white);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.counter-2 .counter-info .counter-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.counter-2 .counter-info .counter-list li i {
  color: var(--rr-color-theme-primary);
  margin-right: 15px;
}
.counter-2 .counter-item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .counter-2 .counter-item-wrap {
    grid-gap: 40px;
  }
}
.counter-2 .counter-item-wrap .center-icon {
  background-color: var(--rr-color-theme-primary);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.counter-2 .counter-item-wrap .center-icon .ripple:before, .counter-2 .counter-item-wrap .center-icon .ripple:after {
  width: 80px;
  height: 80px;
  z-index: -1;
}
.counter-2 .counter-item-wrap .counter-item {
  background-color: rgba(255, 255, 255, 0.04);
  text-align: center;
  padding: 30px 0;
}
.counter-2 .counter-item-wrap .counter-item .title {
  font-size: 48px;
  font-weight: 600;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 767px) {
  .counter-2 .counter-item-wrap .counter-item .title {
    font-size: 40px;
  }
}
.counter-2 .counter-item-wrap .counter-item .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
  margin-bottom: 4px;
}
.counter-2 .counter-item-wrap .counter-item p {
  color: var(--rr-color-common-white);
  margin-bottom: 0;
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Booking CSS
----------------------------------------*/
.booking-section {
  position: relative;
  z-index: 1;
}
.booking-section .bg-color {
  background-color: var(--rr-color-heading-primary);
  width: 100%;
  height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.booking-wrap {
  position: relative;
}

.booking-form {
  background-color: var(--rr-color-common-white);
  max-width: 630px;
  width: 100%;
  padding: 60px;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .booking-form {
    padding: 30px 25px;
    position: inherit;
    transform: translate(0);
  }
}
.booking-form .form-group .form-control {
  padding: 17px 15px;
  margin-bottom: 20px;
  box-shadow: none;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 0;
}
.booking-form .form-group .submit-btn .rr-primary-btn {
  width: 100%;
  justify-content: center;
}

.booking-img {
  text-align: right;
}

/* !END: Theme Booking CSS */
/**----------------------------------------
START: Theme Pricing CSS
----------------------------------------*/
.pricing-item {
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
}
.pricing-item .pricing-category {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  padding: 40px;
  margin-bottom: 0;
}
.pricing-item .pricing {
  background-color: var(--rr-color-heading-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}
.pricing-item .pricing .title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 0;
}
.pricing-item .pricing .title span {
  font-size: 24px;
  font-weight: 700;
}
.pricing-item .pricing-content {
  padding: 40px;
}
.pricing-item .pricing-content p {
  margin-bottom: 30px;
}
@media (max-width: 1170px) {
  .pricing-item .pricing-content p br {
    display: none;
  }
}
.pricing-item .pricing-content .pricing-list li {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.pricing-item .pricing-content .pricing-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.pricing-item .pricing-content .pricing-list li i {
  color: var(--rr-color-heading-primary);
  margin-right: 10px;
}
.pricing-item .pricing-content .pricing-btn {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  border: 1px solid var(--rr-color-border-1);
}
.pricing-item .pricing-content .pricing-btn:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.pricing-item.active .pricing {
  background-color: var(--rr-color-theme-primary);
}
.pricing-item.active .pricing-content .pricing-list li i {
  color: var(--rr-color-theme-primary);
}
.pricing-item.active .pricing-content .pricing-btn {
  border: 1px solid var(--rr-color-theme-primary);
}

/* !END: Theme Pricing CSS */
/**----------------------------------------
START: Theme Process CSS
----------------------------------------*/
.process-item {
  position: relative;
}
.process-item .shape {
  position: absolute;
  top: 20%;
  right: -45px;
}
@media only screen and (max-width: 992px) {
  .process-item .shape {
    display: none;
  }
}
.process-item .process-icon {
  height: 125px;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .process-item .process-icon {
    margin-bottom: 20px;
  }
}
.process-item .title {
  font-weight: 700;
  margin-bottom: 25px;
}
@media only screen and (max-width: 992px) {
  .process-item .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 1170px) {
  .process-item p br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .process-item p br {
    display: block;
  }
}
.process-item p:last-child {
  margin-bottom: 0;
}

/* !END: Theme Process CSS */
/**----------------------------------------
START: Theme Experiance CSS
----------------------------------------*/
.experiance-section {
  position: relative;
  z-index: 1;
}
.experiance-section .bg-color {
  background-color: var(--rr-color-grey-1);
  width: 100%;
  height: 50%;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.exp-content-wrap {
  background-color: var(--rr-color-common-white);
  height: 100%;
  display: flex;
  align-items: center;
}

.exp-content {
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
  padding: 40px;
  height: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .exp-content {
    padding: 30px 20px;
  }
}
.exp-content .exp-contact {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media only screen and (max-width: 992px) {
  .exp-content .exp-contact {
    margin-right: 40px;
  }
}
.exp-content .exp-contact .exp-img {
  height: 55px;
  width: 55px;
}
.exp-content .exp-contact .exp-img img {
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.exp-content .exp-contact .contact {
  margin-bottom: 0;
}
.exp-content .exp-contact .contact span {
  display: block;
  font-family: var(--rr-ff-body);
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.exp-content .exp-contact .contact a {
  font-size: 21px;
  font-weight: 700;
}

.exp-img {
  height: 440px;
  position: relative;
}
.exp-img img {
  height: 100%;
  object-fit: cover;
}
.exp-img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.exp-img .play-btn a {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 30px;
  height: 108px;
  width: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@-webkit-keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
/* !END: Theme Experiance CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.blog-carousel {
  position: relative;
}

.post-card .post-thumb {
  position: relative;
  height: 237px;
  overflow: hidden;
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.post-card .post-thumb .category {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.post-card .post-content-wrap .post-meta {
  background-color: var(--rr-color-grey-1);
  display: flex;
  align-items: center;
  list-style: none;
  padding: 15px 30px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.post-card .post-content-wrap .post-meta li {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-card .post-content-wrap .post-meta li i {
  font-size: 14px;
  color: var(--rr-color-heading-primary);
}
.post-card .post-content-wrap .post-meta li:not(:last-of-type) {
  margin-right: 20px;
}
.post-card .post-content-wrap .post-meta li a:hover {
  color: var(--rr-color-theme-primary);
}
.post-card .post-content {
  padding: 30px 30px;
  border-top: none;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
}
@media only screen and (max-width: 767px) {
  .post-card .post-content {
    padding: 30px 20px;
  }
}
.post-card .post-content .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.post-card .post-content .title a {
  background: linear-gradient(var(--rr-color-theme-primary) 0%, var(--rr-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card .post-content .title a:hover {
  color: var(--rr-color-theme-primary);
  background-size: 100% 2px;
}
.post-card .post-content .desc {
  margin-bottom: 20px;
}
.post-card .post-content .read-more {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card .post-content .read-more:hover {
  color: var(--rr-color-theme-primary);
}
.post-card .post-review-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.post-card .post-review-wrap .review {
  list-style: none;
}
.post-card .post-review-wrap .review li {
  display: inline-flex;
  font-size: 14px;
  color: var(--rr-color-theme-secondary);
  margin-right: 5px;
}
.post-card .post-review-wrap .review li span {
  line-height: 1;
}
.post-card .post-review-wrap a {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-text-body);
  display: inline-block;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card .post-review-wrap a:hover {
  color: var(--rr-color-theme-primary);
}
.post-card:hover .post-thumb img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.post-card.blog-2 .post-thumb-wrap {
  position: relative;
}
.post-card.blog-2 .post-thumb-wrap .category {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-family: var(--rr-ff-body);
  font-size: 16px;
  font-weight: 400;
  padding: 15px 20px;
  border-radius: 0;
  position: absolute;
  bottom: -32px;
  right: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .post-card.blog-2 .post-thumb-wrap .category {
    bottom: -20px;
  }
}
.post-card.blog-2 .post-thumb-wrap .category i {
  font-size: 13px;
  margin-right: 10px;
}
.post-card.blog-2 .post-content-wrap .post-meta {
  background-color: var(--rr-color-common-white);
  padding: 0;
  margin-bottom: 20px;
}
.post-card.blog-2 .post-content-wrap .post-meta i {
  color: var(--rr-color-theme-primary);
  margin-bottom: 2px;
}
.post-card.blog-2 .post-content-wrap .post-content p {
  margin-bottom: 25px;
}
.post-card.blog-2 .post-content-wrap .post-content .rr-primary-btn {
  background-color: transparent;
  color: var(--rr-color-heading-primary);
  border: 1px solid var(--rr-color-theme-primary);
}
.post-card.blog-2 .post-content-wrap .post-content .rr-primary-btn:before {
  background-color: var(--rr-color-heading-primary);
}
.post-card.blog-2 .post-content-wrap .post-content .rr-primary-btn:hover {
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-heading-primary);
}
.post-card.blog-page {
  margin-bottom: 60px;
}
.post-card.blog-page .post-thumb-wrap .post-thumb {
  height: 420px;
}
.post-card.blog-page .post-thumb-wrap .category-wrap {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -32px;
  right: 20px;
  width: 100%;
}
.post-card.blog-page .post-thumb-wrap .category-wrap .category {
  background-color: var(--rr-color-heading-primary);
  color: var(--rr-color-common-white);
  position: inherit;
  bottom: 0;
  right: 0;
}
.post-card.blog-page .post-thumb-wrap .category-wrap .category i {
  color: var(--rr-color-theme-primary);
}
.post-card.blog-page .post-content .title {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .post-card.blog-page .post-content .title br {
    display: none;
  }
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  column-gap: 10px;
}
.pagination-wrap li a {
  background-color: var(--rr-color-grey-1);
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-weight: 700;
  height: 60px;
  width: 60px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pagination-wrap li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.pagination-wrap li .active {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Page Header CSS
----------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.page-header .overlay {
  background-color: rgba(23, 23, 23, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-header .page-header-content {
  padding: 200px 0;
}
@media only screen and (max-width: 992px) {
  .page-header .page-header-content {
    padding: 100px 0 100px 50px;
  }
}
.page-header .page-header-content .title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .page-header .page-header-content .title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .title {
    font-size: 36px;
  }
}
.page-header .page-header-content .sub-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-header .page-header-content .sub-title .home {
  position: relative;
  padding-right: 25px;
  margin-right: 20px;
}
.page-header .page-header-content .sub-title .home:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 13px;
  font-weight: 700;
  content: "";
  color: var(--rr-color-theme-primary);
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* !END: Theme Page Header CSS */
/**----------------------------------------
START: Theme Pricing CSS
----------------------------------------**/
.service-sidebar .sidebar-list {
  list-style: none;
  margin-bottom: 40px;
}
.service-sidebar .sidebar-list li {
  text-align: center;
}
.service-sidebar .sidebar-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.service-sidebar .sidebar-list li a {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 21px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-border-1);
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .service-sidebar .sidebar-list li a {
    font-size: 13px;
  }
}
.service-sidebar .sidebar-list li a:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.service-sidebar .sidebar-box {
  position: relative;
  margin-bottom: 40px;
}
.service-sidebar .sidebar-box img {
  width: 100%;
}
.service-sidebar .sidebar-box .content {
  background-color: rgba(23, 23, 23, 0.8);
  padding: 30px 40px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
}
.service-sidebar .sidebar-box .content .title {
  font-size: 15px;
  line-height: 1.8;
}
.service-sidebar .sidebar-box .content .number {
  color: var(--rr-color-common-white);
  font-weight: 700;
  font-size: 30px;
  display: block;
}
.service-sidebar .sidebar-box .content .mail {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 400;
}

.service-details-content img {
  width: 100%;
}
.service-details-content .title {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0;
}
.service-details-content .service-details-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 2;
  grid-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .service-details-content .service-details-items {
    grid-template-columns: 1fr;
  }
}
.service-details-content .service-details-items .service-details-item {
  position: relative;
}
.service-details-content .service-details-items .service-details-item .icon {
  background-color: var(--rr-color-theme-primary);
  height: 88px;
  width: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.service-details-content .service-details-items .service-details-item .icon img {
  width: 65px;
  height: 65px;
}
.service-details-content .service-details-items .service-details-item .item-content {
  padding: 20px 20px 20px 60px;
  border: 1px solid var(--rr-color-border-1);
  margin-left: 50px;
}
.service-details-content .service-details-items .service-details-item .item-content .item-title {
  font-weight: 700;
  margin-bottom: 15px;
}
.service-details-content .service-details-items .service-details-item .item-content p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .service-details-content .service-details-items .service-details-item .item-content p br {
    display: none;
  }
}
.service-details-content .service-video-box {
  position: relative;
}
.service-details-content .service-video-box .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-details-content .service-video-box .video-btn a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  font-size: 22px;
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-details-content .service-video-box .video-btn a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.service-details-content .service-video-box .video-btn i {
  margin-top: 10px;
  line-height: 1;
}

/* !END: Theme Pricing CSS */
/**----------------------------------------
START: Theme Project Details CSS
----------------------------------------*/
.project-details .project-details-img {
  margin-bottom: 50px;
  position: relative;
}
.project-details .project-details-img img {
  max-width: 1180px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .project-details .project-details-img img {
    height: 500px;
    object-fit: cover;
  }
}
.project-details .project-details-img .details-list {
  background-color: var(--rr-color-grey-1);
  position: absolute;
  bottom: 50px;
  right: 0;
  padding: 50px 40px;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .project-details .project-details-img .details-list {
    padding: 30px 20px;
  }
}
.project-details .project-details-img .details-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.project-details .project-details-img .details-list li i {
  color: var(--rr-color-theme-primary);
  margin-right: 10px;
}
.project-details .project-details-img .details-list li span {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.project-details .project-details-img .details-list li .name {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-weight: 700;
  text-transform: uppercase;
  width: 100px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .project-details .main-title {
    font-size: 38px;
  }
}
.project-details .details-img-wrap {
  display: flex;
  align-items: center;
  column-gap: 24px;
  flex-wrap: wrap;
  row-gap: 24px;
}
.project-details .project-details-info .sub-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.project-details .project-details-info ul {
  margin: 30px 0 30px 0;
  list-style: none;
}
.project-details .project-details-info ul li {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.project-details .project-details-info ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
.project-details .project-details-info ul li i {
  color: var(--rr-color-theme-primary);
}

/* !END: Theme Project Details CSS */
/**----------------------------------------
START: Theme Team Details CSS
----------------------------------------*/
.team-details .team-details-info {
  padding-left: 50px;
}
@media only screen and (max-width: 992px) {
  .team-details .team-details-info {
    padding-left: 0;
    margin-top: 40px;
  }
}
.team-details .team-details-info .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.team-details .team-details-info .name span {
  color: var(--rr-color-theme-primary);
  font-size: 15px;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}
.team-details .team-details-info .info-list {
  list-style: none;
  margin: 30px 0 50px 0;
}
.team-details .team-details-info .info-list li {
  display: flex;
  align-items: center;
}
.team-details .team-details-info .info-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.team-details .team-details-info .info-list li .list-left {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  width: 115px;
  display: block;
}
.team-details .team-details-info .social-list li {
  display: inline-flex;
}
.team-details .team-details-info .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.team-details .team-details-info .social-list li a {
  background-color: #F3F6FF;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rr-color-heading-primary);
  border-radius: 50%;
}
.team-details .team-details-info .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.team-details-content .details-header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-skill .skills-items .skills-item {
  text-transform: uppercase;
}
.team-skill .skills-items .skills-item .title {
  font-size: 15px;
}
.team-skill .skills-items .skills-item .progress {
  background-color: rgba(255, 102, 0, 0.2);
  height: 8px;
}
.team-skill .skills-items .skills-item .progress .progress-bar span {
  font-size: 15px;
  top: -45px;
}

/* !END: Theme Pricing CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-wrap {
  background-color: var(--rr-color-grey-1);
  padding: 60px;
  align-items: end;
}
@media only screen and (max-width: 767px) {
  .contact-wrap {
    padding: 40px 20px;
  }
}
.contact-wrap .section-heading .section-title {
  margin: 0;
}

@media only screen and (max-width: 992px) {
  .contact-form {
    margin-bottom: 60px;
  }
}
.contact-form .form-item-wrap {
  margin-bottom: 23px;
}
.contact-form .form-item-wrap .form-item {
  position: relative;
}
.contact-form .form-item-wrap .form-item .form-control {
  background-color: var(--rr-color-common-white);
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 18px 20px;
  font-size: 14px;
}
.contact-form .form-item-wrap .form-item .form-control::-webkit-input-placeholder {
  font-size: 14px;
}
.contact-form .form-item-wrap .form-item .form-control:-moz-placeholder {
  font-size: 14px;
}
.contact-form .form-item-wrap .form-item .form-control::-moz-placeholder {
  font-size: 14px;
}
.contact-form .form-item-wrap .form-item .form-control:-ms-input-placeholder {
  font-size: 14px;
}
.contact-form .form-item-wrap .form-item .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--rr-color-heading-primary);
}
.contact-form .form-item-wrap .form-item.address .icon {
  top: 25px;
}
.contact-form .submit-btn .rr-primary-btn {
  width: 100%;
  justify-content: center;
}

.contact-box {
  background-color: var(--rr-color-common-white);
  padding: 30px 25px;
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 20px;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
}
.contact-box:not(:last-of-type) {
  margin-bottom: 45px;
}
.contact-box .icon {
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--rr-color-theme-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-box .content .title {
  font-weight: 700;
}
.contact-box .content .contact-info {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 5px;
}
.contact-box .content .contact-info span {
  font-size: 16px;
  color: var(--rr-color-heading-primary);
}

.map-wrapper {
  margin-bottom: -10px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Blog Details CSS
----------------------------------------*/
.blog-details-thumb {
  position: relative;
}
.blog-details-thumb img {
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .blog-details-thumb img {
    height: 300px;
  }
}
.blog-details-thumb .post-meta {
  background-color: var(--rr-color-common-white);
  list-style: none;
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  padding: 15px 30px;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
  position: absolute;
  bottom: -30px;
  left: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .blog-details-thumb .post-meta {
    padding: 15px;
    left: 20px;
  }
}
.blog-details-thumb .post-meta li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog-details-thumb .post-meta li i {
  color: var(--rr-color-theme-primary);
}

.blog-details-content {
  padding: 70px 30px;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
}
@media only screen and (max-width: 992px) {
  .blog-details-content {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-content {
    padding: 50px 20px;
  }
}
.blog-details-content .details-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.blog-details-content .details-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 70px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.blog-details-content .details-list-wrap li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 400;
}
.blog-details-content .details-list-wrap li:not(:last-of-type) {
  margin-bottom: 15px;
}
.blog-details-content .details-list-wrap li i {
  color: var(--rr-color-theme-primary);
}
.blog-details-content blockquote {
  background-color: var(--rr-color-grey-1);
  padding: 40px 30px;
  position: relative;
  border-bottom: 3px solid var(--rr-color-theme-primary);
  margin: 40px 0;
}
.blog-details-content blockquote .quote {
  position: absolute;
  top: 40px;
  right: 30px;
}
.blog-details-content blockquote .author {
  font-size: 24px;
  font-weight: 700;
  color: var(--rr-color-heading-primary);
}
.blog-details-content blockquote span {
  display: block;
  margin-bottom: 30px;
}
.blog-details-content .blog-details-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
  row-gap: 30px;
}
.blog-details-content .blog-details-wrap ul li {
  font-family: var(--rr-ff-heading);
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-details-content .blog-details-wrap ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.blog-details-content .blog-details-wrap ul li i {
  color: var(--rr-color-theme-primary);
}
.blog-details-content .tags {
  display: flex;
  align-items: center;
  margin: 50px 0;
}
.blog-details-content .tags .tag {
  color: var(--rr-color-heading-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.blog-details-content .tags ul {
  list-style: none;
  margin-left: 40px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.blog-details-content .tags ul li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--rr-color-text-body);
  padding: 6px 20px;
  border: 1px solid var(--rr-color-border-1);
}
.blog-details-content .tags ul li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.blog-details-content .next-prev-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  padding: 15px 0;
  border-top: 1px solid var(--rr-color-border-1);
  border-bottom: 1px solid var(--rr-color-border-1);
  margin: 50px 0 70px 0;
}
.blog-details-content .next-prev-wrap .post-btn {
  margin-bottom: 0;
}
.blog-details-content .next-prev-wrap .post-btn a {
  font-size: 16px;
  font-weight: 600;
  column-gap: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog-details-content .next-prev-wrap .social-list {
  display: flex;
  align-items: center;
  column-gap: 15px;
  list-style: none;
}
.blog-details-content .next-prev-wrap .social-list li a {
  color: var(--rr-color-heading-primary);
  font-size: 15px;
}
.blog-details-content .next-prev-wrap .social-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.blog-details-content .blog-form .form-header {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blog-details-content .blog-form .form-group .form-control {
  color: var(--rr-color-text-body);
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--rr-color-border-1);
  padding: 15px;
  padding-left: 0;
  margin-bottom: 30px;
  border-radius: 0;
}
.blog-details-content .blog-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control option {
  padding: 10px;
}
.blog-details-content .blog-form .submit-btn .rr-primary-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.sidebar-widget {
  padding: 40px 30px;
  box-shadow: 0px 0px 20px 0px rgba(19, 16, 34, 0.1);
}
@media only screen and (max-width: 767px) {
  .sidebar-widget {
    padding: 30px 20px;
  }
}
.sidebar-widget:not(:last-of-type) {
  margin-bottom: 50px;
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form .form-control {
  border: none;
  border-bottom: 1px solid var(--rr-color-border-1);
  border-radius: 0;
  box-shadow: none;
  padding-left: 0px;
  padding-right: 30px;
}
.sidebar-widget .search-form .search-btn {
  color: var(--rr-color-theme-primary);
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.sidebar-widget .widget-title {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 30px;
}
.sidebar-widget .category-list li {
  display: flex;
  align-items: center;
  font-family: var(--rr-ff-body);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.sidebar-widget .category-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .category-list li:hover {
  color: var(--rr-color-theme-primary);
}
.sidebar-widget .category-list li i {
  color: var(--rr-color-theme-primary);
  padding-right: 10px;
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 20px;
}
.sidebar-widget .tags li a {
  font-family: var(--rr-ff-body);
  font-size: 16px;
  font-weight: 400;
  padding: 5px 15px;
  border: 1px solid var(--rr-color-border-1);
}
.sidebar-widget .tags li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}
.sidebar-widget .sidebar-post {
  background-color: var(--rr-color-grey-1);
  display: grid;
  align-items: center;
  grid-template-columns: 82px 1fr;
  grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .sidebar-post img {
  height: 100%;
  object-fit: cover;
}
.sidebar-widget .sidebar-post .post-content {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content {
    padding-left: 10px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 5px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta {
    column-gap: 5px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 13px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li i {
  color: var(--rr-color-theme-primary);
}
.sidebar-widget .sidebar-post .post-content .title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--rr-color-theme-primary);
}

.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Theme Pricing CSS
----------------------------------------*/
.error-form {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.error-form .form-control {
  padding: 27px 0;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 0;
  padding-left: 20px;
  padding-right: 100px;
  box-shadow: none;
  margin: 50px 0;
}
.error-form button {
  background-color: var(--rr-color-heading-primary);
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--rr-color-common-white);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.error-form button:hover {
  background-color: var(--rr-color-theme-primary);
}

/* !END: Theme Pricing CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section .shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.footer-section .footer-wrap {
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .footer-section .footer-wrap {
    margin-bottom: 20px;
  }
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 60px;
  row-gap: 30px;
  margin-bottom: 50px;
  padding: 30px 0;
  border-bottom: 2px solid var(--rr-color-common-dark);
}
@media only screen and (max-width: 992px) {
  .footer-top {
    column-gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-top .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.footer-top .social-list li a {
  background-color: transparent;
  color: var(--rr-color-common-white);
  font-size: 14px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-common-dark);
}
.footer-top .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}
.footer-top .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .widget-header {
  color: var(--rr-color-common-white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 35px;
}
.footer-widget p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li a {
  font-family: var(--rr-ff-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.footer-widget .footer-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-widget .footer-form {
  position: relative;
  margin-top: 30px;
}
.footer-widget .footer-form .form-control {
  background-color: var(--rr-color-common-dark);
  padding: 15px 70px 15px 15px;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.footer-widget .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .submit {
  background-color: var(--rr-color-theme-primary);
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 60px;
  font-size: 18px;
}
.footer-widget .address-list {
  list-style: none;
  margin-bottom: 30px;
}
.footer-widget .address-list li {
  font-family: var(--rr-ff-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  column-gap: 10px;
}
.footer-widget .address-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-widget .address-list li i {
  color: var(--rr-color-theme-primary);
  line-height: 1;
  margin-top: 6px;
}
.footer-widget .address-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.footer-widget .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.footer-widget .social-list li a {
  background-color: transparent;
  color: var(--rr-color-common-white);
  font-size: 14px;
  height: 40px;
  width: 40px;
  border-radius: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-widget .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.footer-widget .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.footer-widget.widget-2 {
  padding-left: 70px;
}
@media only screen and (max-width: 992px) {
  .footer-widget.widget-2 {
    padding-left: 0;
  }
}
.footer-widget.widget-2 .footer-list li a {
  position: relative;
  padding-left: 30px;
}
@media (max-width: 1170px) {
  .footer-widget.widget-2 .footer-list li a {
    font-size: 14px;
    padding-left: 17px;
  }
}
.footer-widget.widget-2 .footer-list li a:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "";
  color: var(--rr-color-theme-primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1170px) {
  .footer-widget.widget-2 .footer-list li a:before {
    font-size: 10px;
  }
}
.footer-widget.widget-3 {
  padding-left: 30px;
}
@media only screen and (max-width: 992px) {
  .footer-widget.widget-3 {
    padding-left: 0;
  }
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  padding: 30px 0;
  border-top: 2px solid var(--rr-color-common-dark);
}
@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
    flex-direction: column-reverse;
    row-gap: 10px;
    padding: 40px 0;
  }
}
.copyright-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-family: var(--rr-ff-body);
  margin: 0;
}
.copyright-content p span {
  color: var(--rr-color-theme-primary);
}
.copyright-content ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .copyright-content ul {
    justify-content: center;
  }
}
.copyright-content ul li a {
  font-family: var(--rr-ff-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1;
}
.copyright-content ul li a:hover {
  color: var(--rr-color-theme-primary);
}
.copyright-content ul li:not(:last-of-type) {
  margin-right: 30px;
}

.footer-2 {
  padding-top: 80px;
}
.footer-2 .footer-widget .footer-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.footer-2 .footer-widget.widget-2 {
  padding-left: 0;
}
.footer-2 .footer-widget.widget-2 .footer-list li a {
  padding-left: 0;
}
.footer-2 .footer-widget.widget-2 .footer-list li a:before {
  display: none;
}

.footer-items {
  background-color: var(--rr-color-common-dark);
  padding: 20px 35px;
  margin-bottom: 90px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer-items {
    row-gap: 40px;
    padding: 50px 30px;
  }
}
.footer-items .footer-item {
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  grid-gap: 15px;
  position: relative;
}
@media (max-width: 1170px) {
  .footer-items .footer-item {
    grid-template-columns: 1fr;
  }
}
.footer-items .footer-item span {
  color: var(--rr-color-common-white);
}
.footer-items .footer-item ul {
  list-style: none;
}
.footer-items .footer-item ul li {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 400;
}
.footer-items .footer-item ul li:not(:last-of-type) {
  margin-bottom: 5px;
}
.footer-items .footer-item ul li a {
  color: var(--rr-color-common-white);
}
.footer-items .footer-item ul li a:hover {
  color: var(--rr-color-theme-primary);
}
.footer-items .footer-item.item-3, .footer-items .footer-item.item-2 {
  position: relative;
}
.footer-items .footer-item.item-3:before, .footer-items .footer-item.item-2:before {
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1170px) {
  .footer-items .footer-item.item-3:before, .footer-items .footer-item.item-2:before {
    display: none;
  }
}
.footer-items .footer-item.item-2 {
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-items .footer-item.item-2 {
    padding-left: 0;
  }
}
.footer-items .footer-item.item-2:before {
  left: -50px;
}
.footer-items .footer-item.item-3 {
  padding-left: 100px;
}
@media only screen and (max-width: 767px) {
  .footer-items .footer-item.item-3 {
    padding-left: 0;
  }
}

/*Scrool Up*/
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
}

.scroll-to-top {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--rr-color-theme-primary);
  font-size: 20px;
  padding: 0;
  line-height: 40px;
  color: var(--rr-color-common-white);
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}

#scrollup.show {
  opacity: 1;
}

#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* !END: Theme Footer CSS */

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