@import url("https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --rr-ff-body: 'Poppins', sans-serif;
  --rr-ff-heading: 'Poppins', serif;
  --rr-ff-p: 'Poppins', 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: 60px;
  --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: #fff;
  --rr-color-text-body-light: #74787C;
  --rr-color-theme-primary: #cc0003;
  --rr-color-theme-secondary: #ffc226;
  --rr-color-bg-1: #11151C;
  --rr-color-grey-1: #F8F8F8;
  --rr-color-grey-2: #2D343E;
  --rr-color-grey-light: #F2F3F4;
  --rr-color-border-1: #1E2228;
  --rr-color-border-light: #E4E4E4;
  --bs-btn-font-family: 'Poppins';
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 150px;
}
body {
  background-color: #02050A;
  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-common-white);
  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);
}

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;
}

.section-heading {
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 40px;
  }
}
.section-heading .bg-text {
  font-size: 150px;
  font-weight: 700;
  color: var(--rr-color-bg-1);
  text-transform: uppercase;
  line-height: 1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1170px) {
  .section-heading .bg-text {
    font-size: 100px;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .bg-text {
    font-size: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .bg-text {
    font-size: 40px;
  }
}
.section-heading .sub-heading {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-theme-primary);
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  padding: 0 50px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .section-heading .sub-heading {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .sub-heading {
    font-size: 12px;
  }
}
.section-heading .sub-heading:after, .section-heading .sub-heading:before {
  background: linear-gradient(270deg, #cc00037a 0%, transparent 100%);
  content: "";
  width: 37px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0;
  -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;
}
.section-heading .sub-heading:after {
  background: linear-gradient(90deg, #cc00037a 0%, transparent 100%);
  left: auto;
  right: 10px;
}
.section-heading .sub-heading.active:before {
  left: 0;
  opacity: 1;
}
.section-heading .sub-heading.active:after {
  right: 0;
  opacity: 1;
}
.section-heading .sub-heading.after-none:after {
  display: none;
}
.section-heading .section-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  display: block;
  margin-bottom: 0;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1170px) {
  .section-heading .section-title {
    font-size: 40px;
    max-width: 550px;
    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;
    max-width: 100%;
  }
}
@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;
  }
}
.section-heading.heading-3 .section-title {
  font-size: 40px;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .section-heading.heading-3 .section-title {
    font-size: 28px;
    line-height: 1.4;
  }
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  /* margin-bottom: 20px; */
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 40px;
  }
}

.t-up {
  text-transform: uppercase;
}

.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);
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 170px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  background-color: transparent;
  width: 40%;
  position: absolute;
  top: 20px;
  display: contents;
  left: 0;
  z-index: 99;
}
@media only screen and (max-width: 992px) {
  .header {
    position: relative;
    top: 0;
    height: auto !important;
  }
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1170px) {
  .header .primary-header-inner {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 0px;
    margin-top: -30px;
    justify-content: end;
  }
}
.header .primary-header-inner .header-logo img {
  max-width: 170px;
}
.header .primary-header-inner .header-logo .logo-light {
  display: none;
}
@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-right-wrap {
  display: flex;
  align-items: center;
  column-gap: 120px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-right-wrap {
    column-gap: 50px;
  }
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-right-wrap {
    column-gap: 20px;
  }
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-menu-wrap ul {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  width: 15%;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-right-wrap .header-menu-wrap ul li {
    margin: 0 15px;
  }
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-right-wrap .header-menu-wrap ul li {
    margin: 0 10px;
  }
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li a {
  font-family: Poppins;
  color: var(--rr-color-common-white);
  display: block;
  font-size: 14px;
  padding: 0;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  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-right-wrap .header-menu-wrap ul li a {
    font-size: 16px;
  }
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li a:hover {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li a i {
  font-size: 13px;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li.active a {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li.active ul li a {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li.active ul li a:hover {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li.active.menu-item-has-children:after {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul 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-right-wrap .header-menu-wrap ul li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul 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-right-wrap .header-menu-wrap ul li li:not(:last-of-type) {
  border-bottom: 1px solid var(--rr-color-border-1);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li:hover {
  background-color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li:hover a {
  color: var(--rr-color-common-black);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li a {
  background-color: var(--rr-color-bg-1);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--rr-color-common-white);
  font-weight: 600;
  font-size: 13px;
  padding: 20px 0;
  padding-left: 30px;
  letter-spacing: 1px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li a:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  -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;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li a:hover:before {
  width: 100%;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li.active {
  background-color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li.active a {
  color: var(--rr-color-common-white) !important;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li ul {
  top: 0;
  left: 100%;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li ul li a {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li:hover a {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li:hover li a {
  color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul li li:hover li a:hover {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul .menu-item-has-children {
  position: relative;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul .menu-item-has-children a {
  padding-right: 17px;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-right-wrap .header-menu-wrap ul .menu-item-has-children a {
    padding-right: 13px;
  }
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul .menu-item-has-children ul li {
  margin: 0;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul .menu-item-has-children ul li a {
  padding-right: 0;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 700;
  content: "\f078";
  color: var(--rr-color-common-white);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .primary-header-inner .header-right-wrap .header-menu-wrap ul .menu-item-has-children:hover:after {
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
    width: 90px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 1px solid var(--rr-color-common-white);
  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;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
    height: 60px;
    width: 60px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger svg {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-right-wrap .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-wrap .header-right .search-icon {
    margin-right: 20px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item {
    line-height: 1;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--rr-color-common-white);
  font-size: 30px;
  opacity: 0.9;
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .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-wrap .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;
  }
}

.header-2 {
  top: 0;
  left: 120px;
  width: calc(100% - 120px);
}
@media only screen and (max-width: 992px) {
  .header-2 {
    width: 100%;
    left: 0;
  }
}
.header-2:before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  content: "";
  width: calc(100% + 120px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: -120px;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .header-2:before {
    display: none;
  }
}
.header-2 .primary-header.fixed {
  padding: 0;
}
.header-2 .primary-header.fixed .primary-header-inner {
  padding: 0 60px;
  margin-left: 0;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header.fixed .primary-header-inner {
    padding: 20px;
  }
}
.header-2 .primary-header-inner .header-right-wrap {
  display: block;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap ul li a {
  padding: 45px 0;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap ul li ul {
  top: 113px;
}

.header-3 {
  top: 0;
}
.header-3 .top-bar {
  border-bottom: 1px solid var(--rr-color-border-1);
}
.header-3 .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media only screen and (max-width: 992px) {
  .header-3 .top-bar-inner {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .header-3 .top-bar-inner {
    display: none;
  }
}
.header-3 .top-bar-inner .site-logo {
  max-width: 171px;
}
@media only screen and (max-width: 992px) {
  .header-3 .top-bar-inner .site-logo {
    display: none;
  }
}
.header-3 .top-bar-inner .site-logo .logo-dark {
  display: block;
}
.header-3 .top-bar-inner .site-logo .logo-light {
  display: none;
}
.header-3 .top-bar-inner .top-bar-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .header-3 .top-bar-inner .top-bar-items {
    display: none;
  }
}
.header-3 .top-bar-inner .top-bar-items .top-bar-item {
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-3 .top-bar-inner .top-bar-items .top-bar-item:not(:last-of-type) {
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid var(--rr-color-border-1);
}
@media (max-width: 1170px) {
  .header-3 .top-bar-inner .top-bar-items .top-bar-item:not(:last-of-type) {
    padding-right: 20px;
    margin-right: 20px;
  }
}
.header-3 .top-bar-inner .top-bar-items .top-bar-item .icon {
  background-color: var(--rr-color-bg-1);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-border-1);
}
.header-3 .top-bar-inner .top-bar-items .top-bar-item .content a,
.header-3 .top-bar-inner .top-bar-items .top-bar-item .content p {
  color: var(--rr-color-common-white);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}
.header-3 .top-bar-inner .top-bar-items .top-bar-item .content a br,
.header-3 .top-bar-inner .top-bar-items .top-bar-item .content p br {
  display: block;
}
.header-3 .top-bar-inner .top-bar-items .top-bar-item .content a:hover {
  color: var(--rr-color-theme-primary);
}
.header-3 .primary-header-inner {
  padding-left: 0;
  padding-right: 0;
}
.header-3 .primary-header-inner .header-logo {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header-inner .header-logo {
    display: block;
  }
}
.header-3 .primary-header-inner .header-right-wrap {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header-inner .header-right-wrap {
    width: auto;
  }
}
.header-3 .primary-header-inner .header-right-wrap .header-menu-wrap ul li a {
  font-family: var(--rr-ff-heading);
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 16px;
}
.header-3 .primary-header-inner .header-right-wrap .header-menu-wrap ul li.menu-item-has-children a {
  padding-right: 0;
}
.header-3 .primary-header-inner .header-right-wrap .header-menu-wrap ul li.menu-item-has-children:after {
  display: none;
}
.header-3 .primary-header-inner .header-right-wrap .header-menu-wrap ul li ul {
  top: 50px;
}
.header-3 .primary-header-inner .header-right-wrap .header-menu-wrap ul li ul li a {
  font-size: 14px;
  letter-spacing: 0;
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header-inner .header-right-wrap .header-right .bb-primary-btn {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header-3 .primary-header-inner .header-right-wrap .header-right .bb-primary-btn {
    display: none;
  }
}
.header-3 .primary-header.fixed {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-3 .primary-header.fixed .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.header-3 .primary-header.fixed .primary-header-inner .header-logo {
  display: block;
}
.header-3 .primary-header.fixed .primary-header-inner .header-right-wrap {
  width: auto;
}
.header-3 .primary-header.fixed .primary-header-inner .header-right-wrap .header-menu-wrap {
  margin-right: 60px;
}
.header-3 .primary-header.fixed .primary-header-inner .header-right-wrap .header-menu-wrap ul {
  top: 87px;
}
.header-3 .primary-header.fixed .primary-header-inner .header-right-wrap .header-menu-wrap ul li a {
  padding: 35px 0;
}
.header-3 .primary-header.fixed .primary-header-inner .header-right-wrap .header-menu-wrap ul li ul li a {
  padding: 20px 0;
  padding-left: 30px;
}

@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-bg-1);
  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;
}
.primary-header.fixed .primary-header-inner {
  padding: 20px 60px;
}
@media (max-width: 1170px) {
  .primary-header.fixed .primary-header-inner {
    padding: 20px;
  }
}

@-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-bg-1);
    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);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .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-common-white);
    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);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    color: var(--rr-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--rr-color-common-white);
    font-family: var(--rr-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    list-style: none;
  }
  .mobile-side-menu .side-menu-list li {
    font-family: var(--rr-ff-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--rr-color-common-white);
  }
  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--rr-color-common-white);
    margin-left: 10px;
    font-size: 16px;
  }
  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }
  .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;
  }
}
.mean-bar {
  background-color: transparent;
  min-height: auto;
  padding: 0;
}
.mean-bar .meanmenu-reveal {
  display: none !important;
}
.mean-bar .mean-nav {
  background-color: transparent;
  margin-top: 0;
  padding-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul {
  display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
  position: relative;
  float: none;
  display: block;
  width: auto;
}
.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);
}
.mean-bar .mean-nav.mean-nav > ul li a {
  color: var(--rr-color-common-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-top: none;
  padding: 0;
  float: none;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 14px;
  }
}
.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: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
  font-size: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
  content: "+";
}
.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);
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
  content: "\f068";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li ul {
  padding: 0 0 0 30px;
  margin-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li a {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}

#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: Hero CSS
----------------------------------------*/
.hero-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-section .hero-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-section .hero-shape {
  position: absolute;
  bottom: 23%;
  left: 0;
}
.hero-section .hero-img {
  position: absolute;
  bottom: -22.5px;
  right: 0;
}
@media (max-width: 1399px) {
  .hero-section .hero-img {
    right: -20%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .hero-img {
    max-width: 610px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-img {
    display: none;
  }
}
.hero-section .hero-images {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 510px;
}
@media (max-width: 1700px) {
  .hero-section .hero-images {
    left: -75px;
  }
}
@media (max-width: 1170px) {
  .hero-section .hero-images {
    display: none;
  }
}
.hero-section .hero-images img {
  margin-right: auto;
  height: 250px;
  width: 250px;
  object-fit: cover;
}
.hero-section .hero-images img:nth-child(2) {
  margin: -30px 0 12px auto;
}
@media (max-width: 1399px) {
  .hero-section .hero-images img:nth-child(2) {
    margin-right: 40px;
  }
}
.hero-section .hero-images img:nth-child(3) {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .hero-section .hero-images img:nth-child(3) {
    margin-left: 0;
  }
}

.hero-content {
  padding: 300px 0 150px 0;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding-left: 55px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1170px) {
  .hero-content {
    padding-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content {
    padding: 100px 0 100px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content {
    padding-left: 0;
  }
}
.hero-content .sub-title {
  font-size: 50px;
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .hero-content .sub-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .sub-title {
    font-size: 24px;
  }
}
.hero-content .title {
  font-size: 75px;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .hero-content .title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .title {
    font-size: 50px;
  }
}
.hero-content .title:before {
  background: linear-gradient(270deg, #3F5AF3 0%, transparent 100%);
  content: "";
  width: 100%;
  height: 76%;
  position: absolute;
  top: 15%;
  right: 0;
  z-index: -1;
  opacity: 0.95;
}
.hero-content .bottom-title {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .hero-content .bottom-title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .bottom-title {
    font-size: 30px;
  }
}
.hero-content .hero-btn {
  /*background-image: url(../img/bg-img/hero-btn-bg.png);*/
  color: var(--rr-color-common-white);
  font-size: 60px;
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero-content .hero-btn {
    height: 120px;
    width: 120px;
    font-size: 40px;
  }
}
.hero-content .hero-btn i {
  transform: rotate(-45deg) 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;
}
.hero-content .hero-btn:before {
  background-color: #cc0003;
  mix-blend-mode: multiply;
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.9;
  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;
}
@media only screen and (max-width: 767px) {
  .hero-content .hero-btn:before {
    height: 110px;
    width: 110px;
  }
}
.hero-content .hero-btn:hover:before {
  width: 100%;
  height: 100%;
}
.hero-content .hero-btn:hover i {
  transform: rotate(-45deg) scale(1.05);
}

.hero-section-2 {
  position: relative;
  overflow: hidden;
}
.hero-section-2 .hero-text {
  color: var(--rr-color-common-white);
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: 40px;
  left: 46.5%;
  transform: translateX(-50%);
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1600px) {
  .hero-section-2 .hero-text {
    left: 52%;
    font-size: 100px;
  }
}
@media (max-width: 1170px) {
  .hero-section-2 .hero-text {
    font-size: 70px;
    left: 57%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-text {
    display: none;
  }
}
.hero-section-2 .hero-text .inner-text {
  color: var(--rr-color-bg-1);
  margin-bottom: 0;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  padding-left: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1600px) {
  .hero-section-2 .hero-text .inner-text {
    font-size: 100px;
  }
}
@media (max-width: 1170px) {
  .hero-section-2 .hero-text .inner-text {
    font-size: 70px;
  }
}
.hero-section-2 .hero-text .inner-text .container-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 14px;
  left: 14px;
  z-index: -1;
}
.hero-section-2 .hero-text .inner-text .container-svg svg {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero-section-2 .hero-text .inner-text .container-svg text {
  display: block;
  fill: white;
  font-size: 150px;
  font-weight: bold;
}
@media (max-width: 1170px) {
  .hero-section-2 .hero-text .inner-text .container-svg text {
    font-size: 70px;
  }
}
.hero-section-2 .hero-text .inner-text .container-svg text.dashed {
  fill: none;
  stroke: var(--rr-color-bg-1);
  stroke-width: 1px;
  stroke-dasharray: 5px, 5px;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.hero-section-2 .hero-text .inner-text .container-svg text.dashed.blue {
  stroke: #25303B;
}
.hero-section-2 .shapes .shape {
  position: absolute;
  z-index: -1;
}
.hero-section-2 .shapes .shape.shape-1 {
  top: 0;
  left: 0;
}
.hero-section-2 .shapes .shape.shape-2 {
  top: 0;
  right: 0;
}
.hero-section-2 .hero-sidebar {
  writing-mode: vertical-rl;
  width: 120px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-sidebar {
    display: none;
  }
}
.hero-section-2 .hero-sidebar:before {
  background: rgba(255, 255, 255, 0.8);
  content: "";
  width: 1px;
  height: 113px;
  position: absolute;
  top: 0px;
  right: -1px;
}
.hero-section-2 .hero-sidebar .sidebar-icon {
  position: absolute;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-section-2 .hero-sidebar .sidebar-icon .sidebar-trigger {
  color: var(--rr-color-common-white);
}
.hero-section-2 .hero-sidebar .sidebar-social {
  display: flex;
  align-items: center;
  column-gap: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  list-style: none;
  transform: translate(-50%, -50%) rotate(-180deg);
}
@media (max-width: 1170px) {
  .hero-section-2 .hero-sidebar .sidebar-social {
    column-gap: 50px;
    top: 58%;
  }
}
.hero-section-2 .hero-sidebar .sidebar-social li a {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-section-2 .hero-sidebar .sidebar-social li a:hover {
  color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-wrap {
    flex-direction: column-reverse;
  }
}
.hero-section-2 .hero-img {
  margin-left: 120px;
  margin-top: 113px;
  height: 100%;
  max-width: 840px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-img {
    margin-left: 0;
    margin-top: 0;
    padding: 0 50px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-2 .hero-img {
    padding: 0 20px;
  }
}
.hero-section-2 .hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-section-2 .hero-info {
  margin-top: 113px;
  margin-left: 110px;
}
@media (max-width: 1600px) {
  .hero-section-2 .hero-info {
    margin-left: 135px;
  }
}
@media (max-width: 1170px) {
  .hero-section-2 .hero-info {
    margin-left: 125px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-info {
    margin-top: 50px;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-2 .hero-info {
    margin: 50px 20px 0 20px;
  }
}
.hero-section-2 .hero-info .section-heading .section-title {
  font-size: 72px;
}
@media (max-width: 1170px) {
  .hero-section-2 .hero-info .section-heading .section-title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-2 .hero-info .section-heading .section-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-2 .hero-info .section-heading .section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-2 .hero-info .section-heading .sub-heading {
    font-size: 12px;
  }
}
.hero-section-2 .hero-info .section-heading p {
  margin: 30px 0 35px 0;
}

.hero-section-3 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.hero-section-3 .hero-round-img {
  width: 950px;
  height: 950px;
  position: absolute;
  top: -20%;
  right: -15%;
  border-radius: 50%;
}
@media (max-width: 1170px) {
  .hero-section-3 .hero-round-img {
    right: -35%;
    top: -35%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-3 .hero-round-img {
    right: -60%;
    top: -70%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3 .hero-round-img {
    display: none;
  }
}
.hero-section-3 .hero-round-img:before {
  background-color: var(--rr-color-theme-primary);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.hero-section-3 .hero-round-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  object-position: -266px 100px;
}
.hero-section-3 .round-shape {
  background-color: #02050A;
  height: 800px;
  width: 800px;
  border-radius: 50%;
  position: absolute;
  top: -29%;
  right: -21%;
}
@media (max-width: 1170px) {
  .hero-section-3 .round-shape {
    right: -45%;
    top: -45%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-3 .round-shape {
    height: 600px;
    width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3 .round-shape {
    display: none;
  }
}
.hero-section-3 .round-shape-2 {
  background-color: var(--rr-color-bg-1);
  height: 750px;
  width: 750px;
  border-radius: 50%;
  position: absolute;
  bottom: -50%;
  right: 14%;
  opacity: 0.46;
}
@media (max-width: 1170px) {
  .hero-section-3 .round-shape-2 {
    height: 600px;
    width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3 .round-shape-2 {
    display: none;
  }
}
.hero-section-3 .border-shape {
  background-color: transparent;
  height: 700px;
  width: 700px;
  border-radius: 50%;
  border: 1px dashed var(--rr-color-bg-1);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 992px) {
  .hero-section-3 .border-shape {
    display: none;
  }
}

@-webkit-keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
.hero-content-3 {
  padding: 360px 0 250px 0;
  padding-left: 75px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1170px) {
  .hero-content-3 {
    padding-top: 250px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content-3 {
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-3 {
    padding-top: 50px;
    padding-left: 20px;
  }
}
.hero-content-3 .title {
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-content-3 .title.anim-text {
  overflow: visible;
}
.hero-content-3 .title br {
  display: block;
}
@media (max-width: 1170px) {
  .hero-content-3 .title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .title {
    font-size: 32px;
  }
}
.hero-content-3 .title span {
  color: var(--rr-color-theme-primary);
  position: relative;
}
.hero-content-3 .title span:before {
  background-image: url(../img/shapes/hero-shape-4.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
  width: 770px;
  height: 770px;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1170px) {
  .hero-content-3 .title span:before {
    width: 600px;
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .title span:before {
    width: 250px;
    height: 250px;
  }
}
.hero-content-3 p {
  color: var(--rr-color-common-white);
  font-size: 22px;
  font-weight: 500;
  max-width: 880px;
  width: 100%;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .hero-content-3 p {
    font-size: 16px;
  }
}

.hero-content-4 {
  padding: 360px 0 110px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1170px) {
  .hero-content-4 {
    padding: 260px 0 100px 0;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content-4 {
    padding: 100px 0 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-4 {
    padding: 80px 0;
  }
}
.hero-content-4 .sub-title {
  font-size: 100px;
  font-weight: 200;
}
@media only screen and (max-width: 992px) {
  .hero-content-4 .sub-title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .sub-title {
    font-size: 24px;
  }
}
.hero-content-4 .title {
  font-size: 160px;
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .hero-content-4 .title {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .title {
    font-size: 45px;
  }
}
.hero-content-4 .title span {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.hero-content-4 .title span:before {
  content: attr(data-text);
  position: absolute;
  right: 7px;
  top: 10px;
  width: 100%;
  font-size: 160px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .hero-content-4 .title span:before {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .title span:before {
    font-size: 45px;
    top: 8px;
  }
}
.hero-content-4 .bb-primary-btn {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .hero-content-4 .bb-primary-btn {
    margin-top: 30px;
  }
}

.hero-section-4 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-section-4 .shapes .shape {
  position: absolute;
}
.hero-section-4 .shapes .shape.shape-1 {
  top: 0;
  left: 0;
}
.hero-section-4 .shapes .shape.shape-2 {
  bottom: 0;
  left: 0;
}
.hero-section-4 .hero-img {
  max-width: 950px;
  width: 100%;
  height: 690px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .hero-section-4 .hero-img {
    max-width: 750px;
  }
}
@media (max-width: 1170px) {
  .hero-section-4 .hero-img {
    max-width: 550px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-4 .hero-img {
    max-width: 450px;
  }
}
.hero-section-4 .hero-img:before {
  background-color: rgba(131, 131, 131, 0.63);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-section-4 .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Process CSS
----------------------------------------*/
.process-section {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .process-section {
    padding-top: 0;
  }
}
.process-section .bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .process-item {
    text-align: center;
  }
}
.process-item .process-icon {
  background-color: var(--rr-color-bg-1);
  height: 160px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 35px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .process-item .process-icon {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.process-item .process-icon:before {
  background-color: transparent;
  content: "";
  height: 140px;
  width: 140px;
  position: absolute;
  top: 0;
  left: -20px;
  border: 1px solid var(--rr-color-theme-primary);
  border-radius: 50%;
  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;
}
@media (max-width: 1399px) {
  .process-item .process-icon:before {
    left: -10px;
  }
}
.process-item .process-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.process-item .process-content .title {
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 1170px) {
  .process-item .process-content .title {
    font-size: 20px;
  }
}
@media (max-width: 1170px) {
  .process-item .process-content p br {
    display: none;
  }
}
.process-item .process-content p:last-child {
  margin-bottom: 0;
}
.process-item:hover .process-icon:before {
  top: 5px;
  left: 10px;
}
.process-item:hover .process-icon img {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.process-text {
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 992px) {
  .process-text {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .process-text {
    padding-top: 40px;
  }
}

.process-box {
  background-color: var(--rr-color-bg-1);
  padding: 40px;
  transition: .3s;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
.process-box:hover {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
  .process-box {
    padding: 30px 20px;
  }
}
.process-box .number {
  color: var(--rr-color-common-white);
  height: 40px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-theme-primary);
  border-radius: 10px;
  margin-bottom: 15px;
}
.process-box .title {
  font-size: 24px;
  color: var(--rr-color-common-white);
  font-weight: 700;
  margin-bottom: 20px;
}
.process-box p {
  text-align: justify;
  margin-bottom: 25px;
}
.process-box .read-more {
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  text-transform: capitalize;
  line-height: 1;
}
.process-box .read-more i {
  font-size: 15px;
  line-height: 1;
  margin-top: 1px;
}
.process-box .read-more:hover {
  color: var(--rr-color-common-white);
}

.process-section-3 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.process-item-2 {
  background-color: var(--rr-color-bg-1);
  padding: 50px 40px;
  border: 1px solid var(--rr-color-border-1);
  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;
}
.process-item-2:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -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 (max-width: 1170px) {
  .process-item-2 {
    padding: 40px 20px;
  }
}
.process-item-2 .icon {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 50%;
  margin: 0 auto;
  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;
}
.process-item-2 .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;
}
.process-item-2 span {
  color: var(--rr-color-theme-primary);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 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;
}
.process-item-2 .title {
  margin-bottom: 20px;
}
@media (max-width: 1170px) {
  .process-item-2 .title {
    margin-top: 20px;
    font-size: 20px;
  }
}
.process-item-2 p {
  -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;
}
.process-item-2 p:last-child {
  margin-bottom: 0;
}
.process-item-2:hover:before {
  width: 100%;
  -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;
}
.process-item-2:hover .icon {
  background-color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}
.process-item-2:hover .icon svg {
  color: var(--rr-color-theme-primary);
}
.process-item-2:hover span {
  color: var(--rr-color-common-white);
}
.process-item-2:hover p {
  color: var(--rr-color-common-white);
}

/* !END: Theme Process CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-section {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1170px) {
  .about-section {
    padding-top: 70px;
  }
}
.about-section .round-shape {
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .about-section .round-shape {
    display: none;
  }
}

.about-wrap {
  background-color: var(--rr-color-bg-1);
  max-width: 1710px;
  width: 100%;
  padding: 0 115px 0 150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media (max-width: 1170px) {
  .about-wrap {
    padding: 0 80px 0 80px;
  }
}
@media only screen and (max-width: 992px) {
  .about-wrap {
    padding: 0 20px;
  }
}
.about-wrap .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.about-wrap .about-content {
  padding: 120px 0;
}
@media (max-width: 1170px) {
  .about-wrap .about-content {
    padding: 60px 0;
  }
}
.about-wrap .about-content .section-heading .section-title {
  margin-bottom: 30px;
}
.about-wrap .about-content p {
  max-width: 740px;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 1170px) {
  .about-wrap .about-content p {
    max-width: 450px;
  }
}
.about-wrap .about-img-wrap {
  text-align: right;
  position: relative;
  max-width: 620px;
  width: 100%;
  margin-left: auto;
}
@media only screen and (max-width: 992px) {
  .about-wrap .about-img-wrap {
    margin-left: 0;
    margin: 0 auto;
  }
}
.about-wrap .about-img-wrap .about-img {
  transform: translateY(-120px);
  position: relative;
  max-width: 507px;
  width: 100%;
  margin-left: auto;
}
@media only screen and (max-width: 992px) {
  .about-wrap .about-img-wrap .about-img {
    margin: 0 auto;
    transform: translateY(0px);
  }
}
.about-wrap .about-img-wrap .about-img .img-shape {
  background-color: #3F5AF3;
  mix-blend-mode: multiply;
  content: "";
  width: 90px;
  height: 160px;
  position: absolute;
  top: 55%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0.9;
  z-index: 1;
}
.about-wrap .about-img-wrap .about-img .img-shape img {
  transform-origin: inherit;
}
.about-wrap .about-img-wrap .about-img-2 {
  max-width: 325px;
  width: 100%;
  height: 280px;
  position: absolute;
  bottom: 0;
  left: -30px;
}
.about-wrap .about-img-wrap .about-img-2 img {
  border-right: 10px solid #0B0F15;
  border-top: 10px solid #0B0F15;
  width: 100%;
  height: 100%;
}
.about-wrap .about-text {
  max-width: 660px;
  width: 100%;
  position: absolute;
  left: 18%;
  bottom: 20px;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .about-wrap-2 {
    flex-direction: column-reverse;
  }
}

.about-img-box {
  position: relative;
  height: 650px;
  max-width: 600px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .about-img-box {
    margin: 0 auto;
  }
}
.about-img-box .img-1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 430px;
  width: 100%;
  height: 480px;
}
.about-img-box .img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-box .img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 300px;
  width: 100%;
  height: 390px;
}
.about-img-box .img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top: 5px solid #02050A;
  border-left: 5px solid #02050A;
}
.about-img-box .shape {
  position: absolute;
}
.about-img-box .shape.shape-1 {
  max-width: 216px;
  width: 100%;
  height: 185px;
  top: 50px;
  left: -25%;
}
.about-img-box .shape.shape-2 {
  max-width: 340px;
  width: 100%;
  height: 340px;
  top: 100px;
  left: -20%;
}

.about-content-2 {
  padding-left: 50px;
}
@media only screen and (max-width: 992px) {
  .about-content-2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.about-content-2 .section-heading .section-title {
  margin-bottom: 40px;
}
.about-content-2 .about-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-bottom: 50px;
  max-width: 645px;
  width: 100%;
}
.about-content-2 .about-items .about-item {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 20px;
}
.about-content-2 .about-items .about-item .icon {
  height: 60px;
  width: 60px;
}
.about-content-2 .about-items .about-item .title {
  margin-bottom: 0;
  line-height: 1.5;
}
.about-content-2 .about-items .about-item:hover .icon img {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.about-wrap-3 {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 120px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about-wrap-3 {
    padding: 70px 0;
  }
}
.about-wrap-3 .about-text {
  position: absolute;
  top: 70px;
  left: 25%;
  z-index: 1;
}
.about-wrap-3 .about-text .mission {
  color: var(--rr-color-bg-1);
  font-size: 150px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(176, 178, 183, 0.09);
}
@media only screen and (max-width: 992px) {
  .about-wrap-3 .about-text .mission {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .about-wrap-3 .about-text .mission {
    display: none;
  }
}

.about-img-items {
  max-width: 500px;
  width: 100%;
  position: relative;
  padding-bottom: 100px;
}
@media only screen and (max-width: 992px) {
  .about-img-items {
    margin-bottom: 30px;
  }
}
.about-img-items .img-1 {
  width: 380px;
  height: 365px;
  object-fit: cover;
}
.about-img-items .about-thumb-2 {
  width: 245px;
  height: 235px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-content-3 {
  position: relative;
  z-index: 2;
}
.about-content-3 .section-heading .section-title {
  margin-bottom: 30px;
}
.about-content-3 .section-heading p {
  margin-bottom: 40px;
}

.about-section-4 {
  position: relative;
  z-index: 1;
}
.about-section-4 .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1170px) {
  .about-section-4 .shape {
    bottom: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .about-section-4 .shape {
    display: none;
  }
}

.about-img-wrap-4 {
  position: relative;
  text-align: right;
  max-width: 670px;
  width: 100%;
}
.about-img-wrap-4 .img-1 {
  max-width: 550px;
  width: 100%;
  height: 600px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap-4 .img-1 {
    height: 400px;
  }
}
.about-img-wrap-4 .img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-4 .img-2 {
  height: 255px;
  width: 255px;
  position: absolute;
  bottom: 50px;
  left: 0;
  border-top: 10px solid #02050A;
  border-right: 10px solid #02050A;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap-4 .img-2 {
    bottom: 0;
  }
}
.about-img-wrap-4 .img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-4 {
  padding-left: 50px;
}
@media (max-width: 1170px) {
  .about-content-4 {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .about-content-4 {
    margin-top: 30px;
    padding-left: 0;
  }
}
.about-content-4 .section-heading .section-title {
  margin-bottom: 40px;
}
.about-content-4 .section-heading p {
  margin-bottom: 40px;
}
.about-content-4 .about-counter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 40px;
  max-width: 610px;
  width: 100%;
}
.about-content-4 .about-counter-wrap .about-counter {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 20px;
}
.about-content-4 .about-counter-wrap .about-counter .title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
}
.about-content-4 .about-counter-wrap .about-counter p {
  margin-bottom: 0;
}
.about-content-4 .about-counter-wrap .about-counter:hover .icon img {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.about-section-5 {
  overflow: hidden;
}

.about-content-5 {
  padding-right: 60px;
}
@media only screen and (max-width: 992px) {
  .about-content-5 {
    padding-right: 0;
  }
}

.about-tab .nav-tabs {
  margin-bottom: 40px;
  border: none;
  row-gap: 20px;
}
.about-tab .nav-tabs .nav-link {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 25px;
}
.about-tab .nav-tabs .nav-link:not(:last-of-type) {
  margin-right: 20px;
}
.about-tab .nav-tabs .nav-link.active {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.about-tab .tab-content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-img-wrap-5 {
  position: relative;
  padding-bottom: 70px;
}
.about-img-wrap-5 .shapes .shape {
  position: absolute;
  z-index: -1;
}
.about-img-wrap-5 .shapes .shape.shape-1 {
  top: -10%;
  right: 10%;
}
.about-img-wrap-5 .shapes .shape.shape-2 {
  top: 5%;
  right: -15%;
}
.about-img-wrap-5 .img-1 {
  height: 490px;
  max-width: 505px;
  width: 100%;
  object-fit: cover;
}
.about-img-wrap-5 .about-img-2 {
  max-width: 323px;
  width: 100%;
  height: 338px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap-5 .about-img-2 {
    border: none;
  }
}
.about-img-wrap-5 .about-img-2 .img-2 {
  border-top: 5px solid #02050A;
  border-left: 5px solid #02050A;
  object-fit: cover;
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Service CSS
----------------------------------------*/
.service-section {
  position: relative;
  z-index: 1;
}
.service-section .bg-color {
  background-color: var(--rr-color-bg-1);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .service-section .bg-color {
    height: 60%;
  }
}
.service-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-item .service-text {
  text-align: center;
}
.service-item .service-text a {
  font-size: 30px;
  font-weight: 700;
  color: var(--rr-color-grey-2);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 1399px) {
  .service-item .service-text a {
    font-size: 25px;
  }
}
@media (max-width: 1170px) {
  .service-item .service-text a {
    font-size: 20px;
  }
}
.service-item .service-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-item .service-thumb img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  position: relative;
}
.service-item .service-thumb .overlay-color {
  /*background: #6e2424;*/
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  -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;
  z-index: 2;
}
.service-item .service-thumb .transparent-shape {
  width: 432px;
  height: 255px;
  position: absolute;
  top: 0px;
  left: 0px;
  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;
  z-index: 2;
}
.service-item .service-thumb .service-icon {
  background-color: var(--rr-color-common-white);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: 15px;
  -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;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
.service-item .service-thumb .service-icon svg {
  color: var(--rr-color-theme-primary);
  -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;
}
.service-item .service-thumb .service-icon:hover {
  background-color: var(--rr-color-theme-primary);
}
.service-item .service-thumb .service-icon:hover svg {
  color: var(--rr-color-common-white);
}
.service-item .service-thumb .service-btn {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  padding: 14.5px 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
.service-item .service-thumb .service-btn i {
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .service-item.item-3 {
    padding-bottom: 30px;
  }
}
.service-item:hover .service-text a {
  color: var(--rr-color-common-white);
}
.service-item:hover .transparent-shape {
  visibility: visible;
  opacity: 1;
}
.service-item:hover .service-thumb .service-icon {
  left: 30px;
  visibility: visible;
  opacity: 1;
}
.service-item:hover .service-thumb .service-btn {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}
.service-item.service-item-2 .service-thumb {
  position: relative;
  z-index: 1;
}
.service-item.service-item-2 .service-thumb img {
  -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;
}
.service-item.service-item-2 .service-thumb:before {
  background-color: #3F5AF3;
  content: "";
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -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;
  visibility: hidden;
  opacity: 0;
}
.service-item.service-item-2 .service-icon {
  background-color: var(--rr-color-theme-primary);
  -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;
  transition-delay: 100ms;
  left: 30px;
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1170px) {
  .service-item.service-item-2 .service-icon {
    left: 20px;
  }
}
.service-item.service-item-2 .service-icon svg {
  color: var(--rr-color-common-white);
}
.service-item.service-item-2 .service-icon:hover {
  background-color: var(--rr-color-bg-1);
}
.service-item.service-item-2 p {
  color: var(--rr-color-common-white);
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -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;
  transition-delay: 250ms;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  padding-right: 20px;
  margin-top: 10px;
}
.service-item.service-item-2 .service-btn {
  background-color: var(--rr-color-bg-1);
  left: 50%;
  bottom: 30px;
  -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;
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1170px) {
  .service-item.service-item-2 .service-btn {
    width: calc(100% - 20px);
    font-size: 14px;
  }
}
@media only screen and (max-width: 992px) {
  .service-item.service-item-2 .service-btn {
    width: calc(100% - 40px);
  }
}
.service-item.service-item-2 .service-btn:hover {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
}
@media (max-width: 1170px) {
  .service-item.service-item-2:hover .service-icon {
    left: 20px;
  }
}
.service-item.service-item-2:hover .service-thumb img {
  filter: blur(2px);
  -webkit-filter: blur(2px);
}
.service-item.service-item-2:hover .service-thumb:before {
  visibility: visible;
  opacity: 1;
}
.service-item.service-item-2:hover p {
  left: 30px;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1170px) {
  .service-item.service-item-2:hover p {
    left: 20px;
  }
}

.service-top {
  position: relative;
}
.service-top .swiper-pagination {
  color: var(--rr-color-common-white);
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  bottom: 0;
  transform: translate(-50%);
  width: auto;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .service-top .swiper-pagination {
    display: none;
  }
}
.service-top .swiper-arrow {
  color: var(--rr-color-common-white);
  position: absolute;
  left: auto;
  right: -70px;
  top: 50%;
  bottom: 0;
  transform: translate(-50%);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .service-top .swiper-arrow {
    display: none;
  }
}
.service-top .swiper-arrow .swiper-nav.swiper-next {
  margin-right: 110px;
}

.service-2 {
  position: relative;
  z-index: 1;
}
.service-2 .cross {
  position: absolute;
  bottom: 0;
  right: 80px;
}
@media only screen and (max-width: 992px) {
  .service-2 .cross {
    right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .service-2 .cross {
    display: none;
  }
}

.service-left .section-heading .section-title {
  margin-bottom: 30px;
}

.service-box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  max-width: 860px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .service-box-wrap {
    grid-template-columns: 1fr;
  }
}
.service-box-wrap .service-box {
  background-color: var(--rr-color-bg-1);
  position: relative;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .service-box-wrap .service-box {
    padding: 30px 20px;
  }
}
.service-box-wrap .service-box .number {
  color: #222731;
  font-size: 48px;
  font-weight: 700;
  position: absolute;
  top: 40px;
  right: 40px;
  line-height: 1;
  display: block;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .service-box-wrap .service-box .number {
    top: 30px;
    right: 20px;
  }
}
.service-box-wrap .service-box .icon {
  margin-bottom: 30px;
}
.service-box-wrap .service-box .icon svg {
  color: var(--rr-color-theme-primary);
}
.service-box-wrap .service-box .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
.service-box-wrap .service-box .service-img {
  max-width: 350px;
  width: 100%;
  height: 117px;
  position: relative;
  overflow: hidden;
}
.service-box-wrap .service-box .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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-box-wrap .service-box .service-img:before {
  background-color: #001AAB;
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  visibility: hidden;
  opacity: 0;
  -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;
  z-index: 1;
}
.service-box-wrap .service-box .service-img:after {
  background: radial-gradient(100% 100% at 50% 0%, rgba(63, 90, 243, 0) 0%, #3F5AF3 100%);
  filter: blur(75px);
  content: "";
  width: 255px;
  height: 255px;
  border-radius: 50%;
  position: absolute;
  top: -150%;
  left: -25%;
  visibility: hidden;
  opacity: 0;
  -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;
  z-index: 1;
}
.service-box-wrap .service-box:nth-child(1) {
  border-bottom: 1px solid var(--rr-color-border-1);
  border-right: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .service-box-wrap .service-box:nth-child(1) {
    border: none;
  }
}
.service-box-wrap .service-box:nth-child(2) {
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .service-box-wrap .service-box:nth-child(2) {
    border: none;
  }
}
.service-box-wrap .service-box:nth-child(3) {
  border-right: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .service-box-wrap .service-box:nth-child(3) {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .service-box-wrap .service-box:nth-child(4) {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .service-box-wrap .service-box:not(:last-of-type) {
    border-bottom: 1px solid var(--rr-color-border-1);
  }
}
.service-box-wrap .service-box:hover .service-img:after {
  visibility: visible;
  opacity: 1;
}
.service-box-wrap .service-box:hover .service-img:before {
  visibility: visible;
  opacity: 0.4;
}
.service-box-wrap .service-box:hover .service-img img {
  transform: scale(1.03);
}
.service-box-wrap .service-box:hover .icon svg {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.service-item-3 {
  background-color: var(--rr-color-bg-1);
  padding: 40px 30px;
  border: 1px solid var(--rr-color-border-1);
}
.service-item-3 .service-icon-wrap {
  border-radius: 50%;
}
.service-item-3 .service-icon-wrap .service-icon {
  background: radial-gradient(50% 5688.89% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid #3E3E3E;
  height: 110px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.service-item-3 .service-icon-wrap .service-icon svg {
  color: var(--rr-color-common-white);
}
.service-item-3 .title {
  font-weight: 700;
  margin-bottom: 25px;
}
.service-item-3 p:last-child {
  margin-bottom: 0;
}
.service-item-3:hover .service-icon svg {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Faq CSS
----------------------------------------*/
.faq-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.faq-section .faq-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.faq-section .faq-top-shape {
  background-color: #420308;
  width: 240px;
  height: 240px;
  position: absolute;
  top: -185px;
  right: 145px;
  border-radius: 50%;
}
@media only screen and (max-width: 992px) {
  .faq-section .faq-top-shape {
    right: 0px;
  }
}
.faq-section .faq-top-shape:before {
  background-color: transparent;
  content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  top: 10px;
  left: -30px;
  border-radius: 50%;
  border: 1px solid var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .faq-section .faq-top-shape:before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .faq-content .section-heading .sub-heading {
    font-size: 13px;
  }
}
.faq-content .section-heading .section-title {
  font-size: 45px;
}
@media (max-width: 1170px) {
  .faq-content .section-heading .section-title {
    margin-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .faq-content .section-heading .section-title {
    margin-left: 0;
    max-width: 600px;
    width: 100%;
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-content .section-heading .section-title {
    font-size: 32px;
  }
}
.faq-content .accordion .accordion-item {
  background-color: transparent;
  border: none;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
  border-radius: 0;
}
.faq-content .accordion .accordion-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.faq-content .accordion .accordion-item:first-child {
  padding-top: 30px;
  border-top: 1px solid var(--rr-color-border-1);
}
.faq-content .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: var(--rr-color-common-white);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .faq-content .accordion .accordion-item .accordion-button {
    font-size: 18px;
    line-height: 1.5;
  }
}
.faq-content .accordion .accordion-item .accordion-button:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "+";
  color: var(--rr-color-common-white);
  height: 45px;
  width: 45px;
  border: 1px solid var(--rr-color-border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .faq-content .accordion .accordion-item .accordion-button:after {
    margin-left: 20px;
  }
}
.faq-content .accordion .accordion-item .accordion-button:not(.collapsed):after {
  background-color: var(--rr-color-theme-primary);
  content: "\f068";
  transform: rotate(0);
}
.faq-content .accordion .accordion-item .accordion-body {
  font-size: 16px;
  color: var(--rr-color-text-body);
  padding: 0;
  padding-top: 25px;
}

.faq-img {
  padding-left: 25px;
  max-width: 665px;
  width: 100%;
  height: 555px;
}
.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1170px) {
  .faq-img {
    margin: 0 auto;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 992px) {
  .faq-img {
    padding-left: 0;
    height: auto;
  }
}

.faq-content-2 .accordion {
  border-radius: 0;
}
.faq-content-2 .accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.faq-content-2 .accordion-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-content-2 .accordion-item .accordion-header .accordion-button {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 22px 30px;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 0;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .faq-content-2 .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-content-2 .accordion-item .accordion-header .accordion-button {
    padding: 22px 50px 22px 20px;
  }
}
.faq-content-2 .accordion-item .accordion-header .accordion-button:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 18px;
  content: "\f175";
  color: var(--rr-color-common-white);
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.faq-content-2 .accordion-item .accordion-header .accordion-button:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.faq-content-2 .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
}
.faq-content-2 .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--rr-color-common-white);
  top: 50%;
}
.faq-content-2 .accordion-item .accordion-body {
  padding: 20px 30px 10px 30px;
}

.faq-widget {
  background-color: var(--rr-color-bg-1);
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .faq-widget {
    padding: 30px 20px;
  }
}
.faq-widget .search-box {
  position: relative;
}
.faq-widget .search-box .form-control {
  background-color: #0A0D13;
  padding: 14.5px 50px 14.5px 20px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #0A0D13;
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.faq-widget .search-box .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.faq-widget .search-box .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.faq-widget .search-box .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.faq-widget .search-box .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.faq-widget .search-box .search-btn {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 16px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

.faq-sponsor {
  position: relative;
}
.faq-sponsor img {
  filter: grayscale(1);
}
.faq-sponsor .sponsor-text {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  position: absolute;
  top: 30px;
  left: 30px;
}
.faq-sponsor .sponsor-text-2 {
  background-color: var(--rr-color-theme-primary);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 20px 0 0 0;
}

/* !END: Theme Faq CSS */
/**----------------------------------------
START: Testi CSS
----------------------------------------*/
.testi-carousel {
  overflow: visible;
  padding-top: 90px;
  padding-bottom: 80px;
}
.testi-carousel .swiper-pagination {
  bottom: 0;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  border: 1px solid var(--rr-color-border-1);
  opacity: 1;
}

.testi-item {
  background-color: var(--rr-color-bg-1);
  padding: 100px 40px 40px 40px;
  position: relative;
}
.testi-item .testi-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid #02050A;
  border-radius: 50%;
}
.testi-item .testi-thumb img {
  object-fit: cover;
}
.testi-item .testi-content .author {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.testi-item .testi-content .author span {
  color: var(--rr-color-theme-primary);
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  margin-top: 15px;
}

.testi-wrap {
  padding-top: 90px;
}

@media only screen and (max-width: 992px) {
  .testi-item.item-3 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .testi-item.item-3 {
    margin-bottom: 80px;
  }
}

.testi-content-4 {
  padding-right: 40px;
}
@media only screen and (max-width: 992px) {
  .testi-content-4 {
    padding-right: 0;
  }
}

.testi-top {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.testi-top:before {
  background-color: var(--rr-color-border-1);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.testi-top .quote {
  background-color: var(--rr-color-bg-1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rr-color-border-1);
}
.testi-top .quote img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.testi-top .swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.testi-top .swiper-arrow .swiper-nav {
  background-color: var(--rr-color-bg-1);
  border: 1px solid var(--rr-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rr-color-common-white);
  font-size: 14px;
  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;
}
.testi-top .swiper-arrow .swiper-nav:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}

.testi-box p {
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.testi-box .author-box {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.testi-box .author-box img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 3px solid var(--rr-color-theme-primary);
}
.testi-box .author-box .name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.testi-box .author-box .name span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--rr-color-text-body);
  margin-top: 10px;
}

.testi-img-4 {
  max-width: 630px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .testi-img-4 {
    margin: 0 auto;
    margin-top: 20px;
  }
}
.testi-img-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !END: Theme Testi CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.project-item {
  background-color: transparent;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.project-item .project-content {
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: start;
  grid-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .project-item .project-content {
    grid-template-columns: 1fr;
  }
}
.project-item .project-content .number {
  background-color: #11151C;
  color: var(--rr-color-common-white);
  font-size: 20px;
  font-weight: 700;
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rr-color-border-1);
}
.project-item .project-content .project-right {
  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;
}
.project-item .project-content .project-right .category {
  font-size: 14px;
  color: var(--rr-color-theme-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.project-item .project-content .project-right .title {
  color: var(--rr-color-common-white);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  .project-item .project-content .project-right .title {
    font-size: 24px;
  }
}
.project-item .project-content .project-right .hover-content p {
  margin-bottom: 25px;
  width: 100%;
}

.project-accordion .accordion-item {
  position: relative;
  border: none;
  padding-bottom: 40px;
  padding-top: 40px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.project-accordion .accordion-item:first-of-type {
  border-top: 1px solid var(--rr-color-border-1);
}
.project-accordion .accordion-item .accordion-header {
  background-color: transparent;
}
.project-accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.project-accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .project-content .number {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.project-accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 35px;
  padding-left: 80px;
  padding-bottom: 55px;
}
@media only screen and (max-width: 992px) {
  .project-accordion .accordion-item .accordion-body {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 992px) {
  .project-accordion .accordion-item .accordion-body {
    padding-left: 0;
  }
}
.project-accordion .accordion-item .accordion-body .hover-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.project-accordion .accordion-item .accordion-body .hover-content .content-left p {
  max-width: 560px;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1170px) {
  .project-accordion .accordion-item .accordion-body .hover-content .content-left p {
    max-width: 500px;
  }
}
.project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb {
  max-width: 600px;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0;
}
@media (max-width: 1170px) {
  .project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb {
    max-width: 370px;
  }
}
@media only screen and (max-width: 992px) {
  .project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb {
    position: inherit;
    max-width: 100%;
  }
}
.project-accordion .accordion-item .show .accordion-body .content-right {
  margin-top: -100px;
  -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: 992px) {
  .project-accordion .accordion-item .show .accordion-body .content-right {
    margin-top: 20px;
  }
}
.project-accordion .accordion-item .show .accordion-body .content-right .project-thumb {
  opacity: 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;
}
.project-top {
  position: relative;
}
.project-top .swiper-pagination {
  color: var(--rr-color-common-white);
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  bottom: 0;
  transform: translate(-50%);
  width: auto;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .project-top .swiper-pagination {
    display: none;
  }
}
.project-top .swiper-arrow {
  color: var(--rr-color-common-white);
  position: absolute;
  left: auto;
  right: -70px;
  top: 50%;
  bottom: 0;
  transform: translate(-50%);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .project-top .swiper-arrow {
    display: none;
  }
}
.project-top .swiper-arrow .swiper-nav.swiper-next {
  margin-right: 110px;
}

.project-carousel {
  overflow: visible;
}

.project-box {
  position: relative;
  border-radius: 50px;
  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;
}
.project-box .shape {
  background-color: var(--rr-color-theme-primary);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 11px;
  left: -10px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -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;
}
.project-box .project-thumb {
  height: 500px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .project-box .project-thumb {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .project-box .project-thumb {
    height: 400px;
  }
}
.project-box .project-thumb img {
  -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;
}
.project-box .project-content {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 2;
  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: 767px) {
  .project-box .project-content {
    bottom: 10px;
    left: 20px;
  }
}
.project-box .project-content span {
  color: var(--rr-color-common-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .project-box .project-content span {
    font-size: 12px;
  }
}
.project-box .project-content .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .project-box .project-content .title {
    font-size: 16px;
  }
}
.project-box .project-content .title a {
  color: var(--rr-color-common-white);
}
.project-box .project-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  height: 120px;
  width: 120px;
  font-size: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  -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;
}
.project-box .project-btn i {
  transform: rotate(-45deg);
  -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;
}
.project-box .project-btn:hover i {
  transform: rotate(0);
}
@media only screen and (max-width: 767px) {
  .project-box .project-btn {
    height: 80px;
    width: 80px;
    font-size: 24px;
  }
}
.project-box:hover .project-thumb img {
  filter: grayscale(1);
}
.project-box:hover .project-content {
  bottom: 50px;
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .project-box:hover .project-content {
    bottom: 20px;
  }
}
.project-box:hover .project-btn {
  transform: translate(-50%, -50%) scale(1);
}
.project-box:hover .shape {
  top: 1px;
  left: 0px;
  visibility: visible;
  opacity: 1;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.post-card-wrap:not(:last-of-type) {
  margin-bottom: 30px;
}

.post-card {
  background-color: var(--rr-color-bg-1);
  display: grid;
  align-items: center;
  grid-template-columns: 570px 1fr;
  grid-gap: 40px;
  padding: 30px;
  border: 1px solid var(--rr-color-border-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;
}
@media (max-width: 1170px) {
  .post-card {
    grid-template-columns: 470px 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .post-card {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .post-card {
    padding: 30px 20px;
  }
}
.post-card .post-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  transform: scale(1);
}
.post-card .post-content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .post-card .post-content .title {
    font-size: 18px;
  }
}
.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-common-white);
  background-size: 100% 2px;
}
.post-card .post-content .bb-primary-btn {
  background-color: transparent;
  border: 1px solid var(--rr-color-border-1);
  padding: 14.5px 30px;
}
.post-card .post-content .bb-primary-btn:before {
  background-color: var(--rr-color-theme-primary);
}
.post-card:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.post-card:hover .post-thumb img {
  transform: scale(1.02);
}

.post-meta {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 20px;
}
.post-meta li {
  font-family: var(--rr-ff-body);
  color: #B0B2B7;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-meta li i {
  font-size: 14px;
}
.post-meta li:not(:last-of-type) {
  margin-right: 20px;
}
.post-meta li a:hover {
  color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-meta li {
    font-size: 12px;
  }
}

.post-content-wrap .post-meta {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 20px;
}
.post-content-wrap .post-meta li {
  font-family: var(--rr-ff-body);
  color: #B0B2B7;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-content-wrap .post-meta li i {
  font-size: 14px;
}
.post-content-wrap .post-meta li:not(:last-of-type) {
  margin-right: 20px;
}
.post-content-wrap .post-meta li a:hover {
  color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-content-wrap .post-meta li {
    font-size: 12px;
  }
}

.post-content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .post-content .title {
    font-size: 18px;
  }
}
.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-content .title a:hover {
  color: var(--rr-color-common-white);
  background-size: 100% 2px;
}
.post-content .blog-btn {
  background-color: transparent;
  border: 1px solid var(--rr-color-border-1);
  padding: 14.5px 30px;
}
.post-content .blog-btn:before {
  background-color: var(--rr-color-theme-primary);
}

.post-card-2 {
  position: relative;
  z-index: 1;
}
.post-card-2 .post-thumb {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .post-card-2 .post-thumb {
    height: 420px;
  }
  .post-card-2 .post-thumb img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
  }
}
.post-card-2 .post-thumb img {
  -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-2 .post-thumb:before {
  background: linear-gradient(180deg, rgba(2, 5, 10, 0) 0%, rgba(29, 37, 81, 0.95) 51.08%);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -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;
  z-index: 1;
}
.post-card-2 .post-thumb:after {
  background: linear-gradient(180deg, rgba(14, 32, 147, 0.7) 0%, #3F5AF3 88.88%);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -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;
  visibility: hidden;
  opacity: 0;
}
.post-card-2 .post-content-wrap {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
  padding-right: 50px;
}
@media only screen and (max-width: 992px) {
  .post-card-2 .post-content-wrap {
    left: 30px;
    bottom: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-content-wrap {
    left: 20px;
    bottom: 20px;
    padding-right: 20px;
  }
}
.post-card-2 .post-content-wrap .post-content .post-meta li {
  color: var(--rr-color-common-white);
}
.post-card-2 .post-content-wrap .post-content .title a {
  background: linear-gradient(var(--rr-color-common-white) 0%, var(--rr-color-common-white) 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-2 .post-content-wrap .post-content .title a:hover {
  color: var(--rr-color-common-white);
  background-size: 100% 2px;
}
.post-card-2 .post-content-wrap .post-content .bb-primary-btn {
  padding: 14.5px 30px;
}
.post-card-2:hover .post-thumb:before {
  visibility: hidden;
  opacity: 0;
}
.post-card-2:hover .post-thumb:after {
  visibility: visible;
  opacity: 1;
}
.post-card-2.card-3 .post-content-wrap {
  position: inherit;
  top: 0;
  left: 0;
  padding: 0;
}
.post-card-2.card-3 .post-content-wrap .post-content .post-meta li {
  color: var(--rr-color-text-body);
}
.post-card-2.card-3 .post-content-wrap .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-2.card-3 .post-content-wrap .post-content .title a:hover {
  color: var(--rr-color-theme-primary);
  background-size: 100% 2px;
}
.post-card-2.card-3 .post-thumb {
  height: 350px;
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}
.post-card-2.card-3 .post-thumb:after, .post-card-2.card-3 .post-thumb:before {
  display: none;
}
.post-card-2.card-3 .post-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.post-card-2.card-3:hover .post-thumb img {
  transform: scale(1.02);
}
.post-card-2.inner-blog .post-thumb {
  height: 500px;
}
@media only screen and (max-width: 992px) {
  .post-card-2.inner-blog .post-thumb {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card-2.inner-blog .post-thumb {
    height: 300px;
  }
}
.post-card-2.inner-blog .post-content .title {
  font-size: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .post-card-2.inner-blog .post-content .title {
    font-size: 24px;
  }
}
.post-card-2.inner-blog .post-content p {
  max-width: 850px;
  width: 100%;
  margin-bottom: 35px;
}
.post-card-2.inner-blog .post-content .bb-primary-btn {
  background-color: transparent;
  border: 1px solid var(--rr-color-border-1);
}
.post-card-2.inner-blog .post-content .bb-primary-btn:before {
  background-color: var(--rr-color-theme-primary);
}
.post-card-2.inner-blog .post-content .bb-primary-btn:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.post-card-2.inner-blog:not(:last-of-type) {
  margin-bottom: 55px;
}
.post-card-2.inner-blog-2 {
  display: grid;
  align-items: center;
  grid-template-columns: 620px 1fr;
  grid-gap: 40px;
}
@media (max-width: 1170px) {
  .post-card-2.inner-blog-2 {
    grid-template-columns: 420px 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .post-card-2.inner-blog-2 {
    grid-template-columns: 1fr;
  }
}
.post-card-2.inner-blog-2:not(:last-of-type) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.post-card-2.inner-blog-2 .post-thumb {
  height: 380px;
  width: 100%;
  margin-bottom: 0;
}
.post-card-2.inner-blog-2 .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: top;
}
.post-card-2.inner-blog-2 .post-content {
  margin-top: 0;
}
.post-card-2.inner-blog-2 .post-content .title {
  font-size: 36px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .post-card-2.inner-blog-2 .post-content .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card-2.inner-blog-2 .post-content .title {
    font-size: 24px;
  }
}
.post-card-2.inner-blog-2 .post-content p {
  margin-bottom: 25px;
}
.post-card-2.inner-blog-2 .post-content .bb-primary-btn {
  background-color: transparent;
  border: 1px solid var(--rr-color-border-1);
}
.post-card-2.inner-blog-2 .post-content .bb-primary-btn:before {
  background-color: var(--rr-color-theme-primary);
}
.post-card-2.inner-blog-2 .post-content .bb-primary-btn:hover {
  border: 1px solid var(--rr-color-theme-primary);
}

.blog-section-3 {
  position: relative;
  z-index: 1;
}
.blog-section-3 .shapes .shape {
  position: absolute;
}
.blog-section-3 .shapes .shape.shape-1 {
  top: 3%;
  left: 6%;
}
.blog-section-3 .shapes .shape.shape-2 {
  bottom: 20%;
  right: 0px;
}

.grid-post-wrap {
  padding-right: 31px;
  border-right: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 992px) {
  .grid-post-wrap {
    padding-right: 0;
    border: none;
    margin-bottom: 50px;
  }
}

.pagination-wrap {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: 10px;
}
.pagination-wrap li a {
  background-color: transparent;
  color: var(--rr-color-common-white);
  font-weight: 700;
  height: 50px;
  width: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1px solid var(--rr-color-border-1);
}
.pagination-wrap li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}
.pagination-wrap li .active {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Sponsor CSS
----------------------------------------*/
.sponsor-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--rr-color-bg-1);
}
@media only screen and (max-width: 767px) {
  .sponsor-wrap {
    grid-template-columns: 1fr;
  }
}
.sponsor-wrap .sponsor-item {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .sponsor-wrap .sponsor-item {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.sponsor-wrap .sponsor-item .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 1170px) {
  .sponsor-wrap .sponsor-item .title {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .sponsor-wrap .sponsor-item .title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .sponsor-wrap .sponsor-item .title {
    padding-left: 0;
  }
}
.sponsor-wrap .sponsor-item.item-1 {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .sponsor-wrap .sponsor-item.item-1 {
    text-align: center;
  }
}
.sponsor-wrap .sponsor-item:not(:last-of-type) {
  border-right: 1px solid var(--rr-color-bg-1);
}
@media only screen and (max-width: 767px) {
  .sponsor-wrap .sponsor-item:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid var(--rr-color-bg-1);
  }
}
@media only screen and (max-width: 992px) {
  .sponsor-wrap .sponsor-item img {
    max-width: 75px;
  }
}

.sponsor-carousel-2 .sponsor-item img {
  width: 150px;
  height: 130px;
  object-fit: contain;
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-header .overlay {
  background-color: rgba(2, 5, 10, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-header .shape {
  position: absolute;
  z-index: -1;
}
.page-header .shape.shape-1 {
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
}
.page-header .shape.shape-2 {
  bottom: 0;
  left: 0;
}
.page-header .shape.shape-3 {
  bottom: 0;
  left: 0;
}
.page-header .page-header-content {
  padding: 310px 0 190px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .page-header .page-header-content {
    padding: 100px 0 100px 0;
  }
}
.page-header .page-header-content .title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .title {
    line-height: 1.3em;
  }
}
.page-header .page-header-content .title:before {
  background: linear-gradient(270deg, #cc0003 0%, transparent 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 11%;
  right: 0;
  z-index: -1;
  opacity: 0.95;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .title:before {
    display: none;
  }
}
@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: 29px;
  }
}
.page-header .page-header-content .sub-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .sub-title {
    font-size: 13px;
  }
}
.page-header .page-header-content .sub-title .home {
  color: var(--rr-color-text-body);
  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: "\f324";
  color: var(--rr-color-text-body);
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .sub-title a {
    line-height: 2;
  }
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-content {
  background-color: var(--rr-color-bg-1);
  border-radius: 40px;
  box-shadow: 0 0 8px #fff;
  padding: 40px 50px 40px 50px;
  border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .contact-content {
    padding: 30px 20px;
  }
}
.contact-content .section-heading {
  margin-bottom: 0px;
}
.contact-content .section-heading .section-title {
  font-size: 36px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .contact-content .section-heading .section-title {
    font-size: 32px;
  }
}
.contact-content .contact-list .list-item {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  grid-gap: 20px;
}
.mt-40{
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .contact-content .contact-list .list-item {
    grid-template-columns: 1fr;
  }
}
.contact-content .contact-list .list-item .icon {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-theme-primary);
  border-radius: 50%;
  font-size: 30px;
  height: 75px;
  width: 75px;
  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;
}
.contact-content .contact-list .list-item .content .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.contact-content .contact-list .list-item .content p {
  margin-bottom: 0;
}
.contact-content .contact-list .list-item .content a {
  display: block;
}
.contact-content .contact-list .list-item .content span {
  display: block;
}
.contact-content .contact-list .list-item:hover .icon {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.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;
}

.blog-contact-form.form-2 {
  border-radius: 40px;
  box-shadow: 0 0 8px #fff;
  border: 1px solid var(--rr-color-border-1);
}

.map-wrapper {
  margin-bottom: -10px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Reward CSS
----------------------------------------*/
@media only screen and (max-width: 767px) {
  .reward-section .section-heading .sub-heading {
    line-height: 1.5;
  }
}

.reward-item {
  background-color: var(--rr-color-bg-1);
  display: grid;
  align-items: center;
  grid-template-columns: 20% 1fr;
  grid-gap: 30px;
  padding: 40px 80px;
  border: 1px solid var(--rr-color-border-1);
  position: relative;
  z-index: 1;
}
@media (max-width: 1170px) {
  .reward-item {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .reward-item {
    padding: 40px 30px;
  }
}
.reward-item:not(:last-of-type) {
  margin-bottom: 25px;
}
.reward-item .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  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;
}
.reward-item .bg-img:before {
  background-color: #3F5AF3;
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.reward-item .reward-left .date {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  -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;
}
.reward-item .reward-right-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.reward-item .reward-right-wrap .reward-middle .title {
  color: #464B54;
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 0;
  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;
}
@media only screen and (max-width: 992px) {
  .reward-item .reward-right-wrap .reward-middle .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .reward-item .reward-right-wrap .reward-middle .title {
    font-size: 26px;
    line-height: 1.5;
  }
}
.reward-item .reward-right-wrap .reward-right .number {
  color: var(--rr-color-common-white);
  font-size: 24px;
  font-weight: 700;
  height: 65px;
  width: 65px;
  display: block;
  border: 1px solid var(--rr-color-border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  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;
}
.reward-item:hover {
  border: 1px solid transparent;
}
.reward-item:hover .bg-img {
  visibility: visible;
  opacity: 1;
}
.reward-item:hover .reward-left .date {
  color: var(--rr-color-common-white);
}
.reward-item:hover .reward-middle .title {
  color: var(--rr-color-common-white);
}
.reward-item:hover .reward-right .number {
  border: 1px solid var(--rr-color-common-white);
  color: var(--rr-color-common-white);
}

/* !END: Reward CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/
.team-item {
  overflow: hidden;
}
.team-item .team-thumb {
  position: relative;
  height: 420px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  -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;
  margin-bottom: 30px;
}
.team-item .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -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;
}
.team-item .team-thumb:before {
  /* background: rgb(63, 90, 243);
  background: linear-gradient(0deg, rgb(63, 90, 243) 0%, rgba(63, 90, 243, 0.0088410364) 70%); */
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -50px;
  left: 0;
  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;
}
.team-item .team-thumb:after {
  background: #cc0003;
  background: linear-gradient(0deg, #cc0003 0%, rgba(63, 90, 243, 0.0088410364) 70%);
  content: "";
  mix-blend-mode: saturation;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -50px;
  left: 0;
  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;
}
.team-item .team-thumb .team-social-2 {
  list-style: none;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  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;
}
.team-item .team-thumb .team-social-2 li {
  display: inline-flex;
}
.team-item .team-thumb .team-social-2 li:not(:last-of-type) {
  margin-right: 7px;
}
.team-item .team-thumb .team-social-2 li a {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  font-size: 14px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-item .team-thumb .team-social-2 li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.team-item .team-thumb:hover .team-social-2 {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
.team-item .team-content .title {
  font-weight: 700;
}
.team-item .team-content span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.team-item:hover .team-thumb {
  background-color: #cc0003;
}
.team-item:hover .team-thumb img {
  mix-blend-mode: multiply;
  filter: grayscale(1);
  -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;
}
.team-item:hover .team-thumb:after, .team-item:hover .team-thumb:before {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  transition-delay: 300ms;
}
.team-item:hover .team-thumb .team-social {
  bottom: 0;
  visibility: visible;
  opacity: 1;
}

.team-section-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.team-item-2 {
  position: relative;
}
.team-item-2 .team-thumb {
  margin-bottom: 0;
}
.team-item-2 .team-content {
  background-color: var(--rr-color-bg-1);
  text-align: center;
  padding: 25px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  border: 1px solid var(--rr-color-border-1);
  border-top: none;
}
.team-item-2 .team-content span {
  font-size: 16px;
  color: var(--rr-color-theme-primary);
  font-weight: 400;
  text-transform: capitalize;
}
.team-item-2 .team-social-2 {
  list-style: none;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 135px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  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;
}
.team-item-2 .team-social-2 li {
  display: inline-flex;
}
.team-item-2 .team-social-2 li:not(:last-of-type) {
  margin-right: 7px;
}
.team-item-2 .team-social-2 li a {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  font-size: 14px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-item-2 .team-social-2 li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.team-item-2:hover .team-social-2 {
  visibility: visible;
  opacity: 1;
  bottom: 150px;
}

/* !END: Team CSS */
/**----------------------------------------
START: Counter CSS
----------------------------------------*/
.counter-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .counter-item {
    justify-content: center;
  }
}
.counter-item .title {
  color: var(--rr-color-theme-primary);
  font-size: 120px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 1170px) {
  .counter-item .title {
    font-size: 66px;
  }
}
@media only screen and (max-width: 992px) {
  .counter-item .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-item .title {
    font-size: 65px;
  }
}
.counter-item .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.counter-item .title .odometer-digit-spacer {
  padding-right: 2px;
}
.counter-item p {
  font-size: 20px;
  color: var(--rr-color-common-white);
  margin-bottom: 0;
  /* margin-left: -20px; */
  position: relative;
  z-index: 1;
}
@media (max-width: 1170px) {
  .counter-item p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-item p {
    font-size: 15px;
    line-height: 1.2;
  }
  .counter-item p br {
    display: block;
  }
}

.counter-2 {
  padding: 50px 0;
  padding-bottom: 100px;
}
@media only screen and (max-width: 992px) {
  .counter-2 {
    padding: 40px 0;
  }
}

/* !END: Counter CSS */
/**----------------------------------------
START: Newsletter CSS
----------------------------------------*/
.newsletter-form {
  position: relative;
}
.newsletter-form .form-control {
  background-color: #0A0D13;
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-border-1);
  box-shadow: none;
  outline: none;
  padding: 24.5px 290px 24.5px 70px;
  border-radius: 0;
}
.newsletter-form .form-control::-webkit-input-placeholder {
  background-color: #0A0D13;
  color: var(--rr-color-common-white);
}
.newsletter-form .form-control:-moz-placeholder {
  background-color: #0A0D13;
  color: var(--rr-color-common-white);
}
.newsletter-form .form-control::-moz-placeholder {
  background-color: #0A0D13;
  color: var(--rr-color-common-white);
}
.newsletter-form .form-control:-ms-input-placeholder {
  background-color: #0A0D13;
  color: var(--rr-color-common-white);
}
.newsletter-form .form-control:focus {
  background-color: #0A0D13;
}
@media only screen and (max-width: 767px) {
  .newsletter-form .form-control {
    padding: 24.5px 20px;
  }
}
.newsletter-form .icon {
  color: var(--rr-color-common-white);
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .newsletter-form .icon {
    display: none;
  }
}
.newsletter-form .submit-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.newsletter-form .submit-btn .bb-primary-btn {
  padding: 19.5px 30px;
}
@media only screen and (max-width: 767px) {
  .newsletter-form .submit-btn {
    margin-top: 20px;
    position: inherit;
    top: 0;
    left: 0;
    transform: translateY(0);
  }
}

/* !END: Newsletter CSS */
/**----------------------------------------
START: Brand CSS
----------------------------------------*/
.brand-section {
  overflow: hidden;
}

.brand-wrap {
  background-color: var(--rr-color-bg-1);
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.brand-wrap .round-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.brand-wrap .brand-img-wrap {
  background-color: var(--rr-color-bg-1);
  mask-image: url(../img/images/mask-img-1.png);
  mask-repeat: no-repeat;
  mask-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.brand-wrap .brand-img-wrap .brand-img {
  position: relative;
  height: 100%;
  width: 100%;
}
.brand-wrap .brand-img-wrap .brand-img:before {
  background-color: #3F5AF3;
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.brand-wrap .brand-img-wrap .brand-img img {
  width: 883px;
  height: 640px;
  position: absolute;
  top: -7%;
  right: -3%;
  object-position: center;
  object-fit: cover;
  filter: saturate(0);
}

.brand-content .section-heading .section-title {
  margin-bottom: 30px;
}
.brand-content .section-heading p {
  margin-bottom: 30px;
  max-width: 690px;
  width: 100%;
}
.brand-content .brand-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 30px;
  list-style: none;
  position: relative;
  z-index: 1;
}
.brand-content .brand-list li:not(:last-of-type) {
  margin-right: 100px;
}
@media (max-width: 1170px) {
  .brand-content .brand-list li:not(:last-of-type) {
    margin-right: 50px;
  }
}
.brand-content .brand-list li a {
  display: block;
  max-width: 76px;
  width: 100%;
  height: 76px;
}

/* !END: Brand CSS */
/**----------------------------------------
START: Cta CSS
----------------------------------------*/
.cta-wrap .section-heading .section-title {
  font-size: 60px;
}
@media (max-width: 1170px) {
  .cta-wrap .section-heading .section-title {
    max-width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .cta-wrap .section-heading .section-title {
    font-size: 32px;
  }
}
.cta-wrap .cta-thumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-wrap .cta-thumb-wrap img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  filter: grayscale(1);
}
.cta-wrap .cta-thumb-wrap .cta-btn {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid #02050A;
  font-size: 30px;
  margin-left: -50px;
  position: relative;
  z-index: 2;
  -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;
}
.cta-wrap .cta-thumb-wrap .cta-btn i {
  transform: rotate(-45deg);
  -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;
}
.cta-wrap .cta-thumb-wrap .cta-btn:hover i {
  transform: rotate(0);
}

.service-cta {
  position: relative;
  z-index: 1;
}
.service-cta .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: saturate(0);
}
.service-cta .overlay {
  background-color: var(--rr-color-theme-primary);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.service-cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media only screen and (max-width: 992px) {
  .service-cta-wrap {
    padding: 60px 0;
  }
}
.service-cta-wrap .section-heading .sub-heading {
  color: var(--rr-color-common-white);
}
.service-cta-wrap .section-heading .sub-heading:before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}
.service-cta-wrap .cta-btn {
  background-color: transparent;
  border: 1px solid var(--rr-color-common-white);
}
.service-cta-wrap .cta-btn:before {
  background-color: var(--rr-color-theme-primary);
}
.service-cta-wrap .cta-btn:hover {
  border: 1px solid var(--rr-color-theme-primary);
}

/* !END: Cta CSS */
/**----------------------------------------
    START: Pricing CSS
----------------------------------------*/
.pricing-tab .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-tab .nav-wrap .nav-tabs {
  background-color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  border-bottom: none;
  border-radius: 100px;
  padding: 10px;
  margin-bottom: 30px;
}
.pricing-tab .nav-wrap .nav-tabs .nav-link {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  margin: 0 auto;
  margin-bottom: 0;
}
.pricing-tab .nav-wrap .nav-tabs .nav-link.active {
  background-color: rgba(63, 90, 243, 0.1);
  color: var(--rr-color-heading-primary);
  border: none;
  margin-bottom: 0;
}
.pricing-tab .nav-wrap .nav-tabs .nav-link span {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 12px;
  padding: 3px 10px;
  font-weight: 700;
  border-radius: 100px;
}

.tab-pane.active.show .row {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-fill-mode: both;
  transition: all 0.8s ease-in-out;
  transition-duration: 2000ms;
  animation-delay: 0.1s;
}

.pricing-item {
  background-color: var(--rr-color-bg-1);
  padding: 40px 50px;
  border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .pricing-item {
    padding: 30px 20px;
  }
}
.pricing-item .plan {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
.pricing-item .price {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.pricing-item span {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 500;
}
.pricing-item .pricing-btn-wrap {
  margin: 30px 0 35px 0;
}
.pricing-item .pricing-btn-wrap .pricing-btn {
  width: 100%;
  justify-content: center;
}
.pricing-item .pricing-btn-wrap .pricing-btn:before {
  background-color: var(--rr-color-common-white);
}
.pricing-item .pricing-btn-wrap .pricing-btn:hover {
  color: var(--rr-color-heading-primary);
}
.pricing-item .pricing-btn-wrap .pricing-btn:not(:last-of-type) {
  margin-bottom: 10px;
}
.pricing-item .pricing-btn-wrap .pricing-btn:nth-child(2) {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
}
.pricing-item .pricing-btn-wrap .pricing-btn:nth-child(2):before {
  background-color: var(--rr-color-theme-primary);
}
.pricing-item .pricing-btn-wrap .pricing-btn:nth-child(2):hover {
  color: var(--rr-color-common-white);
}
.pricing-item .feature {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-item p {
  font-size: 16px;
}
.pricing-item p:last-child {
  margin-bottom: 0;
}

/* !END: Pricing CSS */
/**----------------------------------------
    START: Appointment CSS
----------------------------------------*/
.appointment-section {
  overflow: hidden;
}

.appointment-wrap {
  background-color: var(--rr-color-bg-1);
  position: relative;
  z-index: 1;
}
.appointment-wrap:after {
  background-color: var(--rr-color-bg-1);
  content: "";
  height: 100%;
  width: 3000px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.appointment-wrap > div {
  padding: 0;
}
.appointment-wrap .appointment-img {
  width: 100%;
  height: 100%;
  max-width: 960px;
}
.appointment-img.reveal {
  opacity: 1;
  visibility: inherit;
  translate: none;
  rotate: none;
  width: 100%;
  scale: none;
  transform: translate(0px, 0px);
  width: 1000%;
}
@media only screen and (max-width: 1024px) {
  .appointment-img.reveal {
    width: 100%;
    transform: translate(0px, 0px)!important;
  }
}
@media only screen and (max-width: 992px) {
  .appointment-wrap .appointment-img {
    height: 600px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .appointment-img.reveal{
    display: none;
  }
}
@media only screen and (max-width: 425px) {
  .appointment-wrap .appointment-img {
    width: 100%;
    transform: translate(-20px, 0px);
  }
}
.appointment-wrap .appointment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.appointment-wrap .appointment-content {
  padding-left: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 1399px) {
  .appointment-wrap .appointment-content {
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media (max-width: 1170px) {
  .appointment-wrap .appointment-content {
    padding: 30px 20px 70px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .appointment-wrap .appointment-content {
    padding: 30px 20px 70px 20px;
  }
}
@media (max-width: 1170px) {
  .appointment-wrap .appointment-content .section-heading {
    margin-bottom: 30px;
  }
}
.appointment-wrap .appointment-content .section-heading .section-title {
  line-height: 1.5;
}
@media (max-width: 1170px) {
  .appointment-wrap .appointment-content .section-heading .section-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .appointment-wrap .appointment-content .section-heading .section-title {
    font-size: 24px;
  }
}
.appointment-wrap .appointment-content .appointment-form .form-control {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-common-white);
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 18px 20px;
  margin-bottom: 25px;
}
.appointment-wrap .appointment-content .appointment-form .form-control::-webkit-input-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
}
.appointment-wrap .appointment-content .appointment-form .form-control:-moz-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
}
.appointment-wrap .appointment-content .appointment-form .form-control::-moz-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
}
.appointment-wrap .appointment-content .appointment-form .form-control:-ms-input-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
}

/* !END: Appointment CSS */
/**----------------------------------------
    START: Case Study CSS
----------------------------------------*/
.cs-item {
  background-color: var(--rr-color-bg-1);
  padding: 40px;
}
@media only screen and (max-width: 992px) {
  .cs-item {
    padding: 20px;
  }
}
.cs-item .cs-thumb {
  position: relative;
}
.cs-item .cs-thumb:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -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;
}
.cs-item .cs-thumb .cs-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  height: 120px;
  width: 120px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  -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;
  transition-delay: 200ms;
}
.cs-item .cs-thumb .cs-btn i {
  transform: rotate(-45deg);
}
.cs-item .cs-thumb .cs-btn:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
@media only screen and (max-width: 992px) {
  .cs-item .cs-thumb .cs-btn {
    height: 80px;
    width: 80px;
    font-size: 30px;
  }
}
.cs-item .cs-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cs-item .cs-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 20px;
  margin-top: 40px;
}
@media only screen and (max-width: 992px) {
  .cs-item .cs-content {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cs-item .cs-content {
    column-gap: 10px;
  }
}
.cs-item .cs-content span {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 700;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -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;
}
.cs-item .cs-content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .cs-item .cs-content .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cs-item .cs-content .title {
    font-size: 15px;
  }
}
.cs-item:hover .cs-thumb:before {
  visibility: visible;
  opacity: 1;
}
.cs-item:hover .cs-thumb .cs-btn {
  transform: translate(-50%, -50%) scale(1);
}
.cs-item:hover .cs-content span {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

/* !END: Case Study CSS */
/**----------------------------------------
    START: Grow CSS
----------------------------------------*/
.grow-item {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .grow-item {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.grow-item .grow-icon {
  background: radial-gradient(50% 5688.89% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid #3E3E3E;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.grow-item .grow-icon svg {
  color: var(--rr-color-common-white);
}
.grow-item .grow-content .top-content {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.grow-item .grow-content .top-content .title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 1170px) {
  .grow-item .grow-content .top-content .title {
    font-size: 30px;
  }
}
.grow-item .grow-content .top-content .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.grow-item .grow-content .top-content .title .odometer-digit-spacer {
  padding-right: 2px;
}
.grow-item .grow-content .top-content p {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  margin-left: 10px;
}
@media (max-width: 1170px) {
  .grow-item .grow-content p br {
    display: none;
  }
}
.grow-item .grow-content p:last-child {
  margin-bottom: 0;
}

/* !END: Grow CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--rr-color-bg-1);
  border-left: 1px solid var(--rr-color-border-1);
  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;
  padding: 60px 40px;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 63px;
  color: var(--grey-color);
  -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;
}
.sidebar-trigger.close:hover {
  color: var(--rr-color-theme-primary);
}

.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;
}

.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: 400px;
    padding: 60px 30px;
    justify-content: center;
  }
  .side-menu-logo {
    margin-bottom: 50px;
  }
  .side-menu-wrap {
    margin-bottom: 70px;
  }
  .side-menu-header h3 {
    display: none;
  }
  .side-menu-list li a {
    font-size: 14px;
  }
  .side-menu-list li p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sidebar-area {
    width: 320px;
    padding: 60px 20px 60px 20px;
  }
  .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-logo {
  max-width: 150px;
}

.side-menu-about {
  margin: 50px 0 50px 0;
}
@media only screen and (max-width: 992px) {
  .side-menu-about {
    display: none;
  }
}

.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: 1px solid var(--rr-color-border-1);
  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: var(--rr-color-border-1);
  font-size: 17px;
  color: var(--rr-color-common-white);
  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: Sidebar CSS */
/**----------------------------------------
    START: Service Details CSS
----------------------------------------*/
.sidebar-content-wrap {
  padding-right: 30px;
}
@media only screen and (max-width: 992px) {
  .sidebar-content-wrap {
    padding-right: 0;
  }
}

.service-details-img {
  height: 500px;
  width: 100%;
  margin-bottom: 40px;
}
.service-details-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-details-content .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .service-details-content .title {
    font-size: 24px;
  }
}
.service-details-content .service-details-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  margin-bottom: 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 {
  background-color: var(--rr-color-bg-1);
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 30px;
  padding: 30px;
  border: 1px solid var(--rr-color-border-1);
}
@media (max-width: 1170px) {
  .service-details-content .service-details-items .service-details-item {
    grid-template-columns: 1fr;
  }
}
.service-details-content .service-details-items .service-details-item .icon svg {
  color: var(--rr-color-theme-primary);
}
.service-details-content .service-details-items .service-details-item .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-details-content .service-details-items .service-details-item p:last-child {
  margin-bottom: 0;
}
.service-details-content .details-box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .service-details-content .details-box-wrap {
    grid-template-columns: 1fr;
  }
}
.service-details-content .details-box-wrap .details-box {
  background-color: var(--rr-color-bg-1);
  padding: 30px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 30px;
  border: 1px solid var(--rr-color-border-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;
}
@media (max-width: 1170px) {
  .service-details-content .details-box-wrap .details-box {
    grid-template-columns: 1fr;
  }
}
.service-details-content .details-box-wrap .details-box span {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  display: block;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.service-details-content .details-box-wrap .details-box .content .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-details-content .details-box-wrap .details-box .content p:last-child {
  margin-bottom: 0;
}
.service-details-content .details-box-wrap .details-box:hover {
  border-left: 1px solid var(--rr-color-theme-primary);
}

.service-widget {
  background-color: var(--rr-color-bg-1);
  padding: 35px 40px;
  border: 1px solid var(--rr-color-border-1);
}
.service-widget:not(:last-of-type) {
  margin-bottom: 40px;
}
.service-widget .widget-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.service-widget .category-list {
  list-style: none;
}
.service-widget .category-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.service-widget .category-list li a {
  background-color: #191F27;
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.service-widget .category-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.service-widget .category-list li.active a {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.download-area .download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download-area .download-item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.download-area .download-item .left-item {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.download-area .download-item .left-item .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}
.download-area .download-item .left-item a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.download-area .download-item .download-btn {
  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;
}
.download-area .download-item .download-btn:hover {
  background-color: #191F27;
}

/* !END: Service Details CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-wrap {
  padding-right: 31px;
  border-right: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 992px) {
  .blog-details-wrap {
    padding-right: 0;
    border-right: none;
  }
}

.blog-details-img {
  width: 100%;
  height: 500px;
}
.blog-details-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
@media only screen and (max-width: 992px) {
  .blog-details-img {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-img {
    height: 300px;
  }
}

@media only screen and (max-width: 992px) {
  .blog-details-content {
    margin-bottom: 40px;
  }
}
.blog-details-content .details-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-title {
    font-size: 24px;
  }
}
.blog-details-content .details-img-wrap {
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 24px;
}
.blog-details-content .details-img-wrap img {
  max-width: 430px;
  width: 100%;
}
@media (max-width: 1170px) {
  .blog-details-content .details-img-wrap img {
    max-width: 280px;
  }
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-img-wrap img {
    max-width: 350px;
  }
}
.blog-details-content .blog-details-thumb {
  height: 400px;
  width: 100%;
}
.blog-details-content .blog-details-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .blog-details-content .blog-details-thumb {
    height: 300px;
  }
}

blockquote {
  background-color: var(--rr-color-bg-1);
  display: grid;
  align-items: center;
  grid-template-columns: 150px 1fr;
}
@media only screen and (max-width: 767px) {
  blockquote {
    grid-template-columns: 1fr;
  }
}
blockquote .icon {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 40px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  blockquote .icon {
    padding: 30px 0;
  }
}
blockquote .content {
  padding: 35px 40px;
}
blockquote .content p {
  color: var(--rr-color-common-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-transform: uppercase;
  margin-bottom: 20px;
}
blockquote .content .author {
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  padding-left: 50px;
  line-height: 1;
}
blockquote .content .author:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 30px;
  margin: 70px 0;
}
.tags .tag-left {
  display: flex;
  align-items: center;
}
.tags .tag-left .tag-list {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.tags .tag-left .tag-list li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--rr-color-common-white);
  padding: 12px 30px;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 100px;
}
.tags .tag-left .tag-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);
}
.tags .social-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.tags .social-list-wrap .follow {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.tags .social-list-wrap .social-list {
  display: flex;
  align-items: center;
  column-gap: 15px;
  list-style: none;
}
.tags .social-list-wrap .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.tags .social-list-wrap .social-list li a {
  color: var(--rr-color-common-white);
  font-size: 15px;
}
.tags .social-list-wrap .social-list li a:hover {
  color: var(--rr-color-theme-primary);
}

.next-prev-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--rr-color-border-1);
  border-bottom: 1px solid var(--rr-color-border-1);
  margin: 50px 0 0 0;
}
.next-prev-wrap .post-btn {
  margin-bottom: 0;
}
.next-prev-wrap .post-btn a {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 600;
  column-gap: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.next-prev-wrap .post-btn a:hover {
  color: var(--rr-color-theme-primary);
}
.next-prev-wrap .post-btn a .icon {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rr-color-border-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;
}
.next-prev-wrap .post-btn a .icon:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}

.blog-author-wrap {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.blog-author-item {
  background-color: var(--rr-color-bg-1);
  border: 1px solid var(--rr-color-border-1);
  padding: 40px;
  display: grid;
  align-items: center;
  grid-template-columns: 200px 1fr;
  grid-gap: 35px;
}
@media only screen and (max-width: 767px) {
  .blog-author-item {
    grid-template-columns: 1fr;
    grid-gap: 25px;
    padding: 25px;
  }
}
.blog-author-item .author-img {
  max-width: 200px;
  height: 170px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .blog-author-item .author-img {
    max-width: 100%;
  }
}
.blog-author-item .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-author-item .content .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blog-author-item .content p {
  margin-bottom: 25px;
}
.blog-author-item .content .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.blog-author-item .content .social-list li a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-bg-1);
  font-size: 13px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-author-item .content .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.blog-author-item .content .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

.comments-area .section-heading .section-title {
  font-size: 40px;
}
@media only screen and (max-width: 992px) {
  .comments-area .section-heading .section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .comments-area .section-heading .section-title {
    font-size: 26px;
  }
}

.comment-item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 110px 1fr;
  grid-gap: 25px;
}
@media only screen and (max-width: 767px) {
  .comment-item {
    grid-template-columns: 1fr;
  }
}
.comment-item .reply {
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .comment-item .reply {
    position: inherit;
    top: 0;
    left: 0;
    margin-top: 20px;
  }
}
.comment-item .comment-thumb img {
  height: 100%;
  width: 110px;
  object-fit: cover;
  object-position: top;
}
.comment-item .comment-info .comments-meta {
  margin-bottom: 10px;
}
.comment-item .comment-info .comments-meta span {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.comment-item .comment-info .author {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.comment-item .comment-info p {
  font-size: 16px;
  margin-bottom: 0;
}
.comment-item.item-2 {
  padding-left: 135px;
}
@media only screen and (max-width: 767px) {
  .comment-item.item-2 {
    padding-left: 0;
  }
}
.comment-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.blog-contact-form {
  background-color: var(--rr-color-bg-1);
  padding: 75px 70px;
}
@media only screen and (max-width: 767px) {
  .blog-contact-form {
    padding: 30px 20px;
  }
}
.blog-contact-form .title {
  font-size: 40px;
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .blog-contact-form .title {
    font-size: 28px;
  }
}
.blog-contact-form p {
  margin-bottom: 30px;
}
.blog-contact-form .request-form .form-item {
  position: relative;
}
.blog-contact-form .request-form .form-item .form-control {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  padding: 15.5px 30px;
  border-radius: 35px;
  margin-bottom: 25px;
  width: 100%;
}
.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control.nice-select {
  height: auto;
  line-height: inherit;
  padding: 15.5px 30px;
}
.blog-contact-form .request-form .form-item .form-control.nice-select:after {
  top: 46%;
  width: 10px;
  height: 10px;
  border-color: var(--rr-color-text-body);
  border-bottom: 1px solid var(--rr-color-text-body);
  border-right: 1px solid var(--rr-color-text-body);
  right: 35px;
}
.blog-contact-form .request-form .form-item .form-control.nice-select .list {
  background-color: var(--rr-color-border-1);
  width: 100%;
}
.blog-contact-form .request-form .form-item .form-control.nice-select .list li {
  padding-left: 30px;
}
.blog-contact-form .request-form .form-item .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.blog-contact-form .request-form .form-item.message-item .icon {
  top: 25px;
}

.sidebar-widget {
  padding-left: 10px;
}
.sidebar-widget:not(:last-of-type) {
  margin-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .sidebar-widget {
    padding-left: 0;
  }
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form .form-control {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  font-size: 16px;
  border: none;
  border-bottom: 1px solid var(--rr-color-border-1);
  border-radius: 0;
  box-shadow: none;
  padding: 15px 0;
  padding-left: 20px;
  padding-right: 30px;
}
.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-moz-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control::-moz-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-ms-input-placeholder {
  color: var(--rr-color-common-white);
  font-size: 16px;
}
.sidebar-widget .search-form .search-btn {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  height: 100%;
  width: 55px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.sidebar-widget .widget-title {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 30px;
}
.sidebar-widget.blog-author img {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.sidebar-widget.blog-author .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.sidebar-widget.blog-author p {
  margin-bottom: 25px;
}
.sidebar-widget.blog-author .social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.sidebar-widget.blog-author .social-list li a {
  color: var(--rr-color-common-white);
  font-size: 15px;
  display: block;
}
.sidebar-widget.blog-author .social-list li:not(:last-of-type) {
  margin-right: 15px;
}
.sidebar-widget .category-list {
  list-style: none;
}
.sidebar-widget .category-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.sidebar-widget .category-list li a {
  background-color: var(--rr-color-bg-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--rr-color-border-1);
  padding: 12px 20px;
}
.sidebar-widget .category-list li a:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .category-list li a i {
  color: var(--rr-color-theme-primary);
}
.sidebar-widget .category-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.sidebar-widget .category-list li a:hover i {
  color: var(--rr-color-common-white);
}
.sidebar-widget .blog-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
@media (max-width: 1399px) {
  .sidebar-widget .blog-gallery-wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .sidebar-widget .blog-gallery-wrap {
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
}
.sidebar-widget .blog-gallery-wrap .gallary-img {
  height: 100px;
  width: 100px;
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
  column-gap: 0;
  margin: 0;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 10px;
}
.sidebar-widget .tags li a {
  font-family: var(--rr-ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  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 {
  display: grid;
  align-items: center;
  grid-template-columns: 95px 1fr;
  grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .sidebar-post img {
  width: 100px;
  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;
  margin-bottom: 10px;
}
@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 {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: capitalize;
}
@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 .title {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .title {
    font-size: 14px;
  }
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--rr-color-theme-primary);
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
    START: Team Details CSS
----------------------------------------*/
.author-wrap {
  background-color: var(--rr-color-bg-1);
  padding: 60px;
}
@media (max-width: 1170px) {
  .author-wrap {
    padding: 60px 30px;
  }
}
@media only screen and (max-width: 992px) {
  .author-wrap {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .author-wrap {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 992px) {
  .author-wrap .author-img {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .author-wrap .author-content {
    margin-top: 40px;
  }
}
.author-wrap .author-content .name {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .author-wrap .author-content .name {
    font-size: 32px;
  }
}
.author-wrap .author-content .name span {
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}
.author-wrap .author-content p {
  margin-bottom: 40px;
}
.author-wrap .author-content .author-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rr-color-border-1);
  border-bottom: 1px solid var(--rr-color-border-1);
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .author-wrap .author-content .author-items {
    grid-template-columns: 1fr;
  }
}
.author-wrap .author-content .author-items .author-item {
  padding: 30px 0;
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
}
.author-wrap .author-content .author-items .author-item .icon {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.author-wrap .author-content .author-items .author-item .content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 1170px) {
  .author-wrap .author-content .author-items .author-item .content h4 {
    font-size: 15px;
  }
}
.author-wrap .author-content .author-items .author-item .content h4 span {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.author-wrap .author-content .author-items .author-item:nth-child(1) {
  border-bottom: 1px solid var(--rr-color-border-1);
  border-right: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .author-wrap .author-content .author-items .author-item:nth-child(1) {
    border: none;
    padding-left: 0;
  }
}
.author-wrap .author-content .author-items .author-item:nth-child(2) {
  padding-left: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .author-wrap .author-content .author-items .author-item:nth-child(2) {
    border: none;
    padding-left: 0;
  }
}
.author-wrap .author-content .author-items .author-item:nth-child(3) {
  border-right: 1px solid var(--rr-color-border-1);
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .author-wrap .author-content .author-items .author-item:nth-child(3) {
    border: none;
    padding-left: 0;
  }
}
.author-wrap .author-content .author-items .author-item:nth-child(4) {
  padding-left: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .author-wrap .author-content .author-items .author-item:nth-child(4) {
    border: none;
    padding-left: 0;
  }
}
.author-wrap .author-content .author-items .author-item:not(:last-of-type) {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.expertise-content {
  padding-right: 30px;
}
@media only screen and (max-width: 992px) {
  .expertise-content {
    padding-right: 0;
  }
}
.expertise-content .section-heading {
  margin-bottom: 40px;
}
.expertise-content .section-heading .section-title {
  margin-bottom: 30px;
}

.details-progress {
  list-style: none;
}
.details-progress .skills-item {
  overflow: hidden;
}
.details-progress .skills-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.details-progress .skills-item .title {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.details-progress .skills-item .progress {
  height: 5px;
  overflow: visible;
}
.details-progress .skills-item .progress .progress-bar {
  background-color: var(--rr-color-theme-primary);
  position: relative;
  overflow: visible;
}
.details-progress .skills-item .progress .progress-bar span {
  position: absolute;
  top: -38px;
  right: -15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--rr-color-common-white);
}

.expertise-img-wrap {
  max-width: 665px;
  height: 600px;
  width: 100%;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 1170px) {
  .expertise-img-wrap {
    margin: 0 auto;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .expertise-img-wrap {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .expertise-img-wrap {
    margin-top: 0;
  }
}
.expertise-img-wrap .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.expertise-img-wrap .exp-img {
  position: absolute;
  filter: saturate(0);
  z-index: 1;
}
.expertise-img-wrap .exp-img.img-1 {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  top: 20px;
  left: 80px;
}
@media only screen and (max-width: 767px) {
  .expertise-img-wrap .exp-img.img-1 {
    left: 50%;
    transform: translateX(-50%);
  }
}
.expertise-img-wrap .exp-img.img-2 {
  height: 280px;
  width: 280px;
  top: 50px;
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .expertise-img-wrap .exp-img.img-2 {
    display: none;
  }
}
.expertise-img-wrap .exp-img.img-3 {
  height: 290px;
  width: 290px;
  bottom: 30px;
  left: 60px;
}
@media only screen and (max-width: 767px) {
  .expertise-img-wrap .exp-img.img-3 {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* !END: Team Details CSS */
/**----------------------------------------
    START: Project Details CSS
----------------------------------------*/
.project-details-content .project-details-img {
  height: 700px;
  width: 100%;
}
.project-details-content .project-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .project-details-content .project-details-img {
    height: 500px;
  }
}
@media only screen and (max-width: 992px) {
  .project-details-content .project-details-img {
    height: 400px;
  }
}
.project-details-content .project-details-items {
  background-color: var(--rr-color-bg-1);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 20px;
  margin-top: 30px;
  margin-bottom: 65px;
  border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 992px) {
  .project-details-content .project-details-items {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .project-details-content .project-details-items {
    padding: 40px 20px;
  }
}
.project-details-content .project-details-items .project-details-item {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 20px;
}
.project-details-content .project-details-items .project-details-item .icon {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-common-white);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.project-details-content .project-details-items .project-details-item .content span {
  display: block;
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .project-details-content .project-details-items .project-details-item .content span {
    font-size: 12px;
  }
}
.project-details-content .project-details-items .project-details-item .content .item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .project-details-content .project-details-items .project-details-item .content .item-title {
    font-size: 15px;
  }
}
.project-details-content .details-title {
  font-size: 30px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .project-details-content .details-title {
    font-size: 22px;
  }
}

.project-details-wrap {
  margin-top: 70px;
}
.project-details-wrap .project-details-left {
  padding-right: 20px;
}
@media only screen and (max-width: 992px) {
  .project-details-wrap .project-details-left {
    padding-bottom: 40px;
    padding-right: 0;
  }
}
.project-details-wrap .project-details-left .details-item:not(:last-of-type) {
  margin-bottom: 50px;
}
.project-details-wrap .project-details-left .details-item .details-title {
  margin-bottom: 30px;
}
.project-details-wrap .project-details-left .details-item p {
  margin-bottom: 0;
}
.project-details-wrap .project-details-left .details-item p span {
  color: var(--rr-color-theme-primary);
}
.project-details-wrap .project-details-left .details-item p.desc {
  margin-bottom: 30px;
}
.project-details-wrap .project-details-thumb .details-thumb:not(:last-of-type) {
  margin-bottom: 25px;
}
@media only screen and (max-width: 992px) {
  .project-details-wrap .project-details-thumb .details-thumb {
    text-align: center;
  }
}

/* !END: Project Details CSS */
/**----------------------------------------
    START: Shop CSS
----------------------------------------*/
.shop-top {
  margin-bottom: 30px;
}
.shop-top .left-content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.shop-top .select-control {
  background-color: transparent;
  border: 1px solid var(--rr-color-border-1);
  padding: 14px 30px;
  padding-right: 60px;
  height: auto;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.shop-top .select-control:after {
  border: none;
  height: auto;
  width: auto;
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f0d7";
  color: var(--rr-color-text-body);
  position: absolute;
  top: 63%;
  right: 20px;
  transform: translateY(-50%);
}
.shop-top .select-control .list {
  background-color: var(--rr-color-bg-1);
  width: 100%;
}
.shop-top .select-control.open:after {
  transform: translateY(-50%);
}

.shop-item {
  background-color: var(--rr-color-bg-1);
  padding: 30px;
}
.shop-item .shop-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.shop-item .shop-thumb img {
  width: 100%;
  -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;
}
.shop-item .shop-thumb .overlay {
  background-color: rgba(11, 11, 16, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  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;
  z-index: 1;
}
.shop-item .shop-thumb .sale {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 20px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  z-index: 2;
}
.shop-item .shop-thumb .shop-list {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  -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;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
.shop-item .shop-thumb .shop-list li {
  display: inline-flex;
}
.shop-item .shop-thumb .shop-list li:not(:last-of-type) {
  margin-right: 10px;
}
.shop-item .shop-thumb .shop-list li a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-bg-1);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.shop-item .shop-thumb .shop-list li a i {
  line-height: 1;
  display: block;
}
.shop-item .shop-thumb .shop-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.shop-item .shop-content {
  margin-top: 30px;
}
.shop-item .shop-content .category {
  font-size: 12px;
  font-weight: 600;
  color: var(--rr-color-text-body);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.shop-item .shop-content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.shop-item .shop-content .title span {
  color: var(--rr-color-theme-primary);
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.shop-item .shop-content .title span .offer {
  margin-top: 0;
  margin-right: 10px;
  text-decoration: line-through;
  color: var(--rr-color-text-body);
}
.shop-item:hover .shop-thumb img {
  transform: scale(1.05);
}
.shop-item:hover .shop-thumb .overlay {
  visibility: visible;
  opacity: 1;
}
.shop-item:hover .shop-thumb .shop-list {
  top: 50%;
  visibility: visible;
  opacity: 1;
}

.tab-navigation {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-navigation button {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 0;
  margin-right: 30px;
  padding-bottom: 10px;
  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;
}

.tab-navigation button:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--rr-color-theme-primary);
  transition: 0.5s;
  opacity: 0;
}

.tab-navigation button.active:after {
  opacity: 1;
  width: 100%;
}

.tab-navigation button.active,
.tab-navigation button:hover {
  color: var(--rr-color-theme-primary);
}

/*** 7.2 - Tab Description ***/
.tab-content .tab-pane {
  margin-top: 40px;
}

.description-meta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.description-meta li span {
  color: var(--rr-color-theme-primary);
  font-weight: 600;
  margin-right: 5px;
}

/*** 7.3 - Tab Additional Information ***/
.product-table {
  background-color: var(--rr-color-bg-1);
  margin: 0;
  margin-top: 40px;
  --bs-table-bg: transparent;
}
.product-table:not(caption) > * > * {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table > :not(:last-child) > :last-child > * {
  border-color: rgba(255, 255, 255, 0.1);
}

.product-table tbody tr td,
.product-table thead tr th {
  text-align: center;
}

.product-table tbody tr td:not(:last-of-type),
.product-table thead tr th:not(:last-of-type) {
  border-right: 1px solid var(--rr-color-border-1);
}

.product-table tbody tr td:not(:last-of-type) {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table thead tr th {
  color: var(--rr-color-theme-primary);
}

.product-table tbody tr td {
  padding: 15px 0;
  color: #fff;
}

/*** 7.4 - Tab Review ***/
.review .comment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.review .comment-list > li {
  background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 30px;
  align-items: center;
  padding: 40px;
}

.review .comment-list .comment-thumb img {
  border-radius: 50%;
}

.review .comment-list .comment-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review .comment-list .comment-text h3 span {
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  display: block;
}

.review .comment-list .comment-text p {
  margin: 0;
}

/* !END: Shop CSS */
/**----------------------------------------
    START: Cart CSS
----------------------------------------*/
.cart-table {
  background-color: var(--rr-color-bg-1);
}
@media only screen and (max-width: 992px) {
  .cart-table {
    overflow: scroll;
  }
}
@media only screen and (max-width: 992px) {
  .cart-table table {
    width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table table {
    width: 800px;
  }
}
.cart-table thead {
  border: none;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.cart-table thead tr th {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  border-bottom: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 25px 0;
}
.cart-table thead tr th.product-subtotal {
  text-align: right;
  padding-right: 30px;
}
.cart-table tbody {
  border: none;
  border-bottom: 1px solid var(--rr-color-border-1);
  padding: 30px 0;
}
.cart-table tbody tr {
  vertical-align: baseline;
}
.cart-table tbody tr td {
  background-color: var(--rr-color-bg-1);
  color: var(--rr-color-common-white);
  padding: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cart-table tbody tr td.product-remove {
  text-align: center;
  padding: 0 25px;
}
.cart-table tbody tr td.product-thumbnail {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 15px;
  column-gap: 15px;
}
@media only screen and (max-width: 992px) {
  .cart-table tbody tr td.product-thumbnail {
    padding-right: 30px;
  }
}
.cart-table tbody tr td.product-thumbnail .category {
  color: var(--rr-color-theme-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.cart-table tbody tr td.product-thumbnail .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table tbody tr td.product-price {
  font-size: 16px;
  font-weight: 600;
  padding-right: 70px;
}
@media only screen and (max-width: 992px) {
  .cart-table tbody tr td.product-price {
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table tbody tr td.product-price {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 992px) {
  .cart-table tbody tr td.product-quantity {
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table tbody tr td.product-quantity {
    padding-right: 0;
  }
}
.cart-table tbody tr td.product-quantity input {
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  border: 1px solid var(--rr-color-border-1);
  height: 50px;
  text-align: center;
  outline: none;
  box-shadow: none;
  padding: 0 8px;
}
.cart-table tbody tr td.product-subtotal {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .cart-table tbody tr td.product-subtotal {
    padding-right: 20px;
  }
}
.cart-table.table-2 thead {
  background-color: #fff;
}

.cart-btn-wrap {
  background-color: var(--rr-color-bg-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 30px;
}
.cart-btn-wrap .left-item {
  display: grid;
  grid-template-columns: 295px 1fr;
  align-items: center;
  grid-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .cart-btn-wrap .left-item {
    grid-template-columns: 1fr;
  }
}
.cart-btn-wrap .left-item .form-control {
  background-color: var(--rr-color-border-1);
  box-shadow: none;
  font-size: 14px;
  border: 1px solid transparent;
  color: var(--rr-color-text-body);
  padding: 14px 20px;
  border-radius: 0;
}
.cart-btn-wrap .left-item .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}
.cart-btn-wrap .left-item .form-control:-moz-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}
.cart-btn-wrap .left-item .form-control::-moz-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}
.cart-btn-wrap .left-item .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}
.cart-btn-wrap .left-item .bb-primary-btn {
  font-size: 14px;
  padding: 17px 30px;
  border: none;
}
.cart-btn-wrap .update-btn {
  background-color: transparent;
  font-size: 14px;
  padding: 17px 30px;
  border: 1px solid var(--rr-color-border-1);
  text-transform: uppercase;
}
.cart-btn-wrap .update-btn:before {
  background-color: var(--rr-color-theme-primary);
}
.cart-btn-wrap .update-btn:hover {
  border: 1px solid var(--rr-color-theme-primary);
}

.cart-box-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .cart-box-title {
    font-size: 28px;
  }
}

.checkout-wrapper {
  background-color: var(--rr-color-bg-1);
  max-width: 600px;
  width: 100%;
  border: 1px solid var(--rr-color-border-1);
  padding: 35px 0;
}
.checkout-wrapper .checkout-item {
  display: flex;
  align-items: center;
  align-items: start;
  column-gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  padding-left: 35px;
  padding-right: 35px;
}
@media only screen and (max-width: 767px) {
  .checkout-wrapper .checkout-item {
    align-items: center;
  }
}
.checkout-wrapper .checkout-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.checkout-wrapper .checkout-item .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.checkout-wrapper .checkout-item span {
  color: var(--rr-color-common-white);
  font-size: 18px;
  font-weight: 400;
}
.checkout-wrapper .checkout-item p {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8;
  margin: 20px 0;
}
.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option label {
  font-size: 16px;
  color: var(--rr-color-common-white);
  font-weight: 400;
  margin-left: 10px;
  cursor: pointer;
}
.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option:not(:last-of-type) {
  margin-bottom: 10px;
}

.checkout-proceed {
  margin-top: 30px;
}

/* !END: Cart CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.checkout-top {
  margin-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .checkout-top {
    margin-bottom: 40px;
  }
}
.checkout-top .coupon-list .verify-item .title {
  background-color: var(--rr-color-bg-1);
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  -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;
}
.checkout-top .coupon-list .verify-item .title:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.checkout-top .coupon-list .verify-item .title button {
  font-weight: 600;
  margin: 0 5px;
  text-decoration: underline;
}
.checkout-top .coupon-list .verify-item .login-form {
  padding-top: 30px;
  display: none;
}
.checkout-top .coupon-list .verify-item .login-form .form-control {
  background-color: var(--rr-color-bg-1);
  padding: 15px 30px;
  border: none;
  box-shadow: none;
  font-size: 14px;
  color: var(--rr-color-text-body);
  border-radius: 0;
  margin-bottom: 20px;
  max-width: 700px;
  width: 100%;
}
.checkout-top .coupon-list .verify-item .login-form .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-top .coupon-list .verify-item .login-form .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-top .coupon-list .verify-item .login-form .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-top .coupon-list .verify-item .login-form .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-top .coupon-list .verify-item .checkbox-wrap {
  max-width: 700px;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .checkbox-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .checkbox-item label {
  color: var(--rr-color-common-white);
  cursor: pointer;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .forgot {
  color: var(--rr-color-common-white);
  font-weight: 600;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .forgot:hover {
  color: var(--rr-color-theme-primary);
}

.checkout-left {
  padding-right: 10px;
}
@media only screen and (max-width: 992px) {
  .checkout-left {
    padding-right: 0;
  }
}
.checkout-left .form-header {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}

.checkout-form-wrap .form-group:not(:last-of-type) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .checkout-form-wrap .form-item.name {
    margin-bottom: 30px;
  }
}
.checkout-form-wrap .form-item .form-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.checkout-form-wrap .form-item .form-control {
  padding: 18px 20px;
  background-color: var(--rr-color-bg-1);
  border: none;
  box-shadow: none;
  font-size: 16px;
  color: var(--rr-color-text-body);
  border-radius: 0;
}
.checkout-form-wrap .form-item .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-form-wrap .form-item .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-form-wrap .form-item .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-form-wrap .form-item .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
}
.checkout-form-wrap .form-item .form-control.street-control {
  margin-bottom: 20px;
}
.checkout-form-wrap .form-item .form-control.nice-select {
  width: 100%;
  height: auto;
  line-height: inherit;
  padding: 18px 20px;
}
.checkout-form-wrap .form-item .form-control.nice-select:after {
  top: 46%;
  width: 10px;
  height: 10px;
  border-color: var(--rr-color-text-body);
  border-bottom: 1px solid var(--rr-color-text-body);
  border-right: 1px solid var(--rr-color-text-body);
  right: 25px;
}
.checkout-form-wrap .form-item .form-control.nice-select .list {
  background-color: var(--rr-color-bg-1);
  width: 100%;
  border-radius: 0;
}
.checkout-form-wrap .form-item .form-control.nice-select .list li {
  padding-left: 20px;
}

.checkout-right {
  padding-left: 10px;
}
@media only screen and (max-width: 992px) {
  .checkout-right {
    margin-top: 50px;
    padding-left: 0;
  }
}
.checkout-right .form-header {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}

.order-box {
  background-color: var(--rr-color-bg-1);
  padding: 30px 40px;
  border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .order-box {
    padding: 30px 20px;
  }
}
.order-box .order-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px;
}
.order-box .order-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .order-box .order-item {
    grid-template-columns: 1fr;
  }
}
.order-box .order-item .order-left .order-img {
  height: 80px;
  width: 80px;
}
.order-box .order-item .order-left .order-img img {
  width: 100%;
  height: 100%;
}
.order-box .order-item .order-left .product {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}
.order-box .order-item .order-left .left-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--rr-color-common-white);
  line-height: 1;
}
.order-box .order-item .order-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.order-box .order-item .order-right .content .category {
  color: var(--rr-color-theme-primary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
.order-box .order-item .order-right .content .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}
.order-box .order-item .order-right .price {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}
.order-box .order-item .order-right .right-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--rr-color-common-white);
  line-height: 1;
}
.order-box .order-item .order-right .right-title span {
  color: var(--rr-color-text-body);
  font-weight: 200;
  margin-right: 10px;
}
.order-box .order-item .order-right .right-title.title-2 {
  color: var(--rr-color-theme-primary);
}
.order-box .order-item.item-1 {
  grid-template-columns: 200px 1fr;
}
@media only screen and (max-width: 767px) {
  .order-box .order-item.item-1 {
    grid-template-columns: 100px 1fr;
  }
}
.order-box .order-item.item-1 .order-right {
  justify-content: end;
}

.payment-option-wrap {
  margin-top: 40px;
}
.payment-option-wrap .payment-option .shipping-option:not(:last-of-type) {
  margin-bottom: 20px;
}
.payment-option-wrap .payment-option .shipping-option label {
  font-size: 16px;
  font-weight: 400;
  color: var(--rr-color-common-white);
  margin-left: 5px;
}
.payment-option-wrap .payment-option .shipping-option .options input {
  margin-bottom: 15px;
}
.payment-option-wrap .desc {
  margin: 20px 0;
}
.payment-option-wrap .form-check {
  margin-bottom: 40px;
}
.payment-option-wrap .form-check .form-check-input {
  background-color: transparent;
  border: 1px solid var(--rr-color-border-1);
  box-shadow: none;
}
.payment-option-wrap .form-check .form-check-label {
  cursor: pointer;
}
.payment-option-wrap .order-btn {
  width: 100%;
  justify-content: center;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Error CSS
----------------------------------------*/
.error-content .text {
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .error-content .text {
    font-size: 60px;
  }
}
.error-content .text span {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-top: 20px;
}

/* !END: Error CSS */
/**----------------------------------------
    START: Shop Details CSS
----------------------------------------*/
.product-details-wrap {
  position: relative;
  height: 620px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap {
    height: 450px;
  }
}
.product-details-wrap .sale {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}
.product-details-wrap .product-gallary .gallary-item {
  background-color: var(--rr-color-common-white);
  height: 620px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary .gallary-item {
    height: 450px;
  }
}
.product-details-wrap .product-gallary .gallary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -60px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary .gallary-item img {
    object-position: center -40px;
  }
}
.product-details-wrap .product-gallary-thumb {
  position: absolute;
  left: 50px;
  bottom: 30px;
  width: 100%;
  max-width: 290px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary-thumb {
    max-width: 100%;
    padding: 0 15px;
    left: 0;
  }
}
.product-details-wrap .product-gallary-thumb .thumb-item {
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE0E3;
  cursor: pointer;
}
.product-details-wrap .product-gallary-thumb .thumb-item img {
  width: auto;
  height: auto;
  object-fit: inherit;
}
.product-details-wrap .product-gallary-thumb .swiper-slide-thumb-active .thumb-item {
  border: 1px solid var(--rr-color-theme-primary);
}

.product-info {
  padding-left: 20px;
}
@media only screen and (max-width: 992px) {
  .product-info {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-info {
    padding-top: 40px;
  }
}
.product-info .category {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: block;
}
.product-info .title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .product-info .title {
    font-size: 24px;
  }
}
.product-info .rating-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product-info .rating-wrap .rating {
  display: flex;
  align-items: center;
  list-style: none;
}
.product-info .rating-wrap .rating li {
  color: #F9B317;
}
.product-info .rating-wrap .rating li:not(:last-of-type) {
  margin-right: 5px;
}
.product-info .rating-wrap span {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
}
.product-info .price {
  font-size: 22px;
  nav-down: 600;
  margin-bottom: 30px;
}
.product-info .desc {
  border-top: 1px solid var(--rr-color-border-1);
  border-bottom: 1px solid var(--rr-color-border-1);
  padding: 20px 0;
  margin-bottom: 0;
  margin-bottom: 30px;
}
.product-info .details-list {
  list-style: none;
}
.product-info .details-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--rr-color-common-white);
}
.product-info .details-list li i {
  width: 20px;
}
.product-info .details-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.product-info .product-btn {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
}
.product-info .product-btn input {
  background-color: var(--rr-color-theme-primary);
  color: #fff;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  text-align: center;
}
.product-info .product-btn .cart-btn {
  border-radius: 100px;
  padding: 15px 30px;
}
.product-info .product-meta {
  list-style: none;
}
.product-info .product-meta li {
  font-size: 16px;
  font-weight: 400;
}
.product-info .product-meta li a {
  padding-left: 10px;
}
.product-info .product-meta li:not(:last-of-type) {
  margin-bottom: 5px;
}

.reviewr-wrap {
  padding-right: 20px;
}
@media only screen and (max-width: 992px) {
  .reviewr-wrap {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.reviewr-wrap .review-list .review-item {
  display: grid;
  align-items: center;
  grid-template-columns: 90px 1fr;
  grid-gap: 15px;
  padding: 30px;
  border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .reviewr-wrap .review-list .review-item {
    grid-template-columns: 1fr;
  }
}
.reviewr-wrap .review-list .review-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.reviewr-wrap .review-list .review-item img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.reviewr-wrap .review-list .review-item .content .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name span {
  font-size: 15px;
  display: block;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 7px;
}
.reviewr-wrap .review-list .review-item .content .content-top ul {
  list-style: none;
}
.reviewr-wrap .review-list .review-item .content .content-top ul li {
  display: inline-flex;
  color: #FFB21D;
}
.reviewr-wrap .review-list .review-item .content .content-top ul li:not(:last-of-type) {
  margin-right: 2px;
}
.reviewr-wrap .review-list .review-item .content p {
  margin-bottom: 0;
}

.review-form-wrap .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.review-form-wrap .publish {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}
.review-form-wrap .review-box {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.review-form-wrap .review-box span {
  color: var(--rr-color-common-white);
}
.review-form-wrap .review-box .review {
  list-style: none;
}
.review-form-wrap .review-box .review li {
  display: inline-flex;
  color: #FFB21D;
}
.review-form-wrap .review-box .review li:not(:last-of-type) {
  margin-right: 2px;
}
.review-form-wrap .review-form {
  background-color: transparent;
  padding: 0;
  border: none;
  margin-top: 40px;
}
.review-form-wrap .checkbox-wrap {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.review-form-wrap .checkbox-wrap input {
  width: 15px;
  height: 15px;
}
.review-form-wrap .checkbox-wrap label {
  color: var(--rr-color-common-white);
  cursor: pointer;
  margin-left: 10px;
}
.review-form-wrap .submit-btn .bb-primary-btn {
  padding: 15px 35px;
}

/* !END: Shop Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-wrap {
  padding-top: 95px;
  padding-bottom: 35px;
}
@media only screen and (max-width: 992px) {
  .footer-wrap {
    padding: 80px 0 0 0;
  }
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .widget-header {
  margin-bottom: 25px;
}
.footer-widget .widget-header .footer-logo {
  max-width: 170px;
}
.footer-widget .widget-header .widget-title {
  color: var(--rr-color-common-white);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  position: relative;
}
.footer-widget .widget-header .widget-title:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  height: 5px;
  width: 70px;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.footer-widget .title {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 30px;
  text-transform: uppercase;
}
.footer-widget .title span {
  color: var(--rr-color-text-body);
  display: block;
  margin-top: 10px;
  text-transform: inherit;
  font-weight: 400;
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-list li a {
  font-family: var(--rr-ff-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 20px;
}
.footer-widget .footer-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 18px;
}
.footer-widget .footer-form {
  position: relative;
  margin-top: 30px;
}
.footer-widget .footer-form .form-control {
  /* background-color: var(--rr-color-border-1);
  padding: 15px 104px 15px 15px;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border: none;
  border-radius: 10px; */
  height: 50px;
  width: 100%;
  border-radius: 10px;
  background-color: #000;
  border: none;
  padding: 5px 90px 5px 15px;
  outline: none;
  color: #fefefe;
}
.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%;
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px;
  border-radius: 4px; */
  padding: 7px 25px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  background-color: var(--rr-color-theme-primary);
  position: absolute;
  top: 5px;
  right: 5px;
  font-weight: 600;
  border: none;
  overflow: hidden;
}
.footer-widget .address-list {
  list-style: none;
}
.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 {
  border-bottom: 1px solid transparent;
}
.footer-widget .address-list li a:hover {
  color: var(--rr-color-theme-primary);
  /* border-bottom: 1px solid 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: 50%;
  display: block;
  border: 2px 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); */
  border: 2px solid #c90003;
  color: #c90003;
}
.footer-widget .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.footer-widget .form-check {
  margin-top: 30px;
}
.footer-widget .form-check .form-check-input {
  background-color: var(--rr-color-border-1);
  border: none;
  box-shadow: none;
  height: 17px;
  width: 17px;
}
.footer-widget .form-check .form-check-input:checked[type=checkbox] {
  box-shadow: none;
}
.footer-widget .form-check .form-check-label {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.footer-widget.footer-col-2 {
  padding-left: 70px;
}
@media only screen and (max-width: 992px) {
  .footer-widget.footer-col-2 {
    padding-left: 0;
  }
}
.footer-widget.footer-col-2 .footer-list li a {
  position: relative;
  padding-left: 30px;
}
.footer-widget.footer-col-2 .footer-list li a:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f356";
  color: var(--rr-color-text-body);
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.footer-widget.footer-col-2 .footer-list li a:hover:before {
  color: var(--rr-color-theme-primary);
  left: 5px;
}
.footer-widget.widget-3 {
  padding-left: 30px;
}
@media only screen and (max-width: 992px) {
  .footer-widget.widget-3 {
    padding-left: 0;
  }
}

.copyright-area {
  border-top: 1px solid rgba(131, 131, 131, 0.2);
  /* padding: 20px 0; */
}
/* @media only screen and (max-width: 992px) {
  .copyright-area {
    padding: 20px 0;
  } 
}*/

.copyright-content {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .copyright-content {
    row-gap: 20px;
  }
}
.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);
}
@media only screen and (max-width: 767px) {
  .copyright-content p {
    text-align: center;
  }
}
.copyright-content .social-list {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .copyright-content .social-list {
    justify-content: center;
  }
}
.copyright-content .social-list li a {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-common-white);
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright-content .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.copyright-content .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 100px 0 60px 0;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .footer-top {
    padding: 50px 0;
    margin-bottom: 50px;
  }
}
.footer-top .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.footer-top .social-list li a {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-common-white);
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-top .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.footer-top .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

.footer-2 .footer-wrap {
  padding-top: 0;
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .footer-2 .footer-wrap {
    padding-bottom: 0;
  }
}
.footer-2 .copyright-content p {
  color: var(--rr-color-common-white);
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .footer-2 .copyright-content p {
    text-align: center;
    margin-bottom: 15px;
  }
}
.footer-2 .copyright-content .copyright-list {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media only screen and (max-width: 992px) {
  .footer-2 .copyright-content .copyright-list {
    justify-content: center;
  }
}
.footer-2 .copyright-content .copyright-list li {
  position: relative;
}
.footer-2 .copyright-content .copyright-list li:not(:last-of-type) {
  padding-right: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .footer-2 .copyright-content .copyright-list li:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 0;
  }
}
.footer-2 .copyright-content .copyright-list li:not(:last-of-type):before {
  content: "|";
  color: var(--rr-color-common-white);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .footer-2 .copyright-content .copyright-list li:not(:last-of-type):before {
    display: none;
  }
}
.footer-2 .copyright-content .copyright-list li a {
  color: var(--rr-color-common-white);
}
.footer-2 .copyright-content .copyright-list li a:hover {
  color: var(--rr-color-theme-primary);
}

.footer-3 .footer-top {
  padding-bottom: 90px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footer-3 .footer-top {
    padding: 50px 0;
  }
}
.footer-3 .footer-top .title {
  font-size: 80px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .footer-3 .footer-top .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-3 .footer-top .title {
    font-size: 30px;
  }
}
.footer-3 .footer-top .footer-btn {
  color: var(--rr-color-common-white);
  font-size: 30px;
  height: 130px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rr-color-theme-primary);
}
.footer-3 .footer-top .footer-btn i {
  transform: rotate(-45deg);
  -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;
}
.footer-3 .footer-top .footer-btn:hover i {
  transform: rotate(0deg);
}
.footer-3 .footer-wrap {
  border-bottom: 1px solid var(--rr-color-border-1);
  padding: 30px 0;
}
.footer-3 .footer-wrap .footer-text-social {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .footer-3 .footer-wrap .footer-text-social {
    justify-content: start;
  }
}
.footer-3 .footer-wrap .footer-text-social li {
  line-height: 1;
}
.footer-3 .footer-wrap .footer-text-social li:not(:last-of-type) {
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .footer-3 .footer-wrap .footer-text-social li:not(:last-of-type) {
    margin-right: 20px;
  }
}
.footer-3 .footer-wrap .footer-text-social li a {
  color: var(--rr-color-common-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.footer-3 .footer-wrap .footer-text-social li a:hover {
  color: var(--rr-color-theme-primary);
}
.footer-3 .copyright-area {
  border-top: none;
}
.footer-3 .copyright-area .site-logo {
  max-width: 170px;
}

@media only screen and (max-width: 767px) {
  .copyright-content.content-2 .site-logo {
    margin: 0 auto;
  }
}
.copyright-content.content-2 p {
  text-align: right;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .copyright-content.content-2 p {
    text-align: center;
  }
}


.header .primary-header-inner .header-logo img{
    max-width: 97px;
}
.fh001{
  text-align: center;
}
.fh000{
  /* margin-top: 300px; */
  max-width: 100%;
}
.fh000::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  bottom: 0;
  background-image: linear-gradient(to top, #000 -20%, transparent);
}
.fh000-btn{
  background-color: #cc0003!important;
  transition: .5s;
  color: #fff;
  padding: 10px 35px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 5px;
}

.fh000-btn:hover{
  background-color: white;
  transition: .5s;
  color: #000;
}

/* .header .primary-header-inner .header-right-wrap .header-menu-wrap ul li a.active{
  color: #cc0003;
} */

.stats-container {
  display: flex;
  justify-content: space-around;
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 20px 40px;
  width: 100%;
  box-shadow: 0 0 8px #fff;
}

.stat-item {
  text-align: center;
  margin: 0 20px;
}

.stat-item h2 {
  font-size: 18px;
  font-family: montserrat, sans-serif;
  margin: 0;
}

.stat-item p {
  margin: 5px 0 0;
  font-size: 11px;
  font-family: montserrat, sans-serif;
  color: #fff;
  line-height: 1em;
}

.feature-number h1 {
  font-size: 8em;
  margin: 0;
  color: #fff;
  font-weight: bold;
  /* text-align: center; */
}

.feature-content h2 {
  font-size: 25px;
  font-weight: 800;
  color: #f00;
  margin-bottom: 20px;
}

.feature-content p {
  margin: 0 0 20px;
  font-size: 20px;
  color: #fff;
}

.feature-content .lm-button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 50px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: .5s ease-in-out;
}

.feature-content .lm-button:hover {
  background-color: #cc0003;
  color: #fff;
}
.fh004 {
  background-color: #1e1e1e;
  padding: 50px;
  width: 100%;
  border-radius: 20px;
  margin-top: 70px;
}


.fh005 {
  text-align: center;
  flex-direction: column;
  width: 30%;
  margin-top: 50px;
}

.fh005 h3 {
  letter-spacing: 0.1em;
  font-size: 45px;
}

.fh005 p {
  font-size: 14px;
}

.fh005 h6 {
  font-size: 7px;
  margin-bottom: 20px;
}

.fh005 h2 {
  font-size: 15px;
  font-weight: normal;
}

.computer-empty {
  overflow: hidden;
  position: relative;
  width: 540px;
}

.computer-screen {
  overflow: hidden;
  position: absolute;
  height: 247px;
  width: 400px;
  left: 70px;
  top: 20px;
}

.screen-landing {
  left: 0;
  line-height: 0;
  position: absolute;
  width: 100%;
  transition: all 6s;
  -o-transition: all 6s;
  -ms-transition: all 6s;
  -moz-transition: all 6s;
  -webkit-transition: all 6s;
}

.screen-landing img {
  max-width: 100%;
  width: auto\9;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.computer-empty img.computer {
  width: 100%;
}

/* Remove previous hover effect */
.mouse-img .screen-landing-image, .screen-landing-image-2, .screen-landing-image-1 {
  cursor: pointer;
}




.fh006-btn{
  background-color: #fff;
  transition: .5s;
  color: #000;
  margin-top: 40px;
  padding: 10px 35px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 5px;
}

.fh006-btn:hover{
  background-color: #cc0003;
  transition: .5s;
  color: #000;
}
.fh006 h3{
  font-weight: 300;
}

.fh006 .text-marzi-ka
{
  font-size: 22px;
  color: #f00;
}

.text-marzi-ka
{
  color: #f00;
}


.campaign-stat-item {
  text-align: center;
  margin: 45px 0px;
  background: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 0 8px #fff;
  padding: 40px 3px;
}

.campaign-stat-item h2 {
  font-size: 18px;
  font-family: montserrat, sans-serif;
  margin: 0;
}

.campaign-stat-item p {
  margin: 5px 0 0;
  font-size: 11px;
  font-family: montserrat, sans-serif;
  color: #fff;
  line-height: 1em;
}

.fh007 p {
  font-size: 15px;
  text-align: center;
  /* margin-bottom: 110px; */
}
.fh008{
  /* background-color: #cc0003c4; */
  padding: 50px;
  width: 100%;
  border-radius: 20px;
}

.book-free-content {
  text-align: center;
}

.book-free-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.book-free-content p {
  margin: 0 0 20px;
  font-size: 15px;
  color: #fff;
}

/* .book-free-content .fh008-btn{
  background-color: #000;
  color: #fff;
}

.book-free-content .fh008-btn:hover{
  background-color: transparent;
  color: #fff;
} */



.fh009{
  text-align: center;
  flex-direction: column;
  width: 30%;
}

.fh009 h3{
  letter-spacing: 0.1em;
}

.fh009 p{
  font-size: 12px;
}
.fh009 h6{
  font-size: 7px;
  margin-bottom: 20px;
}

.fh009 h2{
  font-size: 15px;
  font-weight: normal;
}


.computer-empty-1 {
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 540px;
}
.computer-screen-1 {
  overflow: hidden;
  position: absolute;
  height: 247px;
  width: 400px;
  left: 70px;
  top: 20px;
}
.screen-landing-1 {
  left: 0;
  line-height: 0;
  position: absolute;
  width: 100%;
  transition: all 6s;
  -o-transition: all 6s;
  -ms-transition: all 6s;
  -moz-transition: all 6s;
  -webkit-transition: all 6s;
}
/* .screen-landing-1:hover {
  cursor: pointer;
  margin-top: -1002px;
} */
.screen-landing-1 img {
  max-width: 100%;
  width: auto\9;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
.computer-empty-1 img.computer-1 {
  width: 100%;
}

.fh010{
  text-align: center;
  flex-direction: column;
  width: 30%;
  margin-top: 70px;
}

.fh010 h3{
  letter-spacing: 0.1em;
}

.fh010 p{
  font-size: 12px;
}
.fh010 h6{
  font-size: 7px;
  margin-bottom: 20px;
}

.fh010 h2{
  font-size: 15px;
  font-weight: normal;
}

.computer-empty-2 {
  overflow: hidden;
  position: relative;
  width: 540px;
}
.computer-screen-2 {
  overflow: hidden;
  position: absolute;
  height: 247px;
  width: 400px;
  left: 70px;
  top: 20px;
}
.screen-landing-2 {
  left: 0;
  line-height: 0;
  position: absolute;
  width: 100%;
  transition: all 6s;
  -o-transition: all 6s;
  -ms-transition: all 6s;
  -moz-transition: all 6s;
  -webkit-transition: all 6s;
}
/* .screen-landing-2:hover {
  cursor: pointer;
  margin-top: -546px;
} */
.screen-landing-2 img {
  max-width: 100%;
  width: auto\9;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
.computer-empty-2 img.computer-2 {
  width: 100%;
}

.footer-wrapper .icon{
  position: relative;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #fff;
  text-decoration: none;
}
.footer-wrapper .tooltip {
  position: absolute;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.footer-wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.footer-wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.footer-wrapper .icon:hover span,
.footer-wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.footer-wrapper .facebook:hover,
.footer-wrapper .facebook:hover .tooltip,
.footer-wrapper .facebook:hover .tooltip::before {
  color: #3b5999;
}
.footer-wrapper .instagram:hover,
.footer-wrapper .instagram:hover .tooltip,
.footer-wrapper .instagram:hover .tooltip::before {
  color:  #e1306c;
}
.footer-wrapper .linkedin:hover,
.footer-wrapper .linkedin:hover .tooltip,
.footer-wrapper .linkedin:hover .tooltip::before {
  color: #0077B5;
}
.footer-wrapper .youtube:hover,
.footer-wrapper .youtube:hover .tooltip,
.footer-wrapper .youtube:hover .tooltip::before {
  color: #cc0003;
}
/* 
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
}
.footer a:hover {
  text-decoration: underline;
}
.footer a.book-consultation {
  color: #ffd700;
}
.footer-center {
  text-align: center;
  flex-grow: 1;
}
.footer-center p {
  margin: 5px 0;
} */
.footer {
  background-color: transparent;
  width: 100%;
  position: absolute;
  top: 20px;
  display: contents;
  left: 0;
  z-index: 99;
}
@media only screen and (max-width: 992px) {
  .footer {
    position: relative;
    top: 0;
    height: auto !important;
  }
}
.footer .primary-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1170px) {
  .footer .primary-footer-inner {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 992px) {
  .footer .primary-footer-inner {
    padding: 20px 20px;
  }
}
.footer .primary-footer-inner .footer-logo img {
  max-width: 170px;
}
.footer .primary-footer-inner .footer-logo .logo-light {
  display: none;
}
@media (max-width: 1399px) {
  .footer .primary-footer-inner .footer-logo img {
    max-width: 150px;
  }
}
@media (max-width: 1170px) {
  .footer .primary-footer-inner .footer-logo img {
    max-width: 150px;
  }
}
.footer .primary-footer-inner .footer-right-wrap {
  display: flex;
  align-items: center;
  column-gap: 120px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 1399px) {
  .footer .primary-footer-inner .footer-right-wrap {
    column-gap: 50px;
  }
}
@media (max-width: 1170px) {
  .footer .primary-footer-inner .footer-right-wrap {
    column-gap: 20px;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap {
  display: flex !important;
  align-items: center;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul {
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul {
    display: block!important;
  }
  .footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li a{
    width: 100%!important;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li {
  display: inline-block;
  position: relative;
  width: 100%;
}
@media (max-width: 1399px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li {
    margin: 0 15px;
  }
}
@media (max-width: 1170px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li {
    margin: 0 10px;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li a {
  font-family: Poppins;
  color: var(--rr-color-common-white);
  display: block;
  font-size: 14px;
  width: 130%;
  padding: 25px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1170px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li a {
    font-size: 16px;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li a:hover {
  color: var(--rr-color-theme-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li a i {
  font-size: 13px;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li.active a {
  color: var(--rr-color-theme-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li.active ul li a {
  color: var(--rr-color-common-white);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li.active ul li a:hover {
  color: var(--rr-color-common-white);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li.active.menu-item-has-children:after {
  color: var(--rr-color-theme-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul 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;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li:not(:last-of-type) {
  border-bottom: 1px solid var(--rr-color-border-1);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li:hover {
  background-color: var(--rr-color-theme-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li:hover a {
  color: var(--rr-color-common-black);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li a {
  background-color: var(--rr-color-bg-1);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--rr-color-common-white);
  font-weight: 600;
  font-size: 13px;
  padding: 20px 0;
  padding-left: 30px;
  letter-spacing: 1px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li a:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  -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;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li a:hover:before {
  width: 100%;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li.active {
  background-color: var(--rr-color-theme-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li.active a {
  color: var(--rr-color-common-white) !important;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li ul {
  top: 0;
  left: 100%;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li ul li a {
  color: var(--rr-color-common-white);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li:hover a {
  color: var(--rr-color-common-white);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li:hover li a {
  color: var(--rr-color-heading-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul li li:hover li a:hover {
  color: var(--rr-color-common-white);
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul .menu-item-has-children {
  position: relative;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul .menu-item-has-children a {
  padding-right: 17px;
}
@media (max-width: 1170px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul .menu-item-has-children a {
    padding-right: 13px;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul .menu-item-has-children ul li {
  margin: 0;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul .menu-item-has-children ul li a {
  padding-right: 0;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 700;
  content: "\f078";
  color: var(--rr-color-common-white);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.footer .primary-footer-inner .footer-right-wrap .footer-menu-wrap ul .menu-item-has-children:hover:after {
  color: var(--rr-color-theme-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-right .footer-logo img {
    width: 90px;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-right .sidebar-trigger {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 1px solid var(--rr-color-common-white);
  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;
}
@media only screen and (max-width: 992px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-right .sidebar-trigger {
    height: 60px;
    width: 60px;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-right .sidebar-trigger:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.footer .primary-footer-inner .footer-right-wrap .footer-right .sidebar-trigger svg {
  color: var(--rr-color-common-white);
}
.footer .primary-footer-inner .footer-right-wrap .footer-right .search-icon {
  color: var(--rr-color-heading-primary);
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-right .search-icon {
    margin-right: 20px;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-right .footer-right-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-right .footer-right-item {
    line-height: 1;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-right .footer-right-item .mobile-side-menu-toggle {
  color: var(--rr-color-common-white);
  font-size: 30px;
  opacity: 0.9;
}
@media (min-width: 993px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-right .footer-right-item .mobile-side-menu-toggle {
    display: none;
  }
}
.footer .primary-footer-inner .footer-right-wrap .footer-right .footer-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .footer .primary-footer-inner .footer-right-wrap .footer-right .footer-right-item .search-icon {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .footer .primary-footer-inner .mean-push {
    display: none;
  }
}
.grayscale-logo{
  filter: grayscale(1);
  transition: .2s;
}
.grayscale-logo:hover{
  transition: .2s;
  filter: unset;
}
.fh012 img{
  height: auto;
  width: 42%;
  position: absolute;
  top: 190%;
  z-index: -1;
  right: 1px;
}

.video-section {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 25%;
  /* left: 50%; */
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.w-60{
  width: 60%;
}

.card
{
  --bs-card-bg: transparent;
}
.card-body{
  background-color: #1e1e1e;
  border-radius: 15px;
  height: 330px;
  text-align: center;    
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  filter: drop-shadow(0px 0px 9px #f00);
}
.slick-initialized .slick-slide{
  border: unset;
  margin-right: 8px;
}
.card-text {
  margin-top: 30px;
  height: 175px;
  font-size: 20px;
}
.home-2-analysis-item-subtext{
    font-size: 20px;
}
.card-title{
  font-size: 27px;
  color: #f00;
}
.slick-next:before, .slick-prev:before{
  color: #fff!important;
  font-size: 24px!important;
}
.card-body img{
  height: 115px;
}
section.counter-section.fh002.d-flex.container.justify-content-center.pt-0.mt-0 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.fh003{
  margin-top: 120px;
}
.fh003-h2{
  text-align: center;
  font-family: 'poppins';
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  font-size: 45px;
}

.fh001 h1{
  border-radius: 45px;
  width: 63%;
  margin-left: auto;
  font-size: 55px;
  margin-right: auto;
}

.fh001 h2{   
  color: #f00;
  width: 35%;
  font-weight: normal;
  font-size: 30px;
  border-radius: 45px;
  margin-left: auto;
  margin-right: auto;
}
.hed-grad{
  max-width: 1340px;
}

.fh013 {
  text-align: center;
  flex-direction: column;
  width: 30%;
}

.fh013 h3 {
  letter-spacing: 0.1em;
  font-size: 38px;
}

.fh013 p {
  margin-bottom: 0;
  font-size: 15px;
}

.fh013 span {
  font-size: 20px;
}

.fh013 h6 {
  font-size: 7px;
  margin-bottom: 20px;
}

.fh013 h2 {
  font-size: 25px;
}


.portfolio-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.portfolio-slides img {
  width: 100%;
  border: none;
  border-radius: 10px;
}


.portfolio-slider-buttons {
  display: flex;
  position: relative;
  justify-content: space-between; 
  transform: translateY(711%);
  z-index: 10;
}

.portfolio-slider-button.prev{
  margin-left: -40px;
}

.portfolio-slider-button.next{
  margin-right: -40px;
}

.portfolio-slider-button {
  background-color: #fff;
  color: #000;
  opacity: .75;
  border: none;
  height: 25px;
  width: 25px;
  cursor: pointer;
  border-radius: 50%;
  outline: none;
}

.portfolio-slider-button:hover {
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .portfolio-slider-button {
    padding: 8px;
  }
}

@media (max-width: 992px) {
  .portfolio-slider-button {
    padding: 6px;
  }
}

@media (max-width: 768px) {
  .portfolio-slider-button {
    padding: 5px;
  }
}

@media (max-width: 576px) {
  .portfolio-slider-button {
    padding: 4px;
  }
}

@media (max-width: 400px) {
  .portfolio-slider-button {
    padding: 3px;
  }
}

/* Testimonials Section CSS */

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #121a12;
  background-color: #fff;
  width: 20px;
  opacity: .75;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-in-out;    
  -ms-transition: all .3s ease-in-out;    
  -moz-transition: all .3s ease-in-out;    
  -o-transition: all .3s ease-in-out;    
  transition: all .3s ease-in-out;
  padding: 2px 0px 0px 5px;
  z-index: 22222222;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  opacity: 1;
}
  

.testim .arrow.left {
  left: 70px;
}

.testim .arrow.right {
  right: 70px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #f00;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;    
  -ms-transition: all .5s ease-in-out;    
  -moz-transition: all .5s ease-in-out;    
  -o-transition: all .5s ease-in-out;    
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #f00;
  border-color: #f00;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;   
  -moz-animation: testim-scale .5s ease-in-out forwards;   
  -ms-animation: testim-scale .5s ease-in-out forwards;   
  -o-animation: testim-scale .5s ease-in-out forwards;   
  animation: testim-scale .5s ease-in-out forwards;   
}
  
.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}
  

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}
  

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: #f00;
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 15px;
  color: #fff;
  width: 70%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;            
  -moz-animation: testim-show .5s ease-in-out forwards;            
  -ms-animation: testim-show .5s ease-in-out forwards;            
  -o-animation: testim-show .5s ease-in-out forwards;            
  animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;    
  -moz-animation: testim-content-in .4s ease-in-out forwards;    
  -ms-animation: testim-content-in .4s ease-in-out forwards;    
  -o-animation: testim-content-in .4s ease-in-out forwards;    
  animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;    
  -moz-animation: testim-content-in .5s ease-in-out forwards;    
  -ms-animation: testim-content-in .5s ease-in-out forwards;    
  -o-animation: testim-content-in .5s ease-in-out forwards;    
  animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;            
  -moz-animation: testim-hide .5s ease-in-out forwards;            
  -ms-animation: testim-hide .5s ease-in-out forwards;            
  -o-animation: testim-hide .5s ease-in-out forwards;            
  animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;        
  -moz-animation: testim-content-out .4s ease-in-out forwards;        
  -ms-animation: testim-content-out .4s ease-in-out forwards;        
  -o-animation: testim-content-out .4s ease-in-out forwards;        
  animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;    
  -moz-animation: testim-content-out .5s ease-in-out forwards;    
  -ms-animation: testim-content-out .5s ease-in-out forwards;    
  -o-animation: testim-content-out .5s ease-in-out forwards;    
  animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
  0% {
      -webkit-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -webkit-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
      box-shadow: 0px 0px 10px 5px #ea830e;        
  }

  100% {
      -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
      box-shadow: 0px 0px 0px 0px #ea830e;        
  }
}

@-moz-keyframes testim-scale {
  0% {
      -moz-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -moz-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
      box-shadow: 0px 0px 10px 5px #ea830e;        
  }

  100% {
      -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
      box-shadow: 0px 0px 0px 0px #ea830e;        
  }
}

@-ms-keyframes testim-scale {
  0% {
      -ms-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -ms-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
      box-shadow: 0px 0px 10px 5px #ea830e;        
  }

  100% {
      -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
      box-shadow: 0px 0px 0px 0px #ea830e;        
  }
}

@-o-keyframes testim-scale {
  0% {
      -o-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -o-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -o-box-shadow: 0px 0px 10px 5px #ea830e;        
      box-shadow: 0px 0px 10px 5px #ea830e;        
  }

  100% {
      -o-box-shadow: 0px 0px 0px 0px #ea830e;        
      box-shadow: 0px 0px 0px 0px #ea830e;        
  }
}

@keyframes testim-scale {
  0% {
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      box-shadow: 0px 0px 10px 5px #ea830e;        
  }

  100% {
      box-shadow: 0px 0px 0px 0px #ea830e;        
  }
}

@-webkit-keyframes testim-content-in {
  from {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -webkit-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-moz-keyframes testim-content-in {
  from {
      opacity: 0;
      -moz-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -moz-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-ms-keyframes testim-content-in {
  from {
      opacity: 0;
      -ms-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -ms-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-o-keyframes testim-content-in {
  from {
      opacity: 0;
      -o-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -o-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@keyframes testim-content-in {
  from {
      opacity: 0;
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      transform: translateY(0);        
  }
}

@-webkit-keyframes testim-content-out {
  from {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -webkit-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-moz-keyframes testim-content-out {
  from {
      opacity: 1;
      -moz-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -moz-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-ms-keyframes testim-content-out {
  from {
      opacity: 1;
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -ms-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-o-keyframes testim-content-out {
  from {
      opacity: 1;
      -o-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@keyframes testim-content-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
  }
}

@-webkit-keyframes testim-show {
  from {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
}

@-moz-keyframes testim-show {
  from {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
}

@-ms-keyframes testim-show {
  from {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
}

@-o-keyframes testim-show {
  from {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
}

@keyframes testim-show {
  from {
      opacity: 0;
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      transform: scale(1);       
  }
}

@-webkit-keyframes testim-hide {
  from {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
      opacity: 1;
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      transform: scale(0);
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }

  .testim .cont div p {
    line-height: 25px;
  }
}
.services .section-title {
  letter-spacing: 0.1em;
  font-size: 46px;
  margin: 90px 0 0;
}


.mouse {
  width: 24px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 2px solid #fff;
  opacity: 0.6;
  top: 40px;
  z-index: 2;
  padding: 3px;
  margin-left: auto;
  margin-right: auto;
}
.mouse-1::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  top: 0px;
  left: calc(50% - 3px);
  background: #fff;
  -webkit-animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
  animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
}
.mouse-2::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  top: 0px;
  left: calc(50% - 3px);
  background: #fff;
  -webkit-animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
  animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
}
.mouse-3::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  top: 0px;
  left: calc(50% - 3px);
  background: #fff;
  -webkit-animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
  animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
}
.mouse:before, .mouse:after {
  content: "";
  display: block;
}
@keyframes m-1-ball {
  0%, 65%, 100% {
    opacity: 0;
  }

  10%, 40% {
    opacity: 1;
  }
  0% {
    transform: translateY(5px) scale(0.7);
  }
  5% {
    transform: scale(0.7);
  }
  15%, 100% {
    transform: scale(1);
  }
  45%, 65% {
    transform: translateY(14px) scale(0.7);
  }
}



/* SERVICES SECTION */
@media screen and (min-width: 1920px) {
    .wrapper-1160px.home-2-analysis-flex.hs-full-width {
      max-width: 1200px;
  }
}

.wrapper-1160px.home-2-analysis-flex {
  align-items: flex-start;
  max-width: 1165px;
}
.wrapper-1160px {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}
.home-2-analysis-text-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 45%;
  max-width: 535px;
  display: flex;
}
.home-2-analysis-grid-2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto auto auto auto;
  width: 55%;
  max-width: 620px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.button-wrapper.hs-desktop-display-none {
  display: none;
}
.heading-animation-div {
  width: auto;
}
.home-2-analysis-hero-image {
  width: 100%;
  /*filter: drop-shadow(2px 4px 6px red);*/
  height: 100%;
}
.h3-heading-48px {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 120%;
}
.h-m-blue-para-16px {
  margin-top: 8px;
  font-size: 16px;
  line-height: 150%;
}
.red-text-span-2 {
  color: #fff;
  background-color: #890000;
  border-radius: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}
.home-2-analysis-item-2 {
  width: 100%;
  max-width: 270px;
  text-align: left;
}
.home-2-analysis-item-icon.hs-images-full-width {
  text-align: center;
  width: 100%;
  height: 48px;
  overflow: clip;
}
.home-2-analysis-item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
}
.home-2-analysis-item-heading {
  margin-bottom: 15px;
  font-family: Plusjakartadisplay, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 145%;
}
#w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafdb-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafdc-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafe1-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafe2-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafe7-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafe8-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafee-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfafef-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfaff4-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfaff5-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfaffb-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfaffc-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfb001-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfb002-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfb008-b4eed790, #w-node-e7e5dcb3-05fd-6586-7725-6f2c89dfb009-b4eed790, #w-node-_270c52b7-3038-feeb-7296-66a6c333da2d-b4eed790, #w-node-f0583b9b-617d-3348-9a92-3d859f244b42-b4eed790, #w-node-ed87d241-106f-4b88-c533-9e21f77da454-b4eed790, #w-node-ed87d241-106f-4b88-c533-9e21f77da455-b4eed790, #w-node-_6bdf7baa-5e77-0cb3-34d5-2d4be67fc431-b4eed790, #w-node-_6bdf7baa-5e77-0cb3-34d5-2d4be67fc432-b4eed790, #w-node-_70599368-eaa8-c65e-a138-5ddf6f24b96b-b4eed790, #w-node-_70599368-eaa8-c65e-a138-5ddf6f24b96c-b4eed790, #w-node-dd69de06-457b-89c4-3406-fa81224d95b5-b4eed790, #w-node-dd69de06-457b-89c4-3406-fa81224d95b6-b4eed790, #w-node-_3cd62fa7-1f7a-2cff-2fbb-d8ad2715e245-b4eed790, #w-node-_3cd62fa7-1f7a-2cff-2fbb-d8ad2715e246-b4eed790, #w-node-_3578580e-d4e3-d513-1a92-c44e795c43da-b4eed790, #w-node-_3578580e-d4e3-d513-1a92-c44e795c43db-b4eed790, #w-node-_3b55eda7-8b24-79cf-56c0-a777dcd30aba-b4eed790, #w-node-_3b55eda7-8b24-79cf-56c0-a777dcd30abb-b4eed790 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}
.primary-blue-button.margin-top-40px.hs-button {
  background-color: #cc0003;
  color: #fff;
}

.primary-blue-button {
  grid-column-gap: 16px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 100px;
  align-items: center;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}
.margin-top-40px {
  margin-top: 40px;
}
.w-inline-block {
  max-width: 100%;
  display: inline-flex;
}
.primary-button-blue-icon {
  width: 26px;
  height: 26px;
}
.home-2-analysis-item-icon.hs-images-full-width.small {
  width: 40%;
}

.home-2-analysis-item-icon.hs-images-full-width {
  text-align: center;
  width: 100%;
  height: 48px;
  overflow: clip;
}
.home-2-analysis-item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
}
.home-2-analysis-item-icon.hs-images-full-width.midium {
  width: 60%;
}
/* SERVICES SECTION */


.home-2-hero-section {
  padding-top: 100px;
}

.wrapper-1160px.home-2-hero-flex {
  align-items: flex-start;
  max-width: 1309px;
  padding-top: 46px;
  padding-bottom: 140px;
}

.wrapper-1160px {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}
.home-2-hero-text-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 49%;
  max-width: 650px;
  display: flex;
  position: relative;
}

.home-2-hero-image-wrapper.hs-mobile-display-none.hs {
  justify-content: center;
}
.home-2-hero-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 55%;
  max-width: 720px;
  margin-right: -6%;
  display: flex;
  position: relative;
}
.home-3-analysis-image-wrapper.large.hs-banner-award.hs-100, .home-3-analysis-image-wrapper.large.hs-banner-award.hs-con {
  width: 100%;
}

.home-3-analysis-image-wrapper.large.hs-banner-award {
  width: 50%;
  margin-top: 0;
  padding-bottom: 20px;
}
.home-3-analysis-image-wrapper.large {
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
}
.home-3-analysis-image-wrapper {
  width: 45%;
  max-width: 500px;
  position: relative;
}

.home-2-hero-heading {
  margin-bottom: 24px;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 53px;
  font-weight: 700;
  line-height: 120%;
}
.business-growth-1-img-container.hs-au.au {
  max-width: 100%;
  padding-top: 40px;
  padding-bottom: 30px;
}
.business-growth-1-img-container.hs-au {
  width: 100%;
}
.business-growth-hero-image {
  width: 100%;
  height: 100%;
}
.home-2-analysis-grid.hs-banner-points.au {
  grid-template-columns: 1fr;
}

.home-2-analysis-grid.hs-banner-points.hs-desktop-display-none {
  display: none;
}
.home-2-analysis-grid {
  grid-column-gap: 80px;
  grid-row-gap: 9px;
  grid-template-rows: auto auto auto;
  grid-auto-flow: column;
  width: 100%;
  max-width: 620px;
  margin-top: 20px;
}
.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.home-2-analysis-item {
  width: 100%;
  max-width: 238px;
}
#w-node-fcd30490-1b10-7c35-2028-b5285a923007-b4eed790 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}
.discover-pointer-heading.black-icon {
  /* background-image: url("../images/5610944.png"); */
  font-size: 16px;
  font-weight: 500;
}
.discover-pointer-heading {
  /* background-image: url(https://cdn.prod.website-files.com/661c7df…/661c7df…_Black%20Checks.svg); */
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 14px;
  padding-left: 40px;
  font-size: 22px;
  font-weight: 700;
  line-height: 145%;
}

.heading-animation-div.hs-au {
  width: 100%;
}

.hs-au {
  width: 100%;
  max-width: 100%;
}
.button-wrapper {
  flex: none;
}
.primary-button-icon-wrapper {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}
.hs-dark-span {
  background-color: #890000 !important;
}
.home-3-analysis-special-image.hs-banner-award.hs-60 {
  width: 60%;
}

/* Header Style */
.header {
  position: relative;
}

/* Hamburger styling */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 101;
}

/* Hide hamburger when sidebar is active */
.hamburger.hide {
  display: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* Sidebar styling */
.sidebar {
  position: fixed;
  top: 0;
  right: -250px; /* Hide it initially */
  width: 250px;
  height: 100%;
  background-color: #333;
  color: #fff;
  overflow: auto;
  transition: right 0.3s ease;
  z-index: 999; /* Ensure it appears over the content */
  padding-top: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #444;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Show sidebar when active */
.sidebar.active {
  right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hamburger {
      display: flex;
      justify-content: center;
      align-items: end;
      width: 40%;
  }
  .mob-sidebar-logo a img{
      display: block!important;
  }
  .card-text{
      font-size: 16px;
  }
  .fh004{
      padding: 10px;
  }
  .feature-number h1{
      margin: 0 -30px 0;
  }
  .primary-header-inner ul li{
      width: 100%;
  }
  .primary-header-inner ul li a .logo-img{
      /*margin-left: 70px;*/
      width: 75%;
  }
  .hed-grad{
    display: none!important;
  }
  .card-body{
      height: auto;
      margin: 10px 0;
  }
  .sidebar ul li a img{
      height: 95px;
  }
}
.mob-sidebar-logo a img{
    display: none;
}

.card-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.card {
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1024px) {
  .card {
      margin: 8px;
  }
}

@media screen and (max-width: 600px) {
  .card {
      margin: 5px;
  }
}

.slick-prev, .slick-next {
  z-index: 1000;
  font-size: 20px;
}
@media (max-width: 778px){
  .fh001 h1{
    font-size: 25px;
    width: 100%;
  }
  .fh001 p{
    width: 100%;
  }
}

@media (max-width: 426px){
  .stats-container {
    padding: 10px;
    flex-direction: column;
    gap: 30px;
    width: 50%;
  }
  .services .section-title{
    font-size: 25px;
    margin: 90px 0 0px 0;
  }
  .testim-cover .wrap h2,.fh013 h3,.fh003-h2{
    font-size: 28px;
  }
  .fh003 .row{
    flex-direction: column;
    align-items: center;
    text-align: center;
  } 
  .fh004 .row{
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  } 
  .fh013 {
    width: 100%!important;
  }
  .testim .arrow{
    font-size: 1em;
  }
  .testim .arrow.left{
    left: 0;
  }
  .testim .arrow.right{
    right: 0;
  }
  .contact-content .contact-list .list-item{
    margin: 20px auto;
    text-align: center;
    gap: 20px;
  }
  .contact-content .contact-list .list-item .icon{
    margin: 0 auto;
  }
  .contact-list {
    display: block;
  }
  .fh0014 .home-2-analysis-section .row .col-md-6{
    padding: 0px!important;
  }
  .fh001{
    margin-top: 1em;
  }
  .fh003-h2{
    font-size: 30px;
  }
  /*.card-body{*/
  /*    height: 260px;*/
  /*}*/
  /*.fh0014 .home-2-analysis-section .row .col-md-6:nth-child(1){*/
  /*    order: 2;*/
  /*}*/
  .heading-animation-div{
      margin-top: 20px;
  }
  .testim .accordion h2{
    font-size: 32px;
  }
  .home-2-analysis-item-heading{
      font-size: 26px;
  }
  .home-2-analysis-item-subtext{
      font-size: 16px;
  }
}

.fh001 p{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}