/*
@File: Affort Theme Styles

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

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

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

** - Default CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Section Title CSS
** - Banner Area CSS
** - Marketing Area CSS
** - About Area CSS
** - Services Area CSS
** - Portfolio Area CSS
** - Partner Area CSS
** - Choose Area CSS
** - Team Area CSS
** - Testimonial Area CSS
** - Blog Area CSS
** - Feature Area CSS
** - Pricing Area CSS
** - Platform Area CSS
** - Faq Area CSS
** - Question Area CSS
** - Talk Area CSS
** - Contact Area CSS

*/
/*================================================
Default CSS
=================================================*/
:root {
  --headingFont: "Syne", sans-serif;
  --bodyFont: "Open Sans", sans-serif;
  --primaryColor: #ff834c;
  --primaryColorTwo: #ebd164;
  --primaryColorThree: #efe936;
  --whiteColor: #ffffff;
  --blackColor: #111100;
  --paragraphColor: #161514;
  --fontSize: 16px;
  --transition: .6s;
}

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

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

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

.form-control {
  height: 60px;
  border: 1px solid #f1f1f1;
  padding-left: 15px;
  background-color: #f1f1f1;
  border-radius: unset;
  color: var(--paragraphColor);
}
.form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.form-control:focus {
  border: 1px solid var(--primaryColor);
  box-shadow: none;
}
.form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-control:focus::placeholder {
  color: transparent;
}

textarea {
  height: auto !important;
}

:focus {
  outline: 0 !important;
}

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

p {
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.bg-eff4f {
  background: #eff4f7;
}

.bg-dbe4ed {
  background: #dbe4ed;
}

.bg-121212 {
  background: #121212;
}

.bg-f4f4f4 {
  background: #f4f4f4;
}

.bg-eff4f7 {
  background: #eff4f7;
}

.container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*================================================
Default Btn Area CSS
=================================================*/
.default-btn {
  display: inline-flex;
  padding: 14px 30px;
  background-color: var(--primaryColor);
  color: var(--whiteColor) !important;
  transition: var(--transition);
  border-radius: 0;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.default-btn i {
  font-size: 20px;
  margin-left: 7px;
}
.default-btn.border-btn {
  background-color: transparent;
  color: var(--blackColor) !important;
  border: 1px solid var(--blackColor);
}
.default-btn.border-btn:hover {
  color: var(--whiteColor) !important;
}
.default-btn.white {
  background-color: transparent;
  color: var(--whiteColor) !important;
  border: 1px solid var(--whiteColor);
}
.default-btn.white:hover {
  color: var(--whiteColor) !important;
}
.default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.default-btn:hover::before {
  opacity: 1;
  visibility: visible;
}
.default-btn.style2 {
  padding: 0;
  background-color: transparent;
  color: var(--blackColor) !important;
  border: none;
}
.default-btn.style2 i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--primaryColor);
  margin-left: 10px;
  transition: var(--transition);
}
.default-btn.style2:hover {
  color: var(--primaryColor) !important;
}
.default-btn.style2:hover i {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.default-btn.style3 {
  padding: 0;
  background-color: transparent;
  color: var(--blackColor) !important;
  border: none;
}
.default-btn.style3 i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--primaryColorThree);
  margin-left: 10px;
  transition: var(--transition);
}
.default-btn.style3.white {
  color: var(--whiteColor) !important;
}
.default-btn.style3:hover {
  color: var(--primaryColorThree) !important;
}
.default-btn.style3:hover i {
  color: var(--whiteColor);
  background-color: var(--primaryColorThree);
  border-color: var(--primaryColorThree);
}

.btn-style3 {
  font-weight: 600;
  transition: var(--transition);
}
.btn-style3 i {
  position: relative;
  top: 2px;
  padding-left: 5px;
}
.btn-style3:hover {
  color: var(--primaryColorTwo);
}
.btn-style3.white {
  color: var(--whiteColor);
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  margin: 0 auto 40px 0;
  max-width: 650px;
}
.section-title .top-title {
  color: var(--primaryColor);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}
.section-title .top-title i {
  position: relative;
  top: 2px;
  margin-right: 6px;
}
.section-title h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.section-title p {
  margin-top: 15px;
}
.section-title.title-center {
  max-width: 800px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.section-title.white-title h2 {
  color: var(--whiteColor);
}
.section-title.white-title p {
  color: var(--whiteColor);
}

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

@keyframes flip {
  0%, 80% {
    transform: rotateY(360deg);
  }
}
/*
Preloader Spenner Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--whiteColor);
  top: 0;
  left: 0;
  z-index: 99999;
}
.preloader .loader .text-center {
  font-size: 70px;
  font-weight: 700;
  color: var(--primaryColor);
}
.preloader .lds-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  transform: translate(-40px, -50px);
}
.preloader .preloader-container {
  width: 80px;
  height: 80px;
}
.preloader .petal {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: 2;
}
.preloader .petal::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background-color: var(--primaryColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
  border-left: 1px solid #ffffff;
}
.preloader .petal:nth-of-type(6) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal:nth-of-type(6)::before {
  background-color: transparent;
  animation-delay: 0.5s;
}
.preloader .petal:nth-of-type(7) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal:nth-of-type(7)::before {
  background-color: transparent;
  animation-delay: 0.6s;
}
.preloader .petal:nth-of-type(8) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal:nth-of-type(8)::before {
  background-color: transparent;
  animation-delay: 0.7s;
}
.preloader .petal:nth-of-type(1) {
  transform: translate(-50%, 0%);
}
.preloader .petal:nth-of-type(1)::before {
  animation-delay: 0s;
}
.preloader .petal:nth-of-type(2) {
  transform: translate(-50%, 0%) rotate(45deg);
}
.preloader .petal:nth-of-type(2)::before {
  animation-delay: 0.1s;
}
.preloader .petal:nth-of-type(3) {
  transform: translate(-50%, 0%) rotate(90deg);
}
.preloader .petal:nth-of-type(3)::before {
  animation-delay: 0.2s;
}
.preloader .petal:nth-of-type(4) {
  transform: translate(-50%, 0%) rotate(135deg);
}
.preloader .petal:nth-of-type(4)::before {
  animation-delay: 0.3s;
}
.preloader .petal:nth-of-type(5) {
  transform: translate(-50%, 0%) rotate(180deg);
}
.preloader .petal:nth-of-type(5)::before {
  animation-delay: 0.4s;
}
.preloader .petal-1 {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: -1;
}
.preloader .petal-1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background-color: var(--primaryColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
}
.preloader .petal-1:nth-of-type(9) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal-1:nth-of-type(9)::before {
  animation-delay: 0.5s;
}
.preloader .petal-1:nth-of-type(10) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal-1:nth-of-type(10)::before {
  animation-delay: 0.6s;
}
.preloader .petal-1:nth-of-type(11) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal-1:nth-of-type(11)::before {
  animation-delay: 0.7s;
}
.preloader .ball {
  position: absolute;
  width: 28%;
  height: 28%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: var(--primaryColor);
  z-index: 3;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}
.preloader.preloader-img img {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
.preloader .text-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}

@keyframes opacity-nine {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*================================================
Banner Area CSS
=================================================*/
.banner-area {
  background-color: #121212;
  padding-top: 220px;
  overflow: hidden;
}

.main-banner-title .top-title {
  font-weight: 600;
  color: var(--primaryColor);
}
.main-banner-title .top-title i {
  margin-right: 8px;
  position: relative;
  top: 2px;
}
.main-banner-title h2 {
  font-size: 128px;
  color: var(--whiteColor);
  margin-bottom: 30px;
}
.main-banner-title h2 .shape-one {
  margin-left: 30px;
}

.banner-content {
  margin-left: 60px;
  position: relative;
  height: 100%;
}
.banner-content h2 {
  display: inline-block;
  -webkit-text-stroke: 1px var(--primaryColor);
  color: transparent;
  font-size: 128px;
  font-weight: 700;
  line-height: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-top: -18px;
}
.banner-content p {
  color: var(--whiteColor);
  max-width: 550px;
  margin-top: 20px;
}
.banner-content .shape2 {
  position: absolute;
  bottom: 120px;
  right: 0;
  animation: rotateme 20s linear infinite;
}
.banner-content .social-content {
  text-align: end;
  transform: rotate(-90deg);
  position: absolute;
  right: -230px;
  top: 20%;
}
.banner-content .social-content ul {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}
.banner-content .social-content ul li {
  display: inline-block;
  margin-right: 12px;
}
.banner-content .social-content ul li span {
  color: var(--whiteColor);
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.banner-content .social-content ul li span::before {
  position: absolute;
  content: "-";
  color: var(--whiteColor);
  right: -15px;
}
.banner-content .social-content ul li a {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  position: relative;
  transition: var(--transition);
}
.banner-content .social-content ul li a:hover {
  color: var(--primaryColor);
}
.banner-content .social-content ul li a::before {
  position: absolute;
  content: "|";
  color: #bbbbbb;
  right: -18px;
  top: -2px;
}
.banner-content .social-content ul li:last-child {
  margin-right: 0;
}
.banner-content .social-content ul li:last-child a {
  margin-right: 0;
}
.banner-content .social-content ul li:last-child a::before {
  display: none;
}

.banner-two-area {
  background-color: #121212;
  padding-top: 280px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-two-content {
  max-width: 1020px;
  margin: auto;
  text-align: center;
}
.banner-two-content .top-title {
  display: inline-block;
  color: var(--whiteColor);
}
.banner-two-content h2 {
  font-size: 128px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}
.banner-two-content h2 span {
  background: linear-gradient(90deg, #EBD164 0%, #E1F5C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-two-content p {
  font-size: 20px;
  color: var(--whiteColor);
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
}
.banner-two-content .banner-btn {
  height: 150px;
  width: 150px;
  line-height: 145px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  color: var(--whiteColor);
  transition: var(--transition);
}
.banner-two-content .banner-btn i {
  position: relative;
  padding-left: 5px;
  top: 2px;
}
.banner-two-content .banner-btn:hover {
  background-color: var(--primaryColorTwo);
}

.banner-two-overly {
  position: relative;
}
.banner-two-overly .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.banner-two-overly .social-content ul li {
  display: inline-block;
  color: var(--whiteColor);
  margin-right: 12px;
}
.banner-two-overly .social-content ul li span {
  color: var(--whiteColor);
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.banner-two-overly .social-content ul li span::before {
  position: absolute;
  content: "-";
  color: var(--whiteColor);
  right: -15px;
}
.banner-two-overly .social-content ul li a {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  margin-right: 10px;
  transition: var(--transition);
}
.banner-two-overly .social-content ul li a::before {
  position: absolute;
  content: "|";
  color: rgba(255, 255, 255, 0.5);
  right: -18px;
  font-size: 14px;
  top: 0px;
}
.banner-two-overly .social-content ul li a:hover {
  color: var(--primaryColorTwo);
}
.banner-two-overly .social-content ul li:last-child {
  margin-right: 0;
}
.banner-two-overly .social-content ul li:last-child a {
  margin-right: 0;
}
.banner-two-overly .social-content ul li:last-child a::before {
  display: none;
}
.banner-two-overly .banner-shapes .shape-one {
  position: absolute;
  left: 0;
  bottom: 210px;
}
.banner-two-overly .banner-shapes .shape-two {
  position: absolute;
  right: 120px;
  top: -50px;
}
.banner-two-overly .banner-shapes .shape-three {
  position: absolute;
  right: 0;
  bottom: 30px;
}

.banner-three-area {
  background-color: #1e1e1e;
}

.banner-three-overly {
  max-width: 1770px;
  background-size: cover;
  margin-right: 0;
  margin-left: auto;
  padding-top: 280px;
  padding-bottom: 200px;
  position: relative;
}
.banner-three-overly .social-content {
  transform: rotate(-90deg);
  position: absolute;
  left: -230px;
  bottom: 170px;
}
.banner-three-overly .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.banner-three-overly .social-content ul li {
  display: inline-block;
  color: var(--whiteColor);
  margin-right: 12px;
}
.banner-three-overly .social-content ul li span {
  color: var(--whiteColor);
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.banner-three-overly .social-content ul li span::before {
  position: absolute;
  content: "-";
  color: var(--whiteColor);
  right: -15px;
}
.banner-three-overly .social-content ul li a {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  margin-right: 10px;
  transition: var(--transition);
}
.banner-three-overly .social-content ul li a::before {
  position: absolute;
  content: "|";
  color: rgba(255, 255, 255, 0.5);
  right: -18px;
  font-size: 14px;
  top: 0px;
}
.banner-three-overly .social-content ul li a:hover {
  color: var(--primaryColorTwo);
}
.banner-three-overly .social-content ul li:last-child {
  margin-right: 0;
}
.banner-three-overly .social-content ul li:last-child a {
  margin-right: 0;
}
.banner-three-overly .social-content ul li:last-child a::before {
  display: none;
}

.banner-three-content {
  position: relative;
  margin-right: 70px;
  margin-left: -70px;
}
.banner-three-content .logo {
  margin-bottom: 10px;
}
.banner-three-content h2 {
  font-size: 98px;
  color: var(--whiteColor);
}
.banner-three-content p {
  font-size: 20px;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.banner-three-content .banner-shape {
  position: absolute;
  right: -110px;
  top: -100px;
}

.page-banner-area {
  background-color: #121212;
  padding-top: 250px;
  padding-bottom: 150px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h1, .page-banner-content h2, .page-banner-content h3, .page-banner-content h4, .page-banner-content h5, .page-banner-content h6 {
  color: var(--whiteColor);
  font-size: 100px;
  line-height: 1;
  margin-bottom: 10px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.page-banner-content ul {
  padding-left: 0;
  margin-left: 0;
}
.page-banner-content ul li {
  display: inline-block;
  color: var(--whiteColor);
  font-size: 20px;
  margin-right: 30px;
  position: relative;
}
.page-banner-content ul li::before {
  position: absolute;
  content: "/";
  color: var(--primaryColor);
  right: -22px;
  top: 2px;
}
.page-banner-content ul li a {
  color: var(--primaryColor);
}
.page-banner-content ul li:last-child {
  margin-right: 0;
}
.page-banner-content ul li:last-child::before {
  display: none;
}

/*================================================
Marketing Area CSS
=================================================*/
.marketing-area {
  background-color: #121212;
}
.marketing-area.style2 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.marketing-area.style2 .marketing-content h2 {
  font-size: 100px;
}
.marketing-area.style3 {
  padding-top: 45px;
  padding-bottom: 50px;
  background-color: var(--primaryColorTwo);
}
.marketing-area.style3 .marketing-content h2 {
  color: var(--blackColor);
}
.marketing-area.style4 {
  background-color: #1e1e1e;
}
.marketing-area.style4 .marketing-content {
  padding-top: 45px;
  padding-bottom: 50px;
  background-color: var(--primaryColorThree);
  max-width: 1770px;
  margin-right: 0;
  margin-left: auto;
  overflow: hidden;
}
.marketing-area.style4 .marketing-content h2 {
  color: var(--blackColor);
}

.marketing-content h2 {
  font-size: 48px;
  color: var(--primaryColor);
  line-height: 1;
  margin-bottom: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marketing-content h2 i {
  color: var(--whiteColor);
  position: relative;
  top: 10px;
  margin-left: 8px;
  margin-right: 8px;
}

@keyframes marquee {
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes marquee2 {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
}
/*================================================
About Area CSS
=================================================*/
.about-left-image {
  margin-left: 85px;
  margin-right: 80px;
}

.about-right-content {
  position: relative;
  margin-left: -25px;
}
.about-right-content img {
  margin-bottom: 10px;
}
.about-right-content p {
  margin-top: 20px;
}
.about-right-content .quote-content {
  padding-left: 20px;
  border-left: 2px solid var(--primaryColor);
}
.about-right-content .quote-content p {
  margin-bottom: 0;
  padding: 0;
}

.about-area.style2 {
  position: relative;
}
.about-area.style2 .shape-one {
  position: absolute;
  right: 140px;
  top: 100px;
  animation: rotateme 20s linear infinite;
}

.about-two-area {
  overflow: hidden;
}
.about-two-area .container-fluid {
  margin-left: auto;
  margin-right: 0;
  max-width: 1620px;
  padding-right: 0;
}

.about-two-content {
  max-width: 760px;
  position: relative;
}
.about-two-content p {
  font-size: 24px;
  font-weight: 700;
  color: var(--blackColor);
  margin-right: 30px;
}
.about-two-content .btn-style3 {
  float: right;
}
.about-two-content .shape {
  position: absolute;
  left: 0;
  bottom: -210px;
  animation: rotateme 20s linear infinite;
}

.about-two-image-content {
  margin-left: 60px;
  text-align: end;
  position: relative;
  z-index: 1;
}
.about-two-image-content::before {
  position: absolute;
  content: "";
  border: 1px solid var(--blackColor);
  top: 25px;
  bottom: -10px;
  left: -10px;
  right: 25px;
  z-index: -1;
}

.about-three-area .section-title {
  max-width: 740px;
}

.about-three-right-content .content-and-img {
  margin-bottom: 35px;
  padding-right: 220px;
  position: relative;
}
.about-three-right-content .content-and-img p {
  color: #b9b9b9;
  padding-right: 60px;
}
.about-three-right-content .content-and-img .shape-img {
  position: absolute;
  right: 0;
  top: 10px;
}
.about-three-right-content .quote-content {
  margin-bottom: 60px;
}
.about-three-right-content .quote-content p {
  color: #b9b9b9;
  position: relative;
  padding-left: 25px;
  z-index: 1;
}
.about-three-right-content .quote-content p::before {
  position: absolute;
  content: "";
  width: 110px;
  top: -15px;
  left: 0;
  bottom: -15px;
  background-color: rgba(239, 233, 54, 0.1);
  z-index: -1;
}
.about-three-right-content .about-funfact-item h2 {
  font-size: 100px;
  color: var(--primaryColorThree);
}
.about-three-right-content .about-funfact-item p {
  color: #b9b9b9;
}
.about-three-right-content .col-lg-4:nth-child(2) .about-funfact-item {
  margin-left: 20px;
}

/*================================================
Services Area CSS
=================================================*/
.single-services-items {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.single-services-items .services-item-title {
  padding-left: 20px;
}
.single-services-items .services-item-title h3 span {
  color: var(--primaryColor);
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  top: -6px;
  margin-right: 10px;
}
.single-services-items .services-item-title h3 a {
  font-size: 40px;
  color: var(--whiteColor);
  transition: var(--transition);
}
.single-services-items .services-item-title h3 a:hover {
  color: var(--primaryColor);
}
.single-services-items .content {
  padding-right: 40px;
}
.single-services-items .content p {
  color: var(--whiteColor);
}
.single-services-items .services-btn {
  text-align: end;
}
.single-services-items .services-btn a {
  height: 75px;
  width: 75px;
  line-height: 75px;
  text-align: center;
  color: var(--whiteColor);
  font-size: 20px;
  display: inline-block;
  border: 1px solid var(--whiteColor);
  border-radius: 100%;
  transition: var(--transition);
}
.single-services-items .services-btn a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
  transform: rotate(45deg);
}
.single-services-items:first-child {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.single-services-items:last-child {
  margin-bottom: 0;
}

.single-services-card {
  border: 1px solid var(--blackColor);
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.single-services-card::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 0%;
  right: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  border: 1px solid var(--blackColor);
  z-index: -1;
  transition: var(--transition);
}
.single-services-card::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  z-index: -1;
}
.single-services-card .icon {
  margin-bottom: 5px;
}
.single-services-card .icon i {
  font-size: 120px;
  line-height: 1;
  position: relative;
  left: -6px;
}
.single-services-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
}
.single-services-card h3 a {
  color: var(--blackColor);
}
.single-services-card h3 a:hover {
  color: var(--primaryColor);
}
.single-services-card .services-btn a {
  font-weight: 600;
}
.single-services-card .services-btn a i {
  position: relative;
  top: 3px;
}
.single-services-card .services-btn a:hover {
  color: var(--primaryColor);
}
.single-services-card.style2::before {
  background-color: var(--primaryColorTwo);
}
.single-services-card.style2 h3 a:hover {
  color: var(--primaryColorTwo);
}
.single-services-card.style2 .services-btn a:hover {
  color: var(--primaryColorTwo);
}
.single-services-card:hover {
  transform: translateY(-10px);
}
.single-services-card:hover::before {
  right: -10px;
  bottom: -10px;
  height: 100%;
  width: 100%;
}

.services-three-area {
  /* Firefox */
  /* Chrome, Edge, and Safari */
}
.services-three-area .scrollmenu {
  overflow: auto;
  flex-wrap: unset;
}
.services-three-area * {
  scrollbar-width: auto;
  scrollbar-color: var(--primaryColorThree) #282716;
}
.services-three-area *::-webkit-scrollbar {
  width: 16px;
  height: 6px;
}
.services-three-area *::-webkit-scrollbar-track {
  background: #282716;
}
.services-three-area *::-webkit-scrollbar-thumb {
  background-color: var(--primaryColorThree);
  border-radius: 0;
}

.single-services-item {
  margin-bottom: 40px;
  margin-top: -100px;
  position: relative;
}
.single-services-item::before {
  position: absolute;
  content: "";
  height: 85%;
  width: 1px;
  background-color: #282716;
  right: -12px;
  bottom: 0;
}
.single-services-item .image {
  position: relative;
  margin-left: -120px;
  margin-right: -120px;
  bottom: -100px;
  transition: var(--transition);
  opacity: 0;
}
.single-services-item .services-item-title h3 {
  writing-mode: vertical-lr;
  max-height: 360px;
  transform: rotate(180deg);
  font-size: 40px;
  z-index: 3;
}
.single-services-item .services-item-title h3 a {
  color: var(--whiteColor);
}
.single-services-item .services-item-title span {
  color: var(--primaryColorThree);
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  font-family: var(--headingFont);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  position: relative;
  left: 45px;
  margin-top: 15px;
}
.single-services-item:hover .image {
  opacity: 1;
}
.single-services-item:hover .services-item-title h3 {
  z-index: 1;
}
.single-services-item:hover .services-item-title h3 a {
  -webkit-text-stroke: 1px var(--primaryColorThree);
  color: transparent;
}

.col-lg-2:nth-child(3) .single-services-item .image {
  opacity: 1;
}
.col-lg-2:nth-child(3) .single-services-item .services-item-title h3 {
  z-index: 1;
}
.col-lg-2:nth-child(3) .single-services-item .services-item-title h3 a {
  -webkit-text-stroke: 1px var(--primaryColorThree);
  color: transparent;
}

.services-details-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.services-details-content .details-top-content .content-one .quote {
  padding-left: 20px;
  display: block;
  border-left: 2px solid var(--primaryColor);
}
.services-details-content .details-bottom-content {
  position: relative;
}
.services-details-content .details-bottom-content .title-two {
  max-width: 985px;
}
.services-details-content .details-bottom-content .services-content-two {
  margin-left: 80px;
}
.services-details-content .details-bottom-content .services-content-two .quote {
  padding-left: 20px;
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 35px;
  margin-bottom: 35px;
}
.services-details-content .details-bottom-content .services-content-two .quote::before {
  position: absolute;
  content: "";
  height: 130px;
  width: 110px;
  background-color: #f4f4f4;
  left: 0;
  top: -15px;
  z-index: -1;
}
.services-details-content .details-bottom-content .services-content-two .feature-list {
  padding-left: 0;
}
.services-details-content .details-bottom-content .services-content-two .feature-list li {
  list-style-type: none;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: var(--headingFont);
  font-weight: 700;
  color: var(--blackColor);
}
.services-details-content .details-bottom-content .services-content-two .feature-list li:last-child {
  margin-bottom: 0;
}
.services-details-content .details-bottom-content .services-content-two .feature-list li span {
  color: var(--primaryColor);
}
.services-details-content .details-bottom-content .shape {
  position: absolute;
  top: 0;
  right: 0;
  animation: rotateme 20s linear infinite;
}

/*================================================
Portfolio Area CSS
=================================================*/
.portfolio-area {
  overflow: hidden;
}
.portfolio-area.style1 .container-fluid {
  padding: 0;
  max-width: 100%;
  overflow: hidden;
  left: calc((101% - 1320px) / 2);
  position: relative;
}
.portfolio-area.style3 {
  padding-bottom: 60px;
  position: relative;
}
.portfolio-area.style3::before {
  position: absolute;
  content: "";
  height: 70px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--whiteColor);
}
.portfolio-area.style3 .shape-and-btn {
  position: relative;
}
.portfolio-area.style3 .shape-and-btn .shape {
  position: absolute;
  left: -340px;
  bottom: -110px;
  animation: rotateme 20s linear infinite;
}

.single-portfolio-item {
  margin-bottom: 45px;
}
.single-portfolio-item .projects-image {
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.single-portfolio-item .projects-image img {
  overflow: hidden;
  transition: var(--transition);
}
.single-portfolio-item .projects-image:hover img {
  transform: scale(1.03);
}
.single-portfolio-item .content span {
  display: inline-block;
  margin-bottom: 10px;
}
.single-portfolio-item .content h3 {
  font-size: 24px;
}
.single-portfolio-item .content h3 a {
  transition: var(--transition);
}
.single-portfolio-item .content h3 a:hover {
  color: var(--primaryColor);
}

.portfolio-slide {
  margin-bottom: 30px;
}
.portfolio-slide .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid var(--blackColor);
  border-radius: 100%;
  opacity: 1;
}
.portfolio-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.portfolio-tabs.nav-tabs {
  border-bottom: 3px solid #F4F4F4;
}
.portfolio-tabs.nav-tabs .nav-item .nav-link {
  color: var(--blackColor);
  font-weight: 500;
  padding-right: 20px;
  padding-left: 20px;
  border: none;
  position: relative;
}
.portfolio-tabs.nav-tabs .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 0%;
  background-color: var(--primaryColor);
  left: 0;
  bottom: -1px;
  transition: var(--transition);
}
.portfolio-tabs.nav-tabs .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.portfolio-tabs.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}

.single-portfolio-card {
  position: relative;
  margin-left: 100px;
  margin-bottom: 45px;
}
.single-portfolio-card .content {
  position: absolute;
  left: -70px;
  top: 0;
}
.single-portfolio-card .content h3 {
  font-size: 24px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
}
.single-portfolio-card .content h3 a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.single-portfolio-card .content h3 a:hover {
  color: var(--primaryColor);
}

.col-lg-6:nth-child(2) .single-portfolio-card {
  margin-top: 100px;
}
.col-lg-6:nth-child(2) .single-portfolio-card .content {
  bottom: -10px;
  top: auto;
}
.col-lg-6:nth-child(3) .single-portfolio-card {
  margin-top: -100px;
}
.col-lg-6:nth-child(4) .single-portfolio-card .content {
  bottom: -10px;
  top: auto;
}
.col-lg-6:nth-child(5) .single-portfolio-card {
  margin-top: -100px;
}
.col-lg-6:nth-child(6) .single-portfolio-card .content {
  bottom: -10px;
  top: auto;
}
.col-lg-6:nth-child(7) .single-portfolio-card {
  margin-top: -100px;
}
.col-lg-6:nth-child(8) .single-portfolio-card .content {
  bottom: -10px;
  top: auto;
}

.marketing-all-content {
  margin-top: 100px;
}

.marketing-content-one {
  background-color: #dbe4ed;
  padding-top: 15px;
  padding-bottom: 20px;
  transform: rotate(5deg);
  position: relative;
  bottom: -60px;
  width: 100%;
}
.marketing-content-one::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 60px;
  background-color: #dbe4ed;
  left: -30px;
  top: 0;
}
.marketing-content-one::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 40px;
  background-color: #dbe4ed;
  right: -30px;
  top: 0;
}
.marketing-content-one h2 {
  font-size: 48px;
  color: var(--blackColor);
  line-height: 1;
  margin-bottom: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marketing-content-one h2 i {
  color: var(--whiteColor);
  position: relative;
  top: 10px;
  margin-left: 8px;
  margin-right: 8px;
}

.marketing-content-two {
  background-color: var(--primaryColorTwo);
  padding-top: 15px;
  padding-bottom: 20px;
  transform: rotate(-5deg);
  bottom: 25px;
  position: relative;
}
.marketing-content-two::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 60px;
  background-color: var(--primaryColorTwo);
  left: -30px;
  top: 0;
}
.marketing-content-two::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 40px;
  background-color: var(--primaryColorTwo);
  right: -30px;
  top: 0;
}
.marketing-content-two h2 {
  font-size: 48px;
  color: var(--blackColor);
  line-height: 1;
  margin-bottom: 0;
  animation: marquee2 30s linear infinite;
  white-space: nowrap;
}
.marketing-content-two h2 i {
  color: var(--whiteColor);
  position: relative;
  top: 10px;
  margin-left: 8px;
  margin-right: 8px;
}

.single-portfolio-item-style4 {
  position: relative;
}
.single-portfolio-item-style4 .content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background-color: #121212;
  max-width: 400px;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}
.single-portfolio-item-style4 .content h3 {
  margin-bottom: 0;
  font-size: 40px;
}
.single-portfolio-item-style4 .content h3 a {
  color: var(--whiteColor);
}
.single-portfolio-item-style4 .content h3 a:hover {
  color: var(--primaryColorThree);
}

.portfolio-slide2 .swiper-slide.swiper-slide-active .single-portfolio-item-style4 .content {
  opacity: 1;
}

.portfolio-details-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.portfolio-details-content .details-top-content {
  margin-bottom: 30px;
}
.portfolio-details-content .details-top-content .content-one {
  margin-bottom: 25px;
}
.portfolio-details-content .details-top-content .content-one .quote {
  padding-left: 20px;
  display: block;
  border-left: 2px solid var(--primaryColor);
}
.portfolio-details-content .details-top-content .portfolio-details-list {
  padding-top: 60px;
  margin-bottom: 50px;
}
.portfolio-details-content .details-top-content .portfolio-details-list .single-details-list {
  margin-bottom: 15px;
}
.portfolio-details-content .details-top-content .portfolio-details-list .single-details-list span {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
.portfolio-details-content .details-top-content .portfolio-details-list .single-details-list a:hover {
  color: var(--primaryColor);
}
.portfolio-details-content .details-bottom-content {
  position: relative;
}
.portfolio-details-content .details-bottom-content .portfolio-content-two {
  margin-left: 80px;
}
.portfolio-details-content .details-bottom-content .portfolio-content-two .quote {
  padding-left: 20px;
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 35px;
  margin-bottom: 35px;
}
.portfolio-details-content .details-bottom-content .portfolio-content-two .quote::before {
  position: absolute;
  content: "";
  height: 130px;
  width: 110px;
  background-color: #f4f4f4;
  left: 0;
  top: -15px;
  z-index: -1;
}
.portfolio-details-content .details-bottom-content .portfolio-content-two .feature-list {
  padding-left: 0;
}
.portfolio-details-content .details-bottom-content .portfolio-content-two .feature-list li {
  list-style-type: none;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: var(--headingFont);
  font-weight: 700;
  color: var(--blackColor);
}
.portfolio-details-content .details-bottom-content .portfolio-content-two .feature-list li:last-child {
  margin-bottom: 0;
}
.portfolio-details-content .details-bottom-content .portfolio-content-two .feature-list li span {
  color: var(--primaryColor);
}
.portfolio-details-content .solution-content {
  padding-top: 90px;
}
.portfolio-details-content .solution-content h2 {
  margin-bottom: 20px;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-two-area {
  background-color: #c4cff6;
  overflow: hidden;
}
.partner-two-area .container-fluid {
  margin-left: auto;
  margin-right: 0;
  max-width: 1620px;
  padding-right: 0;
}
.partner-two-area.style2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #121212;
}

.partner-funfact-content {
  position: relative;
}
.partner-funfact-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
  line-height: 1;
}
.partner-funfact-content::before {
  position: absolute;
  content: "";
  height: 75px;
  width: 1px;
  background-color: var(--whiteColor);
  right: 80px;
  top: 10px;
}
.partner-funfact-content.style2 h2 {
  color: var(--primaryColorThree);
}
.partner-funfact-content.style2 p {
  color: #d9d9d9;
}
.partner-funfact-content.style2::before {
  opacity: 0.2;
}

/*================================================
Choose Area CSS
=================================================*/
.choose-area {
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}
.choose-area .container-fluid {
  margin-left: auto;
  margin-right: 0;
  max-width: 1650px;
  padding-right: 0;
}
.choose-area.style2 .marketings-content {
  margin-top: 70px;
  overflow: hidden;
}
.choose-area.style2 .marketings-content h2 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.choose-area.style2 .marketings-content h2 i {
  color: var(--primaryColor);
  position: relative;
  top: 10px;
  margin-left: 8px;
  margin-right: 8px;
}

.choose-content .section-title {
  margin-bottom: 35px;
}
.choose-content .img-and-experiens {
  margin-top: 45px;
}
.choose-content .img-and-experiens h2 {
  font-size: 100px;
  display: flex;
  align-items: center !important;
  margin-left: 20px;
}
.choose-content .img-and-experiens h2 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraphColor);
  max-width: 100px;
  position: relative;
  top: 3px;
  margin-left: 5px;
}

.choose-video-content {
  position: relative;
}
.choose-video-content .video-btn {
  height: 100px;
  width: 100px;
  background-color: var(--whiteColor);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  line-height: 135px;
  position: absolute;
  transition: var(--transition);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
.choose-video-content .video-btn i {
  font-size: 50px;
  line-height: 100px;
  color: var(--primaryColor);
  position: relative;
  left: 2px;
  transition: var(--transition);
}
.choose-video-content .video-btn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--whiteColor);
  animation: ripple 5s linear infinite;
  transition: var(--transition);
}
.choose-video-content .video-btn::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--whiteColor);
  animation: ripple 7s linear infinite;
  transition: var(--transition);
}
.choose-video-content .video-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.choose-video-content .video-btn:hover i {
  color: var(--whiteColor);
}
.choose-video-content .video-btn:hover::before {
  border-color: var(--primaryColor);
}
.choose-video-content .video-btn:hover::after {
  border-color: var(--primaryColor);
}
.choose-video-content .shape {
  position: absolute;
  left: -40px;
  top: -40px;
  animation: rotateme 20s linear infinite;
}
.choose-video-content.style2 .video-btn i {
  color: var(--primaryColorThree);
}
.choose-video-content.style2 .video-btn:hover {
  background-color: var(--primaryColorThree);
  border-color: var(--primaryColorThree);
}
.choose-video-content.style2 .video-btn:hover i {
  color: var(--whiteColor);
}
.choose-video-content.style2 .video-btn:hover::before {
  border-color: var(--primaryColorThree);
}
.choose-video-content.style2 .video-btn:hover::after {
  border-color: var(--primaryColorThree);
}

.choose-style2-area .container-fluid {
  margin-left: auto;
  overflow: hidden;
  margin-right: 0;
  max-width: 1620px;
  padding-right: 0;
}

.choose-style2-content {
  margin-right: 35px;
}
.choose-style2-content .section-title p {
  color: #d9d9d9;
}
.choose-style2-content .quote-content {
  margin-bottom: 40px;
}
.choose-style2-content .quote-content p {
  color: #b9b9b9;
  position: relative;
  padding-left: 25px;
}
.choose-style2-content .quote-content p::before {
  position: absolute;
  content: "";
  width: 110px;
  background-color: rgba(239, 233, 54, 0.1);
  left: 0;
  top: -15px;
  bottom: -15px;
}
.choose-style2-content .feature-list {
  padding-left: 0;
}
.choose-style2-content .feature-list li {
  list-style-type: none;
  color: var(--whiteColor);
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--headingFont);
}
.choose-style2-content .feature-list li:last-child {
  margin-bottom: 0;
}
.choose-style2-content .feature-list li span {
  color: var(--primaryColorThree);
  font-family: var(--bodyFont);
}

/*================================================
Testimonial Area CSS
=================================================*/
.single-testimonial-item .client-img {
  margin-right: 85px;
}
.single-testimonial-item .review-content p {
  font-size: 24px;
  color: var(--paragraphColor);
  font-weight: 600;
  margin-bottom: 30px;
}
.single-testimonial-item .review-content .ratings {
  margin-bottom: 10px;
}
.single-testimonial-item .review-content .ratings i {
  color: var(--primaryColor);
  font-size: 18px;
  margin-right: 4px;
}
.single-testimonial-item .review-content .ratings i:last-child {
  margin-right: 0;
}
.single-testimonial-item .review-content h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.testimonial-slide .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid var(--blackColor);
  border-radius: 100%;
  opacity: 1;
}
.testimonial-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.testimonial-slide.style2 .swiper-pagination-bullet {
  position: relative;
  left: 140px;
}
.testimonial-slide.style3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primaryColorTwo);
  border-color: var(--primaryColorTwo);
}

.single-review-item {
  padding-left: 150px;
  position: relative;
  margin-bottom: 60px;
}
.single-review-item .quote-img {
  position: absolute;
  left: 0;
  top: 0;
}
.single-review-item .review-content p {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.single-review-item .review-content .ratings {
  margin-bottom: 10px;
}
.single-review-item .review-content .ratings i {
  color: var(--primaryColor);
  margin-right: 2px;
}
.single-review-item .review-content .ratings h3 {
  font-size: 24px;
}
.single-review-item.style2 .review-content .ratings i {
  color: var(--primaryColorTwo);
}

.client-image-content {
  position: relative;
  margin-left: 20px;
}
.client-image-content .img-two {
  position: absolute;
  right: -160px;
  top: -180px;
}
.client-image-content .shape {
  position: absolute;
  right: -100px;
  bottom: 20px;
  animation: rotateme 20s linear infinite;
}
.client-image-content.style2 .img-two {
  top: -150px;
}

.testimonials-two-area {
  position: relative;
  z-index: 1;
}
.testimonials-two-area::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #1b1b1b 0%, #121212 85.5%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.single-testimonial-item-style2 {
  margin-right: 50px;
}
.single-testimonial-item-style2 p {
  font-size: 24px;
  font-weight: 600;
  color: #d9d9d9;
  margin-bottom: 20px;
  line-height: 1.6;
}
.single-testimonial-item-style2 .ratings {
  margin-bottom: 10px;
}
.single-testimonial-item-style2 .ratings i {
  color: var(--primaryColorThree);
  margin-right: 3px;
}
.single-testimonial-item-style2 .ratings i:last-child {
  margin-right: 0;
}
.single-testimonial-item-style2 h3 {
  font-size: 24px;
  color: var(--whiteColor);
}
.single-testimonial-item-style2 span {
  color: #d9d9d9;
}

.testimonial-slide2 .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid #b9b9b9;
  border-radius: 100%;
  opacity: 1;
}
.testimonial-slide2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primaryColorThree);
  border-color: var(--primaryColorThree);
}

/*================================================
Pricing Area CSS
=================================================*/
.single-pricing-item {
  background-color: var(--whiteColor);
  padding: 50px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-pricing-item h3 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1;
}
.single-pricing-item p {
  margin-bottom: 0;
}
.single-pricing-item h2 {
  font-size: 100px;
  transition: var(--transition);
}
.single-pricing-item span {
  display: block;
  margin-bottom: 25px;
}
.single-pricing-item .default-btn {
  width: 100%;
  display: inline-block;
  text-align: center !important;
  padding: 12px 30px 18px 30px;
}
.single-pricing-item .default-btn i {
  position: relative;
  top: 4px;
}
.single-pricing-item:hover {
  transform: translateY(-10px);
}
.single-pricing-item.style2 {
  border: 1px solid var(--paragraphColor);
  background-color: transparent;
}
.single-pricing-item.style2 .default-btn {
  padding: 0;
  text-align: end !important;
  overflow: unset;
}
.single-pricing-item.style2 .default-btn i {
  top: 4px;
}
.single-pricing-item.style2:hover h2 {
  color: var(--primaryColor);
}
.single-pricing-item.style3 {
  border: 1px solid var(--paragraphColor);
  background-color: #1b1b1b;
}
.single-pricing-item.style3 .default-btn {
  padding: 0;
  text-align: end !important;
  overflow: unset;
}
.single-pricing-item.style3 .default-btn i {
  top: 4px;
}
.single-pricing-item.style3 h3 {
  color: var(--whiteColor);
}
.single-pricing-item.style3 p {
  color: #d9d9d9;
}
.single-pricing-item.style3 h2 {
  color: var(--whiteColor);
}
.single-pricing-item.style3 span {
  color: #d9d9d9;
}
.single-pricing-item.style3:hover h2 {
  color: var(--primaryColorThree);
}

.col-lg-4:nth-child(2) .single-pricing-item.style2 {
  transform: translateY(-50px);
}
.col-lg-4:nth-child(2) .single-pricing-item.style3 {
  transform: translateY(-50px);
}

.pricing-area {
  position: relative;
}
.pricing-area .shape {
  position: absolute;
  right: 190px;
  top: 230px;
  text-align: end;
}
.pricing-area .shape img {
  animation: rotateme 20s linear infinite;
}
.pricing-area.style2 .section-title {
  max-width: 650px;
  margin-bottom: 75px;
}
.pricing-area.style2 .shape {
  top: 150px;
  right: 140px;
}
.pricing-area.style3 .section-title {
  max-width: 650px;
  margin-bottom: 75px;
}

/*================================================
Feature Area CSS
=================================================*/
.single-feature-item {
  background-color: #f4f4f4;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.single-feature-item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  background-color: var(--primaryColor);
  right: 0;
  top: 0;
  z-index: -1;
  transition: var(--transition);
}
.single-feature-item h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.single-feature-item .icon i {
  font-size: 120px;
  line-height: 1;
}
.single-feature-item.style2 {
  padding: 0;
  background-color: transparent;
}
.single-feature-item.style2::before {
  display: none;
}
.single-feature-item:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.feature-area .section-title p {
  font-size: 20px;
  max-width: 540px;
}

/*================================================
Platform Area CSS
=================================================*/
.platform-left-content .title {
  font-size: 48px;
  margin-bottom: 20px;
}
.platform-left-content .platform-tabs {
  border: unset;
  margin-right: 60px;
  transition: var(--transition);
}
.platform-left-content .platform-tabs .nav-item {
  display: block;
  width: 100%;
  border: unset;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
  transition: var(--transition);
}
.platform-left-content .platform-tabs .nav-item:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}
.platform-left-content .platform-tabs .nav-item:last-child .nav-link span {
  background-color: #f3e1d7;
}
.platform-left-content .platform-tabs .nav-item .nav-link {
  padding-left: 110px;
  position: relative;
  border: unset;
  margin-top: 25px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.platform-left-content .platform-tabs .nav-item .nav-link span {
  height: 88px;
  width: 88px;
  line-height: 78px;
  border-radius: 100%;
  background-color: #dbe4ed;
  transition: var(--transition);
  font-size: 40px;
  text-align: center;
  display: inline-block;
  color: var(--blackColor);
  font-family: var(--headingFont);
  font-weight: 700;
  border: 1px solid transparent;
  position: absolute;
  left: 0;
  top: -20px;
}
.platform-left-content .platform-tabs .nav-item .nav-link h3 {
  font-size: 24px;
}
.platform-left-content .platform-tabs .nav-item .nav-link p {
  position: absolute;
  transition: var(--transition);
  opacity: 0;
}
.platform-left-content .platform-tabs .nav-item .nav-link.active {
  margin-bottom: 0;
}
.platform-left-content .platform-tabs .nav-item .nav-link.active span {
  background-color: var(--primaryColorTwo);
  border-color: var(--paragraphColor);
}
.platform-left-content .platform-tabs .nav-item .nav-link.active p {
  position: unset;
  opacity: 1;
}

.platform-img-content .tab-content .plat-img {
  position: relative;
  margin-right: -100px;
  transform: rotate(4deg);
  z-index: 1;
  transition: var(--transition);
}
.platform-img-content .tab-content .plat-img::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: -10px;
  bottom: -10px;
  background-color: var(--primaryColorTwo);
  border: 1px solid var(--blackColor);
  z-index: -1;
  transition: var(--transition);
}
.platform-img-content .tab-content .tab-pane:nth-child(2) .plat-img {
  transform: rotate(-4deg);
}

/*================================================
Faq Area CSS
=================================================*/
.faq-accordion-content .section-title {
  margin-bottom: 25px;
}
.faq-accordion-content.style2 {
  position: relative;
  margin-left: -30px;
}

.faq-accordion .accordion-item {
  margin-bottom: 15px;
  padding-right: 40px;
  margin-right: 90px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.faq-accordion .accordion-item .accordion-button {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackColor);
  font-family: var(--headingFont);
}
.faq-accordion .accordion-item .accordion-button::before {
  position: absolute;
  content: "\eb84";
  font-family: "remixicon" !important;
  color: var(--blackColor);
  right: -40px;
  top: 4px;
  font-size: 18px;
  text-align: center;
  border-radius: 100%;
}
.faq-accordion .accordion-item .accordion-button.collapsed::before {
  content: "\ea0f";
}
.faq-accordion .accordion-item .accordion-body {
  margin-top: 13px;
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
  border-bottom: unset;
}

.faq-img-and-content {
  margin-right: 110px;
}
.faq-img-and-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.faq-img-and-content .category-list {
  margin-top: 40px;
  padding-left: 0;
}
.faq-img-and-content .category-list li {
  margin-bottom: 14px;
  list-style-type: none;
  padding-left: 30px;
  position: relative;
}
.faq-img-and-content .category-list li::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  background-color: var(--primaryColor);
  left: 0;
  top: 8px;
  transition: var(--transition);
}
.faq-img-and-content .category-list li::after {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  border: 1px solid var(--primaryColor);
  top: 6px;
  left: -2px;
  transition: var(--transition);
}
.faq-img-and-content .category-list li a {
  font-weight: 700;
  font-family: var(--headingFont);
  color: var(--blackColor);
  transition: var(--transition);
}
.faq-img-and-content .category-list li:hover::before {
  background-color: var(--blackColor);
}
.faq-img-and-content .category-list li:hover::after {
  border-color: var(--blackColor);
}
.faq-img-and-content .category-list li:hover a {
  color: var(--primaryColor);
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-card {
  margin-bottom: 30px;
}
.single-blog-card .blog-image {
  margin-bottom: 25px;
  overflow: hidden;
  transition: var(--transition);
}
.single-blog-card .blog-image img {
  overflow: hidden;
  transition: var(--transition);
}
.single-blog-card .blog-content ul {
  padding-left: 0;
  margin-bottom: 16px;
}
.single-blog-card .blog-content ul li {
  display: inline-block;
  margin-right: 25px;
}
.single-blog-card .blog-content ul li i {
  color: var(--primaryColor);
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.single-blog-card .blog-content ul li:last-child {
  margin-right: 0;
}
.single-blog-card .blog-content ul li a:hover {
  color: var(--primaryColor);
}
.single-blog-card .blog-content h1, .single-blog-card .blog-content h2, .single-blog-card .blog-content h3, .single-blog-card .blog-content h4, .single-blog-card .blog-content h5, .single-blog-card .blog-content h6 {
  font-size: 24px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.single-blog-card .blog-content h1 a, .single-blog-card .blog-content h2 a, .single-blog-card .blog-content h3 a, .single-blog-card .blog-content h4 a, .single-blog-card .blog-content h5 a, .single-blog-card .blog-content h6 a {
  color: var(--blackColor);
  transition: var(--transition);
}
.single-blog-card .blog-content h1 a:hover, .single-blog-card .blog-content h2 a:hover, .single-blog-card .blog-content h3 a:hover, .single-blog-card .blog-content h4 a:hover, .single-blog-card .blog-content h5 a:hover, .single-blog-card .blog-content h6 a:hover {
  color: var(--primaryColor);
}
.single-blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.single-blog-card.style2 {
  background-color: #f9f9f9;
}
.single-blog-card.style2 .blog-image {
  margin-bottom: 0;
}
.single-blog-card.style2 .blog-content {
  padding: 30px;
  padding-top: 25px;
}
.single-blog-card.style2 .blog-content h1, .single-blog-card.style2 .blog-content h2, .single-blog-card.style2 .blog-content h3, .single-blog-card.style2 .blog-content h4, .single-blog-card.style2 .blog-content h5, .single-blog-card.style2 .blog-content h6 {
  margin-bottom: 20px;
}
.single-blog-card.style2 .blog-content .default-btn {
  font-weight: 600;
  color: var(--blackColor);
}
.single-blog-card.style2 .blog-content .default-btn i {
  font-weight: 400;
}
.single-blog-card.style3 .blog-content ul li {
  color: #d9d9d9;
}
.single-blog-card.style3 .blog-content ul li i {
  color: var(--primaryColorThree);
}
.single-blog-card.style3 .blog-content ul li a {
  color: #d9d9d9;
}
.single-blog-card.style3 .blog-content ul li a:hover {
  color: var(--primaryColorThree);
}
.single-blog-card.style3 .blog-content h1 a, .single-blog-card.style3 .blog-content h2 a, .single-blog-card.style3 .blog-content h3 a, .single-blog-card.style3 .blog-content h4 a, .single-blog-card.style3 .blog-content h5 a, .single-blog-card.style3 .blog-content h6 a {
  color: var(--whiteColor);
}
.single-blog-card.style3 .blog-content h1 a:hover, .single-blog-card.style3 .blog-content h2 a:hover, .single-blog-card.style3 .blog-content h3 a:hover, .single-blog-card.style3 .blog-content h4 a:hover, .single-blog-card.style3 .blog-content h5 a:hover, .single-blog-card.style3 .blog-content h6 a:hover {
  color: var(--primaryColorThree);
}
.single-blog-card.style3 .blog-content .default-btn {
  margin-top: 20px;
}

.blog-area .section-title {
  max-width: 690px;
}

.blog-details-desc {
  margin-right: 80px;
}
.blog-details-desc .meta li {
  display: inline-block;
  margin-right: 20px;
}
.blog-details-desc .meta li i {
  position: relative;
  top: 2px;
  color: var(--primaryColor);
}
.blog-details-desc .meta li a {
  text-transform: capitalize;
}
.blog-details-desc .meta li a:hover {
  color: var(--primaryColor);
}
.blog-details-desc .post-tag {
  margin-top: 30px;
}
.blog-details-desc .post-tag span {
  font-weight: 600;
  color: var(--blackColor);
  display: inline-block;
  margin-right: 5px;
}
.blog-details-desc .post-tag .tag-list {
  padding-left: 0;
}
.blog-details-desc .post-tag .tag-list li {
  display: inline-block;
  margin-right: 5px;
  position: relative;
}
.blog-details-desc .post-tag .tag-list li::before {
  position: absolute;
  content: ",";
  right: -4px;
}
.blog-details-desc .post-tag .tag-list li:last-child::before {
  display: none;
}
.blog-details-desc .post-tag .tag-list li a:hover {
  color: var(--primaryColor);
}

.all-blog-posts {
  position: relative;
}

.single-blog-item .blog-image {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  max-width: 535px;
  z-index: 1;
}
.single-blog-item .blog-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--paragraphColor);
  z-index: -1;
}
.single-blog-item .blog-content {
  margin-left: 80px;
  padding-right: 90px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(22, 21, 20, 0.1);
  position: relative;
}
.single-blog-item .blog-content .meta-list {
  padding-left: 0;
  margin-bottom: 15px;
}
.single-blog-item .blog-content .meta-list li {
  display: inline-block;
  margin-right: 20px;
}
.single-blog-item .blog-content .meta-list li i {
  color: var(--primaryColorTwo);
  position: relative;
  top: 2px;
  margin-right: 3px;
}
.single-blog-item .blog-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.single-blog-item .blog-content h3 a:hover {
  color: var(--primaryColorTwo);
}
.single-blog-item .blog-content p {
  margin-bottom: 0;
}
.single-blog-item .blog-content .view-btn {
  height: 50px;
  width: 50px;
  line-height: 48px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  border: 1px solid var(--paragraphColor);
  position: absolute;
  right: 0;
  top: 34%;
  transition: var(--transition);
}
.single-blog-item:hover .blog-image {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.single-blog-item:hover .blog-content .view-btn {
  background-color: var(--primaryColorTwo);
}
.single-blog-item:first-child .blog-image {
  opacity: 1;
  visibility: visible;
}
.single-blog-item:last-child .blog-content {
  margin-bottom: 0;
  border-bottom: unset;
}

.not-found-content .error-image {
  margin-bottom: 35px;
}
.not-found-content h3 {
  font-size: 24px;
  margin-bottom: 40px;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
  text-align: center;
}
.pagination-area .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  overflow: hidden;
  line-height: 45px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  background-color: transparent;
  transition: var(--transition);
  border: 1px solid var(--blackColor);
  font-size: var(--fontSize);
  font-weight: 500;
  margin-left: 8px;
  margin-right: 8px;
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--blackColor);
  background: var(--primaryColor);
  border-color: var(--primaryColor);
}
.pagination-area .page-numbers.next, .pagination-area .page-numbers.prev {
  position: relative;
  z-index: 1;
  background-color: transparent;
  transition: var(--transition);
  color: var(--blackColor);
  border-color: var(--primaryColor);
}
.pagination-area .page-numbers.next i, .pagination-area .page-numbers.prev i {
  font-size: 22px;
  color: var(--blackColor);
  transition: var(--transition);
}
.pagination-area .page-numbers.next:hover, .pagination-area .page-numbers.prev:hover {
  background-color: var(--primaryColor);
}
.pagination-area .page-numbers.next:hover i, .pagination-area .page-numbers.prev:hover i {
  color: var(--whiteColor);
}
.pagination-area .page-numbers.next:hover::before, .pagination-area .page-numbers.prev:hover::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
Funfact Area CSS
=================================================*/
.single-funfact-item {
  margin-bottom: 30px;
}
.single-funfact-item h2 {
  font-size: 100px;
  line-height: 1;
  margin-right: 10px;
}
.single-funfact-item p {
  max-width: 100px;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  top: 40px;
}

.funfact-style2 .funfact-area {
  background-color: #dbe4ed;
}

/*================================================
Team Area CSS
=================================================*/
.team-with-simple-slide {
  display: flex;
  position: relative;
}
.team-with-simple-slide .slide {
  flex: 1;
  transition: var(--transition);
  position: relative;
  margin-right: 20px;
}
.team-with-simple-slide .slide .image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
}
.team-with-simple-slide .slide .image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(22, 21, 20, 0) 0%, rgba(22, 21, 20, 0.75) 100%);
  left: 0;
  top: 0;
}
.team-with-simple-slide .slide .content {
  transition: var(--transition);
  opacity: 1;
  visibility: visible;
  text-align: center;
  position: absolute;
  left: 35px;
  bottom: 100px;
}
.team-with-simple-slide .slide .content h3 {
  font-size: 22px;
  margin-bottom: 0;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.team-with-simple-slide .slide .content h3 a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.team-with-simple-slide .slide .content h3 a:hover {
  color: var(--primaryColor);
}
.team-with-simple-slide .slide .bottom-content {
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  padding-left: 45px;
  padding-right: 40px;
}
.team-with-simple-slide .slide .bottom-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.team-with-simple-slide .slide .bottom-content h3 a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.team-with-simple-slide .slide .bottom-content h3 a:hover {
  color: var(--primaryColor);
}
.team-with-simple-slide .slide .bottom-content p {
  color: var(--whiteColor);
}
.team-with-simple-slide .slide .bottom-content .social-icon {
  position: absolute;
  right: 40px;
  bottom: 20px;
}
.team-with-simple-slide .slide .bottom-content .social-icon a {
  height: 75px;
  width: 75px;
  line-height: 72px;
  border-radius: 100%;
  text-align: center;
  font-size: 24px;
  display: inline-block;
  background: var(--primaryColorTwo);
  border: 2px solid var(--paragraphColor);
}
.team-with-simple-slide .slide:nth-child(3) .content {
  left: 25px;
}
.team-with-simple-slide .slide:last-child {
  margin-right: 0;
  flex: 3;
}
.team-with-simple-slide .slide:last-child .content {
  opacity: 0;
  visibility: hidden;
}
.team-with-simple-slide .slide:last-child .bottom-content {
  opacity: 1;
  visibility: visible;
}
.team-with-simple-slide .slide:hover {
  flex: 3;
}
.team-with-simple-slide .slide:hover .content {
  opacity: 0;
  visibility: hidden;
}
.team-with-simple-slide .slide:hover .bottom-content {
  opacity: 1;
  visibility: visible;
}
.team-with-simple-slide .slide:hover:last-child {
  flex: 1;
}
.team-with-simple-slide .slide:hover:last-child:hover {
  flex: 3;
}

.single-team-card {
  position: relative;
  margin-bottom: 30px;
}
.single-team-card::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(22, 21, 20, 0) 0%, rgba(22, 21, 20, 0.75) 100%);
  left: 0;
  top: 0;
}
.single-team-card .content {
  position: absolute;
  left: 30px;
  bottom: 25px;
  width: 100%;
}
.single-team-card .content h3 {
  font-size: 24px;
  transition: var(--transition);
  margin-bottom: 10px;
  position: relative;
  top: 32px;
}
.single-team-card .content h3 a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.single-team-card .content h3 a:hover {
  color: var(--primaryColor);
}
.single-team-card .content p {
  color: var(--whiteColor);
  margin-bottom: 0;
  opacity: 0;
  transition: var(--transition);
}
.single-team-card .content .social-icon {
  position: absolute;
  right: 60px;
  bottom: 5px;
  opacity: 0;
  transition: var(--transition);
}
.single-team-card .content .social-icon a {
  height: 50px;
  width: 50px;
  line-height: 48px;
  border-radius: 100%;
  text-align: center;
  font-size: 20px;
  display: inline-block;
  background: var(--primaryColorTwo);
  border: 2px solid var(--paragraphColor);
}
.single-team-card:hover .content h3 {
  top: 0;
}
.single-team-card:hover .content p {
  opacity: 1;
}
.single-team-card:hover .content .social-icon {
  opacity: 1;
}

.team-area.style2 {
  position: relative;
  overflow: hidden;
}
.team-area.style2 .shape {
  position: absolute;
  top: 150px;
  right: 100px;
  animation: rotateme 20s linear infinite;
}

.team-details-area {
  position: relative;
}
.team-details-area .shape {
  position: absolute;
  right: 150px;
  top: 75px;
  animation: rotateme 20s linear infinite;
}

.team-details-content {
  margin-left: 90px;
}
.team-details-content h2 {
  font-size: 48px;
  margin-bottom: 8px;
}
.team-details-content .designation {
  color: var(--primaryColor);
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
}
.team-details-content .quote-content {
  position: relative;
  padding-left: 30px;
  z-index: 1;
  margin-bottom: 35px;
  margin-top: 30px;
}
.team-details-content .quote-content::before {
  position: absolute;
  content: "";
  width: 110px;
  background-color: #f9f9f9;
  left: 0;
  top: -15px;
  bottom: -15px;
  z-index: -1;
}
.team-details-content .social-content {
  padding-left: 0;
  margin-bottom: 20px;
}
.team-details-content .social-content li {
  display: inline-block;
}
.team-details-content .social-content li span {
  display: block;
  font-weight: 600;
}
.team-details-content .social-content li a {
  margin-right: 18px;
  position: relative;
  transition: var(--transition);
}
.team-details-content .social-content li a::before {
  position: absolute;
  content: "|";
  right: -15px;
  top: -1px;
}
.team-details-content .social-content li a:hover {
  color: var(--primaryColor);
}
.team-details-content .social-content li:last-child a {
  margin-right: 0;
}
.team-details-content .social-content li:last-child a::before {
  display: none;
}
.team-details-content .contact-info {
  margin-bottom: 30px;
}
.team-details-content .contact-info span {
  color: var(--primaryColor);
  display: block;
  margin-bottom: 8px;
}
.team-details-content .contact-info a {
  color: var(--blackColor);
  font-weight: 600;
  font-size: 24px;
  display: block;
  transition: var(--transition);
}
.team-details-content .contact-info a:hover {
  color: var(--primaryColor);
}

/*================================================
Question Area CSS
=================================================*/
.question-area .container-fluid {
  margin-left: 0;
  padding-left: 0;
  margin-right: auto;
  max-width: 1640px;
}

.question-form-content h2 {
  font-size: 48px;
  max-width: 450px;
  margin-bottom: 30px;
}
.question-form-content .form-group {
  margin-bottom: 25px;
}
.question-form-content .form-group .form-control {
  background-color: var(--whiteColor);
}
.question-form-content .form-group textarea {
  height: 120px !important;
}
.question-form-content .default-btn {
  float: right;
}

/*================================================
talk Area CSS
=================================================*/
.lets-talk-overly {
  text-align: center;
}
.lets-talk-overly .content {
  max-width: 930px;
  margin: auto;
}
.lets-talk-overly .content .logo {
  margin-bottom: 20px;
}
.lets-talk-overly .content h2 {
  font-size: 48px;
  color: var(--whiteColor);
}
.lets-talk-overly .content h2 a {
  color: var(--primaryColorTwo);
  text-decoration: underline;
}
.lets-talk-overly.style2 .content h2 {
  color: var(--whiteColor);
}
.lets-talk-overly.style2 .content h2 a {
  color: var(--primaryColorThree);
  text-decoration: none;
}
.lets-talk-overly.style2 .content .default-btn {
  margin-top: 20px;
  background-color: var(--primaryColorThree);
  color: var(--blackColor) !important;
}

.talk-area.style1 {
  position: relative;
  z-index: 1;
}
.talk-area.style1::before {
  position: absolute;
  content: "";
  height: 50%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #121212;
  z-index: -1;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  overflow: hidden;
}
.contact-area .container-fluid {
  margin-left: auto;
  margin-right: 0;
  max-width: 1650px;
  padding-right: 0;
}

.map-area {
  position: relative;
  margin-bottom: -8px;
  margin-left: 6px;
}
.map-area iframe {
  width: 100%;
  height: 850px;
  border: 0;
  display: block;
}

.contact-content .section-title {
  margin-bottom: 25px;
}
.contact-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.contact-content span {
  display: block;
  margin-bottom: 15px;
}
.contact-content a {
  display: block;
  margin-bottom: 5px;
}
.contact-content .main-office-content {
  max-width: 255px;
  margin-bottom: 30px;
}
.contact-content .second-office-content {
  max-width: 255px;
  margin-bottom: 30px;
}
.contact-content .date-and-time h3 {
  margin-bottom: 8px;
}

/*=============================================================================================================
Home Four & Five CSS
===============================================================================================================*/
.banner-four-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner-four-area .shape3 {
  position: absolute;
  left: 6%;
  bottom: -80px;
  z-index: -1;
}
.banner-four-area .container-fluid {
  position: relative;
  padding-top: 175px;
  padding-bottom: 90px;
}
.banner-four-area .container-fluid .lines .line {
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 1px;
  top: 0;
  border-left: 1px solid #D9D9D9;
  z-index: -1;
}
.banner-four-area .container-fluid .lines .line.one {
  left: 30px;
}
.banner-four-area .container-fluid .lines .line.two {
  left: 25%;
}
.banner-four-area .container-fluid .lines .line.three {
  left: 50%;
}
.banner-four-area .container-fluid .lines .line.four {
  left: 75%;
}
.banner-four-area .container-fluid .lines .line.five {
  right: 30px;
}

.banner-four-content {
  position: relative;
}
.banner-four-content h1 {
  font-size: 128px;
  line-height: 1;
}
.banner-four-content .content-overly {
  padding-left: 270px;
  position: relative;
}
.banner-four-content .content-overly .img {
  position: absolute;
  left: 0;
  top: 25px;
}
.banner-four-content .content-overly .content h1 {
  margin-bottom: 15px;
}
.banner-four-content .content-overly .content h1 span {
  color: var(--primaryColor);
  display: inline-block;
  margin-right: 20px;
}
.banner-four-content .content-overly .content p {
  font-size: 20px;
  color: var(--paragraphColor);
  font-weight: 600;
  margin-bottom: 30px;
}
.banner-four-content .content-overly .content .default-btn {
  border-radius: 5px;
  padding: 13px 30px;
}
.banner-four-content .shape2 {
  position: absolute;
  top: -45px;
  right: 34%;
  animation: rotateme 20s linear infinite;
}

.bottom-content .left-content {
  margin-top: 200px;
}
.bottom-content .left-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primaryColor);
  margin-top: 5px;
  margin-bottom: 20px;
}
.bottom-content .left-content h5 i {
  color: var(--paragraphColor);
  position: relative;
  top: 4px;
  margin-right: 5px;
}
.bottom-content .left-content .social {
  padding-left: 0;
  margin-bottom: 0;
}
.bottom-content .left-content .social li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}
.bottom-content .left-content .social li::before {
  position: absolute;
  content: "";
  background-color: #D9D9D9;
  height: 12px;
  width: 1px;
  right: -15px;
  top: 7px;
}
.bottom-content .left-content .social li span {
  font-weight: 600;
  display: inline-block;
}
.bottom-content .left-content .social li a:hover {
  color: var(--primaryColor);
}
.bottom-content .left-content .social li:first-child {
  margin-right: 10px;
}
.bottom-content .left-content .social li:first-child::before {
  display: none;
}
.bottom-content .left-content .social li:last-child {
  margin-right: 10px;
}
.bottom-content .left-content .social li:last-child::before {
  display: none;
}
.bottom-content .right-content {
  max-width: 462px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  margin-top: -30px;
}
.bottom-content .right-content .img {
  margin-bottom: 20px;
}

.marketing-area.style5 {
  background-color: #D9D9D9;
}
.marketing-area.style5 h2 p {
  font-size: 48px;
}
.marketing-area.style5 h2 i {
  color: var(--primaryColor);
  position: relative;
  top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.award-area {
  background-color: #F9F9F9;
}
.award-area .section-title {
  max-width: 1095px;
}

.award-left-content {
  margin-right: 20px;
}
.award-left-content ul {
  padding-left: 0;
}
.award-left-content ul li {
  padding-bottom: 33px;
  margin-bottom: 33px;
  border-bottom: 1px solid #E3DBDD;
  font-size: 20px;
  font-weight: 700;
  list-style-type: none;
  font-family: var(--headingFont);
  position: relative;
}
.award-left-content ul li span {
  position: absolute;
  right: 30px;
  top: 0;
  font-size: 16px;
}
.award-left-content ul li:last-child {
  margin-bottom: 0;
}

.award-right-content {
  margin-right: 15px;
}

.single-team-card2 {
  margin-bottom: 30px;
}
.single-team-card2 .team-img {
  margin-bottom: 20px;
  position: relative;
}
.single-team-card2 .team-img .social-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  transition: var(--transition);
}
.single-team-card2 .team-img .social-icon a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.single-team-card2 .content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.single-team-card2 .content h3 a:hover {
  color: var(--primaryColor);
}
.single-team-card2:hover .team-img .social-icon {
  opacity: 1;
}

.col-lg-4:nth-child(1) .single-team-card2 {
  margin-top: 50px;
}
.col-lg-4:nth-child(3) .single-team-card2 {
  margin-top: 50px;
}

.testimonials-four-area {
  padding-top: 298px;
  padding-bottom: 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.testimonials-four-area .testimonial-slide2 .swiper-pagination2 {
  background-color: var(--whiteColor);
  margin-right: 0;
  margin-left: auto;
  max-width: 120px;
  border-radius: 30px;
  text-align: center;
  padding: 10px 18px;
  position: relative;
  top: -40px;
  z-index: 2;
}
.testimonials-four-area .testimonial-slide2 .swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.single-testimonial-item-style4 {
  padding: 30px;
  max-width: 648px;
  background-color: #161514;
}
.single-testimonial-item-style4 .top-content {
  position: relative;
  align-items: center;
  margin-bottom: 20px;
}
.single-testimonial-item-style4 .top-content .con {
  margin-left: 35px;
}
.single-testimonial-item-style4 .top-content .con h3 {
  font-size: 24px;
  color: var(--whiteColor);
}
.single-testimonial-item-style4 .top-content .con span {
  color: var(--whiteColor);
}
.single-testimonial-item-style4 .top-content .quote-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.single-testimonial-item-style4 p {
  color: var(--whiteColor);
  font-size: 24px;
}

.video-area {
  padding-top: 280px;
  padding-bottom: 280px;
}
.video-area .video-content {
  position: relative;
  margin: auto;
  text-align: center;
}
.video-area .video-content .video-btn {
  height: 100px;
  width: 100px;
  background-color: var(--whiteColor);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  line-height: 135px;
  transition: var(--transition);
  position: relative;
}
.video-area .video-content .video-btn i {
  font-size: 50px;
  line-height: 100px;
  color: var(--primaryColor);
  position: relative;
  left: 0;
  transition: var(--transition);
}
.video-area .video-content .video-btn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100%;
  left: 0;
  top: 0;
  border: 1px dashed var(--whiteColor);
  animation: ripple 5s linear infinite;
  transition: var(--transition);
}
.video-area .video-content .video-btn::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100%;
  left: 0;
  top: 0;
  border: 1px dashed var(--whiteColor);
  animation: ripple 8s linear infinite;
  transition: var(--transition);
}
.video-area .video-content .video-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.video-area .video-content .video-btn:hover i {
  color: var(--whiteColor);
}
.video-area .video-content .video-btn:hover::before {
  border-color: var(--primaryColor);
}
.video-area .video-content .video-btn:hover::after {
  border-color: var(--primaryColor);
}

.video-area-two {
  background-color: #F5F3EF;
}
.video-area-two .video-overly {
  padding-top: 420px;
  padding-bottom: 50px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.video-area-two .video-overly .video-content {
  text-align: end;
  justify-content: end;
  margin-right: 50px;
}
.video-area-two .video-overly .video-content span {
  display: inline-block;
  font-size: 48px;
  color: var(--whiteColor);
  font-weight: 700;
  font-family: var(--headingFont);
  margin-right: 30px;
}
.video-area-two .video-overly .video-content .video-btn {
  height: 100px;
  width: 100px;
  background-color: var(--whiteColor);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  line-height: 135px;
  transition: var(--transition);
  position: relative;
}
.video-area-two .video-overly .video-content .video-btn i {
  font-size: 50px;
  line-height: 100px;
  color: var(--blackColor);
  position: relative;
  left: 0;
  transition: var(--transition);
}
.video-area-two .video-overly .video-content .video-btn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100%;
  left: 0;
  top: 0;
  border: 1px dashed var(--whiteColor);
  animation: ripple 5s linear infinite;
  transition: var(--transition);
}
.video-area-two .video-overly .video-content .video-btn::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100%;
  left: 0;
  top: 0;
  border: 1px dashed var(--whiteColor);
  animation: ripple 8s linear infinite;
  transition: var(--transition);
}
.video-area-two .video-overly .video-content .video-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.video-area-two .video-overly .video-content .video-btn:hover i {
  color: var(--whiteColor);
}
.video-area-two .video-overly .video-content .video-btn:hover::before {
  border-color: var(--primaryColor);
}
.video-area-two .video-overly .video-content .video-btn:hover::after {
  border-color: var(--primaryColor);
}

.services-four-area .section-title {
  max-width: 1095px;
}

.service-left-content .image {
  margin-top: 50px;
}

.service-right-content .service-simple-item {
  padding-left: 70px;
  position: relative;
}
.service-right-content .service-simple-item .icon {
  position: absolute;
  left: 0;
}
.service-right-content .service-simple-item .con {
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid #E3DBDD;
}
.service-right-content .service-simple-item .con h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-right-content .service-simple-item .con h3 a:hover {
  color: var(--primaryColor);
}

.banner-five-area {
  padding-top: 310px;
  padding-bottom: 230px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.banner-five-area .container-fluid {
  max-width: 1590px;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-five-area .banner-five-overly {
  position: relative;
}
.banner-five-area .banner-five-overly .social-content {
  position: absolute;
  right: 0;
  bottom: -130px;
}
.banner-five-area .banner-five-overly .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.banner-five-area .banner-five-overly .social-content ul li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.banner-five-area .banner-five-overly .social-content ul li a {
  color: #D9D9D9;
}
.banner-five-area .banner-five-overly .social-content ul li::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 1px;
  background-color: #D9D9D9;
  right: -14px;
  top: 7px;
}
.banner-five-area .banner-five-overly .social-content ul li:last-child {
  margin-right: 0;
}
.banner-five-area .banner-five-overly .social-content ul li:last-child::before {
  display: none;
}

.banner-five-content {
  max-width: 1365px;
}
.banner-five-content h2 {
  font-size: 128px;
  color: var(--whiteColor);
}
.banner-five-content .content {
  max-width: 465px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  margin-top: -110px;
}
.banner-five-content .content p {
  color: var(--whiteColor);
  font-size: 20px;
  margin-bottom: 40px;
}
.banner-five-content .content .banner-btn {
  height: 120px;
  width: 120px;
  line-height: 135px;
  display: inline-block;
  border: 1px solid var(--whiteColor);
  border-radius: 100%;
  color: var(--whiteColor);
  transition: var(--transition);
  position: relative;
  text-align: center;
  background: rgba(22, 21, 20, 0.1);
}
.banner-five-content .content .banner-btn::before {
  position: absolute;
  content: "\ea70";
  font-family: "remixicon" !important;
  top: -24px;
  left: 50px;
}
.banner-five-content .content .banner-btn:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.footer-area.style5 {
  background-color: #161514;
}
.footer-area.style5 .single-footer-widget .call-and-massage li span {
  color: var(--whiteColor);
}
.footer-area.style5 .single-footer-widget.widget_affort_newsletter .newsletter-form .default-btn i {
  color: var(--whiteColor);
}
.footer-area.style5 .single-footer-widget .logo {
  display: none !important;
}
.footer-area.style5 .single-footer-widget .logo.logo4 {
  display: block !important;
}

.copyright-area.style5 {
  background-color: #161514;
}
.copyright-area.style5 p a {
  color: var(--whiteColor);
}

.talk-area.style2 {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
  background-color: #F5F3EF;
}
.talk-area.style2 h2 {
  margin-bottom: 30px;
}
.talk-area.style2 .contact-btn {
  height: 120px;
  width: 120px;
  line-height: 135px;
  display: inline-block;
  border: 1px solid var(--whiteColor);
  border-radius: 100%;
  color: var(--whiteColor);
  transition: var(--transition);
  position: relative;
  text-align: center;
  background: rgba(22, 21, 20, 0.1);
}
.talk-area.style2 .contact-btn::before {
  position: absolute;
  content: "\ea70";
  font-family: "remixicon" !important;
  top: -24px;
  left: 50px;
}
.talk-area.style2 .contact-btn:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.talk-area.style2::before {
  position: absolute;
  content: "";
  height: 280px;
  width: 100%;
  background-color: #161514;
  bottom: 0;
  z-index: -1;
}

.blog-area-five {
  background-color: #F5F3EF;
}
.blog-area-five .section-title {
  max-width: 760px;
}
.blog-area-five .top-content {
  position: relative;
}
.blog-area-five .top-content .blog-right-btn {
  position: absolute;
  right: 0;
  top: 20px;
}
.blog-area-five .top-content .blog-right-btn .blog-btns {
  height: 120px;
  width: 120px;
  line-height: 135px;
  display: inline-block;
  border: 1px solid var(--paragraphColor);
  border-radius: 100%;
  color: var(--paragraphColor);
  transition: var(--transition);
  position: relative;
  text-align: center;
  line-height: 1.2;
  padding-top: 40px;
  transition: var(--transition);
}
.blog-area-five .top-content .blog-right-btn .blog-btns:hover {
  background-color: var(--primaryColor);
  border-color: var(--whiteColor);
  color: var(--whiteColor);
}

.single-blog-card.style5 .blog-content ul {
  margin-bottom: 12px;
}
.single-blog-card.style5 .blog-content ul li i {
  color: var(--paragraphColor);
}

.testimonials-area-five {
  background-color: #F5F3EF;
}
.testimonials-area-five .container-fluid {
  max-width: 1620px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
}
.testimonials-area-five .testimonials-content {
  padding-top: 20px;
}

.testimonials-content.style5 {
  margin-left: 40px;
}
.testimonials-content.style5 .testimonial-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--paragraphColor);
  border-color: var(--paragraphColor);
}

.single-review-item.style5 P {
  font-weight: 500;
}
.single-review-item.style5 .review-content .ratings i {
  color: #EBD164;
  font-size: 18px;
}

.award-area.style2 {
  background-color: #F5F3EF;
}
.award-area.style2 .award-left-content {
  margin-right: 0;
}
.award-area.style2 .award-left-content ul li {
  color: #B8B6B3;
  transition: var(--transition);
}
.award-area.style2 .award-left-content ul li:hover {
  color: var(--paragraphColor);
}

.about-four-area .default-btn {
  margin-bottom: 65px;
}

.about-four-image {
  position: relative;
}
.about-four-image .shape {
  position: absolute;
  right: 90px;
  top: 65px;
  animation: rotateme 20s linear infinite;
}
.about-four-image .funfact-content {
  text-align: center;
  position: relative;
  top: -40px;
}
.about-four-image .funfact-content .con {
  text-align: start;
  justify-content: center;
}
.about-four-image .funfact-content .con h2 {
  font-size: 100px;
}
.about-four-image .funfact-content .con span {
  max-width: 85px;
  display: inline-block;
  margin-left: 20px;
}

.about-four-right-content {
  position: relative;
  margin-left: -25px;
}
.about-four-right-content .con1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-four-right-content .con2 {
  padding-left: 20px;
  position: relative;
}
.about-four-right-content .con2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  background-color: #FF834C;
  height: 88%;
  width: 2px;
}
.about-four-right-content .quote-content {
  background-color: #F4F4F4;
  padding: 30px;
  margin-left: 120px;
  margin-top: 35px;
}
.about-four-right-content .quote-content .top-con {
  position: relative;
  margin-bottom: 20px;
}
.about-four-right-content .quote-content .top-con h4 {
  font-size: 24px;
  margin-bottom: 5px;
}
.about-four-right-content .quote-content .top-con .quote {
  position: absolute;
  right: 0;
  top: 0;
}
.about-four-right-content .quote-content p {
  font-size: 24px;
  font-weight: 600;
}
.about-four-right-content .quote-content .signature {
  text-align: right;
}

.about-five-area {
  background-color: #F5F3EF;
}

.about-five-image {
  position: relative;
  margin-right: -120px;
}
.about-five-image h2 {
  font-size: 48px;
  margin-bottom: 35px;
}

.about-five-right-content .con1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.6;
}
.about-five-right-content .con2 {
  margin-left: 120px;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}
.about-five-right-content .con2::before {
  position: absolute;
  content: "";
  width: 225px;
  height: 100%;
  background: linear-gradient(90deg, #EBE9EA 0%, #F5F3EF 69%);
  z-index: -1;
  left: 0;
  top: 0;
}
.about-five-right-content .bottom-content {
  margin-left: 220px;
}
.about-five-right-content .bottom-content .fun-item {
  margin-bottom: 40px;
}
.about-five-right-content .bottom-content .fun-item h2 {
  color: #BAA0A9;
  font-size: 100px;
  line-height: 1;
  margin-bottom: 10px;
}
.about-five-right-content .bottom-content .about-btn {
  height: 120px;
  width: 120px;
  line-height: 135px;
  display: inline-block;
  border: 1px solid var(--paragraphColor);
  border-radius: 100%;
  color: var(--paragraphColor);
  transition: var(--transition);
  position: relative;
  text-align: center;
}
.about-five-right-content .bottom-content .about-btn::before {
  position: absolute;
  content: "\ea70";
  font-family: "remixicon" !important;
  top: -24px;
  left: 50px;
}
.about-five-right-content .bottom-content .about-btn:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
}

.marketing-area.style6 .marketing-content.style2 {
  margin-top: 50px;
}
.marketing-area.style6 .marketing-content.style2 h2 {
  animation: marquee2 30s linear infinite;
}

.portfolio-area.style5 {
  background-color: #F5F3EF;
}
.portfolio-area.style5 .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
  max-width: 1920px;
}
.portfolio-area.style5 .section-title {
  max-width: 1095px;
}
.portfolio-area.style5 .project-btn {
  height: 120px;
  width: 120px;
  padding-top: 30px;
  display: inline-block;
  border: 1px solid var(--paragraphColor);
  border-radius: 100%;
  color: var(--paragraphColor);
  transition: var(--transition);
  position: relative;
  text-align: center;
  top: -15px;
}
.portfolio-area.style5 .project-btn i {
  margin-left: 6px;
}
.portfolio-area.style5 .project-btn:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}

.single-portfolio-item-style5 {
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-portfolio-item-style5 .projects-image {
  position: relative;
}
.single-portfolio-item-style5 .projects-image .btns {
  height: 75px;
  width: 75px;
  line-height: 75px;
  border: 1px solid var(--whiteColor);
  background-color: #161514;
  color: var(--whiteColor);
  display: inline-block;
  font-size: 22px;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  right: 30px;
  bottom: 30px;
  transition: var(--transition);
  opacity: 0;
}
.single-portfolio-item-style5 .projects-image .btns:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.single-portfolio-item-style5 .content {
  margin-top: 20px;
}
.single-portfolio-item-style5 .content p {
  margin-bottom: 5px;
}
.single-portfolio-item-style5 .content h3 {
  font-size: 20px;
}
.single-portfolio-item-style5 .content h3 a:hover {
  color: var(--primaryColor);
}
.single-portfolio-item-style5:hover .projects-image .btns {
  opacity: 1;
}

.single-portfolio-item-style6 {
  margin-bottom: 40px;
}
.single-portfolio-item-style6 .projects-image {
  position: relative;
}
.single-portfolio-item-style6 .projects-image .btns {
  height: 75px;
  width: 75px;
  line-height: 75px;
  border: 1px solid var(--whiteColor);
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  display: inline-block;
  font-size: 22px;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  right: 30px;
  bottom: 30px;
  transition: var(--transition);
  opacity: 0;
}
.single-portfolio-item-style6 .projects-image .btns:hover {
  background-color: var(--blackColor);
  border-color: var(--paragraphColor);
}
.single-portfolio-item-style6 .content {
  margin-top: 15px;
}
.single-portfolio-item-style6 .content h3 {
  font-size: 20px;
}
.single-portfolio-item-style6 .content h3 span {
  display: inline-block;
  margin-right: 3px;
}
.single-portfolio-item-style6 .content h3 a:hover {
  color: var(--primaryColor);
}
.single-portfolio-item-style6:hover .projects-image .btns {
  opacity: 1;
}
.single-portfolio-item-style6.style2 {
  text-align: end;
  margin-left: 100px;
}
.single-portfolio-item-style6.style3 {
  margin-right: 100px;
}

.services-five-area {
  background-color: #F5F3EF;
}

.service-five-left-content {
  position: relative;
}
.service-five-left-content .section-title {
  position: relative;
  margin-right: -95px;
  max-width: unset;
  margin-bottom: 100px;
}
.service-five-left-content .service-btn {
  height: 120px;
  width: 120px;
  padding-top: 30px;
  display: inline-block;
  border: 1px solid var(--paragraphColor);
  border-radius: 100%;
  color: var(--paragraphColor);
  transition: var(--transition);
  text-align: center;
  top: -15px;
  position: absolute;
  top: 220px;
  right: -75px;
}
.service-five-left-content .service-btn i {
  margin-left: 6px;
}
.service-five-left-content .service-btn:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}
.service-five-left-content .portfolio-tabs-two {
  padding-left: 0;
  margin-bottom: 0;
  display: block;
  border: unset;
  max-width: 425px;
}
.service-five-left-content .portfolio-tabs-two .nav-item {
  display: block;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #EBDFE3;
}
.service-five-left-content .portfolio-tabs-two .nav-item:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}
.service-five-left-content .portfolio-tabs-two .nav-item .nav-link {
  border: unset;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--headingFont);
  color: #B8B6B3;
  padding: 0;
  transition: var(--transition);
  background-color: transparent;
}
.service-five-left-content .portfolio-tabs-two .nav-item .nav-link span {
  display: inline-block;
  margin-right: 20px;
}
.service-five-left-content .portfolio-tabs-two .nav-item .nav-link:hover, .service-five-left-content .portfolio-tabs-two .nav-item .nav-link.active {
  color: var(--paragraphColor);
}

.service-five-right-content .image {
  margin-left: 115px;
}
.service-five-right-content .service-simple-card {
  background-color: var(--whiteColor);
  max-width: 648px;
  padding: 30px 50px;
  position: relative;
  margin-left: -100px;
  margin-top: -100px;
}
.service-five-right-content .service-simple-card h2 {
  font-size: 48px;
  color: #BAA0A9;
  margin-bottom: 6px;
}
.service-five-right-content .service-simple-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.service-five-right-content .service-simple-card h3 a {
  padding-bottom: 1px;
  border-bottom: 1px solid var(--paragraphColor);
}
.service-five-right-content .service-simple-card h3 a:hover {
  color: var(--primaryColor);
}
.service-five-right-content .service-simple-card span {
  display: block;
  margin-bottom: 12px;
}
.service-five-right-content .service-simple-card br {
  display: none;
}
.service-five-right-content .service-simple-card .btns {
  height: 75px;
  width: 75px;
  line-height: 75px;
  border: 1px solid var(--whiteColor);
  background-color: #161514;
  color: var(--whiteColor);
  display: inline-block;
  font-size: 22px;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  right: 30px;
  top: 30px;
  transition: var(--transition);
}
.service-five-right-content .service-simple-card .btns:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.reveal {
  position: relative;
  transition: 1.6s;
  overflow: hidden;
  left: -60px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.reveal.active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  left: 0;
}

.reveal2 {
  position: relative;
  transition: 1.5s;
  top: -60px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 5%, 0 4%);
          clip-path: polygon(0 0, 100% 0, 100% 5%, 0 4%);
  overflow: hidden;
}
.reveal2.active {
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.reveal3 {
  position: relative;
  transition: 1.6s;
  overflow: hidden;
  -webkit-clip-path: polygon(49% 0, 49% 0, 49% 100%, 49% 100%);
          clip-path: polygon(49% 0, 49% 0, 49% 100%, 49% 100%);
}
.reveal3.active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal4 {
  position: relative;
  transition: 1.6s;
  overflow: hidden;
  right: -60px;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.reveal4.active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  right: 0;
}/*# sourceMappingURL=affort-main-style.css.map */