:root {
  --primary: #920092;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #71009beb
}

.footer-bottom i:hover {
  color: #b60505
}

.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px)
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg)
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
    -webkit-transform: perspective(120px) rotateX(0) rotateY(0)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0 linear .5s;
  z-index: 99999
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0 linear 0;
  visibility: visible;
  opacity: 1
}

.fw-bold,
h1,
h2 {
  font-weight: 800 !important
}

h3,
h4 {
  font-weight: 700 !important
}

.fw-medium,
h5,
h6 {
  font-weight: 600 !important
}

.btn {
  font-family: Nunito, sans-serif;
  font-weight: 600;
  transition: .5s
}

.btn-primary {
  color: #fff;
  box-shadow: inset 0 0 0 50px transparent
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary)
}

.btn-square {
  width: 36px;
  height: 36px
}

.btn-sm-square {
  width: 30px;
  height: 30px
}

.btn-lg-square {
  width: 48px;
  height: 48px
}

.btn-lg-square,
.btn-sm-square,
.btn-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center
}

.navbar-dark .navbar-nav .nav-link {
  font-family: Nunito, sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  transition: .5s
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ef2def
}

.navbar-dark .navbar-brand h2 {
  color: #fff
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important
}

@media (max-width: 991.98px) {

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show {
    padding: 10px 0;
    color: var(--dark)
  }

  .navbar-dark .navbar-brand h2 {
    color: var(--primary)
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: #ef2def;
    transition: .5s
  }

  .navbar-dark .navbar-nav .nav-link.active::before,
  .navbar-dark .navbar-nav .nav-link:hover::before {
    width: 100%;
    left: 0
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 13, 30, 0.63);
  z-index: 1
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important
  }
}

.carousel-control-next,
.carousel-control-prev {
  width: 10%
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 3rem;
  height: 3rem
}

.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0;
  background: #fff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0
  }

  50% {
    left: 145px
  }

  100% {
    left: 0
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px
  }

  50% {
    left: 50%;
    margin-left: 45px
  }

  100% {
    left: 50%;
    margin-left: -75px
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0
  }

  50% {
    left: 85px
  }

  100% {
    left: 0
  }
}

.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: .5s
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg)
}

.service-item .service-icon i {
  transform: rotate(45deg)
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #fff !important;
  box-shadow: 0 0 30px #ddd
}

.team-item {
  transition: .5s
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0
}

.team-item:hover {
  box-shadow: 0 0 30px #ddd
}

.team-item:hover .team-social {
  background: rgba(64, 64, 64, 0.7)
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s 50ms
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s
}

.blog-item .blog-img img,
.team-item .team-img img {
  transition: .5s
}

.blog-item:hover .blog-img img,
.team-item:hover .team-img img {
  transform: scale(1.15)
}

@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1
  }
}

.back-to-top {
  position: fixed;
  display: none;
  left: 30px;
  bottom: 20px;
  z-index: 99
}

.bg-header-0 {
  background: linear-gradient(rgba(51, 26, 67, 0.7), rgba(44, 20, 102, 0.7)), url(../img/contact.webp) center center no-repeat;
  background-size: cover
}

.bg-header-1 {
  background: linear-gradient(rgba(51, 26, 67, 0.7), rgba(44, 20, 102, 0.7)), url(../img/us.webp) center center no-repeat;
  background-size: cover
}

.bgs {
  background: #350035
}

.bg-header-2 {
  background: linear-gradient(rgba(51, 26, 67, 0.7), rgba(44, 20, 102, 0.7)), url(../img/lapi.webp) center center no-repeat;
  background-size: cover
}

.bg-header-3 {
  background: linear-gradient(rgba(51, 26, 67, 0.7), rgba(44, 20, 102, 0.7)), url(../img/services.webp) center center no-repeat;
  background-size: cover
}

.bg-header-4 {
  background: linear-gradient(rgba(51, 26, 67, 0.7), rgba(44, 20, 102, 0.7)), url(../img/feature.webp) center center no-repeat;
  background-size: cover
}

.bg-header-5 {
  background: linear-gradient(rgba(51, 26, 67, 0.7), rgba(44, 20, 102, 0.7)), url(../img/contact.webp) center center no-repeat;
  background-size: cover
}

.link-animated a {
  transition: .5s
}

.link-animated a:hover {
  padding-left: 10px
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px
  }
}

.d-flex i:hover {
  color: purple
}

#mailme {
  color: #dc00dc
}

#mailme:hover {
  color: #9d009d
}

.container1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56%
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80%;
  border: none;
  padding-left: 50px;
  padding-right: 50px
}

/* The actual timeline (the vertical ruler) */
.main-timeline {
  position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #939597;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #939597;
  border: 5px solid #f5df4d;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  padding: 0px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid #800080;
  color: #800080;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #800080;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  color: #800080;

  border: medium solid #800080;
  border-width: 10px 10px 10px 0;
  border-color: transparent #800080 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -12px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {

  /* Place the timelime to the left */
  .main-timeline::after {
    left: 31px;
  }

  /* Full-width containers */
  .timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline::before {
    left: 60px;
    border: medium solid #800080;
    border-width: 10px 10px 10px 0;
    border-color: transparent #800080 transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 18px;
  }

  .left::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

rounded-circle {
  border-radius: 50% !important;
}

.sub-info {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #004975;
}

.display-30 {
  font-size: 0.9rem;
}

.section-head p,
p.awesome_line {
  color: #818181;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.extra-text {
  font-size: 34px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
  position: relative;
  text-transform: none;
}

.extra-text::before {
  content: '';
  width: 60px;
  height: 3px;
  background: #f91942;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.extra-text span {
  font-weight: 700;
  color: #f91942;
}

.item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover {
  background: #800080;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #f91942;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.20);
  color: #800080
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #800080
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #800080
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #800080
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #800080
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #800080
}

.item p {
  font-size: 15px;
  line-height: 26px;
}

.item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
}

.mission p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f91942;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

.skills {
  padding-top: 0px;
}

.skills .prog-item {
  margin-bottom: 25px;
}

.skills .prog-item:last-child {
  margin-bottom: 0;
}

.skills .prog-item p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #f91942;
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
}