/*-----------------------------------------------------------
    Theme Name: Torado
    Theme URI: 
    Description: Torado - IT Startup & SEO Marketing HTML Template
    Author: EnvyTheme
    Author URI: https://envytheme.com/
    Version: 1.0
-------------------------------------------------------------*/
/*--------------------------------
     =====Table Of Contents====

1.  General Styles 
2.  Back To Top Button CSS
3.  Preloader CSS
4.  Button & Link CSS
5.  Section Title & Overlay & Shape CSS
6.  Pagination CSS
7.  Breadcrumb CSS
8.  Hero CSS
----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --bodyFont: "Nunito", sans-serif;
  --primaryColor: #190B32;
  --secondaryColor: #FC4D4E;
  --optionalColor: #5406D9;
  --blackColor: #190B32;
  --paraColor: #666666;
  --whiteColor: #ffffff;
  --offwhiteColor: rgba(255,255,255,0.86);
  --footerColor: #F3F3F3;
  --fontSize: 16px;
  --transition: all ease .5s;
  --transitionTwo: all ease .9s;
}

/*---------------------------------
            General Styles 
-----------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

input, textarea, select {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 15px 12px;
  width: 100%;
  font-size: 16px;
}

input {
  height: 50px;
}

a {
  text-transform: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--paraColor);
}

a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
}

a:focus {
  outline: 0 solid;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

body {
  font-size: 16px;
  font-family: var(--bodyFont);
  color: var(--blackColor);
  font-weight: 400;
  line-height: 26px;
}

p {
  font-size: 16px;
  color: var(--paraColor);
  font-family: var(--bodyFont);
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.webp);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 15px) 50%;
}

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

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

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

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

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

.mb-40 {
  margin-bottom: 40px !important;
}

#message {
  padding: 0;
  margin: 0;
}

.help-block {
  color: #E31C25;
}

.list-style {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style li {
  list-style: none;
}

/*---------------------------------
     Back To Top Button CSS
-----------------------------------*/
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--secondaryColor);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\ea76";
  font-family: remixicon !important;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--secondaryColor);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--secondaryColor);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--whiteColor);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  text-align: center;
  margin: 5px;
  border-radius: 50%;
  border: 4px solid var(--optionalColor);
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform-style: preserve-3d;
  position: relative;
}

.loader-inner-1 {
  animation-delay: 0.2s;
  animation: change_first_circle 4s ease-in-out infinite;
}

.loader-inner-2 {
  animation-delay: 0.2s;
  animation: change_second_circle 4s ease-in-out infinite;
}

.loader-inner-3 {
  animation-delay: 0.2s;
  width: 40px;
  height: 40px;
  animation: change_last_circle 4s linear infinite;
}

@keyframes change_first_circle {
  50% {
    transform: rotateX(360deg) scale(0.8);
  }
}
@keyframes change_second_circle {
  50% {
    transform: rotateY(360deg) scale(0.8);
  }
}
@keyframes change_last_circle {
  50% {
    transform: rotateX(360deg) scale(0.8);
  }
}
/*---------------------------------
    Button, Link & Animation CSS
----------------------------------*/
.btn-one,
.btn-two,
.btn-three,
.btn-four,
.btn-five {
  display: inline-block;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border: none;
  padding: 14px 30px 13px;
  border-radius: 50px;
  border: 1px solid transparent;
  overflow: hidden;
  white-space: nowrap;
}
.btn-one i,
.btn-two i,
.btn-three i,
.btn-four i,
.btn-five i {
  position: relative;
  top: 5px;
  font-size: 20px;
  line-height: 0.8;
  margin-left: 12px;
  transition: var(--transition);
}
.btn-one:before,
.btn-two:before,
.btn-three:before,
.btn-four:before,
.btn-five:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: var(--transition);
}
.btn-one:after,
.btn-two:after,
.btn-three:after,
.btn-four:after,
.btn-five:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 100%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transform: translateY(-50%);
  transition: var(--transition);
}
.btn-one:hover:after, .btn-one:hover:before,
.btn-two:hover:after,
.btn-two:hover:before,
.btn-three:hover:after,
.btn-three:hover:before,
.btn-four:hover:after,
.btn-four:hover:before,
.btn-five:hover:after,
.btn-five:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.btn-one {
  color: var(--whiteColor);
}
.btn-one:before {
  background-color: var(--secondaryColor);
}
.btn-one:after {
  background-color: var(--optionalColor);
}

.btn-two {
  color: var(--blackColor);
  background: linear-gradient(95.05deg, #5406D9 0%, #FC4D4E 100%);
  padding: 10px 30px 11px;
}
.btn-two:before {
  background-color: var(--whiteColor);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50px;
  top: 1px;
  left: 1px;
}
.btn-two:after {
  background: linear-gradient(95.05deg, #5406D9 0%, #FC4D4E 100%);
}
.btn-two:hover {
  color: var(--whiteColor);
}

.btn-three {
  color: var(--whiteColor);
}
.btn-three i {
  top: 3px;
  font-size: 17px;
}
.btn-three:before {
  background: linear-gradient(95.05deg, #5406D9 0%, #FC4D4E 100%);
  border-radius: 50px;
}
.btn-three:after {
  background: linear-gradient(-95.05deg, #5406D9 0%, #FC4D4E 100%);
}
.btn-three:hover {
  color: var(--whiteColor);
}

.btn-four {
  color: var(--whiteColor);
}
.btn-four:before {
  background-color: var(--optionalColor);
}
.btn-four:after {
  background-color: var(--secondaryColor);
}

.btn-five {
  color: var(--whiteColor);
  border-color: var(--whiteColor);
}
.btn-five:before {
  background-color: transparent;
}
.btn-five:after {
  background-color: var(--secondaryColor);
}
.btn-five:hover {
  border-color: transparent;
}

.link-one,
.link-two {
  display: inline-block;
  position: relative;
  font-weight: 600;
  transition: var(--transition);
}
.link-one:after,
.link-two:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 0%;
  height: 1px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.link-one i,
.link-two i {
  position: relative;
  top: 5px;
  margin-left: 16px;
  font-size: 18px;
  transition: var(--transition);
}
.link-one:hover:after,
.link-two:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.link-one:hover i,
.link-two:hover i {
  margin-left: 10px;
}

.link-one {
  color: var(--secondaryColor);
}
.link-one:after {
  background-color: var(--secondaryColor);
}

.link-two {
  color: var(--optionalColor);
}
.link-two:after {
  background-color: var(--optionalColor);
  visibility: visible;
  opacity: 1;
  width: 100%;
  bottom: 5px;
}
.link-two:hover:after {
  width: 50%;
}

.rotate {
  animation: rotation 20s infinite linear;
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
  animation: moveVertical 3000ms infinite ease-in-out;
}

.animationFramesTwo {
  animation: animationFramesTwo 20000ms infinite ease-in-out;
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*--------------------------------------
    Section Title,Overlay & Shape CSS
----------------------------------------*/
.section-title,
.content-title {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
}

.section-bottom-text {
  margin-bottom: 0;
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.bg_primary {
  background-color: var(--bgColor);
}

.bg_secondary {
  background-color: #FAF7FE;
}

/*-------------------------------
        Pagination  CSS
-------------------------------*/
.page-nav {
  margin-top: 25px;
}
.page-nav li {
  margin: 0 4px;
  display: inline-block;
}
.page-nav li:first-child a i {
  left: -2px;
}
.page-nav li:last-child a i {
  right: -2px;
}
.page-nav li a {
  display: block;
  width: 51px;
  height: 48px;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid #E6E6E6;
  line-height: 46px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--blackColor);
  transition: var(--transition);
}
.page-nav li a i, .page-nav li a ion-icon {
  font-size: 12px;
  margin: 0 auto;
  position: relative;
  transition: var(--transition);
}
.page-nav li a.active, .page-nav li a:hover {
  color: var(--whiteColor);
  opacity: 1;
  background-color: var(--secondaryColor);
}
.page-nav li a.active i, .page-nav li a.active ion-icon, .page-nav li a:hover i, .page-nav li a:hover ion-icon {
  color: var(--whiteColor);
}

/*---------------------------------
       Breadcrumb CSS 
-----------------------------------*/
.br-1 {
  background-image: url(../img/breadcrumb/br-1.webp);
}

.br-2 {
  background-image: url(../img/breadcrumb/br-2.webp);
}

.br-3 {
  background-image: url(../img/breadcrumb/br-3.webp);
}

.br-4 {
  background-image: url(../img/breadcrumb/br-4.webp);
}

.br-5 {
  background-image: url(../img/breadcrumb/br-5.webp);
}

.br-6 {
  background-image: url(../img/breadcrumb/br-6.webp);
}

.br-7 {
  background-image: url(../img/breadcrumb/br-7.webp);
}

.br-8 {
  background-image: url(../img/breadcrumb/br-8.webp);
}

.br-9 {
  background-image: url(../img/breadcrumb/br-9.webp);
}

.br-10 {
  background-image: url(../img/breadcrumb/br-10.webp);
}

.br-11 {
  background-image: url(../img/breadcrumb/br-11.webp);
}

.breadcrumb-wrap {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.breadcrumb-wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(25, 11, 50, 0.75);
  z-index: -1;
}

.breadcrumb-content {
  text-align: center;
}
.breadcrumb-content h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  margin: 0 0 22px;
  color: var(--whiteColor);
}
.breadcrumb-content .breadcrumb-menu {
  text-align: center;
}
.breadcrumb-content .breadcrumb-menu li {
  display: inline-block;
  position: relative;
  color: var(--whiteColor);
  font-weight: 700;
  padding-right: 20px;
  margin-right: 5px;
}
.breadcrumb-content .breadcrumb-menu li:after {
  position: absolute;
  top: 0px;
  right: 0px;
  content: "\f12e";
  font-family: uicons-regular-rounded !important;
  font-size: 15px;
  font-weight: 400;
  color: var(--whiteColor);
}
.breadcrumb-content .breadcrumb-menu li:first-child {
  margin-left: 0;
}
.breadcrumb-content .breadcrumb-menu li:first-child a {
  padding-left: 0;
}
.breadcrumb-content .breadcrumb-menu li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumb-content .breadcrumb-menu li:last-child:after {
  display: none;
}
.breadcrumb-content .breadcrumb-menu li a {
  display: inline-block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: relative;
  opacity: 0.8;
  color: var(--whiteColor);
}
.breadcrumb-content .breadcrumb-menu li a:hover {
  opacity: 1;
}
.breadcrumb-content .breadcrumb-menu li:last-child a:after {
  display: none;
}

/*-------------------------------
    Hero Section CSS
-------------------------------*/
.hero-wrap {
  overflow: hidden;
}
.hero-wrap .hero-content h1 {
  font-size: 54px;
  line-height: 64px;
  font-weight: 900;
  margin-bottom: 15px;
}
.hero-wrap .hero-content p {
  margin-bottom: 35px;
}
.hero-wrap .hero-content .hero-btn a:first-child {
  margin-right: 25px;
}
.hero-wrap.hero-one {
  padding: 158px 0 0;
  position: relative;
  z-index: 1;
}
.hero-wrap.hero-one .hero-shape-one,
.hero-wrap.hero-one .hero-shape-two,
.hero-wrap.hero-one .hero-shape-three,
.hero-wrap.hero-one .hero-shape-four,
.hero-wrap.hero-one .hero-shape-five,
.hero-wrap.hero-one .hero-shape-six {
  position: absolute;
  z-index: -1;
}
.hero-wrap.hero-one .hero-shape-one {
  top: 0;
  right: 0;
}
.hero-wrap.hero-one .hero-shape-two {
  bottom: 0;
  left: 0;
}
.hero-wrap.hero-one .hero-shape-three {
  top: 0;
  left: 0;
}
.hero-wrap.hero-one .hero-shape-four {
  bottom: 120px;
  left: 32%;
}
.hero-wrap.hero-one .hero-shape-five {
  top: 200px;
  right: 12%;
}
.hero-wrap.hero-one .hero-shape-six {
  top: 275px;
  left: 56%;
}
.hero-wrap.hero-one .hero-content h1 span {
  background: linear-gradient(94.28deg, #5406D9 4.53%, #FC4D4E 95.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-wrap.hero-one .hero-content .client-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 40px 0 0;
}
.hero-wrap.hero-one .hero-content .client-list ul li {
  display: inline-block;
  margin-left: -22px;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 3px solid var(--whiteColor);
}
.hero-wrap.hero-one .hero-content .client-list ul li img {
  border-radius: 50%;
}
.hero-wrap.hero-one .hero-content .client-list ul li:first-child {
  margin-left: 0;
}
.hero-wrap.hero-one .hero-content .client-list p {
  font-weight: 500;
  margin: 0 0 0 25px;
}
.hero-wrap.hero-one .hero-content .client-list p span {
  color: var(--blackColor);
  font-weight: 700;
}
.hero-wrap.hero-two {
  background-image: url(../img/hero/hero-bg-2.webp);
  position: relative;
  z-index: 1;
  padding: 150px 0;
}
.hero-wrap.hero-two .hero-shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.35;
}
.hero-wrap.hero-two .hero-shape-two {
  position: absolute;
  bottom: 15%;
  left: 40%;
  z-index: 0;
}
.hero-wrap.hero-two:after {
  position: absolute;
  top: 0;
  left: -2%;
  content: "";
  width: 60%;
  height: 100%;
  background: rgba(25, 11, 50, 0.6);
  filter: blur(750px);
  z-index: -1;
}
.hero-wrap.hero-two .hero-content h1 {
  color: var(--whiteColor);
}
.hero-wrap.hero-two .hero-content p {
  color: #E7E7E7;
}
.hero-wrap.hero-two .hero-content .hero-btn a:first-child {
  margin-right: 25px;
}
.hero-wrap.hero-two .hero-content .hero-btn a.btn-one:hover {
  height: calc(100% + 1px);
  top: -1px;
}
.hero-wrap.hero-three {
  background-image: url(../img/hero/hero-bg-3.webp);
  position: relative;
  z-index: 1;
  padding: 150px 0;
}
.hero-wrap.hero-three:after {
  position: absolute;
  top: 0;
  left: -2%;
  content: "";
  width: 60%;
  height: 100%;
  background-color: rgba(25, 11, 50, 0.75);
  filter: blur(50px);
  z-index: -1;
}
.hero-wrap.hero-three .hero-content h1 {
  color: var(--whiteColor);
}
.hero-wrap.hero-three .hero-content p {
  color: #E7E7E7;
}
.hero-wrap.hero-three .hero-content .hero-btn a:first-child {
  margin-right: 25px;
}
.hero-wrap.hero-three .hero-content .hero-btn a.btn-one:hover {
  height: calc(100% + 1px);
  top: -1px;
}

/*-------------------------------
    About Section CSS
-------------------------------*/
.about-style-one .about-img-wrap {
  position: relative;
  z-index: 1;
}
.about-style-one .about-img-wrap .about-shape-one {
  position: absolute;
  top: -50px;
  left: 20px;
  z-index: -2;
}
.about-style-one .about-img-wrap .about-shape-two {
  position: absolute;
  top: 5%;
  right: 20px;
  z-index: -2;
  transform: translateY(-50%);
}
.about-style-one .about-img-wrap .about-img {
  display: block;
  margin: 0 auto;
}

.about-style-one .about-content .content-title,
.about-style-three .about-content .content-title {
  margin-bottom: 20px;
}
.about-style-one .about-content .content-feature-list,
.about-style-three .about-content .content-feature-list {
  -moz-columns: 2;
       columns: 2;
  margin: 28px 0 20px;
}
.about-style-one .about-content .content-feature-list li,
.about-style-three .about-content .content-feature-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.about-style-one .about-content .content-feature-list li span,
.about-style-three .about-content .content-feature-list li span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(84, 6, 217, 0.1);
}
.about-style-one .about-content .content-feature-list li span i,
.about-style-three .about-content .content-feature-list li span i {
  font-size: 23px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
  color: var(--secondaryColor);
}
.about-style-one .about-content .content-feature-list li h4,
.about-style-three .about-content .content-feature-list li h4 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 0 20px;
  width: calc(100% - 100px);
}
.about-style-one .about-content .content-feature-list li:nth-child(1) span i,
.about-style-three .about-content .content-feature-list li:nth-child(1) span i {
  color: var(--secondaryColor);
}
.about-style-one .about-content .content-feature-list li:nth-child(2) span i,
.about-style-three .about-content .content-feature-list li:nth-child(2) span i {
  color: var(--optionalColor);
}
.about-style-one .about-content .about-btn a:first-child,
.about-style-three .about-content .about-btn a:first-child {
  margin-right: 25px;
}

.about-style-two .about-img-wrap {
  position: relative;
  padding-left: 80px;
}
.about-style-two .about-img-wrap .about-img {
  display: block;
  margin-left: auto;
}
.about-style-two .about-img-wrap .promo-text {
  position: absolute;
  top: 30%;
  left: 0;
  background-color: var(--optionalColor);
  border-radius: 104.5px 104.5px 0px 104.5px;
  padding: 42px 60px;
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  max-width: 210px;
  text-align: center;
}
.about-style-two .about-img-wrap .promo-text span {
  color: var(--whiteColor);
  font-size: 50px;
  line-height: 46px;
  font-weight: 800;
  margin-bottom: 28px;
  display: block;
}
.about-style-two .about-content .content-title {
  margin-bottom: 20px;
}
.about-style-two .about-content .content-feature-list {
  -moz-columns: 2;
       columns: 2;
  margin: 28px 0 5px;
}
.about-style-two .about-content .content-feature-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.about-style-two .about-content .content-feature-list li span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: rgba(252, 77, 78, 0.05);
}
.about-style-two .about-content .content-feature-list li span i {
  font-size: 23px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
  color: var(--blackColor);
}
.about-style-two .about-content .content-feature-list li h4 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 0 20px;
  width: calc(100% - 80px);
}
.about-style-two .about-content .about-btn a:first-child {
  margin-right: 25px;
}

.about-style-three {
  overflow: hidden;
}
.about-style-three .about-img {
  border-radius: 10px 0 0 10px;
}
.about-style-three .about-img img {
  border-radius: 10px 0 0 10px;
}

/*-------------------------------
    Timeline Section CSS
-------------------------------*/
.timeline-wrap {
  background-color: rgba(252, 77, 78, 0.03);
  border-radius: 10px;
}
.timeline-wrap .timeline-wrapper {
  padding: 0 50px;
}
.timeline-wrap .timeline-wrapper .timeline-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 93px;
}
.timeline-wrap .timeline-wrapper .timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-wrap .timeline-wrapper .timeline-item:last-child:after {
  display: none;
}
.timeline-wrap .timeline-wrapper .timeline-item:after {
  position: absolute;
  top: 100px;
  left: 50%;
  content: "";
  width: 1px;
  height: calc(100% - 90px);
  border-left: 1px dashed #FC4D4E;
  background-color: transparent;
  transform: translateX(-50%);
  z-index: -1;
}
.timeline-wrap .timeline-wrapper .timeline-item .timeline-counter {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 10px solid var(--whiteColor);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  align-items: center;
  background-color: rgba(252, 77, 78, 0.1);
  z-index: 1;
}
.timeline-wrap .timeline-wrapper .timeline-item .timeline-counter:after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
}
.timeline-wrap .timeline-wrapper .timeline-item .timeline-img {
  width: 248px;
  height: 248px;
  border-radius: 50%;
}
.timeline-wrap .timeline-wrapper .timeline-item .timeline-img img {
  border-radius: 50%;
}
.timeline-wrap .timeline-wrapper .timeline-item .timeline-content {
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 25px 30px;
  max-width: 380px;
}
.timeline-wrap .timeline-wrapper .timeline-item .timeline-content h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 7800;
  margin: 0 0 17px;
}
.timeline-wrap .timeline-wrapper .timeline-item .timeline-content p {
  margin: 0;
}
.timeline-wrap .timeline-wrapper .timeline-item:nth-child(odd) .timeline-counter:after {
  border-top: 7px solid transparent;
  border-left: 35px solid var(--whiteColor);
  border-bottom: 20px solid transparent;
  right: -36px;
  transform: rotate(30deg);
}
.timeline-wrap .timeline-wrapper .timeline-item:nth-child(even) .timeline-counter:after {
  border-top: 7px solid transparent;
  border-right: 35px solid var(--whiteColor);
  border-bottom: 20px solid transparent;
  left: -36px;
  transform: rotate(-30deg);
}

/*-------------------------------
    Brand Section CSS
-------------------------------*/
.brand-area {
  position: relative;
  z-index: 1;
}
.brand-area:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  z-index: -1;
  background: #FAF7FE;
}

.brand-wrap {
  background-color: var(--blackColor);
  border-radius: 10px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}
.brand-wrap.brand-one {
  margin-top: -87px;
  position: relative;
  z-index: 1;
}
.brand-wrap h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 45px;
}
.brand-wrap .brand-logo img {
  display: block;
  margin: 0 auto;
  max-width: 95px;
}

/*-------------------------------
    Service Section CSS
-------------------------------*/
.service-card {
  background-color: rgba(84, 6, 217, 0.03);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.service-card .service-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
.service-card .service-title span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.service-card .service-title span i {
  font-size: 36px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.service-card .service-title h3 {
  width: calc(100% - 120px);
  margin: 0 0 0 20px;
  font-size: 22px;
  line-height: 30px;
}
.service-card .service-title h3 a {
  color: var(--blackColor);
}
.service-card .service-title h3 a:hover {
  color: var(--secondaryColor);
}
.service-card p {
  margin-bottom: 22px;
}
.service-card .link-one {
  opacity: 0.5;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card:hover .service-title span {
  background-color: var(--secondaryColor);
}
.service-card:hover .service-title span i {
  color: var(--whiteColor);
}
.service-card:hover .service-title h3 a {
  color: var(--secondaryColor);
}
.service-card:hover .link-one {
  opacity: 1;
}

.service-card-two,
.service-card-two,
.service-card-three {
  margin-bottom: 25px;
}
.service-card-two .service-img,
.service-card-two .service-img,
.service-card-three .service-img {
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.service-card-two .service-img img,
.service-card-two .service-img img,
.service-card-three .service-img img {
  border-radius: 10px;
  transition: var(--transition);
}
.service-card-two .service-info,
.service-card-two .service-info,
.service-card-three .service-info {
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  padding: 27px 25px 25px 30px;
}
.service-card-two .service-info .service-cat,
.service-card-two .service-info .service-cat,
.service-card-three .service-info .service-cat {
  color: var(--paraColor);
  font-weight: 600;
  display: block;
}
.service-card-two .service-info .service-cat:hover,
.service-card-two .service-info .service-cat:hover,
.service-card-three .service-info .service-cat:hover {
  color: var(--secondaryColor);
}
.service-card-two .service-info h3,
.service-card-two .service-info h3,
.service-card-three .service-info h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  margin: 14px 0 17px;
}
.service-card-two .service-info h3 a,
.service-card-two .service-info h3 a,
.service-card-three .service-info h3 a {
  color: var(--blackColor);
}
.service-card-two .service-info h3 a:hover,
.service-card-two .service-info h3 a:hover,
.service-card-three .service-info h3 a:hover {
  color: var(--secondaryColor);
}
.service-card-two .service-info p,
.service-card-two .service-info p,
.service-card-three .service-info p {
  margin: 0;
}
.service-card-two:hover .service-img img,
.service-card-two:hover .service-img img,
.service-card-three:hover .service-img img {
  transform: rotate(2deg) scale(1.05);
}

.service-card-three {
  margin-bottom: 25px;
}
.service-card-three .service-img {
  margin: 0;
}
.service-card-three .service-info {
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  padding: 27px 25px 25px 30px;
  margin: -48px 0 0 auto;
  width: calc(100% - 35px);
  border-radius: 10px 0 10px 10px;
  background-color: var(--whiteColor);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.service-card-three:hover .service-info {
  box-shadow: 0px 10px 40px rgba(25, 11, 50, 0.05);
}

.service-card-two:hover .service-info {
  box-shadow: 0px 10px 40px rgba(25, 11, 50, 0.05);
}

/*-----------------------------------
     Project Card CSS
------------------------------------*/
.project-card {
  position: relative;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 25px;
}
.project-card:before {
  position: absolute;
  top: 0;
  left: -100%;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(25, 11, 50, 0.3);
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.project-card img {
  border-radius: 10px;
}
.project-card .project-info {
  position: absolute;
  width: calc(100% - 60px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--whiteColor);
  padding: 25px 30px;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.project-card .project-info h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 0;
}
.project-card .project-info h3 a {
  color: var(--blackColor);
}
.project-card .project-info h3 a:hover {
  color: var(--secondaryColor);
}
.project-card:hover:before {
  visibility: visible;
  opacity: 1;
  left: 0;
}
.project-card:hover .project-info {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

.project-slider.owl-carousel .owl-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}
.project-slider.owl-carousel .owl-nav button.owl-prev {
  margin-right: 15px;
}
.project-slider.owl-carousel .owl-nav button.owl-prev, .project-slider.owl-carousel .owl-nav button.owl-next {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(25, 11, 50, 0.1);
  transition: var(--transition);
}
.project-slider.owl-carousel .owl-nav button.owl-prev i, .project-slider.owl-carousel .owl-nav button.owl-next i {
  color: var(--blackColor);
  display: block;
  margin: 0 auto;
}
.project-slider.owl-carousel .owl-nav button.owl-prev:hover, .project-slider.owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--secondaryColor);
}
.project-slider.owl-carousel .owl-nav button.owl-prev:hover i, .project-slider.owl-carousel .owl-nav button.owl-next:hover i {
  color: var(--whiteColor);
}

/*-----------------------------------
    Service & Project Details CSS
------------------------------------*/
.service-details-wrap .single-service-img {
  border-radius: 10px;
  display: block;
  margin-bottom: 30px;
}
.service-details-wrap .content-feature-list {
  margin-bottom: 30px;
}
.service-details-wrap .soln-item {
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  padding: 27px 30px;
  margin-bottom: 30px;
}
.service-details-wrap .soln-item span {
  display: block;
  font-weight: 600;
  color: var(--paraColor);
}
.service-details-wrap .soln-item h6 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  margin: 12px 0 15px;
}
.service-details-wrap .soln-item p {
  margin: 0;
}

/*-------------------------------
    Testimonial Section CSS
-------------------------------*/
.testimonial-card-one {
  background: rgba(84, 6, 217, 0.03);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}
.testimonial-card-one .client-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 30px 30px 20px;
  margin-bottom: 30px;
}
.testimonial-card-one .client-logo-wrap .client-logo {
  width: 65%;
}
.testimonial-card-one .client-logo-wrap .client-logo img {
  max-width: 100px;
  max-height: 30px;
}
.testimonial-card-one .client-logo-wrap .ratings {
  width: 35%;
  text-align: right;
  line-height: 1;
}
.testimonial-card-one .client-logo-wrap .ratings li {
  display: inline-block;
}
.testimonial-card-one .client-logo-wrap .ratings li i {
  color: #FFB545;
  font-size: 20px;
  line-height: 0.8;
}
.testimonial-card-one .client-logo-wrap .client-quote {
  width: 100%;
  border-top: 1px solid rgba(84, 6, 217, 0.08);
  margin: 22px 0 0;
  padding-top: 23px;
}
.testimonial-card-one .client-info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.testimonial-card-one .client-info-wrap .client-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
}
.testimonial-card-one .client-info-wrap .client-img img {
  border-radius: 50%;
}
.testimonial-card-one .client-info-wrap .client-info {
  width: calc(100% - 177px);
  margin-left: 20px;
}
.testimonial-card-one .client-info-wrap .client-info h6 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 5px;
}
.testimonial-card-one .client-info-wrap .quote-icon {
  width: 75px;
}

.testimonial-card-two {
  border: 1px solid rgba(84, 6, 217, 0.05);
  padding: 30px;
  border-radius: 10px;
}
.testimonial-card-two .client-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: var(--whiteColor);
  margin-bottom: 38px;
}
.testimonial-card-two .client-logo-wrap .client-logo {
  width: 65%;
}
.testimonial-card-two .client-logo-wrap .client-logo img {
  max-width: 100px;
  max-height: 30px;
}
.testimonial-card-two .client-logo-wrap .ratings {
  width: 35%;
  text-align: right;
  line-height: 1;
}
.testimonial-card-two .client-logo-wrap .ratings li {
  display: inline-block;
}
.testimonial-card-two .client-logo-wrap .ratings li i {
  color: #FFB545;
  font-size: 20px;
  line-height: 0.8;
}
.testimonial-card-two .client-logo-wrap .client-quote {
  width: 100%;
  border-top: 1px solid rgba(84, 6, 217, 0.08);
  margin: 22px 0 0;
  padding-top: 23px;
}
.testimonial-card-two .client-info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.testimonial-card-two .client-info-wrap .client-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
}
.testimonial-card-two .client-info-wrap .client-img img {
  border-radius: 50%;
}
.testimonial-card-two .client-info-wrap .client-info {
  width: calc(100% - 140px);
  margin-left: 20px;
}
.testimonial-card-two .client-info-wrap .client-info h6 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 5px;
}
.testimonial-card-two .client-info-wrap .client-info span {
  color: var(--paraColor);
}
.testimonial-card-two .client-info-wrap .quote-icon {
  width: 38px;
}

.testimonial-slider .testimonial-card-one,
.testimonial-slider .testimonial-card-two,
.testimonial-slider-two .testimonial-card-one,
.testimonial-slider-two .testimonial-card-two {
  margin-bottom: 0;
}

/*-------------------------------
    Price Section CSS
-------------------------------*/
.pricing-card {
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.pricing-card:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background-color: rgba(252, 77, 78, 0.03);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card:hover:after {
  visibility: visible;
  width: 100%;
  opacity: 1;
}
.pricing-card:hover .btn-two {
  background: transparent;
  color: var(--whiteColor);
}
.pricing-card:hover .btn-two:before {
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
}
.pricing-card:hover .btn-two:after {
  visibility: visible;
  opacity: 1;
  height: 100%;
  background: var(--secondaryColor);
}
.pricing-card .pricing-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(252, 77, 78, 0.15);
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.pricing-card .pricing-header .pricing-header-left h6 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  margin: 0 0 20px;
}
.pricing-card .pricing-header .pricing-header-left h2 {
  margin: 0;
  font-size: 40px;
  line-height: 36px;
}
.pricing-card .pricing-header .pricing-header-left h2 span {
  font-size: 16px;
  color: var(--paraColor);
  margin-left: 5px;
  font-weight: 400;
}
.pricing-card .pricing-header .pricing-header-icon {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background-color: rgba(84, 6, 217, 0.05);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
.pricing-card .pricing-header .pricing-header-icon i {
  color: var(--blackColor);
  line-height: 0.8;
  font-size: 26px;
  display: block;
  margin: 0 auto;
}
.pricing-card .pricing-features {
  margin-bottom: 35px;
}
.pricing-card .pricing-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--paraColor);
}
.pricing-card .pricing-features li:last-child {
  margin-bottom: 0;
}
.pricing-card .pricing-features li i {
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 18px;
}
.pricing-card .pricing-features li.checked i {
  color: var(--optionalColor);
}
.pricing-card .pricing-features li.unchecked i {
  color: var(--secondaryColor);
}
.pricing-card .btn-two {
  background-color: transparent;
  padding: 12px 30px 13px;
}

/*-------------------------------
    Why Choose Us Section CSS
-------------------------------*/
.wh-wrap-one .accordion-item,
.wh-wrap-two .accordion-item {
  margin: 0 0 30px;
  background: transparent;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.wh-wrap-one .accordion-item:not(:first-of-type),
.wh-wrap-two .accordion-item:not(:first-of-type) {
  border-top: none;
}
.wh-wrap-one .accordion-item .wh-counter,
.wh-wrap-two .accordion-item .wh-counter {
  position: absolute;
  top: 55px;
  right: 40px;
  transform: translateY(-50%);
  font-size: 50px;
  line-height: 50px;
  -webkit-text-stroke: 1px rgba(252, 77, 78, 0.15);
  text-shadow: none;
  color: transparent;
  font-weight: 800;
}
.wh-wrap-one .accordion-item .accordion-header,
.wh-wrap-two .accordion-item .accordion-header {
  border-radius: 10px;
  padding: 45px 45px 40px 40px;
  border-radius: 10px;
  border: 1px solid rgba(84, 6, 217, 0.05);
}
.wh-wrap-one .accordion-item .accordion-header h6,
.wh-wrap-two .accordion-item .accordion-header h6 {
  position: relative;
  padding-left: 32px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
}
.wh-wrap-one .accordion-item .accordion-header h6 i,
.wh-wrap-two .accordion-item .accordion-header h6 i {
  display: inline-block;
  position: absolute;
  right: auto;
  left: 0px;
  top: 3px;
}
.wh-wrap-one .accordion-item .accordion-header[aria-expanded=true],
.wh-wrap-two .accordion-item .accordion-header[aria-expanded=true] {
  color: var(--secondaryColor);
  box-shadow: 0px 10px 40px rgba(25, 11, 50, 0.05);
  border-color: transparent;
}
.wh-wrap-one .accordion-item .accordion-header[aria-expanded=true] .wh-counter,
.wh-wrap-two .accordion-item .accordion-header[aria-expanded=true] .wh-counter {
  visibility: hidden;
  opacity: 0;
}
.wh-wrap-one .accordion-item .accordion-header[aria-expanded=true] i,
.wh-wrap-two .accordion-item .accordion-header[aria-expanded=true] i {
  color: var(--secondaryColor);
}
.wh-wrap-one .accordion-item .accordion-header.collapsed i,
.wh-wrap-two .accordion-item .accordion-header.collapsed i {
  color: var(--blackColor);
}
.wh-wrap-one .accordion-item .accordion-body,
.wh-wrap-two .accordion-item .accordion-body {
  border-radius: 0;
  padding: 14px 0 0;
  border: none;
}

.wh-wrap-one .wh-img-wrap img {
  width: 100%;
}

.wh-wrap-two .wh-img-wrap {
  border-radius: 0 10px 10px 0;
}
.wh-wrap-two .wh-img-wrap img {
  border-radius: 0 10px 10px 0;
  width: 100%;
}

/*-------------------------------
    Blog Section CSS
-------------------------------*/
.blog-card-one .blog-img,
.blog-card-two .blog-img {
  border-radius: 10px;
  overflow: hidden;
}
.blog-card-one .blog-img img,
.blog-card-two .blog-img img {
  border-radius: 10px;
  transition: var(--transition);
}
.blog-card-one .blog-info,
.blog-card-two .blog-info {
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  padding: 25px;
}
.blog-card-one:hover .blog-img img,
.blog-card-two:hover .blog-img img {
  transform: scale(1.05) rotate(1.2deg);
}
.blog-card-one:hover .blog-info .link-one,
.blog-card-two:hover .blog-info .link-one {
  opacity: 1;
}

.blog-card-one,
.blog-card-two,
.blog-card-three {
  margin-bottom: 25px;
}
.blog-card-one .blog-info h3,
.blog-card-two .blog-info h3,
.blog-card-three .blog-info h3 {
  font-size: 22px;
  line-height: 35px;
}
.blog-card-one .blog-info h3 a,
.blog-card-two .blog-info h3 a,
.blog-card-three .blog-info h3 a {
  color: var(--blackColor);
}
.blog-card-one .blog-info h3 a:hover,
.blog-card-two .blog-info h3 a:hover,
.blog-card-three .blog-info h3 a:hover {
  color: var(--secondaryColor);
}
.blog-card-one .blog-info .link-one,
.blog-card-two .blog-info .link-one,
.blog-card-three .blog-info .link-one {
  opacity: 0.5;
}

.blog-card-one .blog-img {
  margin-bottom: 20px;
}
.blog-card-one .blog-info h3 {
  margin: 10px 0 20px;
}

.blog-card-two .blog-img,
.blog-card-three .blog-img {
  position: relative;
  border-radius: 10px;
}
.blog-card-two .blog-img img,
.blog-card-three .blog-img img {
  border-radius: 10px;
}
.blog-card-two .blog-img .blog-date,
.blog-card-three .blog-img .blog-date {
  position: absolute;
  background-color: var(--secondaryColor);
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--whiteColor);
  display: inline-block;
}
.blog-card-two .blog-img .blog-date span,
.blog-card-three .blog-img .blog-date span {
  font-weight: 600;
}
.blog-card-two .blog-info,
.blog-card-three .blog-info {
  background-color: var(--whiteColor);
  position: relative;
  z-index: 1;
}
.blog-card-two .blog-info h3,
.blog-card-three .blog-info h3 {
  margin: 0 0 20px;
}

.blog-card-two .blog-img .blog-date {
  top: 30px;
  left: 30px;
}
.blog-card-two .blog-info {
  margin: -30px 0 0 0;
  width: calc(100% - 40px);
  border-radius: 0 10px 10px 10px;
}

.blog-card-three .blog-img .blog-date {
  top: 20px;
  left: 20px;
}
.blog-card-three .blog-info {
  margin: -30px 0 0 20px;
  width: calc(100% - 40px);
  border-radius: 10px;
  border: 1px solid rgba(84, 6, 217, 0.05);
}

/*-------------------------------
    Counter Section CSS
-------------------------------*/
.counter-wrap-one {
  border-radius: 10px;
  background-color: rgba(84, 6, 217, 0.03);
}
.counter-wrap-one .counter-card-wrap {
  display: flex;
  flex-wrap: wrap;
}
.counter-wrap-one .counter-card-wrap .counter-card {
  width: 25%;
}
.counter-wrap-one .counter-card-wrap .counter-card .counter-icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 25px;
  background-color: var(--whiteColor);
}
.counter-wrap-one .counter-card-wrap .counter-card .counter-icon i {
  font-size: 40px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
}
.counter-wrap-one .counter-card-wrap .counter-card .counter-num {
  font-size: 50px;
  line-height: 50px;
  font-weight: 800;
  margin-bottom: 0;
}
.counter-wrap-one .counter-card-wrap .counter-card .counter-num .target {
  position: relative;
  top: 3px;
}
.counter-wrap-one .counter-card-wrap .counter-card:nth-child(2) .counter-icon i {
  color: var(--secondaryColor);
}
.counter-wrap-one .counter-card-wrap .counter-card:nth-child(4) .counter-icon i {
  color: var(--optionalColor);
}
.counter-wrap-one .counter-card-wrap .counter-card:nth-child(odd) .counter-num {
  color: var(--secondaryColor);
}
.counter-wrap-one .counter-card-wrap .counter-card:nth-child(even) .counter-num {
  color: var(--blackColor);
}
.counter-wrap-one .counter-card-wrap .counter-card p {
  margin-bottom: 0;
}

.counter-wrap-one .counter-card-wrap,
.counter-wrap-two .counter-card-wrap {
  display: flex;
  flex-wrap: wrap;
}
.counter-wrap-one .counter-card-wrap .counter-card,
.counter-wrap-two .counter-card-wrap .counter-card {
  text-align: center;
  margin-bottom: 22px;
}

.counter-wrap-two {
  position: relative;
  z-index: 1;
}
.counter-wrap-two:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 66%;
  z-index: -1;
  background: rgba(84, 6, 217, 0.03);
}
.counter-wrap-two .counter-card-wrap {
  margin: 0 -12px;
}
.counter-wrap-two .counter-card-wrap .counter-card {
  width: calc(25% - 24px);
  margin: 0 12px 22px;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  transition: var(--transition);
}
.counter-wrap-two .counter-card-wrap .counter-card:hover:after {
  box-shadow: 0px 10px 40px rgba(25, 11, 50, 0.05);
}
.counter-wrap-two .counter-card-wrap .counter-card:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  content: "";
  background-color: var(--whiteColor);
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  z-index: -1;
  transition: var(--transition);
}
.counter-wrap-two .counter-card-wrap .counter-card .counter-icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 25px;
  background-color: var(--whiteColor);
  border: 1px solid rgba(84, 6, 217, 0.05);
}
.counter-wrap-two .counter-card-wrap .counter-card .counter-icon i {
  font-size: 40px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
}
.counter-wrap-two .counter-card-wrap .counter-card .counter-num {
  font-size: 50px;
  line-height: 50px;
  font-weight: 800;
  margin-bottom: 0;
}
.counter-wrap-two .counter-card-wrap .counter-card .counter-num .target {
  position: relative;
  top: 3px;
}

.counter-wrap-one .counter-card:nth-child(2) .counter-icon i,
.counter-wrap-two .counter-card:nth-child(2) .counter-icon i,
.counter-wrap-three .counter-card:nth-child(2) .counter-icon i {
  color: var(--secondaryColor);
}
.counter-wrap-one .counter-card:nth-child(4) .counter-icon i,
.counter-wrap-two .counter-card:nth-child(4) .counter-icon i,
.counter-wrap-three .counter-card:nth-child(4) .counter-icon i {
  color: var(--optionalColor);
}
.counter-wrap-one .counter-card:nth-child(odd) .counter-num,
.counter-wrap-two .counter-card:nth-child(odd) .counter-num,
.counter-wrap-three .counter-card:nth-child(odd) .counter-num {
  color: var(--secondaryColor);
}
.counter-wrap-one .counter-card:nth-child(even) .counter-num,
.counter-wrap-two .counter-card:nth-child(even) .counter-num,
.counter-wrap-three .counter-card:nth-child(even) .counter-num {
  color: var(--blackColor);
}
.counter-wrap-one .counter-card p,
.counter-wrap-two .counter-card p,
.counter-wrap-three .counter-card p {
  margin-bottom: 0;
}

.counter-wrap-three {
  background-color: rgba(84, 6, 217, 0.03);
  border-radius: 10px;
}
.counter-wrap-three .counter-card-wrap {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}
.counter-wrap-three .counter-card-wrap .counter-card {
  width: calc(25% - 24px);
  margin: 0 12px 22px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--whiteColor);
  padding: 20px;
  border-radius: 10px;
}
.counter-wrap-three .counter-card-wrap .counter-card .counter-icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 90px;
  height: 87px;
  border-radius: 10px;
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px rgba(25, 11, 50, 0.05);
  border: 1px solid transparent;
  transition: var(--transition);
}
.counter-wrap-three .counter-card-wrap .counter-card .counter-icon i {
  font-size: 38px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
}
.counter-wrap-three .counter-card-wrap .counter-card .counter-info {
  width: calc(100% - 110px);
  margin-left: 20px;
}
.counter-wrap-three .counter-card-wrap .counter-card .counter-info .counter-num {
  font-size: 30px;
  line-height: 32px;
  font-weight: 800;
  margin-bottom: 3px;
}
.counter-wrap-three .counter-card-wrap .counter-card .counter-info .counter-num .target {
  position: relative;
  top: 3px;
}
.counter-wrap-three .counter-card-wrap .counter-card .counter-info p {
  margin-bottom: 0;
}
.counter-wrap-three .counter-card-wrap .counter-card:hover .counter-icon {
  border-color: rgba(84, 6, 217, 0.1);
}

/*-------------------------------
    Team Section CSS
-------------------------------*/
.team-card {
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  padding: 50px 0 0;
  text-align: center;
  margin-bottom: 25px;
}
.team-card .team-member-img {
  width: 212px;
  height: 212px;
  border-radius: 50%;
  margin: 0 auto 35px;
}
.team-card .team-member-img img {
  border-radius: 50%;
}
.team-card h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  margin: 0 0 6px;
}
.team-card span {
  color: var(--paraColor);
}
.team-card .social-profile {
  width: 100%;
  margin-top: 32px;
  border-top: 1px solid;
  transition: var(--transition);
  padding: 10px 15px;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid rgba(84, 6, 217, 0.05);
}
.team-card .social-profile li {
  display: inline-block;
}
.team-card .social-profile li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}
.team-card .social-profile li a i {
  font-size: 15px;
  line-height: 1;
  display: block;
  margin: 0 auto;
  color: #AFAFAF;
  transition: var(--transition);
}
.team-card .social-profile li a:hover {
  background-color: var(--whiteColor);
}
.team-card .social-profile li a:hover i {
  color: var(--secondaryColor);
}
.team-card:hover {
  background-color: #FEFEFE;
  box-shadow: 0px -10px 40px 5px rgba(25, 11, 50, 0.05);
}
.team-card:hover .social-profile {
  background-color: var(--secondaryColor);
}
.team-card:hover .social-profile li a i {
  color: var(--whiteColor);
}
.team-card:hover .social-profile li a:hover i {
  color: var(--secondaryColor);
}

/*-------------------------------
    Simple Section CSS
-------------------------------*/
.simple-style-one .simple-img-wrap {
  position: relative;
  z-index: 1;
}
.simple-style-one .simple-img-wrap .simple-img {
  display: block;
  margin: 0 auto;
}
.simple-style-one .simple-img-wrap .simple-shape {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: -1;
}
.simple-style-one .simple-content .content-title {
  margin-bottom: 22px;
}
.simple-style-one .simple-content h6 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin: 30px 0 30px;
}

.simple-style-two {
  border-bottom: 1px solid rgba(84, 6, 217, 0.1);
}
.simple-style-two .content-title {
  margin-bottom: 25px;
}
.simple-style-two p {
  margin-bottom: 30px;
}
.simple-style-two .simple-btn a:first-child {
  margin-right: 25px;
}
.simple-style-two .simple-img img {
  display: block;
  margin: 0 auto;
}

.progressbar-wrap .progress-bar {
  margin: 0 0 25px;
  overflow: hidden;
  background: transparent;
}
.progressbar-wrap .progress-bar:last-child {
  margin-bottom: 0;
}
.progressbar-wrap .progress-bar .progress-content-outter {
  height: 6px;
  background-color: #EBEBEB;
  border-radius: 10px;
}
.progressbar-wrap .progress-bar .progress-content-outter .progress-content {
  height: 6px;
  background: linear-gradient(90deg, #FC4D4E 0%, #5406D9 100%);
  width: 0%;
  border-radius: 10px;
}
.progressbar-wrap .progress-bar .progress-title-holder {
  position: relative;
  margin: 0 0 13px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.progressbar-wrap .progress-bar .progress-title-holder .progress-title {
  z-index: 100;
  font-weight: 600;
  margin: 0;
}
.progressbar-wrap .progress-bar .progress-title-holder .progress-number-wrapper {
  width: 100%;
  z-index: 10;
}
.progressbar-wrap .progress-bar .progress-title-holder .progress-number-wrapper .progress-number-mark {
  margin-bottom: 0;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  transform: translateX(-100%);
}
.progressbar-wrap .progress-bar .progress-title-holder .progress-number-wrapper .progress-number-mark .percent {
  font-weight: 600;
  position: relative;
}

/*-------------------------------
    Newsletter Section CSS
-------------------------------*/
.newsletter-area {
  position: relative;
  z-index: 1;
}
.newsletter-area:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  z-index: -1;
  background: linear-gradient(94.37deg, rgba(84, 6, 217, 0.05) 0%, rgba(252, 77, 78, 0.05) 100%);
}

.newsletter-wrap {
  background-color: var(--optionalColor);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.newsletter-wrap .newsletter-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.newsletter-wrap .section-title {
  margin-bottom: 40px;
}
.newsletter-wrap .newsletter-form {
  position: relative;
}
.newsletter-wrap .newsletter-form input {
  width: 100%;
  height: 56px;
  padding: 10px 208px 10px 25px;
  border-radius: 50px;
  border: none;
  background-color: var(--whiteColor);
}
.newsletter-wrap .newsletter-form input::-moz-placeholder {
  opacity: 0.8;
}
.newsletter-wrap .newsletter-form input::placeholder {
  opacity: 0.8;
}
.newsletter-wrap .newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(94.04deg, #5406D9 0%, #FC4D4E 100%);
  color: var(--whiteColor);
  font-weight: 600;
  padding: 10px 34px 13px;
  border-radius: 50px;
  border: none;
  overflow: hidden;
  z-index: 10;
}
.newsletter-wrap .newsletter-form button:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(94.04deg, #FC4D4E 0%, #5406D9 100%);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.newsletter-wrap .newsletter-form button i {
  color: var(--whiteColor);
  line-height: 0.8;
  position: relative;
  top: 5px;
  font-size: 20px;
  margin-left: 12px;
}
.newsletter-wrap .newsletter-form button:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

/*-------------------------------
    Contact Section CSS
-------------------------------*/
.comp-map {
  width: 100%;
  height: 550px;
}
.comp-map iframe {
  width: 100%;
  height: 100%;
}

.contact-us-wrap {
  border-radius: 10px;
}
.contact-us-wrap .contact-form {
  padding: 45px 50px;
  box-shadow: 0px 10px 40px rgba(25, 11, 50, 0.05);
}
.contact-us-wrap .contact-form .section-title {
  margin-bottom: 40px;
}
.contact-us-wrap .contact-form .form-group {
  margin-bottom: 25px;
}
.contact-us-wrap .contact-form .form-group label {
  color: var(--blackColor);
  margin-bottom: 7px;
  font-weight: 500;
}
.contact-us-wrap .contact-form .form-group input, .contact-us-wrap .contact-form .form-group textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(25, 11, 50, 0.1);
  padding: 15px 20px;
  background-color: transparent;
}
.contact-us-wrap .contact-form .form-group input {
  height: 55px;
}
.contact-us-wrap .contact-form .form-group textarea {
  height: 155px;
  resize: none;
  padding: 15px 25px !important;
}
.contact-us-wrap .contact-item-wrap {
  padding: 50px;
  background-color: var(--primaryColor);
  border-radius: 0 10px 10px 0;
  height: 100%;
}
.contact-us-wrap .contact-item-wrap .contact-item {
  margin-bottom: 65px;
}
.contact-us-wrap .contact-item-wrap .contact-item:last-child {
  margin-bottom: 0;
}
.contact-us-wrap .contact-item-wrap .contact-item h3 {
  color: var(--whiteColor);
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
}
.contact-us-wrap .contact-item-wrap .contact-item a, .contact-us-wrap .contact-item-wrap .contact-item p {
  display: block;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.contact-us-wrap .contact-item-wrap .contact-item p a {
  display: inline-block;
  color: var(--whiteColor);
}

.checkbox {
  display: block;
}
.checkbox.form-check {
  padding-left: 0;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: var(--paraColor);
  padding-left: 29px;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 3px;
}
.checkbox.style2 label:before {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

.checkbox input:checked + label:before {
  border-color: var(--secondaryColor);
}

.checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 9px;
  height: 9px;
  border: none;
  background: var(--secondaryColor);
}

.checkbox.style2 input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--secondaryColor);
}

/*----------------------------
    FAQ  & Error CSS
------------------------------*/
.accordion-item {
  border: 1px solid rgba(84, 6, 217, 0.08);
  margin: 0 0 30px;
  background: transparent;
  border-radius: 5px;
}
.accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(84, 6, 217, 0.08);
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item .accordion-header {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}
.accordion-item .accordion-header .accordion-button {
  border-radius: 5px 5px 0 0;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  border-radius: 5px;
  color: var(--blackColor);
  text-align: left;
  align-items: center;
  border: none;
  background-color: transparent;
  padding: 17px 45px 17px 20px;
  transition: var(--transition);
}
.accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) span i {
  color: var(--secondaryColor);
}
.accordion-item .accordion-header .accordion-button.collapsed span i {
  color: var(--blackColor);
}
.accordion-item .accordion-header .accordion-button span {
  display: inline-block;
  min-width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  text-align: center;
}
.accordion-item .accordion-header .accordion-button span i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--blackColor);
  display: block;
  margin: 0 auto;
}
.accordion-item .accordion-header .accordion-button span i.minus {
  visibility: hidden;
  opacity: 0;
}
.accordion-item .accordion-body {
  border-radius: 0 0 5px 5px;
  padding: 0 20px 20px;
  border: none;
}
.accordion-item .accordion-body p {
  margin: 0 0 10px;
}
.accordion-item .accordion-body p:last-child {
  margin: 0;
}

.accordion-collapse {
  border: none;
}

.accordion-button:not(.collapsed) span i.plus {
  visibility: hidden;
  opacity: 0;
}

.accordion-button:not(.collapsed) span i.minus {
  visibility: visible !important;
  opacity: 1 !important;
}

.terms-wrap .single-terms {
  margin-bottom: 30px;
}
.terms-wrap .single-terms:last-child {
  margin-bottom: 0;
}
.terms-wrap .single-terms P:last-child {
  margin-bottom: 0;
}

.error-content {
  text-align: center;
}
.error-content img {
  display: block;
  margin: 0 auto 30px;
  max-width: 600px;
}
.error-content p {
  margin: 0 auto 20px;
  max-width: 520px;
}

.error-content {
  text-align: center;
}
.error-content img {
  display: block;
  margin: 0 auto 30px;
  max-width: 450px;
}
.error-content h2 {
  margin: 0 0 20px;
}
.error-content p {
  margin: 0 auto 25px;
  max-width: 520px;
}

/*---------------------------
        Sidebar CSS
 ---------------------------*/
.sidebar .sidebar-widget {
  padding: 20px;
  background-color: rgba(84, 6, 217, 0.02);
  border-radius: 10px;
}
.sidebar .sidebar-widget {
  margin: 0 0 25px;
  position: relative;
  z-index: 1;
}
.sidebar .sidebar-widget .sidebar-widget-title {
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 24px;
  position: relative;
}
.sidebar .sidebar-widget:last-child {
  margin: 0;
}

/*-------------------------------
       Search Box Widget CSS
-------------------------------*/
.search-box-widget {
  position: relative;
}
.search-box-widget input {
  width: 100%;
  height: 60px;
  background: var(--whiteColor);
  border: 1px solid rgba(84, 6, 217, 0.05);
  color: var(--paraColor);
  padding: 10px 60px 10px 20px;
  border-radius: 10px;
}
.search-box-widget input::-moz-placeholder {
  opacity: 1;
}
.search-box-widget input::placeholder {
  opacity: 1;
}
.search-box-widget input:focus {
  border-color: rgba(84, 6, 217, 0.1);
}
.search-box-widget button {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 10px;
  background-color: var(--optionalColor);
  padding: 15px 20px;
  border: none;
  height: 100%;
}
.search-box-widget button i {
  color: var(--whiteColor);
  font-size: 18px;
  line-height: 0.8;
  position: relative;
  top: 3px;
}

/*-------------------------------
     Category Widget CSS
-------------------------------*/
.category-box li {
  display: block;
  margin-bottom: 15px;
}
.category-box li:last-child {
  margin: 0;
}
.category-box li a {
  display: block;
  padding: 14px 25px;
  color: var(--blackColor);
  font-weight: 600;
  border-radius: 10px;
  background-color: var(--whiteColor);
  border: 1px solid rgba(84, 6, 217, 0.05);
  transition: var(--transition);
}
.category-box li a i {
  font-size: 20px;
  line-height: 0.8;
  position: relative;
  top: 5px;
  margin-left: 15px;
  visibility: hidden;
  opacity: 0;
  color: var(--whiteColor);
  transition: var(--transition);
}
.category-box li a:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.category-box li a:hover i {
  visibility: visible;
  opacity: 1;
}

/*-------------------------------
     Project Widget CSS
-------------------------------*/
.project-widget li {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.project-widget li p {
  width: 35%;
  margin: 0;
  color: var(--blackColor);
  font-weight: 600;
}
.project-widget li span {
  width: 65%;
  text-align: right;
  color: var(--paraColor);
}
.project-widget li:last-child {
  margin-bottom: 0;
}

/*-------------------------------
     Contact Widget CSS
-------------------------------*/
.contact-widget p {
  margin-bottom: 22px;
}
.contact-widget .contact-info li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}
.contact-widget .contact-info li:last-child {
  margin-bottom: 0;
}
.contact-widget .contact-info li span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  margin-right: 10px;
  box-shadow: 0px 10px 40px rgba(25, 11, 50, 0.1);
  transition: var(--transition);
}
.contact-widget .contact-info li span i {
  transition: var(--transition);
  font-size: 16px;
  line-height: 0.6;
  margin: 0 auto;
  color: var(--secondaryColor);
}
.contact-widget .contact-info li p, .contact-widget .contact-info li a {
  color: var(--blackColor);
  transition: var(--transition);
  display: block;
  margin: 0;
}
.contact-widget .contact-info li a:hover {
  color: var(--secondaryColor);
}
.contact-widget .contact-info li:hover span {
  background-color: var(--secondaryColor);
}
.contact-widget .contact-info li:hover span i {
  color: var(--whiteColor);
}

/*-------------------------------
     Taglist Widget CSS
-------------------------------*/
.tag-list {
  margin-top: -12px;
}
.tag-list li {
  display: inline-block;
  margin: 12px 8px 0px 0px;
}
.tag-list li a {
  display: inline-block;
  line-height: 16px;
  padding: 9px 20px 9px;
  border-radius: 50px;
  border: 1px solid rgba(84, 6, 217, 0.05);
  background-color: var(--whiteColor);
  transition: var(--transition);
  color: var(--paraColor);
}
.tag-list li a:hover {
  color: var(--whiteColor);
  background-color: var(--secondaryColor);
  border-color: transparent;
}

/*-------------------------------
    Popular post Widget CSS
-------------------------------*/
.pp-post-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 30px;
}
.pp-post-item .pp-post-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.pp-post-item .pp-post-img img {
  border-radius: 50%;
}
.pp-post-item .pp-post-info {
  width: calc(100% - 120px);
  margin-left: 20px;
}
.pp-post-item .pp-post-info h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pp-post-item .pp-post-info h6 a {
  color: var(--blackColor);
}
.pp-post-item .pp-post-info h6 a:hover a {
  color: var(--secondaryColor);
}
.pp-post-item .pp-post-info span {
  font-weight: 400;
  line-height: 1;
  display: block;
  position: relative;
  color: var(--paraColor);
}
.pp-post-item:last-child {
  margin: 0;
}
.pp-post-item:hover .pp-post-info h6 a {
  color: var(--primaryColor);
}

/*-------------------------------
    Blog Details CSS
--------------------------------*/
.post-cat-title {
  margin-bottom: 30px;
}

article p,
.service-details-wrap p,
.terms-wrap p {
  margin-bottom: 25px;
}
article p strong, article p b,
.service-details-wrap p strong,
.service-details-wrap p b,
.terms-wrap p strong,
.terms-wrap p b {
  color: var(--blackColor);
}
article p a,
.service-details-wrap p a,
.terms-wrap p a {
  color: var(--mainColor);
}
article p a:hover,
.service-details-wrap p a:hover,
.terms-wrap p a:hover {
  text-decoration: underline;
  color: var(--mainColor);
}
article h1, article h2, article h3, article h4, article h5, article h6,
.service-details-wrap h1,
.service-details-wrap h2,
.service-details-wrap h3,
.service-details-wrap h4,
.service-details-wrap h5,
.service-details-wrap h6,
.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6 {
  margin-bottom: 18px;
}
article h1,
.service-details-wrap h1,
.terms-wrap h1 {
  font-size: 40px;
}
article h2,
.service-details-wrap h2,
.terms-wrap h2 {
  font-size: 36px;
}
article h3,
.service-details-wrap h3,
.terms-wrap h3 {
  font-size: 32px;
}
article h4,
.service-details-wrap h4,
.terms-wrap h4 {
  font-size: 28px;
}
article h5,
.service-details-wrap h5,
.terms-wrap h5 {
  font-size: 24px;
}
article h6,
.service-details-wrap h6,
.terms-wrap h6 {
  font-size: 22px;
}
article ol,
.service-details-wrap ol,
.terms-wrap ol {
  margin-top: 20px;
  margin-bottom: 30px;
}
article ol li,
.service-details-wrap ol li,
.terms-wrap ol li {
  margin-bottom: 15px;
  color: var(--paraColor);
  padding-left: 3px;
}
article .content-feature-list,
.service-details-wrap .content-feature-list,
.terms-wrap .content-feature-list {
  margin: 25px 0 25px;
}
article .content-feature-list li,
.service-details-wrap .content-feature-list li,
.terms-wrap .content-feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--paraColor);
}
article .content-feature-list li:last-child,
.service-details-wrap .content-feature-list li:last-child,
.terms-wrap .content-feature-list li:last-child {
  margin-bottom: 0;
}
article .content-feature-list li i,
.service-details-wrap .content-feature-list li i,
.terms-wrap .content-feature-list li i {
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 18px;
  color: var(--optionalColor);
}
article .post-img,
.service-details-wrap .post-img,
.terms-wrap .post-img {
  position: relative;
  margin-bottom: 35px;
  display: block;
  border-radius: 10px;
}
article .post-img img,
.service-details-wrap .post-img img,
.terms-wrap .post-img img {
  border-radius: 10px;
}

.blog-details-wrap .author-box {
  margin-bottom: 40px;
  box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
}

.blog-metainfo {
  margin-bottom: 20px;
}
.blog-metainfo li {
  position: relative;
  padding-left: 24px;
  display: inline-block;
  margin-right: 20px;
  color: var(--paraColor);
}
.blog-metainfo li:last-child {
  margin-right: 0;
}
.blog-metainfo li i {
  position: absolute;
  top: 4px;
  left: 0;
  color: var(--secondaryColor);
  line-height: 1;
}

.wp-block-quote {
  background-color: rgba(84, 6, 217, 0.05);
  border-radius: 10px;
  padding: 35px 40px;
  margin: 20px 0 30px;
}
.wp-block-quote p {
  font-style: italic;
  margin-bottom: 25px;
}
.wp-block-quote h6 {
  padding-left: 50px;
  position: relative;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.wp-block-quote h6:before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondaryColor);
}

.post-meta-option {
  margin: 33px 0;
  padding: 25px 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.post-tag span {
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  margin-right: 10px;
  display: inline-block;
  color: var(--blackColor);
}

.post-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.post-share span {
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  margin-right: 10px;
  display: inline-block;
  color: var(--blackColor);
}
.post-share ul {
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.post-share ul li {
  margin-right: 5px;
  display: inline-block;
}
.post-share ul li:last-child {
  margin-right: 0;
}
.post-share ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(84, 6, 217, 0.05);
  box-shadow: none;
  text-align: center;
}
.post-share ul li a i {
  color: var(--blackColor);
  display: block;
  margin: 0 auto;
  line-height: 30px;
}
.post-share ul li a:hover {
  background-color: var(--secondaryColor);
}
.post-share ul li a:hover i {
  color: var(--whiteColor);
}

.comment-box-title {
  margin-bottom: 25px;
  font-size: 36px;
}

.comment-item-wrap .comment-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid rgba(84, 6, 217, 0.05);
  border-radius: 10px;
}
.comment-item-wrap .comment-item.reply {
  margin-left: 40px;
}
.comment-item-wrap .comment-item:last-child {
  margin-bottom: 0;
}
.comment-item-wrap .comment-item .comment-author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  top: 4px;
}
.comment-item-wrap .comment-item .comment-author-img img {
  border-radius: 50%;
}
.comment-item-wrap .comment-item .comment-author-wrap {
  width: calc(100% - 122px);
  margin-left: 22px;
}
.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name {
  margin: 0 0 20px;
}
.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
  line-height: 1;
  margin: 0 20px 8px 0;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}
.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
  display: block;
  font-weight: 600;
  line-height: 1;
  color: var(--paraColor);
  margin-top: 8px;
}
.comment-item-wrap .comment-item .comment-author-wrap .comment-text p {
  margin: 0;
}
.comment-item-wrap .reply-btn {
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  color: var(--whiteColor);
  background-color: var(--optionalColor);
  font-size: 16px;
  padding: 13px 20px;
  border-radius: 5px;
  transition: var(--transition);
}
.comment-item-wrap .reply-btn:hover {
  color: var(--primaryColor);
}

.comment-box-title h4 {
  margin-bottom: 0;
  line-height: 1;
}
.comment-box-title p {
  margin-top: 10px;
  margin-bottom: 0;
}

#cmt-form {
  margin-top: 40px;
}
#cmt-form .form-group {
  margin-bottom: 25px;
}
#cmt-form .form-group input, #cmt-form .form-group textarea {
  border: 1px solid rgba(25, 11, 50, 0.1);
  border-radius: 5px;
  width: 100%;
  padding: 15px 20px;
  background-color: transparent;
}
#cmt-form .form-group input {
  height: 55px;
}
#cmt-form .form-group textarea {
  height: 187px;
  resize: none;
}

/*-------------------------------
    Buy Now Btn
-------------------------------*/
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 15px;
  font-weight: 600;
}
.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  transform: translateY(-50%);
}
.buy-now-btn:hover {
  color: var(--whiteColor);
  background-color: #94be5d;
}/*# sourceMappingURL=style.css.map */