
/*----------------------------------------------------
@File: Default 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.
---------------------------------------------------- */
/*=====================================================================
@Template Name: Docy
@Version: 1.1.2

@Default Styles

Table of Content:
01/ Variables
02/ predefine
03/ header
04/ banner
05/ about
06/ portfolio
07/ team
08/ blog
09/ service
10/ blog
11/ contact 
12/ footer 


=====================================================================*/
/*----------------------------------------------------*/
@import url("css2.css");
:root {
  --playfair: "Playfair Display", serif;
  --ibm: "IBM Plex Sans", sans-serif;
  --kalam: "Kalam", cursive;
  --roboto: "Roboto", sans-serif;
  --sacramento: "Sacramento", cursive;
  --h_title: #1d2746;
  --p_color: #3d3d4e;
  --black_25: #f9f9f9;
  --black_50: #e8e6e6;
  --black_100: #ccccce;
  --black_150: #c8ccd0;
  --black_200: #b9b9ba;
  --black_300: #9d9ca0;
  --black_350: #9199a1;
  --black_400: #8a898d;
  --black_500: #747376;
  --black_600: #5c5b5e;
  --black_700: #464547;
  --black_750: #2f3337;
  --black_800: #242729;
  --black_900: #17161a;
  --brand_color: #ef4953;
  --brand_color_50: #fde9ea;
  --brand_color_100: #fbd6d8;
  --brand_color_200: #f8b0b5;
  --brand_color_300: #f58a92;
  --brand_color_400: #f2646f;
  --brand_color_500: #ef4953;
  --brand_color_600: #d93f4a;
  --baseColor2: #4a6ee0;
  --hover3: #c6e7f7;
  --clr-black: #000000;
  --white: #ffffff;
  --white_100: #F5F5F5;
}

/*font Variables*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p font-size: fs-rem(12px);
 * e.g. p {@include fontSize(12px);}
 *
 */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*--------------------------------------
	- Base
----------------------------------------*/
/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {@include fontSize(12px);}
 *
 */
.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/*--------------------------------------
	- Utilities
----------------------------------------*/
/*---------------------------------------------------- */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.section-padding {
  padding: 80px 0;
}
@media screen and (min-width: 992px) {
  .section-padding {
    padding: 120px 0;
  }
}

.section-padding-xl {
  padding: 90px 0;
}
@media screen and (min-width: 992px) {
  .section-padding-xl {
    padding: 150px 0;
  }
}

.section-tag :is(h2, h3, h4, h5, h6, p, span, .row) {
  padding-left: 13px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
html {
  height: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: var(--brand_color);
}
a * {
  transition: all 0.3s ease-in-out;
}
a:hover h1,
a:hover h2,
a:hover h3,
a:hover h4,
a:hover h5,
a:hover h6 {
  color: var(--brand_color);
}

body {
  line-height: 1.9;
  font-size: 16px;
  height: 100%;
  font-family: var(--ibm);
  font-weight: 400;
  color: var(--p_color);
  letter-spacing: 0.15px;
  position: relative;
}

:focus {
  outline: none;
}

a {
  color: var(--brand_color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700;
  font-family: var(--playfair);
  color: var(--black_900);
  margin-bottom: 15px;
}

h1 a,
h2 a,
h3 > a,
h4 a,
h5 a,
h6 a {
  color: var(--h_title);
}

h1 {
  font-size: 75px;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 48px;
    line-height: 55px;
  }
}

h3 {
  font-size: 36px;
  line-height: 42px;
}

h4 {
  font-size: 24px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
  line-height: 28px;
}

h6 {
  font-size: 18px;
  line-height: 26px;
}

img {
  max-width: 100%;
}

figure {
  padding-top: 5px;
  padding-bottom: 5px;
  clear: both;
  border: none;
}

figure figcaption {
  color: rgba(0, 0, 0, 0.54);
  line-height: 20px;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  max-width: 728px;
  margin-right: auto;
}

video {
  max-width: 100%;
}

table tr td p:last-child {
  margin-bottom: 0;
}

pre[class*=language-] > code {
  border-left: 5px solid rgba(239, 72, 83, 0.8);
}

.form-check {
  position: relative;
  display: block;
}

/** === Scrollbar === **/
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 30px;
}

/** === Predefined Global Classes === **/
.ibm {
  font-family: var(--ibm);
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

button:focus {
  outline: none;
}

/** === List style === **/
ul.list-style {
  margin-bottom: 2rem;
}

ul.list-style li {
  margin-bottom: 0.5rem;
  list-style-type: circle;
}

ul.list-style li:last-child {
  margin-bottom: 0;
}

/** === Key === **/
.key,
kbd {
  line-height: 0.95rem;
  border: 1px solid #ddd;
  color: #6b707f;
}

.key,
kbd,
p .key,
p kbd {
  display: inline;
  display: inline-block;
  min-width: 1em;
  padding: 0.5em 0.6em 0.4em;
  margin: 2px;
  font-weight: 400;
  font-size: 0.85rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
  text-decoration: none;
  line-height: 0.6rem;
  -moz-border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  border-radius: 0.3em;
  cursor: default;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background: #fff;
  border: 1px solid #ddd;
}

.form-check-input:focus {
  border-color: rgba(var(--brand_color), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--brand_color), 0.25);
}
.form-check-input:checked {
  background-color: var(--brand_color);
  border-color: var(--brand_color);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--brand_color);
}

/*===== section title scss ======*/
.border-top,
.border-bottom,
.border-start,
.border-end {
  border-color: #3d3d4e !important;
}

.bg_color {
  background: #fafcfd;
}

.f_bg_color {
  background: #f6fbfc;
}

.bg-disable {
  background-color: #fafafa;
}

.bg-muted {
  background-color: #f5f5f5 !important;
}

/** === Back to Top Button === **/
#back-to-top {
  display: inline-block;
  background-color: rgba(220, 220, 220, 0.8);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#back-to-top::after {
  content: "2";
  font-family: eleganticons;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #000;
}

#back-to-top:hover {
  cursor: pointer;
  background-color: #333;
}

#back-to-top:hover::after {
  color: #fff;
}

#back-to-top:active {
  background-color: #555;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.box_pad {
  max-width: 100%;
  padding: 0 60px;
}

.visible {
  opacity: 1 !important;
}

.round-stroke-title {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.round-stroke-title::after {
  content: "";
  height: 128%;
  width: 100%;
  background-image: url(../image/round-stroke.png);
  background-size: contain;
  background-position: center;
  top: -3px;
  left: -10px;
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
}

.line-stroke-title, .line-stroke-title-2 {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.line-stroke-title.animated::after, .animated.line-stroke-title-2::after {
  transform: translateX(-50%) scaleY(1);
}
.line-stroke-title::after, .line-stroke-title-2::after {
  content: "";
  height: 37%;
  width: 101%;
  background: var(--brand_color);
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom;
  position: absolute;
  z-index: -1;
  bottom: 10px;
  transition: transform 0.7s linear;
  transition-delay: 0.7s;
}

.line-stroke-title-2::after {
  opacity: 0.3;
  bottom: -1px;
}

/** ===== section title scss ====== **/
.section-title .red {
  color: var(--brand_color);
}
.section-title .subtitle {
  display: inline-block;
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title h2 {
  font-family: var(--playfair);
  font-size: 36px;
  font-weight: 700;
  line-height: 55px;
  color: var(--black_900);
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .section-title h2 {
    font-size: 42px;
  }
}

.body_wrapper {
  overflow: hidden;
}

/*================ preloader css ====================*/
#preloader {
  background: #fff;
  height: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#preloader p {
  color: var(--p_color);
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}
#preloader .head {
  color: var(--h_title);
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 5.2px;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--ibm);
  margin: 5% 0 1% 0;
  padding: 0;
}
#preloader .loading {
  display: flex;
}
#preloader .ctn-preloader {
  padding-left: 15px;
  padding-right: 15px;
}
#preloader .spinner {
  animation: spinner 3s infinite linear;
  border-radius: 50%;
  border: 3px solid #f1f6f8;
  border-left-color: var(--brand_color);
  border-top-color: var(--brand_color);
  margin: 0 auto 0em auto;
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: -40px;
  top: -40px;
}
#preloader .spinner:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 6px solid #fff;
  box-shadow: 0 0 20px 0 rgba(4, 46, 56, 0.2);
  background: var(--brand_color);
  position: absolute;
  right: 31px;
  top: 41px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  #preloader .spinner:before {
    top: 18px;
  }
}
#preloader .round_spinner {
  border-width: 1px;
  border-color: rgb(238, 243, 244);
  border-style: solid;
  border-radius: 50%;
  background-color: rgb(253, 253, 253);
  box-shadow: 0 0 100px 0 rgba(4, 46, 56, 0.14);
  width: 248px;
  height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto 80px;
}
@media (max-width: 576px) {
  #preloader .round_spinner {
    width: 155px;
    height: 155px;
  }
}
#preloader .round_spinner h4 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--h_title);
}
#preloader .round_spinner h4 span {
  font-weight: 700;
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes slideInnew {
  0% {
    opacity: 0;
    -webkit-transform: translate(50px, -50px);
    transform: translate(50px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes slideInnew {
  0% {
    opacity: 0;
    -webkit-transform: translate(50px, -50px);
    -ms-transform: translate(50px, -50px);
    transform: translate(50px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes slideInnewRotate {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px) rotate(-21.71deg);
    transform: translate(80px, -80px) rotate(-21.71deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-21.71deg);
    transform: translate(0, 0) rotate(-21.71deg);
  }
}
@keyframes slideInnewRotate {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px) rotate(-21.71deg);
    -ms-transform: translate(80px, -80px) rotate(-21.71deg);
    transform: translate(80px, -80px) rotate(-21.71deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-21.71deg);
    -ms-transform: translate(0, 0) rotate(-21.71deg);
    transform: translate(0, 0) rotate(-21.71deg);
  }
}
.slideInnew {
  -webkit-animation-name: slideInnew;
  animation-name: slideInnew;
}

.slideInnewRotate {
  -webkit-animation-name: slideInnewRotate;
  animation-name: slideInnewRotate;
}

.dbl-arrow {
  display: inline-block;
}
.dbl-arrow .arrow-cont {
  cursor: pointer;
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.dbl-arrow .arrow-cont i {
  position: absolute;
  bottom: 0;
  margin-left: 0;
  background-size: contain;
  top: 5px;
  left: 0%;
}
.dbl-arrow .arrow-cont .second {
  margin-left: 8px;
}
.dbl-arrow:hover i {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.dbl-arrow:hover i.first {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.round-box {
  padding: 40px;
  border-radius: 20px;
}

.scroll-down-one {
  display: inline-block;
}
.scroll-down-one .circle {
  height: 25px;
  width: 18px;
  border-radius: 9px;
  position: relative;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.scroll-down-one .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 6px;
  width: 1px;
  background-color: #fff;
}
.scroll-down-one .arrow-cont {
  cursor: pointer;
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
}
.scroll-down-one .arrow-cont i {
  position: absolute;
  bottom: 0;
  background-size: contain;
  top: 2px;
  left: 0%;
  font-size: 17px;
  color: #fff;
}
.scroll-down-one .arrow-cont i:nth-child(2) {
  margin-top: 5.5px;
}
.scroll-down-one .arrow-cont i:nth-child(3) {
  margin-top: 11.5px;
}
.scroll-down-one:hover i {
  animation-name: bounceAlphaUpper;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.scroll-down-one:hover i:nth-child(1) {
  animation-delay: 0.4s;
}
.scroll-down-one:hover i:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes bounceAlpha {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateX(10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateX(-10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes bounceAlphaUpper {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.circle-item {
  width: 39px;
  height: 39px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.circle-spinner {
  width: 45px;
  height: 45px;
  top: -5px;
  right: 5px;
  position: relative;
}
.circle-spinner .path {
  stroke: var(--white);
  stroke-linecap: round;
  animation: dash 5.35s linear infinite;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 130, 150;
    stroke-dashoffset: 0;
  }
}
@media screen and (min-width: 1200px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}

.bg-white {
  background: var(--white);
}

.bg-white-100 {
  background: var(--white_100);
}

.z-1 {
  z-index: 1;
}

.z-n1 {
  z-index: -1;
}

@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgb(217, 44, 10);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@-webkit-keyframes footerMoveOne {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}
@keyframes footerMoveOne {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.theme-btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  font-family: var(--ibm);
  border-radius: 5px;
  background: var(--brand_color);
  display: inline-block;
  padding: 10px 25px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.18s ease-in-out;
  border: 1px solid var(--brand_color);
}
.theme-btn:hover {
  background-color: #eb3a17;
  border-color: #eb3a17;
  color: var(--white);
}
.theme-btn:hover i:not(.left-icon) {
  transform: translateX(4px);
}
.theme-btn.btn-small {
  padding: 6px 20px;
}
.theme-btn.btn-small-two {
  padding: 5px 10px;
}
.theme-btn.btn-big {
  padding: 12.5px 30px;
}
.theme-btn.btn-big-two {
  padding: 20px 25px;
}
.theme-btn.theme-btn-outline {
  border-color: var(--black_50);
  border-radius: 5px;
  background-color: transparent;
  color: #17161a;
}
.theme-btn.theme-btn-outline.btn-outline-black {
  border-color: var(--black_200);
}
.theme-btn.theme-btn-outline:hover {
  background-color: var(--black_800);
  color: #fff;
}
.theme-btn.theme-btn-outline-white {
  border-color: rgba(249, 249, 249, 0.26);
  border-radius: 5px;
  background-color: transparent;
  color: var(--white);
}
.theme-btn.theme-btn-outline-white:hover {
  background-color: var(--white);
  color: #17161A;
  border-color: var(--white);
}
.theme-btn i {
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}
.theme-btn.theme-btn-alt {
  background-color: #fff;
  color: var(--brand_color);
  border-color: #fff;
}
.theme-btn.theme-btn-alt:hover {
  background-color: var(--brand_color);
  color: #fff;
  border-color: var(--brand_color);
}

.btn {
  --btn-py: 12px;
  --btn-px: 30px;
  --btn-radius: 5px;
  --btn-bw: 1px;
  --btn-bs: solid;
  position: relative;
  font-family: var(--btn-ff);
  font-size: var(--btn-fs);
  font-weight: var(--fw-400);
  line-height: 1.5;
  background: var(--btn-bg);
  color: var(--btn-clr);
  border: var(--btn-bw, var(--border-width)) var(--btn-bs, var(--border-style)) var(--btn-bc, var(--btn-bg));
  text-transform: capitalize;
  text-decoration: none;
  border-radius: var(--btn-radius, var(--radius));
  padding: var(--btn-py) var(--btn-px);
  margin: var(--btn-mx) var(--btn-mx);
  display: inline-block;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  text-transform: uppercase;
}
.btn:hover {
  color: var(--btn-clr);
}
.btn-white {
  --btn-bg: var(--white);
  --btn-clr: var(--brand_color);
  --btn-bc: var(--white);
}
.btn-white:hover {
  --btn-clr: var(--white);
  --btn-bg: var(--brand_color);
  --btn-bc: var(--brand_color);
}
.btn-white:focus {
  outline: 0;
  box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
}
.btn-white-100 {
  --btn-bg: var(--white_100);
  --btn-clr: var(--black_900);
  --btn-bc: #ccccce;
}
.btn-white-100:hover {
  --btn-clr: var(--white);
  --btn-bg: var(--brand_color);
  --btn-bc: transparent;
}
.btn-white-100:focus {
  outline: 0;
  box-shadow: 0 0 0 0.4rem rgba(230, 47, 11, 0.5);
}
.btn-black {
  --btn-bg: #000000;
  --btn-clr: var(--white);
  --btn-bc: #000000;
}
.btn-black:hover {
  --btn-clr: var(--white);
  --btn-bg: var(--brand_color);
  --btn-bc: var(--brand_color);
}
.btn-black:focus {
  outline: 0;
  box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
}
.btn-red {
  --btn-bg: linear-gradient(180deg, #e62f0b 0%, #bf2f13 100%);
  --btn-clr: var(--white);
  --btn-bc: var(--brand_color);
}
.btn-red:hover {
  --btn-clr: var(--white);
  --btn-bg: linear-gradient(180deg, #e23e1d 0%, #c54329 100%);
  --btn-bc: var(--brand_color);
}
.btn-red:focus {
  outline: 0;
  box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.5);
}
.btn-outline-black {
  --btn-clr: var(--black_900);
  --btn-bc: var(--black_900);
}
.btn-outline-black:hover {
  --btn-clr: var(--brand_color);
  --btn-bg: transparent;
  --btn-bc: var(--brand_color);
}
.btn-outline-black:focus {
  outline: 0;
  box-shadow: 0 0 0 0.4rem rgba(23, 22, 26, 0.5);
}
.btn-outline-white {
  --btn-clr: var(--white);
  --btn-bc: var(--white);
}
.btn-outline-white:hover {
  --btn-clr: var(--brand_color);
  --btn-bg: var(--white);
  --btn-bc: var(--white);
}
.btn-outline-white:focus {
  outline: 0;
  box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
}
.btn-outline-red {
  --btn-clr: var(--brand_color);
  --btn-bc: var(--black_50);
}
.btn-outline-red:hover {
  --btn-clr: var(--white);
  --btn-bg: linear-gradient(180deg, #e62f0b 0%, #bf2f13 100%);
  --btn-bc: var(--brand_color);
}
.btn-outline-red:focus {
  outline: 0;
  box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
}

.theme-btn-2 {
  color: #17161a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  border-bottom: 1px solid var(--brand_color);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.theme-btn-2::before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--brand_color);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}
.theme-btn-2:hover {
  border-color: transparent;
  color: var(--white);
}
.theme-btn-2:hover::before {
  height: 100%;
}

.line-arrow-btn {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  font-family: var(--ibm);
  color: var(--white);
  position: relative;
  z-index: 2;
  padding-top: 3px;
}
.line-arrow-btn i {
  margin-left: 10px;
}
.line-arrow-btn:hover::before {
  height: 100%;
}
.line-arrow-btn::before {
  content: "";
  bottom: -2px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--brand_color);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*================= Top header area css ===============*/
/*================= header area css ===============*/
.navbar {
  border: 0;
  border-radius: 0;
  padding: 0;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 20;
  position: fixed;
}
@media (min-width: 1400px) {
  .navbar .custom-container {
    max-width: 1475px !important;
  }
}

.menu_one {
  background: transparent;
  transition: all 0.2s linear;
  padding: 25px 0;
}

.header_logo img:not(.main_logo),
.header_logo img.sticky_logo {
  display: none;
}
.header_logo img.main_logo {
  display: block;
}

.menu > .nav-item {
  transition: all 0.3s linear;
  padding: 10px 0;
  border-bottom: 1px solid rgba(237, 237, 237, 0.5);
}
.menu > .nav-item > .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  padding: 0;
  position: relative;
}
.menu > .nav-item > .nav-link::after {
  display: none;
}
.menu > .nav-item.submenu .dropdown-menu {
  padding: 5px 0 5px 20px;
  border: 0;
  box-shadow: none;
}
.menu > .nav-item.submenu .dropdown-menu > .nav-item .nav-link {
  color: rgba(0, 0, 0, 0.6588235294);
  font-size: 14px;
  font-weight: 400;
  padding: 5px 0;
}
.menu > .nav-item.submenu .dropdown-menu > .nav-item:hover > .nav-link, .menu > .nav-item.submenu .dropdown-menu > .nav-item.active > .nav-link {
  color: var(--brand_color);
}
.menu > .nav-item.active > .nav-link, .menu > .nav-item:hover > .nav-link {
  color: var(--brand_color);
}
.menu > .nav-item.active .mobile_dropdown_icon, .menu > .nav-item:hover .mobile_dropdown_icon {
  color: var(--brand_color);
}
.menu > .nav-item .mobile_dropdown_icon {
  position: absolute;
  right: 0;
  top: 0;
  color: #6b707f;
  line-height: 42px;
  font-size: 20px;
  display: inline-block;
  opacity: 0.6;
  cursor: pointer;
}
.menu > .nav-item .mobile_dropdown_icon.active::before {
  content: "2";
  transition: all 0.2s linear;
}

.mobile-dark-mode ion-icon {
  font-size: 26px;
  color: #9fa6ad;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: 55px;
  top: 32px;
  transform: translateY(-48%) rotate(235deg);
}
.mobile-dark-mode ion-icon.dark-mode {
  display: none;
}
.mobile-dark-mode input {
  display: none;
}

.body_dark .right-nav .js-darkmode-btn .day ion-icon {
  color: #fff;
}
.body_dark .right-nav .js-darkmode-btn .night ion-icon {
  color: var(--brand_color);
}

.right-nav {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .right-nav {
    margin-left: 80px;
  }
}
.right-nav ion-icon {
  font-size: 23px;
  color: #9fa6ad;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.right-nav ion-icon:hover {
  color: #7d848d;
}

:is(.js-darkmode-btn, .js-darkmode-btn2) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 72px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 10px;
  color: #fff;
  border-radius: 24px;
  height: 36px;
}
@media screen and (min-width: 768px) {
  :is(.js-darkmode-btn, .js-darkmode-btn2) {
    margin-right: 30px;
  }
}
:is(.js-darkmode-btn, .js-darkmode-btn2) .day ion-icon {
  color: var(--brand_color);
}
:is(.js-darkmode-btn, .js-darkmode-btn2) .night ion-icon {
  color: #fff;
}

:is(.js-darkmode-btn, .js-darkmode-btn2) label {
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

:is(.js-darkmode-btn, .js-darkmode-btn2) .ball {
  height: 30px;
  width: 30px;
  position: absolute;
  background-color: #fafafa;
  border-radius: 50%;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  cursor: default;
  transition: all 0.3s linear 0s;
  z-index: 1;
}

:is(.js-darkmode-btn, .js-darkmode-btn2) ion-icon {
  font-size: 16px;
  transition: all 0.3s linear 0s;
}

:is(.js-darkmode-btn, .js-darkmode-btn2) input {
  display: none;
}

.mobile_menu_left {
  display: flex;
}
.mobile_menu_left .mobile_menu_btn {
  padding: 0;
  margin: 0;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0;
}

/*================= header area css ===============*/
/*=========== dk_menu css ===========*/
/*=========== dk_menu css ===========*/
@media (max-width: 991px) {
  .display_none {
    display: none;
  }
}

.sticky-nav-doc .navbar-brand img + img {
  display: none;
}
.sticky-nav-doc .menu_toggle .hamburger span {
  background: #1d2746;
}

.mobile_main_menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 13px 0;
}
.mobile_main_menu .mobile_menu_left {
  display: flex;
}
.mobile_main_menu .nav_btn {
  margin: 0;
}
.mobile_main_menu.navbar_fixed {
  box-shadow: 0 4px 10px 0 rgba(239, 72, 83, 0.06);
  background: #fff;
  transition: all 0.2s, top 0.4s linear;
}
.mobile_main_menu.navbar_fixed .nav_btn {
  border-color: #6b707f;
}
.mobile_main_menu.navbar_fixed .nav_btn:hover {
  border-color: var(--brand_color);
}

/*============ End dark bg menu css ==============*/
.navbar_fixed {
  position: fixed;
  z-index: 35;
  padding: 10px 0;
}
.navbar_fixed.menu_one {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: all 0.2s, top 0.4s linear;
  margin-top: 0;
}

.navbar_fixed .search-input,
.white-navbar .search-input {
  visibility: visible;
  opacity: 1;
}
.navbar_fixed .right-nav .js-darkmode-btn,
.white-navbar .right-nav .js-darkmode-btn {
  background: #1d2746;
}
.navbar_fixed .header_logo img:not(.sticky_logo),
.white-navbar .header_logo img:not(.sticky_logo) {
  display: none;
}
.navbar_fixed .header_logo img.sticky_logo,
.white-navbar .header_logo img.sticky_logo {
  display: block;
}
.navbar_fixed .menu_toggle .hamburger span,
.navbar_fixed .menu_toggle .hamburger-cross span,
.white-navbar .menu_toggle .hamburger span,
.white-navbar .menu_toggle .hamburger-cross span {
  background: var(--black_800);
}
.navbar_fixed .theme-btn.theme-btn-alt,
.white-navbar .theme-btn.theme-btn-alt {
  border-color: var(--brand_color);
}

.sticky_nav.navbar_fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.sticky_nav.navbar_fixed .menu_one {
  box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.06);
  background: #fff;
  padding: 15px 0;
}
.sticky_nav.navbar_fixed .menu_toggle {
  background-color: rgba(54, 53, 53, 0.11);
}

.header-area .right-nav .white_btn .menu_toggle {
  background: #fff;
}

.navbar .right-nav .dark_btn .menu_toggle {
  background-color: rgba(54, 53, 53, 0.11);
}
.navbar .right-nav .dark_btn .menu_toggle .hamburger span {
  background: var(--black_800);
}

.sticky-nav.navbar_fixed .menu_toggle {
  background-color: rgba(54, 53, 53, 0.11);
}
.sticky-nav.navbar_fixed .menu_toggle:hover {
  background-color: rgba(54, 53, 53, 0.2);
}

.navbar-toggler {
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.header_logo {
  margin: auto 0;
}

.hamburger {
  display: block;
}
.hamburger span {
  width: 0%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  margin: 4px 0;
  display: block;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hamburger span:nth-child(1) {
  transition-delay: 0s;
}
.hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
.hamburger span:nth-child(3) {
  transition-delay: 0.2s;
}

.menu_toggle {
  width: 48px;
  height: 48px;
  position: relative;
  cursor: pointer;
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.menu_toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .menu_toggle {
    margin-left: 25px;
  }
}
.menu_toggle .hamburger span {
  width: 100%;
}
.menu_toggle .hamburger {
  position: absolute;
  top: 13.44px;
  bottom: 12.44px;
  left: 12px;
  right: 12px;
}
.menu_toggle .hamburger-cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
  display: block;
}
.menu_toggle .hamburger-cross span {
  display: block;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 10px;
  transition-delay: 0.3s;
}
.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}
.collapsed .menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0.3s;
}
.collapsed .menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.4s;
}
.collapsed .menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;
  transition-delay: 0s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  width: 0%;
  transition-delay: 0.2s;
}

/*=========== side_menu css ===========*/
.side_menu {
  width: 0px;
  height: 100vh;
  max-height: 100vh;
  top: 0;
  position: fixed;
  transform: translate3d(300px, 0, 0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1013;
  background: #fff;
  padding: 20px 0;
  overflow-x: hidden;
  left: auto;
  right: 0;
}
.side_menu .mobile_menu_header {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 25px;
  justify-content: space-between;
}
.side_menu .mobile_menu_header .close_nav {
  font-size: 28px;
  color: #1d2746;
  cursor: pointer;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  display: block;
  height: 40px;
  line-height: 32px;
}
.side_menu .mobile_menu_header .close_nav:hover {
  border-color: var(--black_50);
}
.side_menu .mobile_menu_header .close_nav:active {
  border-color: var(--brand_color);
}
.side_menu .mobile_menu_header .close_nav i + i {
  display: none;
}
.side_menu .doc_left_sidebarlist {
  border: 0;
}
.side_menu .doc_left_sidebarlist:before {
  display: none;
}
.side_menu .nav-sidebar .nav-item {
  padding-right: 0;
}
.side_menu .mobile_nav_wrapper {
  display: flex;
  transform: translate3d(300px, 0, 0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.side_menu .mobile_nav_wrapper .theme-btn {
  display: none;
}
.side_menu .mobile_nav_top,
.side_menu .mobile_nav_bottom {
  height: calc(100vh - 65px);
  flex-shrink: 0;
  display: block;
  width: 350px;
  padding: 0 25px;
}
.side_menu .mobile_nav_top {
  padding-top: 30px;
}
.side_menu .mobile_nav_top .menu {
  padding-left: 0;
  padding-right: 0;
}
.side_menu .mobile_nav_top .menu .nav-item.submenu.active .dropdown-menu {
  display: block;
}
.side_menu.menu-opened {
  width: 350px;
}
.side_menu.menu-opened .mobile_nav_wrapper {
  transform: translate3d(0, 0, 0);
}
.side_menu.menu-opened .close_nav i {
  display: block;
}

.header_area .main_btn {
  margin-left: 80px;
}

.navbar:not(.navbar_fixed) .menu > .nav-item.submenu .dropdown-menu {
  margin-top: -15px;
}

.click_capture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 99;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.5s linear;
}

.menu-is-opened {
  overflow: hidden;
  height: 100%;
}
.menu-is-opened .click_capture {
  opacity: 1;
  visibility: visible;
}
.menu-is-opened .side_menu {
  transform: translate3d(0, 0, 0);
}

/*================= Hero Area css ===============*/
.allfolio-row {
  display: flex;
}

.sidebar-nav {
  background: #1e0f33;
  width: 120px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 50px;
  position: fixed;
  z-index: 9;
}
@media screen and (min-width: 1441px) {
  .sidebar-nav {
    height: 960px;
    padding-bottom: 170px;
  }
}
.sidebar-nav .sidebar-logo {
  text-align: center;
  margin: 30px 0 50px;
}
.sidebar-nav .nav {
  flex-wrap: nowrap;
  gap: 30px;
  transform: rotate(90deg) translate(33%, 0);
}
@media screen and (min-width: 1441px) {
  .sidebar-nav .nav {
    gap: 50px;
  }
}
.sidebar-nav .nav li {
  flex: 0 0 auto;
}
.sidebar-nav .nav a {
  color: #fff;
  font-size: 14px;
  font-family: var(--ibm);
  text-decoration: none;
  padding: 0;
}
.sidebar-nav .nav a.active {
  color: var(--brand_color);
}
.sidebar-nav .nav a:hover {
  color: var(--brand_color);
}
.sidebar-nav :is(.js-darkmode-btn, .js-darkmode-btn2) {
  width: 106px;
  height: 30px;
  margin-right: 0;
  transform: rotate(90deg);
}
.sidebar-nav :is(.js-darkmode-btn, .js-darkmode-btn2) .tab-btn {
  font-size: 14px;
}
.sidebar-nav :is(.js-darkmode-btn, .js-darkmode-btn2) .day {
  color: var(--black_900);
}
.sidebar-nav :is(.js-darkmode-btn, .js-darkmode-btn2) .ball {
  width: 54px;
  border-radius: 15px;
}

.body_dark .sidebar-nav .day {
  color: var(--black_300);
}
.body_dark .sidebar-nav .night {
  color: #000;
}

.home5:not(.fp-viewing-0) .header_logo img.main_logo {
  display: none;
}
.home5:not(.fp-viewing-0) .header_logo img.sticky_logo {
  display: block;
  opacity: 1;
  visibility: visible;
}
.home5:not(.fp-viewing-0) .menu_toggle {
  background-color: rgba(23, 22, 26, 0.1);
}
.home5:not(.fp-viewing-0) .menu_toggle .hamburger span {
  background: #000;
}
.home5:not(.fp-viewing-0) :is(.js-darkmode-btn, .js-darkmode-btn2) {
  background-color: rgba(23, 22, 26, 0.1);
}
.home5:not(.fp-viewing-0) :is(.js-darkmode-btn, .js-darkmode-btn2) .night ion-icon {
  color: var(--black_900);
}
.home5:not(.fp-viewing-0).body_dark .right-nav .js-darkmode-btn .day ion-icon {
  color: var(--black_900);
}

.home5 .fp-viewing-0 .header_logo img.main_logo {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home5 .fp-viewing-0 .header_logo img.main_logo {
    width: auto;
  }
}
.home5 .fp-viewing-0 .header_logo img.sticky_logo {
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.home5 .fp-viewing-0 .menu_toggle {
  background-color: rgba(255, 255, 255, 0.1);
}
.home5 .fp-viewing-0 .menu_toggle .hamburger span {
  background: #fff;
}
.home5 .fp-viewing-0 .mobile_menu_left .navbar-toggler {
  padding-right: 0;
}
.home5 .fp-viewing-0 :is(.js-darkmode-btn, .js-darkmode-btn2) .night ion-icon {
  color: var(--white);
}

.header-area .right-nav .js-darkmode-btn,
.header-area .right-nav .menu_toggle {
  background-color: rgba(23, 22, 26, 0.1);
}
.header-area .right-nav .js-darkmode-btn:hover,
.header-area .right-nav .menu_toggle:hover {
  background-color: rgba(23, 22, 26, 0.2);
}
.header-area .right-nav .hamburger span {
  background: var(--black_900);
}

.full_menu {
  flex-direction: row;
}
.full_menu > .nav-item {
  display: inline-flex;
  border-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
  align-items: center;
}
.full_menu > .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #e6e6e6;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-family: var(--ibm);
}
.full_menu > .nav-item .mobile_dropdown_icon {
  position: relative;
  display: inline-block;
  line-height: initial;
  color: #e6e6e6;
}
.full_menu > .nav-item.submenu .dropdown-menu {
  margin: 0 !important;
  border: 0;
  border-radius: 10px;
  left: -25px;
  min-width: 230px;
  padding: 10px 0;
  background: #fff;
  box-shadow: -1px 2px 19px 3px rgba(14, 0, 40, 0.05);
}
@media (min-width: 992px) {
  .full_menu > .nav-item.submenu .dropdown-menu {
    transform: translateY(20px);
    transition: all 0.3s ease-in;
    opacity: 0;
    pointer-events: none;
    top: 100%;
    display: block;
    position: absolute;
  }
}
.full_menu > .nav-item.submenu .dropdown-menu .nav-item {
  padding-left: 25px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .full_menu > .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}

.navbar_fixed .full_menu > .nav-item .nav-link {
  color: #000;
}
.navbar_fixed .full_menu > .nav-item .mobile_dropdown_icon {
  color: #000;
}
.navbar_fixed .full_menu > .nav-item.active .nav-link,
.navbar_fixed .full_menu > .nav-item.active .mobile_dropdown_icon, .navbar_fixed .full_menu > .nav-item:hover .nav-link,
.navbar_fixed .full_menu > .nav-item:hover .mobile_dropdown_icon {
  color: var(--brand_color);
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.banner-area {
  background-color: var(--black_900);
  position: relative;
  overflow: hidden;
}
.banner-area .banner-shapes .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
}
.banner-area .banner-img {
  position: relative;
  height: 100%;
}
.banner-area .banner-img .shape {
  position: absolute;
  transform: rotate(-21.71deg);
}
.banner-area .banner-img .shape img {
  max-width: inherit;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.2509803922);
}
.banner-area .banner-img .shape:nth-child(1) {
  left: 10px;
  z-index: 3;
  top: -50px;
}
.banner-area .banner-img .shape:nth-child(2) {
  left: 280px;
  z-index: 2;
  top: 65px;
}
.banner-area .banner-img .shape:nth-child(3) {
  left: 50px;
  z-index: 1;
  top: 305px;
}

.banner-content {
  z-index: 1;
  position: relative;
}
.banner-content .subtitle {
  font-family: var(--ibm);
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  color: var(--black_300);
  text-transform: uppercase;
}
.banner-content h1 {
  font-family: var(--playfair);
  font-size: 55px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .banner-content h1 {
    font-size: 70px;
    line-height: 1.2;
  }
}
.banner-content p {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 400;
  color: var(--black_100);
  line-height: 1.9;
}
.banner-content .text-stroke {
  color: black;
  -webkit-text-stroke: 1px var(--white);
  -webkit-text-fill-color: transparent;
}

.banner-area-2 {
  position: relative;
  z-index: 1;
  background-image: url(../image/banner-bg1.png);
  background-size: cover;
  background-position: center;
}
.banner-area-2 .banner-shapes img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.banner-area-2 .banner-shapes img:nth-child(2) {
  right: 0;
}
.banner-area-2 .banner-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .banner-area-2 .banner-content p {
    font-size: 22px;
  }
}
.banner-area-2 .banner-img {
  display: inline-block;
  position: relative;
}
.banner-area-2 .banner-img .shape img {
  max-width: inherit;
}
.banner-area-2 .banner-img .shape + .shape {
  position: absolute;
}
.banner-area-2 .banner-img .shape:nth-child(2) {
  left: 77px;
  top: -134px;
}
.banner-area-2 .banner-img .shape:nth-child(3) {
  right: -15px;
  top: 56px;
  z-index: -1;
}
.banner-area-2 .banner-img .shape:nth-child(4) {
  right: 0;
  bottom: -130px;
}
.banner-area-2 .banner-img .shape:nth-child(5) {
  top: -110px;
  left: 25px;
}
.banner-area-2 .banner-img .shape:nth-child(6) {
  top: -130px;
  left: -100px;
  background-color: #fff;
  height: 24px;
  width: 24px;
}
.banner-area-2 .banner-img .shape:nth-child(7) {
  height: 28px;
  width: 28px;
  background-color: #fff;
  top: 0;
  left: -65px;
}
.banner-area-2 .banner-img .shape:nth-child(8) {
  top: -127px;
  left: 115px;
  height: 12px;
  background-color: #fff;
  width: 12px;
}
.banner-area-2 .banner-img .shape:nth-child(9) {
  top: -25px;
  right: 40px;
  height: 10px;
  background-color: #ffb4a5;
  width: 10px;
}
.banner-area-2 .banner-img .shape:nth-child(10) {
  top: -50px;
  left: -165px;
  height: 17px;
  background-color: #ffb4a5;
  width: 17px;
}
.banner-area-2 .banner-img .shape:nth-child(11) {
  top: -100px;
  right: -25px;
  height: 30px;
  background-color: #fff;
  width: 30px;
}
.banner-area-2 .banner-img .shape:nth-child(12) {
  top: -25px;
  right: -45px;
  height: 15px;
  background-color: #ffb4a5;
  width: 15px;
}
.banner-area-2 .banner-img .shape:nth-child(13) {
  border-radius: 50%;
  bottom: -35px;
  right: 110px;
  height: 25px;
  background-color: #fff;
  width: 25px;
}
.banner-area-2 .banner-img .shape:nth-child(14) {
  border-radius: 50%;
  bottom: -65px;
  right: 85px;
  height: 19px;
  background-color: #ffb4a5;
  width: 19px;
}

.banner-area-3 {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner-area-3 .bg-shapes img {
  position: absolute;
  z-index: -1;
}
.banner-area-3 .bg-shapes img:nth-child(1) {
  top: 0;
  left: 0;
}
.banner-area-3 .bg-shapes img:nth-child(2) {
  bottom: 0;
  left: 270px;
}
.banner-area-3 h2 {
  color: #fff;
}
.banner-area-3 .social-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  transform: rotate(90deg);
  position: absolute;
  right: -55px;
  top: 50%;
}
.banner-area-3 .social-link span {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  text-transform: capitalize;
}
.banner-area-3 .social-link .line {
  height: 1px;
  width: 40px;
  margin-left: 8px;
  margin-right: 25px;
  background-color: #fff;
}
.banner-area-3 .social-link a {
  font-size: 16px;
  color: #fff;
  margin-right: 20px;
  transform: rotate(-90deg);
}
.banner-area-3 .social-link a:last-child {
  margin-right: 0;
}
.banner-area-3 .social-link a:hover {
  color: var(--brand_color);
}

.banner-area-4 {
  background: #170c27;
  position: relative;
  z-index: 1;
  padding-bottom: 95px;
  padding-top: 90px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .banner-area-4 {
    margin-left: 120px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area-4 {
    padding-left: 70px;
  }
}
@media screen and (min-width: 1441px) {
  .banner-area-4 {
    padding-left: 190px;
    padding-top: 40px;
  }
}
.banner-area-4 .tag-style:is(.heading, .p) {
  padding-left: 26px;
}
.banner-area-4 .section-tag :is(h2, h3, h4, h5, h6, p, span, .row) {
  padding-left: 36px;
}
.banner-area-4 .banner-title {
  padding-left: 36px;
}
.banner-area-4 .banner-title h1 {
  font-family: var(--playfair);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .banner-area-4 .banner-title h1 {
    font-size: 50px;
  }
}
@media screen and (min-width: 1441px) {
  .banner-area-4 .banner-title h1 {
    font-size: 75px;
  }
}
.banner-area-4 .banner-title h1 span {
  color: var(--brand_color);
}
.banner-area-4 .sub-title {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--black_200);
  padding-left: 36px;
}
@media screen and (min-width: 768px) {
  .banner-area-4 .sub-title {
    font-size: 20px;
  }
}
.banner-area-4 .allfolio-btn-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 26px;
  gap: 30px;
  margin-top: 75px;
}
@media screen and (min-width: 576px) {
  .banner-area-4 .allfolio-btn-group {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .banner-area-4 .allfolio-btn-group {
    margin-left: 36px;
  }
}
.banner-area-4 .scroll-down-one {
  padding-left: 36px;
}
.banner-area-4 .banner-shape {
  top: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

.tag-style {
  font-family: var(--kalam);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--black_700);
  display: block;
}
.tag-style.body {
  padding-left: 13px;
}
.tag-style:is(.heading, .p) {
  padding-left: 0;
}

.banner-area-5 {
  background: radial-gradient(73.8% 141.69% at 72.87% 50%, #746aeb 0%, #2d2db3 100%);
  position: relative;
  z-index: 1;
}
.banner-area-5 .banner-content h1 {
  font-family: var(--playfair);
  font-weight: 700;
  line-height: 1;
  font-size: 50px;
}
@media screen and (min-width: 1200px) {
  .banner-area-5 .banner-content h1 {
    font-size: 100px;
  }
}
@media screen and (min-width: 1441px) {
  .banner-area-5 .banner-content h1 {
    font-size: 150px;
  }
}
.banner-area-5 .banner-image {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .banner-area-5 .banner-image {
    margin-top: 0;
  }
}
.banner-area-5 .banner-image img {
  width: 100%;
}
.banner-area-5 .shape {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.banner-area-5 .shape.shape-img {
  bottom: 0;
  right: 0;
}
.banner-area-5 .shape.shape-1 {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: linear-gradient(227deg, rgba(117, 106, 235, 0.5137254902) 0%, rgba(45, 45, 179, 0) 100%);
  top: 25%;
  left: 5%;
}
@media screen and (min-width: 1441px) {
  .banner-area-5 .shape.shape-1 {
    top: 30%;
    left: 15%;
  }
}
.banner-area-5 .shape.shape-2 {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: linear-gradient(227.44deg, rgba(117, 106, 235, 0.5137254902) 0%, rgba(45, 45, 179, 0) 100%);
  top: 32%;
  left: 32%;
}
@media screen and (min-width: 1441px) {
  .banner-area-5 .shape.shape-2 {
    top: 30%;
    left: 35%;
  }
}
.banner-area-5 .shape.shape-3 {
  width: 512px;
  height: 512px;
  border-radius: 50%;
  background: linear-gradient(227.44deg, rgba(117, 106, 235, 0.5137254902) 0%, rgba(45, 45, 179, 0) 100%);
  left: 50px;
  bottom: 0;
}
@media screen and (min-width: 1441px) {
  .banner-area-5 .shape.shape-3 {
    left: 175px;
    bottom: 100px;
  }
}
.banner-area-5.active .shape-1 {
  animation: zoomIn 0.9s linear 0.2s;
  opacity: 1;
}
.banner-area-5.active .shape-2 {
  animation: zoomIn 1s linear 0.2s;
  opacity: 1;
}
.banner-area-5.active .shape-3 {
  animation: zoomIn 1.1s linear 0.2s;
  opacity: 1;
}

#fp-nav.right {
  right: 20px;
}
@media screen and (min-width: 1441px) {
  #fp-nav.right {
    right: 50px;
  }
}

#fp-nav ul li {
  margin: 35px 0 0;
  width: 100%;
  height: 100%;
}
#fp-nav ul li a span {
  width: 5px;
  height: 5px;
  background: var(--black_600);
  margin: 0;
  transform: translate(-50%, -50%);
  position: relative;
  display: block;
}
#fp-nav ul li a span::before {
  content: "";
  top: -10px;
  left: -10px;
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  border: 1px solid var(--brand_color_200);
  transform: scale(0);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
#fp-nav ul li a.active {
  border-color: var(--brand_color);
}
#fp-nav ul li a.active span {
  width: 5px;
  height: 5px;
  background: var(--brand_color);
  margin: 0;
}
#fp-nav ul li a.active span::before {
  transform: scale(1);
}
#fp-nav ul li:hover a span {
  width: 5px;
  height: 5px;
  background: var(--brand_color);
  margin: 0;
}
#fp-nav ul li:hover a.active span {
  width: 5px;
  height: 5px;
  margin: 0;
}

.fullpage-wrapper .section .intro {
  padding: 170px 0;
}
@media screen and (min-width: 1200px) {
  .fullpage-wrapper .section .intro {
    padding: 0;
  }
}

.home6 #fp-nav ul li a span {
  background: var(--white);
}
.home6 #fp-nav ul li a span::before {
  border: 1px solid var(--white);
}
.home6 #fp-nav ul li a.active {
  border-color: var(--white);
}
.home6 #fp-nav ul li a.active span {
  width: 5px;
  height: 5px;
  background: var(--white);
}

.home5 .fp-viewing-0 .theme-btn {
  background: var(--white);
  color: var(--brand_color);
  border-color: var(--white);
}
.home5 .fp-viewing-0 .theme-btn:hover {
  background-color: transparent;
  color: var(--white);
}
.home5 .fp-viewing-0 #fp-nav ul li a span {
  background: var(--black_200);
}
.home5 .fp-viewing-0 #fp-nav ul li a span::before {
  border-color: var(--white);
}
.home5 .fp-viewing-0 #fp-nav ul li a.active span {
  background: var(--white);
}
.home5 .fp-viewing-0 #fp-nav ul li a.active span::before {
  border-color: var(--white);
}

.fullpage_section_one {
  position: relative;
  z-index: 1;
}
.fullpage_section_one .banner-content {
  position: relative;
  z-index: 10;
}
.fullpage_section_one .banner-content h1 {
  font-size: 38px;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_one .banner-content h1 {
    font-size: 75px;
    line-height: 1.2;
  }
}
.fullpage_section_one .banner-content p {
  color: var(--white);
  margin-top: 30px;
}
.fullpage_section_one .banner-content .theme-btn {
  margin-top: 50px;
  padding: 13px 36px;
}
.fullpage_section_one .banner-image {
  position: relative;
  z-index: 9;
}
.fullpage_section_one .banner-image :is(.img2, .img3, .img4) {
  top: 0;
  left: 0;
  position: absolute;
}
.fullpage_section_one .banner-image :is(.img1, .img2, .img3, .img4) {
  transform: rotate(-22deg);
  filter: drop-shadow(0 20px 50px rgba(24, 9, 48, 0.2));
  width: 75%;
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_one .banner-image :is(.img1, .img2, .img3, .img4) {
    width: auto;
    margin-bottom: 0;
  }
}
.fullpage_section_one .banner-image .img1 {
  top: 0;
  left: 0;
  position: relative;
  padding-top: 70px;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_one .banner-image .img1 {
    top: -50px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_one .banner-image .img1 {
    top: -170px;
  }
}
.fullpage_section_one .banner-image .img1 img {
  max-width: inherit;
}
.fullpage_section_one .banner-image .img2 {
  top: 40%;
  left: 20%;
  z-index: -2;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_one .banner-image .img2 {
    top: 20%;
    left: 20%;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_one .banner-image .img2 {
    top: 10%;
    left: 38%;
  }
}
.fullpage_section_one .banner-image .img3 {
  top: 70%;
  left: 15%;
  z-index: -3;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_one .banner-image .img3 {
    top: 170px;
    left: 15%;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_one .banner-image .img3 {
    top: 240px;
    left: 10%;
  }
}
.fullpage_section_one .banner-image .img4 {
  top: 130px;
  left: 65%;
  z-index: -4;
}
.fullpage_section_one img {
  max-width: inherit;
}
.fullpage_section_one .shape10 {
  top: 7%;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_one .shape10 {
    top: 3%;
    left: 33%;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_one .shape10 {
    top: 17%;
  }
}
.fullpage_section_one .shape11 {
  bottom: 15px;
  left: 20px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_one .shape11 {
    bottom: 195px;
    left: 75px;
  }
}
.fullpage_section_one .shape12 {
  top: 70px;
  right: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_one .shape12 {
    right: 100px;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_one .shape12 {
    top: 175px;
    right: 215px;
  }
}

.banner-area-6 {
  position: relative;
  z-index: 1;
  background: rgba(24, 9, 48, 0.2);
}
.banner-area-6 .swiper-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.banner-area-6 .banner-main .swiper-slide::before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .banner-area-6 .banner-content h1 {
    font-size: 90px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area-6 .banner-content p {
    font-size: 20px;
  }
}
.banner-area-6 .banner-content .theme-btn {
  padding: 10px 30px;
}
.banner-area-6 .banner-thumbnails {
  width: 600px;
  height: 70px;
  bottom: 0;
  left: 0;
  position: absolute;
}
.banner-area-6 .banner-thumbnails .swiper-slide {
  height: 70px;
  transform: translateY(17px);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.banner-area-6 .banner-thumbnails .banner-thumb-img {
  width: 120px;
  height: 35px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.banner-area-6 .banner-thumbnails .banner-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-area-6 .banner-thumbnails .swiper-slide-thumb-active .banner-thumb-img {
  height: 70px;
  transform: translateY(-17px);
}
.banner-area-6 .circle {
  right: 50px;
  bottom: 25px;
  position: absolute;
  z-index: 1;
}
.banner-area-6 :is(.swiper-button-next, .swiper-button-prev) {
  --swiper-navigation-size: 15px;
  --swiper-navigation-color: var(--white);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.banner-area-6 :is(.swiper-button-next, .swiper-button-prev)::before {
  content: "";
  top: 6px;
  position: absolute;
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.banner-area-6 :is(.swiper-button-next, .swiper-button-prev)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.banner-area-6 :is(.swiper-button-next, .swiper-button-prev):hover::before {
  width: 43px;
}
.banner-area-6 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev) {
  right: 20px;
}
@media screen and (min-width: 1200px) {
  .banner-area-6 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev) {
    right: 60px;
  }
}
.banner-area-6 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev)::after {
  content: "\f054";
}
.banner-area-6 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev)::before {
  left: auto;
  right: 3px;
}
.banner-area-6 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev):hover {
  right: 10px;
}
@media screen and (min-width: 1200px) {
  .banner-area-6 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev):hover {
    right: 50px;
  }
}
.banner-area-6 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next) {
  left: 20px;
}
@media screen and (min-width: 1200px) {
  .banner-area-6 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next) {
    left: 60px;
  }
}
.banner-area-6 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next)::after {
  content: "\f053";
}
.banner-area-6 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next)::before {
  left: 0;
}
@media screen and (min-width: 1200px) {
  .banner-area-6 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next)::before {
    left: 3px;
  }
}
.banner-area-6 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next):hover {
  left: 10px;
}
@media screen and (min-width: 1200px) {
  .banner-area-6 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next):hover {
    left: 50px;
  }
}

.banner-area-7 {
  background: #d3f2f5;
  position: relative;
  z-index: 1;
}
.banner-area-7 .shape {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.banner-area-7 h1 {
  color: var(--black_900);
}
.banner-area-7 .banner-content p {
  color: var(--p_color);
}
.banner-area-7 .banner-btn {
  margin-top: 50px;
}
.banner-area-7 .banner-right-content {
  position: relative;
  z-index: 1;
  max-width: 438px;
  margin: 100px auto -250px;
}
@media screen and (min-width: 992px) {
  .banner-area-7 .banner-right-content {
    margin: 125px 0 -237px auto;
  }
}
.banner-area-7 .banner-right-content .banner-img {
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
}
.banner-area-7 .banner-right-content .banner-img img {
  border-radius: 10px 10px 0 0;
}
.banner-area-7 .banner-right-content .banner-img .shape2 {
  top: -55px;
  right: -36px;
  position: absolute;
  z-index: -1;
}
.banner-area-7 .banner-right-content .right-content {
  padding: 25px 20px 35px;
  background: #ffffff;
  box-shadow: 0 40px 80px -20px rgba(131, 146, 167, 0.3);
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .banner-area-7 .banner-right-content .right-content {
    padding: 25px 40px 35px;
  }
}
.banner-area-7 .banner-right-content .right-content p {
  font-style: italic;
  line-height: 1.85;
  text-align: left;
  font-size: 18px;
}
.banner-area-7 .banner-right-content .right-content span {
  font-family: var(--sacramento);
  font-size: 30px;
  color: var(--black_500);
}

.about-page-banner {
  position: relative;
  z-index: 1;
  background: var(--black_900);
}
.about-page-banner .banner-content p {
  font-size: 18px;
  color: var(--black_200);
  margin: 30px auto 0;
}
@media screen and (min-width: 992px) {
  .about-page-banner .banner-content p {
    width: 83%;
  }
}
.about-page-banner .banner-shape {
  top: 30px;
  right: 30px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .about-page-banner .banner-shape {
    top: 25%;
    right: 30px;
    position: absolute;
  }
}
.about-page-banner .banner-shape2 {
  bottom: 30px;
  left: 30px;
  position: absolute;
  z-index: -1;
}
.about-page-banner :is(.box-shape, .box-shape2) {
  top: 30%;
  left: 15px;
  position: absolute;
}
@media screen and (min-width: 992px) {
  .about-page-banner :is(.box-shape, .box-shape2) {
    top: 30%;
    left: 175px;
    position: absolute;
  }
}
.about-page-banner :is(.box-shape, .box-shape2)::before {
  content: "";
  top: -70px;
  right: 30px;
  position: absolute;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  background: var(--white);
}
.about-page-banner :is(.box-shape, .box-shape2)::after {
  content: "";
  top: -35px;
  left: 50px;
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: #ffb4a5;
}
.about-page-banner .box-shape2 {
  top: auto;
  right: 15px;
}
.about-page-banner .box-shape2 img {
  max-width: inherit;
}
@media screen and (min-width: 992px) {
  .about-page-banner .box-shape2 {
    left: auto;
    right: 175px;
  }
}

.team-member-banner {
  background-color: #441450;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .team-member-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: flex-end;
  }
}
.team-member-banner .hero-shapes div {
  position: absolute;
  z-index: -1;
}
.team-member-banner .hero-shapes div img {
  max-width: 100%;
}
.team-member-banner .hero-shapes div:nth-child(1) {
  left: 0;
  bottom: 0;
}
.team-member-banner .hero-shapes div:nth-child(2) {
  right: 0;
  bottom: 0;
}
.team-member-banner .banner-content p {
  font-size: 30px;
  line-height: 40px;
}

@-webkit-keyframes pulsate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%) scale(0.5);
    transform: translate(-50%, 0%) scale(0.5);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, 0%) scale(4);
    transform: translate(-50%, 0%) scale(4);
  }
}
@keyframes pulsate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%) scale(0.5);
    transform: translate(-50%, 0%) scale(0.5);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, 0%) scale(4);
    transform: translate(-50%, 0%) scale(4);
  }
}
.member-single-banner {
  background-color: #441450;
  position: relative;
  z-index: 1;
}
.member-single-banner .symbol-pulse {
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.member-single-banner .symbol-pulse div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.01)), color-stop(65%, rgba(255, 255, 255, 0.02)), to(rgba(255, 255, 255, 0.03)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.01) 0, rgba(255, 255, 255, 0.02) 65%, rgba(255, 255, 255, 0.03) 100%);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.01) 0, rgba(255, 255, 255, 0.02) 65%, rgba(255, 255, 255, 0.03) 100%);
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0.01) 0, rgba(255, 255, 255, 0.02) 65%, rgba(255, 255, 255, 0.03) 100%);
  width: 32rem;
  height: 32rem;
}
.member-single-banner .symbol-pulse .pulse-1 {
  -webkit-transform: translate(-50%, 0%) scale(0.8);
  -ms-transform: translate(-50%, 0%) scale(0.8);
  transform: translate(-50%, 0%) scale(0.8);
}
.member-single-banner .symbol-pulse .pulse-2 {
  -webkit-transform: translate(-50%, 0%) scale(1.15);
  -ms-transform: translate(-50%, 0%) scale(1.15);
  transform: translate(-50%, 0%) scale(1.15);
}
.member-single-banner .symbol-pulse .pulse-3 {
  -webkit-transform: translate(-50%, 0%) scale(1.55);
  -ms-transform: translate(-50%, 0%) scale(1.55);
  transform: translate(-50%, 0%) scale(1.55);
}
.member-single-banner .symbol-pulse .pulse-x {
  will-change: transform;
  -webkit-animation: pulsate 3s infinite;
  animation: pulsate 3s infinite;
}
.member-single-banner .banner-content p {
  font-size: 24px;
}

.gallery-banner {
  padding-top: 520px;
  padding-bottom: 950px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.gallery-banner::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(23, 22, 26, 0.4);
}
@media (max-height: 600px) {
  .gallery-banner .banner-content {
    padding-bottom: 100px;
  }
}
.gallery-banner .gallery-group {
  display: inline-flex;
  position: absolute;
  top: -540px;
  left: -80px;
  transform: rotate(-22deg);
  z-index: -2;
  width: auto;
  display: inline-flex;
  flex-direction: row;
}
.gallery-banner .gallery-group .gallery-item {
  margin: 0 12px;
  display: inline-flex;
  flex-direction: column;
}
.gallery-banner .gallery-group .gallery-item:nth-child(even) {
  margin-top: 382px;
}
.gallery-banner .gallery-group img {
  margin: 12px 0;
  border-radius: 10px;
  display: block;
}
.gallery-banner .gallery-filter {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 15px 20px;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-banner .gallery-filter .form-calender {
  height: 100%;
}
.gallery-banner .gallery-filter .form-calender input {
  background-color: #fff;
  color: var(--p_color);
  font-family: var(--ibm);
  line-height: 26px;
  padding-left: 10px;
  max-width: 140px;
  border-radius: 4px;
}
.gallery-banner .gallery-filter .form-calender input::placeholder {
  color: var(--p_color);
  font-family: var(--ibm);
  font-size: 16px;
}
.gallery-banner .gallery-filter .form-calender .form-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-13px, -50%);
}
.gallery-banner .gallery-filter .theme-btn {
  padding: 4px 20px;
  border-color: var(--black_900);
  background-color: var(--black_900);
  border-radius: 4px;
}
.gallery-banner .gallery-filter .theme-btn:hover {
  background-color: #2e2d2d;
  border-color: #2e2d2d;
}
.gallery-banner .tiles__wrap {
  width: 150%;
  display: flex;
  transform: translate3d(-50%, -50%, 0) rotate(-22.5deg);
  left: 50%;
  top: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -2;
}
.gallery-banner .tiles__wrap .tiles__line {
  width: 33vmax;
  flex: none;
  padding: 0 1.5vw;
  display: block;
}
.gallery-banner .tiles__wrap .tiles__line .tiles__line-img {
  height: 40vmax;
  width: 100%;
  margin: 3vw 0;
  background-size: cover;
  background-position: 50% 50%;
}

.study-single-banner {
  background-color: #231450;
  position: relative;
  z-index: 1;
  padding-top: 205px;
  padding-bottom: 120px;
}
.study-single-banner .bg-shapes img {
  position: absolute;
  bottom: 0;
  z-index: -1;
  max-width: 320px;
}
.study-single-banner .bg-shapes img:nth-child(1) {
  left: 0;
}
.study-single-banner .bg-shapes img:nth-child(2) {
  right: 0;
}
.study-single-banner .banner-content p {
  position: relative;
  display: inline-block;
  padding-top: 19px;
}
.study-single-banner .banner-content p.no-border::before {
  display: none;
}
.study-single-banner .banner-content p::before {
  content: "";
  position: absolute;
  width: 300px;
  top: 0;
  left: 50%;
  background-color: var(--brand_color);
  height: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}
.study-single-banner .banner-content p.animated::before {
  width: 0;
}

.services-banner {
  background-image: linear-gradient(to bottom left, #171e59, #141040);
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 65px;
}
@media (min-widtt: 1199px) {
  .services-banner {
    max-height: 100vh;
  }
}
@media (min-width: 1199px) {
  .services-banner .container {
    height: 100vh;
    align-items: flex-end;
    display: flex;
  }
}
.services-banner .bg-shapes {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.services-banner .hero-img {
  position: relative;
  z-index: 1;
  margin-left: -125px;
}
.services-banner .hero-img::before {
  content: "";
  position: absolute;
  height: 660px;
  width: 660px;
  background: rgba(255, 255, 255, 0.05);
  right: 30px;
  bottom: -20px;
  border-radius: 50%;
  z-index: -1;
}
.services-banner .hero-img.animated img {
  animation: 0.9s fadeInUp linear 0.4s;
}
.services-banner .hero-img.animated:before {
  animation: 0.95s zoomIn linear 0.4s;
}

.faq-banner {
  position: relative;
  background-color: #fff;
  z-index: 1;
}
.faq-banner .container {
  padding-top: 250px;
  padding-bottom: 175px;
}
.faq-banner .dark-slide {
  position: absolute;
  height: 100%;
  width: 60%;
  background-color: var(--black_900);
  z-index: -1;
}
.faq-banner .bg-right,
.faq-banner .bg-left {
  position: absolute;
  z-index: -1;
}
.faq-banner .bg-right {
  bottom: 0;
  right: 0;
}
.faq-banner .bg-left {
  top: 0;
  left: 0;
}
.faq-banner .banner-content h1 {
  font-size: 110px;
}
.faq-banner .banner-content p {
  font-size: 18px;
  margin-top: 70px;
  margin-bottom: 30px;
}
.faq-banner .banner-content .arrow-btn {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.faq-banner .banner-content .arrow-btn i {
  font-size: 18px;
  margin-left: 3px;
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}
.faq-banner .banner-content .arrow-btn:hover {
  color: var(--brand_color);
}
.faq-banner .banner-content .arrow-btn:hover i {
  transform: translateX(7px);
}

.my-books-banner {
  background-color: #121138;
  position: relative;
  z-index: 1;
  padding-top: 318px;
  padding-bottom: 185px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .my-books-banner .banner-content {
    padding-right: 100px;
  }
}
.my-books-banner::before {
  content: "";
  height: 1000px;
  width: 1000px;
  border-radius: 50%;
  position: absolute;
  background-image: linear-gradient(to bottom right, #100f38, #151442);
  top: -400px;
  left: -180px;
  z-index: -1;
}
.my-books-banner .bg-img {
  position: absolute;
  right: 262px;
  bottom: 0;
}
.my-books-banner .bg-img .book-shape {
  position: absolute;
}
.my-books-banner .bg-img .book-shape img {
  max-width: inherit;
}
.my-books-banner .bg-img .book-shape:nth-child(1) {
  left: -180px;
  top: 170px;
}
.my-books-banner .bg-img .book-shape:nth-child(2) {
  left: -180px;
  top: 70px;
}
.my-books-banner .bg-img .book-shape:nth-child(3) {
  left: -43px;
  top: -65px;
}
.my-books-banner .bg-img .book-shape:nth-child(4) {
  right: 50px;
  top: -130px;
}
.my-books-banner .bg-img .book-shape:nth-child(5) {
  right: -50px;
  top: 40px;
}
.my-books-banner .bg-img .book-shape:nth-child(6) {
  right: -65px;
  top: 45%;
}
.my-books-banner .banner-content p {
  max-width: 600px;
  font-size: 18px;
}

.single-book-banner {
  background-color: #1d2e59;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 155px;
  padding-top: 275px;
}
.single-book-banner .bg-shape div {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.single-book-banner .bg-shape div:nth-child(1) {
  background-image: linear-gradient(to bottom left, #1a294f, #1b2a52);
  height: 395px;
  width: 395px;
  top: -192px;
  left: -192px;
}
.single-book-banner .bg-shape div:nth-child(2) {
  background-image: linear-gradient(to right, #1d2e59, #1b2a52);
  height: 890px;
  width: 890px;
  top: -185px;
  left: -250px;
  z-index: -2;
}
.single-book-banner .bg-shape div:nth-child(3) {
  background-image: linear-gradient(to bottom, #19284d, #1b2b54);
  height: 570px;
  width: 570px;
  top: -285px;
  right: -270px;
}
.single-book-banner .bg-shape div:nth-child(4) {
  background-image: linear-gradient(to right, #1c2d57, #1a294f);
  height: 645px;
  width: 645px;
  bottom: -300px;
  right: 336px;
}
.single-book-banner .main-img {
  box-shadow: -20px 10px 50px 0 rgba(0, 0, 0, 0.2);
  margin-right: 30px;
}
.single-book-banner .banner-content h1 {
  margin-top: -19px;
}
.single-book-banner .banner-content p {
  margin-top: 17px;
  margin-bottom: 52px;
  max-width: 480px;
}
.single-book-banner .banner-content .form-control:focus {
  border-color: #ced4da !important;
}
.single-book-banner .banner-content .form-control:focus::placeholder {
  color: #212529;
}
.single-book-banner .top-industry {
  margin-top: 120px;
}
.single-book-banner .top-industry span {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--black_100);
  margin-bottom: 30px;
  display: inline-block;
}
.single-book-banner .top-industry .industries {
  gap: 55px;
}
.single-book-banner .top-industry .industries a {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.single-book-banner .top-industry .industries a:hover {
  opacity: 1;
}

.proccess-banner-slider {
  height: 100vh;
}
.proccess-banner-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.proccess-banner-slider .slick-list, .proccess-banner-slider .slick-track {
  height: 100%;
}
.proccess-banner-slider.slick-initialized .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.proccess-banner-slider .single-slide {
  position: relative;
  z-index: 1;
  text-align: center;
  max-height: 100vh;
}
.proccess-banner-slider .single-slide.slick-active .banner-content h1,
.proccess-banner-slider .single-slide.slick-active .banner-content .theme-btn {
  transform: scaleY(1);
}
.proccess-banner-slider .single-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 22, 51, 0.7);
  z-index: -1;
}
.proccess-banner-slider .single-slide .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  height: 100%;
  width: 100%;
}
.proccess-banner-slider .single-slide .banner-content {
  margin: auto;
}
.proccess-banner-slider .single-slide .banner-content h1 {
  color: #fff;
  margin-bottom: 70px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out 0.1s;
}
.proccess-banner-slider .single-slide .banner-content .theme-btn {
  transform: scaleY(0);
  transform-origin: top;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.18s ease-in-out, transform 0.3s ease-in-out 0.4s;
}
.proccess-banner-slider .slick-dots {
  bottom: 155px;
}
.proccess-banner-slider .slick-dots li {
  padding: 0;
  height: 40px;
  width: 40px;
  margin: 0 10px;
  z-index: 1;
}
.proccess-banner-slider .slick-dots li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}
.proccess-banner-slider .slick-dots li .circle-tx {
  fill: #fff;
  margin-top: -5px;
}
.proccess-banner-slider .slick-dots li.slick-active .circle-go {
  stroke: rgb(255, 255, 255);
  stroke-width: 1;
  stroke-linecap: round;
  animation: progress 25s;
  stroke-dasharray: 360px;
  stroke-dashoffset: 360;
}
.proccess-banner-slider .slick-dots li .circle-go {
  fill: transparent;
}
.proccess-banner-slider .slick-dots li button {
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 400;
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  line-height: 22px;
  height: inherit;
  width: inherit;
  padding: 0;
  margin: 0;
}

@keyframes progress {
  from {
    stroke-dashoffset: 360;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.our-customer-banner {
  background-color: #243033;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 323px;
  padding-bottom: 203px;
}
.our-customer-banner .bg-shape div div {
  position: absolute;
  z-index: -1;
}
.our-customer-banner .bg-shape div:nth-child(1) div {
  width: 1370px;
  height: 1390px;
  background-color: #243033;
  box-shadow: 15px 0 40px 0 rgba(0, 0, 0, 0.1490196078);
  transform: rotate(38deg);
  left: -540px;
  top: -280px;
}
.our-customer-banner .bg-shape div:nth-child(2) {
  position: absolute;
  width: 972px;
  height: 552px;
  background-color: var(--brand_color);
  opacity: 0.3;
  left: -24px;
  top: 0;
  z-index: -2;
}
.our-customer-banner .banner-content {
  margin-top: -40px;
}
.our-customer-banner .banner-content h1 {
  font-size: 66px;
}
.our-customer-banner .banner-content p {
  font-size: 18px;
  color: var(--black_50);
  margin-bottom: 73px;
  margin-top: 30px;
  padding-right: 20px;
}
.our-customer-banner .theme-btn i {
  vertical-align: inherit;
}
.our-customer-banner .contact {
  font-weight: 500;
  line-height: 18px;
  color: #fff;
  margin-left: 30px;
}
.our-customer-banner .contact:hover {
  color: var(--brand_color);
}
.our-customer-banner .contact:hover i {
  transform: translateX(5px);
}
.our-customer-banner .contact i {
  vertical-align: middle;
  display: inline-block;
}
.our-customer-banner .brand-logos {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 45px;
}
.our-customer-banner .brand-logos .d-flex {
  flex-direction: column;
  gap: 45px;
}
.our-customer-banner .brand-logos .single-brand {
  height: 128px;
  width: 128px;
  border-radius: 20px;
  text-align: center;
  line-height: 130px;
  background-color: rgba(255, 255, 255, 0.1);
}

.banner_map {
  height: 100vh;
  width: 100%;
}

#fp-nav {
  margin-top: 0 !important;
}

.work-history-banner {
  position: relative;
  background-image: radial-gradient(#8b65fc, #6d45e5);
  z-index: 1;
}
.work-history-banner .scroll-down-one {
  position: absolute;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
}
.work-history-banner .scroll-down-one .circle {
  height: 41px;
  width: 30px;
  border-radius: 15px;
}
.work-history-banner .scroll-down-one .circle::after {
  height: 10px;
}
.work-history-banner .scroll-down-one .arrow-cont {
  margin-left: 4px;
}
.work-history-banner .bg-shape {
  position: absolute;
  bottom: 0;
  font-size: 450px;
  color: #fff;
  opacity: 0.05;
  text-transform: capitalize;
  z-index: -1;
  font-weight: 700;
  line-height: 290px;
  letter-spacing: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.work-history-banner h1 {
  font-size: 85px;
  font-weight: 700;
  margin-bottom: 40px;
}
.work-history-banner p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #e8e6e6;
  margin-bottom: 0;
}

.workHistory #fp-nav ul li a.active span {
  background-color: white;
}
.workHistory #fp-nav ul li a.active span::before {
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
}
.workHistory #fp-nav ul li a span {
  background-color: rgba(255, 255, 255, 0.5);
  width: 8px;
  height: 8px;
}

.workHistory #fp-nav ul li:hover a.active span {
  width: 8px;
  height: 8px;
}

.workHistory #fp-nav ul li:last-child {
  display: none;
}

.portfolio-details-banner {
  background-image: url(../image/hero-banner-bg.png);
  padding-top: 426px;
  padding-bottom: 45px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.portfolio-details-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black_900);
  opacity: 0.6;
}
.portfolio-details-banner .banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 290px;
}
.portfolio-details-banner .banner-content .subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.portfolio-details-banner .banner-content .desc {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-top: 5px;
}
.portfolio-details-banner .banner-content .desc strong {
  font-weight: 600;
}
.portfolio-details-banner .banner-content .content {
  overflow: hidden;
}
.portfolio-details-banner .banner-content .content h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 1px;
  -webkit-transform: scale3d(1, 1.15, 1.15);
  transform: scale3d(1, 1.15, 1.15);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.portfolio-details-banner .banner-content .content .slider-header {
  position: relative;
  height: 50px;
  overflow: hidden;
  z-index: 3;
}
.portfolio-details-banner .banner-content .content .slider-header-top h1 {
  position: relative;
  top: -4px;
}
.portfolio-details-banner .banner-content .content .slider-header-bottom {
  z-index: 2;
}
.portfolio-details-banner .banner-content .content .slider-header-bottom h1 {
  position: relative;
  top: -54px;
  color: #fff;
}
.portfolio-details-banner .banner-content .scroll-down-one {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.portfolio-details-banner .banner-content .scroll-down-one .circle {
  height: 42px;
  width: 30px;
  border-radius: 15px;
}
.portfolio-details-banner .banner-content .scroll-down-one .arrow-cont i {
  font-size: 18px;
}

.before-after-banner {
  position: relative;
}
@media (min-width: 1080px) {
  .before-after-banner {
    max-height: 100vh;
  }
}
.before-after-banner #beforeAfter {
  height: 100%;
}
.before-after-banner img {
  max-width: inherit;
  width: 100%;
}
@media (min-width: 1080px) {
  .before-after-banner img {
    max-height: 100vh;
  }
}
.before-after-banner .indicator {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--black_900);
  background-color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  bottom: 30px;
  z-index: 1;
}
.before-after-banner .indicator.after {
  right: 60px;
}
.before-after-banner .indicator.before {
  left: 60px;
}

.portfolio-classic-banner {
  position: relative;
  background-image: url(../image/banner-bg3.png);
  background-position: center;
  background-size: cover;
  z-index: 1;
  padding: 406px 0 281px 0;
  text-align: center;
}
.portfolio-classic-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black_900);
  opacity: 0.5;
  z-index: -1;
}
.portfolio-classic-banner .subtitle {
  letter-spacing: 1px;
}
.portfolio-classic-banner .subtitle,
.portfolio-classic-banner h1 {
  color: #fff;
}

.banner-area-nine {
  min-height: calc(100vh - 120px);
}
.banner-area-nine .scroll-down-one {
  left: 100px;
  bottom: 100px;
}
.banner-area-nine .banner-img-two {
  max-height: calc(100vh - 120px);
}

.video-btn {
  position: relative;
  transition: all 0.5s;
}
.video-btn .text_r {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -41%;
  margin-top: -41%;
  animation: rotate 8s linear infinite;
}
.video-btn:hover {
  transform: scale(1.05);
}

@keyframes rotate {
  from {
    transform: rotate(-360deg);
    -webkit-filter: blur(0.2px);
  }
  to {
    transform: rotate(0);
    -webkit-filter: blur(0px);
  }
}
.banner-content-typing .banner-subtitle {
  font-size: 20px;
  font-family: var(--ibm);
  color: var(--black_300);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.banner-content-typing h1 {
  font-family: var(--playfair);
  font-size: 68px;
  color: #fdfdfd;
  letter-spacing: 0;
}
.banner-content-typing .single-headline {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 68px;
  line-height: 1.2;
  font-family: var(--playfair);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}
.banner-content-typing .single-headline:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  right: 0;
  background: #fff;
}
.banner-content-typing .single-headline span {
  opacity: 0;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-style: normal;
}
.banner-content-typing .single-headline span b {
  color: var(--brand_color);
}
.banner-content-typing .single-headline span.is-visible {
  position: relative;
  opacity: 1;
}
.banner-content-typing p {
  color: #B9B9BA;
  font-size: 30px;
  margin-top: 15px;
  font-family: var(--ibm);
}
.banner-content-typing .allfolio-btn-group {
  margin-top: 65px;
}
.banner-content-typing .allfolio-btn-group .theme-btn {
  font-family: var(--ibm);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}
.banner-content-typing .allfolio-btn-group .theme-btn + .theme-btn {
  margin-left: 20px;
}

.allfolio-header-btn {
  text-transform: capitalize;
}

.header_contact_info {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 90px;
}
.header_contact_info .item {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
.header_contact_info .item + .item::after {
  content: "";
  width: 0.5px;
  background: var(--black_700);
  display: inline-block;
  height: 42px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.header_contact_info .item .label {
  color: var(--black_300);
  font-family: var(--playfair);
  letter-spacing: 0.01em;
}
.header_contact_info .item a, .header_contact_info .item p {
  font-size: 18px;
  color: var(--black_100);
  font-family: var(--ibm);
  line-height: 26px;
  margin: 0;
  display: block;
}
.header_contact_info .item a:hover {
  color: var(--brand_color);
}

.banner-img-two {
  margin-right: -140px;
  margin-left: -120px;
  position: relative;
}
.banner-img-two .video-btn {
  position: absolute;
  right: -86px;
  top: 37%;
}

.btn-circle {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -57px;
  top: 327px;
  cursor: pointer;
}
.btn-circle .text {
  position: absolute;
  height: 100%;
  margin-top: 0px;
  animation: rotate 8s linear infinite;
  color: #B9B9BA;
}
.btn-circle .text p {
  font-size: 30px;
  text-transform: uppercase;
  margin-top: -20px;
  margin-left: 0;
}
.btn-circle .text p span {
  position: absolute;
  left: 50%;
  font-size: 0.8em;
  transform-origin: 0 12vmin;
}
.btn-circle .youtube_logo {
  color: #B9B9BA;
}
.btn-circle .youtube_logo:focus {
  color: #fff;
}

.youtube_logo {
  position: absolute;
  width: 230px;
  height: 230px;
  background: linear-gradient(143deg, rgba(86, 86, 86, 0.25) 0%, rgba(212, 212, 212, 0) 100%);
  border: 1px solid rgba(232, 230, 230, 0.11);
  color: #B9B9BA;
  border-radius: 50%;
  filter: contrast(1.5);
  transition: all 0.3s;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  animation: none;
}

@keyframes rotate {
  from {
    transform: rotate(360deg);
    -webkit-filter: blur(0.2px);
  }
  to {
    transform: rotate(0);
    -webkit-filter: blur(0px);
  }
}
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.about-area p {
  margin-bottom: 0;
}
.about-area .about-content {
  padding-left: 20px;
  position: relative;
}
.about-area .about-content::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 1px;
  background-color: var(--p_color);
  height: 64.5%;
}
.about-area .about-content h4 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1px;
}
.about-area .about-content h5 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.about-area .about-img {
  position: relative;
  z-index: 1;
}
.about-area .about-img .img-fluid {
  width: 100%;
  border-radius: 10px;
  background-color: #e6e6e6;
}
.about-area .about-img .shape {
  position: absolute;
  right: -40px;
  top: -20px;
  z-index: -1;
}
.about-area .contact-info h5 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.about-area .contact-info .border-top {
  border-color: #3d3d4e !important;
}
.about-area .contact-info .social-link {
  margin-top: 15px;
}
.about-area .contact-info .social-link a {
  color: var(--black_500);
  margin-right: 20px;
  font-size: 15px;
}
.about-area .contact-info .social-link a:hover {
  color: var(--brand_color);
}

.about-area-2 .container {
  z-index: 1;
}
.about-area-2 .bg-shape .shape {
  position: absolute;
  z-index: -1;
}
.about-area-2 .bg-shape .shape:nth-child(1) {
  bottom: 0;
  left: 0;
}
.about-area-2 .bg-shape .shape:nth-child(2) {
  bottom: 50px;
  left: 170px;
}
.about-area-2 .bg-shape .shape:nth-child(3) {
  height: 20px;
  width: 20px;
  background-color: #ffb4a5;
  bottom: 120px;
  left: 270px;
  border-radius: 50%;
}
.about-area-2 .bg-shape .shape:nth-child(4) {
  height: 27px;
  width: 27px;
  background-color: #3d3d4e;
  bottom: 160px;
  left: 230px;
  border-radius: 50%;
}
.about-area-2 .stat h2 {
  font-family: var(--ibm);
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  color: var(--black_900);
  margin-bottom: 15px;
}
.about-area-2 .stat p {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #3d3d4e;
}

.about-area-3 h2 {
  margin-bottom: 60px;
}
.about-area-3 p {
  font-family: var(--ibm);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--p_color);
}

.skill-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}
.skill-showcase span {
  position: absolute;
  position: absolute;
  color: var(--brand_color);
  font-family: var(--ibm);
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  animation: blinkwithopacity 5s ease-in-out infinite;
}
.skill-showcase span.small {
  font-size: 16px;
  animation-duration: 6s;
}
.skill-showcase span.big {
  font-size: 24px;
  animation-duration: 4s;
}
.skill-showcase span:nth-child(1) {
  top: 10%;
  left: 51%;
}
.skill-showcase span:nth-child(2) {
  top: 25%;
  left: 25%;
  animation-delay: 0.4s;
}
.skill-showcase span:nth-child(3) {
  top: 25%;
  left: 85%;
  animation-delay: 2s;
}
.skill-showcase span:nth-child(4) {
  top: 25%;
  left: 59%;
  animation-delay: 1s;
}
.skill-showcase span:nth-child(5) {
  top: 39%;
  left: 5%;
  animation-delay: 2.2s;
}
.skill-showcase span:nth-child(6) {
  top: 40%;
  left: 25%;
}
.skill-showcase span:nth-child(7) {
  top: 39%;
  left: 55%;
  animation-delay: 2s;
}
.skill-showcase span:nth-child(8) {
  top: 43%;
  left: 75%;
  animation-delay: 0.9s;
}
.skill-showcase span:nth-child(9) {
  top: 53%;
  left: 83%;
}
.skill-showcase span:nth-child(10) {
  top: 52%;
  left: 34%;
  animation-delay: 1.9s;
}
.skill-showcase span:nth-child(11) {
  top: 55%;
  left: 61%;
  animation-delay: 0.8s;
}
.skill-showcase span:nth-child(12) {
  top: 56%;
  left: 95%;
}
.skill-showcase span:nth-child(13) {
  top: 57%;
  left: 11%;
  animation-delay: 1.9s;
}
.skill-showcase span:nth-child(14) {
  top: 64%;
  left: 47%;
  animation-delay: 0.7s;
}
.skill-showcase span:nth-child(15) {
  top: 74%;
  left: 16%;
  animation-delay: 1.1s;
}
.skill-showcase span:nth-child(16) {
  top: 69%;
  left: 35%;
}
.skill-showcase span:nth-child(17) {
  top: 69%;
  animation-delay: 1.9s;
  left: 86%;
}
.skill-showcase span:nth-child(18) {
  top: 85%;
  left: 75%;
  animation-delay: 0.8s;
}
.skill-showcase span:nth-child(19) {
  top: 85%;
  left: 13%;
}
.skill-showcase span:nth-child(20) {
  top: 81%;
  animation-delay: 2s;
  left: 48%;
}

@keyframes blinkwithopacity {
  0% {
    transform: scale(0);
    opacity: 0.2;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0.2;
  }
}
@media screen and (min-width: 768px) {
  .about-area-4 {
    margin-left: 120px;
  }
}
.about-area-4 .about-left-content .about-title {
  padding-left: 13px;
}
.about-area-4 .about-left-content .tag-style {
  color: var(--black_200);
}
.about-area-4 .about-left-content p {
  padding-left: 13px;
}
.about-area-4 .about-left-content p span {
  color: var(--brand_color);
}
.about-area-4 .about-slider .swiper-slide {
  text-align: center;
  padding: 20px 35px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin: 40px 0 30px;
  cursor: pointer;
}
.about-area-4 .about-slider .swiper-slide img {
  width: auto;
  height: 50px;
  filter: grayscale(100%);
}
.about-area-4 .about-slider .swiper-slide .skill-title {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  color: var(--p_color);
  text-decoration: underline;
  margin-bottom: 0;
  margin-top: 15px;
}
.about-area-4 .about-slider .swiper-slide:hover {
  box-shadow: 0 5px 15px rgba(23, 22, 26, 0.1);
}
.about-area-4 .about-slider .swiper-slide:hover img {
  filter: grayscale(0%);
}
.about-area-4 .skill-slider :is(.swiper-button-next, .swiper-button-prev) {
  --swiper-navigation-size: 12px;
  --swiper-navigation-color: #b9b9ba;
  width: 25px;
  height: 25px;
  line-height: 25px;
}
.about-area-4 .skill-slider :is(.swiper-button-next, .swiper-button-prev):hover {
  --swiper-navigation-color: #17161a;
}

.about-right {
  position: relative;
  z-index: 1;
}
.about-right .about-img {
  text-align: right;
}
.about-right .about-img img {
  width: 100%;
}
.about-right .play-button a::before {
  animation: pulse-red 2s infinite !important;
  width: 110px;
  height: 110px;
}

.play-button {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.play-button a {
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand_color);
  display: block;
  text-align: center;
  font-size: 40px;
  padding-top: 5px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.play-button a::before {
  content: "";
  top: -10px;
  left: -10px;
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.play-button a:hover::before {
  animation: pulse 2s infinite;
  width: 110px;
  height: 110px;
}
.play-button.play-button-white a {
  background: #fff;
  color: var(--brand_color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .play-button.play-button-white a {
    width: 78px;
    height: 78px;
    line-height: 78px;
    font-size: 35px;
  }
}
.play-button.play-button-white a::before {
  content: "";
  top: -15px;
  left: -15px;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse-white 2s infinite;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .play-button.play-button-white a::before {
    width: 106px;
    height: 106px;
  }
}
.play-button.play-button-white a::after {
  content: "";
  top: -30px;
  left: -30px;
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse-white 2s infinite;
  animation-delay: 1.3s;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .play-button.play-button-white a::after {
    width: 136px;
    height: 136px;
  }
}

.fullpage_section_two {
  position: relative;
  z-index: 1;
}
.fullpage_section_two .about-content .subtitle {
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.fullpage_section_two .about-content h2 {
  color: var(--white);
  line-height: 1.4;
}
.fullpage_section_two .about-content p {
  font-size: 18px;
  color: var(--white);
  margin-top: 25px;
}
@media screen and (min-width: 992px) {
  .fullpage_section_two .about-content p {
    font-size: 20px;
  }
}
.fullpage_section_two .theme-btn {
  margin-top: 30px;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_two .theme-btn {
    margin-top: 65px;
  }
}
.fullpage_section_two .about-image {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .fullpage_section_two .about-image {
    margin-top: 0;
  }
}
.fullpage_section_two .about-image img {
  width: 100%;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_two .about-image img {
    width: auto;
  }
}
.fullpage_section_two .about-image .img4 {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  opacity: 0;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_two .about-image .img4 {
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%) scale(0);
  }
}
.fullpage_section_two .shape13 {
  top: 20%;
  left: 20px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_two .shape13 {
    top: 20%;
    left: 100px;
  }
}
.fullpage_section_two .shape14 {
  right: 50px;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
.fullpage_section_two .shape14 .layer {
  position: relative !important;
}
@media screen and (min-width: 768px) {
  .fullpage_section_two .shape14 {
    bottom: 25px;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_two .shape14 {
    bottom: 125px;
    right: 85px;
  }
}
.fullpage_section_two.active .about-image .img4 {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.9s linear 0.3s;
  opacity: 1;
}

.banner_animation_03 .layer {
  position: relative !important;
}

.about-area-5 {
  position: relative;
  z-index: 1;
}
.about-area-5 .shape3 {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
.about-area-5 .about-left-content {
  position: relative;
  z-index: 1;
  padding-top: 36px;
}
.about-area-5 .about-left-content .about-image {
  position: relative;
  z-index: 1;
}
.about-area-5 .about-left-content .shape {
  top: 0;
  left: 30px;
  position: absolute;
}
.about-area-5 .about-left-content .shape2 {
  right: 30px;
  bottom: -50px;
  position: absolute;
}
.about-area-5 .about-right-content {
  padding-top: 36px;
}
.about-area-5 .about-right-content span {
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  display: block;
  margin-top: 15px;
}
.about-area-5 .about-right-content P {
  color: var(--p_color);
}
@media screen and (min-width: 768px) {
  .about-area-5 .about-right-content P {
    font-size: 20px;
    line-height: 1.75;
  }
}
.about-area-5 .about-right-content .content {
  margin-top: 30px;
  padding-left: 20px;
  padding-right: 25px;
  border-left: 1px solid var(--black_50);
}
@media screen and (min-width: 768px) {
  .about-area-5 .about-right-content .content {
    padding-left: 50px;
    padding-right: 25px;
  }
}
.about-area-5 .about-right-content .btn {
  --btn-px: 35px;
  text-transform: Capitalize;
  font-weight: 500;
}

.about-area-6 {
  z-index: 1;
  overflow: hidden;
}
.about-area-6 .shape {
  right: 0;
  z-index: -1;
}
.about-area-6 .shape2 {
  left: 28%;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .about-area-6 .about-left-content {
    margin-top: 20px;
  }
}
.about-area-6 .about-left-content h2 {
  margin-top: -12px;
}
.about-area-6 .about-left-content h2 span {
  font-weight: 400;
}
.about-area-6 .about-left-content p {
  line-height: 2;
}
@media screen and (min-width: 1200px) {
  .about-area-6 .about-left-content p {
    font-size: 18px;
  }
}
.about-area-6 .about-left-content .theme-btn {
  margin-top: 15px;
}
@media screen and (min-width: 1200px) {
  .about-area-6 .about-left-content .theme-btn {
    margin-top: 45px;
  }
}
.about-area-6 .about-right-content {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .about-area-6 .about-right-content {
    padding-top: 0;
  }
}
.about-area-6 .about-counter-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 50px;
  border-radius: 6px;
  text-align: center;
  max-height: 190px;
}
@media screen and (min-width: 768px) {
  .about-area-6 .about-counter-box {
    max-height: 268px;
  }
}
@media screen and (min-width: 992px) {
  .about-area-6 .about-counter-box {
    padding: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .about-area-6 .about-counter-box {
    padding: 80px 50px;
  }
}
.about-area-6 .about-counter-box.bg-white {
  box-shadow: 0 0 20px -5px rgba(131, 146, 167, 0.2);
}
.about-area-6 .about-counter-box h2 {
  font-size: 50px;
  line-height: 1;
  font-family: var(--ibm);
}
@media screen and (min-width: 1200px) {
  .about-area-6 .about-counter-box h2 {
    font-size: 70px;
  }
}
.about-area-6 .about-counter-box .counter-title {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (min-width: 1200px) {
  .about-area-6 .about-counter-box .counter-title {
    font-size: 24px;
  }
}
.about-area-6 .about-counter-box img {
  max-width: 100%;
}

.about-section-title P {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .about-section-title P {
    width: 57%;
  }
}

.about-list-group {
  margin-top: 40px;
}
.about-list-group ul {
  padding-left: 0;
}
.about-list-group ul li {
  margin-top: 10px;
  margin-left: 14px;
}

.mission-left-content P {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .mission-left-content P {
    width: 90%;
  }
}

.about-area-7 {
  margin-top: 100vh;
  position: relative;
  z-index: 1;
}
.about-area-7 .section-title h2 {
  margin-top: -12px;
}
.about-area-7 .client-list .client-logo {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}
.about-area-7 .about-info {
  margin-top: 68px;
}
.about-area-7 .about-info h4 {
  font-family: var(--ibm);
  margin-bottom: 13px;
}

.promo_area {
  background: var(--brand_color);
  padding: 55px 0px;
}

.marquee {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.marquee .slide {
  width: auto;
  display: inline-block;
  padding: 1rem;
}
.marquee .slide h2 {
  font-family: var(--playfair);
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  text-transform: capitalize;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
}
.marquee .slide h2 img {
  vertical-align: bottom;
  margin-right: 40px;
}

.about-area-two {
  background: #17161A;
  padding: 130px 0;
}
.about-area-two .about-content p {
  font-family: var(--ibm);
  line-height: 2;
  color: #e8e6e6;
  letter-spacing: 0.01em;
}

.section-title-new .subtitle {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ibm);
  color: var(--brand_color);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  display: block;
}
.section-title-new h2 {
  font-family: var(--playfair);
  color: #f1f1f1;
  margin-bottom: 20px;
}
.section-title-new h2.title-big {
  font-size: 75px;
  font-weight: 700;
  line-height: 1.2;
}
.section-title-new h2.title-big svg {
  margin-left: 25px;
  vertical-align: middle;
  color: var(--brand_color);
}
.section-title-new p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #e8e6e6;
  font-family: var(--ibm);
}

.about_img_box {
  padding-left: 110px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.about_img_box:after {
  content: "";
  width: 416px;
  border: 2px solid rgba(239, 72, 83, 0.2);
  position: absolute;
  left: 0;
  top: 80px;
  bottom: 0;
  z-index: 0;
  border-radius: 8px;
  z-index: -1;
}
.about_img_box img {
  border-radius: 8px;
}
.about_img_box .social_icon {
  writing-mode: vertical-lr;
  position: absolute;
  white-space: nowrap;
  left: 38px;
  top: 45%;
}
.about_img_box .social_icon a {
  font-size: 13px;
  color: var(--black_25);
  display: inline-flex;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black_700);
  border-radius: 50%;
  text-align: center;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
}
.about_img_box .social_icon a:hover {
  background: #fff;
  border-color: #fff;
}
.about_img_box .social_icon a:hover .fa-instagram {
  color: #E36C5A;
}
.about_img_box .social_icon a:hover .fa-behance {
  color: #053eff;
}
.about_img_box .social_icon a:hover .fa-dribbble {
  color: #ea4c89;
}

.about-content {
  padding-left: 50px;
}
.about-content p {
  font-size: 18px;
  font-family: var(--ibm);
  line-height: 30px;
  letter-spacing: 0.01em;
}
.about-content h3 {
  color: #e6e6e6;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 50px;
  margin-bottom: 25px;
}
.about-content .skill_item h6 {
  font-size: 14px;
  font-weight: 400;
  color: #e6e6e6;
  font-family: var(--ibm);
  text-transform: uppercase;
  margin-top: 5px;
}

svg.radial-progress {
  height: auto;
  max-width: 100px;
  padding: 0.5em;
  transform: rotate(-90deg);
}

svg.radial-progress circle {
  fill: transparent;
  stroke: #fff;
  stroke-dashoffset: 219.9114857513;
  stroke-width: 6px;
}

svg.radial-progress circle.incomplete {
  opacity: 0.25;
}

svg.radial-progress circle.complete {
  stroke-dasharray: 219.9114857513;
}

svg.radial-progress text {
  fill: #e8e6e6;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ibm);
  text-anchor: middle;
}

svg.radial-progress circle.complete {
  stroke: var(--brand_color);
  stroke-linecap: round;
}

svg.radial-progress circle.incomplete {
  stroke: #5d5b62;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.portfolio-area .portfolio-img {
  position: relative;
  display: inline-block;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.0509803922);
  border-radius: 10px;
  z-index: 1;
}
.portfolio-area .portfolio-img .img-fluid {
  border-radius: 10px;
}
.portfolio-area .portfolio-img .left-shape,
.portfolio-area .portfolio-img .right-shape {
  position: absolute;
  left: -30px;
  bottom: -25px;
  z-index: -1;
  opacity: 0.6;
}
.portfolio-area .portfolio-img .right-shape {
  left: inherit;
  right: -30px;
  opacity: 0.6;
}
.portfolio-area p {
  color: var(--black_900);
  margin-bottom: 12px;
}
.portfolio-area .theme-btn {
  padding: 10px 32px;
}

.portfolio-area-2 .section-title {
  margin-bottom: 30px;
}
.portfolio-area-2 .portfolio-item {
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .portfolio-area-2 .portfolio-item {
    padding-top: 0;
    padding-left: 15px;
  }
}
.portfolio-area-2 .portfolio-item p {
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
}
.portfolio-area-2 .portfolio-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.black {
  height: 65vh;
}
@media (max-width: 991px) {
  .black {
    height: 80vh;
  }
}

.text-wrap {
  position: relative;
  overflow: hidden;
  height: 65vh;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .text-wrap {
    height: 25vh;
  }
}

.panel-text {
  position: absolute;
  left: 0%;
  z-index: 1;
  transform: translateY(5%);
  opacity: 0;
}
.panel-text.purple {
  opacity: 1;
}

.p-wrap {
  position: relative;
  overflow: hidden;
  height: 65vh;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .p-wrap {
    height: 45vh;
  }
}

.panel {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: 50% 50% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.portfolio-area-3 {
  background-color: #240f4d;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio-area-3 .section-title {
  margin-bottom: 70px;
}
.portfolio-area-3 .theme-btn.theme-btn-outline {
  color: #fff;
  border-color: var(--black_700);
  padding: 10px 54px;
}
.portfolio-area-3 .theme-btn.theme-btn-outline:hover {
  border-color: var(--brand_color);
}
.portfolio-area-3 .bg-shape img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.portfolio-widget-3.inverted-widget {
  flex-direction: row-reverse;
}
.portfolio-widget-3.inverted-widget p {
  padding: 29px 50px 29px 40px;
  margin-left: inherit;
  margin-right: -110px;
}
.portfolio-widget-3 .project-img {
  display: inline-block;
  position: relative;
}
.portfolio-widget-3 .project-img:hover::after {
  opacity: 0.2;
}
.portfolio-widget-3 .project-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black_900);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.portfolio-widget-3 .subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
}
.portfolio-widget-3 h3 {
  font-family: var(--ibm);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -1px;
  color: #fff;
}
.portfolio-widget-3 p {
  font-family: var(--ibm);
  font-size: 16px;
  padding: 29px 40px 29px 50px;
  font-weight: 400;
  line-height: 28px;
  background-color: rgba(47, 21, 102, 0.9);
  border-radius: 5px;
  margin-left: -110px;
  margin-top: 27px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.portfolio-widget-3 .used-tech,
.portfolio-widget-3 .live-link {
  margin-top: 20px;
}
.portfolio-widget-3 .used-tech a,
.portfolio-widget-3 .live-link a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 3px 15px;
}
.portfolio-widget-3 .used-tech a:hover,
.portfolio-widget-3 .live-link a:hover {
  border-color: var(--black_700);
}
.portfolio-widget-3 .used-tech a i,
.portfolio-widget-3 .live-link a i {
  font-size: 16px;
}
.portfolio-widget-3 .used-tech a:last-child,
.portfolio-widget-3 .live-link a:last-child {
  margin-right: 0;
}
.portfolio-widget-3 .live-link {
  margin-top: 10px;
  margin-left: 5px;
}
.portfolio-widget-3 .live-link a {
  padding: 5px 8px;
  border-radius: 50%;
}

.portfolio {
  --item-ff: var(--ibm);
  --title-ff: var(--item-ff);
  --title-fs: 24px;
  --title-fw: 700;
  --title-clr: var(--clr-black);
  --subtitle-ff: var(--item-ff);
  --subtitle-fs: 14px;
  --subtitle-fw: 500;
  --subtitle-clr: var(--clr-black);
}
.portfolio .portfolio-img img {
  max-width: 100%;
}
.portfolio .portfolio-content .portfolio-category {
  font-family: var(--subtitle-ff);
  font-size: var(--subtitle-fs);
  font-weight: var(--subtitle-fw);
  color: var(--subtitle-clr);
  line-height: 16px;
  letter-spacing: 1px;
}
.portfolio .portfolio-content .portfolio-title {
  font-family: var(--title-ff);
  font-size: var(--title-fs);
  font-weight: var(--title-fw);
  color: var(--title-clr);
  line-height: 1.8;
}

.portfolio-area-4 {
  background: #181326;
}
@media screen and (min-width: 768px) {
  .portfolio-area-4 {
    margin-left: 120px;
  }
}
.portfolio-area-4 .gutter-5 {
  --bs-gutter-x: 5px;
}
.portfolio-area-4 .section-title h2 {
  color: var(--white);
}
.portfolio-area-4 p {
  color: var(--black_100);
}
.portfolio-area-4 .view-link {
  padding-top: 25px;
  padding-left: 13px;
}
.portfolio-area-4 .view-link a {
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  border-bottom: 1px solid var(--brand_color);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.portfolio-area-4 .view-link a::before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--brand_color);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}
.portfolio-area-4 .view-link a:hover {
  border-color: transparent;
}
.portfolio-area-4 .view-link a:hover::before {
  height: 100%;
}

.portfolio-item-4 {
  --title-clr: var(--white);
  --subtitle-clr: var(--white);
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin: 2.5px 0;
}
.portfolio-item-4 .portfolio-img {
  position: relative;
}
.portfolio-item-4 .portfolio-img::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 50%;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, #3d3d4e 0%, rgba(61, 61, 78, 0) 100%);
  mix-blend-mode: multiply;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.portfolio-item-4 .portfolio-content {
  top: 0;
  right: 0;
  left: 0;
  position: absolute;
  padding: 25px 20px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .portfolio-item-4 .portfolio-content {
    padding: 45px 50px;
  }
}
.portfolio-item-4 .portfolio-content :is(.portfolio-category, .portfolio-title) {
  padding-left: 0;
  line-height: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.portfolio-item-4 .portfolio-content .portfolio-category {
  margin-bottom: 10px;
  display: block;
}
.portfolio-item-4 .portfolio-link {
  top: 50%;
  right: 0;
  left: 0;
  position: absolute;
  text-align: center;
  transform: translateY(-30%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.portfolio-item-4 .portfolio-link a {
  font-weight: 500;
}
.portfolio-item-4:hover {
  padding: 0.9375rem;
}
.portfolio-item-4:hover .portfolio-img::before {
  inset: 0;
}
.portfolio-item-4:hover .portfolio-content {
  inset: 0;
}
.portfolio-item-4:hover .portfolio-link {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%);
}

.light-bars .tp-bullet:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}

.light-bars .tp-bullet {
  width: 60px;
  height: 3px;
  position: absolute;
  background: #aaa;
  background: rgba(23, 22, 26, 0.3);
  cursor: pointer;
  box-sizing: content-box;
}

.light-bars .tp-bullet.rs-touchhover,
.light-bars .tp-bullet.selected {
  background: rgb(23, 22, 26);
}

.work-history-single {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.work-history-single:nth-child(even)::before {
  content: "";
  position: absolute;
  background-image: url(../image/slide-one-shape3.png);
  width: 640px;
  height: 465px;
  background-size: cover;
  background-position: center;
  right: 0;
  z-index: -1;
  bottom: 0;
}
.work-history-single:nth-child(even)::after {
  content: "";
  position: absolute;
  background-image: url(../image/slide-one-shape2.png);
  width: 833px;
  height: 100%;
  background-size: cover;
  background-position: center;
  left: 0;
  z-index: -1;
  top: 0;
}
.work-history-single:nth-child(odd)::after {
  content: "";
  position: absolute;
  background-image: url(../image/slide-two-shape2.png);
  width: 640px;
  height: 465px;
  background-size: cover;
  background-position: center;
  left: 0;
  z-index: -1;
  bottom: 0;
}
.work-history-single:nth-child(odd)::before {
  content: "";
  position: absolute;
  background-image: url(../image/slide-two-shape1.png);
  width: 833px;
  height: 100%;
  background-size: cover;
  background-position: center;
  right: 0;
  z-index: -1;
  top: 0;
}
.work-history-single .slide-img {
  position: relative;
  z-index: 1;
}
.work-history-single .slide-img img {
  opacity: 0;
  transition: opacity 0.6s 0.6s;
}
.work-history-single .slide-img::before {
  content: "";
  position: absolute;
  background-image: url(../image/slide-one-shape1.png);
  width: 196px;
  height: 102px;
  background-size: cover;
  background-position: center;
  left: -25px;
  z-index: -1;
  top: 72%;
  opacity: 0;
}
.work-history-single .slide-img::after {
  content: "";
  position: absolute;
  background-image: url(../image/slide-one-shape1.png);
  width: 196px;
  height: 102px;
  background-size: cover;
  background-position: center;
  top: 25px;
  z-index: -1;
  right: -100px;
  transform: rotate(90deg);
}
.work-history-single.active .section-title::after {
  transform: translateX(-50%) scaleY(1);
}
.work-history-single.active .section-title span::after {
  transform: translateX(-50%) scaleY(1);
}
.work-history-single.active .slide-content h3::before {
  transform: translateY(-50%) scale(1);
}
.work-history-single.active .slide-content h3::after {
  transform: translateY(-50%) scale(1);
}
.work-history-single.active .slide-img:before {
  animation: fadeInUps 0.8s linear 0.6s;
  opacity: 1;
}
.work-history-single.active .slide-img img {
  animation: fadeInUps 0.6s linear 0.5s;
  opacity: 1;
}
.work-history-single .section-title {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
  margin-top: 30px;
}
.work-history-single .section-title::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 4s linear;
  height: 100vh;
  z-index: -2;
  width: 0;
  top: calc(100% + 17px);
  border-left: 1px dashed rgba(255, 255, 255, 0.5);
  transition-delay: 2s;
}
.work-history-single .section-title span {
  font-family: var(--playfair);
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 14px;
  display: inline-block;
  color: #fff;
}
.work-history-single .section-title span::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  height: 100vh;
  z-index: -2;
  width: 0;
  bottom: calc(100% + 22px);
  transition: transform 2s linear;
  border-left: 1px dashed rgba(255, 255, 255, 0.5);
}
.work-history-single .section-title h1 {
  font-family: var(--ibm);
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 20px;
  color: #fff;
}
.work-history-single .slide-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 22px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: -10px;
}
.work-history-single .slide-content h3::before, .work-history-single .slide-content h3::after {
  position: absolute;
  content: "";
  top: 50%;
}
.work-history-single .slide-content h3::before {
  height: 13px;
  width: 13px;
  z-index: -1;
  background-image: url(../image/history-shape-round.png);
  background-position: center;
  background-size: contain;
  left: -29px;
  transform: translateY(-50%) scale(0);
  transition-delay: 3.4s;
}
.work-history-single .slide-content h3::after {
  width: 92px;
  z-index: -2;
  height: 0;
  right: calc(100% + 30px);
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.3s linear;
  transition-delay: 2.5s;
}
.work-history-single .slide-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}
.work-history-single .slide-content.left {
  text-align: right;
}
.work-history-single .slide-content.left h3::before {
  right: -29px;
  left: inherit;
}
.work-history-single .slide-content.left h3::after {
  left: calc(100% + 30px);
  right: inherit;
  transform-origin: right;
}
.work-history-single .slide-img {
  position: relative;
  display: inline-block;
}
.work-history-single.slide-one {
  background-image: radial-gradient(#f2b461, #e59e45);
}
.work-history-single.slide-one .section-title span::before, .work-history-single.slide-one .section-title span::after {
  display: none;
}
.work-history-single.slide-one .pointing-img li {
  position: absolute;
}
.work-history-single.slide-one .pointing-img li:nth-child(1) {
  right: 30px;
  top: 2px;
}
.work-history-single.slide-one .pointing-img li:nth-child(2) {
  left: 30px;
  bottom: 2px;
}
.work-history-single.slide-two {
  background-image: radial-gradient(#66cc6a, #3eb245);
}
.work-history-single.slide-two .slide-img {
  display: inline-flex;
  gap: 43px;
}
.work-history-single.slide-two .slide-img > div {
  position: relative;
}
.work-history-single.slide-two .slide-img > div img {
  box-shadow: 0 10px 20px 0 rgba(23, 22, 26, 0.1019607843);
}
.work-history-single.slide-two .slide-img > div .pointing-img {
  position: absolute;
  line-height: 0;
  display: inline-block;
}
.work-history-single.slide-two .slide-img > div:nth-child(1) .pointing-img {
  right: 20px;
  bottom: -6px;
}
.work-history-single.slide-two .slide-img > div:nth-child(2) {
  transform: translateY(-100px);
}
.work-history-single.slide-two .slide-img > div:nth-child(2) .pointing-img {
  left: 20px;
  top: -6px;
}
.work-history-single.slide-three {
  background-image: radial-gradient(#f26d61, #d94e41);
}
.work-history-single.slide-three .slide-img {
  display: inline-flex;
}
.work-history-single.slide-three .slide-img > div {
  position: relative;
}
.work-history-single.slide-three .slide-img > div .pointing-img {
  position: absolute;
  line-height: 0;
  display: inline-block;
}
.work-history-single.slide-three .slide-img > div:nth-child(1) .pointing-img {
  left: 26px;
  bottom: 65px;
}
.work-history-single.slide-three .slide-img > div:nth-child(2) {
  transform: translate(-165px, -100px);
}
.work-history-single.slide-three .slide-img > div:nth-child(2) .pointing-img {
  right: 30px;
  top: 55px;
}
.work-history-single.slide-four {
  background-image: radial-gradient(#fc8b65, #e56d45);
}
.work-history-single.slide-four .pointing-img li {
  position: absolute;
}
.work-history-single.slide-four .pointing-img li:nth-child(1) {
  left: 30px;
  top: 2px;
}
.work-history-single.slide-four .pointing-img li:nth-child(2) {
  right: 30px;
  bottom: 2px;
}
.work-history-single.slide-five {
  background-image: radial-gradient(#ac59ff, #9039e5);
}
.work-history-single.slide-five .slide-img {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.work-history-single.slide-five .slide-img img {
  max-width: inherit;
  box-shadow: 0 10px 20px 0 rgba(23, 22, 26, 0.1019607843);
}
.work-history-single.slide-five .slide-img > div:nth-child(1) {
  position: absolute;
  left: 200px;
  top: 95px;
  z-index: 1;
}
.work-history-single.slide-five .slide-img > div:nth-child(2) .pointing-img {
  right: 17px;
  top: -6px;
}
.work-history-single.slide-five .slide-img > div:nth-child(3) {
  position: absolute;
  left: 84px;
  top: 170px;
  z-index: -1;
}
.work-history-single.slide-five .slide-img > div:nth-child(3) .pointing-img {
  left: 30px;
  bottom: -6px;
}
.work-history-single.slide-five .slide-img > div .pointing-img {
  position: absolute;
  line-height: 0;
  display: inline-block;
}
.work-history-single.slide-six {
  background-image: radial-gradient(#f249c8, #cc29a3);
}
.work-history-single.slide-six .slide-img {
  display: inline-flex;
  gap: 43px;
}
.work-history-single.slide-six .slide-img > div {
  position: relative;
}
.work-history-single.slide-six .slide-img > div img {
  box-shadow: 0 10px 20px 0 rgba(23, 22, 26, 0.1019607843);
}
.work-history-single.slide-six .slide-img > div .pointing-img {
  position: absolute;
  line-height: 0;
  display: inline-block;
}
.work-history-single.slide-six .slide-img > div:nth-child(1) .pointing-img {
  right: 20px;
  bottom: -6px;
}
.work-history-single.slide-six .slide-img > div:nth-child(2) {
  transform: translateY(-100px);
}
.work-history-single.slide-six .slide-img > div:nth-child(2) .pointing-img {
  left: 20px;
  top: -6px;
}

.pointing-img {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pointing-img .drop-item {
  display: inline-block;
  position: relative;
}
.pointing-img .drop-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.pointing-img .drop-item .dot {
  height: 10px;
  width: 10px;
  background: #d92c0a;
  border-radius: 50%;
}
.pointing-img .dropdown-menu {
  border-radius: 6px;
  box-shadow: 0 10px 20px 0 rgba(23, 22, 26, 0.1019607843);
  padding: 10px 15px;
  border: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  min-width: 225px;
}
.pointing-img .dropdown-menu:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #f9fbfc transparent transparent;
  position: absolute;
  z-index: 1;
  border-width: 10px 12px 10px 0;
  box-shadow: 0 10px 20px 0 rgba(23, 22, 26, 0.1019607843);
}
.pointing-img .dropdown-menu h6 {
  font-family: var(--ibm);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 10px;
}
.pointing-img .dropdown-menu p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
  color: var(--p_color);
}
.pointing-img .dropdown-menu.top {
  bottom: calc(100% + 20px);
  right: -17px;
}
.pointing-img .dropdown-menu.top:before {
  right: 16px;
  bottom: -14px;
  transform: rotate(-90deg);
}
.pointing-img .dropdown-menu.bottom {
  top: calc(100% + 20px);
  left: -17px;
}
.pointing-img .dropdown-menu.bottom:before {
  left: 16px;
  top: -14px;
  transform: rotate(90deg);
}
.pointing-img .dropdown-menu.right {
  top: -55px;
  left: calc(100% + 7px);
}
.pointing-img .dropdown-menu.right:before {
  left: -11px;
  top: 65px;
}
.pointing-img .dropdown-menu.left {
  top: -55px;
  right: calc(100% + 7px);
}
.pointing-img .dropdown-menu.left:before {
  right: -11px;
  top: 37px;
  transform: rotate(180deg);
}

.portfolio-details-gallery-slider {
  overflow: hidden;
}
.portfolio-details-gallery-slider:hover .nav-arrow {
  opacity: 1;
}
.portfolio-details-gallery-slider:hover .nav-arrow.prev {
  left: 60px;
}
.portfolio-details-gallery-slider:hover .nav-arrow.next {
  right: 60px;
}
.portfolio-details-gallery-slider .slick-list {
  margin: 0 -12px;
}
.portfolio-details-gallery-slider a {
  margin: 0 12px;
}
.portfolio-details-gallery-slider a:hover {
  transform: scale(1.1);
}
.portfolio-details-gallery-slider img {
  width: 100%;
}
.portfolio-details-gallery-slider .nav-arrow {
  opacity: 0;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  text-align: center;
  line-height: 0;
  color: var(--brand_color);
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}
.portfolio-details-gallery-slider .nav-arrow.prev {
  left: 80px;
}
.portfolio-details-gallery-slider .nav-arrow.next {
  right: 80px;
}
.portfolio-details-gallery-slider .nav-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.portfolio-details-gallery-slider .nav-arrow:hover {
  box-shadow: 0 2px 7px 0 rgba(23, 22, 26, 0.1019607843);
}
.portfolio-details-gallery-slider .nav-arrow i {
  font-size: 13px;
}

.what-if-port-details {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.what-if-port-details::after {
  position: absolute;
  right: 0;
  width: 70%;
  height: 100%;
  top: 0;
  background-color: #f5f5f5;
  content: "";
  z-index: -1;
}
.what-if-port-details strong {
  font-family: var(--ibm);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.what-if-port-details p {
  margin-top: 27px;
  margin-bottom: 0;
}
.what-if-port-details .theme-btn {
  margin-top: 70px;
  display: inline-flex;
}
.what-if-port-details .theme-btn:hover i {
  background-color: var(--brand_color);
}
.what-if-port-details .theme-btn i {
  background-color: var(--black_900);
  height: 28px;
  width: 28px;
  border-radius: 50%;
  color: #fff;
  line-height: 28px;
  margin-right: 10px;
}

.porto-special-info {
  background-image: url(../image/camera-info-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 127px 0 155px 0;
}
.porto-special-info h2 {
  color: #fff;
  margin-bottom: 25px;
}
.porto-special-info p {
  font-size: 18px;
  color: var(--black_100);
  margin-bottom: 0;
}

.portfolio-next-project {
  position: relative;
  height: 900px;
  align-items: center;
  display: flex;
  z-index: 1;
  overflow: hidden;
}
.portfolio-next-project .bg-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  z-index: -1;
}
.portfolio-next-project .bg-img img {
  width: 100%;
  height: 100%;
}

.portfolio-project-description {
  padding: 100px 0;
}
.portfolio-project-description h2 {
  margin-bottom: 30px;
}
.portfolio-project-description p {
  margin-bottom: 22px;
}
.portfolio-project-description .single-info {
  margin-bottom: 26px;
}
.portfolio-project-description .single-info h6 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 6px;
}
.portfolio-project-description .single-info h6 img {
  margin-right: 5px;
}
.portfolio-project-description .single-info p,
.portfolio-project-description .single-info a {
  line-height: 22px;
  margin-bottom: 0;
  color: var(--black_500);
}
.portfolio-project-description .single-info a:hover {
  color: var(--brand_color);
}

.portfolio-project-feature {
  border-radius: 10px;
  box-shadow: 0 10px 40px 0 rgba(23, 22, 26, 0.1019607843);
  padding: 36px 58px 44px 58px;
  margin-top: -100px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.portfolio-project-feature .project-action {
  padding-bottom: 36px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
}
.portfolio-project-feature .project-action > div,
.portfolio-project-feature .project-action a {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--black_500);
}
.portfolio-project-feature .project-action > div i,
.portfolio-project-feature .project-action a i {
  color: rgba(var(--black_900), 0.6);
  font-size: 24px;
}
.portfolio-project-feature .project-action > div span,
.portfolio-project-feature .project-action a span {
  color: var(--black_900);
  margin-left: 5px;
}
.portfolio-project-feature .project-action a:hover {
  color: var(--brand_color);
}
.portfolio-project-feature .project-info {
  justify-content: space-between;
  padding-top: 38px;
}
.portfolio-project-feature .project-info h6 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 8px;
}
.portfolio-project-feature .project-info p {
  line-height: 24px;
  color: var(--black_500);
  margin-bottom: 0;
}

.portfolio-project-post {
  padding-top: 130px;
  padding-bottom: 110px;
}
.portfolio-project-post .single-post .post-meta {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 55px;
}
.portfolio-project-post .single-post .post-meta a {
  display: inline-block;
  line-height: 18px;
  color: var(--black_500);
}
.portfolio-project-post .single-post .post-meta a:hover {
  color: var(--brand_color);
}
.portfolio-project-post .single-post .post-meta a img {
  margin-right: 4px;
}
.portfolio-project-post .single-post h2 {
  margin-bottom: 16px;
}
.portfolio-project-post .single-post p {
  margin-bottom: 29px;
}
.portfolio-project-post .prject-sidebar .title {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 12px;
}
.portfolio-project-post .prject-sidebar .tag-widget ul {
  margin-bottom: 30px;
}
.portfolio-project-post .prject-sidebar .tag-widget ul li a {
  display: inline-flex;
  align-items: center;
}
.portfolio-project-post .prject-sidebar .tag-widget ul li a i {
  margin-right: 8px;
  font-size: 14px;
}
.portfolio-project-post .prject-sidebar .theme-btn {
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 51px;
}
.portfolio-project-post .prject-sidebar p {
  padding-top: 38px;
  border-top: 1px solid #e6e6e6;
}

.social_share_btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.social_share_list {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 12px;
  position: absolute;
  left: 100%;
  margin-left: 15px;
  top: 50%;
  transform-origin: left;
  transform: translateY(-50%);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 0;
  padding: 0;
  overflow: hidden;
}
.social_share_list.open {
  width: 88px;
  padding: 7px 13px;
}
.social_share_list.open a {
  opacity: 1;
}
.social_share_list a {
  font-size: 15px;
  line-height: inherit;
  opacity: 0;
}
.social_share_list i {
  font-size: 15px !important;
  color: inherit;
}
.social_share_list .fa-facebook-f {
  color: #4267b2 !important;
}
.social_share_list .fa-twitter {
  color: #1da1f2 !important;
}
.social_share_list .fa-instagram {
  color: #c13584 !important;
}

.portfolio-details-2 {
  padding-top: 207px;
}
.portfolio-details-2 .border-top {
  border-color: #e6e6e6 !important;
}
.portfolio-details-2 h5 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 10px;
}
.portfolio-details-2 .overline {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
  color: var(--brand_color);
  text-transform: uppercase;
}
.portfolio-details-2 .post-info img {
  border-radius: 50%;
  margin-bottom: 50px;
}
.portfolio-details-2 .post-info h5 {
  padding-top: 36px;
}
.portfolio-details-2 .port-post {
  padding-top: 100px;
  padding-bottom: 150px;
  margin-top: 76px;
}
.portfolio-details-2 .port-post .single-post .no {
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  color: var(--black_900);
  display: inline-block;
  margin-bottom: 40px;
}
.portfolio-details-2 .port-post .post {
  box-shadow: 0 10px 20px 0 rgba(23, 22, 26, 0.0509803922);
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
}
.portfolio-details-2 .port-post .post.post-up {
  margin-top: -155px;
}
.portfolio-details-2 .port-post .post .post-content {
  padding: 14px 30px 22px 30px;
}
.portfolio-details-2 .port-post .post .post-content span {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--black_500);
}

@media (min-width: 1080px) {
  .portfolio-carousel {
    max-height: 100vh;
    padding-top: 40px;
  }
}

.portfolio-carousel-slider {
  padding-top: 120px;
  margin-bottom: 30px;
}
@media (min-width: 1080px) {
  .portfolio-carousel-slider {
    max-height: calc(100vh - 200px);
  }
}
.portfolio-carousel-slider .swiper-wrapper {
  align-items: flex-end;
}
@media (min-width: 1080px) {
  .portfolio-carousel-slider .swiper-slide {
    max-height: calc(100vh - 340px);
  }
}
.portfolio-carousel-slider .swiper-slide h4 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 38px;
  text-align: center;
  margin-bottom: 0;
}
.portfolio-carousel-slider .swiper-slide img {
  border-radius: 10px;
  width: 100%;
}
@media (min-width: 1080px) {
  .portfolio-carousel-slider .swiper-slide img {
    max-height: calc(100vh - 340px);
    object-fit: cover;
  }
}

.portfolio-carousel-thumbnails {
  position: relative;
  margin: 0 90px;
}
.portfolio-carousel-thumbnails .swiper-wrapper {
  align-items: flex-end;
}
.portfolio-carousel-thumbnails .swiper-slide.swiper-slide-thumb-active img {
  height: 110px;
  margin-top: 0;
  opacity: 1;
}
.portfolio-carousel-thumbnails .swiper-slide img {
  height: 100px;
  width: 100px;
  margin-top: 10px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  opacity: 0.4;
}
.portfolio-carousel-thumbnails .swiper-button-prev,
.portfolio-carousel-thumbnails .swiper-button-next {
  width: auto;
  height: auto;
  margin-top: 0;
  transform: translateY(-50%);
}
.portfolio-carousel-thumbnails .swiper-button-prev:hover::after,
.portfolio-carousel-thumbnails .swiper-button-next:hover::after {
  box-shadow: 0 2px 7px 0 rgba(23, 22, 26, 0.1019607843);
  background-color: #fff;
  color: var(--brand_color);
}
.portfolio-carousel-thumbnails .swiper-button-prev::after,
.portfolio-carousel-thumbnails .swiper-button-next::after {
  font-size: 10px;
  text-align: center;
  line-height: 33px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgba(23, 22, 26, 0.1);
  color: var(--black_400);
  transition: all 0.3s ease-in-out;
}
.portfolio-carousel-thumbnails .swiper-button-prev {
  left: -90px;
}
.portfolio-carousel-thumbnails .swiper-button-next {
  right: -90px;
}

.portfolio-area-nine {
  background: #17161A;
}
.portfolio-area-nine .theme-btn-outline {
  border-color: var(--brand_color);
  color: #fff;
  text-transform: capitalize;
  padding: 10px 30px;
}
.portfolio-area-nine .theme-btn-outline:hover {
  background: var(--brand_color);
  color: #fff;
  border-color: var(--brand_color);
}

.portfolio-item.inverted-widget .project-img img {
  z-index: 1;
}
.portfolio-item.inverted-widget .project-img img + img {
  z-index: 0;
  top: 55px;
  bottom: auto;
}
.portfolio-item .project-img {
  border-radius: 8px;
  overflow: hidden;
  background: #2E2D31;
  position: relative;
  width: 100%;
  padding-top: 55px;
}
.portfolio-item .project-img:after {
  display: none;
}
.portfolio-item .project-img img {
  transition: all 0.5s;
  position: relative;
  margin-left: 55px;
}
@media (max-width: 991px) {
  .portfolio-item .project-img img {
    max-width: 65%;
  }
}
@media (max-width: 767px) {
  .portfolio-item .project-img img {
    max-width: 75%;
    margin-left: 15px;
  }
}
.portfolio-item .project-img img + img {
  position: absolute;
  right: 55px;
  bottom: 0;
}
@media (max-width: 767px) {
  .portfolio-item .project-img img + img {
    right: 15px;
  }
}
.portfolio-item .portfolio-content {
  margin-left: -80px;
  position: relative;
  z-index: 1;
}
.portfolio-item .portfolio-content .category {
  color: #B9B9BA;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-family: var(--ibm);
  margin-bottom: 10px;
  display: inline-block;
}
.portfolio-item .portfolio-content h3 {
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 40px;
  color: #e6e6e6;
  font-family: var(--ibm);
}
.portfolio-item .portfolio-content h3:hover {
  color: var(--brand_color);
}
.portfolio-item.inverted-widget .portfolio-content {
  margin-left: 0;
  margin-right: -80px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.feature-area {
  background: #d3f5ef;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.feature-area .shape {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.feature-area .shape-4 {
  bottom: 0;
  left: -100px;
}
.feature-area .shape-5 {
  top: 0;
  left: -100px;
}
.feature-area .shape-6 {
  top: 0;
  right: 0;
}
.feature-area .shape-7 {
  top: 0;
  right: 0;
}
.feature-area.active .shape {
  opacity: 1;
}
.feature-area.active .shape-4 {
  left: 0;
  transition: all 0.8s linear 0.5s;
}
.feature-area.active .shape-5 {
  left: 0;
  transition: all 0.9s linear 0.5s;
}
.feature-area.active .shape-6 {
  animation: fadeInRight 1.3s linear 0.3s;
}
.feature-area.active .shape-7 {
  animation: fadeInDown 1.6s linear 0.4s;
}
.feature-area.active .shape-8 {
  animation: fadeInLeft 1.3s linear 0.3s;
}
.feature-area.active .shape-9 {
  animation: fadeInDown 1.6s linear 0.4s;
}

.section.active h1 {
  animation: fadeInUp 0.7s linear 0.3s;
}
.section.active h2, .section.active h3 {
  animation: fadeInUp 0.7s linear 0.3s;
}
.section.active p, .section.active span {
  animation: fadeInUp 0.8s linear 0.3s;
}
.section.active .btn, .section.active .read-more-btn {
  animation: fadeInUp 0.85s linear 0.3s;
}

@media screen and (min-width: 1441px) {
  .feature-content {
    padding-left: 70px;
  }
}
.feature-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--black_900);
}
@media screen and (min-width: 1441px) {
  .feature-content h2 {
    font-size: 75px;
  }
}
.feature-content p {
  font-size: 18px;
  color: var(--p_color);
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .feature-content p {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .feature-content p {
    width: 95%;
  }
}
.feature-content .btn-outline-black {
  --btn-px: 38px;
  --btn-radius: 0;
  margin-top: 15px;
}
.feature-content .btn-outline-black:hover {
  --btn-clr: #fff;
  --btn-bg: var(--black_900);
  --btn-bc: var(--black_900);
}
@media screen and (min-width: 768px) {
  .feature-content .btn-outline-black {
    margin-top: 55px;
  }
}

.fullpage_slide_two .feature-content {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .fullpage_slide_two .feature-content {
    padding-top: 0;
  }
}
.fullpage_slide_two .feature-image {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .fullpage_slide_two .feature-image {
    margin-top: 0;
  }
}
.fullpage_slide_two .feature-image img {
  width: 100%;
}

.fullpage_slide_three {
  background: #e1f5d3;
  position: relative;
  overflow: hidden;
}
.fullpage_slide_three.active .feature-image {
  animation: fadeInRight 0.7s linear 0.3s;
}
.fullpage_slide_three .feature-content {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .fullpage_slide_three .feature-content {
    padding-top: 0;
  }
}
.fullpage_slide_three .feature-image {
  display: inline-block;
  position: relative;
  margin-top: 30px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .fullpage_slide_three .feature-image {
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .fullpage_slide_three .feature-image {
    width: auto;
  }
}
.fullpage_slide_three .feature-image img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .fullpage_slide_three .feature-image img {
    width: auto;
  }
}
.fullpage_slide_three .feature-image::before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(23, 22, 26, 0.5);
}
.fullpage_slide_three .feature-image .dont-shape {
  top: -50px;
  right: -50px;
  position: absolute;
  z-index: -1;
  width: auto;
}
.fullpage_slide_three .play-button a {
  background: var(--white);
  color: var(--brand_color);
}
.fullpage_slide_three .play-button a:hover::before {
  animation: pulse-white 2s infinite;
}

.fullpage_section_three {
  position: relative;
  z-index: 1;
}
.fullpage_section_three .shape16 {
  top: 15%;
  right: 80px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_three .shape16 {
    right: 127px;
  }
}
.fullpage_section_three .shape17 {
  bottom: 20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_three .shape17 {
    bottom: 78px;
  }
}
.fullpage_section_three .subtitle {
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.fullpage_section_three .feature-image {
  position: relative;
  z-index: 1;
}
.fullpage_section_three .feature-image .feature-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fullpage_section_three .feature-image .feature-img {
    width: auto;
    max-width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .fullpage_section_three .feature-image .feature-img {
    max-width: 100%;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_three .feature-image .feature-img {
    left: -155px;
    position: relative;
    width: auto;
  }
}
.fullpage_section_three .feature-image .shape15 {
  top: 30px;
  right: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
  transform: scale(0);
  z-index: -1;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .fullpage_section_three .feature-image .shape15 {
    width: auto;
    max-width: 80%;
    top: 0;
    right: 50px;
  }
}
@media screen and (min-width: 992px) {
  .fullpage_section_three .feature-image .shape15 {
    max-width: 100%;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_three .feature-image .shape15 {
    width: auto;
    right: 40px;
  }
}
.fullpage_section_three.active .shape15 {
  transform: scale(1);
  transition: all 0.9s linear 0.3s;
  opacity: 1;
}
.fullpage_section_three .feature-content {
  padding-left: 0;
  padding-top: 100px;
}
.fullpage_section_three .feature-content h2 {
  font-size: 36px;
  color: var(--white);
}
@media screen and (min-width: 1200px) {
  .fullpage_section_three .feature-content h2 {
    font-size: 48px;
  }
}
.fullpage_section_three .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px 20px 10px 20px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.fullpage_section_three .feature-item::before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(249, 249, 249, 0.1411764706);
  border-radius: 10px;
  z-index: -1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
}
.fullpage_section_three .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  margin-top: 5px;
  background: var(--white);
  text-align: center;
  flex: 0 0 auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.fullpage_section_three .feature-item .feature-text .title {
  font-family: var(--ibm);
  font-weight: 600;
  color: var(--white);
}
.fullpage_section_three .feature-item .feature-text p {
  font-size: 16px;
  color: var(--white);
  margin-top: 15px;
  width: 100%;
}
.fullpage_section_three .feature-item:hover::before {
  opacity: 1;
  visibility: visible;
}

.feature-area-2 {
  position: relative;
  z-index: 1;
}
.feature-area-2 .shape {
  z-index: -1;
}
.feature-area-2 .feature-left-content .feature-image {
  position: relative;
}
@media screen and (min-width: 1441px) {
  .feature-area-2 .feature-left-content .feature-image {
    transform: translateX(-30%);
    width: 130%;
  }
}
.feature-area-2 .feature-left-content .feature-image img {
  width: 100%;
}
@media screen and (min-width: 1441px) {
  .feature-area-2 .feature-left-content .feature-image.feature-image-2 {
    transform: translateX(6%);
  }
}
.feature-area-2 .feature-right-content {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .feature-area-2 .feature-right-content {
    padding-top: 0;
  }
}
@media screen and (min-width: 1441px) {
  .feature-area-2 .feature-right-content {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1441px) {
  .feature-area-2 .feature-right-content.right-content-2 {
    padding-left: 100px;
  }
}
.feature-area-2 .feature-right-content span {
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}
.feature-area-2 .feature-right-content h2 {
  padding-bottom: 30px;
}
.feature-area-2 .feature-right-content p {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 1200px) {
  .feature-area-2 .feature-right-content p {
    width: 70%;
  }
}
.feature-area-2 .feature-right-content .btn {
  --btn-px: 30px;
  font-weight: 500;
  margin-top: 50px;
}

.feature-area-3 {
  margin-top: -115px;
  padding-bottom: 150px;
}
.feature-area-3 .feature-box {
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
  padding: 60px 40px;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.feature-area-3 .feature-box:hover {
  box-shadow: 0 20px 45px 0 rgba(23, 22, 26, 0.1019607843);
}
.feature-area-3 .feature-box h4 {
  font-family: var(--ibm);
  margin-top: 30px;
  margin-bottom: 22px;
}
.feature-area-3 .feature-box p {
  color: var(--black_900);
  margin-bottom: 35px;
}
.feature-area-3 .feature-box a {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  display: inline-block;
  color: var(--brand_color);
}
.feature-area-3 .feature-box a:hover {
  color: var(--brand_color);
}
.feature-area-3 .feature-box a:hover i {
  transform: translateX(10px);
}
.feature-area-3 .feature-box a:hover i::after {
  width: 17px;
  background-color: var(--brand_color);
}
.feature-area-3 .feature-box a i {
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin-left: 1px;
}
.feature-area-3 .feature-box a i::after {
  content: "";
  height: 1px;
  background-color: var(--black_900);
  width: 0;
  right: 3px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.feature-area-4 {
  padding-top: 127px;
  padding-bottom: 121px;
}
.feature-area-4 h2 {
  margin-bottom: 21px;
}
.feature-area-4 p {
  max-width: 435px;
}

.feature-area-4 .single-feature,
.feature-area-5 .single-feature {
  padding-left: 10px;
  max-width: 230px;
  margin-bottom: 72px;
}
.feature-area-4 .single-feature h4,
.feature-area-5 .single-feature h4 {
  position: relative;
  margin-bottom: 20px;
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}
.feature-area-4 .single-feature h4::after,
.feature-area-5 .single-feature h4::after {
  content: "";
  position: absolute;
  left: -11px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--brand_color);
}
.feature-area-4 .single-feature p,
.feature-area-5 .single-feature p {
  margin-bottom: 0;
}

.my-books-area {
  padding-top: 135px;
  padding-bottom: 64px;
}
.my-books-area h3 {
  border-bottom: 1px solid var(--black_900);
  padding-bottom: 34px;
  margin-bottom: 70px;
}
.my-books-area .single-book {
  display: flex;
  flex-direction: row;
  margin-bottom: 100px;
}
.my-books-area .single-book .book-img {
  display: inline-block;
  box-shadow: 7px 7px 25px 0 rgba(0, 0, 0, 0.1490196078);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
.my-books-area .single-book .book-img:hover {
  opacity: 0.9;
}
.my-books-area .single-book .book-info {
  margin-left: 100px;
}
.my-books-area .single-book .book-info p {
  max-width: 360px;
  margin-top: 20px;
}
.my-books-area .single-book .book-info .line-arrow-btn {
  margin-top: 35px;
  color: var(--black_900);
}
.my-books-area .single-book .book-info .line-arrow-btn:hover {
  color: var(--white);
}
.my-books-area .books-sidebar {
  position: sticky;
  left: 0;
  top: 130px;
}
.my-books-area .books-sidebar ul li {
  margin-bottom: 10px;
}
.my-books-area .books-sidebar ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--black_900);
  padding: 0px;
}
.my-books-area .books-sidebar ul li a:hover, .my-books-area .books-sidebar ul li a.active {
  color: var(--brand_color);
  background: transparent;
}

.what-you-learn {
  padding-top: 125px;
}
.what-you-learn h2 span {
  color: #d92c0a;
}
.what-you-learn .box-widget {
  border-radius: 5px;
  padding: 60px 30px;
}
.what-you-learn .box-widget.bg-1 {
  background-color: #e1f8fa;
}
.what-you-learn .box-widget.bg-2 {
  background-color: #e1fae1;
}
.what-you-learn .box-widget.bg-3 {
  background-color: #e1f8fa;
}
.what-you-learn .box-widget.bg-4 {
  background-color: #e1ebfa;
}
.what-you-learn .box-widget h4 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 28px;
  letter-spacing: 1px;
}
.what-you-learn .box-widget p {
  margin-top: 14px;
  margin-bottom: 0;
}

.book-chapter-area {
  background-color: #f3f3f3;
  padding-top: 125px;
  padding-bottom: 136px;
}
.book-chapter-area .version {
  margin-top: 39px;
}
.book-chapter-area .version h5 {
  font-family: var(--ibm);
}
.book-chapter-area .version p {
  padding: 0 15px;
  margin-bottom: 0;
}

.chapter-tab {
  gap: 10px;
  border: none;
}
@media (min-width: 991px) {
  .chapter-tab.left-chapters {
    padding-right: 20px;
  }
  .chapter-tab.right-chapters {
    padding-left: 20px;
  }
}
.chapter-tab .nav-link {
  border-radius: 8px;
  padding: 20px 42px 18px 42px;
  border: none;
  box-shadow: none;
  background-color: #fff;
  cursor: pointer;
  min-width: 380px;
}
@media (max-width: 400px) {
  .chapter-tab .nav-link {
    min-width: 340px;
  }
}
.chapter-tab .nav-link.active {
  background-color: var(--brand_color);
}
.chapter-tab .nav-link.active .title {
  color: #fff;
}
.chapter-tab .nav-link.active p {
  color: #fff;
}
.chapter-tab .nav-link h4 {
  font-family: var(--ibm);
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--black_900);
  font-size: 20px;
}
.chapter-tab .nav-link p {
  margin-bottom: 0;
  color: var(--p_color);
}

.chapter-tab-content {
  text-align: center;
}
.chapter-tab-content .main-img {
  border-radius: 5px;
  box-shadow: 16.1481494904px 24.2222251892px 40.3703727722px 0 rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  display: inline-block;
}

.book-award-area .section-title P {
  max-width: 576px;
  margin-top: 20px;
}

.award-widget {
  text-align: center;
  display: inline-block;
}
.award-widget h5 {
  font-family: var(--ibm);
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  max-width: 125px;
  margin-top: 26px;
}

.book-author-area {
  padding: 50px 0 150px 0;
}
.book-author-area p {
  max-width: 506px;
  margin-top: 20px;
}
.book-author-area .author-img {
  text-align: center;
  position: relative;
  z-index: 1;
}
.book-author-area .author-img .shape {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
}

.book-statistics {
  position: relative;
  background-image: url(../image/book-stat-bg.png);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  z-index: 1;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 100px;
}
.book-statistics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(29, 46, 89, 0.85);
  z-index: -1;
}
.book-statistics p {
  color: var(--black_100);
  margin-top: 12px;
  margin-bottom: 1px;
}
.book-statistics h1 {
  font-family: var(--ibm);
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 1px;
  color: #fff;
}

.feature-area-5 {
  background-color: #f5f5f5;
}
.feature-area-5 .overline {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
}
.feature-area-5 .single-feature:last-child {
  margin-bottom: 0;
}
.feature-area-5 .single-feature ul li {
  margin-bottom: 6px;
}
.feature-area-5 .single-feature ul li:last-child {
  margin-bottom: 0;
}
.feature-area-5 .single-feature ul li:last-child a {
  color: var(--black_500);
}
.feature-area-5 .single-feature ul li a {
  color: var(--p_color);
}
.feature-area-5 .single-feature ul li a img {
  margin-right: 10px;
}
.feature-area-5 .company-case-slider .swiper-slide {
  background-color: #f5f5f5;
}
.feature-area-5 .company-case-slider .swiper-slide-shadow {
  background-color: #f5f5f5;
  z-index: -1;
}

.company-case-widget .company-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  background-color: #613bcb;
  height: 480px;
  transition: all 0.6s cubic-bezier(0.7, 0, 0, 1);
}
.company-case-widget .company-img.overlay-1 {
  background-color: #24ac21;
}
.company-case-widget .company-img.overlay-1::after {
  background-image: linear-gradient(to bottom, rgba(36, 172, 33, 0), rgba(36, 172, 33, 0.7));
}
.company-case-widget .company-img.overlay-2 {
  background-color: #221fb0;
}
.company-case-widget .company-img.overlay-2::after {
  background-image: linear-gradient(to bottom, rgba(34, 31, 176, 0), rgba(34, 31, 176, 0.7));
}
.company-case-widget .company-img.overlay-3 {
  background-color: #1a8753;
}
.company-case-widget .company-img.overlay-3::after {
  background-image: linear-gradient(to bottom, rgba(26, 135, 83, 0), rgba(26, 135, 83, 0.7));
}
.company-case-widget .company-img.overlay-4 {
  background-color: #7d10a3;
}
.company-case-widget .company-img.overlay-4::after {
  background-image: linear-gradient(to bottom, rgba(125, 16, 163, 0), rgba(125, 16, 163, 0.7));
}
.company-case-widget .company-img.overlay-5 {
  background-color: #1e4aba;
}
.company-case-widget .company-img.overlay-5::after {
  background-image: linear-gradient(to bottom, rgba(30, 74, 186, 0), rgba(30, 74, 186, 0.7));
}
.company-case-widget .company-img.overlay-6 {
  background-color: #b11d2f;
}
.company-case-widget .company-img.overlay-6::after {
  background-image: linear-gradient(to bottom, rgba(177, 29, 47, 0), rgba(177, 29, 47, 0.7));
}
.company-case-widget .company-img * {
  transition: all 0.6s cubic-bezier(0.7, 0, 0, 1);
}
.company-case-widget .company-img:hover::after {
  opacity: 1;
  transform: scaleY(1);
}
.company-case-widget .company-img:hover .main-img {
  transform: scale(1);
}
.company-case-widget .company-img:hover .caption {
  bottom: 22px;
}
.company-case-widget .company-img:hover .caption span {
  opacity: 1;
  transform: translateY(0);
}
.company-case-widget .company-img::after {
  position: absolute;
  content: "";
  height: 32%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(97, 59, 203, 0), rgba(97, 59, 203, 0.7));
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.6s cubic-bezier(0.7, 0, 0, 1);
  transform-origin: bottom;
}
.company-case-widget .company-img .logo,
.company-case-widget .company-img .action,
.company-case-widget .company-img .main-img,
.company-case-widget .company-img .caption {
  position: absolute;
}
.company-case-widget .company-img .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}
.company-case-widget .company-img .logo img {
  filter: saturate(100%) brightness(0%) invert(100%) sepia(0%) hue-rotate(234deg) contrast(101%);
}
.company-case-widget .company-img .main-img {
  height: 100%;
  width: 100%;
  opacity: 0.6;
  top: 0;
  left: 0;
  transform: scale(1.03);
}
.company-case-widget .company-img .action {
  right: 30px;
  top: 30px;
  z-index: 2;
}
.company-case-widget .company-img .action.video {
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
  text-shadow: 0 3px 5px rgba(217, 44, 10, 0.3019607843);
  font-size: 10.5px;
}
.company-case-widget .company-img .caption {
  left: 30px;
  bottom: -10px;
  z-index: 2;
  max-width: 405px;
}
.company-case-widget .company-img .caption p {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 7px;
}
.company-case-widget .company-img .caption span {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #fff;
  display: inline-block;
  transition: all 0.6s cubic-bezier(0.7, 0, 0, 1);
  opacity: 0;
  transform: translateY(10px);
}
.company-case-widget .logo-slide-5 .swiper-slide {
  text-align: center;
  position: relative;
  opacity: 0.6;
  padding: 30px 0;
  border-top: 1px solid rgba(239, 72, 83, 0.3);
}
.company-case-widget .logo-slide-5 .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.company-case-widget .logo-slide-5 .swiper-slide.swiper-slide-thumb-active::after, .company-case-widget .logo-slide-5 .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 1;
  visibility: visible;
}
.company-case-widget .logo-slide-5 .swiper-slide.swiper-slide-thumb-active::after {
  transform: scaleX(1);
}
.company-case-widget .logo-slide-5 .swiper-slide::after, .company-case-widget .logo-slide-5 .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(217, 44, 10, 0.2);
  opacity: 0;
  visibility: none;
}
.company-case-widget .logo-slide-5 .swiper-slide::after {
  transform-origin: left;
  background-color: var(--brand_color);
  transform: scaleX(0);
  transition: transform 5s linear;
}

.feature-area-6 {
  background-color: #f5f5f5;
}
.feature-area-6 .list {
  padding-bottom: 45px;
  border-bottom: 1px dashed #ccccce;
}
.feature-area-6 .list a {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
  color: var(--black_700);
  display: flex;
  align-items: center;
}
.feature-area-6 .list a:hover {
  color: var(--brand_color);
}
.feature-area-6 .list a:hover i {
  background-color: rgba(217, 44, 10, 0.15);
}
.feature-area-6 .list a i {
  margin-right: 8px;
  height: 16px;
  width: 16px;
  background-color: rgba(116, 115, 118, 0.15);
  font-size: 8px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-area-6 .feature-card {
  display: flex;
  gap: 40px;
  text-align: right;
}
.feature-area-6 .feature-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.feature-area-6 .feature-card-img {
  border-radius: 10px;
}
.feature-area-6 .shadow-1 {
  box-shadow: 0 15px 30px 0 rgba(23, 22, 26, 0.1019607843);
}
.feature-area-6 .shadow-2 {
  box-shadow: 0 10px 25px 0 rgba(23, 22, 26, 0.1019607843);
}
.feature-area-6 .shadow-3 {
  box-shadow: 0 15px 30px 0 rgba(23, 22, 26, 0.1019607843);
}
.feature-area-6 .shadow-4 {
  box-shadow: 0 15px 29px 0 rgba(23, 22, 26, 0.1019607843);
}
.feature-area-6 .ready-to-start {
  padding-top: 133px;
}
.feature-area-6 .ready-to-start h6 {
  font-family: var(--ibm);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 22px;
  margin-bottom: 7px;
  color: #17161a;
}
.feature-area-6 .ready-to-start .theme-btn {
  border-radius: 5px;
}
.feature-area-6 .ready-to-start a {
  font-weight: 500;
}
.feature-area-6 .ready-to-start .arrow-btn:hover {
  color: #eb3a17;
  text-decoration: underline;
}

.company-size-tab .nav-tabs {
  border: none;
  align-items: center;
  display: flex;
  gap: 5px;
}
.company-size-tab .nav-tabs .nav-link {
  padding: 3px 15px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  box-shadow: none;
  color: var(--black_900);
  background-color: transparent;
}
.company-size-tab .nav-tabs .nav-link.active {
  background-color: var(--brand_color);
  color: #fff;
}
.company-size-tab .nav-tabs .nav-link:hover {
  background-color: rgba(239, 72, 83, 0.1);
}
.company-size-tab .nav-tabs a {
  margin-left: 15px;
}

.use-case-masonry .item-big {
  height: 624px;
}
.use-case-masonry .item-small {
  height: 300px;
}
.use-case-masonry .tab-pane .company-img {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.8);
  opacity: 0.4;
}
.use-case-masonry .tab-pane.show .company-img {
  transform: scale(1);
  opacity: 1;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.service-area {
  background: #d3eff5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.service-area.active .service-badge-logo {
  animation: fadeInRight 0.7s linear 0.3s;
}

.service-left-content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .service-left-content {
    margin-top: 0;
  }
}
.service-left-content h2 {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .service-left-content h2 {
    margin-bottom: 35px;
  }
}

.service-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .service-item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .service-item {
    gap: 45px;
  }
}
.service-item .shape-8 {
  bottom: -85px;
  left: -75px;
  position: absolute;
  z-index: -1;
}
.service-item .service-img img {
  width: 160px;
  height: 160px;
}
@media screen and (min-width: 768px) {
  .service-item .service-img img {
    width: auto;
    height: auto;
  }
}
.service-item .service-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black_900);
}
.service-item .service-content span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--p_color);
}
@media screen and (min-width: 768px) {
  .service-item .service-content span {
    font-size: 18px;
    font-weight: 500;
  }
}
.service-item .service-content p {
  line-height: 1.5;
  color: var(--p_color);
  margin-top: 15px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .service-item .service-content p {
    font-size: 16px;
  }
}
.service-item .service-content .read-more-btn {
  position: relative;
  z-index: 1;
  color: var(--black_900);
  font-weight: 500;
  padding-bottom: 2px;
}
.service-item .service-content .read-more-btn::before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--black_900);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}
.service-item .service-content .read-more-btn:hover {
  color: var(--white);
}
.service-item .service-content .read-more-btn:hover::before {
  height: 100%;
}
.service-item.item-two {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service-item.item-two {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1441px) {
  .service-item.item-two {
    margin-top: 60px;
  }
}
.service-item.item-two h3 {
  line-height: 1;
}
.service-item.item-two p {
  margin: 0;
}
.service-item.item-two .service-img img {
  width: auto;
  height: auto;
}

.service-badge-logo {
  text-align: center;
  position: relative;
  z-index: 1;
}
.service-badge-logo img {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .service-badge-logo img {
    width: auto;
  }
}
.service-badge-logo .shape-9 {
  right: 0;
  bottom: -85px;
  position: absolute;
  z-index: -1;
}

.service {
  --title-clr: var(--black_900);
  --title-size: 36px;
}
.service h3 {
  color: var(--title-clr);
  font-size: var(--title-size);
}

.service-area-2 {
  padding-top: 305px;
  z-index: 1;
}
.service-area-2 .shape {
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .service-area-2 {
    padding-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .service-area-2 {
    padding-top: 140px;
  }
}
.service-area-2 .section-title {
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .service-area-2 .section-title {
    margin-bottom: 60px;
  }
}

.service-item-2 {
  --title-size: 24px;
  padding: 40px 35px 40px 40px;
  background: #ffffff;
  box-shadow: 0 5px 15px -3px rgba(131, 146, 167, 0.25);
  border-radius: 8px;
  margin-top: 40px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-item-2 .service-icon {
  margin-bottom: 15px;
}
.service-item-2 p {
  margin-top: 10px;
}
.service-item-2 .btn {
  margin-top: 15px;
  text-transform: capitalize;
  font-weight: 500;
}
.service-item-2:hover {
  box-shadow: 0 25px 50px -13px rgba(131, 146, 167, 0.3);
}
.service-item-2:hover .btn {
  --btn-bg: var(--brand_color);
  --btn-clr: var(--white);
  --btn-bc: transparent;
}

.service-navigation {
  background-color: #fff;
  padding: 18px 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}
.service-navigation .nav .navbar-brand {
  color: var(--p_color);
}
.service-navigation .nav .nav-item {
  margin-right: 74px;
}
.service-navigation .nav .nav-item:last-child {
  margin-right: 0;
}
.service-navigation .nav .nav-link {
  color: var(--p_color);
}
.service-navigation .nav .nav-link:hover {
  color: var(--brand_color);
}

.success-network-area {
  background-color: #f0f0f0;
  overflow: hidden;
  padding-bottom: 150px;
}
.success-network-area .network-circle {
  position: relative;
  z-index: 1;
}
.success-network-area .network-circle h2 {
  margin-bottom: 25px;
  padding-top: 100px;
}
.success-network-area .network-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 750px;
  width: 750px;
  background-color: #ff6868;
  top: -183px;
  left: -167px;
  z-index: -1;
}
.success-network-area .network-circle .network-stroke {
  position: absolute;
  right: -330px;
  top: calc(100% - 214px);
  max-width: inherit;
  z-index: -1;
}
.success-network-area .row {
  position: relative;
  z-index: 1;
}
.success-network-area h2 {
  margin-bottom: 17px;
}
.success-network-area .theme-btn {
  margin-top: 35px;
}
.success-network-area .sub-title {
  display: block;
  color: var(--black_500);
  text-transform: uppercase;
}
.success-network-area .icon {
  height: 150px;
  width: 150px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #f0f0f0;
}
.success-network-area .icon img {
  margin: auto;
}
.success-network-area .para-width {
  width: 95%;
}
.success-network-area .watch-button {
  display: inline-flex;
  color: var(--black_900);
  text-transform: uppercase;
}
.success-network-area .watch-button span {
  position: relative;
  width: 26px;
  height: 26px;
  line-height: 30px;
  font-size: 15px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--brand_color);
  color: var(--white);
  text-align: center;
  margin-right: 9px;
}
.success-network-area .watch-button span::before {
  content: "";
  position: absolute;
  height: 36px;
  width: 36px;
  top: -5px;
  left: -5px;
  border-radius: 50%;
}
.success-network-area .watch-button:hover span::before {
  animation: pulse-white 2s infinite;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.study-sidebar .single-sidebar-widget {
  border: 1px solid #e6e6e6;
  padding: 25px 30px;
}
.study-sidebar .single-sidebar-widget h6 {
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 600;
}
.study-sidebar .single-sidebar-widget a {
  line-height: 22px;
  margin-bottom: 0;
  color: var(--p_color);
}
.study-sidebar .single-sidebar-widget a:hover {
  color: var(--brand_color);
}
.study-sidebar .single-sidebar-widget ul {
  margin-bottom: 0;
}
.study-sidebar .single-sidebar-widget ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
.study-sidebar .single-sidebar-widget ul li a {
  color: var(--p_color);
}
.study-sidebar .single-sidebar-widget ul li a:hover {
  color: var(--brand_color);
}
.study-sidebar .single-sidebar-widget ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand_color);
  left: 0;
  top: 12px;
}

.study-detail-info {
  padding-left: 56px;
}
.study-detail-info .title {
  margin-bottom: 60px;
  margin-top: -13px;
}

.launch-deets {
  position: relative;
}
.launch-deets .deets {
  font-size: 200px;
  line-height: 190px;
  letter-spacing: 3px;
  color: var(--black_900);
  font-weight: 900;
  font-family: var(--playfair);
  text-transform: uppercase;
  position: absolute;
  transform: rotate(90deg);
  right: -45%;
  top: 235px;
}
.launch-deets .launch {
  background-color: #e37a52;
  border-radius: 5px;
  font-family: var(--playfair);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  height: 195px;
  width: 195px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  position: relative;
}
.launch-deets .launch::after {
  content: "";
  position: absolute;
  height: 150px;
  width: 3px;
  background-color: var(--black_900);
  top: 235px;
}
.launch-deets .color-set {
  display: flex;
  margin-top: 125px;
}
.launch-deets .color-set div {
  width: 195px;
  height: 250px;
  border-radius: 5px;
  position: relative;
  margin-right: 24px;
}
.launch-deets .color-set div span {
  font-family: var(--ibm);
  font-size: 16px;
  color: var(--black_900);
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.launch-deets .color-set div:nth-child(1) {
  background-color: var(--black_900);
}
.launch-deets .color-set div:nth-child(1) span {
  background-color: #100f12;
  color: #fff;
}
.launch-deets .color-set div:nth-child(2) {
  background-color: #f8f5f2;
}
.launch-deets .color-set div:nth-child(2) span {
  background-color: #edeae7;
}
.launch-deets .color-set div:nth-child(3) {
  background-color: #efece9;
}
.launch-deets .color-set div:nth-child(3) span {
  background-color: #e5e3e0;
}

.case-study-swiper :is(.swiper-button-next, .swiper-button-prev) {
  --swiper-navigation-size: 15px;
  --swiper-navigation-color: #17161a;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.case-study-swiper :is(.swiper-button-next, .swiper-button-prev)::before {
  content: "";
  top: 6px;
  position: absolute;
  width: 34px;
  height: 3px;
  background: #17161a;
  border-radius: 20px;
  opacity: 0.5;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.case-study-swiper :is(.swiper-button-next, .swiper-button-prev)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.case-study-swiper :is(.swiper-button-next, .swiper-button-prev):hover {
  --swiper-navigation-color: #d92c0a;
}
.case-study-swiper :is(.swiper-button-next, .swiper-button-prev):hover::before {
  content: "";
  top: 6px;
  position: absolute;
  background: #d92c0a;
}
.case-study-swiper :is(.swiper-button-next, .swiper-button-prev):hover::before {
  width: 43px;
}
.case-study-swiper :is(.swiper-button-next, .swiper-rtl .swiper-button-prev) {
  right: -50px;
}
.case-study-swiper :is(.swiper-button-next, .swiper-rtl .swiper-button-prev)::after {
  content: "\f054";
}
.case-study-swiper :is(.swiper-button-next, .swiper-rtl .swiper-button-prev)::before {
  left: auto;
  right: 3px;
}
.case-study-swiper :is(.swiper-button-next, .swiper-rtl .swiper-button-prev):hover {
  right: -60px;
}
.case-study-swiper :is(.swiper-button-prev, .swiper-rtl .swiper-button-next) {
  left: -50px;
}
.case-study-swiper :is(.swiper-button-prev, .swiper-rtl .swiper-button-next)::after {
  content: "\f053";
}
.case-study-swiper :is(.swiper-button-prev, .swiper-rtl .swiper-button-next)::before {
  left: 3px;
}
.case-study-swiper :is(.swiper-button-prev, .swiper-rtl .swiper-button-next):hover {
  left: -60px;
}

.case-study-area {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.case-study-area .bg-shapes .round-shape {
  content: "";
  position: absolute;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  background-color: #f5f5f5;
  left: 0;
  bottom: 25%;
  transform: translateX(0%);
  z-index: -1;
}
.case-study-area .bg-shapes .stroke {
  content: "";
  position: absolute;
  height: 750px;
  width: 750px;
  border-radius: 50%;
  background-color: transparent;
  left: 0;
  bottom: 25%;
  transform: translateX(-24%);
  border: 1px solid #e6e6e6;
  z-index: -1;
}
.case-study-area .bg-shapes .img-shape {
  content: "";
  position: absolute;
  right: 34%;
  bottom: 20%;
  z-index: -1;
}
.case-study-area .swiper {
  height: 100vh;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide {
  text-align: right;
  color: var(--p_color);
  padding: 35px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide span {
  display: block;
  font-family: var(--playfair);
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  left: -180px;
  top: -5px;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.475, -0.02, 0.01, 1.005);
}
.case-study-area .case-study-sidebar-swiper .swiper-slide img {
  opacity: 0;
  visibility: hidden;
  height: 290px;
  position: absolute;
  top: 45%;
  right: 200px;
  transform: translateX(50%) translateY(-50%);
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.475, -0.02, 0.01, 1.005);
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active {
  color: #e37a52;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active .color-1 {
  color: #fc1818;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active .color-2 {
  color: #e37a52;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active .color-3 {
  color: #fcd259;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active .color-4 {
  color: #e34dcc;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active .color-5 {
  color: #b0c8cf;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active .color-6 {
  color: #aa8652;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active .color-7 {
  color: #7b00ff;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active span {
  transform: scale(20);
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-active img {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) translateY(-50%);
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-next {
  margin-top: 165px;
}
.case-study-area .case-study-sidebar-swiper .swiper-slide.swiper-slide-prev {
  margin-bottom: 135px;
}
.case-study-area .case-study-main-swiper .swiper-slide {
  display: flex;
  align-items: center;
}

.single-case-study-widget .overline {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
  color: var(--black_900);
}
.single-case-study-widget h2 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.single-case-study-widget .line-arrow-btn {
  color: var(--black_900);
  margin-top: 40px;
}
.single-case-study-widget .line-arrow-btn:hover {
  color: #fff;
}

.next-study-details .next-link {
  color: var(--black_900);
  margin-bottom: 80px;
  display: inline-block;
}
.next-study-details .next-link i {
  vertical-align: middle;
}
.next-study-details .next-link:hover {
  color: var(--brand_color);
}
.next-study-details .next-link:hover i {
  margin-left: 5px;
}
.next-study-details .case-study-img {
  text-align: right;
  color: var(--p_color);
  padding: 35px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  position: relative;
}
.next-study-details .case-study-img .color-1 {
  color: #fc1818;
}
.next-study-details .case-study-img .color-2 {
  color: #e37a52;
}
.next-study-details .case-study-img .color-3 {
  color: #fcd259;
}
.next-study-details .case-study-img .color-4 {
  color: #e34dcc;
}
.next-study-details .case-study-img .color-5 {
  color: #b0c8cf;
}
.next-study-details .case-study-img .color-6 {
  color: #aa8652;
}
.next-study-details .case-study-img .color-7 {
  color: #7b00ff;
}
.next-study-details .case-study-img img {
  height: 290px;
  position: absolute;
  top: 45%;
  right: 200px;
  transform: translateX(0%) translateY(-50%);
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.475, -0.02, 0.01, 1.005);
}
.next-study-details .case-study-img span {
  transform: scale(20);
  display: block;
  font-family: var(--playfair);
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  left: -180px;
  top: -30px;
  transition: transform 0.4s cubic-bezier(0.475, -0.02, 0.01, 1.005);
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.client-area {
  background-color: var(--black_900);
  position: relative;
  text-align: center;
}
.client-area .bg-shapes .shape {
  position: absolute;
}
.client-area .bg-shapes .shape:nth-child(1) {
  left: 0;
  top: 0;
}
.client-area .bg-shapes .shape:nth-child(2) {
  right: 0;
  bottom: 0;
}
.client-area .section-title {
  color: #f9f9f9;
}
.client-area .section-title p {
  color: #f9f9f9;
}
.client-area .section-title h2 {
  color: #f9f9f9;
}

.client-widget-img {
  opacity: 0.4;
  transition: all 0.3s ease;
}
.client-widget-img:hover {
  opacity: 1;
}
.client-widget-img img {
  max-width: 100%;
  height: auto;
}

.promoter-brand .container .border-bottom {
  padding-top: 130px;
  border-color: #e6e6e6 !important;
  padding-bottom: 100px;
}
.promoter-brand p {
  margin-top: 20px;
  margin-bottom: 0;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.counter-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}
.counter-section .counter-item sub {
  color: var(--brand_color);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--ibm);
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.member-single-area {
  padding-bottom: 120px;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(306px, 1fr));
  gap: 24px;
}

.team-members-area {
  position: relative;
  z-index: 1;
}

.team-item {
  --item-bg: #d1f0f0;
  --icon: #3d3d4e;
  padding: 15px 32px 0;
  background: var(--item-bg);
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-item:nth-child(2) {
  --item-bg: #f0e4d1;
}
.team-item:nth-child(3) {
  --item-bg: #f0d1e5;
}
.team-item:nth-child(4) {
  --item-bg: #d1e1f0;
}
.team-item:nth-child(5) {
  --item-bg: #f0e4d1;
}
.team-item:nth-child(8) {
  --item-bg: #f0d1e5;
}
.team-item:nth-child(7) {
  --item-bg: #d1e1f0;
}
.team-item h4 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--ibm);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content {
  transform: translateY(-15px);
  transition: all 0.3s ease-in-out;
}
.team-item .team-content a {
  color: var(--p_color);
}
.team-item .team-img {
  position: relative;
  top: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.team-item .team-img img {
  height: 100%;
}
.team-item:hover .team-content {
  transform: translateY(0);
}
.team-item:hover h4 {
  transform: translateY(0);
  opacity: 1;
}

.team-members-area .section-title .theme-btn {
  line-height: 23px;
  padding: 0 17px;
}

.filter-member {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.filter-member li {
  margin: 10px 10px 0 0;
}
.filter-member li:last-child {
  margin-right: 0;
}
.filter-member button {
  background-color: transparent;
  border-radius: 3px;
  font-family: var(--ibm);
  outline: none;
  border: none;
  padding-right: 10px;
  padding-left: 10px;
  color: var(--black_900);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.filter-member button.mixitup-control-active {
  color: #fff;
  background-color: var(--brand_color);
}
.filter-member button:hover {
  background-color: rgba(217, 44, 10, 0.1);
}

@media screen and (min-width: 1200px) {
  .member-single-info .member-about {
    padding: 0 50px;
  }
}
.member-single-info .member-img {
  background-color: #f0e4d1;
  border-radius: 10px;
  display: flex;
  justify-content: center;
}
.member-single-info h4 {
  font-family: var(--ibm);
  font-weight: 500;
  margin-bottom: 20px;
}
.member-single-info p {
  margin-bottom: 18px;
  letter-spacing: 0;
}
.member-single-info .member-contact ul li {
  display: flex;
  margin-top: 12px;
}
.member-single-info .member-contact ul li:first-child {
  margin-top: 0;
}
.member-single-info .member-contact ul span {
  color: var(--black_500);
  min-width: 110px;
  display: inline-block;
}
.member-single-info .member-contact ul a {
  color: var(--p_color);
}
.member-single-info .member-contact ul a:hover {
  color: var(--brand_color);
}
.member-single-info .member-contact .social-link a {
  margin-right: 20px;
}
@media screen and (min-width: 992px) {
  .member-single-info .member-keyword {
    padding: 0 110px 0 10px;
  }
}
.member-single-info .member-keyword div {
  display: flex;
}
.member-single-info .member-keyword div a {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: var(--p_color);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 15px 0;
  transition: all 0.3s ease-in-out;
}
.member-single-info .member-keyword div a:hover {
  color: var(--brand_color);
  font-size: 18px;
}
.member-single-info .member-keyword div a:hover::before, .member-single-info .member-keyword div a:hover::after {
  visibility: visible;
  opacity: 1;
}
.member-single-info .member-keyword div a::before, .member-single-info .member-keyword div a::after {
  visibility: none;
  opacity: 0;
  position: absolute;
  top: -1px;
  color: var(--brand_color);
  font-size: 27px;
  transition: all 0.3s ease-in-out;
}
.member-single-info .member-keyword div a::before {
  content: "[";
  left: -9px;
}
.member-single-info .member-keyword div a::after {
  content: "]";
  right: -9px;
}
.member-single-info .member-keyword div:nth-child(odd) {
  justify-content: space-between;
}
.member-single-info .member-keyword div:nth-child(even) {
  justify-content: space-around;
}

.single-members-slider {
  margin-left: -12px;
  margin-right: -12px;
}
.single-members-slider .nav-link {
  margin: 0 12px;
  padding: 0;
  border: 0;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}
.single-members-slider .nav-link:hover {
  cursor: pointer;
}
.single-members-slider .nav-link:hover img {
  transform: scale(1.1);
}
.single-members-slider .nav-link.active {
  opacity: 1;
}
.single-members-slider :is(.slick-next, .slick-prev) {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.single-members-slider :is(.slick-next, .slick-prev)::before {
  content: "";
  top: 6px;
  position: absolute;
  width: 34px;
  height: 2px;
  background: var(--black_300);
  border-radius: 20px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.single-members-slider :is(.slick-next, .slick-prev)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--black_300);
}
.single-members-slider :is(.slick-next, .slick-prev):hover::before {
  width: 43px;
}
.single-members-slider .slick-arrow.slick-disabled {
  opacity: 0;
}
.single-members-slider :is(.slick-next) {
  right: -40px;
}
.single-members-slider :is(.slick-next)::after {
  content: "\f054";
}
.single-members-slider :is(.slick-next)::before {
  left: auto;
  right: 9px;
}
.single-members-slider :is(.slick-next):hover {
  right: -50px;
}
.single-members-slider :is(.slick-prev) {
  left: -40px;
}
.single-members-slider :is(.slick-prev)::after {
  content: "\f053";
}
.single-members-slider :is(.slick-prev)::before {
  left: 9px;
}
.single-members-slider :is(.slick-prev):hover {
  left: -50px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.experience-area-1 {
  background-color: #141216;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.experience-area-1 .bg-shape img {
  position: absolute;
  z-index: -1;
}
.experience-area-1 .bg-shape img:nth-child(1) {
  top: 0;
  right: 0;
}
.experience-area-1 .bg-shape img:nth-child(2) {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}
.experience-area-1 h2 {
  color: #fff;
}
.experience-area-1 .bg-shapes img {
  position: absolute;
  z-index: -1;
}
.experience-area-1 .bg-shapes img:nth-child(1) {
  top: 0;
  right: 0;
}
.experience-area-1 .bg-shapes img:nth-child(2) {
  bottom: 0;
  left: 0;
}

.experience-widget {
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.experience-widget:last-child {
  margin-bottom: 0;
}
.experience-widget P {
  color: #b9b9ba;
}
.experience-widget .exp-intro h3 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1px;
  color: #fff;
  width: 370px;
}
.experience-widget .exp-details h5 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 20px;
}
.experience-widget .exp-details ul li {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #b9b9ba;
  position: relative;
  margin-bottom: 10px;
}
.experience-widget .exp-details ul li i {
  font-size: 16px;
  margin-right: 15px;
}
.experience-widget .exp-details .list-unstyled-bold li i {
  color: var(--brand_color);
}

.experience-area-two {
  background: rgba(23, 22, 26, 0.9803921569);
  padding: 130px 0px;
}

.mt-minus {
  margin-top: -80px;
}

.experience-item {
  padding: 58px 0px 45px;
  border-bottom: 1px solid rgba(157, 156, 160, 0.5);
}
.experience-item:first-child {
  padding-top: 0;
}
.experience-item h3 {
  color: #e6e6e6;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--playfair);
  margin-bottom: 66px;
}
.experience-item .st-number {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #5C5B5E;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--ibm);
  margin-right: 35px;
}
.experience-item p {
  font-size: 16px;
  line-height: 28px;
  color: #e6e6e6;
  font-family: var(--ibm);
  flex: 1;
}
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.timeline-widget {
  list-style: none;
  padding: 0;
  position: relative;
}
.timeline-widget::before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 5px;
  background-color: #f5f5f5;
  left: 50%;
  margin-left: -1.5px;
  border-radius: 2.5px;
}

.timeline-wrapper {
  display: block;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
  padding-right: 90px;
}
.timeline-wrapper.timeline-inverted {
  padding-right: 0;
  padding-left: 90px;
}
.timeline-wrapper.timeline-inverted .timeline-panel {
  margin-left: auto;
  margin-right: 10%;
  text-align: left;
}
.timeline-wrapper.timeline-inverted .timeline-panel p::after {
  left: inherit;
  right: calc(100% + 75px);
}
.timeline-wrapper.timeline-inverted .timestamp {
  left: inherit;
  right: calc(50% + 30px);
}
.timeline-wrapper.timeline-inverted .timestamp::after {
  right: inherit;
  left: 100%;
  border-right: none;
  border-left: 11px solid #f5f5f5;
}
.timeline-wrapper::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 16px;
  left: calc(50% - 7px);
  z-index: 0;
  border-radius: 50%;
  border: 3px solid #3d3d4e;
}
.timeline-wrapper .timeline-panel {
  position: relative;
  width: 40%;
  text-align: right;
  margin-left: 10%;
}
.timeline-wrapper .timeline-panel h3 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #17161a;
}
.timeline-wrapper .timeline-panel span,
.timeline-wrapper .timeline-panel p {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #3d3d4e;
}
.timeline-wrapper .timeline-panel p {
  margin-top: 20px;
  position: relative;
}
.timeline-wrapper .timeline-panel p::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/timeline-bg.png);
  background-position: center;
  background-size: cover;
  position: absolute;
  left: calc(100% + 75px);
  top: 0;
}
.timeline-wrapper .timestamp {
  position: absolute;
  top: 9px;
  left: calc(50% + 30px);
  z-index: 0;
  background: #f5f5f5;
  border-radius: 3px;
  padding: 2px 9px;
  font-family: var(--ibm);
  font-size: 12px;
  font-weight: 400;
}
.timeline-wrapper .timestamp::after {
  position: absolute;
  right: 100%;
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 11px solid #f5f5f5;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-roadmap .icon {
  position: relative;
  z-index: 1;
  height: 100%;
  display: inline-block;
  overflow: hidden;
}
.timeline-roadmap .icon.animated::after {
  transform: scaleY(1);
}
.timeline-roadmap .icon.no-line::after {
  display: none;
}
.timeline-roadmap .icon img {
  border-radius: 50%;
  padding: 15px;
  border: 1px solid #ccccce;
  background: #f5f5f5;
  display: inline-flex;
  overflow: hidden;
}
.timeline-roadmap .icon::after {
  content: "";
  position: absolute;
  border-left: 1px solid #ccccce;
  z-index: -1;
  height: 100%;
  left: 50%;
  top: 10%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s linear;
}
.timeline-roadmap h4 {
  margin-bottom: 30px;
  margin-top: 15px;
}
.timeline-roadmap h4 a {
  font-family: var(--ibm);
  color: var(--black_900);
}
.timeline-roadmap .timeline div {
  padding: 0;
  height: 40px;
}
.timeline-roadmap .curve {
  display: flex;
  overflow: hidden;
}
.timeline-roadmap .corner {
  border: 1px solid #ccccce;
  width: 100%;
  position: relative;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s linear;
}
.timeline-roadmap .corner.top-right {
  left: 43px;
  top: -50%;
  transition-delay: 1s;
}
.timeline-roadmap .corner.top-left {
  right: 42px;
  top: -50%;
  transform-origin: right;
  transition-delay: 1s;
}
.timeline-roadmap .corner.right-bottom {
  left: 43px;
  top: calc(50% - 1px);
  transform-origin: right;
  transition-delay: 4s;
}
.timeline-roadmap .corner.left-bottom {
  right: 43px;
  top: calc(50% - 1px);
  transition-delay: 4s;
}
.timeline-roadmap .animated hr {
  transform: scale(1);
  transition-delay: 2s;
}
.timeline-roadmap .animated .corner {
  transform: scale(1);
}
.timeline-roadmap hr {
  border-top: 1px solid #ccccce;
  margin: 0;
  top: 19px;
  position: relative;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s linear;
}
.timeline-roadmap .animate-reverse hr {
  transform-origin: right;
}

.keyword-tag {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.keyword-tag a {
  display: inline-block;
  color: var(--black_900);
  padding: 1px 10px;
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.0509803922);
  color: var(--black_900);
  border-radius: 3px;
}
.keyword-tag a:hover {
  background-color: var(--brand_color);
  color: #fff;
  box-shadow: none;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.cta-area .cta-shape {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.cta-area .cta-shape img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.cta-area .cta-shape .theme-btn {
  padding: 20px 68px;
  display: flex;
  align-items: baseline;
}
.cta-area .cta-shape .theme-btn i {
  vertical-align: text-top;
}

.cta-area-2 {
  background-color: #150f3c;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-area-2.varient-2 {
  background-color: var(--black_900);
}
.cta-area-2 .section-title * {
  color: #fff;
}
.cta-area-2 .section-title .subtitle {
  color: var(--black_200);
}
.cta-area-2 .theme-btn-outline {
  border-color: #fff;
  color: #fff;
  padding: 15px 51px;
}
.cta-area-2 .bg-shape .shape {
  position: absolute;
  z-index: -1;
}
.cta-area-2 .bg-shape .shape:nth-child(1) {
  left: 0;
  bottom: 0;
  opacity: 0.5;
}
.cta-area-2 .bg-shape .shape:nth-child(2) {
  left: 15px;
  bottom: 370px;
}
.cta-area-2 .bg-shape .shape:nth-child(3) {
  top: 0;
  right: 0;
  transform: rotate(-180deg);
  opacity: 0.5;
}
.cta-area-2 .bg-shape .shape:nth-child(4) {
  right: 15px;
  top: 370px;
}
.cta-area-2 .bg-shape .shape:nth-child(5), .cta-area-2 .bg-shape .shape:nth-child(6), .cta-area-2 .bg-shape .shape:nth-child(7), .cta-area-2 .bg-shape .shape:nth-child(8) {
  height: 25px;
  width: 25px;
  background-color: #fff;
  opacity: 0.5;
  border-radius: 50%;
  left: 113px;
  bottom: 300px;
}
.cta-area-2 .bg-shape .shape:nth-child(6), .cta-area-2 .bg-shape .shape:nth-child(8) {
  height: 18px;
  width: 18px;
  background-color: #ffb4a5;
  left: 67px;
  bottom: 315px;
}
.cta-area-2 .bg-shape .shape:nth-child(7) {
  left: inherit;
  bottom: inherit;
  right: 113px;
  top: 300px;
}
.cta-area-2 .bg-shape .shape:nth-child(8) {
  left: inherit;
  bottom: inherit;
  right: 67px;
  top: 315px;
}

.cta-area-3 {
  background: var(--black_900);
}
@media screen and (min-width: 768px) {
  .cta-area-3 {
    margin-left: 120px;
  }
}
.cta-area-3 .cta-text {
  margin-bottom: 0;
}
.cta-area-3 hr {
  background: #464547;
  width: 100%;
  height: 1px;
  margin: 50px 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
  margin: 40px 0 10px;
}
@media screen and (min-width: 768px) {
  .cta-area-3 hr {
    margin: 70px 0 40px;
  }
}
.cta-area-3 .cta-btn-wrapper {
  text-align: left;
  margin-top: 40px;
  margin-left: 13px;
}
@media screen and (min-width: 768px) {
  .cta-area-3 .cta-btn-wrapper {
    text-align: right;
    margin-top: 0;
  }
}
.cta-area-3 .cta-btn-wrapper .theme-btn i {
  padding-left: 20px;
}
.cta-area-3 .cta-info {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-left: 13px;
}
@media screen and (min-width: 768px) {
  .cta-area-3 .cta-info {
    margin-top: 0;
    margin-left: 0;
  }
}
.cta-area-3 .cta-info span {
  color: var(--brand_color);
  text-transform: uppercase;
  font-size: 14px;
}
.cta-area-3 .cta-info a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
}

.cta-area-4 {
  background: #d3f2f5;
}
.cta-area-4 .section-title :is(h2, h3, h4, h5, h6, p, span, .row) {
  padding-left: 0;
}
.cta-area-4 .cta-btn-wrapper {
  margin-left: 0;
}
.cta-area-4 .cta-info {
  margin-left: 0;
}
.cta-area-4 .cta-info a {
  color: var(--black_900);
}
.cta-area-4 .footer-img {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .cta-area-4 .footer-img {
    margin-top: 0;
  }
}

.cta-area-5 {
  background-color: #441450;
  padding: 132px 0 140px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-area-5.bg-transparent .section-title h2 {
  color: var(--black_900);
}
.cta-area-5.bg-transparent .section-title p {
  color: var(--p_color);
}
.cta-area-5.bg-transparent .theme-btn.theme-btn-outline {
  border-color: var(--black_900);
  color: var(--black_900);
}
.cta-area-5.bg-transparent .theme-btn.theme-btn-outline:hover {
  color: #fff;
}
.cta-area-5.bg-blue {
  background-color: #231450;
}
.cta-area-5.bg-dark-blue {
  background-color: #131633;
}
.cta-area-5 .section-title h2 {
  color: var(--white);
}
.cta-area-5 .section-title p {
  font-size: 20px;
  line-height: 32px;
  color: var(--white);
}
.cta-area-5 .section-title .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: var(--white);
}
.cta-area-5 .bg-shapes img {
  position: absolute;
  z-index: -1;
}
.cta-area-5 .bg-shapes img:nth-child(1) {
  left: 0;
  top: 0;
}
.cta-area-5 .bg-shapes img:nth-child(2) {
  right: 0;
  bottom: 0;
}
.cta-area-5 .theme-btn {
  padding: 15px 48px;
}
.cta-area-5 .theme-btn.theme-btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-area-5 .theme-btn.theme-btn-outline:hover {
  background: #fff;
  color: #000;
}

.cta-area-7 {
  background-color: #121138;
  padding-top: 127px;
  position: relative;
  padding-bottom: 150px;
}
.cta-area-7 .section-title h2 {
  color: #fff;
}
.cta-area-7 .section-title p {
  color: var(--black_100);
  max-width: 400px;
  font-size: 20px;
  line-height: 26px;
  margin-top: 21px;
  margin-bottom: 53px;
}
.cta-area-7 .img-shapes .shape {
  position: absolute;
}
@keyframes WingsOne {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.cta-area-7 .img-shapes .shape .fly-msg {
  transform: rotate(-30deg);
}
.cta-area-7 .img-shapes .shape .fly-msg img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  animation-fill-mode: both;
  animation: WingsOne 0.2s ease-in infinite alternate-reverse;
  animation-delay: 0.2s;
}
.cta-area-7 .img-shapes .shape .fly-msg img:nth-child(3) {
  position: absolute;
  right: 0;
  top: 0;
  animation-fill-mode: both;
  animation: WingsOne 0.2s ease-in infinite alternate-reverse;
}
.cta-area-7 .img-shapes .shape:nth-child(1) {
  right: 3%;
  transform-origin: left bottom;
  top: 70%;
}
.cta-area-7 .img-shapes .shape:nth-child(2) {
  left: -18%;
  top: -20%;
}
.cta-area-7 .img-shapes .shape:nth-child(3) {
  right: 28%;
  bottom: 0%;
  transform-origin: right bottom;
}
.cta-area-7 .img-shapes .shape:nth-child(4) {
  right: 7%;
  top: -25%;
}
.cta-area-7 .input-append-button .form-control:focus {
  border-color: #ced4da;
}
.cta-area-7 .input-append-button .form-control:focus::placeholder {
  color: #212529;
}

.input-append-button {
  display: inline-flex;
}
.input-append-button .form-control {
  width: 400px;
  border-radius: 5px 0 0 5px;
  height: 60px;
  padding-left: 30px;
}
.input-append-button .form-control::placeholder {
  color: var(--black_500);
  font-size: 16px;
  font-weight: 400;
}
.input-append-button .theme-btn {
  padding: 10px 30px;
  border-radius: 0 5px 5px 0;
}

.cta-area-nine {
  background: #9b0009;
  padding: 160px 0px;
}

.call-action-text {
  position: relative;
  z-index: 1;
}
.call-action-text .round {
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(138.52deg, #353132 8.25%, #000000 90.99%);
  box-shadow: 25px 44px 62px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  overflow: hidden;
}
.call-action-text .round:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(231, 231, 231, 0.1);
  backdrop-filter: blur(2px);
}
.call-action-text h2 {
  font-size: 75px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(15deg, #FFC700 -21.23%, #ffffff 64.44%), linear-gradient(356deg, #FFFFFF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--ibm);
}
.call-action-text .action-btn {
  font-size: 20px;
  font-family: var(--ibm);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.4s;
}
.call-action-text .action-btn:after {
  content: "";
  width: 100%;
  height: 13px;
  background: var(--brand_color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s;
}
.call-action-text .action-btn:hover {
  padding: 0px 5px 0px 8px;
}
.call-action-text .action-btn:hover:after {
  height: 100%;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.testimonial-area {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: #fff;
}
.testimonial-area .bg-shape .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.testimonial-area span {
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b9b9ba;
}
.testimonial-area .review-text {
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: 1px;
  margin-bottom: 55px;
  margin-top: 50px;
}
.testimonial-area .author-img {
  border-radius: 10px;
  max-width: 100%;
  margin-left: auto;
}
.testimonial-area .author-info h5 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 2px;
}
.testimonial-area .author-info p {
  margin-bottom: 0;
  color: #b9b9ba;
}
.testimonial-area .custom_slider_nav {
  position: absolute;
  bottom: 0;
  left: 40%;
  transform: translateX(-50%, 0);
}
.testimonial-area .custom_slider_nav .slide_info {
  display: flex;
  flex-direction: row;
}
.testimonial-area .custom_slider_nav .total_slide {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider .arrow {
  width: 45px;
  height: 2px;
  background: #989dad;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-top: 12px;
  position: relative;
}
.testimonial-slider .arrow::before, .testimonial-slider .arrow::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  left: -2px;
  background-color: #bdb4b4;
  transition: all 0.3s ease-in-out;
}
.testimonial-slider .arrow::before {
  transform: rotate(45deg);
  right: -1px;
  left: auto;
  bottom: 6px;
}
.testimonial-slider .arrow::after {
  transform: rotate(-45deg);
  right: -1px;
  left: auto;
  top: 6px;
}
.testimonial-slider .next {
  height: 25px;
  width: 27px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  right: -50px;
  cursor: pointer;
}
.testimonial-slider .next:hover {
  right: -50px;
}
.testimonial-slider .next:hover .arrow {
  width: 70px;
}

.testimonial {
  --title-ff: var(--ibm);
  --title-fs: 18px;
  --title-fw: 500;
  --title-clr: var(--black_900);
  --subtitle-ff: var(--ibm);
  --subtitle-fs: 14px;
  --subtitle-fw: 500;
  --subtitle-clr: var(--black_500);
  --content-ff: var(--ibm);
  --content-fs: 16px;
  --content-fw: 400;
  --content-clr: var(--p_color);
  --testimonial-quote: #3d3d4e;
}
.testimonial-title {
  font-family: var(--title-ff);
  font-size: var(--title-fs);
  font-weight: var(--title-fw);
  color: var(--title-clr);
  line-height: 1;
  margin: 0;
  padding: 0;
}
.testimonial-subtitle {
  font-family: var(--subtitle-ff);
  font-size: var(--subtitle-fs);
  font-weight: var(--subtitle-fw);
  color: var(--subtitle-clr);
}
.testimonial p {
  font-family: var(--content-ff);
  font-size: var(--content-fs);
  font-weight: var(--content-fw);
  color: var(--content-clr);
}

.testimonial-area-4 {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .testimonial-area-4 {
    margin-left: 120px;
  }
}
.testimonial-area-4 .section-tag {
  padding-top: 0;
}
.testimonial-area-4 .section-tag .heading {
  padding-left: 0;
  color: var(--black_200);
}
.testimonial-area-4 .section-tag .p {
  padding-left: 0;
  color: var(--black_200);
}
.testimonial-area-4 .section-tag .title-text {
  padding-left: 13px;
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-button-prev) {
  --swiper-navigation-size: 15px;
  --swiper-navigation-color: #9d9ca0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-button-prev)::before {
  content: "";
  top: 6px;
  position: absolute;
  width: 34px;
  height: 3px;
  background: #9d9ca0;
  border-radius: 20px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-button-prev)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-button-prev):hover::before {
  width: 43px;
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev) {
  right: -50px;
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev)::after {
  content: "\f054";
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev)::before {
  left: auto;
  right: 3px;
}
.testimonial-area-4 :is(.swiper-button-next, .swiper-rtl .swiper-button-prev):hover {
  right: -60px;
}
.testimonial-area-4 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next) {
  left: -55px;
}
.testimonial-area-4 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next)::after {
  content: "\f053";
}
.testimonial-area-4 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next)::before {
  left: 3px;
}
.testimonial-area-4 :is(.swiper-button-prev, .swiper-rtl .swiper-button-next):hover {
  left: -65px;
}

:is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-slider-img img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  :is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-slider-img img {
    width: auto;
  }
}
:is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  :is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content {
    padding-top: 0;
  }
}
@media screen and (min-width: 1441px) {
  :is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content {
    padding-right: 50px;
    padding-left: 20px;
  }
}
:is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content .section-tag .heading {
  padding-left: 0;
}
:is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content p {
  --content-fs: 16px;
  line-height: 2;
  font-style: italic;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  :is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content p {
    --content-fs: 20px;
    line-height: 35px;
  }
}
:is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content hr {
  background: #e6e6e6;
  width: 100%;
  height: 1px;
  margin: 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
  margin-top: 2.8125rem;
}
:is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content .testimonial-author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
}
:is(.testimonial-slide-4, .testimonial-slide-5) .testimonial-content .author h5 {
  margin-bottom: 0;
}

.logo-slide-4 .testimonial-logo {
  cursor: pointer;
  opacity: 0.5;
  text-align: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.logo-slide-4 .testimonial-logo:hover {
  opacity: 1;
}

.testimonial-logo-slide {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .testimonial-logo-slide {
    margin-top: 7.8125rem;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-logo-slide .testimonial-logo img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-logo-slide .testimonial-logo img {
    width: auto;
  }
}

.fullpage_section_four {
  position: relative;
  z-index: 1;
}
.fullpage_section_four .shape18 {
  top: 20%;
  left: 25px;
  position: absolute;
  z-index: -1;
  width: 20%;
}
@media screen and (min-width: 768px) {
  .fullpage_section_four .shape18 {
    width: 10%;
    top: 15%;
  }
}
@media screen and (min-width: 992px) {
  .fullpage_section_four .shape18 {
    width: auto;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_four .shape18 {
    top: 20%;
    left: 85px;
  }
}
.fullpage_section_four .shape19 {
  top: 15%;
  right: 10%;
  position: absolute;
  z-index: -1;
  width: 20%;
}
@media screen and (min-width: 768px) {
  .fullpage_section_four .shape19 {
    width: 15%;
  }
}
@media screen and (min-width: 1200px) {
  .fullpage_section_four .shape19 {
    width: auto;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_four .shape19 {
    top: 15%;
    right: 10%;
  }
}
.fullpage_section_four .shape20 {
  right: 5%;
  bottom: 5%;
  position: absolute;
  z-index: -1;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .fullpage_section_four .shape20 {
    width: 15%;
  }
}
@media screen and (min-width: 1200px) {
  .fullpage_section_four .shape20 {
    width: auto;
  }
}
.fullpage_section_four .section-title {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fullpage_section_four .section-title {
    top: 80px;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_four .section-title {
    top: 100px;
  }
}
.fullpage_section_four .section-title span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.fullpage_section_four .section-title h2 {
  color: var(--white);
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .fullpage_section_four .section-title h2 {
    font-size: 48px;
  }
}
.fullpage_section_four .swiper-button-next::after,
.fullpage_section_four .swiper-rtl .swiper-button-prev::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .fullpage_section_four .swiper-button-next::after,
  .fullpage_section_four .swiper-rtl .swiper-button-prev::after {
    content: "$";
    font-family: "ElegantIcons";
    font-weight: 900;
    font-size: 30px;
    color: var(--white);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}
.fullpage_section_four .swiper-button-prev::after,
.fullpage_section_four .swiper-rtl .swiper-button-next::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .fullpage_section_four .swiper-button-prev::after,
  .fullpage_section_four .swiper-rtl .swiper-button-next::after {
    content: "#";
    font-family: "ElegantIcons";
    font-weight: 900;
    font-size: 30px;
    color: var(--white);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}
.fullpage_section_four .swiper-button-prev,
.fullpage_section_four .swiper-rtl .swiper-button-next {
  left: -70px;
  right: auto;
}
.fullpage_section_four .swiper-button-prev:hover::after,
.fullpage_section_four .swiper-rtl .swiper-button-next:hover::after {
  font-size: 40px;
}
.fullpage_section_four .swiper-button-next,
.fullpage_section_four .swiper-rtl .swiper-button-prev {
  right: -70px;
  left: auto;
}
.fullpage_section_four .swiper-button-next:hover::after,
.fullpage_section_four .swiper-rtl .swiper-button-prev:hover::after {
  font-size: 40px;
}

.testimonial-slide-3 {
  margin: 70px -12px 0;
}
.testimonial-slide-3 .single-widget {
  border-radius: 8px;
  background-color: #fff;
  padding: 40px 30px;
  margin: 0 12px;
  transition: all 0.3s ease-in-out;
}
.testimonial-slide-3 .single-widget.slick-center {
  box-shadow: 0 20px 40px 0 rgba(23, 22, 26, 0.1019607843);
}
.testimonial-slide-3 .single-widget .widget-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #e6e6e6;
}
.testimonial-slide-3 .single-widget .widget-title .auth-rating {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 1;
  margin-left: 15px;
}
.testimonial-slide-3 .single-widget .widget-title .auth-info h6 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0;
}
.testimonial-slide-3 .single-widget .widget-title .auth-info span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
}
.testimonial-slide-3 .single-widget .widget-title .rating span {
  color: var(--black_900);
  margin-right: 7px;
}
.testimonial-slide-3 .single-widget .widget-title .rating i {
  color: #f2a60c;
  font-size: 14px;
}
.testimonial-slide-3 .single-widget .widget-body p {
  font-style: italic;
  margin-top: 63px;
  position: relative;
  margin-bottom: 30px;
}
.testimonial-slide-3 .single-widget .widget-body p::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-size: 30px;
  color: var(--brand_color);
  position: absolute;
  top: -40px;
  left: 0;
  opacity: 0.8;
}
.testimonial-slide-3 .single-widget .widget-body .post-date {
  display: inline-flex;
  align-items: center;
  color: var(--black_500);
}
.testimonial-slide-3 .single-widget .widget-body .post-date img {
  margin-right: 8px;
}
.testimonial-slide-3 .slick-track {
  padding-bottom: 60px;
}
.testimonial-slide-3 .slick-dots {
  bottom: -20px;
}
.testimonial-slide-3 .slick-dots li {
  height: initial;
  width: initial;
  margin: 0;
}
.testimonial-slide-3 .slick-dots li.slick-active button {
  background-color: var(--brand_color);
}
.testimonial-slide-3 .slick-dots li button {
  height: 5px;
  width: 40px;
  border-radius: 2.5px;
  background-color: var(--black_100);
  border: 0;
}

.testimonial-area-3 {
  padding-top: 128px;
  padding-bottom: 123px;
}
.testimonial-area-3 .featured-by {
  margin-top: 75px;
}
.testimonial-area-3 .featured-by .title {
  position: relative;
  z-index: 1;
  text-align: center;
}
.testimonial-area-3 .featured-by .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #ccccce;
  z-index: -1;
}
.testimonial-area-3 .featured-by h5 {
  font-family: var(--ibm);
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f5f5f5;
  padding: 0 20px;
}
.testimonial-area-3 .featured-by .red {
  color: var(--brand_color);
}
.testimonial-area-3 .featured-by a {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 26px 32px;
}
.testimonial-area-3 .featured-by a:hover {
  opacity: 1;
}

.testimonial-slide-5 {
  --testimonial-quote: var(--white);
  --content-clr: var(--white);
  --title-clr: var(--white);
  --subtitle-clr: var(--white);
}
@media screen and (min-width: 1200px) {
  .testimonial-slide-5 .testimonial-content {
    padding-right: 48px;
    padding-top: 60px;
  }
}
@media screen and (min-width: 1441px) {
  .testimonial-slide-5 .testimonial-content {
    padding-top: 0;
  }
}
.testimonial-slide-5 .testimonial-content p {
  --content-fs: 16px;
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .testimonial-slide-5 .testimonial-content p {
    --content-fs: 18px;
  }
}
@media screen and (min-width: 1441px) {
  .testimonial-slide-5 .testimonial-content p {
    --content-fs: 24px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-slide-5 .testimonial-content hr {
    margin-top: 55px;
  }
}
@media screen and (min-width: 1441px) {
  .testimonial-slide-5 .testimonial-content hr {
    margin-top: 95px;
  }
}
.testimonial-slide-5 .testimonial-slider-img {
  margin-left: 50px;
  width: 65%;
}
@media screen and (min-width: 768px) {
  .testimonial-slide-5 .testimonial-slider-img {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-slide-5 .testimonial-slider-img {
    width: 70%;
  }
}
@media screen and (min-width: 1441px) {
  .testimonial-slide-5 .testimonial-slider-img {
    width: 100%;
    margin-left: 0;
  }
}
.testimonial-slide-5 .testimonial-slider-img img {
  border-radius: 10px;
  width: 100%;
}

.testimonial-area-8 {
  position: relative;
  z-index: 1;
}
.testimonial-area-8 .navigation {
  max-width: 1610px;
  position: relative;
  padding-top: 15px;
  margin: 0 15px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .testimonial-area-8 .navigation {
    margin-left: auto;
    margin-right: 0;
  }
}
.testimonial-area-8 .navigation::before {
  content: "";
  bottom: 7px;
  left: 120px;
  position: absolute;
  width: 100%;
  height: 1px;
  max-width: 1500px;
  background: var(--black_100);
}
.testimonial-area-8 :is(.swiper-button-prev, .swiper-button-next) {
  --swiper-navigation-size: 14px;
  --swiper-navigation-color: var(--black_900);
  top: auto;
  bottom: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.testimonial-area-8 :is(.swiper-button-prev, .swiper-button-next)::before {
  content: "";
  top: 47%;
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--black_900);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.testimonial-area-8 :is(.swiper-button-prev, .swiper-button-next):hover {
  color: var(--brand_color);
}
.testimonial-area-8 :is(.swiper-button-prev, .swiper-button-next):hover::before {
  background: var(--brand_color);
}
.testimonial-area-8 .swiper-button-prev::before {
  left: 10px;
}
.testimonial-area-8 .swiper-button-next {
  left: 80px;
}
.testimonial-area-8 .swiper-button-next::before {
  right: 10px;
}

.testimonial-slider-active {
  max-width: 1615px;
  margin: 0 0 0 auto;
  margin-top: 50px;
  padding: 0 15px;
}
@media screen and (min-width: 1200px) {
  .testimonial-slider-active {
    margin-top: 75px;
  }
}
.testimonial-slider-active .testimonial-item {
  --title-ff: var(--playfair);
  --title-fs: 36px;
  --title-fw: 400;
  --title-clr: var(--black_600);
  background: var(--white);
  box-shadow: 0 5px 15px -3px rgba(131, 146, 167, 0.25);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 70px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.testimonial-slider-active .testimonial-item .category {
  font-size: 16px;
  font-weight: 400;
  color: var(--p_color);
  text-transform: capitalize;
  margin-bottom: 10px;
  display: block;
}
.testimonial-slider-active .testimonial-item .testimonial-title {
  line-height: 1.5;
  font-size: 24px;
}
@media screen and (min-width: 992px) {
  .testimonial-slider-active .testimonial-item .testimonial-title {
    font-size: 36px;
  }
}
.testimonial-slider-active .testimonial-item .testimonial-subtitle {
  font-family: var(--ibm);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 30px;
  margin-bottom: 0;
  display: block;
  text-transform: capitalize;
  color: var(--black_900);
}
@media screen and (min-width: 1200px) {
  .testimonial-slider-active .testimonial-item .testimonial-subtitle {
    margin-top: 70px;
  }
}
.testimonial-slider-active .testimonial-item .author-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonial-slider-active .testimonial-item .author-name img {
  margin-left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.testimonial-slider-active .testimonial-item .author-name .author-title {
  font-size: 16px;
  color: var(--p_color);
  text-transform: capitalize;
}
.testimonial-slider-active .testimonial-item:hover {
  box-shadow: 0 30px 60px -15px rgba(131, 146, 167, 0.3);
}

.testimonial-area-6 {
  background-image: url(../image/testimonial-bg.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.testimonial-area-6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(23, 22, 26, 0.6);
  z-index: -1;
}

.testimonial-slider-6 {
  color: #fff;
  text-align: center;
}
.testimonial-slider-6.slick-slider {
  margin-bottom: 77px;
}
.testimonial-slider-6 p {
  font-size: 24px;
  font-style: italic;
  line-height: 36px;
  margin-top: 65px;
  margin-bottom: 40px;
}
.testimonial-slider-6 .post-author {
  line-height: 36px;
  opacity: 0.6;
}
.testimonial-slider-6 .slick-dots {
  bottom: -80px;
}
.testimonial-slider-6 .slick-dots li {
  height: initial;
  width: initial;
}
.testimonial-slider-6 .slick-dots li button {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  height: 8px;
  width: 8px;
  margin: 0;
}
.testimonial-slider-6 .slick-dots .slick-active button {
  background-color: #d92c0a;
}

.testimonial_area_nine {
  background: rgba(23, 22, 26, 0.9803921569);
  padding: 130px 0px;
}
.testimonial_area_nine .navigation .swiper-button-prev,
.testimonial_area_nine .navigation .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #464547;
  color: #B9B9BA;
  border-radius: 50%;
  top: 65%;
  transition: all 0.3s;
  opacity: 0;
}
.testimonial_area_nine .navigation .swiper-button-prev:after,
.testimonial_area_nine .navigation .swiper-button-next:after {
  font-size: 15px;
}
.testimonial_area_nine .navigation .swiper-button-prev:hover,
.testimonial_area_nine .navigation .swiper-button-next:hover {
  background: var(--brand_color);
  color: #fff;
}
.testimonial_area_nine .navigation .swiper-button-prev {
  left: -130px;
}
.testimonial_area_nine .navigation .swiper-button-next {
  right: -130px;
}
.testimonial_area_nine:hover .swiper-button-prev {
  left: -100px;
  opacity: 1;
}
.testimonial_area_nine:hover .swiper-button-next {
  right: -100px;
  opacity: 1;
}

.testimonial-slider-inner .testimonial-item {
  display: flex;
  border: 2px solid rgba(239, 72, 83, 0.1);
  padding: 50px 110px 50px 50px;
  border-radius: 8px;
  margin-top: 280px;
  align-items: flex-start;
  margin-bottom: 78px;
  flex-direction: row-reverse;
}
.testimonial-slider-inner .testimonial-item p {
  font-size: 26px;
  color: #e6e6e6;
  letter-spacing: 0.01em;
  font-family: var(--ibm);
  margin-bottom: 30px;
  line-height: 1.5;
  margin-top: 30px;
}
.testimonial-slider-inner .testimonial-item .quote-img-top {
  margin-top: -150px;
}
.testimonial-slider-inner .testimonial-item .quote-img-bottom {
  position: absolute;
  right: 50px;
  bottom: 0px;
}
.testimonial-slider-inner .testimonial-content {
  flex: 1;
  padding-right: 20px;
}
.testimonial-slider-inner .author-info .author-name {
  font-size: 18px;
  color: #e8e6e6;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: var(--ibm);
  margin-bottom: 0;
}
.testimonial-slider-inner .author-info .author-position {
  font-size: 16px;
  font-weight: 400;
  color: #CCCCCE;
  letter-spacing: 0.01em;
}
.testimonial-slider-inner .author-image {
  padding: 14px;
  border-radius: 8px;
  background: #2E2D31;
  margin-left: 40px;
  margin-top: -330px;
}
.testimonial-slider-inner .author-image img {
  border-radius: 8px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.article-area .section-title a {
  position: relative;
  display: inline-block;
}
.article-area .section-title a:hover::after {
  transform: translateY(10px);
  opacity: 0;
}
.article-area .section-title a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  height: 1px;
  width: 100%;
  left: 0;
  background-color: var(--brand_color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.article-area .article-item {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--black_50);
  align-items: center;
  padding: 50px 0;
}
.article-area .article-item:first-child {
  padding-top: 0;
}
.article-area .article-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.article-area .article-item .art-img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-right: 40px;
}
.article-area .article-item h4 {
  font-family: var(--ibm);
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1px;
  color: #17161a;
  margin-bottom: 20px;
}
.article-area .article-item h4:hover {
  color: var(--brand_color);
}
.article-area .article-item .article-info {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--black_500);
}
.article-area .article-item .article-info img {
  margin-right: 10px;
}
.article-area .article-item .article-info div {
  margin-right: 18px;
  display: flex;
  align-items: center;
}
.article-area .article-item .article-info div:last-child {
  margin-right: 0;
}

.article-area-2 .section-title a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  margin-left: auto;
  color: #17161a;
  position: relative;
}
.article-area-2 .section-title a:hover {
  color: var(--brand_color);
}
.article-area-2 .section-title a:hover::after {
  background-color: var(--brand_color);
}
.article-area-2 .section-title a::after {
  width: 100%;
  bottom: -2px;
  height: 2px;
  background-color: #17161a;
  position: absolute;
  content: "";
  left: 0;
}

.article-widget-2 {
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  padding-top: 50px;
  padding-bottom: 50px;
}
.article-widget-2:last-child {
  border-bottom: none;
}
.article-widget-2:hover .read {
  display: block;
}
.article-widget-2:hover .time {
  display: none;
}
.article-widget-2 .article-img {
  border-radius: 5px;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  height: 130px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.article-widget-2 .article-img h6 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1px;
  color: #17161a;
}
.article-widget-2 .article-img span {
  color: #747376;
}
.article-widget-2 .subtitle {
  text-transform: capitalize;
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
  color: #747376;
  margin-bottom: 11px;
}
.article-widget-2 h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #17161a;
}
.article-widget-2 .time {
  font-family: var(--ibm);
  color: #747376;
  display: block;
}
.article-widget-2 .read {
  display: none;
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}
.article-widget-2 .read i {
  margin-left: 5px;
  vertical-align: middle;
}

.blog-area-4 {
  background: #211326;
}
@media screen and (min-width: 768px) {
  .blog-area-4 {
    margin-left: 120px;
  }
}

.blog-item {
  padding: 20px;
  margin-left: 10px;
  margin-top: 15px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .blog-item {
    padding: 40px;
  }
}
.blog-item.is-active {
  background: #28172e;
}
.blog-item .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-item .blog-meta .author-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.blog-item .blog-meta .author-info h5 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: var(--black_200);
  margin-bottom: 0;
  padding-left: 0;
}
.blog-item .blog-meta .author-info h5 a {
  color: var(--black_200);
  font-weight: 600;
}
.blog-item .blog-meta .author-info span {
  color: var(--black_200);
  font-size: 13px;
  padding-left: 0;
}
.blog-item .blog-meta :is(.blog-category, .blog-read) {
  color: var(--black_200);
  font-size: 14px;
  font-family: var(--ibm);
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-item .blog-meta .blog-category:hover {
  color: var(--brand_color);
}
.blog-item .blog-meta .blog-read::before {
  content: "";
  top: 50%;
  left: -10px;
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brand_color);
  transform: translateY(-50%);
}
.blog-item .blog-title {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 5px;
  padding-left: 0;
}
.blog-item .blog-title a {
  color: var(--white);
}
.blog-item .read-more-btn {
  margin-top: 50px;
  display: inline-block;
}
.blog-item .read-more-btn a {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  font-family: var(--ibm);
  color: var(--white);
  position: relative;
  z-index: 2;
}
.blog-item .read-more-btn a i {
  margin-left: 10px;
}
.blog-item .read-more-btn a::before {
  content: "";
  bottom: -2px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--brand_color);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}
.blog-item .read-more-btn a:hover::before {
  width: 100%;
  height: 18px;
}
.blog-item:hover {
  background: #28172e;
}

.my-trips-area {
  background-color: #f5f5f5;
  padding-top: 140px;
  padding-bottom: 150px;
}
.my-trips-area .post-pad {
  padding-right: 67px;
}

.trip-post {
  border-top: 1px solid #e6e6e6;
  padding-bottom: 80px;
  padding-top: 75px;
}
.trip-post:first-child {
  border-top: none;
  padding-top: 0;
}
.trip-post .post-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 43px;
}
.trip-post .post-header h3 {
  margin-bottom: 0;
}
.trip-post .post-header .post-meta {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.trip-post .post-header .post-cat {
  display: flex;
  align-items: center;
  background-color: rgba(217, 44, 10, 0.1);
  border-radius: 2px;
  padding: 1px 10px;
  color: var(--brand_color);
  flex-wrap: wrap;
}
.trip-post .post-header .post-cat:hover {
  background-color: var(--brand_color);
  color: #fff;
}
.trip-post .post-header .post-cat:hover img {
  filter: saturate(100%) brightness(0%) invert(100%) sepia(0%) hue-rotate(234deg) contrast(101%);
}
.trip-post .post-header .post-cat img {
  transition: all 0.3s ease-in-out;
  margin-right: 8px;
}
.trip-post .post-header .post-date {
  display: flex;
  align-items: center;
  color: var(--black_500);
}
.trip-post .post-header .post-date img {
  margin-right: 8px;
}
.trip-post .post-body .post-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.trip-post .post-body .post-img .caption {
  left: 20px;
  bottom: 20px;
  position: absolute;
  border-radius: 3px;
  background-color: #fff;
  padding: 4px 10px;
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black_900);
}
.trip-post .post-body .post-img.college-photo {
  display: flex;
}
.trip-post .post-body .post-img.slider-photo {
  position: relative;
}
.trip-post .post-body .post-img.slider-photo .slick-slide {
  position: relative;
}
.trip-post .post-body .post-img.slider-photo .nav-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
  border-radius: 3px;
  color: var(--black_900);
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: none;
  z-index: 1;
  font-size: 14px;
}
.trip-post .post-body .post-img.slider-photo .nav-arrow.prev {
  right: 56px;
}
.trip-post .post-body .post-img.slider-photo .nav-arrow:hover {
  color: #fff;
  background-color: var(--brand_color);
}
.trip-post .post-body .post-img.video .play-button {
  height: 70px;
  width: 70px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
}
.trip-post .post-body .post-img.video .play-button::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  top: -5px;
  left: -5px;
  animation: pulse-white 2s infinite;
  border-radius: 50%;
}
.trip-post .post-body .post-img.video .play-button i {
  line-height: 70px;
  text-shadow: 0 4px 11px 0 rgba(217, 44, 10, 0.3019607843);
  font-size: 18px;
}
.trip-post .post-body p {
  margin-top: 26px;
  margin-bottom: 30px;
}
.trip-post .post-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.trip-post .post-footer .theme-btn {
  padding: 10px 31px;
}
.trip-post .post-footer div {
  display: flex;
  gap: 20px;
}
.trip-post .post-footer span {
  display: flex;
  align-items: center;
  line-height: 22px;
  color: var(--black_500);
}
.trip-post .post-footer span img {
  margin-right: 6px;
}

.post-details {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
}
.post-details .post-footer {
  margin-top: 50px;
}
.post-details .post-img {
  border-radius: 6px;
}
.post-details a {
  display: inline-block;
}
.post-details .img-caption {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 11px;
  display: inline-block;
}
.post-details .quote-2 {
  padding: 26px 40px;
  font-family: var(--playfair);
  font-weight: 500;
  background-color: #fff;
  font-style: italic;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
  box-shadow: 0 10px 15px 0 rgba(23, 22, 26, 0.0509803922);
  border-radius: 8px;
  margin-top: 52px;
  margin-bottom: 40px;
}
.post-details .social-link a {
  margin-right: 0;
}

.trip-post-author {
  margin-top: 80px;
  padding: 30px 50px 34px 50px;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(23, 22, 26, 0.0509803922);
  margin-bottom: 125px;
}
.trip-post-author .author-img {
  margin-right: 30px;
  text-align: center;
}
.trip-post-author .author-img img {
  border-radius: 50%;
  margin-bottom: 24px;
}
.trip-post-author .social-link a {
  margin-right: 20px;
}
.trip-post-author h5 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
}
.trip-post-author p {
  font-size: 18px;
  margin-bottom: 0;
}

.trip-grid-post .post-img {
  position: relative;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
}
.trip-grid-post .post-img:hover::after {
  opacity: 0.2;
}
.trip-grid-post .post-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black_900);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.trip-grid-post h4 {
  font-size: 20px;
  line-height: 28px;
  color: var(--black_900);
  margin-bottom: 0;
  margin-top: 3px;
}
.trip-grid-post .post-meta {
  display: flex;
  gap: 13px;
}
.trip-grid-post .post-meta a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black_500);
  display: inline-flex;
  flex-wrap: wrap;
}
.trip-grid-post .post-meta a img {
  margin-right: 6px;
}

.post-pagination {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
}
.post-pagination a {
  display: inline-block;
  padding: 5px 19px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  background-color: #fff;
  color: var(--p_color);
}
.post-pagination a i {
  font-size: 12px;
}
.post-pagination a .next i {
  margin-left: 8px;
}
.post-pagination a:hover, .post-pagination a.active {
  background-color: var(--brand_color);
  color: #fff;
  border-color: var(--brand_color);
}
.post-pagination .page {
  display: flex;
  gap: 10px;
}
.post-pagination .page a {
  padding: 5px 14px;
}

.trip-sidebar {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 40px 40px 40px;
}
.trip-sidebar .author {
  text-align: center;
  padding-bottom: 60px;
}
.trip-sidebar .author .auth-img {
  border-radius: 50%;
}
.trip-sidebar .author h4 {
  margin-top: 40px;
  margin-bottom: 22px;
}
.trip-sidebar .author p {
  margin-bottom: 32px;
}
.trip-sidebar .widget-header {
  margin-bottom: 31px;
}
.trip-sidebar .single-widget {
  border-top: 1px solid #e6e6e6;
  margin-bottom: 52px;
  padding-top: 43px;
}
.trip-sidebar .single-widget:last-child {
  margin-bottom: 0;
}
.trip-sidebar .cat-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.trip-sidebar .cat-widget ul li {
  margin-bottom: 10px;
}
.trip-sidebar .cat-widget ul li a {
  display: inline-block;
  color: var(--p_color);
}
.trip-sidebar .cat-widget ul li a:hover {
  color: var(--brand_color);
}
.trip-sidebar .cat-widget ul li a:hover img {
  filter: invert(19%) sepia(64%) saturate(5593%) hue-rotate(8deg) brightness(93%) contrast(92%);
}
.trip-sidebar .cat-widget ul li a img {
  margin-right: 13px;
}
.trip-sidebar .populer-post img {
  border-radius: 5px;
}
.trip-sidebar .populer-post .post-date {
  display: flex;
  align-items: center;
  color: var(--black_500);
  font-size: 14px;
}
.trip-sidebar .populer-post .post-date img {
  margin-right: 8px;
  border-radius: 0;
  max-width: 15px;
}
.trip-sidebar .populer-post .title {
  margin-bottom: 5px;
  margin-top: 14px;
}
.trip-sidebar .populer-post .single-post {
  margin-bottom: 30px;
}
.trip-sidebar .populer-post .single-post:last-child {
  margin-bottom: 0;
}
.trip-sidebar .post-tag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.trip-sidebar .post-tag a {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 8px 15px;
  color: var(--p_color);
  line-height: 20px;
  display: inline-block;
}
.trip-sidebar .post-tag a:hover {
  color: #fff;
  background-color: var(--brand_color);
}

.instagram-feed-three {
  margin: 0 -5px;
}
.instagram-feed-three .instagram-feed-item {
  margin: 0 5px;
}

.blog-post {
  display: inline-block;
  padding: 30px;
  background: rgba(46, 45, 49, 0.5);
  border-radius: 8px;
  margin-right: 52px;
}
.blog-post .post-img {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
}
.blog-post .post-img img {
  transition: all 0.9s;
}
.blog-post .post-meta {
  display: flex;
  justify-content: space-between;
}
.blog-post .post-meta a {
  font-size: 16px;
  font-weight: 500;
  color: #b9b9ba;
  font-family: var(--ibm);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.blog-post .post-meta a:hover {
  color: #e86a42;
}
.blog-post .post-title {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #e6e6e6;
  font-family: var(--ibm);
  font-weight: 500;
}
.blog-post .post-title:hover {
  color: #e86a42;
}
.blog-post:hover .post-img img {
  transform: scale(1.09);
}

.post-text-btn {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: #bfbfbf;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 16px;
}
.post-text-btn:before {
  content: "";
  width: 50%;
  left: 0;
  bottom: 0;
  height: 1px;
  background: #f3beb3;
  position: absolute;
  transition: all 0.3s linear;
}
.post-text-btn:hover {
  color: #e86a42;
}
.post-text-btn:hover::before {
  width: 100%;
  background: #e86a42;
}

.bs-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.banner-blog-area {
  background-image: url(../image/blog-banner.png);
  background-size: cover;
  position: relative;
  padding: 210px 0 110px;
  z-index: 1;
}
.banner-blog-area::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: #202124;
  display: block;
  opacity: 0.7;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.banner-blog-area .dot-sep .sep {
  position: relative;
}
.banner-blog-area .dot-sep .sep::before {
  content: "•";
  margin: 0 5px;
  padding-right: 5px;
}
.banner-blog-area .blog-banner-title {
  color: #fff;
  font-weight: 700;
}
.banner-blog-area .blog-banner-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.banner-blog-details-area {
  background-image: url(../image/blog-details-banner.png);
  background-size: cover;
  position: relative;
  padding: 200px 0 77px;
  z-index: 1;
}
.banner-blog-details-area::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: #202124;
  display: block;
  opacity: 0.7;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.banner-blog-details-area .dot-sep .sep {
  position: relative;
}
.banner-blog-details-area .dot-sep .sep::before {
  content: "•";
  margin: 0 5px;
  padding-right: 5px;
}
.banner-blog-details-area .blog-details-banner-title {
  color: var(--black_25);
  font-weight: 700;
}
.banner-blog-details-area .blog-details-banner-subtitle {
  align-items: center;
  justify-content: center;
  color: var(--black_50);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  gap: 20px;
}
.banner-blog-details-area .blog-details-banner-subtitle .title-admin {
  align-items: center;
  gap: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.news-area {
  overflow: hidden;
}

.blog-widget {
  background: #f7f7f7;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.blog-widget > img {
  border-radius: 15px;
  width: 100%;
}
.blog-widget .blog-content {
  padding: 25px 30px;
  border-radius: 0 0 15px 15px;
  background: #fff;
}
.blog-widget .blog-content .title {
  color: var(--black_900);
  font-weight: 600;
  margin-bottom: 25px;
  display: block;
}
.blog-widget .blog-content .title:hover {
  text-decoration: none;
  color: var(--brand_color);
}
.blog-widget .blog-content .blog-text {
  color: var(--black_600);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.blog-widget .blog-content .blog-text i {
  margin-right: 3px;
}
.blog-widget .blog-content .blog-sub-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--black_500);
}
.blog-widget .blog-content .blog-sub-text img {
  display: inline;
}
.blog-widget .blog-content .blog-sub-text a {
  color: var(--black_500);
  margin-left: 5px;
  margin-right: 18px;
}
.blog-widget .blog-content .blog-sub-text a:hover {
  color: var(--brand_color);
}

.box-blog .video_post::before,
.box-blog .featured-img {
  border-radius: 15px 15px 0 0;
}

.blog-area {
  overflow: hidden;
  background-color: #f7f7f7;
}
.blog-area .blog-widget {
  box-shadow: 0px 4px 15px -2px rgba(0, 0, 0, 0.0509803922);
  margin: 0;
}
.blog-area .blog-widget:hover {
  box-shadow: 0px 20px 50px -5px rgba(0, 0, 0, 0.1019607843);
}
.blog-area .pagi-content {
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  background: var(--white);
  padding: 20px;
  margin-top: 40px;
}
.blog-area .pagi-content .page-item .page-link {
  border: none;
  padding: 11px 15px;
  background: #fff;
  color: var(--black_400);
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.blog-area .pagi-content .page-item .page-link:hover {
  background-color: #ebebeb;
}
.blog-area .page-item.active .page-link {
  z-index: 3;
  color: var(--brand_color);
  background: #202124;
  border-radius: 5px;
  padding: 11px 15px;
}

.blog-right-content {
  border-radius: 5px;
}
@media (max-width: 360px) {
  .blog-right-content {
    padding: 30px 10px;
  }
}
.blog-right-content .input-group {
  position: relative;
  color: var(--black_400);
}
.blog-right-content .input-group input {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid var(--black_50);
  background: #fff;
  color: var(--black_400);
  border-radius: 5px !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}
.blog-right-content .input-group input:focus {
  border-color: var(--black_200);
  color: var(--black_800);
}
.blog-right-content .input-group input:focus::placeholder {
  color: var(--black_800);
}
.blog-right-content .input-group .search-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  transform: rotate(270deg);
}
.blog-right-content .blog-title {
  font-weight: 700;
  color: var(--black_900);
}
.blog-right-content .category_list {
  margin-top: -10px;
  margin-bottom: 35px;
}
.blog-right-content .category_list li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--black_800);
  position: relative;
  padding-left: 20px;
}
.blog-right-content .category_list li a:hover {
  text-decoration: underline;
}
.blog-right-content .category_list li a:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--black_800);
  position: absolute;
  left: 0;
  top: 6.5px;
  border-radius: 50%;
}
.blog-right-content .category_list li a span {
  padding-left: 10px;
  font-size: 14px;
}
.blog-right-content .category_list li a:hover {
  color: var(--black_900);
}
.blog-right-content .category_list li a:hover:before {
  background: var(--black_900);
}
.blog-right-content .category_list li + li {
  margin-top: 8px;
}
.blog-right-content .recent-news .news-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-right-content .recent-news .news-item img {
  border-radius: 5px;
  height: 90px;
  width: auto;
}
.blog-right-content .recent-news .news-item .news-title {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black_900);
  margin-bottom: 10px;
  display: block;
}
.blog-right-content .recent-news .news-item .news-title:hover {
  text-decoration: underline;
}
.blog-right-content .recent-news .news-item .news-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--black_400);
}
.blog-right-content .tags-item {
  gap: 6px;
}
.blog-right-content .tags-item .tags-btn {
  padding: 10px 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: var(--black_600);
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}
.blog-right-content .tags-item .tags-btn:hover {
  color: var(--white);
  background-color: #202124;
}

.instagram-gallery-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.instagram-gallery-widget .instagram-item {
  display: block;
  position: relative;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.1s linear;
  max-width: 32%;
}
.instagram-gallery-widget .instagram-item img {
  width: 100%;
  border-radius: 5px;
}
.instagram-gallery-widget .instagram-item::after {
  font-family: "Line Awesome Brands";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f16d";
  position: absolute;
  font-size: 26px;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}
.instagram-gallery-widget .instagram-item:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 29, 36, 0.3);
  z-index: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
.instagram-gallery-widget .instagram-item:hover:before {
  opacity: 1;
  top: 0;
}
.instagram-gallery-widget .instagram-item:hover:after {
  opacity: 1;
  top: 50%;
}

/*----------------------------------------*/
/* Blog Details Area
/*----------------------------------------*/
.blog-details-area {
  overflow: hidden;
  background-color: #f7f7f7;
}
.blog-details-area .details-content {
  background-color: #fff;
  box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.0509803922);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.blog-details-area .details-content img {
  border-radius: 10px;
}
.blog-details-area .details-content .details-text .deco-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 180%;
  text-decoration: underline;
  color: var(--black_900);
}
.blog-details-area .details-content .details-list li {
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: var(--black_900);
  margin-bottom: 10px;
}
.blog-details-area .details-content .details-list li span {
  width: 6px;
  height: 6px;
  padding: 3px;
  border-radius: 50%;
  margin-right: 13px;
  background: #c4c4c4;
}
.blog-details-area .details-content .details-title {
  font-weight: 600;
  color: var(--black_900);
}
.blog-details-area .social-content {
  border-top: 1px solid var(--black_50);
  background-color: #fff;
  box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.0509803922);
  border-radius: 0 0 20px 20px;
}
.blog-details-area .social-content .post-tags span {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: var(--black_500);
  margin-right: 5px;
}
.blog-details-area .social-content .post-tags a {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--black_600);
}
.blog-details-area .social-content .post-tags a:hover {
  text-decoration: underline;
}
.blog-details-area .social-content .share-text {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.02em;
  color: var(--black_600);
  margin: 0;
  padding-right: 10px;
}
.blog-details-area .social-content .social-item {
  align-items: center;
}
.blog-details-area .social-content .social-item .social-list {
  gap: 10px;
}
.blog-details-area .social-content .social-item .social-list a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  color: var(--black_400);
  border: 1px solid var(--black_50);
}
.blog-details-area .social-content .social-item .social-list a:hover {
  color: #fff;
  background-color: var(--black_900);
  border-color: var(--black_900);
  text-decoration: none;
}
.blog-details-area .post-item {
  padding: 40px 40px 0;
  background-color: #fff;
  box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.0509803922);
}
.blog-details-area .post-item .post-title {
  font-weight: 500;
}
.blog-details-area .post-item .blog-widget {
  background-color: transparent;
}
.blog-details-area .post-item .blog-widget .blog-content {
  padding: 25px 0 10px;
}
.blog-details-area .comments-item {
  background-color: #fff;
  box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.0509803922);
}
.blog-details-area .comments-item .comments-title {
  font-weight: 600;
  color: var(--black_900);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--black_50);
}
.blog-details-area .comments-item .comments-content {
  display: flex;
  gap: 15px;
}
@media (max-width: 320px) {
  .blog-details-area .comments-item .comments-content {
    flex-wrap: wrap;
  }
}
.blog-details-area .comments-item .comments-content div img {
  border-radius: 50%;
}
.blog-details-area .comments-item .comments-content .comments-text {
  width: 100%;
}
.blog-details-area .comments-item .comments-content .comments-text .admin-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--black_900);
  margin-bottom: 6px;
}
.blog-details-area .comments-item .comments-content .comments-text .post-time {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--black_400);
  margin: 0;
}
.blog-details-area .comments-item .comments-content .comments-text .text-area {
  padding-bottom: 27px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--black_50);
}
.blog-details-area .comments-item .comments-content .comments-text .text-area-2 {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--black_50);
}
.blog-details-area .comments-item .comments-content .comments-text .comment-reply {
  color: var(--black_500);
}
.blog-details-area .comments-item .comments-content .comments-text .comment-reply:hover {
  color: var(--black_900);
}
.blog-details-area .comments-item .comments-content .comments-text .reply-cont {
  width: 100%;
}
.blog-details-area .comments-item .comments-content .comments-text .reply-cont .reply-text {
  color: var(--black_900);
}
.blog-details-area .reply-item {
  background-color: #fff;
  box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.0509803922);
}
.blog-details-area .reply-item .reply-title {
  font-weight: 600;
  color: var(--black_900);
}
.blog-details-area .reply-item .reply-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--black_600);
}
.blog-details-area .reply-item .get_quote_form .form-group {
  position: relative;
}
.blog-details-area .reply-item .get_quote_form .form-group {
  margin-bottom: 25px;
}
.blog-details-area .reply-item .get_quote_form .form-group:last-child {
  margin-bottom: 10px;
}
.blog-details-area .reply-item .form-control {
  display: block;
  width: 100%;
  padding: 17px 24px;
  background-color: #f7f7f7;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border: 1px solid transparent;
}
.blog-details-area .reply-item .form-control:focus {
  background-color: #fff;
  border: 1px solid var(--black_100);
  color: var(--black_800);
  box-shadow: none;
}
.blog-details-area .reply-item .message {
  height: 160px;
  padding-top: 22px;
}
.blog-details-area .reply-item .blog_comment_box .get_quote_form .form-group .form-control {
  height: 60px;
  border-radius: 4px;
  border: 1px solid #dadce0;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 30px;
  padding-bottom: 20px;
}
.blog-details-area .reply-item .get_quote_form .form-group .floating-label {
  position: absolute;
  pointer-events: none;
  left: 40px;
  top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--black_400);
  transition: 0.2s;
  margin-bottom: 0;
}
.blog-details-area .reply-item .get_quote_form .form-group input:focus ~ .floating-label,
.blog-details-area .reply-item .get_quote_form .form-group textarea:focus ~ .floating-label,
.blog-details-area .reply-item .get_quote_form .form-group input:not(:focus):valid ~ .floating-label {
  top: -10px;
  left: 26px;
  font-size: 12px;
  color: var(--black_900);
  background-color: #fff;
  padding: 0 5px 0 5px;
}
.blog-details-area .reply-item .thm_btn {
  padding: 15px 36px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  border: none;
  border-radius: 4px;
  color: #fff;
  background-color: var(--black_800);
}
.blog-details-area .reply-item .thm_btn:hover {
  background-color: var(--black_900);
}
.blog-details-area .reply-item .check_input {
  gap: 7px;
  align-items: baseline;
}

/*----------------------------------------*/
/* Blog Single Area
/*----------------------------------------*/
blockquote {
  font-family: var(--playfair);
  font-weight: 500;
  line-height: 36px;
  background: rgba(255, 255, 255, 0.52);
  border-left: 4px solid var(--brand_color);
  font-size: 20px;
  padding: 50px 40px;
  position: relative;
  z-index: 0;
  margin: 30px 0;
  border-radius: 10px;
}
blockquote:before, blockquote:after {
  content: "";
  position: absolute;
  z-index: -1;
}
blockquote:before {
  background: url("../image/quote_top.png") no-repeat scroll left top;
  width: 132px;
  height: 81px;
  top: 0;
}
blockquote:after {
  background: url("../image/quote_bottom.png") no-repeat scroll left bottom;
  width: 77px;
  height: 75px;
  right: 40px;
  bottom: 30px;
}
blockquote .c_head {
  color: var(--black_700);
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 45px;
  font-size: 24px;
}
blockquote .author {
  color: var(--black_500);
  font-weight: 500;
  font-size: 16px;
}

.video_post {
  position: relative;
  z-index: 1;
}
.video_post:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(9, 16, 50, 0.2);
  position: absolute;
  z-index: 0;
}
.video_post img {
  width: -webkit-fill-available;
}

.video_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 20px 40px 0 rgba(1, 16, 58, 0.14);
  text-align: center;
  line-height: 75px;
  font-size: 30px;
  position: absolute;
  transition: all 0.3s linear;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video_icon:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 0.2px solid #fff;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  left: 0;
  transform: scale(1.5);
}
.video_icon i {
  color: var(--brand_color);
  text-shadow: 0 6px 13px rgba(239, 72, 83, 0.3);
  position: relative;
}
.video_icon i:after {
  width: 300%;
  height: 300%;
  position: absolute;
  left: -100%;
  top: -110%;
  border-radius: 50%;
  box-shadow: 0 1px 15px 1px rgba(255, 255, 255, 0.5);
  content: "";
  -webkit-animation: pulse 2s infinite;
  -webkit-transform: scale(8);
  -ms-transform: scale(8);
  transform: scale(8);
  animation: pulse 2s infinite;
}

.blog_link_post {
  background: #fff;
  border-left: 4px solid var(--brand_color);
  padding: 50px 40px;
  line-height: 34px;
  position: relative;
  overflow: hidden;
  margin: 30px 0;
}
.blog_link_post:before, .blog_link_post:after {
  content: "";
  position: absolute;
}
.blog_link_post:before {
  background: url("../image/icon_01.png") no-repeat;
  top: 5px;
  left: 40px;
  width: 42px;
  height: 41px;
}
.blog_link_post:after {
  background: url("../image/icon_02.png") no-repeat;
  bottom: -35px;
  right: 30px;
  width: 100px;
  height: 100px;
}
.blog_link_post:hover {
  text-decoration: none !important;
}
.blog_link_post a:hover {
  text-decoration: none;
}
.blog_link_post p {
  font-size: 24px;
  color: var(--black_700);
  margin-bottom: 0;
  transition: color 0.2s linear;
  line-height: 1.6;
}

.blog-sub-text p {
  color: var(--black_600);
  font-weight: 400;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

/*----------------------------------------*/
/* Blog Extent grid Area
/*----------------------------------------*/
/*=========== blog_top_post_area css ==========*/
.blog_top_post_area {
  background: #f7f7f7;
}

.blog_top_post {
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.06);
  border-radius: 30px;
  margin: 0;
}
.blog_top_post .p_top_img {
  position: relative;
  padding-right: 0;
}
.blog_top_post .p_top_img .p_img {
  position: absolute;
  padding-right: 0;
  height: 100%;
  top: 0;
  right: 0;
  width: 100%;
  background: url("https://html-template.spider-themes.net/allfolio/img/blog-grid/top_post.jpg");
  background-size: cover;
  border-radius: 0 30px 30px 0;
}
.blog_top_post .b_top_post_content {
  padding: 50px 30px 50px 50px;
  background-color: #fff;
  border-radius: 30px 0 0 30px;
}
.blog_top_post .b_top_post_content .post_tag {
  padding-bottom: 10px;
}
.blog_top_post .b_top_post_content h3 {
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 17px;
  transition: color 0.2s linear;
}
.blog_top_post .b_top_post_content a {
  color: var(--black_700);
  font-size: 14px;
}
.blog_top_post .b_top_post_content .post_author {
  padding-top: 40px;
  align-items: center;
}

.post_tag a {
  font-size: 14px;
  color: var(--black_400);
  display: inline-block;
  margin-top: 10px;
}
.post_tag a.cat-Docy {
  color: #fd8d2a;
}
.post_tag a.cat-megento {
  color: #f26322;
}
.post_tag a.cat-woocommerce {
  color: #96588a;
}
.post_tag a.c_blue {
  color: var(--black_600);
}
.post_tag a.cat-laravel {
  color: #ff2d20;
}
.post_tag a + a {
  padding-left: 10px;
}
.post_tag a + a:before {
  content: "";
  width: 1px;
  height: 13px;
  background: #c9c9e2;
  display: inline-block;
  margin-right: 13px;
}
.post_tag a.author {
  margin-top: 4px;
  margin-right: 5px;
}
.post_tag a.author .avatar {
  margin-right: 5px;
}

.post_author .round_img {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.post_author .round_img img {
  height: 40px;
  width: auto;
}
.post_author .author_text {
  margin-top: 5px;
}
.post_author .author_text h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.post_author .author_text .date {
  font-size: 13px;
  font-weight: 400;
  color: var(--black_400);
}

/*=========== end blog_top_post_area css ==========*/
/*=========== Start blog_grid_area css ==========*/
.blog_grid_inner {
  border-top: 1px solid var(--black_50);
  background: #f9f9f9;
}

.blog_tab .nav-item {
  margin-bottom: 0;
}
.blog_tab .nav-item .nav-link {
  padding: 17px 21px;
  border: 0;
  border-radius: 0;
  font-weight: 500;
  color: #858997;
  font-size: 14px;
  position: relative;
  background: transparent;
  transition: all 0.2s ease-in;
}
.blog_tab .nav-item .nav-link:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  height: 2px;
  left: 0;
  background: var(--brand_color);
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: all 0.3s ease-in;
}
.blog_tab .nav-item .nav-link.active, .blog_tab .nav-item .nav-link:hover {
  background: rgba(255, 113, 121, 0.1098039216);
  color: var(--brand_color);
}
.blog_tab .nav-item .nav-link.active:before, .blog_tab .nav-item .nav-link:hover:before {
  transform: scale(1);
}
.blog_tab .nav-item.cat-laravel .nav-link:hover {
  background: rgba(255, 45, 32, 0.2);
  color: rgb(255, 45, 32);
}
.blog_tab .nav-item.cat-laravel .nav-link:before {
  background: rgb(255, 45, 32);
}
.blog_tab .nav-item.cat-Docy .nav-link:hover {
  background: rgba(253, 141, 42, 0.2);
  color: rgb(253, 141, 42);
}
.blog_tab .nav-item.cat-Docy .nav-link:before {
  background: rgb(253, 141, 42);
}
.blog_tab .nav-item.cat-megento .nav-link:hover {
  background: rgba(242, 99, 34, 0.2);
  color: rgb(242, 99, 34);
}
.blog_tab .nav-item.cat-megento .nav-link:before {
  background: rgb(242, 99, 34);
}
.blog_tab .nav-item.cat-woocommerce .nav-link:hover {
  background: rgba(150, 88, 138, 0.2);
  color: rgb(150, 88, 138);
}
.blog_tab .nav-item.cat-woocommerce .nav-link:before {
  background: rgb(150, 88, 138);
}

.blog_grid_tab {
  padding-top: 60px;
  margin-bottom: -40px;
}

.b_title {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.2s linear;
}
.b_title:hover {
  color: var(--brand_color);
}

.learn_btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--black_800);
  padding-top: 5px;
  display: inline-block;
  transition: color 0.2s linear;
}
.learn_btn i {
  vertical-align: middle;
  display: inline-block;
  font-size: 20px;
  margin-left: 6px;
  transition: all 0.2s linear, color 0s linear;
}

.learn_btn:hover {
  color: var(--brand_color) !important;
}

/** === Dot Separator === **/
.dot-sep .sep {
  position: relative;
}
.dot-sep .sep::before {
  content: "•";
  margin: 0 5px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.work-area {
  position: relative;
  z-index: 1;
}
.work-area .shape {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.work-area .shape2 {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}

.work-left-content {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .work-left-content {
    margin-top: 54px;
  }
}
.work-left-content .work-image {
  text-align: center;
}
.work-left-content .work-image :nth-child(1) {
  width: 60%;
  top: 30px;
  left: 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .work-left-content .work-image :nth-child(1) {
    left: 55px;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .work-left-content .work-image :nth-child(1) {
    top: 0;
  }
}
.work-left-content .work-image :nth-child(2) {
  top: 0;
  right: -65px;
  position: relative;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .work-left-content .work-image :nth-child(2) {
    top: 100px;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .work-left-content .work-image :nth-child(2) {
    right: 0;
  }
}
.work-left-content .work-image :nth-child(3) {
  top: 165px;
  left: 0;
  position: absolute;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .work-left-content .work-image :nth-child(3) {
    top: 150px;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .work-left-content .work-image :nth-child(3) {
    top: 160px;
    left: 36px;
  }
}
.work-left-content .dots {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .work-left-content .dots {
    left: 75px;
  }
}
.work-left-content .dots2 {
  right: 23%;
  bottom: -10%;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .work-left-content .dots2 {
    bottom: -160px;
    right: 28%;
  }
}

.work-right-content {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .work-right-content {
    margin-top: 200px;
  }
}
@media screen and (min-width: 992px) {
  .work-right-content {
    margin-top: 150px;
  }
}
.work-right-content .work-item {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  padding: 20px 15px;
  border-radius: 10px;
  max-width: 480px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .work-right-content .work-item {
    gap: 30px;
    padding: 25px 25px;
  }
}
.work-right-content .work-item::before {
  content: "";
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  z-index: -1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .work-right-content .work-item::before {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
  }
}
.work-right-content .work-item:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  top: 0;
  left: 0;
  transform: translateY(0);
}
.work-right-content .work-item .work-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  flex: 0 0 auto;
}
.work-right-content .work-item .work-icon svg {
  --icon-size: 30px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .work-right-content .work-item .work-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
  }
}
.work-right-content .work-item .work-item-content h4 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .work-right-content .work-item .work-item-content h4 {
    font-size: 18px;
    font-weight: 500;
  }
}
.work-right-content .work-item .work-item-content p {
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .work-right-content .work-item .work-item-content p {
    font-size: 16px;
  }
}

.current-work-area {
  position: relative;
  z-index: 1;
  padding-bottom: 250px;
}
.current-work-area .shape {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.current-work-area .shape2 {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}

.current-work-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  margin: 65px auto 0;
  max-width: 300px;
}
@media screen and (min-width: 576px) {
  .current-work-item {
    max-width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .current-work-item {
    margin-top: 40px;
  }
}
.current-work-item h4 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-black);
  left: 0;
  position: absolute;
  z-index: 2;
  transform: rotate(-90deg) translate(-58%, 10px);
  transform-origin: 0 0;
}
@media screen and (min-width: 768px) {
  .current-work-item h4 {
    transform: rotate(-90deg) translate(-56%, 45px);
  }
}
@media screen and (min-width: 992px) {
  .current-work-item h4 {
    transform: rotate(-90deg) translate(-56%, 10px);
  }
}
@media screen and (min-width: 992px) {
  .current-work-item h4 {
    transform: rotate(-90deg) translate(-56%, 35px);
  }
}
.current-work-item .current-work-img {
  max-width: 250px;
  max-height: 290px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-top: -8px;
}
@media screen and (min-width: 1200px) {
  .current-work-item .current-work-img {
    max-width: 320px;
    max-height: 370px;
  }
}
.current-work-item .current-work-img::before {
  content: "";
  top: -40px;
  left: -45px;
  position: absolute;
  width: 100%;
  height: 130%;
  max-width: 320px;
  max-height: 370px;
  background: var(--white_100);
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .current-work-item .current-work-img::before {
    left: -60px;
  }
}
.current-work-item .current-work-img img {
  width: 100%;
  transition: 0.5s;
  cursor: pointer;
}
.current-work-item .current-work-img img:hover {
  transform: scale(1.1);
}

.current-work-area .col-md-4:first-child .current-work-item {
  margin-top: 0;
}

/*----------------------------------------------------*/
/*----------------------------------------------------*/
.pricing-area {
  background: #f5f5f5;
}

.pricing-item {
  --shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  background: var(--white);
  text-align: center;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin-top: 30px;
}
.pricing-item.shadow-sm {
  box-shadow: var(--shadow);
}
.pricing-item.shadow-md {
  --shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 992px) {
  .pricing-item {
    padding: 60px 20px;
  }
}
.pricing-item:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}
.pricing-item .pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}
.pricing-item .price {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  font-family: var(--ibm);
  color: var(--brand_color);
  margin-top: 15px;
  display: block;
}
.pricing-item .pricing-list {
  margin-top: 30px;
}
.pricing-item .pricing-list ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.pricing-item .pricing-list li {
  list-style: none;
  margin: 0;
  line-height: 1.625;
  margin-top: 10px;
}
.pricing-item :is(.btn-outline-red, .btn-red) {
  --btn-px: 42px;
}
.pricing-item .mt-54 {
  margin-top: 54px;
}

.pricing-area-2 {
  background-image: linear-gradient(to bottom left, #f7f3df, #f3f7df);
  padding-top: 128px;
  padding-bottom: 150px;
}

.pricing-item-2 {
  border-radius: 8px;
  padding: 60px 22px 40px 23px;
  text-align: center;
  box-shadow: 30px 0 40px 0 rgba(23, 22, 26, 0.1019607843);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.pricing-item-2:hover {
  background-color: var(--brand_color);
}
.pricing-item-2:hover h5,
.pricing-item-2:hover p {
  color: #fff;
}
.pricing-item-2:hover .purchase-btn {
  box-shadow: 20px 0 40px 0 rgba(23, 22, 26, 0.1019607843);
  color: var(--brand_color);
  gap: 10px;
}
.pricing-item-2:hover .purchase-btn span {
  display: block;
}
.pricing-item-2:hover img {
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(234deg) brightness(104%) contrast(101%);
}
.pricing-item-2 h5 {
  font-family: var(--ibm);
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
  margin-top: 40px;
}
.pricing-item-2 p {
  margin-top: 11px;
  margin-bottom: 52px;
  transition: all 0.3s ease-in-out;
}
.pricing-item-2 .purchase-btn {
  font-family: var(--ibm);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  border-radius: 5px;
  padding: 10px 30px;
  display: inline-flex;
  background-color: #fff;
  align-items: center;
  color: var(--black_900);
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.pricing-item-2 .purchase-btn span {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--brand_color);
  display: none;
  transition: all 0.3s ease-in-out;
}

/*----------------------------------------------------*/
/*----------------------------------------------------*/
.faq-area {
  z-index: 1;
}
.faq-area :is(.shape, .shape2) {
  z-index: -1;
}

.faq-image {
  margin-top: 65px;
}
.faq-image .play-button a {
  background: var(--white);
  color: var(--brand_color);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.faq-image .play-button a::before {
  top: -6px;
  left: -6px;
  opacity: 0.8;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-white 2s infinite;
}

.faq-right-content {
  padding: 30px 20px;
  background: #ffffff;
  box-shadow: 0 40px 80px -20px rgba(131, 146, 167, 0.3);
  border-radius: 10px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .faq-right-content {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .faq-right-content {
    padding: 30px 60px;
    margin-left: 40px;
  }
}

.accordion-flush .faq-accordion-item {
  border: none;
}

.faq-accordion-item h2 {
  line-height: 1;
}
.faq-accordion-item h2 button:hover {
  color: var(--brand_color);
}
.faq-accordion-item button {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ibm);
  padding: 18px 0;
  color: var(--black_500);
}
.faq-accordion-item button:focus {
  box-shadow: none;
}
.faq-accordion-item button:not(.collapsed) {
  background: transparent;
  color: var(--black_900);
  box-shadow: none;
}
.faq-accordion-item button:not(.collapsed)::after {
  background: transparent;
  margin-right: 6px;
}
.faq-accordion-item button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: var(--black_900);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: transparent;
}
.faq-accordion-item .accordion-body {
  padding: 10px 0 15px;
}

.accordion-flush-2 .accordion-item {
  background-color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 10px;
  position: relative;
  padding: 35px 60px 60px;
  z-index: 1;
  margin-top: 30px;
}
.accordion-flush-2 .accordion-item:first-child {
  margin-top: 0;
}
.accordion-flush-2 .accordion-collapse::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: var(--black_800);
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.accordion-flush-2 .accordion-collapse.show::before,
.accordion-flush-2 .accordion-collapse.show .accordion-body {
  opacity: 1;
}
.accordion-flush-2 .accordion-header {
  position: relative;
}
.accordion-flush-2 .accordion-header h2 {
  max-width: 630px;
  margin-bottom: 0;
  color: #fff;
  cursor: pointer;
}
.accordion-flush-2 .accordion-header h2.collapsed {
  color: var(--black_900);
}
.accordion-flush-2 .accordion-header h2.collapsed span {
  right: 0;
  transform: translateY(-50%) rotate(0deg);
}
.accordion-flush-2 .accordion-header h2.collapsed span::before {
  background: var(--black_900);
}
.accordion-flush-2 .accordion-header h2 span {
  position: absolute;
  font-size: 17px;
  top: 50%;
  right: 27px;
  line-height: initial;
  transition: 0.3s ease-out;
  transform: translateY(100%) rotate(90deg);
}
.accordion-flush-2 .accordion-header h2 span::before, .accordion-flush-2 .accordion-header h2 span::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  opacity: 0.5;
}
.accordion-flush-2 .accordion-header h2 span::before {
  content: "";
  top: 50%;
  position: absolute;
  width: 75px;
  height: 2px;
  background: #fff;
  left: auto;
  right: 3px;
  transform: translateY(-50%);
}
.accordion-flush-2 .accordion-header h2 span::after {
  content: "\f054";
}
.accordion-flush-2 .accordion-body {
  padding: 0;
  margin-top: 70px;
  opacity: 0;
  transition: all 0.2s ease-out;
}
.accordion-flush-2 .accordion-body p {
  max-width: 310px;
  margin-left: 60px;
  color: #fff;
}

.accordion-flush-3 .accordion-item {
  border-radius: 6px;
  overflow: hidden;
  border: none;
  margin-top: 24px;
}
.accordion-flush-3 .accordion-item:first-child {
  margin-top: 0;
}
.accordion-flush-3 .accordion-item .accordion-button {
  padding: 24px 35px 28px 44px;
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  border: none;
  color: #fff;
  box-shadow: none;
  background-color: var(--black_900);
  display: flex;
  align-items: baseline;
}
.accordion-flush-3 .accordion-item .accordion-button span {
  display: inline-block;
  margin-right: 20px;
}
.accordion-flush-3 .accordion-item .accordion-button.collapsed {
  color: var(--black_800);
  background-color: #f5f5f5;
}
.accordion-flush-3 .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0deg);
  color: #fff;
}
.accordion-flush-3 .accordion-item .accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: none;
  font-size: 18px;
  color: var(--black_500);
}
.accordion-flush-3 .accordion-item .accordion-body {
  background-color: var(--black_900);
  padding-top: 0;
  padding-right: 48px;
}
.accordion-flush-3 .accordion-item .accordion-body p {
  font-family: var(--ibm);
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  color: #fff;
  margin-left: 83px;
}

.faq-nav-tab-content {
  margin-left: 55px;
}

.faq-navigation-tab {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 30px 20px;
}
.faq-navigation-tab h3 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 25px;
  padding-left: 15px;
}
.faq-navigation-tab .nav-link {
  display: block;
  font-size: 16px;
  line-height: 40px;
  color: var(--p_color);
  width: 100%;
  border: none !important;
  cursor: pointer;
  padding: 0 15px;
}
.faq-navigation-tab .nav-link.active {
  background-color: rgba(217, 44, 10, 0.1);
}
.faq-navigation-tab .nav-link:hover {
  color: var(--brand_color);
}

/*----------------------------------------------------*/
/*----------------------------------------------------*/
.booking-area {
  position: relative;
}

.booking-form {
  padding-top: 70px;
}
@media screen and (min-width: 992px) {
  .booking-form {
    padding-top: 150px;
  }
}
.booking-form .form-group {
  margin-top: 30px;
  position: relative;
}
.booking-form .form-label {
  color: #000;
  margin-bottom: 8px;
  display: block;
  cursor: pointer;
}
.booking-form :is(.form-control, .select) {
  padding: 20px;
  border-color: #CCCCCE;
  font-size: 14px;
  line-height: 1;
  color: var(--black_400);
  background: var(--white_100);
}
.booking-form :is(.form-control, .select):focus {
  border-color: var(--black_900) !important;
  background: var(--white);
}
.booking-form .select {
  width: 100%;
  height: 60px;
  line-height: 1.5;
}
.booking-form .select .list {
  width: 100%;
}
.booking-form .select::after {
  font-size: 25px;
}
.booking-form .form-icon {
  top: 50%;
  right: 15px;
  position: absolute;
  transform: translateY(-50%);
}
.booking-form .theme-btn {
  margin-top: 30px;
}

.booking-right-content {
  background: var(--white);
  box-shadow: 0 40px 80px -20px rgba(131, 146, 167, 0.3);
  border-radius: 0 0 10px 10px;
  padding: 70px 20px;
}
@media screen and (min-width: 1200px) {
  .booking-right-content {
    padding: 150px 60px;
  }
}
.booking-right-content .contact-list {
  padding-left: 0;
}
.booking-right-content .contact-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
}
.booking-right-content .contact-list-item + .contact-list-item {
  margin-top: 35px;
}
.booking-right-content .contact-list-item h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--black_500);
}
.booking-right-content .contact-list-item :is(p, a) {
  font-size: 20px;
  line-height: 1.4;
  color: var(--black_800);
  margin-bottom: 0;
}
.booking-right-content .working-hours {
  margin-top: 100px;
}
.booking-right-content .working-hours h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.booking-right-content .working-hours .working-hours-info {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .booking-right-content .working-hours .working-hours-info {
    width: 78%;
  }
}
.booking-right-content .working-hours .working-hours-info li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black_600);
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .booking-right-content .working-hours .working-hours-info li {
    font-size: 20px;
  }
}

/*----------------------------------------------------*/
/*----------------------------------------------------*/
.instagram-area {
  transform: translateY(-50%);
  position: relative;
  z-index: 1;
}

.instagram-feed-item {
  position: relative;
  z-index: 1;
  height: 196px;
}
@media screen and (min-width: 1200px) {
  .instagram-feed-item {
    width: 196px;
    height: 196px;
  }
}
.instagram-feed-item.feed-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--black_200);
}
.instagram-feed-item.feed-content h4 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 400;
  color: var(--black_900);
  margin-bottom: 0;
}
.instagram-feed-item.feed-content a {
  font-size: 14px;
  color: var(--p_color);
}
.instagram-feed-item.feed-content a:hover {
  color: var(--brand_color);
}
.instagram-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram-feed-item .icon-link {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 35px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.instagram-feed-item:hover .icon-link {
  visibility: visible;
  opacity: 1;
}

.instagram-wrapper {
  position: relative;
}
.instagram-wrapper :is(.swiper-button-prev, .swiper-button-next) {
  opacity: 0;
  visibility: hidden;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  border-radius: 50%;
  background: var(--white);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.instagram-wrapper :is(.swiper-button-prev, .swiper-button-next)::after {
  font-size: 12px;
  color: #838586;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.instagram-wrapper :is(.swiper-button-prev, .swiper-button-next):hover::after {
  color: #292929;
}
.instagram-wrapper .swiper-button-prev {
  left: -35px;
}
.instagram-wrapper .swiper-button-prev::after {
  content: "\f053";
}
.instagram-wrapper .swiper-button-next {
  right: -35px;
}
.instagram-wrapper .swiper-button-next::after {
  content: "\f054";
}
.instagram-wrapper:hover :is(.swiper-button-prev, .swiper-button-next) {
  visibility: visible;
  opacity: 1;
}
.instagram-wrapper:hover .swiper-button-prev {
  left: -18px;
}
.instagram-wrapper:hover .swiper-button-next {
  right: -18px;
}

.instagram-feed-two .instagram-feed-item {
  height: auto;
}
@media screen and (min-width: 1200px) {
  .instagram-feed-two .instagram-feed-item {
    width: auto;
    height: auto;
  }
}

.instagram-wrapper-two .swiper-button-prev {
  left: 20px;
}
.instagram-wrapper-two .swiper-button-next {
  right: 20px;
}
.instagram-wrapper-two:hover .swiper-button-prev {
  left: 14px;
}
.instagram-wrapper-two:hover .swiper-button-next {
  right: 14px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.contact-area {
  background: #f2f5d3;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact-area .shape-9 {
  bottom: 0;
  left: 0;
  position: absolute;
  width: auto;
  padding-left: 0;
  opacity: 0.1;
  z-index: -1;
}

.contact-left-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .contact-left-content h2 {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-left-content h2 {
    font-size: 45px;
  }
}
@media screen and (min-width: 1441px) {
  .contact-left-content h2 {
    font-size: 75px;
  }
}
.contact-left-content p {
  font-size: 18px;
  color: var(--p_color);
}
.contact-left-content .social-link {
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact-left-content .social-link {
    margin-top: 60px;
  }
}

.social-link h5 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--black_900);
}
@media screen and (min-width: 768px) {
  .social-link h5 {
    margin-bottom: 10px;
  }
}
.social-link ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.social-link li {
  list-style: none;
}
.social-link li a {
  font-size: 16px;
  text-decoration: none;
  color: var(--p_color);
}
.social-link li a:hover {
  color: var(--brand_color);
}
.social-link li a:hover .fa-facebook-f {
  color: #4267b2;
}
.social-link li a:hover .fa-instagram {
  color: #E36C5A;
}
.social-link li a:hover .fa-behance {
  color: #053eff;
}
.social-link li a:hover .fa-dribbble {
  color: #ea4c89;
}

.active .contact-right-content {
  animation: fadeInRight 0.6s linear 0.3s;
}

.contact-right-content {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact-right-content {
    margin-top: 0;
  }
}
.contact-right-content h3 {
  font-family: var(--ibm);
  font-size: 24px;
  font-weight: 500;
  color: var(--black_900);
  margin-top: 20px;
  margin-bottom: 0;
}
.contact-right-content .contact-form .form-group {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact-right-content .contact-form .form-group {
    margin-top: 20px;
  }
}
.contact-right-content .contact-form .form-control {
  background: #fdffe5;
  border-color: transparent;
  color: var(--p_color);
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 5px;
}
.contact-right-content .contact-form .form-control:focus::placeholder {
  color: var(--black_700);
}
.contact-right-content .contact-btn {
  margin-top: 40px;
}
.contact-right-content .contact-btn .theme-btn {
  padding: 10px 30px;
}
.contact-right-content .contact-btn .theme-btn i {
  margin-right: 6px;
}

.contact-info .contact-info-item {
  flex: 0 0 auto;
  width: 50%;
}
.contact-info .contact-info-item h5 {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 600;
  color: var(--black_900);
  margin-bottom: 0;
  text-transform: capitalize;
}
.contact-info .contact-info-item a {
  font-family: var(--ibm);
  font-size: 16px;
  text-decoration: none;
  color: var(--p_color);
}
.contact-info .contact-info-item a:hover {
  color: var(--brand_color);
}

.fullpage_section_five {
  position: relative;
  z-index: 1;
}
.fullpage_section_five .shape21 {
  top: 10%;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .fullpage_section_five .shape21 {
    top: 15%;
  }
}
@media screen and (min-width: 1441px) {
  .fullpage_section_five .shape21 {
    left: 45px;
  }
}
.fullpage_section_five .shape22 {
  bottom: 30px;
  left: 40%;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .fullpage_section_five .shape22 {
    bottom: 152px;
  }
}
.fullpage_section_five .contact-left-content span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.fullpage_section_five .contact-left-content h2 {
  font-size: 28px;
  color: var(--white);
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .fullpage_section_five .contact-left-content h2 {
    font-size: 48px;
  }
}
.fullpage_section_five .contact-left-content p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
}
.fullpage_section_five .contact-info-item {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .fullpage_section_five .contact-info-item {
    margin-top: 40px;
  }
}
.fullpage_section_five .contact-info-item h5 {
  color: var(--white);
}
.fullpage_section_five .contact-info-item a {
  color: var(--white);
}
.fullpage_section_five .social-link {
  margin-top: 30px;
}
.fullpage_section_five .social-link h5 {
  color: var(--white);
}
.fullpage_section_five .social-link a {
  color: var(--white);
  width: 35px;
  height: 35px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2784313725);
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullpage_section_five .social-link a:hover {
  color: var(--brand_color);
  border-color: var(--white);
  background: var(--white);
}
.fullpage_section_five .contact-right-content h3 {
  color: var(--white);
}
.fullpage_section_five .contact-right-content .form-control {
  padding-left: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2705882353);
  color: var(--white);
  border-radius: 5px;
}
.fullpage_section_five .contact-right-content .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.fullpage_section_five .contact-right-content .form-control:focus::placeholder {
  color: var(--white);
}
.fullpage_section_five .contact-right-content .form-control::placeholder {
  color: var(--black_50);
}
.fullpage_section_five .contact-right-content textarea.form-control {
  height: 130px;
}

.contact-area-2 {
  background-color: #f0f0f0;
}
.contact-area-2 form {
  padding: 0 18px;
}
.contact-area-2 .form-group {
  margin-bottom: 18px;
}
.contact-area-2 .form-group .form-label {
  font-family: var(--ibm);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  border-radius: 5px;
  color: var(--black_900);
}
.contact-area-2 .form-group .form-control {
  background-color: #fff;
  padding: 20px;
  border-color: #fff;
  font-size: 14px;
  line-height: 1;
  color: var(--black_400);
}
.contact-area-2 .form-group .select {
  width: 100%;
  height: 60px;
  line-height: 1.5;
}
.contact-area-2 .form-group .select .list {
  width: 100%;
}
.contact-area-2 .form-group .theme-btn {
  margin-top: 40px;
  width: 100%;
  padding: 15px 20px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.footer-area.border-top {
  border-color: var(--black_50) !important;
}
.footer-area .copyright-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
}

.social-link {
  display: inline-flex;
  flex-direction: row;
}
.social-link a {
  color: var(--black_500);
  margin-right: 15px;
}
.social-link a:hover .fa-facebook-f {
  color: #4267b2;
}
.social-link a:hover .fa-twitter {
  color: #1DA1F2;
}
.social-link a:hover .fa-behance {
  color: #053eff;
}
.social-link a:hover .fa-dribbble {
  color: #ea4c89;
}
.social-link a:last-child {
  margin-right: 0;
}

.social-link-2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-link-2 a {
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  width: 153px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #fff;
  background-color: #1877f2;
}
.social-link-2 a:hover {
  background-color: #4b93f0;
}
.social-link-2 a:nth-child(2) {
  background-color: #1da1f2;
}
.social-link-2 a:nth-child(2):hover {
  background-color: #46b2f4;
}
.social-link-2 a:nth-child(3) {
  background-color: #ff0000;
}
.social-link-2 a:nth-child(3):hover {
  background-color: #f93737;
}
.social-link-2 a i {
  font-size: 14px;
  margin-right: 10px;
}

.social-link-3 a {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 16px;
  display: block;
  letter-spacing: initial;
}
.social-link-3 a .fa-twitter {
  color: #1da1f2;
}
.social-link-3 a .fa-google-plus-g {
  color: #f44336;
}
.social-link-3 a .fa-youtube {
  color: #e50b0b;
}
.social-link-3 a .fa-pinterest-p {
  color: #bd081c;
}
.social-link-3 a .fa-instagram {
  color: #dd2a7b;
}
.social-link-3 a .fa-facebook-f {
  color: #1778f2;
}
.social-link-3 a i {
  margin-bottom: 8px;
  font-size: 24px;
}
.social-link-3 a h6 {
  font-family: var(--ibm);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
}
.social-link-3 a P {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
  color: var(--p_color);
}
.social-link-3 a:hover {
  background-color: #f44336;
}
.social-link-3 a:hover i,
.social-link-3 a:hover h6,
.social-link-3 a:hover p {
  color: #fff;
}

.footer-area-3 {
  background-color: #141216;
  color: #fff;
  position: relative;
  z-index: 1;
}
.footer-area-3 .bg-shape img {
  position: absolute;
  z-index: -1;
}
.footer-area-3 .bg-shape img:nth-child(1) {
  left: 0;
  bottom: 0;
  opacity: 0.2;
}
.footer-area-3 .bg-shape img:nth-child(2) {
  right: 0;
  bottom: 150px;
}
.footer-area-3 h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 55px;
  color: #fff;
}
.footer-area-3 p {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
}
.footer-area-3 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: block;
}
.footer-area-3 .social-link a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 16px;
}
.footer-area-3 .social-link a:hover {
  color: var(--brand_color);
}
.footer-area-3 .social-link a:last-child {
  margin-right: 0;
}
.footer-area-3 .copyright p {
  font-family: var(--ibm);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.footer-area-3 .copyright a {
  color: #fff;
}
.footer-area-3 .copyright a:hover {
  color: var(--brand_color);
}

.footer-area-4 {
  background: #1d1c21;
}
@media screen and (min-width: 768px) {
  .footer-area-4 {
    margin-left: 120px;
  }
}
.footer-area-4 .section-tag .html {
  padding-left: 0;
}
.footer-area-4 .section-tag .body {
  padding-left: 10px;
}
.footer-area-4 .section-tag .p {
  padding-left: 30px;
}
.footer-area-4 .section-tag .footer {
  padding-left: 20px;
}
.footer-area-4 .section-tag .row {
  padding-left: 0;
}
.footer-area-4 .copyright-text {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer-area-4 .copyright-text {
    flex-direction: row;
    align-items: center;
  }
}
.footer-area-4 .copyright-text span {
  padding-left: 0;
  color: var(--black_200);
}
.footer-area-4 .copyright-text a {
  color: var(--black_200);
}
@media screen and (min-width: 768px) {
  .footer-area-4 .copyright-text a {
    padding-left: 25px;
  }
}
.footer-area-4 .copyright-text a:hover {
  color: var(--brand_color);
}
.footer-area-4 .footer-img {
  margin-top: 30px;
  margin-left: 36px;
}
@media screen and (min-width: 768px) {
  .footer-area-4 .footer-img {
    margin-top: 0;
    margin-left: 0;
  }
}
.footer-area-4 .social-link {
  margin-top: 30px;
  margin-left: 36px;
}
@media screen and (min-width: 768px) {
  .footer-area-4 .social-link {
    margin-top: 0;
    margin-left: 0;
  }
}

.footer-top .footer-info h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0;
}
.footer-top .footer-info a {
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-family: var(--ff-roboto);
}

.footer-copyright h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0;
}
.footer-copyright span {
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-family: var(--ff-roboto);
}

.footer-bottom .border-top {
  border-top: 1px solid var(--black_700) !important;
}
.footer-bottom .social-link a {
  color: var(--white);
}
.footer-bottom .social-link a:hover .fa-facebook-f {
  color: #4267b2;
}
.footer-bottom .social-link a:hover .fa-twitter {
  color: #1DA1F2;
}
.footer-bottom .social-link a:hover .fa-behance {
  color: #053eff;
}
.footer-bottom .social-link a:hover .fa-dribbble {
  color: #ea4c89;
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer-menu ul {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .footer-menu ul {
    gap: 30px;
  }
}
.footer-menu li {
  list-style: none;
}
.footer-menu li a {
  font-family: var(--ff-roboto);
  font-size: 12px;
  color: var(--white);
}
.footer-menu li a:hover {
  color: var(--brand_color);
}

.footer-area-5 {
  margin-left: 0;
  background: #d3f2f5;
}
.footer-area-5 .copyright-text {
  color: var(--black_600);
}
.footer-area-5 .copyright-text :is(span, a) {
  color: var(--black_600);
}
.footer-area-5 .social-link {
  margin-left: 0;
}

.footer-area-6 {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  overflow: hidden;
  background-color: #fff;
}
.footer-area-6.varient-2 {
  background-color: #243033;
}
.footer-area-6.varient-2 .bg-shapes div {
  position: absolute;
}
.footer-area-6.varient-2 .bg-shapes div:nth-child(1) {
  height: 706px;
  width: 706px;
  background-color: #243033;
  box-shadow: -15px 0 40px 0 rgba(0, 0, 0, 0.1490196078);
  transform: rotate(-125deg);
  right: -25%;
  bottom: -34%;
  z-index: -1;
}
.footer-area-6.varient-2 .bg-shapes div:nth-child(2) {
  background-color: var(--brand_color);
  height: 382px;
  width: 243px;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: -2;
}
.footer-area-6.varient-2 .footer-top {
  padding-bottom: 120px;
}
.footer-area-6.varient-2 .footer-top p {
  color: #ccccce;
}
.footer-area-6.varient-2 .footer-top h5 {
  color: var(--black_50);
}
.footer-area-6.varient-2 .footer-top .input-append-button .theme-btn {
  background-color: var(--black_600);
  border-color: transparent;
  color: #fff;
  font-size: 15px;
}
.footer-area-6.varient-2 .footer-top .input-append-button .form-control {
  border-color: var(--black_600);
  background-color: rgba(255, 255, 255, 0.1);
  color: #b9b9ba;
}
.footer-area-6.varient-2 .footer-top .input-append-button .form-control::placeholder {
  color: #b9b9ba;
  font-size: 15px;
}
.footer-area-6.varient-2 .footer-top .input-append-button .form-control:hover {
  background: rgba(255, 255, 255, 0.05);
}
.footer-area-6.varient-2 .footer-top .input-append-button .form-control:focus {
  border-color: var(--black_600) !important;
}
.footer-area-6.varient-2 .footer-top .input-append-button .form-control:focus::placeholder {
  color: var(--black_50);
}
.footer-area-6.varient-2 .footer-top ul li a {
  color: var(--black_200);
}
.footer-area-6.varient-2 .footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-area-6.varient-2 .footer-bottom p,
.footer-area-6.varient-2 .footer-bottom a {
  color: #b9b9ba;
}
.footer-area-6 .bg-img img {
  position: absolute;
  bottom: 60px;
  z-index: -1;
}
.footer-area-6 .bg-img img:nth-child(1) {
  left: 0;
  right: 0;
}
.footer-area-6 .bg-img img:nth-child(2) {
  left: 600px;
  bottom: 54px;
  -webkit-animation: footerMoveOne 18s linear infinite;
  animation: footerMoveOne 18s linear infinite;
}
.footer-area-6 .bg-img img:nth-child(3) {
  right: 500px;
  bottom: 50px;
  -webkit-animation: footerMoveOne 23s linear reverse infinite;
  animation: footerMoveOne 23s linear reverse infinite;
}
.footer-area-6 .footer-top {
  padding-bottom: 350px;
}
.footer-area-6 .footer-top p {
  line-height: 30px;
  margin-bottom: 44px;
  margin-top: 20px;
}
.footer-area-6 .footer-top h5 {
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}
.footer-area-6 .footer-top .input-append-button {
  width: 380px;
}
.footer-area-6 .footer-top .input-append-button .theme-btn {
  padding: 0 19px;
  background-color: #17161a;
  border-color: #17161a;
}
.footer-area-6 .footer-top .input-append-button .form-control {
  height: 52px;
  padding-left: 20px;
  width: 100%;
  flex: 1 0;
}
.footer-area-6 .footer-top .input-append-button .form-control:focus {
  border-color: #17161a !important;
}
.footer-area-6 .footer-top ul {
  margin-bottom: 0;
}
.footer-area-6 .footer-top ul li {
  line-height: 14px;
  margin-bottom: 14px;
}
.footer-area-6 .footer-top ul li:last-child {
  margin-bottom: 0;
}
.footer-area-6 .footer-top ul li a {
  display: inline-block;
  color: var(--p_color);
  line-height: 26px;
}
.footer-area-6 .footer-top ul li a:hover {
  color: var(--brand_color);
}
.footer-area-6 .footer-bottom {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 30px;
}
.footer-area-6 .footer-bottom p,
.footer-area-6 .footer-bottom a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--black_500);
  margin-bottom: 0;
}
.footer-area-6 .footer-bottom a {
  margin-right: 10px;
  position: relative;
  display: inline-block;
}
.footer-area-6 .footer-bottom a:last-child::before {
  display: none;
}
.footer-area-6 .footer-bottom a::before {
  content: "|";
  position: absolute;
  right: -9px;
  bottom: -2px;
  color: var(--black_500);
}
.footer-area-6 .footer-bottom a:hover {
  color: var(--brand_color);
}

.footer-area-7 {
  background-color: #17161a;
  text-align: center;
  padding-top: 100px;
}
.footer-area-7 .trip-stat {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 30px 0 35px 0;
}
.footer-area-7 .trip-stat h5 {
  margin: 15px 0 0 0;
  font-family: var(--ibm);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}
.footer-area-7 .trip-stat p {
  color: var(--black_100);
  margin: 0;
}
.footer-area-7 .social-link {
  padding: 80px 0;
}
.footer-area-7 .social-link a {
  height: 45px;
  width: 45px;
  line-height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.footer-area-7 .social-link a:hover {
  background-color: var(--black_50);
}
.footer-area-7 .footer-bottom p {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 39px 0;
  margin: 0;
  color: var(--black_500);
}

.footer-area-8 {
  background-color: #17161a;
  padding: 26px 0;
}
.footer-area-8 P,
.footer-area-8 a {
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--black_300);
}
.footer-area-8 a:hover {
  color: var(--brand_color);
}

.footer-area-nine {
  background: #17161A;
  padding-top: 80px;
}
.footer-area-nine .footer-top {
  padding-bottom: 80px;
}
.footer-area-nine .footer-top h3 {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-family: var(--ibm);
  color: #e6e6e6;
  font-weight: 500;
}
.footer-area-nine .footer-top .input-append-button {
  position: relative;
  max-width: 100%;
  display: block;
  margin-top: 40px;
}
.footer-area-nine .footer-top .input-append-button .form-control {
  background: transparent;
  border: 0px;
  border-bottom: 1px solid rgba(157, 156, 160, 0.2901960784);
  padding-left: 0px !important;
  border-radius: 0px;
  font-size: 14px;
  font-family: var(--ibm);
  color: #9D9CA0;
  width: 100%;
}
.footer-area-nine .footer-top .input-append-button .form-control:focus {
  border-color: var(--brand_color) !important;
}
.footer-area-nine .footer-top .input-append-button button {
  padding: 0px;
  position: absolute;
  background: transparent;
  border: 0px;
  height: 100%;
  right: 0;
  color: var(--brand_color);
  top: 0;
}
.footer-area-nine .footer-top h5 {
  color: #e8e6e6;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ibm);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.footer-area-nine .footer-top ul li a {
  font-size: 16px;
  color: var(--black_200);
}
.footer-area-nine .footer-top ul li a:hover {
  color: var(--brand_color);
}
.footer-area-nine .f_bottom {
  padding-top: 35px;
}
@media (max-width: 767px) {
  .footer-area-nine .f_bottom {
    text-align: center;
  }
}
.footer-area-nine .service_btn {
  font-size: 16px;
  font-weight: 600;
  color: #e6e6e6;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(157, 156, 160, 0.2901960784);
  box-shadow: none;
  padding: 0px 0 20px;
  border-radius: 0px;
  background: transparent;
}
.footer-area-nine .service_btn:focus {
  outline: none;
  box-shadow: none;
}
.footer-area-nine .service_btn:hover .icon {
  background: #fff;
  color: #000;
}
.footer-area-nine .service_btn .icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-area-nine .service_btn .icon i {
  display: none;
}
.footer-area-nine .service_btn .icon i + i {
  display: block;
}
.footer-area-nine .service_btn.collapsed i {
  display: block;
}
.footer-area-nine .service_btn.collapsed i + i {
  display: none;
}
.footer-area-nine .f_service_list_info {
  border-bottom: 1px solid rgba(157, 156, 160, 0.2901960784);
  padding: 34px 0px 22px;
}
.footer-area-nine .f_service_list_info h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--ibm);
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
}
.footer-area-nine .f_service_list_info .d-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  column-gap: 20px;
}
@media (max-width: 991px) {
  .footer-area-nine .f_service_list_info .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer-area-nine .f_service_list_info .d-grid {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;
  }
}
.footer-area-nine .f_service_list li {
  font-size: 16px;
  font-family: var(--ibm);
  line-height: 28px;
  letter-spacing: 0.01rem;
}
.footer-area-nine .f_service_list li a {
  color: #ccccce;
  font-size: 14px;
}
.footer-area-nine .f_service_list li a:hover {
  color: var(--brand_color);
}
.footer-area-nine .copyright-text,
.footer-area-nine .text {
  color: #9D9CA0;
  font-size: 14px;
  font-weight: 400;
}
.footer-area-nine .social-link a {
  width: 36px;
  height: 36px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--black_600);
  color: #e8e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-area-nine .social-link a:hover {
  color: #000;
  background: #e8e6e6;
  border-color: #e8e6e6;
}
@media (max-width: 767px) {
  .footer-area-nine .social-link a {
    margin-right: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

.feedback_btn_group {
  margin-top: 50px;
}
.feedback_btn_group a {
  padding: 0 20px;
  display: inline-block;
  background: rgba(46, 45, 49, 0.3098039216);
  border-radius: 4px;
  text-align: center;
  width: 180px;
  line-height: 77px;
}
.feedback_btn_group a:hover {
  transform: scale(1.02);
}
.feedback_btn_group a + a {
  margin-left: 20px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.support-area {
  overflow: hidden;
}
.support-area .support-area-title {
  font-size: 40px;
}
@media (max-width: 575px) {
  .support-area .support-area-title {
    font-size: 30px;
    line-height: 1;
  }
}
.support-area .support-area-subtitle {
  color: var(--black_600);
  font-size: 18px;
  line-height: 28px;
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 575px) {
  .support-area .support-area-subtitle {
    font-size: 16px;
    margin-top: 12px;
  }
}
.support-area .support-item {
  margin-bottom: 30px;
}
.support-area .support-item .support-title {
  color: var(--black_900);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.support-area .support-item .support-text {
  color: var(--black_600);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  display: inline-block;
}
.support-area .support-item a[class=support-text]:hover {
  text-decoration: underline;
}

.contact-area-3 {
  overflow: hidden;
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
}
.contact-area-3 .contact-form {
  position: relative;
  z-index: 1;
  padding: 65px 50px;
  box-shadow: 0px 20px 50px -5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #fff;
  margin: 100px 0;
}
.contact-area-3 .contact-form .contat-title {
  font-weight: 700;
  color: var(--black_900);
  display: block;
}
.contact-area-3 .contact-form p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: var(--black_900);
}
.contact-area-3 .contact-form form .row {
  row-gap: 25px;
}
.contact-area-3 .contact-form .form-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: var(--black_900);
  margin-bottom: 10px;
}
.contact-area-3 .contact-form .form-control {
  border-color: var(--black_50);
  padding: 15px 18px;
  border-radius: 5px !important;
}
.contact-area-3 .contact-form .form-control:focus {
  border-color: var(--black_500);
  background: #fff;
  color: var(--black_600);
}
.contact-area-3 .contact-form .input-group {
  position: relative;
  z-index: 1;
}
.contact-area-3 .contact-form .input-group .input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black_400);
  z-index: 4;
}
.contact-area-3 .contact-form .input-group .form-control {
  padding: 18px 15px 18px 40px;
  background: #fff;
  color: var(--black_600);
}
.contact-area-3 .contact-form button {
  background-color: #202124;
  border: none;
  padding: 20px 40px;
  border-radius: 4px;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
}
.contact-area-3 .contact-form button:hover {
  background-color: var(--brand_color);
  color: #fff;
}
.contact-area-3 .contact-map {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.contact-area-3 .contact-map iframe {
  height: 100%;
  width: 100%;
}

/*=========== contact_area 02 css =========*/
.contact-area-2 {
  background-position: center;
  background-size: cover;
}
.contact-area-2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(7, 17, 49, 0.75);
}

.doc_banner_content {
  position: relative;
}
.doc_banner_content h2 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}
.doc_banner_content h2 .banner-title-h1 {
  font-size: 56px;
  line-height: 66px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 7px;
}
.doc_banner_content p {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
@media (max-width: 767px) {
  .doc_banner_content p {
    margin: 0 20px;
  }
}

.banner-title-h1 {
  color: #fff;
}

.get_info_area {
  position: relative;
  z-index: 1;
}

.get_info_item {
  border: 1px solid #e3e8ea;
  border-radius: 6px;
  padding: 31px 35px;
  margin-left: 0;
  margin-right: 0;
}
.get_info_item .media img {
  margin-right: 60px;
}
.get_info_item .media .media-body h5 {
  margin-bottom: 4px;
  font-size: 22px;
}
.get_info_item .media .media-body p {
  margin-bottom: 0;
  color: #6b707f;
}
.get_info_item .time {
  font-size: 16px;
  color: var(--p_color);
}
.get_info_item .time span {
  color: var(--h_title);
}
.get_info_item .doc_border_btn {
  max-width: 190px;
  width: 100%;
  display: block;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.get_info_item + .get_info_item {
  margin-top: 30px;
}

.contact_area {
  padding: 100px 0;
}
.contact_area .contact_info .section_title {
  margin-bottom: 56px;
}
.contact_area .contact_info .contact_form .form-group {
  margin-bottom: 1rem;
}
.contact_area .contact_info .contact_form .form-group h6 {
  font-size: 16px;
  font-weight: 500;
}
.contact_area .contact_info .contact_form .form-group .box_info {
  margin-left: -20px;
  margin-right: -20px;
}
.contact_area .contact_info .contact_form .form-group .form-check {
  min-height: inherit;
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: var(--p_color);
  padding-left: 22px;
  margin: 20px 20px 15px;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=checkbox] {
  border: inherit;
  width: 12px;
  position: absolute;
  outline: none;
  height: 12px;
  top: 1px;
  left: 0;
  margin: 0;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #6b707f;
  top: 0;
  left: 0;
  border-radius: 2px;
  background-color: #fff;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=checkbox]:after {
  content: "";
  display: block;
  width: 5px;
  height: 11px;
  border: solid var(--brand_color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  left: 5px;
  opacity: 0;
  transition: all 0.2s linear;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=checkbox]:checked:before {
  border-color: var(--brand_color);
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=checkbox]:checked:after {
  opacity: 1;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=checkbox]:checked + label {
  color: var(--brand_color);
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=radio] {
  width: 12px;
  position: absolute;
  outline: none;
  height: 12px;
  margin: 0;
  left: 0;
  top: 1px;
  border: inherit;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=radio]:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #6b707f;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.2s linear;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=radio]:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand_color);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -3px;
  margin-top: -3px;
  transform: scale(0);
  transition: all 0.2s linear;
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=radio]:checked:before {
  border-color: var(--brand_color);
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=radio]:checked:after {
  transform: scale(1);
}
.contact_area .contact_info .contact_form .form-group .form-check input[type=radio]:checked + label {
  color: var(--brand_color);
}
.contact_area .contact_info .contact_form .form-group .form-control {
  height: 60px;
  line-height: 55px;
  background: #f9fbfc;
  box-shadow: none;
  border-color: #d9e1e3;
  padding-left: 30px;
  font-weight: 400;
  transition: all 0.2s linear;
  border-radius: 6px;
}
.contact_area .contact_info .contact_form .form-group .form-control ::placeholder {
  color: #878b99;
}
.contact_area .contact_info .contact_form .form-group .form-control.message {
  height: 200px;
  padding-top: 0;
}
.contact_area .contact_info .contact_form .form-group .form-control:focus {
  background: #fbfcfd;
  box-shadow: 0 20px 30px 0 rgba(4, 73, 89, 0.1);
}
.contact_area .contact_info .contact_form .form-group:last-child {
  margin-bottom: 0;
}
.contact_area .contact_info .contact_fill {
  padding-top: 20px;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.banner-about-area {
  background-image: url(../image/banner-about.png);
  background-size: cover;
  position: relative;
  padding: 210px 0 130px;
  z-index: 1;
}
.banner-about-area::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: #202124;
  display: block;
  opacity: 0.5;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.banner-about-area .dot-sep .sep {
  position: relative;
}
.banner-about-area .dot-sep .sep::before {
  content: "•";
  margin: 0 5px;
  padding-right: 5px;
}
.banner-about-area .element-banner-title,
.banner-about-area .typo-banner-title {
  color: #fff;
  font-weight: 700;
}
.banner-about-area .element-banner-subtitle,
.banner-about-area .typo-banner-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.elements_area {
  padding: 100px 0px 80px;
  overflow: hidden;
}

.tab_shortcode {
  margin-bottom: 50px;
}
.tab_shortcode .nav-tabs {
  border: 0;
}
.tab_shortcode .nav-tabs .nav-item .nav-link {
  font-size: 16px;
  color: var(--black_600);
  border-radius: 0;
  padding: 9px 20px;
  background: #f0f2f5;
  border: 0;
  border-left: 1px solid #dbe1e4;
  position: relative;
}
.tab_shortcode .nav-tabs .nav-item .nav-link:before {
  content: "";
  width: 0;
  height: 2.1px;
  background: var(--brand_color);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: width 0.2s linear;
}
.tab_shortcode .nav-tabs .nav-item .nav-link.active {
  background: #fff;
  color: var(--black_900);
}
.tab_shortcode .nav-tabs .nav-item .nav-link.active:before {
  opacity: 1;
  width: 100%;
}
.tab_shortcode .nav-tabs .nav-item:last-child .nav-link {
  border-right: 1px solid #dbe1e4;
}
.tab_shortcode .tab-content {
  color: var(--black_600);
  padding: 25px 30px;
  border: 1px solid #dbe1e4;
  border-radius: 5px;
  border-top-left-radius: 0;
}

/*============== shortcode_info css =========*/
.v_menu {
  border-bottom: 1px solid var(--black_50);
  padding-bottom: 20px;
  padding-top: 5px;
  margin-bottom: 20px;
  margin-left: -20px;
}
.v_menu .nav-item {
  display: inline-block;
  margin-left: 25px;
  margin-bottom: 5px;
}
.v_menu .nav-item .nav-link {
  font-size: 16px;
  color: var(--black_900);
  transition: all 0.2s linear;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.v_menu .nav-item .nav-link span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black_50);
  display: inline-block;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  margin-right: 10px;
  transition: all 0.2s linear;
  position: relative;
  top: -2px;
}
.v_menu .nav-item .nav-link.active, .v_menu .nav-item .nav-link:hover {
  color: var(--brand_color);
  border: 0;
  background: transparent;
}
.v_menu .nav-item .nav-link.active span, .v_menu .nav-item .nav-link:hover span {
  background: var(--brand_color);
  color: #fff;
}

.process_tab_shortcode .version {
  background: #f8fafb;
  padding: 30px;
  font-size: 15px;
  margin-bottom: 28px;
}
.process_tab_shortcode .version p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #6b707f;
}
.process_tab_shortcode .version p:last-child {
  margin-bottom: 0;
}
.process_tab_shortcode .version .v_head {
  padding-bottom: 24px;
}
.process_tab_shortcode .version .v_middle p {
  margin-bottom: 0;
  font-size: 15px;
}
@media (max-width: 1199px) {
  .process_tab_shortcode .version .v_middle p {
    word-break: break-all;
  }
}
.process_tab_shortcode .version .v_middle p .red {
  color: #f12249;
}
.process_tab_shortcode .version .v_middle p .green {
  color: #11c52f;
}
.process_tab_shortcode .version .v_footer {
  padding-top: 25px;
}
.process_tab_shortcode .version .v_footer p {
  margin-bottom: 0;
}

.process_tab_shortcode {
  position: relative;
  overflow: hidden;
}
.process_tab_shortcode .previous,
.process_tab_shortcode .next {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  padding: 0;
  border-radius: 0;
  background: #e1ebf0;
  border: 0;
  color: var(--black_600);
  outline: none;
  box-shadow: none;
  transition: all 0.4s linear;
  height: 32px;
  width: 19px;
  text-align: center;
}
.process_tab_shortcode .previous:focus,
.process_tab_shortcode .next:focus {
  outline: none;
  box-shadow: none;
}
.process_tab_shortcode .previous:hover,
.process_tab_shortcode .next:hover {
  outline: none;
  box-shadow: none;
  background: var(--brand_color);
  color: #fff;
}
.process_tab_shortcode .next {
  right: -30px;
  border-radius: 5px 0 0 5px;
}
.process_tab_shortcode .previous {
  left: -30px;
  border-radius: 0 5px 5px 0;
}
.process_tab_shortcode:hover .next {
  right: 0;
}
.process_tab_shortcode:hover .previous {
  left: 0;
}

/*=========== toggle_shortcode css ========*/
.toggle_shortcode {
  padding-bottom: 60px;
}

.toggle_btn {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--black_900);
  background: #e4e4e4;
  text-align: left;
  border-radius: 4px;
  padding: 12px 30px;
  position: relative;
}
.toggle_btn:before {
  content: "C";
  position: absolute;
  font-size: 18px;
  font-family: eleganticons;
  right: 30px;
  transform: rotate(180deg);
  transition: all 0.2s linear;
  color: var(--brand_color);
}
.toggle_btn:not(.collapsed) {
  border-radius: 4px 4px 0 0;
}
.toggle_btn.collapsed:before {
  transform: rotate(0deg);
  color: var(--black_900);
}
.toggle_btn:focus {
  color: var(--black_900);
}

.toggle_body {
  border: 1px solid var(--black_50);
  background-color: #fff;
  padding: 18px 30px 24px 30px;
  border-radius: 0 0 4px 4px;
  line-height: 26px;
}

/*=========== toggle_shortcode css ========*/
/*=========== doc_accordion Shortcode css ========*/
.doc_accordion {
  border: 0;
  margin-bottom: 1rem;
}
.doc_accordion:last-child {
  margin-bottom: 0;
}
.doc_accordion .card-header {
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
}
.doc_accordion .card-header button {
  padding: 12px 30px;
  border-radius: 4px 4px 0 0;
  text-align: left;
  width: 100%;
  font-size: 16px;
  color: var(--brand_color);
  font-weight: 500;
  background: #e4e4e4;
  text-decoration: none;
  position: relative;
}
.doc_accordion .card-header button i,
.doc_accordion .card-header button svg {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  transition: all 0.2s linear;
}
.doc_accordion .card-header button i + i, .doc_accordion .card-header button i + svg,
.doc_accordion .card-header button svg + i,
.doc_accordion .card-header button svg + svg {
  display: block;
}
.doc_accordion .card-header button.collapsed {
  color: var(--black_900);
  border-radius: 4px;
}
.doc_accordion .card-header button.collapsed i,
.doc_accordion .card-header button.collapsed svg {
  display: block;
  color: var(--black_900);
}
.doc_accordion .card-header button.collapsed i + i, .doc_accordion .card-header button.collapsed i + svg,
.doc_accordion .card-header button.collapsed svg + i,
.doc_accordion .card-header button.collapsed svg + svg {
  display: none;
}
.doc_accordion .card-header button:focus {
  outline: none;
  box-shadow: none;
}

/*=========== doc_accordion Shortcode css ========*/
/*=========== message_alert Shortcode css ========*/
.message_alert {
  border: 1px solid #e5e9eb;
  border-radius: 4px;
  background: #fafcfd;
  padding: 32px 40px 30px;
  margin-bottom: 20px;
  display: flex;
}
.message_alert i {
  font-size: 24px;
  color: #abb0c0;
  margin-right: 25px;
}
.message_alert h5 {
  font-size: 16px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 12px;
}
.message_alert p {
  margin-bottom: 0;
}
.message_alert .close {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 24px;
  opacity: 1;
  border: 0px;
  background: transparent;
  padding: 0px;
}
.message_alert .close i {
  margin-right: 0;
}

.alert-danger {
  background: #fff3f4;
  border-color: #fbadb3;
}
.alert-danger i,
.alert-danger h5 {
  color: #fa303e;
}

.alert-success {
  background: #f1fdf3;
  border-color: #94e3a1;
}
.alert-success i,
.alert-success h5 {
  color: #10d631;
}

.alert-warning {
  background: #fefbf1;
  border-color: #f2dca0;
}
.alert-warning i,
.alert-warning h5 {
  color: #f6ba18;
}

.alert-info {
  background: #f1fbfd;
  border-color: #a0e3f2;
}
.alert-info i,
.alert-info h5 {
  color: #4c4cf1;
}

/*=========== message_alert Shortcode css ========*/
/*=========== notice Shortcode css ========*/
.notice_shortcode {
  padding-top: 25px;
}

.notice {
  border-left: 10px solid;
  padding: 30px 40px;
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
}
@media (max-width: 576px) {
  .notice {
    padding: 20px;
  }
}
.notice:before, .notice:after {
  display: none;
}
.notice i {
  font-size: 24px;
  margin-right: 25px;
}
.notice h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
.notice p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  color: #6b707f;
}
.notice p span {
  padding: 1px 10px;
  background: #fff;
  color: #ed2937;
}

.notice-success {
  background: #459e6d;
  border-color: #30845e;
}
.notice-success p,
.notice-success i,
.notice-success h5 {
  color: #fff;
}

.notice-warning {
  background: #fefaed;
  border-color: #f6ba18;
}
.notice-warning i {
  color: #f6ba18;
  padding-top: 4px;
}

.notice-danger {
  background: #ffeff0;
  border-color: #fa303e;
}
.notice-danger i {
  color: #fa303e;
}

/* Data Table Area css
============================================================================================ */
.data_table_area .dataTables_length {
  margin-top: 15px;
  margin-bottom: 15px;
}
.data_table_area .dataTables_length label {
  color: var(--black_900);
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px;
  margin-bottom: 0;
  position: relative;
  top: 2px;
}
.data_table_area .dataTables_length .mdb-select {
  height: 30px;
  width: 80px;
  border: 1px solid var(--black_50);
  color: var(--black_500);
}
.data_table_area .dataTables_filter {
  margin-top: 0;
  margin-bottom: 15px;
}
.data_table_area .dataTables_filter input[type=search] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.data_table_area .dataTables_filter input[type=search]:focus {
  border-bottom: 1px solid #4c4cf1;
  -webkit-box-shadow: 0 1px 0 0 #4c4cf1;
  box-shadow: 0 1px 0 0 #4c4cf1;
}
.data_table_area .table.dataTable {
  border: 1px solid var(--black_50);
}
.data_table_area .table.dataTable thead tr {
  background: #f7f8f9;
  border-bottom: none;
}
.data_table_area .table.dataTable thead tr th {
  border: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}
.data_table_area .table.dataTable thead tr th[aria-sort=ascending]:after {
  color: var(--black_900);
}
.data_table_area .table.dataTable thead tr th[aria-sort=descending]:before {
  color: var(--black_900);
}
.data_table_area .table.dataTable thead tr th[aria-sort=descending]:after {
  color: rgba(0, 0, 0, 0.4);
}
.data_table_area .table.dataTable tbody tr td {
  border-top: 1px solid var(--black_50);
  font-weight: 400;
  font-size: 14px;
  color: var(--black_600);
  white-space: nowrap;
}
.data_table_area .dataTables_info {
  font-weight: 400;
  color: var(--black_600);
  margin-top: 4px;
}
.data_table_area .dataTables_paginate {
  justify-content: flex-end;
  margin-bottom: 0;
  margin-top: 10px;
}
.data_table_area .dataTables_paginate .paginate_button {
  margin-right: 5px;
  padding: 0;
  height: 32px;
  width: 32px;
  border: 1px solid transparent !important;
  box-sizing: border-box;
  color: #54595d;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 31px;
  outline: none;
  box-shadow: none;
  background: transparent !important;
  border-radius: 3px !important;
}
.data_table_area .dataTables_paginate .paginate_button.previous {
  margin-right: 15px;
  width: auto;
  border: none !important;
}
.data_table_area .dataTables_paginate .paginate_button.next {
  margin-right: 0;
  margin-left: 10px;
  width: auto;
  border: none !important;
}
.data_table_area .dataTables_paginate .paginate_button:hover {
  border-color: #e6edf0 !important;
  background: transparent;
  color: #54595d !important;
}
.data_table_area .dataTables_paginate .paginate_button.current {
  box-shadow: none !important;
  background: var(--brand_color) !important;
  color: #fff !important;
  border-color: var(--brand_color) !important;
}

/*=========== table Shortcode css ========*/
.table_shortcode thead {
  background: #141416;
}
.table_shortcode thead th {
  padding: 20px 25px;
  border: 0;
}
.table_shortcode th,
.table_shortcode td {
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  vertical-align: middle;
}
.table_shortcode th {
  font-weight: 500;
}
.table_shortcode tbody tr {
  background: var(--black_50);
}
.table_shortcode tbody tr th {
  background: #1a1a1a;
}
.table_shortcode tbody tr td,
.table_shortcode tbody tr th {
  padding: 12px 25px;
}
.table_shortcode tbody tr td {
  color: #6b707f;
}
.table_shortcode tbody tr:nth-child(odd) {
  background: #fff;
}

.basic_table {
  padding-top: 45px;
}
.basic_table .s_title {
  margin-bottom: 10px;
}
.basic_table p {
  margin-bottom: 25px;
}

.basic_table_info {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid #f1f2f3;
}
.basic_table_info thead th {
  border: 0;
}
.basic_table_info tbody tr th,
.basic_table_info tbody tr td {
  border-color: #eaeff4;
}
.basic_table_info.table-hover tbody tr {
  transition: all 0.3s linear;
}
.basic_table_info.table-hover tbody tr:hover {
  background: var(--brand_color);
  color: #fff;
}

/*=========== table Shortcode css ========*/
/* Hotspot Area css
============================================================================================ */
/*=========== image_pointer Shortcode css ========*/
.image_pointer .pointing_img {
  padding-bottom: 20px;
}
.image_pointer .pointing_img img {
  max-width: 100%;
  box-shadow: 0 20px 50px 0 rgba(4, 73, 89, 0.1);
}
.image_pointer .pointing_img h6 {
  margin-top: 35px;
}
.image_pointer .pointing_img h6 a {
  color: var(--brand_color);
}

.modal-open {
  padding-right: 0 !important;
}

.modal-backdrop {
  background: #fff;
}

.img_modal {
  background: #fff;
  padding-right: 0 !important;
  box-shadow: 0 4px 14px 0 rgba(4, 73, 89, 0.08);
}
.img_modal img {
  box-shadow: 0 30px 80px 0 rgba(4, 73, 89, 0.12);
}
.img_modal .close {
  font-size: 30px;
  padding-right: 25px;
  padding-top: 25px;
  opacity: 1;
  color: #6b707f;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 0;
  z-index: 3;
}
.img_modal.fade .pointing_img_container {
  max-width: 1170px;
  margin: 0rem auto;
  padding: 80px 0;
  height: 100%;
  display: flex;
  align-items: center;
  transform: translate(0, 0);
}
.img_modal.fade .pointing_img_container .modal-content {
  border: 0;
  padding: 0;
}
.img_modal.fade .pointing_img_container .modal-content img {
  max-width: 100%;
}

.img_pointing {
  width: 10px;
  height: 10px;
  background: #a54ffe;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
}
.img_pointing:before, .img_pointing:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  background: #a54ffe;
}
.img_pointing:before {
  transform: scale(2.1);
  opacity: 0.3;
}
.img_pointing:after {
  transform: scale(3);
  opacity: 0.2;
}
.img_pointing .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(165, 79, 254, 0.9);
  animation: pulse1 3s infinite;
  transform: translate(-50%, -50%);
  animation-delay: 1.5s;
  will-change: transform;
}

.img_pointing_content {
  padding: 25px;
}
.img_pointing_content p {
  font-size: 14px;
  line-height: 22px;
  color: #6b707f;
  margin-bottom: 0;
}
.img_pointing_content p span {
  color: var(--black_900);
}
.img_pointing_content p + p {
  margin-top: 15px;
}

.pointing_img_two {
  position: relative;
  margin-bottom: 60px;
}
.pointing_img_two img {
  box-shadow: 0 20px 50px 0 rgba(4, 73, 89, 0.1);
}

/*=========== image_pointer Shortcode css ========*/
.pointing_img_container .divs {
  visibility: hidden;
  height: 0;
}
.pointing_img_container .nav.list > li {
  position: absolute;
  top: 0;
}
.pointing_img_container .nav.list > li.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.pointing_img_container .nav.list > li .dropdown-menu {
  display: block;
  top: 0;
  left: 0;
  transform: translate(0);
  position: absolute;
  max-width: 500px;
  border-radius: 10px;
  min-width: 400px;
  background: #f9fbfc;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1);
  border: 1px solid var(--black_50);
  z-index: 30;
}
@media (max-width: 767px) {
  .pointing_img_container .nav.list > li .dropdown-menu {
    max-width: 300px;
    min-width: 300px;
  }
}
@media (max-width: 576px) {
  .pointing_img_container .nav.list > li .dropdown-menu {
    max-width: 200px;
    min-width: 200px;
  }
}
.pointing_img_container .nav.list > li .dropdown-menu:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 16px 9px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  left: -16px;
  top: 30px;
  z-index: 1;
}
.pointing_img_container .nav.list > li .dropdown-menu::after {
  content: "";
  width: 20px;
  height: 20px;
  border-style: solid;
  border-width: 9px 16px 9px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  left: -21px;
  top: 30px;
}
.pointing_img_container .nav.list > li .dropdown-menu .text_part {
  padding-top: 27px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  background: #fff;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .pointing_img_container .nav.list > li .dropdown-menu .text_part {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
  }
}
.pointing_img_container .nav.list > li .dropdown-menu .text_part .close_btn {
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .pointing_img_container .nav.list > li .dropdown-menu .text_part .close_btn {
    right: 10px;
  }
}
.pointing_img_container .nav.list > li .dropdown-menu .text_part h4 {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .pointing_img_container .nav.list > li .dropdown-menu .text_part h4 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .pointing_img_container .nav.list > li .dropdown-menu .text_part h4 {
    font-size: 18px;
  }
}
.pointing_img_container .nav.list > li .dropdown-menu .text_part h4 span {
  color: #6b707f;
  font-size: 16px;
  font-weight: 400;
  margin-left: 20px;
}
.pointing_img_container .nav.list > li .dropdown-menu .text_part p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black_600);
  max-width: 340px;
}
@media (max-width: 767px) {
  .pointing_img_container .nav.list > li .dropdown-menu .text_part p {
    font-size: 14px;
  }
}
.pointing_img_container .nav.list > li .dropdown-menu .prev {
  border-bottom-left-radius: 10px;
}
.pointing_img_container .nav.list > li .dropdown-menu .next {
  border-bottom-right-radius: 10px;
}
.pointing_img_container .nav.list > li .dropdown-menu .prev,
.pointing_img_container .nav.list > li .dropdown-menu .next {
  background: var(--brand_color);
  color: var(--black_900);
  text-align: center;
  text-transform: capitalize;
  line-height: 50px;
  padding: 0 19px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
@media (max-width: 767px) {
  .pointing_img_container .nav.list > li .dropdown-menu .prev,
  .pointing_img_container .nav.list > li .dropdown-menu .next {
    padding: 0px;
  }
}
.pointing_img_container .nav.list > li .dropdown-menu .bullets_pointing {
  background: #1d3846;
  height: 50px;
  margin-left: -30px;
  margin-right: -30px;
}
.pointing_img_container .nav.list > li .dropdown-menu .bullets_pointing .nav {
  padding: 21px 0;
}
.pointing_img_container .nav.list > li .dropdown-menu .bullets_pointing .nav li {
  height: 8px;
  width: 8px;
  border: 1px solid #3b6980;
  border-radius: 50%;
  margin-right: 26px;
  position: relative;
}
.pointing_img_container .nav.list > li .dropdown-menu .bullets_pointing .nav li:before {
  content: "";
  width: 26px;
  height: 1px;
  background: #3b6980;
  position: absolute;
  left: 7px;
  top: 3px;
}
.pointing_img_container .nav.list > li .dropdown-menu .bullets_pointing .nav li:last-child {
  margin-right: 0;
}
.pointing_img_container .nav.list > li .dropdown-menu .bullets_pointing .nav li:last-child:before {
  display: none;
}
.pointing_img_container .nav.list > li:nth-child(1) {
  z-index: 5;
  top: 48px;
  left: 158px;
}
@media (max-width: 767px) {
  .pointing_img_container .nav.list > li:nth-child(1) {
    left: 25px;
  }
}
.pointing_img_container .nav.list > li:nth-child(1) .dropdown-menu {
  left: 35px !important;
  top: -38px !important;
}
.pointing_img_container .nav.list > li:nth-child(1).active .dropdown-menu {
  left: 43px !important;
  transition: all 0.3s;
}
.pointing_img_container .nav.list > li:nth-child(1).active .bullets_pointing .nav li:first-child {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 8px #ffffff;
}
.pointing_img_container .nav.list > li:nth-child(2) {
  right: 128px;
  top: 80px;
  left: auto;
  z-index: 4;
}
.pointing_img_container .nav.list > li:nth-child(2) .dropdown-menu {
  left: auto !important;
  top: -35px !important;
  right: 26px;
}
.pointing_img_container .nav.list > li:nth-child(2) .dropdown-menu:before {
  left: auto;
  right: -16px;
  transform: rotate(180deg);
}
.pointing_img_container .nav.list > li:nth-child(2).active .dropdown-menu {
  right: -172px;
  transition: all 0.3s;
}
.pointing_img_container .nav.list > li:nth-child(2).active .bullets_pointing .nav li:nth-child(2) {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 8px #ffffff;
}
.pointing_img_container .nav.list > li:nth-child(3) {
  top: 34%;
  left: 55%;
  z-index: 3;
  transform: translateX(-50%) translateY(50%);
}
.pointing_img_container .nav.list > li:nth-child(3) .dropdown-menu {
  left: auto !important;
  top: -35px !important;
  right: 26px;
}
.pointing_img_container .nav.list > li:nth-child(3) .dropdown-menu:before {
  left: auto;
  right: -20px;
  transform: rotate(180deg);
}
.pointing_img_container .nav.list > li:nth-child(3).active .dropdown-menu {
  right: 34px;
  transition: all 0.3s;
}
.pointing_img_container .nav.list > li:nth-child(3).active .bullets_pointing .nav li:nth-child(3) {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 8px #ffffff;
}
.pointing_img_container .nav.list > li:nth-child(4) {
  top: 51%;
  left: 75px;
  z-index: 2;
  transform: translateX(0%) translateY(50%);
}
.pointing_img_container .nav.list > li:nth-child(4) .dropdown-menu {
  left: 39px !important;
  top: -37px !important;
}
.pointing_img_container .nav.list > li:nth-child(4).active .dropdown-menu {
  left: 46px !important;
  transition: all 0.3s;
}
.pointing_img_container .nav.list > li:nth-child(4).active .bullets_pointing .nav li:nth-child(4) {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 8px #ffffff;
}
.pointing_img_container .nav.list > li.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.blur nav {
  filter: blur(6px);
}
.blur .doc_banner_area.search-banner-light {
  filter: blur(6px);
}
.blur .breadcrumb_link {
  filter: blur(6px);
}
.blur .doc_mobile_menu {
  filter: blur(6px);
}
.blur .shortcode_title {
  filter: blur(6px);
}
.blur .image_pointer {
  filter: blur(6px);
}
.blur .shortcode_info footer {
  filter: blur(6px);
}
.blur .forum_footer_area {
  filter: blur(6px);
}

/* End Hotspot Area css
  ============================================================================================ */
/*=========== lightbox Shortcode css ========*/
.lightbox_shortcode {
  display: inline-block;
  position: relative;
  z-index: 1;
  max-width: 730px;
}
.lightbox_shortcode img {
  background-color: rgb(240, 242, 245);
  box-shadow: 0 4px 14px 0 rgba(4, 73, 89, 0.08);
  max-width: 100%;
}

.img_popup {
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 52px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(29, 39, 70, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
}
.img_popup i {
  margin-left: -2px;
}
.img_popup:hover, .img_popup:focus {
  background: #fff;
  color: var(--black_900);
  box-shadow: 4px 15px 34px 2px rgba(4, 73, 89, 0.2);
}

button.mfp-close {
  font-size: 30px;
  color: #6b707f;
  right: 10px;
  top: 5px;
}

.mfp-bg {
  background: #fff;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
  padding: 0;
}

.mfp-with-zoom .mfp-container {
  transform: scale(0);
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
  transform: scale(1);
  background: #fff;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 1;
}

.mfp-figure:after {
  background-color: rgb(236, 239, 244);
  box-shadow: 0 20px 80px 0 rgba(4, 73, 89, 0.12);
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*=========== lightbox Shortcode css ========*/
/*========== cheatsheet_info css =========*/
.cheatsheet_info + .cheatsheet_info {
  margin-top: 30px;
}

.cheatsheet_accordian .card {
  border: 0;
  padding: 0;
  overflow: visible;
  margin-top: 10px;
  background: transparent;
}
.cheatsheet_accordian .card .card-header {
  padding: 0;
  border: 0;
  background: transparent;
}
.cheatsheet_accordian .card .card-header button {
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  background: transparent;
  color: var(--black_900);
  text-decoration: none;
}
.cheatsheet_accordian .card .card-header button:focus {
  box-shadow: none;
}
.cheatsheet_accordian .card .card-header button .minus {
  display: inline-block;
}
.cheatsheet_accordian .card .card-header button .pluse {
  display: none;
}
.cheatsheet_accordian .card .card-header button.collapsed .pluse {
  display: inline-block;
}
.cheatsheet_accordian .card .card-header button.collapsed .minus {
  display: none;
}

.cheatsheet_item {
  text-align: left;
  padding: 20px 20px 30px;
  margin-bottom: 30px;
  transition: all 0.3s linear;
  background: #fff;
}
@media (max-width: 1199px) {
  .cheatsheet_item {
    padding: 16px 15px 20px;
  }
}
.cheatsheet_item:hover {
  box-shadow: 0 20px 27px 0 rgba(4, 73, 89, 0.08);
}
.cheatsheet_item .cheatsheet_num {
  text-align: right;
}
.cheatsheet_item p {
  margin-bottom: 0;
}
.cheatsheet_item h5 {
  margin-bottom: 0;
  color: var(--brand_color);
}

/** === List Style === **/
.steps-panel {
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.02);
  border: 1px solid #f4f4f4;
  margin-top: 10px;
  margin-bottom: 25px;
  border-radius: 2px;
}

ul.ordered-list li::before {
  content: "h";
  font-family: "ElegantIcons";
  font-size: 10px;
}

.ordered-list {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin: 20px 0;
}
.ordered-list::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #c4cdd5;
}
.ordered-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 16px 0;
  position: relative;
  padding-left: 35px;
  counter-increment: a;
}
.ordered-list li::before {
  content: counter(a);
  position: absolute;
  color: #fff;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 12px;
  background-color: var(--brand_color);
  text-align: center;
  line-height: 23px;
  top: -4px;
  left: -4px;
  border: 5px solid #fff;
}

.direction_steps {
  display: inline-flex;
  align-items: center;
}

.direction_step {
  padding: 0 8px;
  font-size: 13px;
  border-radius: 4px;
  background: rgba(255, 30, 30, 0.8);
  color: #fff;
  position: relative;
  line-height: 20px;
}
.direction_step + .direction_step {
  margin-left: 28px;
}
.direction_step + .direction_step:before {
  content: "$";
  font-family: eleganticons;
  position: absolute;
  left: -22px;
  color: rgba(127, 130, 248, 0.8);
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*============== Button css ================*/
.action_btn {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  box-shadow: 0 20px 30px 0 rgba(76, 76, 241, 0.24);
  border-radius: 4px;
  background: var(--brand_color);
  display: inline-block;
  padding: 14px 28px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.18s ease-in-out;
}

.doc_border_btn {
  border: 2px solid rgba(241, 76, 76, 0.3);
  border-radius: 4px;
  color: var(--brand_color);
  font-size: 14px;
  font-weight: 500;
  background: rgba(209, 22, 22, 0.05);
  display: inline-block;
  padding: 6px 34px;
  transition: all 0.3s linear, color 0.2s;
}
.doc_border_btn i {
  margin-left: 6px;
  font-size: 16px;
  vertical-align: middle;
  display: inline-block;
  transition: all 0.2s linear, color 0s linear;
}
.doc_border_btn:hover {
  box-shadow: 0 10px 20px 0 rgba(76, 76, 241, 0.2);
  background: var(--brand_color);
  border-color: var(--brand_color);
  color: #fff;
}

/*==============typography_area css ================*/
.typography_area {
  padding: 115px 0 120px;
}

.heading_content .t_title {
  color: var(--p_color);
  margin-bottom: 0;
  padding-bottom: 20px;
}
.heading_content .bold,
.heading_content .medium,
.heading_content .regular {
  margin-bottom: 22px;
  line-height: 1;
}

.typography_preview {
  margin-top: 30px;
}

.typography_underline h4 {
  margin-bottom: 35px;
}

.highlight_text,
.typography_underline {
  padding-right: 100px;
  margin-top: 85px;
}

.highlight_text h5 {
  margin-bottom: 30px;
}
.highlight_text span {
  display: inline-block;
  padding: 0 6px;
}
.highlight_text .h_black {
  background: #222d39;
  color: #fff;
}
.highlight_text .h_green {
  background: #15e18d;
  color: #fff;
}
.highlight_text .h_blue {
  background: #2cabed;
  color: #fff;
}
.highlight_text p .tooltips_one {
  color: #4b5ffa;
}
.highlight_text p .tooltips_two {
  color: #ef971a;
}

.tooltip_blue .arrow:before {
  border-top-color: #4b5ffa;
}
.tooltip_blue.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #4b5ffa;
}
.tooltip_blue .tooltip-inner {
  background: #4b5ffa;
}

.tooltip_danger.show {
  opacity: 1;
}

.tooltip_danger {
  opacity: 1;
}
.tooltip_danger .arrow:before {
  border-top-color: #ef971a;
}
.tooltip_danger.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #ef971a;
}
.tooltip_danger .tooltip-inner {
  background: #ef971a;
}

.dropcap_content p span {
  float: left;
  font-size: 54px;
  margin-right: 10px;
  color: #fc5bc1;
  font-weight: 700;
  line-height: 55px;
}
.dropcap_content p .r_dropcap {
  background: #13c5bf;
  border-radius: 4px;
  color: #fff;
  padding: 0 6px;
  font-size: 40px;
  font-weight: 700;
  line-height: 42px;
  margin-top: 10px;
}

.typography_list h5,
.dropcap_content h5 {
  margin-bottom: 30px;
}

.typography_list ul li a,
.typography_list ol li a {
  font-size: 15px;
  line-height: 34px;
  color: var(--p_color);
  font-weight: 400;
}
.typography_list ol {
  padding-left: 15px;
}
.typography_list ol li ol {
  padding-left: 30px;
}
.typography_list .unorderlist li {
  position: relative;
  padding-left: 18px;
}
.typography_list .unorderlist li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a7acbd;
  position: absolute;
  left: 0;
  top: 14px;
}
.typography_list .unorderlist li ul {
  padding-left: 5px;
}

.blockquote_inner {
  margin-top: 85px;
}
.blockquote_inner h6 {
  color: var(--p_color);
  margin-bottom: 0;
}

.blockquote {
  background: var(--black_800);
  padding: 40px;
  border-color: var(--brand_color);
  border-width: 10px;
  margin-bottom: 55px;
}
.blockquote:before, .blockquote:after {
  display: none;
}
.blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--black_25);
}

.blockquote_two {
  padding: 14px 40px 26px 140px;
  border: 0;
  position: relative;
  margin-top: 25px;
}
.blockquote_two::before, .blockquote_two::after {
  display: none;
}
.blockquote_two span {
  background: #fff;
  padding: 0 4px;
}
.blockquote_two .quote_icon {
  font-size: 150px;
  color: #d3d6e1;
  position: absolute;
  transform: rotate(180deg);
  top: 18px;
  background: transparent;
  left: 40px;
  line-height: 155px;
}
.blockquote_two h5 {
  font-size: 22px;
  line-height: 40px;
  font-style: italic;
  font-weight: 400;
  color: var(--p_color);
}

.button_inner {
  margin-top: 60px;
}
.button_inner h4 {
  margin-bottom: 50px;
  padding-top: 30px;
}
.button_inner h6 {
  color: var(--p_color);
  font-weight: 400;
}
.button_inner .button_inner_one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 50px;
  border-bottom: 1px solid #e6eeef;
}
.button_inner:last-child .button_inner_one {
  border: 0;
  padding-bottom: 0;
}

.btn_small {
  padding: 0 16px;
}

.btn_small_two {
  padding: 8px 29px;
}

.doc_border_btn_two,
.btn_small_three {
  padding: 10px 47px;
}

.btn_bg {
  padding: 15px 78px;
}

.btn_radious_none {
  border-radius: 0;
  padding: 10px 68px;
}

.btn_radious_45 {
  border-radius: 45px;
  padding: 5px 28px;
}

.action_btn.btn_small,
.action_btn.btn_small_two,
.action_btn.btn_small_three,
.action_btn.btn_bg,
.action_btn.btn_radious_none,
.action_btn.btn_radious_45 {
  box-shadow: none;
  border: 2px solid var(--brand_color);
  transition: all 0.3s linear;
}
.action_btn.btn_small:hover,
.action_btn.btn_small_two:hover,
.action_btn.btn_small_three:hover,
.action_btn.btn_bg:hover,
.action_btn.btn_radious_none:hover,
.action_btn.btn_radious_45:hover {
  background: rgba(209, 22, 22, 0.05);
  border-color: rgba(241, 76, 76, 0.3);
  color: var(--brand_color);
}

.icon_btn {
  border: 2px solid rgba(241, 76, 76, 0.3);
  margin-left: 0;
  background: rgba(209, 22, 22, 0.05);
}
.icon_btn i {
  padding-right: 7px;
}
.icon_btn:hover {
  border-color: var(--brand_color);
}

.arrow_btn_medium {
  padding: 13px 28px;
}

.arrow_btn_big {
  padding: 18px 44px;
  font-size: 18px;
}
.arrow_btn_big i {
  font-size: 28px;
  padding-left: 12px;
}

.arrow_btn_small {
  padding: 15px 37px;
}

.arrow_btn_small_two {
  padding: 10px 23px;
}

.dropcap_inner {
  padding: 50px 0;
}

/*==============action_area_three css ================*/
.action_area_three {
  background: url("https://html-template.spider-themes.net/allfolio/img/action_bg.jpg") no-repeat scroll center 0/cover;
  padding: 110px 0;
  background-attachment: fixed;
}

.action_content_three {
  max-width: 520px;
  margin: 0 auto;
}
.action_content_three h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}
.action_content_three .doc_border_btn {
  background: transparent;
  color: #fff;
  border-color: #b4b6da;
  padding: 13px 34px;
}
.action_content_three .doc_border_btn:hover {
  background: #ffffff;
  color: var(--brand_color);
  border-color: #fff;
}

/*---------------------------------------------------- */

/*# sourceMappingURL=main.css.map */
