@charset "UTF-8";
/*
    Css Table of Content
    --------------------------
    ** Typography 
    --------------------------
    ** Global 
    --------------------------
    ** Normalize
    --------------------------
    ** Navbar
    --------------------------
    ** Header 
    --------------------------
    ** Featured Area 
    --------------------------
    ** Counterup Area
    --------------------------
    ** Why Choose Us Area
    --------------------------
    ** Footer Area
    --------------------------
    

*/
/*-----------------
    @Typography
-----------------*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");

/*---------------------------
** Global 
---------------------------*/
:root {
  --main-color-one: #500ade;
  --main-color-two: #852aff;
  --secondary-color: #333333;
  --heading-color: #1c144e;
  --paragraph-color: #666666;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Poppins', sans-serif;
}

.dark-bg {
  background-color: #10102d;
}

.remove-col-padding {
  padding: 0;
}

.remove-col-padding-right {
  padding-right: 0;
}

.remove-col-padding-left {
  padding-left: 0;
}

.padding-left-0 {
  padding-left: 0;
}

.padding-right-0 {
  padding-left: 0;
}

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

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-60 {
  padding-top: 60px;
}

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

.padding-top-80 {
  padding-top: 80px;
}

.padding-top-90 {
  padding-top: 90px;
}

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

.padding-top-110 {
  padding-top: 110px;
}

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

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-bottom-0 {
  margin-bottom: 0px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-top-100 {
  margin-bottom: 100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-top-minus-290 {
  margin-top: -290px;
}

.padding-left-0 {
  padding-left: 0px !important;
}

.section-subtitle {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: #500ade;
  font-weight: 700;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: .4rem;
  padding-left: 0.4rem;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: #00bb85;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  z-index: 99;
  cursor: pointer;
  font-size: 30px;
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

.gray-bg {
  background-color: #f7f7f7;
}

.video-play-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 16px;
  background-color: #fff;
  border-radius: 50%;
  color: #313131;
}

.video-play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  /* IE 9 */
  -webkit-transform: translateX(-50%) translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.video-play-btn:hover {
  color: #313131;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@-moz-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@media only screen and (max-width: 991px) {
  .row.reorder-xs {
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-xs>[class*="col-"] {
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -webkit-transform: rotate(-180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}

.bg-blue {
  background-color: #1c144e;
}

.padding-60 {
  padding: 60px 0 60px 0;
}

.submit-btn-02 {
  display: inline-block;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  width: 202px;
  background-color: #500ade;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

.submit-btn-02:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

.boxed-btn {
  display: inline-block;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  background-color: #00bb85;
  /*background-image: -webkit-linear-gradient(0deg, #5e2ced 0%, #9749f8 100%);*/
  border-radius: 3px;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.boxed-btn:hover {
  color: #fff;
  background-color: #333333;
}

.boxed-btn.gd-bg-1 {
  background-image: -moz-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -webkit-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -ms-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
}

.boxed-btn.gd-bg-1:hover {
  background-image: -moz-linear-gradient(50deg, #9749f8 0%, #5e2ced 100%);
  background-image: -webkit-linear-gradient(50deg, #9749f8 0%, #5e2ced 100%);
  background-image: -ms-linear-gradient(50deg, #9749f8 0%, #5e2ced 100%);
}

.boxed-btn.gd-bg-2 {
  background-image: -moz-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
  background-image: -webkit-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
  background-image: -ms-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
}

.boxed-btn.gd-bg-2:hover {
  background-image: -moz-linear-gradient(50deg, #a197fa 0%, #e877cb 100%);
  background-image: -webkit-linear-gradient(50deg, #a197fa 0%, #e877cb 100%);
  background-image: -ms-linear-gradient(50deg, #a197fa 0%, #e877cb 100%);
}

.boxed-btn.gd-bg-3 {
  background-image: -moz-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
  background-image: -webkit-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
  background-image: -ms-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
}

.boxed-btn.gd-bg-3:hover {
  background-image: -moz-linear-gradient(50deg, #2784fc 0%, #70bfec 100%);
  background-image: -webkit-linear-gradient(50deg, #2784fc 0%, #70bfec 100%);
  background-image: -ms-linear-gradient(50deg, #2784fc 0%, #70bfec 100%);
}

.boxed-btn.btn-rounded {
  border-radius: 30px;
}

.boxed-btn.blank {
  background-color: transparent;
  border: 2px solid #500ade;
  color: #500ade;
}

.boxed-btn.blank:hover {
  background-color: #500ade;
  color: #fff;
}

.boxed-btn.black {
  border: none;
  color: #fff;
  background-color: #333333;
}

.boxed-btn.black:hover {
  background-color: #500ade;
  color: #fff;
}

.boxed-btn-02 {
  display: inline-block;
  text-align: center;
  height: 60px;
  line-height: 56px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  background-color: #500ade;
  padding: 0 30px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 5px;
  border: 2px solid transparent;
}

.boxed-btn-02:hover {
  background-color: #fff;
  color: var(--main-color-one);
}

.boxed-btn-02.black:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.boxed-btn-02.reverse-color {
  background-color: #fff;
  color: var(--main-color-one);
}

.boxed-btn-02.reverse-color:hover {
  color: #fff;
  background-color: var(--main-color-one);
}

.boxed-btn-02.blank {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.boxed-btn-02.blank:hover {
  color: var(--main-color-one);
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 57px;
}

.section-title.white .subtitle,
.section-title.white .title {
  color: #1c144e;
}

.section-title.white p {
  color: #1c144e;
}

.section-title.extra {
  margin-bottom: 55px;
}

.section-title.extra .title {
  margin-bottom: 26px;
}

.section-title.p-width-lg p {
  max-width: 730px;
}

.section-title.left-aligned {
  text-align: left;
}

.section-title .title {
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 13px;
  font-weight: 700;
  color: #1c144e;
}

.section-title .title.extra {
  margin-bottom: 24px;
}

.section-title .subtitle {
  font-size: 20px;
  line-height: 30px;
  color: #500ade;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: block;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #777777;
  max-width: 720px;
  line-height: 26px;
  margin: 0 auto;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.c-white {
  color: #fff;
}

.c-red {
  color: #500ade;
}

.bg-red {
  background-color: #500ade;
}

.c-green {
  color: #00cf92;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-top-55 {
  padding-top: 55px;
}

.gradient-bg {
  background-image: -moz-linear-gradient(0deg, #fff1ee 0%, #e8efff 100%);
  background-image: -webkit-linear-gradient(0deg, #fff1ee 0%, #e8efff 100%);
  background-image: -ms-linear-gradient(0deg, #fff1ee 0%, #e8efff 100%);
}

.submit-btn {
  width: 180px;
  height: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  text-transform: capitalize;
  background-color: #500ade;
  border: none;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #333333;
}

.submit-btn.btn-rounded {
  border-radius: 30px;
}

.submit-btn.btn-center {
  display: block;
  margin: 0 auto;
  margin-top: 25px;
}

.submit-btn:focus {
  outline: none;
}

.submit-btn.gd-bg-1 {
  background-image: -moz-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -webkit-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -ms-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
}

.submit-btn.gd-bg-1:hover {
  background-image: -moz-linear-gradient(50deg, #9749f8 0%, #5e2ced 100%);
  background-image: -webkit-linear-gradient(50deg, #9749f8 0%, #5e2ced 100%);
  background-image: -ms-linear-gradient(50deg, #9749f8 0%, #5e2ced 100%);
}

.section-title-inner {
  text-align: center;
  margin-bottom: 45px;
}

.section-title-inner .subtitle {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 700;
  color: #500ade;
  margin-bottom: 20px;
  display: block;
}

.section-title-inner .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.form-element.margin-bottom-30 {
  margin-bottom: 27px;
}

.form-element label {
  color: #1c144e;
  font-size: 14px;
  font-weight: 700;
  line-height: 32px;
}

.form-element label span {
  color: #BE1F27;
}

.form-element select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.has-icon {
  position: relative;
  display: block;
}

.has-icon.textarea .the-icon {
  top: 25px;
}

.has-icon .input-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.has-icon .the-icon {
  font-size: 14px;
  position: absolute;
  right: 30px;
  top: 50%;
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  color: #7c7c90;
}

@media only screen and (max-width: 767px) {
  .row.reorder-xs {
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-xs>[class*="col-"] {
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -webkit-transform: rotate(-180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}

@media only screen and (max-width: 991px) {
  .row.reorder-sm {
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-sm>[class*="col-"] {
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -webkit-transform: rotate(-180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}

.input-field {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border-radius: 5px;
  color: #7c7c90;
}

.input-field::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #7c7c90;
}

.input-field:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #7c7c90;
}

.input-field::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #7c7c90;
}

.input-field:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #7c7c90;
}

.input-field.borderd {
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.input-field.borderd:focus {
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.input-field.textarea {
  min-height: 120px;
  padding: 20px 30px;
  resize: none;
}

.input-field.error {
  border: 1px solid #500ade;
}

.input-field.error::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #500ade;
}

.input-field.error:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #500ade;
}

.input-field.error::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #500ade;
}

.input-field.error:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #500ade;
}

.input-field.error:focus {
  border-color: #500ade;
}

.blog-details-content .single-blog-post .details-container .post-body .post-bottom-content .bottom-content .right-content .title {
  display: none;
}

.email-success {
  display: block;
  width: 100%;
}

.checkbox-element {
  display: inline-block;
}

.checkbox-wrapper {
  display: inline-block;
}

.checkbox-inner {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 24px;
  color: #585869;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-inner input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-inner .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.checkbox-inner input:checked~.checkmark {
  background-color: transparent;
}

.checkbox-inner .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-inner input:checked~.checkmark:after {
  display: block;
}

.checkbox-inner .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #500ade;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.table-responsive {
  display: table;
}


@-webkit-keyframes sk-circleBounceDelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes slide {
  0% {
    clip: rect(0, 0, 20px, 0);
  }

  30% {
    clip: rect(0, 80px, 20px, 0);
  }

  50% {
    clip: rect(0, 80px, 20px, 0);
  }

  80% {
    clip: rect(0, 80px, 20px, 80px);
  }

  100% {
    clip: rect(0, 80px, 20px, 80px);
  }
}

@keyframes slide {
  0% {
    clip: rect(0, 0, 20px, 0);
  }

  30% {
    clip: rect(0, 80px, 20px, 0);
  }

  50% {
    clip: rect(0, 80px, 20px, 0);
  }

  80% {
    clip: rect(0, 80px, 20px, 80px);
  }

  100% {
    clip: rect(0, 80px, 20px, 80px);
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*====================
** Normalize
====================*/
html {
  font-family: "Poppins", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0;
  color: #666666;
  overflow-x: hidden;
}

h1 {
  font-size: 72px;
  line-height: 1.0833333333333333;
}

h2 {
  font-size: 52px;
  line-height: 1.4444444444444444;
}

h3 {
  font-size: 32px;
  line-height: 1.0833333333333333;
}

h4 {
  font-size: 22px;
  line-height: 1.2380952380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1c144e;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 16px;
  color: #666666;
  line-height: 1.625;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

a {
  color: #1c144e;
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar.navbar-area.white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mobile-logo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: block;
  }

  .desktop-logo {
    display: none !important;
  }
}

.navbar-area {
  padding: 0;
}

.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 1;
  padding: 15px;
  background: #fff;
}

.navbar-area.header-style-09 .nav-container .nav-right-content ul li .boxed-btn {
  border-radius: 5px;
  background-color: #fff;
  color: var(--paragraph-color);
}

.navbar-area.header-style-09 .nav-container .nav-right-content ul li .boxed-btn:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.navbar-area.header-style-12 .nav-container .nav-right-content ul li .boxed-btn {
  border-radius: 5px;
}

.navbar-area.white .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: right;
}

.navbar-area.white .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.white .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: #fff;
}

.navbar-area.white .nav-container .navbar-collapse .navbar-nav li a {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.white .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: #fff;
}

.navbar-area .nav-container .nav-right-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 30px;
}

.navbar-area .nav-container .nav-right-content ul li {
  display: inline-block;
}

.navbar-area .nav-container .nav-right-content ul li .btn-boxed {
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 5px;
  background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li .btn-boxed:hover {
  background-color: var(--secondary-color);
}

.navbar-area .nav-container .navbar-brand .site-title {
  font-weight: 700;
  font-size: 30px;
  font-family: var(--heading-font);
  line-height: 90px;
  color: var(--heading-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: right;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 90px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
  margin-left: 20px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 15px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  right: 0;
  top: 50%;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-weight: 900;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  border-bottom: 4px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 16px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
  border-top: 1px solid #e2e2e2;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 12px 30px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--paragraph-color);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: '\f105';
  font-family: 'fontawesome';
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
  left: 100%;
  top: 20px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
  color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-one);
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 80px;
  }

  .navbar-area .nav-container .navbar-brand {
    display: block;
  }

  .navbar-area .nav-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e2e2;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: height 500ms;
    -moz-transition: height 500ms;
    -o-transition: height 500ms;
    transition: height 500ms;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "\f107";
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid #e2e2e2;
  }
}

@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    margin: 0 15px;
  }
}

/*------------------------------
    Header Area
------------------------------*/
.header-area {
  padding: 150px 0 80px 0;
  background-color: #fff;
  position: relative;
}

.header-area .shape-1 {
  position: absolute;
  left: 10%;
  top: 15%;
  -webkit-animation: left2right 10s linear 0s infinite;
  animation: left2right 10s linear 0s infinite;
  opacity: .1;
}

.header-area .shape-2 {
  position: absolute;
  right: 5%;
  top: 10%;
  -webkit-animation: upndown 10s linear 0s infinite;
  animation: upndown 10s linear 0s infinite;
  opacity: .3;
}

.header-area .shape-3 {
  position: absolute;
  left: 50%;
  bottom: 30%;
  -webkit-animation: left2right 10s linear 0s infinite;
  animation: left2right 10s linear 0s infinite;
  opacity: .2;
}

.header-area .header-right-image {
  position: absolute;
  bottom: 0px;
  right: 10%;
}

.header-area.header-bg {
  background-color: #fff;
  background-image: url(../img/bg/header-bg.png);
  background-position: top right;
  background-repeat: no-repeat;
}

.header-area.header-bg-2 {
  background-color: #fff;
  background-image: url(../img/bg/header-bg-3.png);
  background-position: top right;
  background-repeat: no-repeat;
}

.header-area.header-bg-3 {
  background-color: #fff;
  background-image: url(../img/bg/header-bg-4.jpg);
  background-position: center;
  background-size: cover;
}

.header-area.header-bg-4 {
  background-color: #fff;
  background-image: url(../img/bg/header-bg-3.png);
  background-position: center;
  background-size: cover;
}

.header-area.header-bg-5 {
  background-color: #fff;
  background-image: url(../img/hero-11.jpg);
  background-position: center;
  background-size: cover;
}

.header-area.header-bg-5::before {
  content: "";
  position: absolute;
  background: #22244e;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.header-area.header-bg-5.dark-bg {
  background-color: #10102D;
}

.header-area.header-bg-6 {
  background-color: #fff;
  background-image: url(../img/bg/header-bg-4.jpg);
  background-position: center;
  background-size: cover;
}

.header-area.header-bg-12 {
  background-color: #fff;
  background-image: url(../img/bg/header-bottom-bg-12.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.header-area.header-bg-9 {
  background-color: #fff;
  background-image: url(../img/bg/header-bg-9.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.header-area.header-bg-9:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
  background-image: -moz-linear-gradient(146deg, #0250c5 0%, #ca3c87 60%, #d43f8d 100%);
  background-image: -webkit-linear-gradient(146deg, #0250c5 0%, #ca3c87 60%, #d43f8d 100%);
  background-image: -ms-linear-gradient(146deg, #0250c5 0%, #ca3c87 60%, #d43f8d 100%);
  opacity: .9;
}

.header-area.header-bg-10 {
  background-color: #fff;
  background-image: url(../img/bg/header-bg-10.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.header-area.header-bg-10:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(26, 31, 36, 0.7);
  z-index: -1;
  opacity: .9;
  background-image: url(../img/bg/header-bg-overlay-10.png);
  background-position: bottom;
  background-repeat: no-repeat;
}

.header-area.header-bg-11 {
  background-color: #fff;
  background-image: url(../img/bg/header-bg-11.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.header-area.header-bg-11:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(26, 31, 36, 0.7);
  z-index: -1;
  background-image: url(../img/bg-shape-11.png);
  background-position: bottom;
  background-repeat: no-repeat;
}

.header-area.dark-home-1 {
  background-color: #fff;
  background-image: url(../img/bg/dark-bg-1.png);
  background-position: bottom;
  background-size: cover;
  background-color: #10102d;
}

.header-area.dark-home-1 .shape-1 {
  position: absolute;
  left: 10%;
  top: 15%;
  -webkit-animation: upndown 10s linear 0s infinite;
  animation: upndown 10s linear 0s infinite;
}

.header-area.dark-home-1 .shape-2 {
  position: absolute;
  right: 5%;
  top: 10%;
  -webkit-animation: upndown 10s linear 0s infinite;
  animation: upndown 10s linear 0s infinite;
}

.header-area.dark-home-1 .shape-3 {
  position: absolute;
  left: 50%;
  bottom: 30%;
  -webkit-animation: left2right 10s linear 0s infinite;
  animation: left2right 10s linear 0s infinite;
}

.header-area.dark-home-1 .shape-4 {
  position: absolute;
  left: 55%;
  top: 15%;
  -webkit-animation: roatate 10s linear 5s infinite;
  animation: roatate 10s linear 5s infinite;
  display: inline-block;
}

.header-area.dark-home-1 .header-inner .title {
  color: #fff;
}

.header-area.dark-home-1 .header-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.header-area.dark-home-2 {
  background-color: #fff;
  background-image: url(../img/bg/dark-bg-2.png);
  background-position: bottom;
  background-size: cover;
  background-color: #10102d;
}

.header-area.dark-home-2 .shape-1 {
  position: absolute;
  left: 10%;
  top: 15%;
  -webkit-animation: upndown 10s linear 0s infinite;
  animation: upndown 10s linear 0s infinite;
}

.header-area.dark-home-2 .shape-2 {
  position: absolute;
  right: 5%;
  top: 10%;
  -webkit-animation: upndown 10s linear 0s infinite;
  animation: upndown 10s linear 0s infinite;
}

.header-area.dark-home-2 .shape-3 {
  position: absolute;
  left: 50%;
  bottom: 30%;
  -webkit-animation: left2right 10s linear 0s infinite;
  animation: left2right 10s linear 0s infinite;
}

.header-area.dark-home-2 .shape-4 {
  position: absolute;
  left: 55%;
  top: 15%;
  -webkit-animation: roatate 10s linear 5s infinite;
  animation: roatate 10s linear 5s infinite;
  display: inline-block;
}

.header-area.dark-home-2 .header-inner .title {
  color: #fff;
}

.header-area.dark-home-2 .header-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.header-area.style-six .header-inner {
  text-align: center;
}

.header-area.style-six .header-inner .video-play-btn {
  color: #500ade;
  margin-bottom: 30px;
}

.header-area.style-six .header-inner .title {
  color: #fff;
}

.header-area.style-six .header-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}

.header-area.style-five .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-area.style-five .header-inner .title {
  color: #fff;
}

.header-area.style-five .header-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.header-area.style-four .header-inner .title {
  color: #fff;
}

.header-area.style-four .header-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.header-area.style-four .header-inner .free-trail-form {
  position: relative;
  z-index: 0;
  max-width: 500px;
  margin-top: 36px;
}

.header-area.style-four .header-inner .free-trail-form .form-group .form-control {
  height: 60px;
  padding: 0 170px 0 20px;
}

.header-area.style-four .header-inner .free-trail-form .submit-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #9749f8;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
  width: 150px;
}

.header-area.style-four .header-inner .free-trail-form .submit-btn:hover {
  background-color: #5e2ced;
}

.header-area.style-three .header-overlay-image {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  -ms-transform: scale(1.05);
  /* IE 9 */
  -webkit-transform: scale(1.05);
  /* Chrome, Safari, Opera */
  transform: scale(1.05);
}

.header-area.style-three .header-overlay-image .st1,
.header-area.style-three .header-overlay-image .st0 {
  fill: #fff;
}

.header-area.style-three .header-inner .title {
  color: #fff;
}

.header-area.style-three .header-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.header-area.style-09 {
  padding-top: 235px;
  padding-bottom: 160px;
}

.header-area.style-09 .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.header-area.style-09 .header-overlay-image {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  -ms-transform: scale(1.05);
  /* IE 9 */
  -webkit-transform: scale(1.05);
  /* Chrome, Safari, Opera */
  transform: scale(1.05);
}

.header-area.style-09 .header-overlay-image .st1,
.header-area.style-09 .header-overlay-image .st0 {
  fill: #fff;
}

.header-area.style-09 .header-inner .title {
  color: #fff;
  font-size: 58px;
  line-height: 68px;
}

.header-area.style-09 .header-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 28px;
}

.header-area.style-09 .header-inner .btn-wrapper {
  margin-top: 20px;
}

.header-area.style-09 .header-inner .btn-wrapper .boxed-btn-02+.boxed-btn-02 {
  margin-left: 15px;
}

.header-area.style-10 {
  padding-top: 235px;
  padding-bottom: 160px;
}

.header-area.style-10 .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.header-area.style-10 .header-overlay-image {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  -ms-transform: scale(1.05);
  /* IE 9 */
  -webkit-transform: scale(1.05);
  /* Chrome, Safari, Opera */
  transform: scale(1.05);
}

.header-area.style-10 .header-overlay-image .st1,
.header-area.style-10 .header-overlay-image .st0 {
  fill: #fff;
}

.header-area.style-10 .header-inner .title {
  color: #fff;
  font-size: 58px;
  line-height: 68px;
}

.header-area.style-10 .header-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 28px;
}

.header-area.style-10 .header-inner .btn-wrapper {
  margin-top: 20px;
}

.header-area.style-10 .header-inner .btn-wrapper .boxed-btn-02+.boxed-btn-02 {
  margin-left: 15px;
}

.header-area.style-11 {
  padding-top: 235px;
  padding-bottom: 160px;
}

.header-area.style-11 .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.header-area.style-11 .header-overlay-image {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  -ms-transform: scale(1.05);
  /* IE 9 */
  -webkit-transform: scale(1.05);
  /* Chrome, Safari, Opera */
  transform: scale(1.05);
}

.header-area.style-11 .header-overlay-image .st1,
.header-area.style-11 .header-overlay-image .st0 {
  fill: #fff;
}

.header-area.style-11 .header-inner .title {
  color: #fff;
  font-size: 58px;
  line-height: 68px;
}

.header-area.style-11 .header-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 28px;
}

.header-area.style-11 .header-inner .btn-wrapper {
  margin-top: 20px;
}

.header-area.style-11 .header-inner .btn-wrapper .boxed-btn-02+.boxed-btn-02 {
  margin-left: 15px;
}

.header-area.style-12 {
  padding-top: 265px;
  padding-bottom: 120px;
}

.header-area.style-12 .header-inner {
  text-align: center;
}

.header-area.style-12 .header-inner .title {
  font-size: 58px;
  line-height: 68px;
}

.header-area.style-12 .header-inner .btn-wrapper {
  margin-top: 40px;
}

.header-area.style-12 .header-inner .btn-wrapper .boxed-btn-02 {
  background-color: var(--main-color-one);
  color: #fff;
  border: 2px solid var(--main-color-one);
}

.header-area.style-12 .header-inner .btn-wrapper .boxed-btn-02:hover {
  background-color: transparent;
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}

.header-area.style-12 .header-inner .btn-wrapper .boxed-btn-02+.boxed-btn-02 {
  background-color: transparent;
  color: var(--main-color-one);
  border-color: var(--main-color-one);
  margin-left: 15px;
}

.header-area.style-12 .header-inner .btn-wrapper .boxed-btn-02+.boxed-btn-02:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border: 2px solid var(--main-color-one);
}

.header-area.style-two .header-inner .title {
  color: #fff;
}

.header-area.style-two .header-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.header-area .header-inner .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: #252a32;
  margin-bottom: 22px;
}

.header-area .header-inner p {
  font-size: 20px;
  line-height: 32px;
  color: #505b6d;
  max-width: 520px;
}

.header-form-area .header-form-inner {
  background-color: #fff;
  padding: 40px 30px 50px 40px;
  border-radius: 5px;
  /*  border: 1px solid #e2e2e2;*/
  box-shadow: 0px 10px 60px 0px rgba(0, 50, 36, 0.1);
}

.header-form-area .header-form-inner .title {
  font-size: 30px;
  line-height: 40px;
  color: #1c144e;
  margin-bottom: 25px;
}

.get-quote-form .form-group.textarea .form-control {
  min-height: 140px;
  resize: none;
}

.get-quote-form .form-group.textarea .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.get-quote-form .form-group .form-control {
  height: 50px;
  border: 1px solid #e3e3e3;
}

.get-quote-form .submit-btn {
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  background-color:#00bb85;

}

.get-quote-form .submit-btn:hover {
  -webkit-box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
  box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}

@-webkit-keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }

  50% {
    -ms-transform: translateY(100px);
    /* IE 9 */
    -webkit-transform: translateY(100px);
    /* Chrome, Safari, Opera */
    transform: translateY(100px);
  }

  100% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }
}

@-moz-keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }

  50% {
    -ms-transform: translateY(100px);
    /* IE 9 */
    -webkit-transform: translateY(100px);
    /* Chrome, Safari, Opera */
    transform: translateY(100px);
  }

  100% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }
}

@-o-keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }

  50% {
    -ms-transform: translateY(100px);
    /* IE 9 */
    -webkit-transform: translateY(100px);
    /* Chrome, Safari, Opera */
    transform: translateY(100px);
  }

  100% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }
}

@keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }

  50% {
    -ms-transform: translateY(100px);
    /* IE 9 */
    -webkit-transform: translateY(100px);
    /* Chrome, Safari, Opera */
    transform: translateY(100px);
  }

  100% {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px);
  }
}

@-webkit-keyframes left2right {
  0% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }

  50% {
    -ms-transform: translateX(100px);
    /* IE 9 */
    -webkit-transform: translateX(100px);
    /* Chrome, Safari, Opera */
    transform: translateX(100px);
  }

  100% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }
}

@-moz-keyframes left2right {
  0% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }

  50% {
    -ms-transform: translateX(100px);
    /* IE 9 */
    -webkit-transform: translateX(100px);
    /* Chrome, Safari, Opera */
    transform: translateX(100px);
  }

  100% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }
}

@-o-keyframes left2right {
  0% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }

  50% {
    -ms-transform: translateX(100px);
    /* IE 9 */
    -webkit-transform: translateX(100px);
    /* Chrome, Safari, Opera */
    transform: translateX(100px);
  }

  100% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }
}

@keyframes left2right {
  0% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }

  50% {
    -ms-transform: translateX(100px);
    /* IE 9 */
    -webkit-transform: translateX(100px);
    /* Chrome, Safari, Opera */
    transform: translateX(100px);
  }

  100% {
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
  }
}

@-webkit-keyframes roatate {
  0% {
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(90deg);
    opacity: 0.3;
  }

  25% {
    opacity: 0.6;
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
  }

  50% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.8;
  }

  75% {
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -webkit-transform: rotate(-180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    opacity: 0.6;
  }

  100% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.3;
  }
}

@-moz-keyframes roatate {
  0% {
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(90deg);
    opacity: 0.3;
  }

  25% {
    opacity: 0.6;
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
  }

  50% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.8;
  }

  75% {
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -webkit-transform: rotate(-180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    opacity: 0.6;
  }

  100% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.3;
  }
}

@-o-keyframes roatate {
  0% {
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(90deg);
    opacity: 0.3;
  }

  25% {
    opacity: 0.6;
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
  }

  50% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.8;
  }

  75% {
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -webkit-transform: rotate(-180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    opacity: 0.6;
  }

  100% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.3;
  }
}

@keyframes roatate {
  0% {
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(90deg);
    opacity: 0.3;
  }

  25% {
    opacity: 0.6;
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
  }

  50% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.8;
  }

  75% {
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -webkit-transform: rotate(-180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    opacity: 0.6;
  }

  100% {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    opacity: 0.3;
  }
}

.btn-wrapper {
  margin-top: 35px;
}

.btn-wrapper .boxed-btn {
  margin: 0 10px;
  border: none;
  width: 165px;
  height: 60px;
  line-height: 55px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #fff;
  background-image: -moz-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -webkit-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -ms-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  -webkit-box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
  box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  text-transform: capitalize;
}

.btn-wrapper .boxed-btn.blank {
  background-color: #fff;
  color: #252a32;
  border: 2px solid #500ade;
  background-image: -moz-linear-gradient(0deg, transparent 0%, transparent 100%);
  background-image: -webkit-linear-gradient(0deg, transparent 0%, transparent 100%);
  background-image: -ms-linear-gradient(0deg, transparent 0%, transparent 100%);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.btn-wrapper .boxed-btn.blank img {
  margin-right: 3px;
}

.btn-wrapper .boxed-btn.blank:hover {
  background-image: -moz-linear-gradient(0deg, #5e2ced 0%, #9749f8 100%);
  background-image: -webkit-linear-gradient(0deg, #5e2ced 0%, #9749f8 100%);
  background-image: -ms-linear-gradient(0deg, #5e2ced 0%, #9749f8 100%);
  border-color: #fff;
  color: #fff;
}

.btn-wrapper .boxed-btn:hover {
  background-image: -moz-linear-gradient(0deg, transparent 0%, transparent 100%);
  background-image: -webkit-linear-gradient(0deg, transparent 0%, transparent 100%);
  background-image: -ms-linear-gradient(0deg, transparent 0%, transparent 100%);
  background-color: #fff;
  color: #505b6d;
}

/*------------------------
    Featured Area
------------------------*/
.about-us-area {
  padding: 113px 0 120px 0;
  position: relative;
}

.about-us-area .shape-1 {
  position: absolute;
  right: 10%;
  bottom: 10%;
  -webkit-animation: upndown 10s linear 0s infinite;
  animation: upndown 10s linear 0s infinite;
}

.about-us-area .shape-2 {
  position: absolute;
  left: 10%;
  top: 15%;
  -webkit-animation: roatate 10s linear 5s infinite;
  animation: roatate 10s linear 5s infinite;
  display: inline-block;
}

.about-us-area .btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

.about-us-area .btn-wrapper .boxed-btn {
  margin: 0 10px;
}

.about-us-area.style-two {
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-us-area.style-two .section-title {
  padding-right: 100px;
}

.about-us-area.style-two .feature-list {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border: none;
}

.about-us-area.style-two .feature-list .single-feature-list {
  margin-bottom: 20px;
  width: 50%;
  border: none;
  padding: 0 20px;
  text-align: center;
}

.about-us-area.style-two .feature-list .single-feature-list .icon {
  text-align: center;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border: 2px solid #ededed;
}

.feature-list.white {
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-list.style-03 .single-feature-list {
  background-color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.feature-list.style-03 .single-feature-list .icon {
  position: relative;
  z-index: 0;
  font-size: 36px;
}

.feature-list.style-03 .single-feature-list .icon:after {
  position: absolute;
  left: 15px;
  top: 0;
  width: 70px;
  height: 90px;
  border-radius: 40px;
  content: '';
  -ms-transform: rotate(40deg);
  /* IE 9 */
  -webkit-transform: rotate(40deg);
  /* Chrome, Safari, Opera */
  transform: rotate(40deg);
  z-index: -1;
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-1 {
  background-image: unset;
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-1:after {
  background-image: -moz-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -webkit-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -ms-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-2 {
  background-image: unset;
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-2:after {
  background-image: -moz-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
  background-image: -webkit-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
  background-image: -ms-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-3 {
  background-image: unset;
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-3:after {
  background-image: -moz-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
  background-image: -webkit-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
  background-image: -ms-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-4 {
  background-image: unset;
}

.feature-list.style-03 .single-feature-list .icon.icon-bg-4:after {
  background-image: -moz-linear-gradient(90deg, #ec6c7f 0%, #fa9f69 100%);
  background-image: -webkit-linear-gradient(90deg, #ec6c7f 0%, #fa9f69 100%);
  background-image: -ms-linear-gradient(90deg, #ec6c7f 0%, #fa9f69 100%);
}

.feature-list.style-03 .single-feature-list:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background-image: -moz-linear-gradient(-177deg, #0250c5 0%, #d43f8d 100%);
  background-image: -webkit-linear-gradient(-177deg, #0250c5 0%, #d43f8d 100%);
  background-image: -ms-linear-gradient(-177deg, #0250c5 0%, #d43f8d 100%);
  content: '';
  -ms-transform: translateX(-105%);
  /* IE 9 */
  -webkit-transform: translateX(-105%);
  /* Chrome, Safari, Opera */
  transform: translateX(-105%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.feature-list.style-03 .single-feature-list:hover {
  -webkit-box-shadow: 0px 0px 95px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 95px 0px rgba(0, 0, 0, 0.07);
}

.feature-list.style-03 .single-feature-list:hover:after {
  -ms-transform: translateX(0%);
  /* IE 9 */
  -webkit-transform: translateX(0%);
  /* Chrome, Safari, Opera */
  transform: translateX(0%);
}

.single-feature-list {
  display: block;
  text-align: center;
  padding: 60px 20px 40px 20px;
  border-right: 2px solid #ededed;
}

.single-feature-list.white {
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.single-feature-list.white .content .title a {
  color: #fff;
}

.single-feature-list.white .content p {
  color: rgba(255, 255, 255, 0.7);
}

.single-feature-list:hover .icon {
  -ms-transform: rotateY(360deg);
  /* IE 9 */
  -webkit-transform: rotateY(360deg);
  /* Chrome, Safari, Opera */
  transform: rotateY(360deg);
}

.single-feature-list .icon {
  font-size: 40px;
  display: inline-block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  line-height: 100px;
  color: #fff;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-feature-list .icon.icon-bg-1 {
  background-image: url(../img/icon-bg/01.png);
  background-repeat: no-repeat;
}

.single-feature-list .icon.icon-bg-2 {
  background-image: url(../img/icon-bg/02.png);
  background-repeat: no-repeat;
}

.single-feature-list .icon.icon-bg-3 {
  background-image: url(../img/icon-bg/03.png);
  background-repeat: no-repeat;
}

.single-feature-list .icon.icon-bg-4 {
  background-image: url(../img/icon-bg/04.png);
  background-repeat: no-repeat;
}

.single-feature-list .content .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.single-feature-list .content .title a {
  color: #1c144e;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-feature-list .content .title a:hover {
  color: #500ade;
}


/*----------------------
    Counterup Area
-----------------------*/
.single-counterup-style-02 {
  text-align: center;
}

.single-counterup-style-02 .count-text {
  background-color: #f7f7f8;
  width: 130px;
  height: 130px;
  font-size: 48px;
  line-height: 130px;
  text-align: center;
  border-radius: 15px;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  margin-bottom: 22px;
}

.single-counterup-style-02 .count-text .count-wrap {
  background: -webkit-gradient(linear, left bottom, left top, from(#0250c5), to(#d43f8d));
  background: -webkit-linear-gradient(bottom, #0250c5 0%, #d43f8d 100%);
  background: -o-linear-gradient(bottom, #0250c5 0%, #d43f8d 100%);
  background: linear-gradient(0deg, #0250c5 0%, #d43f8d 100%);
  background: -webkit-linear-gradient(0deg, #0250c5 0%, #d43f8d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.single-counterup-style-02 .count-text:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f7f8;
  content: '';
  z-index: -1;
}

.single-counterup-style-02 .content .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.counterup-area {
  padding: 90px 0;
  background-image: -webkit-linear-gradient(50deg, #000000 0%, #1c1c1c 100%);
}

.single-counter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-counter-item.white .content .count-num {
  color: #fff;
}

.single-counter-item.white .content .title {
  color: rgba(255, 255, 255, 0.7);
}

.single-counter-item .icon {
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  margin-right: 20px;
}

.single-counter-item .content .count-num {
  font-size: 36px;
  line-height: 46px;
  color: #fff;
  font-weight: 600;
}

.single-counter-item .content .title {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
}

/*------------------------
    Why Choose Us
-------------------------*/
.why-choose-area {
  padding: 90px 0;
  position: relative;
}

.why-choose-area .shape-1 {
  position: absolute;
  left: 10%;
  top: 10%;
  -webkit-animation: fadeIn 10s linear 2s infinite;
  animation: fadeIn 10s linear 2s infinite;
}

.why-choose-area.why-choose-us-bg {
  /*  background-image: url(../img/bg/why-us-bg.jpg);*/
  background-size: cover;
  background-position: center;
}

.why-choose-area.dark-bg {
  background-image: url(../img/bg/why-us-dark-bg.png);
  background-size: cover;
  background-position: center;
}

.single-why-us-item {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  padding: 40px 30px 15px 30px;
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  height: calc(100% - 30px);
}

.single-why-us-item.white {
  background-color: transparent;
}

.single-why-us-item:hover {
  background-color: #fff;
}

.single-why-us-item:hover .content .title {
  color: #1c144e;
}

.single-why-us-item:hover .content p {
  color: #666666;
}

.single-why-us-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(50deg, #776df2 0%, #a1f0e6 100%);
  background-image: -webkit-linear-gradient(50deg, #776df2 0%, #a1f0e6 100%);
  background-image: -ms-linear-gradient(50deg, #776df2 0%, #a1f0e6 100%);
  -webkit-box-shadow: 0px 26px 68px 0px rgba(42, 0, 117, 0.4);
  box-shadow: 0px 26px 68px 0px rgba(42, 0, 117, 0.4);
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  color: #fff;
  margin-bottom: 27px;
}

.single-why-us-item .icon.gdbg-1 {
  background-image: -moz-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -webkit-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -ms-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  -webkit-box-shadow: 0px 26px 68px 0px rgba(42, 0, 117, 0.4);
  box-shadow: 0px 26px 68px 0px rgba(42, 0, 117, 0.4);
}

.single-why-us-item .icon.gdbg-3 {
  background-image: -moz-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
  background-image: -webkit-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
  background-image: -ms-linear-gradient(50deg, #e877cb 0%, #a197fa 100%);
}

.single-why-us-item .icon.gdbg-4 {
  background-image: -moz-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
  background-image: -webkit-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
  background-image: -ms-linear-gradient(50deg, #70bfec 0%, #2784fc 100%);
}

.single-why-us-item .content .title {
  font-size: 22px;
  line-height: 32px;
  color: #1c144e;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-why-us-item .content p {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/*--------------------------
    Footer Area
---------------------------*/
.footer-area {
  /* background-image: -moz-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -webkit-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);
  background-image: -ms-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);*/
  background-image: -webkit-linear-gradient(50deg, #000000 0%, #1c1c1c 100%);
}

.footer-area.style-02 {
  background-image: unset;
  padding-top: 220px;
}

.footer-top {
  padding: 90px 0 20px 0;
}

.copyright-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 20px 0;
}

.copyright-inner .left-content-area {
  display: inline-block;
}

.copyright-inner .right-content-area {
  display: inline-block;
  float: right;
}

.footer-widget.nav_menus_widget {
  text-align: right;
}

.footer-widget .widget-title {
  font-size: 24px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 0px;
  font-weight: 600;
}

.about_widget .footer-logo {
  display: block;
  margin-bottom: 25px;
}

.about_widget p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}

.about_widget .social-icon {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about_widget .social-icon li {
  display: inline-block;
  margin: 0 5px;
}

.about_widget .social-icon li:first-child {
  margin-left: 0;
}

.about_widget .social-icon li:last-child {
  margin-right: 0;
}

.about_widget .social-icon li a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.about_widget .social-icon li a:hover {
  color: #fff;
}

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

.nav_menus_widget ul li {
  margin: 15px 0;
}

.nav_menus_widget ul li:first-child {
  margin-top: 0;
}

.nav_menus_widget ul li:last-child {
  margin-bottom: 0;
}

.nav_menus_widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.nav_menus_widget ul li a:hover {
  color: #fff;
}

/*-----------------------
    Discover Items
------------------------*/
.single-discover-item {
  text-align: center;
}

.single-discover-item .icon {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 18px;
  color: var(--main-color-one);
}

.single-discover-item .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

/*--------------------------
    Connect Area
----------------------------*/
.connect-area .right-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.connect-area .right-content-area .title {
  font-size: 48px;
  line-height: 58px;
}

.connect-area .right-content-area p {
  margin-bottom: 0px;
}

.connect-area .right-content-area .btn-wrapper .boxed-btn-02+.boxed-btn-02 {
  margin-left: 20px;
}

.right-connect-you-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.single-connect-you-item {
  padding: 40px 30px;
  border-radius: 2px;
  text-align: left;
  background-color:#344557;
  height:100%;
}


.single-connect-you-item.theme-02 {
 background-color:#00bb85;
}

.single-connect-you-item.theme-03 {
background-color:#e66249;
}

.single-connect-you-item .icon {
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  margin-bottom: 16px;
}

.single-connect-you-item .content .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
}

.single-connect-you-item .content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0px;
}

/*----------------------------------
    Customer Reply Area
----------------------------------*/
.customer-reply-area {
  position: relative;
  z-index: 0;
  padding: 90px 0px 0px;
}


.customer-reply-area .right-image {
  position: absolute;
  right: 0;
  top: 0;
}

.single-amazing-feature-01 {
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  align-items: center;
  box-shadow: 0px 10px 60px 0px rgba(0, 50, 36, 0.1);
  padding: 20px;
}

.single-amazing-feature-01:hover.theme-01 .icon {
  background-color: #00bb85;
  color: #fff;
}

.single-amazing-feature-01:hover.theme-02 .icon {
  background-color: #00bb85;
  color: #fff;
}

.single-amazing-feature-01:hover.theme-03 .icon {
  background-color: #00bb85;
  color: #fff;
}

.single-amazing-feature-01:hover.theme-04 .icon {
  background-color: #00bb85;
  color: #fff;
}

.single-amazing-feature-01.theme-01 .icon {
  color: #00bb85;
}

.single-amazing-feature-01.theme-02 .icon {
  color: #00bb85;
}

.single-amazing-feature-01.theme-03 .icon {
  color: #00bb85;
}

.single-amazing-feature-01.theme-04 .icon {
  color:#00bb85;
}

.single-amazing-feature-01 .icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  margin-right: 20px;
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}

.single-amazing-feature-01 .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.single-amazing-feature-01 .content .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
}

/*--------------------
    Sidebar Area
--------------------*/
.dark-bg .widget {
  background-color: #191946;
}

.dark-bg .widget .widget-title {
  color: #fff;
}

.dark-bg .widget ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.dark-bg .widget .tagcloud a {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.widget {
  background-color: #f8f8f8;
  margin-bottom: 30px;
  padding: 25px 30px 30px 30px;
}

.widget.footer-widget {
  background-color: transparent;
  padding: 0;
}

.widget.footer-widget .widget-title {
  font-size: 21px;
  line-height: 31px;
}

.widget .widget-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 20px;
}

.widget:last-child {
  margin-bottom: 0px;
}

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

.widget ul li {
  display: block;
  margin: 8px 0;
}

.widget ul li:first-child {
  margin-top: 0px;
}

.widget ul li:last-child {
  margin-bottom: 0px;
}

.widget ul li a {
  color: #666666;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.widget ul li a:hover {
  color: #500ade;
}

.about_widget .contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about_widget .contact-info-list li {
  display: block;
}

.about_widget .social-icon {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about_widget .social-icon li {
  display: inline-block;
  margin: 0 8px;
}

.about_widget .social-icon li:first-child {
  margin-left: 0;
}

.about_widget .social-icon li:last-child {
  margin-right: 0;
}

.about_widget .social-icon li a {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.about_widget .social-icon li a:hover {
  color: #500ade;
}

.footer-widget.widget_nav_menu ul li a {
  position: relative;
  padding-left: 15px;
}

.footer-widget.widget_nav_menu ul li a:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.subscribe-form form {
  position: relative;
}

.subscribe-form form .form-control {
  width: 100%;
  height: 50px;
  border: 2px solid #f2f2f2;
  background-color: transparent;
  color: #838a95;
  padding-right: 70px;
  font-size: 14px;
}

.subscribe-form form .form-control::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #838a95;
}

.subscribe-form form .form-control:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #838a95;
}

.subscribe-form form .form-control::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #838a95;
}

.subscribe-form form .form-control:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #838a95;
}

.subscribe-form form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 50px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.subscribe-form form .submit-btn:hover {
  background-color: #500ade;
  opacity: .8;
}

.widget_cgency_subscribe form {
  position: relative;
}

.widget_cgency_subscribe form .form-control {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: #fff;
  padding-right: 70px;
}

.widget_cgency_subscribe form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 50px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.widget_cgency_subscribe form .submit-btn:hover {
  background-color: #500ade;
  opacity: .8;
}

.about_widget .footer-logo {
  margin-bottom: 25px;
  display: block;
}

.about_widget .subscribe-form {
  margin-top: 25px;
}

.widget_search .search-form {
  position: relative;
}

.widget_search .search-form .form-group {
  margin-bottom: 0;
}

.widget_search .search-form .form-group .form-control {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-right: 70px;
}

.widget_search .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 50px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  line-height: 50px;
}

.widget_author_meta {
  text-align: center;
}

.widget_author_meta .thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.widget_author_meta .thumb img {
  border-radius: 50%;
}

.widget_author_meta .content .name {
  font-size: 21px;
  font-weight: 700;
}

.widget_author_meta .content p {
  font-size: 16px;
  line-height: 26px;
}

.widget_author_meta .content ul {
  margin-top: 25px;
}

.widget_author_meta .content ul li {
  display: inline-block;
  margin: 0 5px;
}

.widget_author_meta .content ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.widget_author_meta .content ul li a:hover {
  background-color: #500ade;
  color: #fff;
}

.widget_popular_posts .single-popular-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.widget_popular_posts .single-popular-post-item:last-child .content .title {
  margin-bottom: 0;
}

.widget_popular_posts .single-popular-post-item .thumb {
  margin-right: 20px;
}

.widget_popular_posts .single-popular-post-item .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.widget_popular_posts .single-popular-post-item .content .time {
  color: #500ade;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}

.widget_popular_posts .single-popular-post-item .content .title {
  font-size: 18px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #1c144e;
}

.widget_tag_cloud .tagcloud a {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 5px;
  color: #666666;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 5px;
}

.widget_tag_cloud .tagcloud a:hover {
  background-color: #500ade;
  color: #fff;
}


/*----------------------------
    Testimonial Area
-----------------------------*/
.single-testimonial-item-03 {
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
}

.single-testimonial-item-03 .img-wrapper {
  position: absolute;
  left: 30px;
  bottom: -40px;
}

.single-testimonial-item-03 .img-wrapper img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.single-testimonial-item-03 .content-area {
  /*background-image: -moz-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);*/
  /*background-image: -webkit-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);*/
  /*background-image: -ms-linear-gradient(50deg, #5e2ced 0%, #9749f8 100%);*/
  padding: 55px 30px 65px 30px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color:#e9eafa;
}

.single-testimonial-item-03 .content-area:after {
  position: absolute;
  right: 30px;
  top: -20px;
  font-size: 80px;
  line-height: 80px;
  content: "\f10e";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
}

.single-testimonial-item-03 .content-area p {
  font-size: 18px;
  line-height: 30px;
  color:#000;
}

.single-testimonial-item-03 .content-area .author-meta {
  margin-top: 20px;
}

.single-testimonial-item-03 .content-area .author-meta .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
  margin-bottom: 0px;
}

.single-testimonial-item-03 .content-area .author-meta .designation {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 400;
}

.testimonial-area-three.bg-image {
  /*  background-image: url(../img/bg/testimonial-bg-03.jpg);*/
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding: 90px 0px;
}


.boxed-btn.get {
  background: #fff;
  color: #1c144e;
  height: 100%;
  line-height: normal;
  font-weight: 500;
  font-size: 15px;
  border-radius: 3px;
  padding: 15px 25px;
}


.boxed-btn.get:hover {
  background: #1c144e;
  color: #fff;
}


.service-details-content li {
  display: flex;
  padding: 8px;
  align-items: center;
}

.service-details-content p {
  font-size: 15px !important;
  margin-bottom: 20px;
  max-width: 100% !important;
}

.service-details-content li span {
  margin-left: 10px;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}

.service-details-content li i {
  font-size: 20px;
  color: #00bb85;
}

.onload-image {
  height: 100%;
  width: 100%;
}

.onload-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-close1 {
  padding: 4px 5px;
  border-radius: 50px;
  font-size: 19px;
  color: #fff;
  background-color: #00bb85;
  border: none;
  position: absolute;
  top: -14px;
  right: -37px;
  width: 5%;
  z-index: 9;
}

.btn-close1:focus {
  outline: none;
}

#onload .header-form-area .header-form-inner {
  padding: 30px 25px;
}

/*#onload .header-form-area .header-form-inner .title {
    font-size: 26px;
    font-weight: 600;
}*/

#onload label {
  color: #1c144e;
  font-weight: 600;
}

::placeholder {
  font-size: 14px;
}

a.boxed-btn:hover {
  /*background-image: -webkit-linear-gradient(0deg, #9749f8 0%, #5e2ced 100%);*/
  background-color:#fdc04d;
}

.foot-form{
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-logo img {
    width: 100%;
    max-width: 80%;
}


