/*
@File: Traz Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Section Title CSS
** - Main Banner Area CSS
** - Main Banner Animation Area CSS
** - Architecture Studio Banner Area CSS
** - About Area CSS
** - Services Area CSS
** - Overview Area CSS
** - Features Area CSS
** - Recognition Area CSS
** - Projects Area CSS
** - Animation View Area CSS
** - Process Area CSS
** - Client Area CSS
** - Blog Area CSS
** - Contact Area CSS
** - Elevating Area CSS
** - Funfacts Area CSS
** - Partner Area CSS
** - Team Area CSS
** - Page Banner Area CSS
** - Box Style Area CSS
** - Projects Gallery Area CSS
** - FAQ Area CSS
** - Profile Authentication Area CSS
** - Privacy Policy Area CSS
** - Terms & Conditions Area CSS
** - Not Found Area CSS
** - Widget Area CSS
** - Pagination Area CSS

*/
/*================================================
Default CSS
=================================================*/
:root {
  --primaryColor: #C2875A;
  --blackColor: #1E1B18;
  --brownColor: #592B1D;
  --whiteColor: #ffffff;
  --paragraphColor: #786E67;
  --fontSize: 17px;
  /* Template base font (Jost, loaded in app/root.tsx). The original Next.js
   * template applied this via next/font; ported here as the body font so the
   * whole site uses Jost instead of falling back to Bootstrap's system stack. */
  --bodyFont: "Jost", sans-serif;
  --transition: .6s;
}

body {
  margin: 0;
  padding: 0;
  color: var(--paragraphColor);
  font-family: var(--bodyFont);
  font-size: var(--fontSize);
  font-weight: 400;
}

p {
  color: var(--paragraphColor);
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: 400;
}
p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: bold;
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--blackColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.section-area-with-line {
  position: relative;
  z-index: 1;
}
.section-area-with-line .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  z-index: -1;
}
.section-area-with-line .lines .line {
  position: absolute;
  height: 80%;
  top: 0;
  left: 50%;
  border: 1px dashed #f3f3f3;
  overflow: hidden;
  z-index: -1;
}
.section-area-with-line .lines .line:nth-child(1) {
  margin-left: -25%;
}
.section-area-with-line .lines .line:nth-child(2) {
  margin-left: 0;
}
.section-area-with-line .lines .line:nth-child(3) {
  margin-left: 25%;
}

/*================================================
Default Btn Area CSS
=================================================*/
.default-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
  transition: var(--transition);
}
.default-btn:hover {
  background-color: var(--brownColor);
  color: var(--whiteColor);
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 40px;
  color: #E1DBD6;
  margin-bottom: 0;
}
.section-title h2 span {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--whiteColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.section-title a {
  color: #9D9A97;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  position: relative;
}
.section-title a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primaryColor);
  transition: var(--transition);
}
.section-title a:hover {
  color: var(--primaryColor);
}
.section-title a:hover::before {
  width: 100%;
}

.section-title-wrap {
  max-width: 850px;
  position: relative;
  padding-left: 45px;
  margin-bottom: 50px;
}
.section-title-wrap span {
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 15.7px;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 8.8px;
  letter-spacing: 1px;
}
.section-title-wrap h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0;
}
.section-title-wrap .link-btn a {
  color: var(--primaryColor);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  position: relative;
}
.section-title-wrap .link-btn a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primaryColor);
  transition: var(--transition);
}
.section-title-wrap .link-btn a:hover {
  color: var(--primaryColor);
}
.section-title-wrap .link-btn a:hover::before {
  width: 100%;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader-area {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: var(--primaryColor);
}
.preloader-area .loader {
  left: 0;
  right: 0;
  top: 48%;
  position: absolute;
  transform: translateY(-48%);
}
.preloader-area .loader .waviy span {
  animation: flip 2s infinite;
  color: var(--whiteColor);
  display: inline-block;
  animation-delay: 0.2s;
  font-size: 45px;
  font-weight: 800;
}
.preloader-area .loader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .loader .waviy span:nth-child(3) {
  animation-delay: 0.4s;
}
.preloader-area .loader .waviy span:nth-child(4) {
  animation-delay: 0.6s;
}
.preloader-area .loader .waviy span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes flip {
  0%, 80% {
    transform: rotateY(360deg);
  }
}
/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 375px;
}
.main-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.main-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(22, 21, 18, 0.9) 0%, rgba(22, 21, 18, 0.3) 100%);
}

.main-banner-content {
  max-width: 840px;
  position: relative;
}
.main-banner-content h1 {
  color: #E1DBD6;
  font-size: 70px;
  margin-bottom: 20px;
}
.main-banner-content h1 span {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--whiteColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.main-banner-content p {
  color: #B7B3AF;
  max-width: 625px;
}
.main-banner-content .banner-btn {
  margin-top: 30px;
}
.main-banner-content .banner-btn .default-btn {
  background-color: transparent;
  border: 1px solid var(--primaryColor);
  padding: 15px 40px;
}
.main-banner-content .banner-btn .default-btn:hover {
  background-color: var(--primaryColor);
}

.main-banner-image {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 800px;
  background-size: cover;
}

.main-banner-wrap-shape {
  position: absolute;
  right: 115px;
  top: 35px;
}

.main-banner-video {
  position: absolute;
  right: 175px;
  top: 175px;
  z-index: 1;
}
.main-banner-video .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  cursor: pointer;
}
.main-banner-video .video-btn i {
  font-size: 35px;
  background: linear-gradient(135deg, rgba(216, 183, 152, 0.8) 0%, rgba(186, 141, 109, 0.8) 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-banner-video img {
  animation-name: rotateme;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.main-banner-social {
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  left: 30px;
  bottom: 55px;
  z-index: 1;
}
.main-banner-social li {
  list-style-type: none;
  margin-bottom: 20px;
}
.main-banner-social li:last-child {
  margin-bottom: 0;
}
.main-banner-social li a i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: var(--brownColor);
  border-radius: 100%;
  font-size: 15px;
  color: var(--whiteColor);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}
.main-banner-social li a i:hover {
  color: var(--primaryColor);
}

.main-banner-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
.main-banner-arrow a {
  display: inline-block;
  height: 80px;
  width: 80px;
  background-color: var(--primaryColor);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.main-banner-arrow a img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.main-banner-arrow a:hover {
  background-color: var(--whiteColor);
}

.main-banner-info {
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  right: 10px;
  bottom: 155px;
  writing-mode: vertical-lr;
}
.main-banner-info li {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 50px;
}
.main-banner-info li:last-child {
  margin-bottom: 0;
}
.main-banner-info li span {
  color: #928C87;
}
.main-banner-info li a {
  color: #928C87;
}
.main-banner-info li a:hover {
  color: var(--primaryColor);
}

/*================================================
Main Banner Animation Area CSS
=================================================*/
.main-banner-animation-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.main-banner-animation {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  white-space: nowrap;
  animation: marquee-banner 7s linear infinite forwards;
}
.main-banner-animation img {
  min-height: 590px;
  min-width: 3000px;
  position: relative;
  top: -1px;
}
.main-banner-animation:hover {
  animation-play-state: paused;
}
.main-banner-animation h1 {
  display: none;
}

@keyframes marquee-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*================================================
Architecture Studio Banner Area CSS
=================================================*/
.as-banner-area {
  margin: 0 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #000000;
}
.as-banner-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.as-banner-image .icv__control-line {
  display: none;
}
.as-banner-image .icv__circle {
  width: 80px;
  height: 80px;
  background-color: var(--whiteColor);
  box-shadow: unset !important;
  -webkit-backdrop-filter: unset !important;
          backdrop-filter: unset !important;
}
.as-banner-image .icv__arrow-wrapper {
  position: relative;
  transform: unset !important;
}
.as-banner-image .icv__arrow-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/images/main-banner/arrow.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 25px;
}
.as-banner-image .icv__arrow-wrapper:last-child::before {
  display: none;
}
.as-banner-image .icv__arrow-wrapper svg {
  display: none;
  transform: unset !important;
  height: unset !important;
  width: unset !important;
  filter: unset;
}

.as-banner-content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  max-width: 950px;
  padding-top: 90px;
  padding-left: 50px;
}
.as-banner-content h1 {
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 0;
}
.as-banner-content h1 b {
  background-color: var(--blackColor);
  color: var(--whiteColor);
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 5px;
}

.as-banner-bottom-content {
  background-color: var(--blackColor);
  padding: 30px;
  max-width: 980px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  width: 100%;
}
.as-banner-bottom-content p {
  color: #DAD8D7;
  margin-bottom: 0;
  max-width: 465px;
}
.as-banner-bottom-content a {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  position: relative;
}
.as-banner-bottom-content a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  width: 0%;
  height: 1px;
  transition: var(--transition);
}
.as-banner-bottom-content a:hover {
  color: var(--primaryColor);
}
.as-banner-bottom-content a:hover::before {
  width: 100%;
  background-color: var(--primaryColor);
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-image-one {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
}
.about-image-one .arrow-shape {
  position: absolute;
  right: -70px;
  bottom: 40px;
}

.about-one-content {
  margin-left: -60px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.about-one-content .title {
  margin-left: 115px;
  margin-bottom: 60px;
}
.about-one-content .title h2 {
  font-size: 40px;
  color: #E1DBD6;
  margin-bottom: 0;
  line-height: 1.3;
}
.about-one-content .title h2 span {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--whiteColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.about-one-content .inner-image {
  position: relative;
  z-index: 1;
}
.about-one-content .inner-content {
  padding-left: 25px;
}
.about-one-content .inner-content p {
  color: #9D9A97;
  margin-bottom: 30px;
}
.about-one-content .inner-content .list {
  padding-left: 0;
  margin-bottom: 0;
}
.about-one-content .inner-content .list li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
  color: #BDBDBD;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.about-one-content .inner-content .list li:last-child {
  margin-bottom: 0;
}
.about-one-content .inner-content .list li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-one-content .inner-content .about-btn {
  margin-top: 55px;
}
.about-one-content .inner-content .about-btn .default-btn {
  background-color: transparent;
  border: 1px solid var(--primaryColor);
}
.about-one-content .inner-content .about-btn .default-btn:hover {
  background-color: var(--primaryColor);
}

.about-text-wrap {
  position: absolute;
  right: 0;
  top: 145px;
  z-index: -1;
}

.about-two-content {
  position: relative;
  padding-left: 45px;
  margin-left: 70px;
}
/* Direct-child only: this is the vertical "ABOUT US" eyebrow. Using a
 * descendant selector here also caught the <span> inside the section's
 * Button, hiding its label and overlapping the eyebrow. */
.about-two-content > span {
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 15.7px;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 5.8px;
  letter-spacing: 1.6px;
}
.about-two-content h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-two-content p {
  margin-bottom: 0;
}
.about-two-content .list {
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.about-two-content .list li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  padding-left: 38px;
}
.about-two-content .list li:last-child {
  margin-bottom: 0;
}
.about-two-content .list li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-two-content .about-btn {
  margin-top: 30px;
}

.about-image-two {
  position: relative;
  text-align: center;
}
.about-image-two .wrap-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.about-image-two .wrap-video img {
  animation-name: rotateme;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.about-image-two .wrap-video .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.about-image-two .wrap-video .video-btn i {
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 85px;
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  font-size: 35px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
}
.about-image-two .wrap-video .video-btn i:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.about-three-title {
  position: relative;
  margin-bottom: 40px;
  padding-left: 45px;
  max-width: 915px;
}
.about-three-title span {
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 15.7px;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 5.8px;
  letter-spacing: 1.6px;
}
.about-three-title h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
}

.about-three-left-content {
  border-right: 1px dashed #E7E0E0;
  padding-top: 45px;
  padding-right: 55px;
  padding-bottom: 100px;
}
.about-three-left-content .list {
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.about-three-left-content .list li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  padding-left: 38px;
}
.about-three-left-content .list li:last-child {
  margin-bottom: 0;
}
.about-three-left-content .list li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-three-left-content .about-image-wrap {
  position: relative;
  text-align: center;
  max-width: 500px;
  margin-top: 100px;
}
.about-three-left-content .about-image-wrap .wrap-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.about-three-left-content .about-image-wrap .wrap-video img {
  animation-name: rotateme;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.about-three-left-content .about-image-wrap .wrap-video .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.about-three-left-content .about-image-wrap .wrap-video .video-btn i {
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 85px;
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  font-size: 35px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
}
.about-three-left-content .about-image-wrap .wrap-video .video-btn i:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.about-three-right-content {
  position: relative;
  z-index: 1;
  padding-top: 45px;
  padding-left: 22px;
  padding-bottom: 100px;
}
.about-three-right-content .about-wrap-content {
  margin-top: 100px;
}
.about-three-right-content .about-wrap-content h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

.our-mission-and-vision-accordion .accordion__item {
  border: none;
  margin-bottom: 30px;
  background-color: transparent;
  border-radius: 0;
}
.our-mission-and-vision-accordion .accordion__item:last-child {
  margin-bottom: 0;
}
.our-mission-and-vision-accordion .accordion__item .accordion__button {
  color: var(--blackColor);
  position: relative;
  text-align: start;
  box-shadow: unset;
  margin-bottom: 0;
  display: block;
  border: none;
  width: 100%;
  font-weight: 600;
  padding: 20px 70px 20px 30px;
  transition: var(--transition);
  background: #F2EFEB;
  border-radius: 0;
}
.our-mission-and-vision-accordion .accordion__item .accordion__button:before {
  position: absolute;
  right: 10px;
  top: 28px;
}
.our-mission-and-vision-accordion .accordion__item .accordion__panel {
  padding: 15px 0 0 30px;
}

.about-wrap-shape {
  position: absolute;
  right: 50px;
  bottom: 100px;
  z-index: -1;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  overflow: hidden;
}

.col-lg-4:nth-child(1) .services-card {
  border: 1.3px dashed #414040;
  position: relative;
}
.col-lg-4:nth-child(1) .services-card::before {
  position: absolute;
  content: "";
  left: -90px;
  top: -6.2px;
  background-image: url(/images/services/services-arrow1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 87px;
  height: 12px;
}
.col-lg-4:nth-child(2) .services-card {
  border: 1.3px dashed #414040;
  border-left: none;
}
.col-lg-4:nth-child(3) .services-card {
  border: 1.3px dashed #414040;
  border-left: none;
  position: relative;
}
.col-lg-4:nth-child(3) .services-card::before {
  position: absolute;
  content: "";
  right: -90px;
  bottom: -6.2px;
  background-image: url(/images/services/services-arrow2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 87px;
  height: 12px;
}

.services-card {
  margin-bottom: 25px;
  padding: 50px;
}
.services-card .icon {
  line-height: 0;
  margin-bottom: 40px;
}
.services-card .icon i {
  font-size: 50px;
  color: var(--primaryColor);
  line-height: 0;
}
.services-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
}
.services-card h3 a {
  color: #BDBDBD;
}
.services-card h3 a:hover {
  color: var(--primaryColor);
}
.services-card p {
  color: #9D9A97;
  margin-bottom: 25px;
}

.services-list-tabs {
  border: 1px dashed #E7E0E0;
}
.services-list-tabs .nav {
  padding-left: 0;
  margin-bottom: 0;
  border: none;
  display: block;
}
.services-list-tabs .nav .nav-item {
  display: block;
  border-bottom: 1px dashed #E7E0E0;
  background-color: transparent;
  font-size: 45px;
  font-weight: 700;
  color: #B5B4B3;
  padding: 55px 90px 55px 90px;
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
}
.services-list-tabs .nav .nav-item:last-child {
  border-bottom: none;
}
.services-list-tabs .nav .nav-item sup {
  color: #9D9A97;
  font-weight: 400;
  font-size: var(--fontSize);
  top: -25px;
}
.services-list-tabs .nav .nav-item:hover, .services-list-tabs .nav .nav-item.active {
  color: var(--blackColor);
}
.services-list-tabs .tab-content {
  border-left: 1px dashed #E7E0E0;
}
.services-list-tabs .services-tab-content {
  padding: 50px;
}
.services-list-tabs .services-tab-content img {
  margin-bottom: 30px;
}
.services-list-tabs .services-tab-content p {
  margin-bottom: 25px;
}
.services-list-tabs .services-tab-content a {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--primaryColor);
  position: relative;
}
.services-list-tabs .services-tab-content a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  width: 0;
  height: 2px;
  transition: var(--transition);
}
.services-list-tabs .services-tab-content a:hover::before {
  width: 100%;
}

.services-wrap-area {
  background-color: #F2EFEB;
}
.services-wrap-area .section-title-wrap {
  max-width: 100%;
  padding-left: 0;
}
.services-wrap-area .section-title-wrap .title {
  max-width: 830px;
  padding-left: 45px;
}
.services-wrap-area.without-bg-color {
  background-color: transparent;
}
.services-wrap-area.without-bg-color .section-title-wrap {
  max-width: 830px;
  padding-left: 45px;
}
.services-wrap-area.without-bg-color .services-item {
  background-color: #F2EFEB;
}
.services-wrap-area.without-bg-color .services-item::before {
  background-image: url(/images/services/shape2.png);
}

.services-item {
  margin-bottom: 25px;
  padding: 50px;
  background-color: var(--whiteColor);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.services-item .icon {
  line-height: 0;
  margin-bottom: 40px;
}
.services-item .icon i {
  font-size: 50px;
  color: var(--primaryColor);
  line-height: 0;
}
.services-item h3 {
  font-size: 24px;
  margin-bottom: 25px;
}
.services-item h3 a {
  color: var(--blackColor);
}
.services-item h3 a:hover {
  color: var(--primaryColor);
}
.services-item p {
  margin-bottom: 25px;
}
.services-item::before {
  position: absolute;
  content: "";
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/images/services/shape.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 370px;
  width: 180px;
  z-index: -1;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.overview-area.wrap-color .overview-card {
  border-bottom: none;
  padding-bottom: 0;
}
.overview-area.wrap-color .overview-card h3 {
  padding-left: 0;
  color: var(--blackColor);
}

.overview-card {
  border-bottom: 1px dashed #414040;
  padding-bottom: 40px;
}
.overview-card .image {
  overflow: hidden;
}
.overview-card .image img {
  transition: var(--transition);
}
.overview-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  color: #BDBDBD;
  padding-top: 30px;
  padding-left: 10px;
}
.overview-card h3 span {
  color: #9D9A97;
  font-size: var(--fontSize);
  font-weight: 400;
}
.overview-card:hover .image img {
  transform: scale(1.2);
}

.overview-inner-area {
  border-bottom: 1px dashed #E7E0E0;
  padding-bottom: 40px;
}

/*================================================
Features Area CSS
=================================================*/
.features-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.features-content {
  padding-top: 15px;
  padding-right: 25px;
  padding-bottom: 15px;
}
.features-content h2 {
  font-size: 40px;
  color: #E1DBD6;
  margin-bottom: 40px;
  line-height: 1.3;
}
.features-content h2 span {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--whiteColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.features-content .inner-box {
  background: #24231F;
  padding: 40px 35px 210px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: -25px;
}
.features-content .inner-box h3 {
  font-size: 57px;
  color: var(--whiteColor);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}
.features-content .inner-box span {
  color: #9D9A97;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
}
.features-content .inner-box span b {
  display: block;
  font-weight: 400;
}
.features-content .inner-box .wrap {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: -1;
}
.features-content .inner-content {
  padding-left: 50px;
}
.features-content .inner-content p {
  color: #9D9A97;
  margin-bottom: 25px;
}
.features-content .inner-content .list {
  padding-left: 0;
  margin-bottom: 0;
}
.features-content .inner-content .list li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
  color: #BDBDBD;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.features-content .inner-content .list li:last-child {
  margin-bottom: 0;
}
.features-content .inner-content .list li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.features-content .inner-content .features-btn {
  margin-top: 40px;
}
.features-content .inner-content .features-btn .default-btn {
  background-color: transparent;
  border: 1px solid var(--primaryColor);
}
.features-content .inner-content .features-btn .default-btn:hover {
  background-color: var(--primaryColor);
}

.features-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.features-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/*================================================
Recognition Area CSS
=================================================*/
.recognition-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.recognition-content {
  max-width: 635px;
  margin-left: auto;
  margin-right: 0;
}
.recognition-content h2 {
  font-size: 40px;
  color: #E1DBD6;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #5F5F5F;
}
.recognition-content h2 span {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--whiteColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.recognition-content .list {
  padding-left: 0;
  margin-bottom: 0;
}
.recognition-content .list li {
  list-style-type: none;
  border-bottom: 1px dashed #5F5F5F;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.recognition-content .list li h4 {
  color: #DEDEDE;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.recognition-content .list li h4 b {
  font-weight: 600;
  color: var(--primaryColor);
  font-size: var(--fontSize);
  margin-right: 20px;
}
.recognition-content .list li span {
  color: #DEDEDE;
  font-size: 16px;
}
.recognition-content .list li:last-child {
  margin-bottom: 0;
}
.recognition-content.wrap-style {
  position: relative;
  padding-left: 50px;
}
.recognition-content.wrap-style .sub {
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 15.7px;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 8.8px;
  letter-spacing: 1.6px;
}
.recognition-content.wrap-style h2 {
  font-weight: 400;
}

.recognition-wrap-area .recognition-content {
  max-width: 100%;
  margin-top: 45px;
  padding-right: 45px;
}
.recognition-wrap-area .recognition-content h2 {
  color: var(--blackColor);
  border-bottom: 1px dashed #E7E0E0;
}
.recognition-wrap-area .recognition-content .list li {
  border-bottom: 1px dashed #E7E0E0;
}
.recognition-wrap-area .recognition-content .list li span {
  color: #535050;
}
.recognition-wrap-area .recognition-content .list li h4 {
  color: #535050;
}

.recognition-right-content {
  position: relative;
  padding-left: 20px;
}
.recognition-right-content img {
  min-height: 420px;
}
.recognition-right-content .awards-box {
  background: var(--brown-gradient, linear-gradient(135deg, #D9A87A 0%, #C2875A 100%));
  padding: 40px 35px 80px;
  max-width: 236.5px;
  position: absolute;
  top: -105px;
  left: 20px;
  width: 100%;
}
.recognition-right-content .awards-box h3 {
  font-size: 57px;
  color: var(--whiteColor);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}
.recognition-right-content .awards-box span {
  color: #F0ECE8;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
}
.recognition-right-content .awards-box span b {
  display: block;
  font-weight: 400;
}
.recognition-right-content .experience-box {
  background: #24231F;
  padding: 40px 35px 180px;
  z-index: 1;
  overflow: hidden;
  max-width: 270px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.recognition-right-content .experience-box h3 {
  font-size: 57px;
  color: var(--whiteColor);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}
.recognition-right-content .experience-box span {
  color: #9D9A97;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
}
.recognition-right-content .experience-box span b {
  display: block;
  font-weight: 400;
}
.recognition-right-content .experience-box .wrap {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: -1;
}
.recognition-right-content .experience-box .wrap img {
  min-height: unset;
}

/*================================================
Projects Area CSS
=================================================*/
.col-lg-4:nth-child(1) .projects-inner-border {
  border-right: 1px dashed #414040;
  padding-right: 45px;
}
.col-lg-4:nth-child(2) .projects-inner-border {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
}
.col-lg-4:nth-child(3) .projects-inner-border {
  border-left: 1px dashed #414040;
  padding-left: 45px;
}

.projects-item {
  margin-bottom: 70px;
}
.projects-item .projects-image {
  position: relative;
}
.projects-item .projects-image .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.projects-item .projects-image .icon a {
  display: inline-block;
  height: 80px;
  width: 80px;
  background-color: var(--primaryColor);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: block;
}
.projects-item .projects-image .icon a img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.projects-item .projects-image .icon a:hover {
  background-color: var(--whiteColor);
}
.projects-item .projects-content {
  margin-top: 25px;
}
.projects-item .projects-content h3 {
  margin-bottom: 0;
  font-size: 24px;
}
.projects-item .projects-content h3 a {
  color: #BDBDBD;
}
.projects-item .projects-content h3 span {
  color: #9D9A97;
  font-size: var(--fontSize);
  font-weight: 400;
}
.projects-item:hover .projects-image .icon {
  opacity: 1;
  visibility: visible;
}

.projects-btn {
  text-align: center;
}
.projects-btn a {
  color: #9D9A97;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  position: relative;
}
.projects-btn a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primaryColor);
  transition: var(--transition);
}
.projects-btn a:hover {
  color: var(--primaryColor);
}
.projects-btn a:hover::before {
  width: 100%;
}

.projects-scroll-area {
  overflow: hidden;
}
.projects-scroll-area .container-fluid {
  position: relative;
  left: calc((100% - 1320px) / 2);
  overflow: hidden;
}

.projects-scroll-card .content {
  margin-top: 40px;
}
.projects-scroll-card .content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.projects-scroll-card .content h3 a {
  color: var(--blackColor);
}
.projects-scroll-card .content h3 span {
  color: #9D9A97;
  font-size: 14px;
  letter-spacing: 1.4px;
  font-weight: 400;
}
.projects-scroll-card .content p {
  margin-bottom: 25px;
}
.projects-scroll-card .content .projects-btn {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--primaryColor);
  position: relative;
}
.projects-scroll-card .content .projects-btn::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  width: 0%;
  height: 2px;
  transition: var(--transition);
}
.projects-scroll-card .content .projects-btn:hover::before {
  width: 100%;
}

.projects-scroll-thumb {
  margin-left: 45px;
  margin-right: 80px;
}

.projects-scroll-button {
  position: relative;
}
.projects-scroll-button .swiper-button-next {
  position: absolute;
  right: 32px;
  top: -450px;
}
.projects-scroll-button .swiper-button-next:after {
  display: none;
}
.projects-scroll-button .swiper-button-prev {
  position: absolute;
  left: -2px;
  top: -450px;
}
.projects-scroll-button .swiper-button-prev:after {
  display: none;
}

.projects-scroll-slide .projects-scroll-card {
  padding-right: 50px;
}
.projects-scroll-slide .project-lg-img {
  padding-left: 70px;
}
.projects-scroll-slide .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.projects-scroll-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .projects-scroll-slide .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--primaryColor);
}

.projects-area.bg-wrap-with-black {
  background-color: var(--blackColor);
}
.projects-area.bg-wrap-with-black .section-title-wrap {
  padding-left: 35px;
}
.projects-area.bg-wrap-with-black .section-title-wrap span {
  left: -12px;
}
.projects-area.bg-wrap-with-black .section-title-wrap h2 {
  color: var(--whiteColor);
}
.projects-area.bg-wrap-with-black .col-lg-6:nth-child(1) .projects-inner-border {
  padding-right: 80px;
}
.projects-area.bg-wrap-with-black .col-lg-6:nth-child(2) .projects-inner-border {
  padding-left: 80px;
  border-left: 1px dashed #44433F;
}
.projects-area.bg-wrap-with-black .projects-item {
  margin-bottom: 60px;
  padding-left: 55px;
  position: relative;
}
.projects-area.bg-wrap-with-black .projects-item .projects-image {
  position: relative;
}
.projects-area.bg-wrap-with-black .projects-item .projects-image .projects-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  display: inline-block;
  padding: 40px 50px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.projects-area.bg-wrap-with-black .projects-item .projects-image .projects-btn:hover {
  background-color: var(--primaryColor);
}
.projects-area.bg-wrap-with-black .projects-item .projects-content {
  margin-top: 0;
  position: absolute;
  left: 0;
  bottom: 2px;
}
.projects-area.bg-wrap-with-black .projects-item .projects-content h3 {
  writing-mode: vertical-lr;
  margin-left: 0;
  margin-right: 0;
}
.projects-area.bg-wrap-with-black .projects-item:hover .projects-image .projects-btn {
  opacity: 1;
  visibility: visible;
}
.projects-area.bg-wrap-with-black .projects-btn a {
  color: var(--primaryColor);
}
.projects-area.without-wrap-border .section-title-wrap {
  max-width: 100%;
  padding-left: 0;
}
.projects-area.without-wrap-border .section-title-wrap .title {
  max-width: 620px;
  padding-left: 45px;
}
.projects-area.without-wrap-border .section-title-wrap span {
  font-size: 14.7px;
  top: 7.8px;
}
.projects-area.without-wrap-border .col-lg-4:nth-child(1) .projects-inner-border {
  border-right: none;
}
.projects-area.without-wrap-border .col-lg-4:nth-child(3) .projects-inner-border {
  border-left: none;
}
.projects-area.without-wrap-border .projects-item .projects-content h3 a {
  color: var(--blackColor);
}
.projects-area.without-wrap-border .projects-item .projects-content h3 span {
  color: #9D9A97;
}

.tabs-nav {
  display: inline-block;
}
.tabs-nav .tab-btn {
  border: none;
  background: #F2EFEB;
  display: inline-block;
  padding: 12px 20px;
  font-size: 15.8px;
  color: var(--blackColor);
  margin-right: 12px;
  margin-bottom: 10px;
}
.tabs-nav .tab-btn:last-child {
  margin-right: 0;
}
.tabs-nav .tab-btn b {
  color: #928D80;
  font-weight: 400;
  font-size: 14px;
}
.tabs-nav .tab-btn.active {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.tabs-nav .tab-btn.active b {
  color: #EED5C3;
}

/*================================================
Animation View Area CSS
=================================================*/
.animation-view-area {
  overflow: hidden;
}
.animation-view-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.animation-view-content p {
  white-space: nowrap;
  font-size: 60px;
  margin-bottom: 0;
  color: #9C9C9C;
  animation: marquee 25s linear infinite forwards;
}
.animation-view-content p span {
  display: inline-block;
  margin: 0 10px;
}
.animation-view-content p span:nth-child(odd) {
  color: transparent;
  -webkit-text-stroke: 0.5px #9C9C9C;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.animation-view-content p:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
/*================================================
Process Area CSS
=================================================*/
.process-area {
  background: #24231D;
  overflow: hidden;
}

.col-xl-3:nth-child(1) .process-card {
  position: relative;
  z-index: 1;
  padding: 25px 0 35px 25px;
}
.col-xl-3:nth-child(1) .process-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url(/images/process/vector1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 2px;
  height: 307px;
}
.col-xl-3:nth-child(1) .process-card::after {
  position: absolute;
  content: "";
  left: -85px;
  top: -7px;
  background-image: url(/images/process/vector2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 404px;
  height: 12px;
}
.col-xl-3:nth-child(2) .process-card {
  position: relative;
  z-index: 1;
  padding: 25px 0 35px 25px;
}
.col-xl-3:nth-child(2) .process-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 25px;
  background-image: url(/images/process/vector1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 2px;
  height: 333px;
}
.col-xl-3:nth-child(2) .process-card::after {
  position: absolute;
  content: "";
  left: -85px;
  bottom: -7px;
  background-image: url(/images/process/vector2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 404px;
  height: 12px;
}
.col-xl-3:nth-child(3) .process-card {
  position: relative;
  z-index: 1;
  padding: 25px 0 35px 25px;
}
.col-xl-3:nth-child(3) .process-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url(/images/process/vector1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 2px;
  height: 333px;
}
.col-xl-3:nth-child(3) .process-card::after {
  position: absolute;
  content: "";
  left: -85px;
  top: -7px;
  background-image: url(/images/process/vector2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 404px;
  height: 12px;
}
.col-xl-3:nth-child(4) .process-card {
  position: relative;
  z-index: 1;
  padding: 25px 0 35px 25px;
}
.col-xl-3:nth-child(4) .process-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 25px;
  background-image: url(/images/process/vector1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 2px;
  height: 333px;
}
.col-xl-3:nth-child(4) .process-card::after {
  position: absolute;
  content: "";
  left: -85px;
  bottom: -7px;
  background-image: url(/images/process/vector2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 404px;
  height: 12px;
}

.process-card {
  margin-bottom: 25px;
}
.process-card .process-image {
  position: relative;
}
.process-card .process-image span {
  background: var(--brown-gradient, linear-gradient(135deg, #D9A87A 0%, #C2875A 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  position: absolute;
  left: 10px;
  top: 10px;
}
.process-card .process-content {
  margin-top: 30px;
}
.process-card .process-content h3 {
  font-size: 20px;
  color: #BDBDBD;
  margin-bottom: 15px;
}
.process-card .process-content p {
  color: #9D9A97;
}

/*================================================
Client Area CSS
=================================================*/
.client-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.client-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primaryColor);
  width: 10px;
  height: 10px;
}

.client-content {
  text-align: center;
  max-width: 870px;
  margin: auto;
  padding-bottom: 40px;
}
.client-content .icon {
  margin-bottom: 20px;
}
.client-content p {
  font-size: 24px;
  color: #B6B4B2;
}
.client-content .client-information {
  text-align: center;
  transition: var(--transition);
  margin-top: 30px;
}
.client-content .client-information .image img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.client-content .client-information .title {
  transition: var(--transition);
  margin-top: 15px;
}
.client-content .client-information .title h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: #BDBDBD;
}
.client-content .client-information .title span {
  font-size: 14px;
  font-weight: 400;
  color: var(--primaryColor);
  display: block;
  margin-top: 5px;
}

.client-shape1 {
  position: absolute;
  bottom: 18%;
  left: 8%;
  transform: translateY(-18%) translateX(-8%);
  z-index: -1;
}

.client-shape2 {
  position: absolute;
  top: 18%;
  right: 8%;
  transform: translateY(-18%) translateX(-8%);
  z-index: -1;
}

.client-wrap-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.client-wrap-area .section-title-wrap {
  max-width: 635px;
  margin-left: auto;
}
.client-wrap-area .section-title-wrap span {
  top: 15.8px;
}
.client-wrap-area .container-fluid {
  position: relative;
  left: calc((100% - 1320px) / 2);
  overflow: hidden;
  padding-left: 50px;
}
.client-wrap-area::before {
  position: absolute;
  content: "";
  left: 110px;
  top: 0;
  height: 100%;
  width: 580px;
  background: #F4F4F4;
  z-index: -1;
}
.client-wrap-area.with-margin-top::before {
  margin-top: 100px;
}
.client-wrap-area.without-before-color::before {
  display: none;
}
.client-wrap-area.without-before-color .container-fluid {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.client-wrap-area.without-before-color .client-wrap-card {
  border: 1px solid #f5f5f5;
}
.client-wrap-area.without-before-color .section-title-wrap {
  margin-left: 0;
}
.client-wrap-area.without-before-color .container {
  position: relative;
}
.client-wrap-area.without-before-color .client-wrap-slide-arrow {
  padding-right: 0;
  margin-top: 0;
  position: absolute;
  right: 10px;
  bottom: 30px;
}
.client-wrap-area.with-two-style-wrap::before {
  position: absolute;
  content: "";
  left: 0;
  top: 100px;
  height: 670px;
  width: 660px;
  background: #F4F4F4;
  z-index: -1;
}
.client-wrap-area.with-two-style-wrap::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 370px;
  height: 670px;
  width: 660px;
  background: #F4F4F4;
  z-index: -1;
}

.client-wrap-card {
  background: var(--whiteColor);
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.06);
  padding: 40px;
  margin-bottom: 25px;
}
.client-wrap-card .icon {
  margin-bottom: 15px;
}
.client-wrap-card p {
  font-size: 20px;
  color: var(--blackColor);
  margin-bottom: 0;
}
.client-wrap-card .info {
  margin-top: 30px;
}
.client-wrap-card .info .image img {
  max-width: 50px;
  border-radius: 50%;
}
.client-wrap-card .info .title {
  margin-left: 15px;
}
.client-wrap-card .info .title h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.client-wrap-card .info .title span {
  font-size: 14px;
  color: var(--primaryColor);
  display: block;
  margin-top: 5px;
}

.client-wrap-slide-arrow {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  padding-left: 0;
  padding-right: 350px;
  margin-top: 35px;
  margin-bottom: 0;
}
.client-wrap-slide-arrow li {
  list-style-type: none;
  margin-right: 20px;
}
.client-wrap-slide-arrow li:last-child {
  margin-right: 0;
}
.client-wrap-slide-arrow li .swiper-button-next {
  position: relative;
  right: 0;
}
.client-wrap-slide-arrow li .swiper-button-next:after {
  display: none;
}
.client-wrap-slide-arrow li .swiper-button-prev {
  position: relative;
  right: 0;
}
.client-wrap-slide-arrow li .swiper-button-prev:after {
  display: none;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-slider .swiper-pagination {
  position: initial;
}
.blog-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--primaryColor);
}

.blog-card {
  background: #24231F;
  margin-bottom: 25px;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-card::before {
  background: rgba(36, 35, 31, 0.8);
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: var(--transition);
}
.blog-card::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  width: 100%;
  background: rgba(36, 35, 31, 0.8);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.blog-card .meta {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}
.blog-card .meta li {
  color: #9D9A97;
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.blog-card .meta li::before {
  content: "-";
  position: absolute;
  right: -10px;
  top: 0;
}
.blog-card .meta li:last-child::before {
  display: none;
}
.blog-card .meta li a {
  color: #B4B3B3;
  font-weight: 500;
}
.blog-card .meta li a:hover {
  color: var(--primaryColor);
}
.blog-card .meta li:last-child {
  margin-right: 0;
}
.blog-card .content {
  margin-top: 250px;
}
.blog-card .content h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}
.blog-card .content h3 a {
  color: var(--whiteColor);
}
.blog-card .content h3 a:hover {
  color: var(--primaryColor);
}
.blog-card .content .arrow-btn {
  color: #9D9A97;
  font-weight: 500;
  font-size: 15px;
  display: block;
  position: relative;
  padding-left: 30.5px;
}
.blog-card .content .arrow-btn img {
  color: var(--primaryColor);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -0.5px;
}
.blog-card .content .arrow-btn:hover {
  color: var(--primaryColor);
}
.blog-card .wrap-shape {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  transition: var(--transition);
}
.blog-card:hover::before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.blog-card:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.blog-card:hover .wrap-shape {
  opacity: 0;
  visibility: hidden;
}

.blog-area .section-title-wrap {
  max-width: 100%;
  padding-left: 0;
}
.blog-area .section-title-wrap .title {
  max-width: 570px;
  padding-left: 45px;
}
.blog-area.wrap-style .blog-search-box {
  width: 200px;
}

.blog-item {
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
}
.blog-item .image a {
  display: block;
}
.blog-item .content {
  background-color: var(--brownColor);
  padding: 25px 25px 25px 60px;
  max-width: 345px;
  position: absolute;
  left: 0;
  bottom: 20px;
  transition: var(--transition);
}
.blog-item .content .date {
  font-size: 14px;
  font-weight: 500;
  color: var(--primaryColor);
  writing-mode: vertical-lr;
  position: absolute;
  top: 25px;
  left: 20px;
}
.blog-item .content h3 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}
.blog-item .content h3 a {
  color: var(--whiteColor);
}
.blog-item .content h3 a:hover {
  color: var(--primaryColor);
}
.blog-item .content.wrap-color {
  background: #F4F4F4;
  transition: var(--transition);
}
.blog-item .content.wrap-color h3 a {
  color: var(--blackColor);
}
.blog-item:hover .content {
  left: 5px;
  bottom: 25px;
}
.blog-item:hover .content.wrap-color {
  background: var(--brownColor);
}
.blog-item:hover .content.wrap-color h3 a {
  color: var(--whiteColor);
}

.blog-search-box {
  width: 530px;
}
.blog-search-box .form-group {
  position: relative;
}
.blog-search-box .form-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blackColor);
  font-size: 18px;
}
.blog-search-box .form-group .form-control {
  display: inline-block;
  border: 1px solid #E7E0E0;
  background-color: var(--whiteColor);
  height: 60px;
  width: 100%;
  padding: 15px 20px 15px 45px;
  border-radius: 0;
  box-shadow: unset;
  outline: 0;
  font-size: 15px;
  color: var(--paragraphColor);
}
.blog-search-box .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-search-box .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.blog-search-box .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.blog-search-box .form-group .form-control:focus::placeholder {
  color: transparent;
}
.blog-search-box .form-group .form-select {
  display: inline-block;
  border: 1px solid #E7E0E0;
  background-color: var(--whiteColor);
  height: 60px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 0;
  box-shadow: unset;
  outline: 0;
  font-size: 15px;
  color: var(--paragraphColor);
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact-area.bg-white-wrap .contact-image img {
  min-height: 745px;
}
.contact-area.bg-white-wrap .contact-form-wrap .title span {
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 15px;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 8.8px;
  letter-spacing: 1.6px;
}
.contact-area.bg-white-wrap .contact-form-wrap .title h2 {
  color: var(--blackColor);
  margin-bottom: 0;
  font-weight: 400;
}
.contact-area.bg-white-wrap .contact-form-wrap form .form-group label {
  color: var(--blackColor);
}
.contact-area.bg-white-wrap .contact-form-wrap form .form-group .form-control {
  border-bottom: 1px solid #EDEDED;
  color: #9D9A97;
}
.contact-area.bg-white-wrap .contact-form-wrap form .form-group .form-control::-moz-placeholder {
  color: #9D9A97;
}
.contact-area.bg-white-wrap .contact-form-wrap form .form-group .form-control::placeholder {
  color: #9D9A97;
}
.contact-area.bg-white-wrap .contact-form-wrap form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-area.bg-white-wrap .contact-form-wrap form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.contact-area.bg-white-wrap .contact-info-list li {
  color: #6C6661;
}
.contact-area.bg-white-wrap .contact-info-list li a {
  color: #6C6661;
}
.contact-area.bg-white-wrap .contact-info-list li a:hover {
  color: var(--primaryColor);
}
.contact-area.bg-white-wrap .contact-info-list li .social li a {
  color: var(--blackColor);
}
.contact-area.bg-white-wrap .contact-info-list li .social li a:hover {
  color: var(--primaryColor);
}
.contact-area.bg-white-wrap .contact-shape1 {
  top: 2%;
  right: 8%;
  transform: translateY(-2%) translateX(-8%);
}
.contact-area.with-top-border .container {
  border-top: 1px dashed #646464;
}
.contact-area.with-top-border .contact-image img {
  min-height: 745px;
}
.contact-area.with-top-border .contact-form-wrap .title span {
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 15px;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 8.8px;
  letter-spacing: 1.6px;
}
.contact-area.with-top-border .contact-form-wrap .title h2 {
  color: var(--whiteColor);
  margin-bottom: 0;
  font-weight: 400;
}

.contact-image img {
  min-height: 775px;
}

.contact-form-wrap .title {
  max-width: 550px;
  margin-bottom: 35px;
}
.contact-form-wrap .title h2 {
  font-size: 40px;
  color: #E1DBD6;
  margin-bottom: 18px;
}
.contact-form-wrap .title h2 span {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--whiteColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.contact-form-wrap form .form-group {
  margin-bottom: 40px;
}
.contact-form-wrap form .form-group label {
  font-size: 14px;
  color: var(--whiteColor);
  letter-spacing: 1.3px;
  display: block;
  margin-bottom: 30px;
}
.contact-form-wrap form .form-group label span {
  background: var(--brown-gradient, linear-gradient(135deg, #D9A87A 0%, #C2875A 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.3px;
}
.contact-form-wrap form .form-group .form-control {
  background-color: transparent;
  display: inline-block;
  width: 100%;
  padding: 0 0 15px 0;
  color: #9D9A97;
  border: none;
  border-bottom: 1px solid #3A3835;
  box-shadow: unset;
  border-radius: 0;
  outline: 0;
}
.contact-form-wrap form .form-group .form-control::-moz-placeholder {
  color: #9D9A97;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form-wrap form .form-group .form-control::placeholder {
  color: #9D9A97;
  transition: var(--transition);
}
.contact-form-wrap form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-form-wrap form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.contact-form-wrap form .form-group textarea.form-control {
  min-height: auto;
}
.contact-form-wrap form .form-group .form-select {
  color: var(--blackColor) !important;
  background-position: right 0 center;
}
.contact-form-wrap form .default-btn {
  border: none;
}
.contact-form-wrap form .default-btn:hover {
  background-color: var(--brownColor);
}

.contact-info-list {
  padding-left: 30px;
  margin-bottom: 0;
}
.contact-info-list li {
  list-style-type: none;
  margin-bottom: 50px;
  color: #9D9A97;
}
.contact-info-list li:last-child {
  margin-bottom: 0;
}
.contact-info-list li span {
  color: var(--primaryColor);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}
.contact-info-list li a {
  color: #9D9A97;
  display: block;
  margin-bottom: 5px;
}
.contact-info-list li a:last-child {
  margin-bottom: 0;
}
.contact-info-list li a:hover {
  color: var(--primaryColor);
}
.contact-info-list li .social {
  padding-left: 0;
  display: flex;
}
.contact-info-list li .social li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 25px;
}
.contact-info-list li .social li:last-child {
  margin-right: 0;
}
.contact-info-list li .social li a {
  color: var(--whiteColor);
}
.contact-info-list li .social li a:hover {
  color: var(--primaryColor);
}

.contact-shape1 {
  position: absolute;
  top: 10%;
  right: 8%;
  transform: translateY(-10%) translateX(-8%);
  z-index: -1;
  opacity: 50%;
}

.map-area iframe {
  display: flex;
  width: 100%;
  height: 470px;
  border-radius: 2px;
}

/*================================================
Elevating Area CSS
=================================================*/
.elevating-area {
  overflow: hidden;
}
.elevating-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.elevating-content {
  position: relative;
  padding-right: 245px;
}
.elevating-content h2 {
  font-size: 80px;
  margin-bottom: 20px;
  font-weight: 600;
}
.elevating-content h3 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 400;
}
.elevating-content .elevating-video {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 170px;
}
.elevating-content .elevating-video .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  cursor: pointer;
}
.elevating-content .elevating-video .video-btn i {
  font-size: 35px;
  background: linear-gradient(135deg, rgba(216, 183, 152, 0.8) 0%, rgba(186, 141, 109, 0.8) 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.elevating-content .elevating-video img {
  animation-name: rotateme;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Funfacts Area CSS
=================================================*/
.col-lg-3:nth-child(2) .funfacts-card {
  padding-left: 25px;
}
.col-lg-3:nth-child(3) .funfacts-card {
  padding-left: 50px;
}
.col-lg-3:nth-child(4) .funfacts-card {
  padding-left: 145px;
}

.funfacts-card {
  margin-bottom: 25px;
}
.funfacts-card h2 {
  font-size: 45px;
  margin-bottom: 5px;
}
.funfacts-card h2.plus {
  position: relative;
  top: -3.5px;
}
.funfacts-card h2.text {
  position: relative;
  top: -3.5px;
  left: 2px;
}
.funfacts-card p {
  font-size: 15px;
  color: #9D9A97;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.col-lg-2:nth-child(1) .partner-item {
  border-right: none;
}
.col-lg-2:nth-child(2) .partner-item {
  border-right: none;
}
.col-lg-2:nth-child(3) .partner-item {
  border-right: none;
}
.col-lg-2:nth-child(4) .partner-item {
  border-right: none;
}
.col-lg-2:nth-child(5) .partner-item {
  border-right: none;
}

.partner-item {
  margin-bottom: 25px;
  border: 1px dashed #E7E0E0;
  padding: 85px 70px;
}
.partner-item.without-border {
  padding: 0;
  border: none;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 42.5%;
  background-color: var(--blackColor);
  z-index: -1;
}
.team-area.different-wrap-color::before {
  background: #F2EFEB;
}
.team-area.different-wrap-color .team-left-content .title h2 {
  color: var(--blackColor);
}
.team-area.different-wrap-color .team-left-content .team-card .team-social li a i {
  color: var(--primaryColor);
}
.team-area.different-wrap-color .team-card .team-image .content {
  background: #F2EFEB;
}
.team-area.different-wrap-color .team-card .team-image .content h3 {
  color: var(--blackColor);
}
.team-area.with-margin-top::before {
  display: none;
}
.team-area.with-margin-top .team-left-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.team-area.with-margin-top .team-left-content::before {
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 1050px;
  background: #F2EFEB;
  z-index: -1;
}
.team-area.with-margin-top .team-left-content .team-card {
  margin-top: 0;
}
.team-area.with-margin-top .team-card {
  margin-top: 0;
  margin-bottom: 25px;
}

.team-left-content {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 65px;
}
.team-left-content .title {
  position: relative;
  padding-left: 45px;
  margin-bottom: 40px;
}
.team-left-content .title span {
  font-weight: 500;
  color: var(--primaryColor);
  font-size: 15.7px;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 8.8px;
  letter-spacing: 1.6px;
}
.team-left-content .title h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.team-left-content .team-card .team-social li a i {
  color: var(--whiteColor);
}

.team-card {
  position: relative;
  padding-left: 40px;
  margin-top: 55px;
}
.team-card .team-image {
  position: relative;
}
.team-card .team-image .content {
  background-color: var(--blackColor);
  padding: 30px 25px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: 250px;
  width: 100%;
}
.team-card .team-image .content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.team-card .team-image .content span {
  font-size: 15px;
  display: block;
  margin-top: 8px;
  color: var(--primaryColor);
}
.team-card .team-social {
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.team-card .team-social li {
  list-style-type: none;
  display: block;
  margin-bottom: 20px;
}
.team-card .team-social li:last-child {
  margin-bottom: 0;
}
.team-card .team-social li a i {
  color: var(--primaryColor);
}

.team-right-content {
  padding-left: 20px;
}

/*================================================
Page Banner Area CSS
=================================================*/
.page-banner-area {
  margin-top: 30px;
}
.page-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.page-banner-inner {
  background: #F2EFEB;
  padding: 20px 30px;
}
.page-banner-inner .list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}
.page-banner-inner .list li {
  list-style-type: none;
  color: #7C756E;
  font-size: 14px;
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.page-banner-inner .list li a {
  color: var(--blackColor);
}
.page-banner-inner .list li a:hover {
  color: var(--primaryColor);
}
.page-banner-inner .list li::before {
  position: absolute;
  content: "";
  right: -17.5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #7C756E;
  height: 2px;
  width: 5px;
}
.page-banner-inner .list li:last-child {
  margin-right: 0;
}
.page-banner-inner .list li:last-child::before {
  display: none;
}

/*================================================
Box Style Area CSS
=================================================*/
.box-style-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.box-style-inner {
  background: #F2EFEB;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 170px;
  padding-bottom: 170px;
  padding-left: 55px;
  padding-right: 55px;
}
.box-style-inner h3 {
  font-size: 40px;
  font-weight: 400;
  max-width: 1045px;
  margin: auto;
  line-height: 1.4;
}
.box-style-inner .wrap-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

/*================================================
Projects Gallery Area CSS
=================================================*/
.projects-gallery-area {
  margin-top: 50px;
  overflow: hidden;
}
.projects-gallery-area .title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
}

.projects-gallery-slide-swiper {
  overflow: unset;
}
.projects-gallery-slide-swiper .swiper-wrapper {
  align-items: center;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area .section-title-wrap {
  max-width: 570px;
}
.faq-area .section-title-wrap span {
  top: 12.8px;
}

.faq-accordion .accordion__item {
  border: none;
  margin-bottom: 30px;
  background-color: transparent;
  border-radius: 0;
}
.faq-accordion .accordion__item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion__item .accordion__button {
  color: var(--blackColor);
  position: relative;
  text-align: start;
  box-shadow: unset;
  margin-bottom: 0;
  display: block;
  border: none;
  width: 100%;
  font-size: var(--fontSize);
  font-weight: 500;
  padding: 20px 70px 20px 30px;
  transition: var(--transition);
  background: #F2EFEB;
  border-radius: 0;
}
.faq-accordion .accordion__item .accordion__button::before {
  position: absolute;
  right: 20px;
  top: 28px;
}
.faq-accordion .accordion__item .accordion__panel {
  padding: 15px 0 0 30px;
}

/*================================================
Profile Authentication Area CSS
=================================================*/
.login-form {
  max-width: 550px;
  margin: auto;
}
.login-form .content {
  margin-bottom: 25px;
}
.login-form .content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-weight: 400;
}
.login-form .content h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  width: 100px;
  height: 2px;
}
.login-form .content h3 b {
  font-weight: 500;
}
.login-form .content p {
  margin-bottom: 0;
}
.login-form .form-group {
  margin-bottom: 25px;
}
.login-form .form-group label {
  display: block;
  margin-bottom: 2px;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 500;
}
.login-form .form-group .form-control {
  transition: var(--transition);
  border: none;
  border-bottom: 1px solid #EDEDED;
  background-color: transparent;
  color: var(--blackColor);
  border-radius: 0;
  box-shadow: unset;
  height: 55px;
  width: 100%;
  padding: 0;
}
.login-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.login-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.login-form .form-group .form-control:focus {
  border-color: var(--primaryColor);
  background-color: transparent;
}
.login-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.login-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.login-form .form-bottom {
  margin-bottom: 25px;
}
.login-form .form-bottom .form-check {
  color: var(--paragraphColor);
}
.login-form .form-bottom .form-check a {
  color: var(--primaryColor);
}
.login-form .form-bottom .form-check a:hover {
  text-decoration: underline;
}
.login-form .form-bottom .form-check .form-check-input {
  margin-top: 0.24em;
  box-shadow: unset !important;
  font-size: 15px;
}
.login-form .form-bottom .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.login-form .form-bottom .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.login-form .form-bottom .form-check .form-check-input:focus {
  border-color: var(--primaryColor);
}
.login-form .form-bottom .form-check .form-check-label {
  cursor: pointer;
}
.login-form .form-bottom .forgot-password {
  text-decoration: underline;
  transition: var(--transition);
}
.login-form .form-bottom .forgot-password:hover {
  color: var(--primaryColor);
}
.login-form .default-btn {
  display: block;
  width: 100%;
  border: none;
}
.login-form .text {
  margin-top: 20px;
}
.login-form .text p a {
  color: var(--blackColor);
  font-weight: 500;
}
.login-form .text p a:hover {
  color: var(--primaryColor);
}

.register-form {
  max-width: 550px;
  margin: auto;
}
.register-form .content {
  margin-bottom: 25px;
}
.register-form .content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-weight: 400;
}
.register-form .content h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  width: 100px;
  height: 2px;
}
.register-form .content h3 b {
  font-weight: 500;
}
.register-form .content p {
  margin-bottom: 0;
}
.register-form form .form-group {
  margin-bottom: 25px;
}
.register-form form .form-group label {
  display: block;
  margin-bottom: 2px;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 500;
}
.register-form form .form-group .form-control {
  transition: var(--transition);
  border: none;
  border-bottom: 1px solid #EDEDED;
  background-color: transparent;
  color: var(--blackColor);
  border-radius: 0;
  box-shadow: unset;
  height: 55px;
  width: 100%;
  padding: 0;
}
.register-form form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.register-form form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.register-form form .form-group .form-control:focus {
  border-color: var(--primaryColor);
  background-color: transparent;
}
.register-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.register-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.register-form form .default-btn {
  display: block;
  width: 100%;
  border: none;
}
.register-form form .alert-text {
  font-size: 15.5px;
  font-style: italic;
}
.register-form form .text {
  margin-top: 20px;
}
.register-form form .text p a {
  color: var(--blackColor);
  font-weight: 500;
}
.register-form form .text p a:hover {
  color: var(--primaryColor);
}

.forgot-password-box {
  padding: 50px;
  max-width: 650px;
  background-color: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
  margin-left: auto;
  margin-right: auto;
}
.forgot-password-box label {
  display: block;
  margin-bottom: 12px;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 500;
}
.forgot-password-box .form-control {
  transition: var(--transition);
  border: 1px solid #f9f9f9;
  background-color: #f9f9f9;
  font-size: 15px;
  color: var(--blackColor);
  border-radius: 0;
  box-shadow: unset;
  height: 55px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.forgot-password-box .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.forgot-password-box .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.forgot-password-box .form-control:focus {
  border-color: var(--primaryColor);
  background-color: transparent;
}
.forgot-password-box .form-control:focus::-moz-placeholder {
  color: transparent;
}
.forgot-password-box .form-control:focus::placeholder {
  color: transparent;
}
.forgot-password-box .default-btn {
  margin-top: 25px;
  border: none;
}

/*================================================
Privacy Policy Area CSS
=================================================*/
.privacy-policy-content .h1, .privacy-policy-content .h2, .privacy-policy-content .h3, .privacy-policy-content .h4, .privacy-policy-content .h5, .privacy-policy-content .h6, .privacy-policy-content h1, .privacy-policy-content h2, .privacy-policy-content h3, .privacy-policy-content h4, .privacy-policy-content h5, .privacy-policy-content h6 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}
.privacy-policy-content .h1:not(:first-child), .privacy-policy-content .h2:not(:first-child), .privacy-policy-content .h3:not(:first-child), .privacy-policy-content .h4:not(:first-child), .privacy-policy-content .h5:not(:first-child), .privacy-policy-content .h6:not(:first-child), .privacy-policy-content h1:not(:first-child), .privacy-policy-content h2:not(:first-child), .privacy-policy-content h3:not(:first-child), .privacy-policy-content h4:not(:first-child), .privacy-policy-content h5:not(:first-child), .privacy-policy-content h6:not(:first-child) {
  margin-top: 30px;
}
.privacy-policy-content strong {
  color: var(--blackColor);
  font-weight: 500;
}
.privacy-policy-content p a {
  color: var(--primaryColor);
}
.privacy-policy-content p a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li, .privacy-policy-content ol li {
  color: var(--paragraphColor);
  margin-bottom: 20px;
}
.privacy-policy-content ul li a, .privacy-policy-content ol li a {
  color: var(--primaryColor);
}
.privacy-policy-content ul li a:hover, .privacy-policy-content ol li a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li:last-child, .privacy-policy-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Terms & Conditions Area CSS
=================================================*/
.terms-conditions-content .h1, .terms-conditions-content .h2, .terms-conditions-content .h3, .terms-conditions-content .h4, .terms-conditions-content .h5, .terms-conditions-content .h6, .terms-conditions-content h1, .terms-conditions-content h2, .terms-conditions-content h3, .terms-conditions-content h4, .terms-conditions-content h5, .terms-conditions-content h6 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}
.terms-conditions-content .h1:not(:first-child), .terms-conditions-content .h2:not(:first-child), .terms-conditions-content .h3:not(:first-child), .terms-conditions-content .h4:not(:first-child), .terms-conditions-content .h5:not(:first-child), .terms-conditions-content .h6:not(:first-child), .terms-conditions-content h1:not(:first-child), .terms-conditions-content h2:not(:first-child), .terms-conditions-content h3:not(:first-child), .terms-conditions-content h4:not(:first-child), .terms-conditions-content h5:not(:first-child), .terms-conditions-content h6:not(:first-child) {
  margin-top: 30px;
}
.terms-conditions-content strong {
  color: var(--blackColor);
  font-weight: 500;
}
.terms-conditions-content p a {
  color: var(--primaryColor);
}
.terms-conditions-content p a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li, .terms-conditions-content ol li {
  color: var(--paragraphColor);
  margin-bottom: 20px;
}
.terms-conditions-content ul li a, .terms-conditions-content ol li a {
  color: var(--primaryColor);
}
.terms-conditions-content ul li a:hover, .terms-conditions-content ol li a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li:last-child, .terms-conditions-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Not Found Area CSS
=================================================*/
.not-found-content img {
  margin-bottom: 35px;
}
.not-found-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}
.not-found-content .default-btn {
  margin-top: 15px;
}

/*================================================
Widget Area CSS
=================================================*/
.left-sidebar .widget-area {
  margin-left: 0;
  margin-top: 0;
  margin-right: 20px;
}

.widget-area {
  background: #F4F4F4;
  padding: 40px;
  margin-left: 20px;
}
.widget-area .widget {
  margin-bottom: 55px;
}
.widget-area .widget .widget-title {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 400;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form .search-field {
  display: inline-block;
  height: 60px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #E7E0E0;
  font-weight: 400;
  outline: 0;
  box-shadow: unset;
  color: var(--paragraphColor);
  padding: 15px 25px 15px 50px;
  width: 100%;
  font-size: 15px;
}
.widget-area .widget_search form .search-field::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.widget-area .widget_search form .search-field::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.widget-area .widget_search form .search-field:focus::-moz-placeholder {
  color: transparent;
}
.widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}
.widget-area .widget_search form button {
  border: none;
  padding: 0;
  background-color: transparent;
  font-size: 22px;
  color: var(--blackColor);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  transition: var(--transition);
}
.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_categories ul li {
  font-size: 14px;
  margin-bottom: 25px;
  border-top: 1px dashed #E7E0E0;
  padding-top: 25px;
  letter-spacing: 1.4px;
  display: flex;
  justify-content: space-between;
}
.widget-area .widget_categories ul li a {
  color: var(--blackColor);
  font-weight: 500;
}
.widget-area .widget_categories ul li a:hover {
  color: var(--primaryColor);
}
.widget-area .widget_categories ul li span img {
  max-width: 20px;
}
.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_traz_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 25px;
  border-bottom: 1px dashed #E7E0E0;
  padding-bottom: 25px;
}
.widget-area .widget_traz_posts_thumb .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.widget-area .widget_traz_posts_thumb .item .thumb {
  float: left;
  overflow: hidden;
  display: block;
  width: 90px;
  height: 90px;
  margin-right: 20px;
}
.widget-area .widget_traz_posts_thumb .item .thumb .fullimage {
  width: 90px;
  height: 90px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget-area .widget_traz_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(/images/blog/blog1.jpg);
}
.widget-area .widget_traz_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(/images/blog/blog2.jpg);
}
.widget-area .widget_traz_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 4.5px;
}
.widget-area .widget_traz_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 17px;
  font-weight: 500;
}
.widget-area .widget_traz_posts_thumb .item .info .title a {
  display: inline-block;
}
.widget-area .widget_traz_posts_thumb .item .info .title a:hover {
  color: var(--primaryColor);
}
.widget-area .widget_traz_posts_thumb .item .info span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--primaryColor);
}
.widget-area .widget_tag_cloud .tagcloud {
  margin-bottom: -10px;
}
.widget-area .widget_tag_cloud .tagcloud a {
  padding: 10px 15px;
  display: inline-block;
  background-color: var(--whiteColor);
  color: var(--blackColor);
  margin-right: 8px;
  margin-bottom: 10px;
  font-size: 15.5px;
  font-weight: 400;
}
.widget-area .widget_tag_cloud .tagcloud a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
  text-align: center;
}
.pagination-area .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-area .nav-links .next i, .pagination-area .nav-links .prev i {
  font-size: 30px;
  transition: var(--transition);
  color: var(--paragraphColor);
}
.pagination-area .nav-links .next i:hover, .pagination-area .nav-links .prev i:hover {
  color: var(--primaryColor);
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  display: inline-block;
  background: #F2EFEB;
  color: var(--blackColor);
  transition: var(--transition);
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.32px;
  margin-left: 8px;
  margin-right: 8px;
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

.full-bg-black-color {
  background-color: var(--brownColor);
}
.full-bg-black-color .page-banner-inner {
  background: #423E3A;
}
.full-bg-black-color .page-banner-inner .list li {
  color: #A8A39F;
}
.full-bg-black-color .page-banner-inner .list li a {
  color: var(--whiteColor) !important;
}
.full-bg-black-color .page-banner-inner .list li a:hover {
  color: var(--primaryColor) !important;
}
.full-bg-black-color .projects-area.bg-wrap-with-black {
  background-color: transparent;
}
.full-bg-black-color .projects-area.bg-wrap-with-black .pagination-area .page-numbers {
  background: #423E3A;
  color: #B0ADA4;
}
.full-bg-black-color .projects-area.bg-wrap-with-black .pagination-area .page-numbers:hover, .full-bg-black-color .projects-area.bg-wrap-with-black .pagination-area .page-numbers.current {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

.pricing-plan {
  background-color: #F2EFEB;
  padding: 50px 40px;
  margin-bottom: 25px;
}
.pricing-plan h4 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primaryColor);
  font-size: 17px;
}
.pricing-plan p {
  font-size: 15px;
}
.pricing-plan h2 {
  font-size: 35px;
  margin: 15px 0 30px;
}
.pricing-plan ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pricing-plan ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.pricing-plan ul li:last-child {
  margin-bottom: 0;
}
.pricing-plan ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primaryColor);
  font-size: 20px;
  line-height: 1;
}
.pricing-plan .default-btn {
  margin-top: 35px;
}

.author-content {
  margin-bottom: 50px;
}
.author-content img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
.author-content .content {
  max-width: 450px;
  margin: auto;
}
.author-content .content h3 {
  font-size: 20px;
}
.author-content .content p {
  font-size: 15px;
}
.author-content .content ul {
  list-style-type: none;
  padding: 0;
  margin: 25px 0 0;
}
.author-content .content ul li {
  display: inline-block;
  margin-right: 10px;
}
.author-content .content ul li:last-child {
  margin-right: 0;
}
.author-content .content ul li a {
  background-color: #F2EFEB;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100%;
  line-height: 30px;
  font-size: 16px;
}
.author-content .content ul li a:hover {
  background-color: var(--primaryColor);
  color: #fff;
}

.search-title {
  margin-bottom: 30px;
}/*# sourceMappingURL=style.css.map */