/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --qrowd-font: 'Manrope', sans-serif;
  --qrowd-reey-font: "reeyregular";
  --qrowd-gray: #6e7a7a;
  --qrowd-gray-rgb: 110, 122, 122;
  --qrowd-white: #ffffff;
  --qrowd-white-rgb: 255, 255, 255;
  --qrowd-base: #2e3c6d;
  --qrowd-base-rgb: 254, 127, 76;
  --qrowd-black: #2e3c6d;
  --qrowd-black-rgb: 30, 55, 55;
  --qrowd-primary: #34495E;
  --qrowd-primary-rgb: 7, 132, 127;
  --qrowd-extra: #f2f7f7;
  --qrowd-extra-rgb: 242, 247, 247;
  --qrowd-letter-spacing: -0.04em;

}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--qrowd-font);
  color:black;
  /*color: var(--qrowd-gray);*/
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--qrowd-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  
}
a:hover,
a:focus {
  text-decoration: none;
  color: #2e3c6d;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #01273c;
  margin: 0;
  letter-spacing: var(--qrowd-letter-spacing);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1250px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1300px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1420px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--qrowd-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.black-bg {
  background-color: var(--qrowd-black);
}

.background-size-cover {
  background-size: cover;
}

.background-repeat-no {
  background-repeat: no-repeat;
}

.background-position-top-right {
  background-position: top right;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--qrowd-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--qrowd-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--qrowd-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}


.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
   background-color: #e02133;
  color: var(--qrowd-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 15px 50px 15px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn::before {
  position: absolute;
  content: '';
  background-color: #f3ae49;
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.thm-btn:hover {
  color: var(--qrowd-white);
}

.thm-btn:hover:before {
  height: 380%;
}


.section-title {
  position: relative;
  display: block;
  margin-top: -11px;
  margin-bottom: 30px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: var(--qrowd-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}

.section-title__tagline:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -3px;
  right: -3px;
  height: 6px;
  background-color: rgb(95 67 254 / 20%);
  z-index: -1;
}

.section-title__title {
  margin: 0;
  color: #01273c;
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: 5px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--qrowd-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--qrowd-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--qrowd-black);
  color: var(--qrowd-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--qrowd-primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  color: var(--qrowd-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.scroll-to-top:hover {
  background-color: var(--qrowd-base);
}

.scroll-to-top:hover i {
  color: #fff;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
}

.main-header__top {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid #e1eaea;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.main-header__top-left {
  position: relative;
  display: block;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li+li {
  margin-left: 30px;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: 2px;
}

.main-header__contact-list li .icon i {
  font-size: 12px;
  color: var(--qrowd-base);
}

.main-header__contact-list li .text {
  margin-left: 10px;
}

.main-header__contact-list li .text p {
  font-size: 13px;
  font-weight: 500;
}

.main-header__contact-list li .text p a {
  color: var(--qrowd-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--qrowd-base);
}

.main-header__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__login {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 5px 40px 5px;
}

.main-header__login-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__login-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__login-list li+li {
  margin-left: 17px;
}

.main-header__login-list li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--qrowd-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__login-list li a:hover {
  color: var(--qrowd-base);
}

.main-header__login-list li a:before {
  content: "";
  position: absolute;
  top: 11px;
  left: -9px;
  height: 10px;
  width: 1px;
  background-color: var(--qrowd-gray);
  transform: rotate(15deg);
}

.main-header__login-list li:first-child a:before {
  display: none;
}

.main-header__login-list li a i {
  font-size: 16px;
  color: var(--qrowd-base);
  padding-right: 10px;
}

.main-header__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
  padding: 12.5px 0;
}

.main-header__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__social a:hover {
  color: var(--qrowd-base);
}

.main-header__social a+a {
  margin-left: 25px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  height: 140px;
}

.main-menu__wrapper-inner {
  position: relative;
  display: block;
  padding: 0 15px;
}

.main-menu__left {
  display: block;
  float: left;
}

.main-menu__logo {
  display: block;
  padding: 6px 0;
  float: left;
  margin-right: 165px;
}
.main-menu__logo img{
   display: inline-block;
    width: 116px;
    z-index: 2;
    padding: 8px 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #fff;
	height: 140px;
}
.stricky-header.stricky-fixed .main-menu__logo img{
    height: 105px !important;
    padding: 4px 27px;
}


.main-menu__main-menu-box {
  display: block;
  float: left;
  margin-top: 10px;
}

.main-menu__right {
  display: block;
  /*float: right;*/
}

.main-menu__call-search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 35px 0;
  margin-top: 5px;
}
.stricky-header.stricky-fixed .main-menu__call-search-btn-box {
  
  padding: 22px 0;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--qrowd-primary);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--qrowd-base);
}

.main-menu__call-icon i {
  font-size: 15px;
  color: var(--qrowd-white);
  position: relative;
  display: inline-block;
}

.main-menu__call-content {
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  margin-bottom: 4px;
}

.main-menu__call-number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 15px;
}

.main-menu__call-number a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--qrowd-base);
}

.main-menu__search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 50px;
  /*margin-right: 40px;*/
  padding: 13px 0;
}

.main-menu__search-box:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -30px;
  background-color: #e1eaea;
  width: 1px;
  left: -4px;
}

.main-menu__search {
  font-size: 24px;
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--qrowd-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
}

.main-menu__btn {
  padding: 10px 40px 10px;
}

.main-menu__btn i {
  padding-right: 10px;
  font-size: 13px;
  position: relative;
  top: 2px;
}


.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 48px;
  padding-bottom: 25px;
  position: relative;
}
.stricky-header.stricky-fixed .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}



.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 60px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 16px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-size: 13px;
  color: var(--qrowd-gray);
  transform: translateY(-50%);
  z-index: 1;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 6px;
  border-radius: 0px;
  background-color: rgba(254, 144, 67, .0);
  position: absolute;
  bottom: 6px;
  left: -4px;
  right: -4px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--qrowd-black);
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--qrowd-black);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 68%;
  left: 0;
  min-width: 200px;
 
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  
  padding: 10px 0px 10px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border: 2px solid #408fed;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  
  /* border: 3px solid #2a2a83; */
  color: var(--qrowd-gray);
  letter-spacing: 0;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 5px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--qrowd-white);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--qrowd-extra);
  color: var(--qrowd-black);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--qrowd-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  /* transform: translateY(-50%) scale(1); */
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--qrowd-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--qrowd-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--qrowd-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--qrowd-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--qrowd-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--qrowd-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: display;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--qrowd-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--qrowd-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--qrowd-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--qrowd-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--qrowd-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--qrowd-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--qrowd-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--qrowd-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--qrowd-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--qrowd-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.home-showcase__inner {
  padding: 40px 40px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--qrowd-base);
  overflow: hidden;
}

.home-showcase__image>img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home-showcase__image:hover>img {
  opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 10px 20px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--qrowd-black);
  margin-top: 17px;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--qrowd-white, #ffffff);
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
  
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: var(--qrowd-black);
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.main-header-two__top-left {
  position: relative;
  display: block;
}

.main-header-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-header-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__contact-list li+li {
  margin-left: 30px;
}

.main-header-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: 2px;
}

.main-header-two__contact-list li .icon i {
  font-size: 14px;
  color: var(--qrowd-base);
}

.main-header-two__contact-list li .text {
  margin-left: 10px;
}

.main-header-two__contact-list li .text p {
  font-size: 13px;
  font-weight: 500;
  color: #8b9e9e;
}

.main-header-two__contact-list li .text p a {
  color: #8b9e9e;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__contact-list li .text p a:hover {
  color: var(--qrowd-base);
}

.main-header-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__login {
  position: relative;
  display: block;
  background-color: #172d2d;
  padding: 5px 40px 5px;
}

.main-header-two__login-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__login-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__login-list li+li {
  margin-left: 17px;
}

.main-header-two__login-list li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #8b9e9e;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__login-list li a:hover {
  color: var(--qrowd-base);
}

.main-header-two__login-list li a:before {
  content: "";
  position: absolute;
  top: 11px;
  left: -9px;
  height: 10px;
  width: 1px;
  background-color: #8b9e9e;
  transform: rotate(15deg);
}

.main-header-two__login-list li:first-child a:before {
  display: none;
}

.main-header-two__login-list li a i {
  font-size: 16px;
  color: var(--qrowd-base);
  padding-right: 10px;
}

.main-header-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
  padding: 12.5px 0;
}

.main-header-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--qrowd-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__social a:hover {
  color: var(--qrowd-base);
}

.main-header-two__social a+a {
  margin-left: 25px;
}

.stricky-header.main-menu-two {
  background-color: var(--qrowd-black);
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: rgba(var(--qrowd-white-rgb), .10);
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.main-menu-two__left {
  position: relative;
  display: block;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 28.5px 0;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: block;
}

.main-menu-two__search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 40px;
  padding: 13px 0;
}

.main-menu-two__search-box:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -30px;
  background-color: rgba(var(--qrowd-white-rgb), .10);
  width: 1px;
}

.main-menu-two__search {
  font-size: 24px;
  color: var(--qrowd-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--qrowd-base);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
}

.main-menu-two__btn {
  padding: 10px 40px 10px;
}

.main-menu-two__btn i {
  padding-right: 10px;
  font-size: 13px;
  position: relative;
  top: 2px;
}

.stricky-header .main-menu-two__btn:hover {
  color: var(--qrowd-base);
}

.stricky-header .main-menu-two__btn:before {
  background-color: var(--qrowd-white);
}


.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--qrowd-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--qrowd-white);
}

.main-menu-two .main-menu__list>li>a::before,
.stricky-header.main-menu-two .main-menu__list>li>a::before {
  background-color: rgba(255, 255, 255, .20);
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--qrowd-white);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--qrowd-white);
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 999;
}

.stricky-header.main-menu-three {
  background-color: var(--qrowd-white);
}

.main-header-three__top {
  position: relative;
  display: block;
  background-color: var(--qrowd-primary);
  z-index: 1;
}

.main-header-three__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-three__top-left {
  position: relative;
  display: block;
}

.main-header-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-header-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__contact-list li+li {
  margin-left: 30px;
}

.main-header-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: 2px;
}

.main-header-three__contact-list li .icon i {
  font-size: 13px;
  color: var(--qrowd-base);
}

.main-header-three__contact-list .text {
  margin-left: 10px;
}

.main-header-three__contact-list .text p {
  font-size: 13px;
  font-weight: 500;
  color: #96e8e5;
}

.main-header-three__contact-list .text p a {
  color: #96e8e5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__contact-list li .text p a:hover {
  color: var(--qrowd-white);
}

.main-header-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__login {
  position: relative;
  display: block;
  margin-right: 40px;
  padding: 5px 0;
}

.main-header-three__login-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__login-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__login-list li+li {
  margin-left: 17px;
}

.main-header-three__login-list li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #96e8e5;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__login-list li a:hover {
  color: var(--qrowd-white);
}

.main-header-three__login-list li a:before {
  content: "";
  position: absolute;
  top: 11px;
  left: -9px;
  height: 10px;
  width: 1px;
  background-color: #96e8e5;
  transform: rotate(15deg);
}

.main-header-three__login-list li:first-child a:before {
  display: none;
}

.main-header-three__btn-box {
  position: relative;
  display: block;
}

.main-header-three__btn {
  padding: 5px 40px 5px;
  font-size: 13px;
}

.main-header-three__btn i {
  padding-right: 10px;
  font-size: 13px;
  position: relative;
  top: 2px;
}

.main-header-three__btn:hover:before {
  height: 420%;
}

.main-menu-three__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu-three__left {
  position: relative;
  display: block;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 29px 0;
}

.main-menu-three__right {
  display: flex;
  align-items: center;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 70px;
  padding: 13px 0;
}

.main-menu-three__search-box:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -30px;
  background-color: #e1eaea;
  width: 1px;
}

.main-menu-three__search {
  font-size: 24px;
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--qrowd-base);
}



/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--qrowd-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--qrowd-base);
  border: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--qrowd-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover:before {
  width: 150%;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 2;
}

.main-slider .swiper-slide {
  position: relative;
  /*background-color: #302f2f;*/
}

.main-slider .container {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);

  opacity: 1;
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider__shape-1 {
  position: absolute;
  display:none;
  top: 0;
  right: 0;
  mix-blend-mode: hard-light;
  transform: translateX(500px);
  opacity: 0;
}

.swiper-slide-active .main-slider__shape-1 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
}

.main-slider__shape-1 img {
  width: auto;
}

.main-slider__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: soft-light;
  transform: translateX(600px);
  opacity: 0;
  display: none;
}

.swiper-slide-active .main-slider__shape-2 {
  opacity: .40;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 1500ms;
}

.main-slider__shape-2 img {
  width: auto;
}

.main-slider__shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: color-dodge;
  transform: translateX(600px);
  opacity: 0;
  display: none;
}

.swiper-slide-active .main-slider__shape-3 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider__shape-3 img {
  width: auto;
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: left;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--qrowd-white);
  font-weight: 500;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__sub-title:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--qrowd-white);
}

.main-slider__title {
  position: relative;
  font-size: 60px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 70px;
  letter-spacing: -0.04em;
  margin-top: 12px;
  margin-bottom: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn:hover {
  color: var(--qrowd-base);
}

.main-slider__btn:before {
  background-color: var(--qrowd-white);
}

.main-slider__btn-two {
  font-size: 14px;
  color: var(--qrowd-white);
  font-weight: 800;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-slider__btn-two:hover {
  color: var(--qrowd-base);
}

.main-slider__btn-two:before {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background-color: var(--qrowd-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.main-slider__btn-two:hover:before {
  background-color: var(--qrowd-base);
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__nav {
  position: absolute;
  top: 38%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--qrowd-black-rgb), 1);
  background-color: rgba(var(--qrowd-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--qrowd-black-rgb), 1);
  background-color: rgba(var(--qrowd-white-rgb), 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--qrowd-black);
}

.main-slider-two .container {
  position: relative;
  padding-top: 320px;
  padding-bottom: 180px;
  z-index: 30;
}

.image-layer-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  mix-blend-mode: luminosity;
  opacity: 0.50;
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider-two__shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: color-dodge;
  transform: translateX(-600px);
  opacity: 0;
}

.swiper-slide-active .main-slider-two__shape-1 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider-two__shape-1 img {
  width: auto;
}

.main-slider-two__shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-600px);
  opacity: 0;
}

.swiper-slide-active .main-slider-two__shape-2 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 1500ms;
}

.main-slider-two__shape-2 img {
  width: auto;
}

.main-slider-two__shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(600px);
  opacity: 0;
}

.swiper-slide-active .main-slider-two__shape-3 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 1000ms;
}

.main-slider-two__shape-3 img {
  width: auto;
}

.main-slider-two__content {
  position: relative;
  display: block;
  text-align: center;
}

.main-slider-two__sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--qrowd-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 14px;
  background-color: rgba(var(--qrowd-black-rgb), .50);
  padding: 8px 35px 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__title {
  position: relative;
  display: block;
  font-size: 90px;
  line-height: 90px;
  font-weight: 800;
  color: var(--qrowd-white);
  letter-spacing: -0.06em;
  margin-top: 16px;
  margin-bottom: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn:hover {
  color: var(--qrowd-base);
}

.main-slider-two__btn:before {
  background-color: var(--qrowd-white);
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title,
.main-slider-two .swiper-slide-active .main-slider-two__title,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}


.main-slider-two__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 58%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0;
  line-height: 0;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--qrowd-black-rgb), 1);
  background-color: rgba(var(--qrowd-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  color: rgba(var(--qrowd-black-rgb), 1);
  background-color: rgba(var(--qrowd-white-rgb), 1);
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
  display: none;
}

.main-slider-two__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--qrowd-black);
}

.main-slider-three .container {
  position: relative;
  padding-top: 166px;
  padding-bottom: 175px;
  z-index: 30;
}

.image-layer-three {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  mix-blend-mode: luminosity;
  opacity: .70;
  ;
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-three .swiper-slide-active .image-layer-three {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider-three-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 54.1%;
  background-image: -moz-linear-gradient(-1deg, rgb(30, 55, 55) 0%, rgba(30, 55, 55, 0) 100%);
  background-image: -webkit-linear-gradient(-1deg, rgb(30, 55, 55) 0%, rgba(30, 55, 55, 0) 100%);
  background-image: -ms-linear-gradient(-1deg, rgb(30, 55, 55) 0%, rgba(30, 55, 55, 0) 100%);
  z-index: 1;
}

.main-slider-three__content {
  position: relative;
  display: block;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--qrowd-white);
  font-weight: 600;
  line-height: 20px;
  padding-left: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__sub-title:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 24px;
  width: 24px;
  background-image: url(../images/icon/main-slider-three-icon.png);
  background-repeat: no-repeat;
}

.main-slider-three__title {
  position: relative;
  font-size: 80px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 85px;
  letter-spacing: -0.04em;
  margin-top: 7px;
  margin-bottom: 22px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__text {
  font-size: 18px;
  color: var(--qrowd-white);
  font-weight: 500;
  padding-bottom: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__text {
  visibility: visible;
  opacity: .70;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn:hover {
  color: var(--qrowd-base);
}

.main-slider-three__btn:before {
  background-color: var(--qrowd-white);
}


.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three .main-slider__nav {
  top: 42%;
}


/*--------------------------------------------------------------
# Categoriese One
--------------------------------------------------------------*/
.categories-one {
  position: relative;
  display: block;
  padding: 80px 0 60px;
  background-color: var(--qrowd-primary);
  z-index: 3;
}

.categories-one__top {
  position: relative;
  display: block;
}

.categories-one__top-left {
  position: relative;
  display: block;
}

.categories-one__top-left .section-title__tagline {
  color: var(--qrowd-white);
}

.categories-one__top-left .section-title__tagline:before {
  background-color: rgba(255, 255, 255, .20);
}

.categories-one__top-left .section-title__title {
  color: var(--qrowd-white);
}

.categories-one__backers {
  position: absolute;
  top: -166px;
  right: 0;
  max-width: 380px;
  width: 100%;
}

.categories-one__backers-tagline {
  position: relative;
  display: inline-block;
  background-color: var(--qrowd-white);
  padding: 16px 40px 16px;
}

.categories-one__backers-tagline p {
  font-size: 14px;
  color: var(--qrowd-primary);
  font-weight: 700;
  line-height: 14px;
}

.categories-one__backers-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--qrowd-base);
  padding: 37px 40px 37px;
}

.categories-one__backers-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.categories-one__backers-icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--qrowd-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.categories-one__backers-box:hover .categories-one__backers-icon span {
  transform: scale(.9);
}

.categories-one__backers-content {
  margin-left: 30px;
}

.categories-one__backers-content h3 {
  font-size: 44px;
  color: var(--qrowd-white);
  font-weight: 800;
  font-family: var(--qrowd-font) !important;
  line-height: 40px !important;
  letter-spacing: 0;
}

.categories-one__backers-content p {
  font-size: 18px;
  color: #ffe2d6;
  font-weight: 600;
  line-height: 20px;
  margin-top: 4px;
}

.categories-one__backers-content .odometer-formatting-mark {
  display: none;
}

.categories-one__bottom {
  position: relative;
  display: block;
}

.categories-one__bottom .row {
  --bs-gutter-x: 13px;
}

.categories-one__bottom-inner {
  position: relative;
  display: block;
}

.categories-one__single {
  position: relative;
  display: block;
  border: 1px solid #486078;
  text-align: center;
  padding: 38px 0 34px;
  margin-bottom: 30px;
  transition: all 0.4s linear;
  z-index: 1;
}

.categories-one__single:hover {
  border: 1px solid var(--qrowd-white);
}

.categories-one__single:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qrowd-white);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.categories-one__single:hover:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.categories-one__icon {
  position: relative;
  display: inline-block;
}

.categories-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: #ff737f;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.categories-one__single:hover .categories-one__icon span {
  transform: scale(.9);
}

.categories-one__title {
  font-size: 18px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 25px;
  margin-top: 17px;
  transition: all 0.4s linear;
}

.categories-one__single:hover .categories-one__title {
  color: var(--qrowd-black);
}

.categories-one__bottom-text {
  font-size: 16px;
  color: #96a7b9;
  text-align: center;
  font-weight: 500;
}

.categories-one__bottom-text span {
  position: relative;
  display: inline-block;
  color: var(--qrowd-white);
  font-weight: 800;
}

.categories-one__bottom-text span:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.project-one:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 464px;
  background-color: var(--qrowd-extra);
  content: "";
  z-index: -1;
}

.project-one__top {
  position: relative;
  display: block;
}

.project-one__bottom {
  position: relative;
  display: block;
}

.project-one__single {
  position: relative;
  display: block;
}

.project-one__img-box {
  position: relative;
  display: block;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__single:hover .project-one__img img {
  transform: scale(1.05);
  opacity: .5;
}

.project-one__icon {
  position: absolute;
  top: 30px;
  right: 30px;
}

.project-one__icon i {
  position: relative;
  display: inline-block;
  font-size: 19px;
  color: var(--qrowd-white);
}

.project-one__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 26px 30px 20px;
}

.project-one__tag {
  position: relative;
  display: inline-block;
  text-align: center;
  background-color: var(--qrowd-base);
  padding: 7px 19px 8px;
}

.project-one__tag p {
  font-size: 12px;
  font-weight: 800;
  line-height: 12px;
  color: var(--qrowd-white);
}

.project-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 14px;
  margin-bottom: 6px;
}

.project-one__title a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__title a:hover {
  color: var(--qrowd-base);
}

.project-one__remaing {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-one__remaing .icon {
  font-size: 14px;
  color: var(--qrowd-primary);
}

.project-one__remaing .text {
  margin-left: 5px;
}

.project-one__remaing .text p {
  font-size: 13px;
  font-weight: 500;
    line-height: 20px;
}

.progress-levels {
  position: relative;
  display: block;
  margin-top: 22px;
  margin-bottom: 5px;
}

.progress-levels .progress-box {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 74px;
  padding-right: 58px;
}

.progress-levels .progress-box .inner {
  position: relative;
  display: block;
}

.progress-levels .progress-box .bar {
  position: relative;
  display: block;
  z-index: 1;
}

.progress-levels .progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 3px;
  border-radius: 0;
  background-color: var(--qrowd-white);
}

.progress-levels .progress-box .bar .bar-fill {
  position: relative;
  width: 0px;
  height: 3px;
  border-radius: 0px;
  background-color: var(--qrowd-base);
  transition: all 2000ms ease 300ms;
}

.progress-levels .progress-box .bar .bar-fill:before {
  content: "";
  position: absolute;
  top: -4px;
  right: 0px;
  height: 10px;
  width: 10px;
  background-color: var(--qrowd-base);
  border-radius: 50%;
  z-index: 1;
}

.progress-levels .progress-box .bar .bar-innner .skill-percent {
  position: absolute;
  top: -15px;
  right: -47px;
  width: 40px;
  height: 20px;
  display: block;
  text-align: center;
  padding: 0;
  z-index: 1;
}

.progress-levels .progress-box .inner .count-text {
  position: relative;
  color: var(--qrowd-gray);
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  display: inline-block;
  float: none;
}

.progress-levels .progress-box .inner .percent {
  position: relative;
  color: var(--qrowd-gray);
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  display: inline-block;
  float: none;
  margin-left: -2px;
}

.progress-levels .progress-box .inner .text {
  position: absolute;
  top: -7px;
  left: -54px;
  font-size: 14px;
  font-weight: 800;
  color: var(--qrowd-black);
  line-height: 14px;
  letter-spacing: -0.02em;
}

.project-one__goals {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-one__goals-one {
  font-size: 13px;
  font-weight: 600;
}

.project-one__goals-one span {
  color: var(--qrowd-black);
  font-weight: 700;
}


.project-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.project-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.project-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.project-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -48px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(var(--qrowd-black-rgb), .30);
  margin: 0px 2.5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.project-one__carousel.owl-carousel .owl-dot.active {
  background-color: rgba(var(--qrowd-primary-rgb), 1);
}

.project-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
}

.why-choose-one__inner {
  position: relative;
  background-color: #fff;
}

.why-choose-one__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 99%;
  width: 100000000000000px;
  height: 100%;
  background-color: #fff;
}

.why-choose-one .section-title {
  margin-bottom: 31px;
}

.why-choose-one__left {
  position: relative;
  display: block;
  padding: 30px 0 50px;
}
.why-choose-one__left-text p{
	
}
.why-choose-one__left-text h4{
  margin-bottom:15px;
}
.why-choose-one__left-text ul li:before{
  position: relative;
    content: "";    
    display: inline-block;   
    padding: 10px;
    padding-right: 25px;
    top: 7px;  
    margin-left: -20px;  
    background-image: url(../../assets/images/tik.png);
    background-repeat: no-repeat;
}.why-choose-one__left-text ul li::marker{
  display: none;
}
tr{
  border-style: none !important;
}
td{
  padding-right:20px;
  line-height: 33px;
}
table{
  margin-bottom: -22px;
}


.why-choose-one__points {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 40px;
}

.why-choose-one__points li {
  position: relative;
  display: flex;
}

.why-choose-one__points li+li {
  margin-left: 22px;
}

.why-choose-one__points .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  background-color: var(--qrowd-extra);
  padding: 0 26px;
  top: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__points li:hover .icon {
  background-color: var(--qrowd-base);
}

.why-choose-one__points .icon i {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--qrowd-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__points li:hover .icon i {
  color: var(--qrowd-white);
}

.why-choose-one__points .content {
  margin-left: 20px;
}

.why-choose-one__points .content .title {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
    position: relative;
    top: 10px;
}

.why-choose-one__points .content .text {
  font-weight: 500;
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
  z-index: 1;
}



.why-choose-one__img-box {
  position: relative;
  display: block;
}

.why-choose-one__img {
  position: relative;
  display: block;
}

.why-choose-one__img:before {
  position: absolute;
  bottom: 0;
  right: -25px;
  width: 13px;
  height: 288px;
  background-color: var(--qrowd-primary);
  content: "";
}

.why-choose-one__img img {
  width: 100%;
}

.why-choose-one__trusted {
  position: absolute;
  display: inline-block;
  padding: 28px 35px 31px;
  background-color: var(--qrowd-black);
  bottom: 53px;
  left: -67px;
}

.why-choose-one__trusted:before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  border-bottom: 32px solid #172d2d;
  border-left: 67px solid transparent;
}

.why-choose-one__trusted p {
  text-align: center;
  line-height: 29px;
  font-size: 24px;
  color: var(--qrowd-white);
  font-weight: 800;
  letter-spacing: var(--qrowd-letter-spacing);
}

.why-choose-one__trusted span {
  color: var(--qrowd-base);
  font-size: 24px;
  line-height: 29px !important;
  font-family: var(--qrowd-font) !important;
}

.why-choose-one__trusted .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  padding: 130px 0 30px;
}

.counter-one .row {
  --bs-gutter-x: 50px;
}

.counter-one__single {
  position: relative;
  display: block;
  margin-bottom: 45px;
  z-index: 1;
}

.counter-one__single:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background-color: #354b4b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover:before {
  background-color: var(--qrowd-base);
}

.counter-one__single-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 69px 0 24px;
  z-index: 1;
}

.counter-one__single-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: #354b4b;
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-inner:before {
  background-color: var(--qrowd-base);
}

.counter-one__single-inner:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-color: #354b4b;
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-inner:after {
  background-color: var(--qrowd-base);
}

.counter-one__border-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 48px;
  background-color: #354b4b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__border-left {
  background-color: var(--qrowd-base);
}

.counter-one__border-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 1px;
  width: 48px;
  background-color: #354b4b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__border-right {
  background-color: var(--qrowd-base);
}

.counter-one__icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  height: 114px;
  width: 114px;
  background-color: var(--qrowd-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.counter-one__icon:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qrowd-base);
  border-radius: 50%;
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.counter-one__single:hover .counter-one__icon:before {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 61px;
  color: var(--qrowd-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon span {
  transform: scale(.9);
}

.counter-one__count-box {
  position: relative;
  display: block;
}

.counter-one__count-box h3 {
  font-size: 50px;
  color: var(--qrowd-white);
  font-family: var(--qrowd-font) !important;
  font-weight: 800;
  line-height: 50px !important;
}

.counter-one__letter {
  font-size: 50px;
  color: var(--qrowd-white);
  font-family: var(--qrowd-font) !important;
  font-weight: 800;
  position: relative;
  display: inline-block;
  top: 13px;
}

.counter-one__text {
  color: #8b9e9e;
  font-weight: 500;
  line-height: 27px;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 120px 0 120px;
}

.newsletter__left {
  position: relative;
  display: block;
}

.newsletter__left .section-title {
  margin-bottom: 0;
}

.newsletter__right {
  position: relative;
  display: block;
  margin-top: -5px;
  margin-left: 70px;
}

.newsletter__form {
  position: relative;
  display: block;
}

.newsletter__input-box {
  position: relative;
  display: block;
}

.newsletter__input-box input[type="email"] {
  height: 75px;
  width: 100%;
  border: none;
  outline: none;
  padding-right: 30px;
  font-size: 16px;
  color: var(--qrowd-gray);
  font-weight: 500;
  background-color: transparent;
  border-bottom: 1px solid rgba(var(--qrowd-black-rgb), .10);
}

.newsletter__btn {
  position: absolute;
  top: 50%;
  right: 0;
  height: 75px;
  width: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-radius: 50%;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  transition: all 500ms ease;
  padding: 0;
}

.newsletter__btn i {
  font-size: 20px;
  color: var(--qrowd-primary);
}

.checked-box {
  position: relative;
  display: block;
  min-height: 30px;
  margin-top: 23px;
}

.checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--qrowd-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  cursor: pointer;
  min-height: 30px;
}

.checked-box input[type="checkbox"] {
  display: none;
}

.checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-color: var(--qrowd-white);
  border: 2px solid #dce3e3;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box label span:before {
  position: absolute;
  top: 1px;
  left: 4px;
  display: block;
  border-bottom: 2px solid #dce3e3;
  border-right: 2px solid #dce3e3;
  content: '';
  width: 6px;
  height: 11px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.checked-box input[type="checkbox"]:checked+label span {
  border-color: #dce3e3;
}

.checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}










/*--------------------------------------------------------------
# Recommended One
--------------------------------------------------------------*/
.recommended-one {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.recommended-one .container {
  max-width: 1600px;
}

.recommended-one__top {
  position: relative;
  display: block;
}

.recommended-one__bottom {
  position: relative;
  display: block;
}

.recommended-one__single {
  position: relative;
  display: block;
  z-index: 2;
}

.recommended-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.recommended-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.recommended-one__img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgb(24, 46, 46);
  background: linear-gradient(180deg, rgba(24, 46, 46, 0) 0%, rgba(24, 46, 46, 1) 87%);
}

.recommended-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--qrowd-primary-rgb), .90);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
  z-index: 1;
}

.recommended-one__single:hover .recommended-one__img:before {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.recommended-one__img img {
  width: 100%;
  transition: all 500ms ease;
}

.recommended-one__single:hover .recommended-one__img img {
  transform: scale(1.05);
}

.recomanded-one__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
}

.recomanded-one__icon i {
  font-size: 20px;
  color: var(--qrowd-white);
}

.recommended-one__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 35px;
  z-index: 3;
}

.recommended-one__tag-and-remaining {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  z-index: 3;
}

.recommended-one-tag {
  position: relative;
  display: inline-block;
  background-color: var(--qrowd-base);
  padding: 6px 20px 7px;
  margin-right: 10px;
}

.recommended-one-tag p {
  font-size: 12px;
  font-weight: 800;
  line-height: 12px;
  color: var(--qrowd-white);
}

.recommended-one__remaing {
  position: relative;
  display: flex;
  align-items: center;
}

.recommended-one__remaing .icon {
  font-size: 14px;
  color: var(--qrowd-white);
}

.recommended-one__remaing .text {
  margin-left: 6px;
}

.recommended-one__remaing .text p {
  font-size: 13px;
  font-weight: 500;
  color: var(--qrowd-white);
}

.recommended-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  padding-bottom: 27px;
}

.recommended-one__title a {
  color: var(--qrowd-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.recommended-one__title a:hover {
  color: var(--qrowd-base);
}

.recommended-one__content .progress-levels {
  margin-top: 0;
  margin-bottom: 0;
}

.recommended-one__content .progress-levels .progress-box {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.recommended-one__content .progress-levels .progress-box .bar .bar-innner .skill-percent {
  top: -30px;
  right: -5px;
  z-index: 1;
}

.recommended-one__content .progress-levels .progress-box .inner .count-text {
  color: var(--qrowd-white);
}

.recommended-one__content .progress-levels .progress-box .inner .percent {
  color: var(--qrowd-white);
}

.recommended-one__content .project-one__goals {
  margin-top: 17px;
}

.recommended-one__content .project-one__goals-one {
  font-size: 14px;
  font-weight: 600;
  color: var(--qrowd-white);
  line-height: 20px;
}

.recommended-one__content .project-one__goals-one span {
  position: relative;
  font-size: 16px;
  color: var(--qrowd-base);
  font-weight: 700;
  transition: all 500ms ease;
  font-family: var(--qrowd-font) !important;
}

.project-one__plus:before {
  content: "\e90b";
  position: absolute;
  top: 0px;
  right: -9px;
  font-family: 'icomoon' !important;
  font-size: 8px;
}

.recommended-one__single:hover .recommended-one__content .project-one__goals-one span {
  color: var(--qrowd-white);
}

.recommended-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommended-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(var(--qrowd-black-rgb), .30);
  margin: 0px 2.5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.recommended-one__carousel.owl-carousel .owl-dot.active {
  background-color: rgba(var(--qrowd-primary-rgb), 1);
}

.recommended-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.recommended-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Individuals Work
--------------------------------------------------------------*/
.individuals-work {
  position: relative;
  display: block;
  text-align: center;
  padding: 145px 0 107px;
}

.individuals-work__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.individuals-work__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #172d2d;
  opacity: .75;
  content: "";
}

.individuals-work__inner {
  position: relative;
  display: block;
}

.individuals-work__video-link {
  position: relative;
  display: inline-block;
  z-index: 3;
}

.individuals-work__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 30px;
  color: var(--qrowd-base);
  background-color: var(--qrowd-white);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.individuals-work__video-icon:hover {
  background-color: var(--qrowd-base);
  color: var(--qrowd-white);
}

.individuals-work__video-icon:before {
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  content: "";
  border: 1px solid rgba(var(--qrowd-white-rgb), .10);
  z-index: 1;
}

.individuals-work__video-link .ripple,
.individuals-work__video-icon .ripple:before,
.individuals-work__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--qrowd-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--qrowd-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--qrowd-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--qrowd-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.individuals-work__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.individuals-work__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.individuals-work__title {
  font-size: 60px;
  font-weight: 900;
  color: var(--qrowd-white);
  line-height: 72px;
  padding-top: 70px;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  padding: 120px 0 133px;
}

.testimonial-one__slider {
  position: relative;
  display: block;
}

.testimonial-one__main-content {
  position: relative;
  display: block;
}

.testimonial-one__main-content-left {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 40px;
}

.testimonial-one__main-content-img {
  position: relative;
  display: block;
}

.testimonial-one__main-content-img>img {
  width: 100%;
}

.testimonial-one__review-box {
  position: absolute;
  max-width: 200px;
  width: 100%;
  background-color: var(--qrowd-base);
  padding: 25px 30px 26px;
  z-index: 1;
  transform: rotate(-90deg);
  bottom: 52px;
  left: -112px;
}

.testimonial-one__review-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 10px;
  width: 10px;
  background-color: var(--qrowd-black);
}

.testimonial-one__review-box p {
  font-size: 18px;
  color: var(--qrowd-white);
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;

}

.testimonial-one__review-icon {
  position: absolute;
  bottom: 10px;
  right: 25px;
  opacity: .10;
  z-index: -1;
}

.testimonial-one__review-icon>img {
  width: auto;
}

.testimonial-one__main-content-right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.testimonial-one__main-content-right .section-title {
  margin-bottom: 40px;
}

.testimonial-one__rating {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__rating i {
  font-size: 15px;
  color: var(--qrowd-base);
}

.testimonial-one__rating i+i {
  margin-left: 2px;
}

.testimonial-one__text-1 {
  font-size: 18px;
  line-height: 36px;
  padding-top: 16px;
  padding-bottom: 38px;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-one__client-details {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
}

.testimonial-one__client-img img {
  width: 80px;
}

.testimonial-one__client-content {
  margin-left: 30px;
}

.testimonial-one__client-content h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}

.testimonial-one__client-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.testimonial-one__quote {
  position: relative;
  display: flex;
}

.testimonial-one__quote span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--qrowd-base);
  top: 7px;
}

.testimonials-one__thumb-wrapper {
  position: absolute;
  bottom: 60px;
  left: 276px;
  max-width: 332px;
  width: 100%;
  background-color: var(--qrowd-primary);
  z-index: 1;
  border: 10px solid var(--qrowd-primary);
}

#testimonials-one__thumb {
  border: 2px solid #fff;
}

.testimonial-one__img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
  cursor: pointer;
  border: 2px solid #fff;
  background-color: var(--qrowd-black);
}


.testimonial-one__img-holder>img {
  width: 100%;
  transition: all 0.5s ease-in-out 0.6s;
}

.swiper-slide-thumb-active .testimonial-one__img-holder>img {
  opacity: 0.5;
}

#testimonials-one__carousel-pagination {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: 180px;
  right: 0;
  left: auto;
  width: 100%;
  z-index: 20;
}

#testimonials-one__carousel-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--qrowd-black-rgb), .30);
  transition: all 500ms ease;
  opacity: 1;
  margin: 0;
  display: block;
}

#testimonials-one__carousel-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 5px;
}

#testimonials-one__carousel-pagination .swiper-pagination-bullet-active {
  background-color: rgba(var(--qrowd-primary-rgb), 1);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
      position: relative;
    display: block;
    padding: 60px 0 60px;
    margin-bottom: 20px;
}

.brand-one__title {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  width: 1170px;
  text-align: center;
  margin: 0 auto;
}

.brand-one__title:before {
  position: absolute;
  top: 0;
  bottom: 50%;
  left: 0;
  content: "";
  height: 1px;
  background-color: #e1eaea;
  max-width: 530px;
  width: 100%;
  transform: translateY(-50%);
}

.brand-one__title:after {
  position: absolute;
   top: 0;
  bottom: 50%;
  right: 0;
  content: "";
  height: 1px;
  background-color: #e1eaea;
  max-width: 530px;
  width: 100%;
  transform: translateY(-50%);
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 1;
  max-width: 100%;
}

.brand-one .swiper-slide img:hover {
  opacity: 0.6;
}

.brand-one__nav {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 100;
  transform: translateY(0) translateX(-50%);
  display: flex;
  align-items: flex-end;
  height: 0;
  line-height: 0;
}


.brand-one__nav .swiper-button-next,
.brand-one__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: var(--qrowd-gray);
  border: 0;
  background-color: var(--qrowd-extra);
  border-radius: 0;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 12px 0;
}

.brand-one__nav .swiper-button-next:hover,
.brand-one__nav .swiper-button-prev:hover {
  color: var(--qrowd-white);
  background-color: var(--qrowd-base);
}

.brand-one__nav .swiper-button-next::after,
.brand-one__nav .swiper-button-prev::after {
  display: none;
}

.brand-one__nav .swiper-button-prev {
  margin-right: 5px;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.news-one__bg-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 497px;
  background-color: var(--qrowd-extra);
  z-index: -1;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-one__img-box {
  position: relative;
  display: block;
}

.news-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-one__img img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}

.news-one__single:hover .news-one__img img {
  transform: scale(1.05);
}

.news-one__img>a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--qrowd-black-rgb), 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--thm-base);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.news-one__img>a>span {
  position: relative;
}

.news-one__img>a>span::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--qrowd-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.news-one__img>a>span::after {
  content: '';
  transition: all 500ms ease;
  width: 2px;
  height: 20px;
  background-color: var(--qrowd-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-one__img>a:hover>span::before,
.news-one__img>a:hover>span::after {
  background-color: var(--qrowd-white);
}

.news-one__single:hover .news-one__img>a {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.news-one__date {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--qrowd-base);
  text-align: center;
  padding: 15px 14px 15px;
  align-items: center;
}

.news-one__date p {
  font-size: 16px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 16px;
  margin-bottom: 2px;
}

.news-one__date span {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--qrowd-white);
  letter-spacing: 0.1em;
  line-height: 12px;
  text-transform: uppercase;
}

.news-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 20px 30px 30px;
}

.news-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-one__meta li+li {
  margin-left: 10px;
}

.news-one__meta li a {
  font-size: 14px;
  font-weight: 500;
  color: #6e7a7a;
  line-height: 34px;
}

.news-one__meta li a:hover {
  color: var(--qrowd-base);
  transition: all 500ms ease;
}

.news-one__meta li a i {
  color: var(--qrowd-primary);
  padding-right: 6px;
}

.news-one__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 37px;
}

.news-one__title a {
  color: #1e3737;
  transition: all 500ms ease;
}

.news-one__title a:hover {
  color: var(--qrowd-base);
}

.news-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--qrowd-extra);
  padding: 0px 30px 0px;
  margin-top: 21px;
}

.news-one__button a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--qrowd-gray);
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.news-one__button a:hover {
  color: var(--qrowd-base);
}

.news-one__arrow a {
  font-size: 16px;
  color: var(--qrowd-gray);
  transition: all 500ms ease;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.news-one__arrow a:hover {
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Ready One
--------------------------------------------------------------*/
.ready-one {
  position: relative;
  display: block;
  z-index: 2;
}

.ready-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--qrowd-base);
  padding: 57px 60px 56px;
  overflow: hidden;
  z-index: 1;
}

.ready-one-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.ready-one-shape-1 img {
  width: auto;
}

.ready-one__big-icon {
  position: absolute;
  right: 0;
  top: -95px;
  transform: rotate(-30deg);
}

.ready-one__big-icon span {
  position: relative;
  display: inline-block;
  font-size: 350px;
  color: rgba(var(--qrowd-white-rgb), .10);
}

.ready-one__inner:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--qrowd-black);
  content: "";
  z-index: 1;

  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

.ready-one__left {
  position: relative;
  display: flex;
  align-items: center;
}

.ready-one__left .icon {
  position: relative;
  margin-right: 10px;
  top: 7px;
}

.ready-one__left .icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--qrowd-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.ready-one__left .icon:hover span {
  transform: scale(.9);
}

.ready-one__left .content {
  position: relative;
  display: block;
}

.ready-one__left .content p {
  font-size: 16px;
  font-weight: 500;
  color: #ffd7c7;
  line-height: 26px;
}

.ready-one__left .content h3 {
  font-size: 34px;
  font-weight: 800;
  color: var(--qrowd-white);
}

.ready-one__right .thm-btn {
  background-color: var(--qrowd-black);
}

.ready-one__right .thm-btn::before {
  background-color: var(--qrowd-white);
}

.ready-one__right .ready-one__btn:hover {
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: #2e3c6d;
  z-index: 1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 77px 0 77px;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.03;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 70px;
  margin-top: -7px;
}

.footer-widget__logo {
  position: relative;
  display: block;
}
.footer-widget__logo img{
	height: 140px;
    margin-top: 17px;
    padding-left: 43px;
}
.footer-widget__about-text-box {
  position: relative;
  display: block;
  padding-bottom: 24px;
  padding-top: 25px;
}

.footer-widget__about-text {
  font-size: 15px;
  font-weight: 500;
  color: #ddd;
}

.footer-widget__subscribe-box {
  position: relative;
  display: block;
}

.footer-widget__subscribe-input-box {
  position: relative;
  display: block;
  background-color: var(--qrowd-white)
}

.footer-widget__subscribe-input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: var(--qrowd-white);
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--qrowd-gray);
  border: none;
  padding-left: 20px;
  padding-right: 60px;
}

.footer-widget__subscribe-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: none;
  background-color: var(--qrowd-primary);
  font-size: 10px;
  color: var(--qrowd-white);
  border-radius: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__subscribe-btn:hover {
  background-color: var(--qrowd-base);
}

.footer-widget__subscribe-btn img {
  width: auto;
}

.footer-widget__Explore {
  position: relative;
  display: block;
  margin-right: 56px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.footer-widget__title {
  font-size: 18px;
  color: var(--qrowd-white);
  line-height: 28px;
  font-weight: 800;
}

.footer-widget__Explore-list {
  position: relative;
  display: block;
}


.footer-widget__Explore-list li {
	position:relative;
	display:block;
	line-height: 28px;
}
.footer-widget__Explore-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #ddd;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
      padding-left: 13px;
	  line-height: 28px;
	  margin-bottom:10px;
}
.footer-widget__Explore-list li a::before {
    position: absolute;
    content: "";
    top: 12px;
   
    left: 0px;
    height: 5px;
    width: 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: all .35s;
    transition: all .35s;
}
.footer-widget__Explore-list li a:hover {
  color: #f3ae49;
}



.footer-widget__Fundraising {
  position: relative;
  display: block;
  margin-right: 74px;
}

.footer-widget__Contact {
  position: relative;
  display: block;
  margin-right: 74px;
}

.footer-widget__Contact-list {
  position: relative;
  display: block;
  padding-top: 2px;
}

.footer-widget__Contact-list li {
    position: relative;
    display: block;
}





.footer-widget__Contact-list li  span {
  color: #fff;
  position: absolute;
    left: 0px;
    top: 8px;
   
    font-weight: 500;
    font-size: 15px;
}

.footer-widget__Contact-list li  p {
  font-size: 15px;
  font-weight: 500;
  color: #ddd;
  padding-left: 30px;
    margin-bottom: 10px;
}

.footer-widget__Contact-list li  p a {
  color: #ddd;
}

.footer-widget__Contact-list li  p a:hover {
  color: #f3ae49;
  transition: all 500ms ease;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--qrowd-white);
  background-color: #e02133;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: #f3ae49;
  background-color: var(--qrowd-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--qrowd-white);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 10px;
}

.site-footer__bottom {
  position: relative;
  display: block;
    z-index: 2;
  padding: 20px 0 20px;
  background-color: #2e3c6d;
  box-shadow: 0px -1px 0px 0px rgb(76 71 71 / 8%);
  border-top: 1px solid #ffffff29;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
}

.site-footer__bottom-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
}

.site-footer__bottom-text a {
  color: #f3ae49;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: #e02133;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.about-one .section-title {
  margin-bottom: 30px;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 100px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img-box:before {
  position: absolute;
  top: 0;
  left: -20px;
  content: "";
  width: 12px;
  height: 270px;
  background-color: var(--qrowd-base);
}

.about-one__img-1 {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-one__img-1 img {
  width: 100%;
}

.about-one__img-2 {
  position: absolute;
  right: -50px;
  bottom: -50px;
}

.about-one__img-2 img {
  width: 100%;
}

.about-one__experience {
  position: absolute;
  position: absolute;
  bottom: 92px;
  left: -62px;
  z-index: 1;
}

.about-one__experience:before {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 0;
  border-bottom: 37px solid transparent;
  border-right: 62px solid #05716d;
}

.about-one__experience-inner {
  position: relative;
  display: block;
  background-color: var(--qrowd-primary);
  padding: 42px 40px 30px;
  clip-path: polygon(0 18%, 100% 0%, 100% 100%, 0% 100%);
}

.about-one__experience h3 {
  font-size: 50px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 50px;
}

.about-one__experience p {
  font-size: 18px;
  font-weight: 800;
  color: var(--qrowd-white);
  line-height: 24px;
  letter-spacing: var(--qrowd-letter-spacing);
  margin-top: 4px;
}

.about-one__right {
  position: relative;
  display: block;
}

.about-one__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.about-one__text p {
  color: var(--qrowd-gray);
}

.about-one__points {
  position: relative;
  display: block;
  margin-top: 34px;
  margin-bottom: 23px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
    margin-bottom: 15px;
}

.about-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  background-color: var(--qrowd-primary);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 8px;
  color: var(--qrowd-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__points li .text {
  margin-left: 15px;
}

.about-one__points li .text p {
  font-size: 16px;
  margin-bottom: -6px;
  font-weight: 500;
}

.about-one__quote {
  margin-right: 28px;
  background-color: var(--qrowd-extra);
  padding-top: 25px;
  padding-bottom: 28px;
  padding-left: 48px;
  padding-right: 48px;
  border-left: 5px solid var(--qrowd-base);
}

.about-one__quote p {
  font-size: 20px;
  font-weight: 800;
  color: var(--qrowd-black);
  line-height: 30px;
  letter-spacing: -0.04em;
}

.about-one__person {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-left: 10px;
}

.about-one__person-img {
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.about-one__person-img:before {
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border: 2px solid var(--qrowd-base);
  content: "";
  border-radius: 50%;
}

.about-one__person-img img {
  border-radius: 50%;
}

.about-one__person-content {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-left: 50px;
}

.about-one__person-name {
  font-size: 30px;
  line-height: 34px;
  font-family: var(--qrowd-reey-font);
  color: var(--qrowd-black);
}

.about-one__person-foundation {
  font-size: 16px;
  font-weight: 500;
  color: var(--qrowd-gray);
  line-height: 20px;
  margin-left: 127px;
}

/*--------------------------------------------------------------
# Project TWo
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 300px 0 90px;
  margin-top: -180px;
  z-index: 1;
}

.project-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 773px;
  background-color: var(--qrowd-extra);
  z-index: -1;
}

.project-two-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: 0.08;
}

.project-two-shape-1 img {
  width: auto;
}

.project-two .project-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Every Step
--------------------------------------------------------------*/
.every-step {
  position: relative;
  display: block;
  z-index: 1;
}

.every-step__wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.every-step__left {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  background-color: var(--qrowd-black);
  padding: 120px 0 112px;
  z-index: 1;
}

.every-step-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.03;
  z-index: -1;
}

.every-step-shape-1 img {
  width: auto;
}

.every-step__content {
  position: relative;
  display: block;
  max-width: 507px;
  width: 100%;
  float: right;
  margin-right: 77px;
}

.every-step__content .section-title__title {
  color: var(--qrowd-white);
}

.every-step__content .section-title {
  margin-bottom: 31px;
}

.every-step__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
  min-height: 693px;
}

.every-step__right:before {
  position: absolute;
  top: 120px;
  left: -10px;
  height: 453px;
  width: 10px;
  background-color: var(--qrowd-base);
  content: "";
  z-index: 1;
}

.every-step__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.every-step__text {
  font-size: 16px;
  font-weight: 500;
  color: #8b9e9e;
  line-height: 30px;
}

.every-step__points {
  position: relative;
  display: block;
  margin-top: 34px;
}

.every-step__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.every-step__points li+li {
  margin-top: 6px;
}

.every-step__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  background-color: var(--qrowd-primary);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.every-step__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 8px;
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.every-step__points li .text {
  margin-left: 15px;
}

.every-step__points li .text p {
  font-size: 16px;
  color: var(--qrowd-white);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.process {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.process__top {
  position: relative;
  display: block;
  counter-reset: count;
}

.process__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 22px;
}

.process__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 198px;
  width: 198px;
  background-color: var(--qrowd-white);
  border-radius: 50%;
  border: 10px solid var(--qrowd-primary);
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.process__single:hover .process__icon {
  background-color: var(--qrowd-primary);
}

.process__icon span {
  position: relative;
  display: inline-block;
  font-size: 80px;
  color: var(--qrowd-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.process__single:hover .process__icon span {
  color: var(--qrowd-white);
  transform: scale(.9);
}

.process__count {
  position: absolute;
  bottom: -10px;
  right: -10px;
  border-top: 95px solid transparent;
  border-right: 95px solid var(--qrowd-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.process__count:before {
  position: absolute;
  right: -76px;
  bottom: 22px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  color: var(--qrowd-white);
  text-align: center;
  letter-spacing: var(--qrowd-letter-spacing);
}

.process__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 34px;
  margin-top: 22px;
}

.process__bottom {
  position: relative;
  display: block;
  margin-top: 21px;
}

.process__bottom-content-box {
  position: relative;
  display: block;
  text-align: center;
}

.process__bottom-content-box p {
  font-weight: 500;
}

.process__btn {
  margin-top: 41px;
}

/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--qrowd-extra);
  z-index: 1;
}

.faq-one-bg {
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 0;
  width: 54.1%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 40px;
}

.faq-one__left .section-title {
  margin-bottom: 30px;
}

.faq-one__left-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--qrowd-gray);
}

.faq-one__img {
  position: relative;
  display: block;
  margin-top: 51px;
}

.faq-one__img img {
  width: 100%;
}

.faq-one__icon {
  position: absolute;
  top: -60px;
  right: 30px;
  height: 120px;
  width: 120px;
  background-color: var(--qrowd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-one__icon span {
  font-size: 60px;
  color: var(--qrowd-white);
}

.faq-one__right {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: var(--qrowd-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active {
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid #e1eaea;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 40px 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 0;
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  color: var(--qrowd-black);
  letter-spacing: -0.04em;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  color: var(--qrowd-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--qrowd-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--qrowd-primary);
  position: absolute;
  top: 50%;
  right: -14px;
  height: 15px;
  width: 15px;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--qrowd-base);
  height: 15px;
  width: 15px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 0px 40px 31px;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}


.team-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--qrowd-black-rgb), .30);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  transform: translateY(0);
  width: 100%;
}

.team-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05);
}

.team-one__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--qrowd-white);
  padding: 26px 0px 30px;
  margin-top: -85px;
  margin-left: 30px;
  margin-right: 30px;
  transition: all 500ms ease;
  z-index: 2;
}

.team-one__single:hover .team-one__content {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.team-one__name {
  font-size: 22px;
  font-weight: 800;
  line-height: 24px;
}

.team-one__name a {
  color: var(--qrowd-black);
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--qrowd-base);
}

.team-one__sub-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--qrowd-gray);
}

.team-one__social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.team-one__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--qrowd-black);
  background-color: var(--qrowd-extra);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social a+a {
  margin-left: 10px;
}

.team-one__social a:hover {
  color: var(--qrowd-white);
  background-color: var(--qrowd-base);
}

.team-one__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--qrowd-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.team-one__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/*--------------------------------------------------------------
# Changing One
--------------------------------------------------------------*/
.changing-one {
  position: relative;
  display: block;
  padding: 111px 0 180px;
  z-index: 1;
}

.changing-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.changing-one__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(23, 45, 45, .74);
  content: "";
}

.changing-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.changing-one__sub-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--qrowd-white);
}

.changing-one__title {
  font-size: 60px;
  color: var(--qrowd-white);
  font-weight: 800;
  margin-top: 17px;
  margin-bottom: 48px;
  line-height: 71px;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  margin-top: -60px;
  z-index: 1;
}

.feature-one .container {
  max-width: 1440px;
}

.feature-one__single {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-one__img {
  position: relative;
  display: block;
  max-width: 200px;
  width: 100%;
}

.feature-one__img img {
  width: 100%;
}

.feature-one__content-box {
  position: relative;
  display: block;
  background-color: #07847f;
  padding-top: 40px;
    padding-left: 50px;
    padding-right: 40px;
    padding-bottom: 40px;
  overflow: hidden;
  z-index: 1;
}

.feature-one-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
  mix-blend-mode: luminosity;
  opacity: 0.08;
  z-index: -1;
}

.feature-one-shape-1 img {
  width: auto;
}

.feature-one__content {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-one__icon {
  position: relative;
  display: block;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--qrowd-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-one__single:hover .feature-one__icon span {
  transform: scale(0.9);
}

.feature-one__title {
  position: relative;
  display: block;
  margin-left: 17px;
  top: -5px;
}

.feature-one__title h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--qrowd-white);
}

.feature-one__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #96e8e5;
  margin-top: 10px;
  margin-bottom: 17px;
}

.content-box__two {
  background-color: var(--qrowd-base);
}

.content-box__two .feature-one__text {
  color: #ffd7c7;
}

.feature-one__btn {
  background-color: var(--qrowd-black);
}

.feature-one__btn:hover {
  color: var(--qrowd-base);
}

.feature-one__btn:hover:before {
  background-color: var(--qrowd-white);
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
  position: relative;
  display: block;
  padding: 120px 0 100px;
  z-index: 1;
}

.welcome-one__left {
  position: relative;
  display: block;
  margin-right: 170px;
  z-index: 1;
}

.welcome-one__left:before {
  position: absolute;
  top: 100px;
  left: -1000000px;
  right: 120px;
  bottom: -100px;
  content: "";
  background-color: var(--qrowd-extra);
  z-index: -1;
}

.welcome-one__img-one {
  position: relative;
  display: block;
}

.welcome-one__img-one:before {
  position: absolute;
  bottom: 52px;
  right: -48px;
  width: 48px;
  height: 48px;
  background-color: var(--qrowd-primary);
  content: "";
}

.welcome-one__img-one img {
  width: 100%;
}

.welcome-one__img-two {
  position: absolute;
  right: -170px;
  bottom: 100px;
}

.welcome-one__img-two img {
  width: 100%;
}

.welcome-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.welcome-one__sub-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  color: var(--qrowd-primary);
}

.welcome-one__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--qrowd-gray);
  margin-top: 30px;
  margin-bottom: 31px;
}

.welcome-one .section-title {
  margin-bottom: 31px;
}

.welcome-one__points {
  position: relative;
  display: block;
}

.welcome-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.welcome-one__points li+li {
  margin-top: 29px;
}

.welcome-one__points li .icon {
  position: relative;
  display: block;
}

.welcome-one__points li .icon span {
  width: 47px;
  height: 47px;
  font-size: 27px;
  color: var(--qrowd-base);
  background-color: var(--qrowd-extra);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.welcome-one__points li:hover .icon span {
  background-color: var(--qrowd-base);
  color: var(--qrowd-white);
}

.welcome-one__points li .content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.welcome-one__points li .content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--qrowd-black);
  line-height: 31px;
}

.welcome-one__points li .content p {
  font-weight: 500;
}

.welcomw-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.welcome-one__expert {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--qrowd-black);
  margin-left: 26px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.welcome-one__expert:hover {
  color: var(--qrowd-base);
}

.welcome-one__expert::before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #cbcece;
}

/*--------------------------------------------------------------
# Categories Two
--------------------------------------------------------------*/
.categories-two {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 111px;
}

.categories-two__bottom {
  position: relative;
  display: block;
}

.categories-two__bottom .row {
  --bs-gutter-x: 13px;
}

.categories-two__bottom-inner {
  position: relative;
  display: block;
}

.categories-two__single {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--qrowd-extra);
  padding: 38px 0 34px;
  margin-bottom: 30px;
  transition: all 0.4s linear;
  z-index: 1;
}

.categories-two__single:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qrowd-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.categories-two__single:hover:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.categories-two__icon {
  position: relative;
  display: inline-block;
}

.categories-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: #fd7e46;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.categories-two__single:hover .categories-two__icon span {
  transform: scale(.9);
}

.categories-two__title {
  font-size: 18px;
  color: var(--qrowd-black);
  font-weight: 800;
  line-height: 25px;
  margin-top: 17px;
  transition: all 0.4s linear;
}

.categories-two__single:hover .categories-two__title {
  color: var(--qrowd-black);
}

.categories-two__bottom-text {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.categories-two__bottom-text span {
  position: relative;
  display: inline-block;
  color: var(--qrowd-black);
  font-weight: 800;
}

.categories-two__bottom-text span:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Creator Funded
--------------------------------------------------------------*/
.creator-funded {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.creator-funded-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.creator-funded-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(23, 45, 45, .75);
}

.creator-funded__left {
  position: relative;
  display: block;
}

.creator-funded__left .section-title {
  margin-bottom: 0;
}

.creator-funded__left .section-title__title {
  color: var(--qrowd-white);
}

.creator-funded__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.creator-funded__points {
  position: relative;
  display: block;
}

.creator-funded__points li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(23, 45, 45, .70);
  padding: 24px 25px 24px;
}

.creator-funded__points li+li {
  margin-top: 10px;
}

.creator-funded__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.creator-funded__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--qrowd-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: scale(1) rotateY(0deg);
  transform: scale(1) rotateY(0deg);
}

.creator-funded__points li:hover .icon span {
  -webkit-transform: scale(0.9) rotateY(360deg);
  transform: scale(0.9) rotateY(360deg);
  color: var(--qrowd-white);
}

.creator-funded__points li .text {
  margin-left: 20px;
}

.creator-funded__points li .text p {
  font-size: 18px;
  color: var(--qrowd-white);
  font-weight: 800;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  background-color: var(--qrowd-primary);
  padding: 100px 0 100px;
}

.brand-two .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-two .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.20;
  max-width: 100%;
}

.brand-two .swiper-slide img:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.project-three__top {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.project-three__top-left {
  position: relative;
  display: block;
}

.project-three__top-left .section-title {
  margin-bottom: 0;
}

.project-three__top-right {
  position: relative;
  display: block;
  margin-top: 56px;
  float: right;
}

.project-three__filter {
  position: relative;
  display: flex;
  align-items: center;
}

.project-three__filter.style1 li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-three__filter.style1 li+li {
  margin-left: 25px;
}

.project-three__filter.style1 li .filter-text {
  position: relative;
  display: inline-block;
  color: var(--qrowd-gray);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: var(--qrowd-letter-spacing);
  transition: all 0.4s ease;
  z-index: 1;
}

.project-three__filter.style1 li .filter-text:before {
  position: absolute;
  bottom: 5px;
  left: -3px;
  right: -3px;
  content: "";
  opacity: 0;
  height: 6px;
  background-color: rgba(254, 144, 67, .20);
  transition: all 0.4s ease;
  z-index: -1;
}

.project-three__filter.style1 li:hover .filter-text:before {
  opacity: 1;
}

.project-three__filter.style1 li:hover .filter-text,
.project-three__filter.style1 li.active .filter-text {
  color: var(--qrowd-black);
  text-shadow: 0 0 1px currentColor;
}

.project-three__filter.style1 li.active .filter-text:before {
  opacity: 1;
}

.project-three__bottom {
  position: relative;
  display: block;
}

.project-three__bottom .project-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 120px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.services-one-shape-1 {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.services-one .container {
  max-width: 1570px;
}

.services-one .row {
  --bs-gutter-x: 20px;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  text-align: center;
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single-inner {
  position: relative;
  display: block;
  padding: 58px 64px 51px;
  overflow: hidden;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.services-one__single:hover .services-one__single-inner {
  background-color: var(--qrowd-black);
}

.services-one__single-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--qrowd-black);
  background-blend-mode: luminosity;
  opacity: 0.10;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.services-one__single:hover .services-one__single-bg {
  transform: scaleY(1.0);
}

.services-one__icon {
  position: relative;
  display: inline-block;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--qrowd-primary);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__icon span {
  color: var(--qrowd-base);
}

.services-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 18px;
}

.services-one__title a {
  color: var(--qrowd-black);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__title a {
  color: var(--qrowd-white);
}

.services-one__text {
  font-weight: 500;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__text {
  color: #8b9e9e;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: var(--qrowd-black);
  padding: 120px 0 203px;
  z-index: 1;
}

.testimonial-two-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 52.5%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.05;
  z-index: -1;
}

.testimonial-two__left {
  position: relative;
  display: block;
  z-index: 5;
}

.testimonial-two__left .section-title {
  margin-bottom: 30px;
}

.testimonial-two__left .section-title__title {
  color: var(--qrowd-white);
}

.testimonial-two__text {
  color: #8b9e9e;
  font-weight: 500;
  margin-right: 85px;
}

.testimonial-two__right {
  position: relative;
  display: block;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 50px 50px 37px;
  border: 1px solid #dde5e5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.testimonial-two__single:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.testimonial-two__single:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background-color: var(--qrowd-primary);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.testimonial-two__single:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.testimonial-two__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__client-img {
  position: relative;
  display: inline-block;
  width: 88px;
}

.testimonial-two__client-img img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--qrowd-primary);
}

.testimonial-two__client-content {
  margin-left: 20px;
}

.testimonial-two__client-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
  margin-bottom: 5px;
}

.testimonial-two__client-sub-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.testimonial-two__text-2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  padding-top: 19px;
  padding-bottom: 12px;
}

.testimonial-two__quote {
  position: relative;
  display: inline-block;
}

.testimonial-two__quote span {
  position: relative;
  display: inline-block;
  font-size: 55px;
  color: var(--qrowd-base);
}

.testimonial-two__rating {
  position: absolute;
  bottom: 50px;
  right: -20px;
  display: flex;
  align-items: center;
  background-color: var(--qrowd-extra);
  padding: 12px 20px 13px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__rating {
  background-color: var(--qrowd-base);
}

.testimonial-two__rating:after {
  position: absolute;
  bottom: -15px;
  right: 0;
  content: "";
  border-top: 0px solid transparent;
  border-left: 20px solid #e1eaea;
  border-bottom: 15px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__rating:after {
  border-left: 20px solid #f57845;
}

.testimonial-two__rating i {
  font-size: 15px;
  color: var(--qrowd-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__rating i+i {
  margin-left: 3px;
}

.testimonial-two__single:hover .testimonial-two__rating i {
  color: var(--qrowd-white);
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 24px;
  left: -400px;
  margin: 0;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--qrowd-black);
  background-color: rgba(var(--qrowd-white-rgb), .20);
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--qrowd-black);
  background-color: rgba(var(--qrowd-white-rgb), .20);
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: rgba(var(--qrowd-white-rgb), 1);
}

/*--------------------------------------------------------------
# Tabs Box One
--------------------------------------------------------------*/
.tabs-box-one {
  position: relative;
  display: block;
  margin-top: -83px;
  padding: 0 0 120px;
  z-index: 1;
}
.ab_eff{
 height:300px;width:450px;margin-top:25px;
 
}
.ab_eff:hover{
 filter:grayscale();
 transition: all .3s ease;
}

.tabs-box-one .tab-buttons {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.tabs-box-one .tab-buttons .tab-btn {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  text-align: center;
}

.tabs-box-one .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 22px;
  color: var(--qrowd-white);
  background-color: var(--qrowd-primary);
  padding: 27px 0px 26px;
  font-weight: 700;
  letter-spacing: var(--qrowd-letter-spacing);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.tabs-box-one .tab-buttons .tab-btn.active-btn span {
  color: var(--qrowd-black);
}

.tabs-box-one .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--qrowd-white);
  transition: all 0.3s ease;
  z-index: -1;
}

.tabs-box-one .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.tabs-box-one .tabs-content {
  position: relative;
  display: block;
  margin-top: 80px;
}

.tabs-box-one .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.tabs-box-one .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);

}

.tabs-content__inner {
  position: relative;
  display: block;
}

.tabs-content__inner-left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.tabs-content__inner-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.tabs-content__inner-img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
}

.tabs-content__inner-img:hover:before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.tabs-content__inner-img img {
  width: 100%;
}

.tabs-content__inner-right {
  position: relative;
  display: block;
  margin-left: -30px;
  margin-top: -8px;
}

.tabs-content__inner-title-one {
  font-size: 30px;
  font-weight: 800;
  line-height: 37px;
}

.tabs-content__inner-title-two {
  font-size: 20px;
  font-weight: 800;
  color: var(--qrowd-base);
  line-height: 30px;
  margin-top: 36px;
  margin-bottom: 33px;
}

.tabs-content__inner-text {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.gallery-one .container {
  max-width: 1620px;
}

.gallery-one__list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.gallery-one__single {
  position: relative;
  width: 100%;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: 30px;
}

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--qrowd-primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
}

.gallery-one__single:hover .gallery-one__img:before {
  opacity: .90;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-one__img img {
  width: 100%;
}

.gallery-one__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-one__icon a {
  height: 97px;
  width: 97px;
  background-color: var(--qrowd-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--qrowd-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.gallery-one__single:hover .gallery-one__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-one__icon a:hover {
  background-color: var(--qrowd-white);
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Events One
--------------------------------------------------------------*/
.events-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.events-one__left {
  position: relative;
  display: block;
  margin-right: 60px;
}

.events-one__left .section-title {
  margin-bottom: 31px;
}

.events-one__text {
  font-weight: 500;
  padding-bottom: 41px;
}

.events-one__right {
  position: relative;
  display: block;
  z-index: 1;
}

.events-one__right:before {
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: 239px;
  right: -1000000px;
  content: "";
  background-color: var(--qrowd-extra);
  z-index: -1;
}

.events-one__list {
  position: relative;
  display: block;
}

.events-one__list>li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.events-one__list>li:last-child {
  margin-bottom: 0;
}

.events-one__img {
  position: relative;
  display: inline-block;
  max-width: 239px;
  width: 100%;
  min-height: 181px;
  overflow: hidden;
}

.events-one__img img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

.events-one__list>li:hover .events-one__img img {
  transform: scale(1.05);
}

.events-one__img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--qrowd-black-rgb), .30);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: 1;
}

.events-one__list>li:hover .events-one__img:after {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.events-one__date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--qrowd-base);
  padding: 9px 20px;
  z-index: 2;
}

.events-one__date p {
  font-size: 12px;
  color: var(--qrowd-white);
  line-height: 12px;
  font-weight: 700;
}

.events-one__content {
  position: relative;
  display: block;
  min-height: 181px;
  background-color: var(--qrowd-white);
  padding: 22px 30px 19px;
  padding-right: 62px;
}

.events-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.events-one__meta>li {
  font-size: 14px;
  font-weight: 500;
}

.events-one__meta>li+li {
  margin-left: 5px;
}

.events-one__meta>li>i {
  font-size: 15px;
  color: var(--qrowd-primary);
  padding-right: 5px;
}

.events-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 13px;
}

.events-one__title a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-one__title a:hover {
  color: var(--qrowd-base);
}

.events-one__read-more {
  position: relative;
  display: block;
}

.events-one__read-more a {
  font-size: 12px;
  font-weight: 600;
  color: var(--qrowd-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-one__read-more a span {
  font-size: 15px;
  top: 2px;
  position: relative;
  padding-right: 6px;
}

.events-one__read-more a:hover {
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Ready Two
--------------------------------------------------------------*/
.ready-two {
  position: relative;
  display: block;
  background-color: var(--qrowd-base);
  padding: 56.5px 0;
  overflow: hidden;
  z-index: 1;
}

.ready-two-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.ready-two-shape-1 img {
  width: auto;
}

.ready-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--qrowd-base);
  padding-right: 60px;
  z-index: 1;
}

.ready-two__big-icon {
  position: absolute;
  right: 0;
  top: -142px;
}

.ready-two__big-icon span {
  position: relative;
  display: inline-block;
  font-size: 350px;
  color: rgba(var(--qrowd-white-rgb), .10);
  transform: rotate(-30deg);
}

.ready-two__left {
  position: relative;
  display: flex;
  align-items: center;
}

.ready-two__icon {
  position: relative;
  margin-right: 10px;
  top: 7px;
}

.ready-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--qrowd-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.ready-two__icon:hover span {
  transform: scale(.9);
}

.ready-two__content {
  position: relative;
  display: block;
}

.ready-two__content p {
  font-size: 16px;
  font-weight: 500;
  color: #ffd7c7;
  line-height: 26px;
}

.ready-two__content h3 {
  font-size: 34px;
  font-weight: 800;
  color: var(--qrowd-white);
}

.ready-two__right {
  position: relative;
  display: block;
}

.ready-two__btn {
  background-color: var(--qrowd-black);
}

.ready-two__btn:hover {
  color: var(--qrowd-base);
}

.ready-two__btn:before {
  background-color: var(--qrowd-white);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 156px 0 155px;
  background-color: var(--qrowd-black);
  overflow: hidden;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .50;
  z-index: -1;
}

.page-header-shape-1 {
  position: absolute;
  top: 0;
  right: -30px;
  mix-blend-mode: hard-light;
}

.page-header-shape-1 img {
  width: auto;
}

.page-header-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: soft-light;
  opacity: .40;
}

.page-header-shape-2 img {
  width: auto;
}

.page-header-shape-3 {
  position: absolute;
  bottom: 0;
  right: -29px;
  mix-blend-mode: color-dodge;
}

.page-header-shape-3 img {
  width: auto;
}

.page-header__inner {
  position: relative;
  display: block;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 50px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 59px;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--qrowd-white);
  font-size: 16px;
  font-weight: 600;
  opacity: .60;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 4px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--qrowd-white);
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# News Sidebar
--------------------------------------------------------------*/
.news-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-sidebar__left {
  position: relative;
  display: block;
}

.news-sidebar__content {
  position: relative;
  display: block;
}

.news-sidebar__single {
  position: relative;
  display: block;
}

.news-sidebar__single+.news-sidebar__single {
  margin-top: 19px;
}

.news-sidebar__img {
  position: relative;
  display: block;
}

.news-sidebar__img img {
  width: 100%;
}

.news-sidebar__date {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--qrowd-base);
  text-align: center;
  padding: 15px 14px 15px;
  align-items: center;
}

.news-sidebar__date p {
  font-size: 16px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 16px;
  margin-bottom: 2px;
}

.news-sidebar__date span {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--qrowd-white);
  letter-spacing: 0.1em;
  line-height: 12px;
  text-transform: uppercase;
}

.news-sidebar__content-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-sidebar__meta {
  display: flex;
  align-items: center;
}

.news-sidebar__meta li+li {
  margin-left: 10px;
}

.news-sidebar__meta li a {
  font-size: 14px;
  color: var(--qrowd-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__meta li a:hover {
  color: var(--qrowd-primary);
}

.news-sidebar__meta li a i {
  color: var(--qrowd-primary);
  padding-right: 3px;
}

.news-sidebar__title {
  font-size: 34px;
  line-height: 40px;
  font-weight: 800;
  margin-top: 3px;
}

.news-sidebar__title a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__title a:hover {
  color: var(--qrowd-base);
}

.news-sidebar__text {
  margin: 0;
  padding-top: 14px;
  padding-bottom: 11px;
  font-size: 16px;
  font-weight: 500;
}

.news-sidebar__bottom {
  display: flex;
  align-items: center;
}

.news-sidebar__read-more {
  font-size: 12px;
  color: var(--qrowd-black);
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-sidebar__read-more:hover {
  color: var(--qrowd-base);
}

.news-sidebar__arrow {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--qrowd-black);
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__arrow:hover {
  color: var(--qrowd-base);
}


.news-sidebar__bottom-box {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 60px 60px 56px;
  margin-top: 20px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__bottom-box-icon {
  margin-bottom: 21px;
}

.news-sidebar__bottom-box-text {
  font-size: 16px;
  font-weight: 500;
}

.news-sidebar__delivering-services {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 60px 60px 59px;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__delivering-services-icon {
  margin-bottom: 23px;
}

.news-sidebar__delivering-services-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.news-sidebar__delivering-services-title a {
  color: var(--qrowd-black);
  transition: all 500ms ease;
}

.news-sidebar__delivering-services-title a:hover {
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 800;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--qrowd-primary);
  color: var(--qrowd-white);
  font-size: 16px;
  font-weight: 500;
  padding-left: 50px;
  height: 74px;
  width: 100%;
  padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--qrowd-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--qrowd-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--qrowd-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--qrowd-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--qrowd-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--qrowd-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--qrowd-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  background-color: var(--qrowd-extra);
  overflow: hidden;
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: var(--qrowd-white);
}

.sidebar__post-list li+li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 20px;
}

.sidebar__post-image>img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
  letter-spacing: 0;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--qrowd-gray) !important;
  font-family: var(--qrowd-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--qrowd-primary);
  font-size: 15px;
  padding-right: 4px;
}

.sidebar__post-content h3 a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: var(--qrowd-letter-spacing);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 46px 30px 34px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 4px;
}

.sidebar__category-list li a {
  color: var(--qrowd-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px 7px;
  font-weight: 600;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--qrowd-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--qrowd-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--qrowd-base);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}

.sidebar__category-list li a:hover span {
  color: var(--qrowd-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--qrowd-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--qrowd-extra);
  padding: 46px 45px 50px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 12px;
  color: var(--qrowd-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--qrowd-white);
  display: inline-block;
  padding: 5px 20px 5px;
  margin-left: 5px;
  font-weight: 800;
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--qrowd-white);
  background: var(--qrowd-base);
}

.sidebar__comments {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 46px 50px 43px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__comments .sidebar__title {
  margin-bottom: 25px;
}

.sidebar__comments-list {
  position: relative;
  display: block;
}

.sidebar__comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
}

.sidebar__comments-list li+li {
  margin-top: 23px;
}

.sidebar__comments-icon {
  height: 45px;
  width: 45px;
  background-color: var(--qrowd-white);
  border-radius: 50%;
  font-size: 15px;
  color: var(--qrowd-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
  background-color: var(--qrowd-base);
  color: var(--qrowd-white);
}

.sidebar__comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 600;
}

.sidebar__comments-text-box p span {
  color: var(--qrowd-black);
}

.sidebar__comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: var(--qrowd-gray);
  font-weight: 500;
  letter-spacing: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__date {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--qrowd-base);
  text-align: center;
  padding: 15px 14px 15px;
  align-items: center;
}

.news-details__date p {
  font-size: 16px;
  color: var(--qrowd-white);
  font-weight: 800;
  line-height: 16px;
  margin-bottom: 2px;
}

.news-details__date span {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--qrowd-white);
  letter-spacing: 0.1em;
  line-height: 12px;
  text-transform: uppercase;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__meta li+li {
  margin-left: 10px;
}

.news-details__meta li a {
  font-size: 14px;
  color: var(--qrowd-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__meta li a:hover {
  color: var(--qrowd-primary);
}

.news-details__meta li a i {
  color: var(--qrowd-primary);
  padding-right: 3px;
}

.news-details__title {
  font-size: 34px;
  line-height: 40px;
  margin-top: 4px;
  margin-bottom: 14px;
  font-weight: 800;
}

.news-details__text-1 {
  font-size: 16px;
  font-weight: 500;
}

.news-details__text-2 {
  font-size: 16px;
  padding-top: 31px;
  font-weight: 500;
}

.news-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid #e1eaea;
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--qrowd-black);
  font-size: 20px;
  margin-right: 14px;
  font-weight: 800;
}

.news-details__tags a {
  position: relative;
  color: var(--qrowd-white);
  font-size: 12px;
  background-color: var(--qrowd-base);
  display: inline-block;
  padding: 5px 20px 5px;
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--qrowd-primary);
  color: var(--qrowd-white);
}

.news-details__tags a+a {
  margin-left: 6px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__social-list a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--qrowd-black);
  background-color: var(--qrowd-extra);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--qrowd-white);
}

.news-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--qrowd-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.news-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.news-details__social-list a+a {
  margin-left: 10px;
}

.news-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 54px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: var(--qrowd-black);
  font-weight: 800;
  background-color: var(--qrowd-extra);
  line-height: 34px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 51px;
  padding-bottom: 50px;
  letter-spacing: var(--qrowd-letter-spacing);
}

.news-details__pagenation li+li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--qrowd-primary);
  color: var(--qrowd-white);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--qrowd-black);
  font-size: 30px;
  margin-bottom: 51px;
  font-weight: 800;
  letter-spacing: var(--qrowd-letter-spacing);
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e1eaea;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.comment-one__content {
  position: relative;
  margin-left: 45px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--qrowd-black);
  margin-bottom: 26px;
  font-weight: 800;
}

.comment-one__content p {
  font-size: 16px;
  font-weight: 500;
}

.comment-one__btn {
  padding: 4px 20px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--qrowd-white);
}

.comment-one__btn:hover {
  color: var(--qrowd-white);
}

.comment-one__btn:before {
  background-color: var(--qrowd-primary);
  transform: translate(-50%, -50%) rotate(-75deg);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--qrowd-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--qrowd-gray);
  display: block;
  font-weight: 500;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: var(--qrowd-gray);
  height: 190px;
  width: 100%;
  background-color: var(--qrowd-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.comment-form__btn {
  border: none;
}

.comment-form__input-box.text-message-box {
  height: 190px;
}

/*--------------------------------------------------------------
# Events Page
--------------------------------------------------------------*/
.events-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.events-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.events-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.events-page__img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--qrowd-black-rgb), .30);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: 1;
}

.events-page__single:hover .events-page__img:after {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.events-page__img img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

.events-page__single:hover .events-page__img img {
  transform: scale(1.05);
}

.events-page__date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--qrowd-base);
  padding: 9px 20px;
  z-index: 2;
}

.events-page__date p {
  font-size: 12px;
  color: var(--qrowd-white);
  line-height: 12px;
  font-weight: 700;
}

.events-page__content {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 23px 40px 29px;
}

.events-page__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.events-page__meta>li {
  font-size: 14px;
  font-weight: 500;
}

.events-page__meta>li+li {
  margin-left: 5px;
}

.events-page__meta>li>i {
  font-size: 15px;
  color: var(--qrowd-primary);
  padding-right: 5px;
}

.events-page__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 13px;
}

.events-page__title a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-page__title a:hover {
  color: var(--qrowd-base);
}

.events-page__read-more {
  position: relative;
  display: block;
}

.events-page__read-more a {
  font-size: 12px;
  font-weight: 600;
  color: var(--qrowd-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-page__read-more a span {
  font-size: 15px;
  top: 2px;
  position: relative;
  padding-right: 6px;
}

.events-page__read-more a:hover {
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Events List
--------------------------------------------------------------*/
.events-list {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.events-list__inner {
  position: relative;
  display: block;
}

.events-list__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 50px;
  border: 1px solid #e1eaea;
  background-color: var(--qrowd-white);
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-list__single:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.events-list__left {
  position: relative;
  display: flex;
  max-width: 850px;
  width: 100%;
}

.events-list__img {
  position: relative;
  display: block;
  max-width: 239px;
  width: 100%;
}

.events-list__img img {
  width: 100%;
}

.events-list__date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--qrowd-base);
  padding: 9px 20px;
  z-index: 2;
}

.events-list__date p {
  font-size: 12px;
  color: var(--qrowd-white);
  line-height: 12px;
  font-weight: 700;
}

.events-list__content {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -7px;
}

.events-list__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.events-list__meta>li {
  font-size: 14px;
  font-weight: 500;
}

.events-list__meta>li+li {
  margin-left: 5px;
}

.events-list__meta>li>i {
  font-size: 15px;
  color: var(--qrowd-primary);
  padding-right: 5px;
}

.events-list__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 6px;
  margin-bottom: 15px;
}

.events-list__title a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-list__title a:hover {
  color: var(--qrowd-base);
}

.events-list__text {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Event Details
--------------------------------------------------------------*/
.event-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.event-details__img {
  position: relative;
  display: block;
}

.event-details__img img {
  width: 100%;
}

.event-details__date {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--qrowd-base);
  padding: 9px 20px;
  z-index: 2;
}

.event-details__date p {
  font-size: 12px;
  color: var(--qrowd-white);
  line-height: 12px;
  font-weight: 700;
}

.event-details__bottom {
  position: relative;
  display: block;
  margin-top: 50px;
}

.event-details__left {
  position: relative;
  display: block;
}

.event-details__content-one {
  position: relative;
  display: block;
  margin-top: -9px;
}

.event-details__content-one-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin-bottom: 14px;
}

.event-details__content-one-text-1 {
  font-weight: 500;
}

.event-details__content-one-text-2 {
  font-size: 20px;
  color: var(--qrowd-base);
  font-weight: 800;
  letter-spacing: var(--qrowd-letter-spacing);
  padding-top: 29px;
  padding-bottom: 29px;
}

.event-details__content-one-text-3 {
  font-weight: 500;
}

.event-details__content-two {
  position: relative;
  display: block;
  margin-top: 45px;
}

.event-details__content-two-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 16px;
}

.event-details__content-two-1 {
  font-weight: 500;
}

.event-details__content-two-2 {
  font-weight: 500;
  padding-top: 27px;
  padding-bottom: 51px;
}

.event-details__sidebar {
  position: relative;
  display: block;
}

.event-details__details-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1), inset 0px 4px 0px 0px rgba(7, 132, 127, 0.004);
  padding: 44px 50px 40px;
}

.event-details__details-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--qrowd-primary);
}

.event-details__details-box-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
  margin-bottom: 16px;
}

.event-details__details-box-list {
  position: relative;
  display: block;
}

.event-details__details-box-list li {
  position: relative;
  display: block;
  overflow: hidden;
}

.event-details__details-box-list li+li {
  margin-top: 18px;
}

.event-details__details-box-list li .left {
  position: relative;
  display: block;
  float: left;
}

.event-details__details-box-list li .left p {
  font-size: 15px;
  font-weight: 600;
}

.event-details__details-box-list li .right {
  position: relative;
  display: block;
  float: right;
  text-align: right;
}

.event-details__details-box-list li .right p {
  font-size: 15px;
  color: var(--qrowd-black);
  font-weight: 800;
}

.event-details__details-box-list li .right p a {
  color: var(--qrowd-black);
}

.event-details__details-box-list li .right p a.clr-primary {
  color: var(--qrowd-primary);
}

.event-details__details-box-list li .right p.clr-base {
  color: var(--qrowd-base);
}

.event-details__map {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  margin-top: 30px;
}

.event-details__map-one {
  position: relative;
  display: block;
  border: none;
  height: 390px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Project Page One
--------------------------------------------------------------*/
.project-page-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.project-page-one .project-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Project Page Two
--------------------------------------------------------------*/
.project-page-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.project-page-two .recommended-one__single {
  margin-bottom: 30px;
}

.project-page-two .recommended-one__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 35px;
  z-index: 3;
}

.project-page-two .recommended-one__tag-and-remaining {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.project-page-two .recommended-one__title {
  font-size: 24px;
}

/*--------------------------------------------------------------
# Contact Three
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.contact-one .container {
  max-width: 770px;
}

.contact-one__form-box {
  position: relative;
  display: block;
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__form .row {
  --bs-gutter-x: 20px;
}

.contact-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-form__input-box input[type="text"],
.contact-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--qrowd-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--qrowd-gray);
  display: block;
  font-weight: 500;
}

.contact-form__input-box textarea {
  font-size: 14px;
  color: var(--qrowd-gray);
  height: 190px;
  width: 100%;
  background-color: var(--qrowd-extra);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.contact-form__btn {
  border: none;
}

.contact-form__input-box.text-message-box {
  height: 190px;
}

.contact-form__btn {
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.address {
  position: relative;
  display: block;
  z-index: 1;
}

.address__single {
  position: relative;
  display: block;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(225, 234, 234);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 43px 50px 41px;
  margin-bottom: 30px;
}

.address__title-box {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.address__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
}

.address__icon {
  position: relative;
  display: flex;
  align-items: center;
  top: 7px;
}

.address__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--qrowd-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.address__single:hover .address__icon span {
  transform: scale(.9);
}

.address__text {
  font-weight: 500;
}

.address__text a {
  color: var(--qrowd-gray);
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.address__text a:hover {
  color: var(--qrowd-black);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  margin-top: -80px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 500px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Project Details Top
--------------------------------------------------------------*/
.project-details-top {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.project-details-top__left {
  position: relative;
  display: block;
}

.project-details-top__img {
  position: relative;
  display: block;
}

.project-details-top__img img {
  width: 100%;
}

.project-details-top__icon {
  position: absolute;
  top: 30px;
  right: 30px;
}

.project-details-top__icon i {
  font-size: 20px;
  color: var(--qrowd-white);
}

.project-details-top__right {
  position: relative;
  display: block;
}

.project-details-top__tag-address {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.project-details-top__tag {
  position: relative;
  display: inline-block;
  background-color: var(--qrowd-base);
  padding: 0 20px 0;
}

.project-details-top__tag p {
  font-size: 12px;
  color: var(--qrowd-white);
  font-weight: 800;
  position: relative;
  display: inline-block;
  line-height: 27px;
  top: -2px;
}

.project-details-top__address {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.project-details-top__address p {
  font-size: 14px;
  font-weight: 500;
}

.project-details-top__address p i {
  color: var(--qrowd-primary);
  margin-right: 5px;
}

.project-details-top__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 31px;
  margin-bottom: 20px;
}

.project-details-top__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #e1eaea;
}

.project-details-top__list li {
  position: relative;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  text-align: center;
}

.project-details-top__list-content {
  position: relative;
  display: block;
  padding: 29px 0 25px;
}

.project-details-top__list-content:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: #e1eaea;
}

.project-details-top__list li:first-child .project-details-top__list-content:before {
  display: none;
}

.project-details-top__list-content h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 5px;
}

.project-details-top__list-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.project-details-top__right .progress-levels {
  margin-top: 10px;
  margin-bottom: 11px;
}

.project-details-top__goal {
  font-size: 16px;
  color: var(--qrowd-primary);
  font-weight: 800;
  letter-spacing: var(--qrowd-letter-spacing);
}

.project-details-top__goal span {
  color: var(--qrowd-black);
}

.project-details-top__text {
  font-weight: 500;
  padding-top: 9px;
  padding-bottom: 18px;
}

.project-details-top__person {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details-top__person-img {
  position: relative;
  display: block;
  width: 47px;
}

.project-details-top__person-img img {
  width: 100%;
  border-radius: 50%;
}

.project-details-top__person-content {
  margin-left: 10px;
}

.project-details-top__person-content h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--qrowd-black);
  letter-spacing: 0;
}

.project-details-top__person-content h5 span {
  color: var(--qrowd-gray);
  font-weight: 500;
}

.project-details-top__person-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.project-details-top__money {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.project-details-top__money li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 16px;
  background-color: var(--qrowd-extra);
}

.project-details-top__money li+li {
  margin-left: 10px;
}

.project-details-top__quantity-btn-social {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details-top__quantity-btn-social .quantity-box {
  position: relative;
  width: 90px;
  border-radius: 0px;
  height: 60px;
}

.project-details-top__quantity-btn-social .quantity-box input {
  width: 90px;
  border-radius: 0px;
  height: 60px;
  border: 1px solid #e1eaea;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--qrowd-font);
  padding-left: 22px;
  outline: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--qrowd-gray);
}

.project-details-top__quantity-btn-social .quantity-box button {
  width: 29px;
  height: 29px;
  background-color: transparent;
  color: var(--qrowd-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid #e1eaea;
  border-top-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.project-details-top__quantity-btn-social .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid #e1eaea;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.project-details-top__btn-box {
  margin-left: 10px;
}

.project-details-top__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 54px;
}

.project-details-top__social a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--qrowd-black);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.project-details-top__social a+a {
  margin-left: 15px;
}

.project-details-top__social a:hover {
  color: var(--qrowd-base);
}


/*--------------------------------------------------------------
# Project Details Bottom
--------------------------------------------------------------*/
.project-details-bottom {
  position: relative;
  display: block;
}

.project-details__tab-box {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.project-details-bottom .tab-buttons {
  position: relative;
  display: block;
  margin-right: -5px;
  margin-left: -5px;
}

.project-details-bottom .tab-buttons .tab-btn {
  position: relative;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
  float: left;
}

.project-details-bottom .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 20px;
  color: var(--qrowd-white);
  background-color: var(--qrowd-primary);
  padding: 20px 50px 20px;
  font-weight: 800;
  letter-spacing: var(--qrowd-letter-spacing);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.project-details-bottom .tab-buttons .tab-btn.active-btn span {
  color: var(--qrowd-black);
}

.project-details-bottom .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--qrowd-extra);
  transition: all 0.3s ease;
  z-index: -1;
}

.project-details-bottom .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.project-details-bottom .tabs-content {
  position: relative;
  display: block;
  margin-top: 31px;
}

.project-details-bottom .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.project-details-bottom .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);

}

.project-details__tab-box-story {
  position: relative;
  display: block;
}

.project-details__tab-box-story-text {
  font-weight: 500;
}

.project-details__tab-box-story-points {
  position: relative;
  display: block;
  margin-top: 33px;
  margin-bottom: 53px;
}

.project-details__tab-box-story-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__tab-box-story-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  background-color: var(--qrowd-base);
  border-radius: 50%;
  color: var(--qrowd-white);
  font-size: 8px;
}

.project-details__tab-box-story-points li .text {
  margin-left: 10px;
}

.project-details__tab-box-story-points li .text p {
  font-weight: 700;
  color: var(--qrowd-black);
}

.project-details__tab-box-story-img-box-one {
  position: relative;
  display: block;
}

.project-details__tab-box-story-img-one-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-details__tab-box-story-img-one-single img {
  width: 100%;
}

.project-details__tab-box-story-text-2 {
  font-weight: 500;
  padding-top: 21px;
}

.project-details__tab-box-story-img-two {
  position: relative;
  display: block;
  margin-top: 51px;
}

.project-details__tab-box-story-img-two img {
  width: 100%;
}

.project-details__tab-box-story-text-3 {
  font-weight: 500;
  padding-top: 51px;
}

.project-details__faq {
  position: relative;
  display: block;
  padding-top: 9px;
}

.project-details__faq .faq-one-accrodion .accrodion {
  background-color: var(--qrowd-extra);
}

.project-details__faq .faq-one-accrodion .accrodion.active {
  background-color: rgb(255, 255, 255);
}

.project-details__updates {
  position: relative;
  display: block;
  padding-top: 4px;
}

.project-details__updates-single {
  position: relative;
  display: block;
  margin-bottom: 55px;
}

.project-details__updates-title-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.project-details__updates-sub-title {
  font-size: 14px;
  color: var(--qrowd-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 20px;
}

.project-details__updates-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
}

.project-details__updates-text-1 {
  font-weight: 500;
}

.project-details__updates-text-2 {
  font-weight: 500;
  padding-top: 32px;
  padding-bottom: 51px;
}

.project-details__updates-img {
  position: relative;
  display: block;
}

.project-details__updates-img img {
  width: 100%;
}

.project-details__updates-single.mrb-0 {
  margin-bottom: 0;
}

.project-details__reviews {
  position: relative;
  display: block;
  padding-top: 2px;
}

.project-details__review-one {
  position: relative;
  display: block;
}

.project-details__review-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 55px;
}

.project-details__review-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e1eaea;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.project-details__review-image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.project-details__review-image img {
  border-radius: 50%;
}

.project-details__review-content {
  position: relative;
  margin-left: 45px;
}

.project-details__review-content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--qrowd-black);
  margin-bottom: 26px;
  font-weight: 800;
}

.project-details__review-content p {
  font-size: 16px;
  font-weight: 500;
}

.project-details__review-star {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}

.project-details__review-star i {
  font-size: 16px;
  color: var(--qrowd-base);
}

.project-details__review-star i+i {
  margin-left: 4px;
}

.project-details__review-form {
  position: relative;
  display: block;
  margin-top: -7px;
}

.project-details__review-form-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 24px;
}

.project-details__review-form-rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.project-details__review-form-rate-box p {
  font-size: 18px;
  font-weight: 500;
}

.project-details__review-rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.project-details__review-rate i {
  font-size: 16px;
  color: var(--qrowd-base);
}

.project-details__review-rate i+i {
  margin-left: 4px;
}

.project-details__review-form-one .row {
  --bs-gutter-x: 20px;
}

.project-details__review-form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.project-details__review-form-input-box input[type="text"],
.project-details__review-form-input-box input[type="email"] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--qrowd-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--qrowd-gray);
  display: block;
  font-weight: 500;
}

.project-details__review-form-input-box textarea {
  font-size: 14px;
  color: var(--qrowd-gray);
  height: 190px;
  width: 100%;
  background-color: var(--qrowd-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.project-details__review-form-btn-box {
  position: relative;
  display: block;
}

.project-details__review-form-btn {
  border: none;
}

.project-details__review-form-input-box.text-message-box {
  height: 190px;
}

.project-details__right {
  position: relative;
  display: block;
}

.project-details__rewards {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 50px 60px 60px;
  border-radius: 2px;
}

.project-details__rewards-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 40px;
  margin-bottom: 14px;
}

.project-details__rewards-price {
  font-size: 18px;
  color: var(--qrowd-black);
  font-weight: 500;
}

.project-details__rewards-price span {
  font-weight: 800;
  color: var(--qrowd-base);
}

.project-details__rewards-img {
  position: relative;
  display: block;
  margin-top: 4px;
}

.project-details__rewards-img img {
  width: 100%;
}

.project-details__rewards-text-1 {
  font-weight: 500;
  padding-top: 21px;
  padding-bottom: 12px;
}

.project-details__rewards-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--qrowd-black);
}

.project-details__rewards-delivery {
  font-weight: 500;
}

.project-details__rewards-bottom {
  position: relative;
  display: block;
  margin-top: 28px;
  margin-bottom: 23px;
}

.project-details__rewards-bottom li {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__rewards-bottom li .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--qrowd-primary);
}

.project-details__rewards-bottom li .text {
  margin-left: 10px;
}

.project-details__rewards-bottom li .text p {
  font-size: 16px;
  font-weight: 800;
  color: var(--qrowd-black);
}

/*--------------------------------------------------------------
# Similar Project
--------------------------------------------------------------*/
.similar-project {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.similar-project:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 485px;
  background-color: var(--qrowd-extra);
  z-index: -1;
}

.similar-project .project-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.testimonials-page .testimonial-two__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-page__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--qrowd-primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
}

.gallery-page__single:hover .gallery-page__img:before {
  opacity: .90;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-page__img img {
  width: 100%;
}

.gallery-page__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-page__icon a {
  height: 97px;
  width: 97px;
  background-color: var(--qrowd-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--qrowd-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-page__icon a:hover {
  background-color: var(--qrowd-white);
  color: var(--qrowd-base);
}


/*--------------------------------------------------------------
# FAQ Search
--------------------------------------------------------------*/
.faq-search {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.faq-search__inner {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 120px 200px 120px;
}

.faq__search-form {
  position: relative;
}

.faq__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
  color: var(--qrowd-gray);
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  height: 84px;
  width: 100%;
  padding-right: 80px;
}

.faq__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--qrowd-base);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

/*--------------------------------------------------------------
# FAQ Page Feature
--------------------------------------------------------------*/
.faq-page-feature {
  position: relative;
  display: block;
  padding: 60px 0 30px;
}

.faq-page-feature .container {
  max-width: 1080px;
}

.faq-page-feature .row {
  --bs-gutter-x: 15px;
}

.faq-page-feature__single {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid #e1eaea;
  padding: 28px 0 24px;
  margin-bottom: 30px;
  transition: all 0.4s linear;
  z-index: 1;
}

.faq-page-feature__single:hover {
  border: 1px solid var(--qrowd-primary);
}

.faq-page-feature__single:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qrowd-primary);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.faq-page-feature__single:hover:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.faq-page-feature__icon {
  position: relative;
  display: inline-block;
}

.faq-page-feature__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--qrowd-primary);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.faq-page-feature__single:hover .faq-page-feature__icon span {
  transform: scale(.9);
  color: var(--qrowd-white);
}

.faq-page-feature__title {
  font-size: 18px;
  color: var(--qrowd-black);
  font-weight: 800;
  line-height: 25px;
  margin-top: 17px;
  transition: all 0.4s linear;
}

.faq-page-feature__single:hover .faq-page-feature__title {
  color: var(--qrowd-white);
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.faq-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.faq-page .faq-one-accrodion .accrodion {
  background-color: var(--qrowd-extra);
}

.faq-page .faq-one-accrodion .accrodion.active {
  background-color: rgb(255, 255, 255);
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 63px 0 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display: block;
  z-index: 2;
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 350px;
  line-height: 350px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--qrowd-primary);
  z-index: 2;
}

.error-page__title-2 {
  position: absolute;
  font-size: 350px;
  line-height: 350px;
  font-weight: 800;
  color: #eef4f4;
  top: 10px;
  left: 10px;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.error-page__tagline {
  font-size: 40px;
  line-height: 49px;
  font-weight: 800;
  color: var(--qrowd-black);
  margin-bottom: 14px;
}

.error-page__text {
  font-size: 20px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 47px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type="search"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--qrowd-extra);
  border: 0;
  font-size: 16px;
  color: var(--qrowd-gray);
  font-weight: 500;
  padding-left: 50px;
  padding-right: 75px;
  border-radius: 0;
}

.error-page__form button[type="submit"] {
  background-color: transparent;
  color: var(--qrowd-black);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}

/*--------------------------------------------------------------
# Partner Page
--------------------------------------------------------------*/
.partner-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.partner-page__single {
  position: relative;
  display: block;
  border: 1px solid #e1eaea;
  text-align: center;
  padding: 20px 20px 0;
  margin-bottom: 30px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.partner-page__single:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.partner-page__img {
  position: relative;
  display: block;
  background-color: var(--qrowd-extra);
  padding: 50px 0 50px;
}

.partner-page__img img {
  width: auto;
}

.partner-page__content {
  position: relative;
  display: block;
  padding: 24px 36px 29px;
}

.partner-page__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 30px;
}

.partner-page__text {
  font-weight: 500;
  padding-top: 18px;
  padding-bottom: 19px;
}

.partner-page__btn-box {
  position: relative;
  display: block;
}

.partner-page__btn-box a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: var(--qrowd-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.partner-page__single:hover .partner-page__btn-box a {
  color: var(--qrowd-base);
}

.partner-page__btn-box a:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -3px;
  right: -3px;
  height: 6px;
  background-color: rgba(254, 144, 67, .20);
  z-index: -1;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 80px 0 74px;
}

.about-two__left {
  position: relative;
  display: block;
}

.about-two__left .section-title {
  margin-bottom: 0px;
}

.about-two__text-1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--qrowd-primary);
  letter-spacing: var(--qrowd-letter-spacing);
  line-height: 30px;
}

.about-two__text-2 {
  font-weight: 500;
  padding-top: 10px;
 
}

.about-two__progress {
  position: relative;
  display: block;
  width: 100%;
}

.about-two__progress-single {
  position: relative;
  display: block;
}

.about-two__progress-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  color: var(--qrowd-black);
  margin-bottom: 7px;
}

.about-two__progress .bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--qrowd-extra);
  border-radius: 0px;
  margin-bottom: 0px;
}

.about-two__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 6px;
  border-radius: 0px;
  background-color: var(--qrowd-base);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.about-two__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 14px;
  color: var(--qrowd-gray);
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-two__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.about-two__left .about-one__person {
  margin-top: 50px;
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 100px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img:before {
    content: "";
    position: absolute;
    top: 8px;
    left: -30px;
    height: 95px;
    width: 30px;
    background-color: #f34220;
}

.about-two__img:after {
 content: "";
    position: absolute;
    top: 250px;
    right: -25px;
    height: 95px;
    width: 27px;
    background-color: #f34220;}
.about-two__img img {
  width: 100%;
}

.about-two__img-two {
  position: absolute;
  bottom: -100px;
  left: -170px;
}

.about-two__img-two img {
  width: auto;
}

/*--------------------------------------------------------------
# Changing Two
--------------------------------------------------------------*/
.changing-two {
  padding-bottom: 120px;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  padding: 120px 0 120px;
  background-color: var(--qrowd-extra);
}

.testimonial-three .testimonial-two-bg {
  opacity: 0.10;
}

.testimonial-three .section-title__title {
  color: var(--qrowd-black);
}

.testimonial-three .testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  background-color: rgba(var(--qrowd-white-rgb), 1);
}

.testimonial-three .testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  background-color: rgba(var(--qrowd-white-rgb), 1);
}

.testimonial-three .testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-three .testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: rgba(var(--qrowd-base-rgb), 1);
  color: var(--qrowd-white);
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 16px;
  font-weight: 500;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100% !important;

}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--qrowd-extra) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--qrowd-gray) !important;
  font-size: 14px;
  line-height: 60px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--qrowd-gray);
}

.product__all {
  position: relative;
  display: block;
}

.product__all-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.product__all-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.product__all-img:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--qrowd-black-rgb), .50);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  z-index: 1;
}

.product__all-single:hover .product__all-img:before {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.product__all-img img {
  width: 100%;
  transition: all 500ms ease;
}

.product__all-single:hover .product__all-img img {
  transform: scale(1.05);
}

.product__all-btn-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg) scale(0);
  transition: all 600ms ease;
  z-index: 2;
}

.product__all-single:hover .product__all-btn-box {
  transform: rotate(0deg) scale(1);
  transition-delay: 400ms;
}

.product__all-btn {
  font-size: 12px;
  font-weight: 800;
  padding: 5px 20px 5px;
}

.product__all-content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 16px;
}

.product__all-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 22px;
}

.product__all-title a {
  color: var(--qrowd-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.product__all-title a:hover {
  color: var(--qrowd-base);
}

.product__all-price {
  font-size: 14px;
  font-weight: 600;
}

.product__all-review {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.product__all-review i {
  font-size: 15px;
  color: var(--qrowd-base);
}

.product__all-review i+i {
  margin-left: 5px;
}


.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single+.product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  margin: 0;
  margin-bottom: 22px;
}

.shop-search {
  position: relative;
  display: block;
}

.shop-search form {
  border-radius: 0px;
  position: relative;
  background-color: var(--qrowd-base);
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--qrowd-primary);
  border-radius: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
  color: var(--qrowd-white);
  font-family: var(--qrowd-font);
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}



.product__price-ranger {
  position: relative;
  padding: 28px 30px 30px;
  margin: 0;
  border: 1px solid #e1eaea;
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--qrowd-extra);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--qrowd-primary);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--qrowd-primary);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  background: var(--qrowd-base);
  float: right;
  text-align: center;
  border: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-top: 0;
  text-transform: capitalize;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--qrowd-gray);
  font-size: 14px;
  font-weight: 600;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--qrowd-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  left: -2px;
}


.shop-category {
  position: relative;
  display: block;
  border: 1px solid #e1eaea;
  padding: 28px 15px 15px;
}

.shop-category .product__sidebar-title {
  margin-left: 15px;
  margin-bottom: 12px;
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--qrowd-gray);
  margin-bottom: 5px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--qrowd-gray);
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 9px 15px 9px;
}

.shop-category ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--qrowd-extra);
  border-radius: 0px;
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-category ul li a:hover:before {
  transform: scaleY(1.0);
}

.shop-category ul li:hover a,
.shop-category ul li.active a {
  color: var(--qrowd-black);
  background: var(--qrowd-extra);
  text-shadow: 0 0 1px currentColor;
}

.shop-category ul li a:after {
  position: absolute;
  right: 15px;
  top: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  opacity: 1;
  font-size: 11px;
  color: var(--qrowd-gray);
  line-height: 30px;
  font-weight: 900;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-category ul li a:hover:after,
.shop-category ul li.active a:after {
  color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Product Details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 56px;
}

.product-details__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-details__img img {
  width: 100%;
}


.product-details__top {
  position: relative;
  display: block;
  margin-top: -10px;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 800;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--qrowd-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 21px;
  padding-bottom: 30px;
  margin-bottom: 21px;
  border-bottom: 1px solid #e1eaea;
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--qrowd-base);
}

.product-details__reveiw i+i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--qrowd-gray);
  margin-left: 18px;
  font-weight: 500;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
  font-weight: 500;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  font-weight: 500;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--qrowd-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 800;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 0px;
  height: 50px;
  border: 1px solid #e1eaea;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--qrowd-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--qrowd-gray);
}

.product-details__quantity .quantity-box button {
  width: 29px;
  height: 29px;
  background-color: transparent;
  color: var(--qrowd-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid #e1eaea;
  border-top-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid #e1eaea;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.product-details__buttons {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-1 .thm-btn {
  background-color: var(--qrowd-black);
}

.product-details__buttons-1 .thm-btn::before {
  background-color: var(--qrowd-base);
}

.product-details__buttons-2 {
  position: relative;
  display: block;
  margin-left: 10px;
}

.product-details__social {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--qrowd-black);
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qrowd-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--qrowd-extra);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a+a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--qrowd-white);
  background-color: var(--qrowd-base);
}


/*--------------------------------------------------------------
# Product Description
--------------------------------------------------------------*/
.product-description {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 50px;
}

.product-description__title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 27px;
}

.product-description__text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  font-weight: 500;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--qrowd-black);
  margin: 0;
  font-weight: 600;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--qrowd-primary);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
}

.product-description__tex2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Review One
--------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
  border-top: 1px solid #e1eaea;
  padding-top: 56px;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
}


.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1eaea;
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 800;
}

.review-one__content-top .info h2 span {
  color: var(--qrowd-primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--qrowd-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Review Form One
--------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0 120px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 27px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 500;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--qrowd-base);
}

.review-form-one__rate i+i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 14px;
  color: var(--qrowd-gray);
  height: 190px;
  width: 100%;
  background-color: var(--qrowd-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.review-form-one__input-box.text-message-box {
  height: 190px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--qrowd-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--qrowd-gray);
  display: block;
  font-weight: 500;
}

.review-form-one__btn {
  border: none;
}

/*--------------------------------------------------------------
# Cart Page
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--qrowd-white);
  padding: 113px 0px 120px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}

.cart-table {
  margin-bottom: 60px;
}

.cart-table thead th {
  color: var(--qrowd-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 800;
  padding: 0;
  border: none;
  padding-bottom: 22px;
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid #e1eaea;
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--qrowd-gray);
  vertical-align: middle;
  border-top: 1px solid #e1eaea;
  border-bottom: 1px solid #e1eaea;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 35px;
}

.cart-table h3 {
  color: var(--qrowd-black);
  font-size: 20px;
  margin-left: 36px;
  font-weight: 800;
  margin: 0;
}

.cart-table h3 a {
  color: var(--qrowd-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--qrowd-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 60px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 0px;
  height: 60px;
  border: 1px solid #e1eaea;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--qrowd-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--qrowd-gray);
  font-weight: 500;
}

.cart-table .quantity-box button {
  width: 29px;
  height: 29px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid #e1eaea;
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid #e1eaea;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--qrowd-black);
  font-size: 22px;
}

.cart-cupon__form {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.cart-cupon__input {
  width: 100%;
  max-width: 375px;
  border-radius: 0;
  background-color: var(--qrowd-extra);
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 20px;
  font-family: var(--qrowd-font);
  font-size: 14px;
  color: var(--qrowd-gray);
  height: 60px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  font-weight: 500;
}

.cart-cupon__form ::placeholder {
  color: var(--qrowd-gray);
  opacity: 1;
}

.cart-cupon__form button {
  top: -1px;
  border: none;
  outline: none;
}


.cart-total {
  position: relative;
  display: block;
  margin-bottom: 22px;
  margin-top: -9px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--qrowd-gray);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li+li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--qrowd-black);
  font-size: 20px;
  margin-right: 70px;
  font-weight: 800;
  width: 135px;
  text-align: right;
  letter-spacing: var(--qrowd-letter-spacing);
}

.cart-total li:nth-child(2) span:first-child {
  position: relative;
  right: 6px;
}

.cart-total-amount {
  color: var(--qrowd-primary);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
}

.cart-page__buttons-1 .thm-btn {
  background: var(--qrowd-black);
}

.cart-page__buttons-1 .thm-btn::before {
  background: var(--qrowd-base);
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 110px 0 120px;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.billing_title span {
  color: var(--qrowd-primary);
  font-weight: 600;
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 800;
  margin-top: 17px;
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}


.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--qrowd-extra);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  color: var(--qrowd-gray);
  display: block;
  font-weight: 500;
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: -7px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--qrowd-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  font-family: var(--qrowd-font);
}

.billing_details .checked-box input[type="checkbox"] {
  display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--qrowd-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
  border-color: #ffffff;
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.ship_different_address_title {
  margin-top: 47px;
}

.ship_different_address_title h2 span::before {
  position: relative;
  display: inline-block;
  color: var(--qrowd-base);
  font-size: 19px;
  top: -2px;
  left: 15px;
}

.ship_different_address_form .ship_different_input {
  position: relative;
  display: block;
  height: 120px;
}

.ship_different_address_form .ship_different_input textarea {
  font-size: 14px;
  color: var(--qrowd-gray);
  height: 120px;
  width: 100%;
  background-color: var(--qrowd-extra);
  padding: 15px 30px 20px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  border-radius: 0;
  font-weight: 500;
}

.billing_details_form .select-box .nice-select {
  background-color: var(--qrowd-extra);
  border-radius: 0;
  color: var(--qrowd-gray);
  font-size: 14px;
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.your_order {
  position: relative;
  display: block;
  padding-top: 36px;
}

.your_order h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
  margin-bottom: 56px;
}

.order_table_box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e1eaea;
  padding-bottom: 24px;
}

.order_table_detail {
  position: relative;
  width: 100%;
}

.order_table_head {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e1eaea;
  border-top: 1px solid #e1eaea;
}

.order_table_head th {
  font-size: 20px;
  color: var(--qrowd-black);
  font-weight: 800;
  margin: 0;
  padding: 23px 0 22px;
}

.order_table_head th.right {
  float: right;
}

.order_table_detail tbody td {
  padding: 29px 0 2px;
}

.order_table_detail tbody td.pro__title {
  color: var(--qrowd-gray);
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
}

.order_table_detail tbody td.pro__price {
  color: var(--qrowd-gray);
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.checkout__payment {
  background-color: var(--qrowd-extra);
  border-radius: 0;
  padding: 49px 50px 18px;
  margin-bottom: 20px;
}

.checkout__payment__item+.checkout__payment__item {
  margin-top: 41px;
}


.checkout__payment__title {
  display: flex;
  color: var(--qrowd-black);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  align-items: center;
  margin-bottom: 27px;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid #e1eaea;
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__title img {
  margin-left: 15px;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--qrowd-base);
  border-color: var(--qrowd-base);
  content: '\f00c';
}

.checkout__payment__content {
  font-size: 16px;
  line-height: 30px;
  color: var(--qrowd-gray);
  font-weight: 500;
}

/*--------------------------------------------------------------
# News Carousel Page
--------------------------------------------------------------*/
.news-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.news-carousel-page .news-one__single {
  margin-bottom: 0;
}

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--qrowd-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--qrowd-primary);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

/*--------------------------------------------------------------
# Testimonials Carousel Page
--------------------------------------------------------------*/
.testimonials-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

/*--------------------------------------------------------------
# Project Carousel Page
--------------------------------------------------------------*/
.project-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

/*--------------------------------------------------------------
# Gallery Carousel Page
--------------------------------------------------------------*/
.gallery-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.gallery-carousel-page .gallery-page__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Events Carousel Page
--------------------------------------------------------------*/
.events-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.events-carousel-page .events-page__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/

body.boxed-wrapper {
  background-color: var(--qrowd-extra);
}

.boxed-wrapper .page-wrapper {
  min-width: inherit;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.boxed-wrapper .main-menu__call {
  display: none;
}

.boxed-wrapper .main-menu .main-menu__list>li+li {
  margin-left: 15px;
}
.flag_icon{
    height: 25px;
    width: auto !important;
    position: absolute;
    right: -15px;
    bottom: 11px;
}









/******************* 


Clients**********

*************/

.Clientsecs {
    padding: 60px 0 60px;
	
	position:relative;
	display:block;
    
}


.clients-grid,
.testimonials-grid {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	list-style: none;
	padding-left: 0px;
	overflow: hidden;
	border-left: 1px dashed #2e3c6d;
    border-top: 1px dashed #2e3c6d;
}

.clients-grid .grid-item,
.testimonials-grid .grid-item {
	position: relative;
	padding: 20px 0;
	-webkit-backface-visibility: hidden;
}

.clients-grid .grid-item a { opacity: 1; }

body:not(.device-touch) .clients-grid .grid-item a {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	backface-visibility: hidden;
}

.clients-grid .grid-item a:hover { opacity: 1; }

.clients-grid .grid-item a,
.clients-grid .grid-item img {
	display: block;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}

.clients-grid .grid-item a img { width: 100%; }

.clients-grid .grid-item::before,
.clients-grid .grid-item::after,
.testimonials-grid .grid-item::before,
.testimonials-grid .grid-item::after {
	content: '';
	position: absolute;
}

.clients-grid .grid-item::before,
.testimonials-grid .grid-item::before {
	height: 100%;
	top: 0;
	right: 0px;
	border-left: 1px dashed #2e3c6d;
}

.clients-grid .grid-item::after,
.testimonials-grid .grid-item::after {
	width: 100%;
	height: 0;
	top: auto;
	left: 0;
	bottom: 0px;
	border-bottom: 1px dashed #2e3c6d;
}
@media (min-width: 768px){
.grid-md-6 > .grid-item {
    width: 25%;
}
}

@media (min-width: 576px){
.grid-sm-3 > .grid-item {
    width: 20%;
}
}


/***************


Blog Detail



*************/

/******************************************/
/****************************************************************/

.Blog-detailsec{
	position:relative;
	display:block;
	width:100%;
	padding:60px 0px 60px;
}
.blog-sidebar h3{ 
	
}
.search3-bg{

    margin-bottom: 30px;
    padding: 25px 15px 36px;
    border-radius: 8px;
    margin-top:70px;
   background: #f8f5f0;

}
.search3-bg .defaultsearch {
    background: #f7f7f7;
    position: relative;
}

.search3-bg .defaultsearch input {
        border: 0 none;
    height: 54px;
    position: relative;
    width: 100%;
    padding-left: 15px;
    background: #fff;
    font-weight: 500;
    border-radius: 5px;
	
	outline:none;
	text-decoration:none;
}

.defaultsearch button {
    border: 0 none;
    font-size: 16px;
    padding: 13px 20px;
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: none;
    background: #fff;
    color: #2e3c6d;
	border-radius: 0px 5px 5px 0px;
}


.blog-left-sidediv {
       margin-bottom: 30px;
    padding: 25px 15px 25px;
    border-radius: 8px;
    background: #f8f5f0;
    max-height:600px;overflow-y: scroll;
}

.blgdes{
	position:relative;
	display:block;
	    margin-right: 20px;

}


.blgdes-head{
  text-align: center;
		
	}
	
	.blgdes-head h2{
		    margin: 0;
    color: #1e1e28;
    font-size: 36px;
    line-height: 60px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-top: 0;
    margin-bottom: 11px;
	}
	.min-date-sec {
       margin: 0px 0 15px;
    width: 100%;
    padding: 10px 25px;
    display: inline-block;
    background: #2e3c6d;
	border-radius: 5px;
}
.min-date-sec .user-date {
    margin-top: 0px;
    float: left;
    border: none;
    width: auto;
    margin-bottom: 0px;
}
.min-date-sec .user-date .admin-left {
    margin-right: 3em;
}
.admin-left {
   font-size: 15px;
    color: #fff;
    line-height: 48px;
    font-weight: 600;
}
.admin-left i{
	padding-right:4px;
}
.date-right {
    float: right;
    font-size: 15px;
    color: #fff;
    line-height: 48px;
	font-weight: 600;
}
.date-right i{
	padding-right:4px;
}
.social-right {
    float: right;
    margin-right: 0;
    margin-top: 8px;
	 font-size: 15px;
    color: #fff;
   
    font-weight: 600;
}
	
.social-right i{
	padding-right:4px;
}






.blgdes img{
	width:100%;
	    margin-bottom: 25px;
}
.blogder{

    padding: 38px 35px 15px;
    background: #f8f5f0;
    border-radius: 8px;
	
	}
	
.blogder h2{
		font-size: 25px;
    line-height: 36px;
   
    font-weight: 800;
    color: #333333;
    margin-bottom: 13px;
	}
	.blogder{
		margin-bottom:10px;
	}
	.blogder i{
		color: #005de0;
	}
	.blogder span{
		    
    font-weight: 500;
    color: #7a7a81;
    padding-left: 9px;
    font-size: 16px;
    background-color: transparent !important;
	}
	.blogder p{
		    text-align: justify;
    font-size: 16px;
    line-height: 30px;
   
    font-weight: 500;
   
    margin-top: 0px;
    margin-bottom: 15px;
    background-color: transparent !important;
	}
	.blogder h6{
		font-size: 20px;
    line-height: 36px;
    font-weight: 700;
    color: #1e3737;
    margin-bottom: 13px;
	}
	
	
	.rpwe-block ul{list-style:none!important;
margin-left:0!important;
padding-left:0!important;
}
.rpwe-block li{
	
	margin-bottom:10px;
	padding-bottom:10px;list-style-type: none;
	}
	
	
	.bu-title{
		font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    color: #2e3c6d;
    padding: 5px 13px;
    margin-bottom: 15px;
    text-decoration: underline;
   
	}
	
	.rpwe-block a{
		display:inline!important;
		text-decoration:none;
		
		}
		.rpwe-block h3{
			background: none!important;
    clear: none;
    margin-bottom: 0!important;
    margin-top: 0!important;
    font-weight: 500;
    font-size: 14px!important;
    line-height: 1.5em;
    color: #1e3737;
			
			}
			.rpwe-block h3 a{
				 color: #1e3737;
			}
			.rpwe-block h3 a:hover{
				 color: #2e3c6d!important;
			}
			.rpwe-thumb{border:1px solid #EEE!important;box-shadow:none!important;margin:2px 10px 2px 0;padding:3px!important;}
			.rpwe-summary{font-size:12px;}.rpwe-time{color:#bbb;font-size:11px;}.rpwe-comment{color:#bbb;font-size:11px;padding-left:5px;}
			.rpwe-alignleft{display:inline;float:left;width: 68px;
    height: 55px;}
			.rpwe-alignright{display:inline;float:right;}
			.rpwe-aligncenter{display:block;margin-left: auto;margin-right: auto;}
			.rpwe-clearfix:before,.rpwe-clearfix:after{content:"";display:table !important;}
			.rpwe-clearfix:after{clear:both;}
			.rpwe-clearfix{zoom:1;}
			.mudtae{  font-size: 11px;
    color: #000;}
	.mudtae i{  padding-right:3px;}
	
	/****************************
	
	Contact Page
	
	
	*******************/
	.Getintouchsec{
		position:relative;
		display:block;
		width:100%;
		padding:60px 0px 60px;
	}
	
	.Getintouchsec:before{
		content: "";
    position: absolute;
    width: 23%;
    background-color: #2e3c6d70;
    right: 0;
    top: 0;
    bottom: 0;
	}
	
	.Getintouchsec .map {
   width: 100%;
    display: block;
    border: 3px solid #2e3c6d;
    position: relative;
    margin-bottom: 0px;
        box-shadow: 0 0 14px 0px grey;
}

.Getintouchsec .map iframe{
	margin-bottom: -9px;
}


.contactform{
padding: 30px 30px;
    margin-bottom: 0px;
    background-color: #F4F7FC;
    margin-right: 20px;
    height:508px;
}

.apply{
padding: 30px 30px;
margin-bottom: 0px; 
border: solid 2px #808080;
border-radius: 15px;
   
  }

.apply .form-group {
    margin-bottom: 20px;
}
.apply .form-group label{
    margin-bottom: 5px;
  color:#1e1e28;
  font-size:16px;
  font-weight:600;
}
.apply .form-group .form-control{
  border: 1px solid #eee!important;
  padding-left: 15px;
  padding-left: 15px;
   font-weight:500;
    color: #6e7a7a;
    font-size: 16px;
    box-shadow: unset!important;
    transition: .5s;
    background-color: #e9ecef!important;
}

.apply .form-group input{
  height: 55px;
}
.apply .form-group textarea{
  height: 110px;
}



.contactform .section-title {
    position: relative;
    display: block;
    margin-top: 0;
    margin-bottom: 25px;
}
.contactform .form-group {
    margin-bottom: 20px;
}
.contactform .form-group label{
    margin-bottom: 5px;
	color:#1e1e28;
	font-size:16px;
	font-weight:600;
}
.contactform .form-group .form-control{
	border: 1px solid #eee!important;
	padding-left: 15px;
	padding-left: 15px;
   font-weight:500;
    color: #6e7a7a;
    font-size: 16px;
    box-shadow: unset!important;
    transition: .5s;
    background-color: #fff!important;
}

.contactform .form-group input{
	height: 55px;
}
.contactform .form-group textarea{
	height: 110px;
}
.consdefault-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--qrowd-base);
    color: var(--qrowd-white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
 padding: 12px 27px 12px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
    border: unset;
}
.consdefault-btn:hover {
	color:#fff;
}
.consdefault-btn:hover:before {
    height: 380%;
}

.consdefault-btn::before {
    position: absolute;
    content: '';
    background-color: var(--qrowd-black);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}
.galtitle{
  text-align: center;
    font-size: 18px;
    padding: 10px;
    font-weight: 700;

}

/********************/



.Contactinfo-sec{
	position:relative;
	display:block;
	width:100%;
	padding:60px 0px 60px;
}

.contact-info {
	background:#a3a9bf;  
	-webkit-box-shadow:3px 5px 35px rgba(86, 68, 169, .1);
	box-shadow:3px 5px 35px rgba(86, 68, 169, .1);
	border-radius:5px;
	padding:20px 40px 5px;	
}
.contact-info .section-title {
    position: relative;
    display: block;
    margin-top: 0;
    margin-bottom: 30px;
}
.contact-info h3 {
	font-size:30px;
	color:#2d373c;
	font-weight:700;
	display:inline-block;
	position:relative;
	padding-bottom:7px
}
.contact-info h3::before {
position:absolute;
content:"";
bottom:0;
left:0;
width:80px;
height:3px;
background:-webkit-gradient(linear, left top, right top, color-stop(46.35%, #FF4838), to(rgba(255, 255, 255, 0)));
background:linear-gradient(90deg, #FF4838 46.35%, rgba(255, 255, 255, 0) 100%);
border-radius:5px
}
.contact-info ul{
	padding-left:0px;
}
.contact-info ul li {
    background: #fff;
    -webkit-box-shadow: 3px 5px 35px rgb(86 68 169 / 10%);
    box-shadow: 3px 5px 35px rgb(86 68 169 / 10%);
    border-radius: 5px;
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 5px 35px 5px 5px;
    border: 1px solid #eee;
    max-width: 450px;
    -webkit-transition: all .4s;
    transition: all .4s;
    list-style: none;
    text-align: center;
    position: relative;
	color:#6e7a7a;min-height: 150px;
}

.contact-info ul li span{
	text-align: center;
    left: 13px;
    top: 18px;
    color: #2e3c6d;
    font-weight: 600;
  background-color: transparent !important;
}
.contact-info ul li:hover {
	background:var(--qrowd-base)!important
}
.contact-info ul li:hover span{
	color:#fff!important
}
.contact-info ul li:hover h6, .contact-info ul li:hover a, .contact-info ul li:hover p {
	color:#fff
}
.contact-info ul li h6 {
	font-weight:700;
	font-size:18px;
	color:#1e1e28;
-webkit-transition:all .3s;
transition:all .3s
}
.contact-info ul li p {
	font-weight:500;
	font-size:16px;
	color:#6e7a7a;
	display:block;
	margin-top:8px;
	
-webkit-transition:all .3s;
transition:all .3s;
	
}
.contact-info ul li a {
	font-weight:500;
	font-size:16px;
	color:var(--qrowd-base);
	display:inline-block;
	margin-top:4px;
	
-webkit-transition:all .3s;
transition:all .3s;
	
}


/****************


services


****************/

.Servicemainsec{
	position:relative;
	display:block;width:100%;
	padding:60px 0px 20px;
}

.sermain-desc{
	position:relative;
	margin-bottom:20px;
	display:block;
}

.sermain-desc h3{
	margin: 0;
    color: var(--qrowd-black);
    font-size: 30px;
    line-height: 39px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-top: 0;
    margin-bottom: 15px;
}

.sermain-desc p{
	        font-weight: 500;
    padding-top: 0px;
    padding-bottom: 15px;
    line-height: 32px;
}
.service2 {
    position: relative;
    margin-bottom: 50px !important;
}
.service2 .col-lg-7{
	    flex: 0 0 auto;
    width: 56%;
}

.service2 .col-lg-5{
	 flex: 0 0 auto;
    width: 44%;
}
.service2 figure {
    
}
.service2 figure img{
	width:100%
}
.service2 figure .img-fluid {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.service2 .caption {
    
    
    padding: 30px 30px;
    
	box-shadow: 3px 5px 35px rgb(86 68 169 / 10%);
    background: #fff;
	    margin-right: -170px;
		z-index: 0;
    position: relative;
	border-radius: 5px;
}
.service2.left .caption {
        margin-left: -170px;
    margin-right: 0;
   
}

.service2.left figure {
    margin-left: 0;
    margin-right: auto;
}
.service2 .caption h3 {
  margin: 0;
    color: var(--qrowd-black);
    font-size: 30px;
    line-height: 39px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-top: 0;
    margin-bottom: 15px;
}

.service2 .caption p {
	font-weight: 500;
    padding-top: 0px;
    padding-bottom: 15px;
	
}



.pri-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--qrowd-base);
    color: var(--qrowd-white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
 padding: 10px 20px 10px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
    border: unset;
}
.pri-button:hover {
	color:#fff;
}
.pri-button:hover:before {
    height: 380%;
}

.pri-button::before {
    position: absolute;
    content: '';
    background-color: var(--qrowd-black);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}


/*************         developer Style     ****************/
/***

====================================================================
	About
====================================================================

***/

.solar-one {
	position: relative;
	overflow: hidden;
	padding: 90px 0px 50px;
	background-color: #f8fafe;
}

.solar-one__image-column {
	position: relative;
	margin-bottom:30px;
}

.solar-one__image-inner-column {
	position: relative;
	padding-right: 25px;
}

.solar-one__image {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	display: inline-block;
	margin: 0px;
}

.solar-one__image-two {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	display: inline-block;
	margin-top: 50px;
}

.solar-one__image-three {
	position: absolute;
	right: 25px;
	bottom: 40px;
	border-radius: 3px;
	overflow: hidden;
	display: inline-block;
	margin-top: 50px;
}

.solar-one__shape-one {
	position: absolute;
	left: -55px;
	top: 0px;
	width: 64px;
	height: 98px;
	background-repeat: no-repeat;
	-webkit-animation-name: float-bob-x;
	animation-name: float-bob-x;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.solar-one__shape-two {
	position: absolute;
	right: 70px;
	top: 20px;
	width: 132px;
	height: 87px;
	z-index: 1;
	background-repeat: no-repeat;
	-webkit-animation-name: float-bob-y;
	animation-name: float-bob-y;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.solar-one__color {
	position: absolute;
	left: -200px;
	bottom: 50px;
	width: 470px;
	height: 470px;
	border-radius: 50%;
	opacity: 0.10;
	background-color: #dae6f6;
	-webkit-animation-name: float-bob-x;
	animation-name: float-bob-x;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.solar-two__color {
	position: absolute;
	right: -280px;
	top: 20px;
	width: 470px;
	height: 470px;
	border-radius: 50%;
	background-color: #f2f5fa;
	-webkit-animation-name: float-bob-x;
	animation-name: float-bob-x;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.solar-three__color {
	position: absolute;
	left: 30px;
	top: 70px;
	width: 420px;
	height: 500px;
	background-color: #dae6f6;
}

.solar-one__shape-three {
	position: absolute;
	right: 5%;
	top: 10%;
	width: 77px;
	height: 75px;
	background-repeat: no-repeat;
}

.solar-one__shape-four {
	position: absolute;
	left: 5%;
	top: 40%;
	width: 70px;
	height: 70px;
	background-repeat: no-repeat;
	-webkit-animation-name: squareMover;
	animation-name: squareMover;
	-webkit-animation-duration: 10s;
	animation-duration: 10s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-perspective: 100px;
	perspective: 100px;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.solar-one__content-column {
	position: relative;
	margin-bottom: var(--margin-bottom-30);
}

.solar-one__content-inner-column {
	position: relative;
	padding-left: var(--padding-left-30);
}

.solar-one__text {
	position: relative;
	line-height: 34px;
	font-size: var(--font-18);
	color: var(--solapa-eight-color);
	padding-right: var(--padding-right-50);
	margin-bottom: var(--margin-bottom-20);
}

.solar-one__text-two {
	position: relative;
	line-height: 34px;
	opacity: 0.80;
	font-size: var(--font-18);
	color: var(--solapa-eight-color);
	margin-bottom: var(--margin-bottom-40);
	padding-right: var(--padding-right-80);
	padding-bottom: var(--padding-bottom-30);
	border-bottom: 1px solid var(--solapa-twentythree-color);
}







.enerygy-one__client-box {
	position: relative;
	margin-right: -10px;
}

.enerygy-one__client-box {
	    position: relative;
    padding: 54px 36px;
    border-radius: 6px;
    font-weight: 600;
    line-height: 32px;
    color: #fff;
    font-size: 21px;
    background-color: #f3ae49;

}

.enerygy-one__client-box span {
	position: relative;
	color: #2c3d69;
}

.enerygy-one__client-box::before {
	position: absolute;
	content: '';
	left: 35px;
	top: 30px;
	width: 10px;
	height: 10px;
	background-color: #fff;
}

.enerygy-one__client-box::after {
	position: absolute;
	content: '';
	right: 45px;
	bottom: 40px;
	width: 10px;
	height: 10px;
	background-color: #fff;
}
/* Phone Box */

.energy-one__phone-box {
	position: relative;
	margin-left: 5px;
	margin-top: 40px;
}

.energy-one__phone-box.alternate {
	margin: 0px;
}

.energy-one__phone-inner {
	    position: relative;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    padding-top: 5px;
    padding-left: 80px;
	
}

.energy-one__phone-icon {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 68px;
	height: 68px;
	line-height: 68px;
	border-radius: 50px;
	text-align: center;
	display: inline-block;
	font-size: 25px;
	color: #080d1c;
    background-color: #eaedf3;
}

.energy-one__phone-number {
	position: relative;
	font-weight: 700;
	display: inline-block;
	font-size: 16px;
	margin-top: 0px;
	color: #2e3c6d;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;

}

.energy-one__phone-number:hover {
	color: #2e3c6d;
}

.energy-one__btn-box {
	position: relative;
    margin-left: 5px;
    margin-top: 24px;
}
/***

====================================================================
	Service Two
====================================================================

***/

/***

====================================================================
	Service Three
====================================================================

***/

.service-three {
	position: relative;
	padding: 80px 0px 180px;
	background-color: var(--solapa-fourtytwo-color);
}

.service-three.style-two {
	padding-top: 5px;
	padding-bottom: 10px;
	background-color: #fbb02d;
}

.service-three__single {
	position: relative;
	margin-bottom: 30px;
}

.service-three__single-inner {
	position: relative;
	overflow: hidden;
}

.service-three__image {
	position: relative;
	overflow: hidden;
	background-color: #fbb02d;
}

.service-three__image img {
	position: relative;
	width: 100%;
	display: block;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.service-three__single-inner:hover .service-three__image img {
	opacity: 0.70;
	transform: scale(1.06, 1.06);
}

.service-three__content {
	position: relative;
	padding: 35px 35px 50px;
	background-color: #fff;
}

.service-three__content:before {
	position: absolute;
	content: '';
	right: -50px;
	bottom: -50px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: var(--solapa-fourtythree-color);
}

.service-three__content-upper {
	position: relative;
	padding-left: var(--padding-left-65);
}

.service-three__icon {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	line-height: 1em;
	font-size: var(--font-50);
	color: var(--solapa-black);
}

.service-three__icon::after {
	position: absolute;
	content: '';
	left: -10px;
	top: 10px;
	z-index: -1;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--solapa-sixteen-color);
}

.service-three__title {
	position: relative;
	font-weight: 700;
	font-size: var(--font-36);
	padding-top: var(--padding-top-10);
}

.service-three__title a:hover {
	color: var(--solapa-nineteen-color);
}

.service-three__title a {
	position: relative;
	color: var(--solapa-third-color);
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-three__text {
	position: relative;
	line-height: 34px;
	opacity: 0.80;
	font-size: var(--font-18);
	color: var(--solapa-third-color);
	margin-top: var(--margin-top-30);
	margin-bottom: var(--margin-bottom-25);
}

.service-three__read-more {
	position: relative;
	font-weight: 500;
	font-size: var(--font-16);
	color: var(--solapa-third-color);
	font-family: var(--solapa-catamaran-font);
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-three__arrow {
	position: relative;
	width: 42px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	display: inline-block;
	color: var(--solapa-white);
	border-radius: 3px 50px 50px 3px;
	margin-left: var(--margin-left-10);
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
	background-color: var(--solapa-nineteen-color);
}

.service-three__read-more:hover {
	color: var(--solapa-nineteen-color);
}

.service-three__read-more:hover .service-three__arrow {
	background-color: var(--solapa-base);
	color:#fff;
}















/* 6. Services */

.service-box-3{
	position:relative;
	display:block;
	width:100%;
		margin-bottom: 25px;
	
}
.service-thumb {
	display: block;
	text-align: center;


	overflow: hidden;
}
.service-thumb img{
  height:250px !important;
}
.service-thumb i {
	font-size: 55px;
	height: 120px;
	width: 120px;
	display: inline-block;
	background: #FFF9FB;
	border-radius: 50%;
	line-height: 119px;
	color: #223645;
}

.service-box-3 .service-content-box {
	padding: 0 15px;
	margin-top: -50px;
	position: relative;
	transition: .3s;
}
.service-box-3 .service-content {
	    padding: 27px 20px 20px;
    background: #fff;
    transition: .4s;
	min-height: 189px;
}
.service-box-3:hover .service-content-box {
	margin-top: -60px;
}
.service-box-3:hover .service-content {
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 16px 32px 0px rgba(181, 179, 255, 0.2);
}

.service-box-3 .service-thumb img {
	transition: .6s;
	width:100%;
}
.service-box-3:hover .service-thumb img {
	transform: scale(1.1);
}
.service-box-2 .service-thumb {
	margin-bottom: 37px;
}
.service-content h3 {
	margin-bottom: 12px;
	font-size: 22px;
}

.service-content h3 a{
	font-size: 23px;
    font-weight: 800;
    line-height: 30px;
	color:#01273c;

}
.service-content h3 a:hover {
	color: #2e3c6d;
}

.service-box-3:hover .service-content h3 a {
	color: #2e3c6d;
}
.service-content-2 h3 {
	font-size: 34px;
}
.service-box.service-box-2 .service-content-2 h3 a:hover {
	color: #2e3c6d;
}

.service-content-2 h3 a {
	padding-bottom: 23px;
	display: block;
	position: relative;
}
.service-content-2 h3 a::after, .service-content-2 h3 a::before {
	position: absolute;
	content: "";
	height: 2px;
	width: 50px;
	left: 0;
	background: #e2e0ff;
	bottom: 0;
	transition: .4s;
}
.service-content-2 h3 a::before {
	background: #2e3c6d;
	z-index: 9;
	width: 0;
	width: 0px;
	visibility: hidden;
	opacity: 0;
}
.service-content-2 h3 a:hover::before {
	transition: .6s;
	width: 50px;
	visibility: visible;
	opacity: 1;
}
.service-content.service-content-2 p {
	padding-right: 30px;
}
.service-box {
	padding: 50px 40px;
	background: #fff;
	transition: .4s;
}
.service-box-2 {
	padding: 60px;
}
.service-box.service-box-border {
	border: 2px solid #f4f4f4;
}
.service-link {
	color: #647589;
	font-weight: 500;
	margin-top: 5px;
	display: inline-block;
}
.service-link i {
	position: relative;
	top: 1px;
	margin-left: 5px;
	transition: .3s;
}
.service-box-3 .service-link {
	display: block;
	background: #e02133;
	margin: 0;
	padding: 16px;
	transition: .4s;
	color:#fff;
	font-weight: 600;
}
.service-box-3:hover .service-link {
	background: #f3ae49;
	color: #fff;
}
.service-box-3  a.service-link:hover {
	background: #f3ae49;
	color: #fff;
}
.service-content-2 a.service-link {
	color: #9ca8b6;
}
.service-box-2 .service-content-2 a.service-link:hover {
	color: #2e3c6d;
}
.service-content-2 a.service-link i {
	margin-right: 5px;
}
.service-box .service-link:hover {
    color: #d2a98e;
}
.service-box:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 16px 32px 0px rgba(196, 203, 255, 0.3);
}
.service-box.service-box-border:hover {
	border: 2px solid transparent;
}
.service-big-number {
	position: absolute;
	top: 0;
	right: 19px;
	font-size: 200px;
	color: #f7f7ff;
}
.service-details-text p {
	line-height: 26px;
	padding-right: 16px;
}
.team-map iframe {
	border: 0;
	width: 100%;
	height: 350px;
}
.service-details-thumb img {
	width: 100%;
}
.ser-fea-box {
	margin-right: 70px;
}
.ser-fea-icon {
	margin-right: 20px;
}
.ser-fea-icon i {
	font-size: 45px;
	line-height: 1;
	color: #2e3c6d;
}
.ser-fea-list h3 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 23px;
}
.ser-fea-list ul li {
	margin-bottom: 12px;
}
.ser-fea-list ul li i {
	color: #2e3c6d;
	margin-right: 9px;
}


/***

====================================================================
	Testimonial Two
====================================================================

***/
.testi-one{
	padding:60px 0px 60px;
	position:relative;
	display:block;
	width:100%;
	
}
.testimonial-se {
	position: relative;
	padding: 90px 0px 90px;
	background-color: #f8f8f8;
}

.testimonial-se .owl-nav {
	display: none;
}

.testimonial-se .owl-dots {
	position: relative;
	text-align: center;
	margin-top: 20px;
}

.testimonial-se .owl-dots .owl-dot {
	position: relative;
	width: 7px;
	height: 7px;
	padding: 0px;
	margin: 0px 10px;
	border-radius: 50px;
	display: inline-block;
	margin-left: 10px;
	border: 3px solid #e8e7e6;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.testimonial-se .owl-dots .owl-dot:before {
	position: absolute;
	content: '';
	left: -8px;
	top: -8px;
	right: -8px;
	bottom: -8px;
	opacity: 0;
	border-radius: 50px;
	border: 2px solid var(--solapa-base);
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.testimonial-se .owl-dots .owl-dot.active,
.testimonial-se .owl-dots .owl-dot:hover {
	background-color: var(--solapa-twentytwo-color);
}

.testimonial-se .owl-dots .owl-dot.active::before,
.testimonial-se .owl-dots .owl-dot:hover::before {
	opacity: 1;
}

.testimonial-se__shape-one {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 459px;
	height: 149px;
	background-repeat: no-repeat;
}

.testimonial-se__shape-two {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 643px;
	height: 194px;
	background-repeat: no-repeat;
}

.testimonial-se__shape-three {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 376px;
	height: 183px;
	background-repeat: no-repeat;
}

.testimonial-se__shape-four {
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 444px;
	height: 69px;
	background-repeat: no-repeat;
}

.testimonial-se__single {
	position: relative;
	margin-bottom: var(--margin-bottom-30);
}

.testimonial-se__single-inner {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	padding: 50px 35px 45px;
	background-color: var(--solapa-white);
}

.testimonial-se__single-inner:before {
	position: absolute;
	content: '';
	right: -40px;
	top: -40px;
	width: 85px;
	height: 85px;
	border-radius: 50%;
	background-color: var(--solapa-base);
}

.testimonial-se__text {
	position: relative;
	line-height: 42px;
	font-size: var(--font-24);
	color: var(--solapa-third-color);
	margin-top: var(--margin-top-30);
}

.testimonial-se__author-info {
	position: relative;
	min-height: 85px;
	padding-left: var(--padding-left-100);
}

.testimonial-se__author-image {
	position: absolute;
	left: 0px;
	width: 85px;
	height: 85px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 50%;
}

.testimonial-se__title {
	position: relative;
	font-weight: 600;
	line-height: 38px;
	font-size: var(--font-30);
	color: var(--solapa-base);
}

.testimonial-se__designation {
	position: relative;
	opacity: 0.80;
	font-size: var(--font-16);
}

.testimonial-se__quote-icon {
	position: absolute;
	left: -20px;
	top: 20px;
	width: 40px;
	height: 40px;
	z-index: 1;
	line-height: 40px;
	border-radius: 50px;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: var(--solapa-primary);
}


/*gallery section start*/

.galuusec{
	position:relative;
	display:block;
	width:100%;
	padding:30px 0px 30px;
 background: linear-gradient(110deg, rgba(255,255,255,1) 0%, rgba(235,238,240,1) 69%, rgba(11,65,111,0.8687850140056023) 100%);
  /*background-image: url("../images/back.jpg")*/
}

.magnific-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
	margin-bottom: 5px;
}

.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

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

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
  opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
	
	
/*gallery section end*/



/*about section start*/
.solar-one__image img
{
	width:367px;
	height:296px;
	object-fit:cover;
}
.solar-one__image-two img
{
	width:261px;
	height:280px;
	object-fit:cover;
}
.solar-one__image-three img
{
	width:254px;
	height:364px;
	object-fit:cover;
}
/*about section end*/




/*career section start*/
.owl-carousel .owl-item img
{
	height: 280px;
    object-fit: cover;
}


/*career section end*/



/*header section start*/
.main-menu__list
{
	margin-left: 50px !important;
}
/*header section end*/



/*------------------------------------
   13. Gallery Section CSS
------------------------------------*/
.rs-gallery.gallery-style1 .gallery-item{
position: relative;
    display: block;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 15px 30px 0px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
	
	}
.rs-gallery.gallery-style1 .gallery-item .gallery-icon {
  margin: 0 0px 0 0px;
}
.rs-gallery.gallery-style1 .gallery-item .gallery-icon a {
  position: relative;
  display: block;
  overflow: hidden;
}
.rs-gallery.gallery-style1 .gallery-item .gallery-icon a:before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  color: #fff;
  z-index: 2;
  font-size: 50px;
  font-weight: 200;
}
.rs-gallery.gallery-style1 .gallery-item .gallery-icon a img{
	width:100%;
	-webkit-transition: all .5s;
    transition: all .5s;
	   
    height: 250px;
    object-fit: cover;
}
.rs-gallery.gallery-style1 .gallery-item:hover .gallery-icon a img{
	width:100%;
	-webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.rs-gallery.gallery-style1 .gallery-item .gallery-icon a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #010d14;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.rs-gallery.gallery-style1 .gallery-item:hover .gallery-icon a:before {
  visibility: visible;
  opacity: 1;
}
.rs-gallery.gallery-style1 .gallery-item:hover .gallery-icon a:after {
  opacity: 0.75;
  visibility: visible;
  bottom: 0;
}
 #style-3::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #f14b0fad;
}

#style-3::-webkit-scrollbar
{
  width: 6px;
  background-color: #f14b0fad;
}

#style-3::-webkit-scrollbar-thumb
{
  background-color: #f14b0fad;
}
.web{
  color:white !important;
}
.web:hover{
  color:#f3ae49 !important;
}

.swal2-styled.swal2-confirm{
  color:#0e3899;
}


@media (max-width: 575px) and (min-width: 320px)
{   
    .main-menu__logo img
	{
		height: 105px;
		object-fit: contain;
	}
	.main-menu__wrapper
	{
	   height: unset;
	} 
	.About-secs a
	{
		 margin-bottom: 20px;
	}
	.solar-one
	{
		background-color: unset;
		padding: 0px;
	}
	.solar-one__image-two
	{
		margin-top: 0;
	}
	.solar-one__image-three
	{
		position: unset;
		margin-top: 0px !important;
	}
	.solar-three__color
	{
		 background-color: unset;
	}
	.solar-one__image-two img
	{
		width: 100% !important;
		height: unset !important;
	}
	.solar-one__image-three img
	{
        width: 100% !important;
		height: unset !important;
		
	}
	.solar-one__image img
	{
        width: 100% !important;
	}
	.solar-one__image-inner-column
	{
		padding-right: 0px !important;
	}
	.team-card
	{
		margin: 15px 80px !important;
	} 
	.team-img img
	{
		height: 231px !important;
	}
	
	
}


.DZ-theme-btn.DZ-bt-whatsapp-now {
    background: #1ebbf0;
    background: -moz-linear-gradient(45deg, #1ebbf0 8%, #39dfaa 100%);
    background: -webkit-linear-gradient(45deg, #2eb541 8%, #1cd937 100%);
    background: linear-gradient(45deg, #2eb541 8%, #1cd937 100%);
    bottom: 90px;
}

.DZ-theme-btn.DZ-bt-callnow-now {
    background: #1ebbf0;
    background: -moz-linear-gradient(45deg, #1ebbf0 8%, #39dfaa 100%);
    background: -webkit-linear-gradient(45deg, #39579a 8%, #255cd7 100%);
    background: linear-gradient(45deg, #39579a 8%, #255cd7 100%);
    bottom: 150px;
}
.DZ-theme-btn.DZ-bt-email-now {
    background: #1fdf61;
    background: -moz-linear-gradient(top, #a3d179 0, #88ba46 100%);
    background: -webkit-linear-gradient(45deg, #1ebbf0 8%, #39dfaa 100%);
    background: linear-gradient(45deg, #cb2312 8%, #df7639 100%);
    bottom: 30px;
}
.DZ-theme-btn i {
    fill: #fff;
    width: 26px;
    height: 26px;
    font-size: 20px;
    line-height: 26px;
}
.DZ-theme-btn-sticky {
    opacity: 1 !important;
    visibility: visible!important;
}
.DZ-theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    color: #fff;
    height: 50px;
    left: 20px;
    min-width: 50px;
    position: fixed;
    text-align: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
}
.main-menu__search-box i
{
	color:#000;
}
.main-menu__search-box a
{
	color:#000;
}

.li.menu-item-has-children.current:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: right;
  margin-top: 1px;
}

.main-menu__main-menu-box ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 18px;
}
h2.sec-title.directors {
    position: relative;
    margin-top: 10px;
    margin-bottom: 40px;
}