/*
@File: Colugo Template Styles

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

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

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

** - Default CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Banner Area CSS
** - Fun Facts Area CSS
** - About Area CSS
** - Features Area CSS
** - Screenshot Area CSS
** - Testimonial Area CSS
** - Overview Area CSS
** - Pricing Area CSS
** - Faq Area CSS
** - Team Area CSS
** - App Download Area CSS
** - Blog Area CSS
** - Contact Area CSS
** - Subscribe Area CSS
** - Banner Area Two CSS
** - Video Area CSS
** - Page Title Area CSS
** - Pagination Area CSS
** - Blog Details Area CSS
** - Sidebar Widget Area CSS
** - Footer Area CSS
** - Copy Right CSS
** - Go Top CSS

*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,423;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,423;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
body {
  padding: 0;
  margin: 0;
  color: #646464;
  font-family: "Josefin Sans", sans-serif; }

a {
  transition: 0.5s;
  color: #000000;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: none;
    color: #662d90;
    outline: 0; }

button:focus, input:focus {
  outline: 0; }

p {
  color: #646464;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 16px;
  font-family: "Nunito", sans-serif; }
  p:last-child {
    margin-bottom: 0; }

.d-table {
  width: 100%;
  height: 100%; }
  .d-table-cell {
    vertical-align: middle; }

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

h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-weight: bold;
  text-transform: capitalize; }

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

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

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

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

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: capitalize;
     background-color: rgb(101, 45, 144);
  transition: 0.5s;
  border-radius: 50px;
  font-weight: 400;
  font-size: 18px;
  padding: 16px 40px; }
  .default-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #000000;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px; }
  .default-btn:hover {
    color: #ffffff; }
    .default-btn:hover span {
      width: 225%;
      height: 562.5px; }
  .default-btn i {
    font-size: 14px;
    line-height: normal;
    margin-left: 4px;
    position: relative;
    top: 1px; }

.section-title {
  text-align: center;
  margin-bottom: 40px; }
  .section-title h2 {
    font-size: 50px;
    margin: 0 0 0 0;
    position: relative;
    line-height: 1; }
  .section-title p {
    max-width: 1120px;
    margin: auto;
    line-height: 1.8; }
  .section-title .bar {
    height: 4px;
    width: 85px;
     background: rgb(101, 45, 144);
    margin: 20px auto 20px;
    position: relative;
    border-radius: 5px;
    overflow: hidden; }
    .section-title .bar::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 5px;
      background: #ffffff;
      animation-duration: 2s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      animation-name: MOVE-BG; }

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0); }
  to {
    -webkit-transform: translateX(85px); } }
@keyframes MOVE-BG {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(85px); } }
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600; }
  .buy-now-btn img {
    top: 50%;
    left: 20px;
    width: 15px;
    position: absolute;
    transform: translateY(-50%); }
  .buy-now-btn:hover {
    background-color: #662d90;
    color: #ffffff; }

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999; }
  .preloader .preloader {
    width: 100px;
    height: 100px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px; }
    .preloader .preloader span {
      position: absolute;
      display: inline-block;
      width: 100px;
      height: 100px;
      border-radius: 100%;
      background-color: #662d90 !important;
      animation: preloader 1.3s linear infinite; }
      .preloader .preloader span:last-child {
        animation-delay: -0.8s; }

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5; }
  100% {
    transform: scale(1, 1);
    opacity: 0; } }
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0; } }
/*================================================
Navbar Area CSS
=================================================*/
.navbar {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px; }
  .navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    background-color: #ffffff !important;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; }
  .navbar .container-fluid {
    max-width: 1400px;
    margin: auto; }

.navbar-light {
  background-color: transparent !important; }
  .navbar-light .logo h3 {
    font-size: 35px;
    margin-bottom: 0; }
  .navbar-light .navbar-nav {
    margin: auto; }
    .navbar-light .navbar-nav .nav-item {
      position: relative;
      padding: 0; }
      .navbar-light .navbar-nav .nav-item span {
        display: block;
        font-size: 12px; }
      .navbar-light .navbar-nav .nav-item a {
        font-size: 18px;
        color: #000000;
        text-transform: capitalize;
        position: relative;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        font-weight: 600;
        margin-left: 14px;
        margin-right: 14px; }
        .navbar-light .navbar-nav .nav-item a:hover, .navbar-light .navbar-nav .nav-item a:focus, .navbar-light .navbar-nav .nav-item a.active {
          color: #662d90;
          position: relative;
          transition: 0.5s; }
        .navbar-light .navbar-nav .nav-item a i {
          font-size: 16px;
          position: relative;
          top: 2px;
          display: inline-block;
          margin-left: -4px;
          margin-right: -4px; }
      .navbar-light .navbar-nav .nav-item:last-child a {
        margin-right: 0; }
      .navbar-light .navbar-nav .nav-item:first-child a {
        margin-left: 0; }
      .navbar-light .navbar-nav .nav-item:hover a, .navbar-light .navbar-nav .nav-item.active a {
        color: #662d90;
        transition: 0.5s; }
  .navbar-light .others-option .option-item {
    color: #000000;
    display: inline-block;
    position: relative;
    line-height: 1; }
    .navbar-light .others-option .option-item .search-btn {
      cursor: pointer;
      transition: 0.5s;
      color: #000000;
      font-size: 20px;
      font-weight: 600; }
    .navbar-light .others-option .option-item .close-btn {
      cursor: pointer;
      display: none;
      transition: 0.5s;
      width: 20px;
      color: #000000;
      font-size: 18px; }
      .navbar-light .others-option .option-item .close-btn.active {
        display: block; }

/*================================================
Banner Area CSS
=================================================*/
.main-banner {
  position: relative;
  height: 800px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/main-banner.jpg);
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1; }
  .main-banner .container-fluid {
    max-width: 1400px;
    margin: auto; }
  .main-banner .banner-content h1 {
    font-size: 65px;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.3; }
  .main-banner .banner-content p {
    margin-bottom: 0;
    color: #646464;
    line-height: 1.8;
    font-size: 18px; }
  .main-banner .banner-content .banner-holder {
    margin-top: 30px; }
    .main-banner .banner-content .banner-holder a {
      margin-right: 10px; }
      .main-banner .banner-content .banner-holder a:last-child {
        margin-right: 0; }
  .main-banner .banner-content .banner-btn {
    margin-top: 30px; }
  .main-banner .banner-image {
    text-align: right; }
  .main-banner .banner-form {
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02);
    padding: 40px; }
    .main-banner .banner-form h3 {
      margin-bottom: 8px;
      font-size: 26px;
      text-align: center; }
    .main-banner .banner-form p {
      margin-bottom: 30px;
      text-align: center; }
    .main-banner .banner-form form .form-group {
      margin-bottom: 15px; }
    .main-banner .banner-form form .form-control {
      height: 55px;
      padding: 0 0 0 15px;
      line-height: initial;
      color: #333333;
      background-color: transparent;
      border: 1px solid #e5e0e0;
      border-radius: 0;
      -webkit-box-shadow: unset !important;
      box-shadow: unset !important;
      -webkit-transition: 0.5s;
      transition: 0.5s;
      font-size: 15px;
      font-weight: 400; }
      .main-banner .banner-form form .form-control:focus {
        border-color: #662d90; }
    .main-banner .banner-form form textarea.form-control {
      height: auto;
      padding-top: 15px; }
    .main-banner .banner-form form button {
      display: block;
      width: 100%;
      margin-top: 20px;
      color: #ffffff;
      background-color: #662d90;
      padding: 14px 25px;
      border: 1px solid #662d90;
      -webkit-transition: 0.5s;
      transition: 0.5s;
      text-transform: capitalize;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer; }
      .main-banner .banner-form form button:hover {
        border-color: #662d90;
        color: #662d90;
        background-color: transparent;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02); }

.default-shape .shape-1 {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: -1;
  animation: moveBounce 10s linear infinite; }
.default-shape .shape-2 {
  position: absolute;
  left: 10%;
  top: 16%;
  z-index: -1; }
  .default-shape .shape-2 img {
    animation-name: rotateMe;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }
.default-shape .shape-3 {
  position: absolute;
  left: 35%;
  bottom: 15%;
  z-index: -1;
  animation: animationFramesOne 30s infinite linear; }
.default-shape .shape-4 {
  position: absolute;
  right: 10%;
  top: 10%;
  z-index: -1;
  animation: animationFramesOne 30s infinite linear; }
.default-shape .shape-5 {
  position: absolute;
  left: 50%;
  top: 10%;
  z-index: -1;
  animation: animationFramesOne 30s infinite linear; }

@keyframes rotateMe {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg); }
  20% {
    transform: translate(73px, -1px) rotate(36deg); }
  40% {
    transform: translate(141px, 72px) rotate(72deg); }
  60% {
    transform: translate(83px, 122px) rotate(108deg); }
  80% {
    transform: translate(-40px, 72px) rotate(144deg); }
  100% {
    transform: translate(0px, 0px) rotate(0deg); } }
@keyframes animationFramesTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg); }
  20% {
    transform: translate(-73px, 1px) rotate(-36deg); }
  40% {
    transform: translate(-141px, -72px) rotate(-72deg); }
  60% {
    transform: translate(-83px, -122px) rotate(-108deg); }
  80% {
    transform: translate(40px, -72px) rotate(-144deg); }
  100% {
    transform: translate(0px, 0px) rotate(0deg); } }
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg); }
  100% {
    transform: rotateY(360deg); } }
@keyframes moveScale {
  0% {
    transform: scale(0.6); }
  50% {
    transform: scale(0.8); }
  100% {
    transform: scale(0.6); } }
@keyframes moveLeftBounce {
  0% {
    transform: translateX(0px); }
  50% {
    transform: translateX(20px); }
  100% {
    transform: translateX(0px); } }
@keyframes moveBounce {
  0% {
    transform: translateY(0px); }
  50% {
    transform: translateY(20px); }
  100% {
    transform: translateY(0px); } }
/*================================================
Fun Facts Area CSS
=================================================*/
.single-fun-fact {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  padding: 30px 40px;
  z-index: 1;
  transition: 0.5s; }
  .single-fun-fact .icon i {
    font-size: 50px;
    color: #662d90;
    line-height: 1;
    transition: 0.5s; }
  .single-fun-fact h3 {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0 5px 0;
    transition: 0.5s; }
  .single-fun-fact p {
    line-height: initial;
    margin: 0 0 0 0;
    transition: 0.5s;
    font-size: 18px;
    font-weight: 500; }
  .single-fun-fact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 0%;
    background: #662d90;
    border-radius: 0;
    transition: 0.5s; }
  .single-fun-fact:hover {
    border: 1px solid #662d90; }
    .single-fun-fact:hover::before {
      height: 100%; }
    .single-fun-fact:hover .icon i {
      color: #ffffff; }
    .single-fun-fact:hover h3 {
      color: #ffffff; }
      .single-fun-fact:hover h3 .sign-icon {
        color: #ffffff; }
    .single-fun-fact:hover p {
      color: #ffffff; }

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
  overflow: hidden; }

.about-content h3 {
  font-size: 40px;
  margin-bottom: 0; }
.about-content .bar {
  height: 4px;
  width: 85px;
  background: #662d90;
  margin: 20px auto 20px 0;
  position: relative;
  border-radius: 5px;
  overflow: hidden; }
  .about-content .bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #ffffff;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG; }
.about-content .about-btn {
  margin-top: 25px; }

/*================================================
Features Area CSS
=================================================*/
.features-area {
  position: relative;
  z-index: 1;
  overflow: hidden; }

.single-features {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  transition: 0.5s;
  border-radius: 5px; }
  .single-features .icon i {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: #662d90;
    color: #ffffff;
    font-size: 25px;
    border-radius: 50px;
    transition: 0.5s; }
  .single-features h3 {
    font-size: 25px;
    margin-top: 25px;
    margin-bottom: 12px;
    transition: 0.5s; }
  .single-features p {
    margin-bottom: 0;
    transition: 0.5s; }
  .single-features::before {
    top: 50%;
    left: 50%;
    width: 0%;
    z-index: -1;
    height: 100%;
    content: "";
    position: absolute;
    transition: all 0.3s ease-in-out;
    background-color: #662d90;
    transform: translate(-50%, -50%);
    border-radius: 5px; }
  .single-features:hover {
    transform: translateY(-10px); }
    .single-features:hover::before {
      width: 100%; }
    .single-features:hover .icon i {
      background-color: #ffffff;
      color: #662d90; }
    .single-features:hover h3 {
      color: #ffffff; }
    .single-features:hover p {
      color: #ffffff; }

/*================================================
Screenshot Area CSS
=================================================*/
.screenshot-area {
  background-image: url(../../assets/img/screenshot.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1; }
  .screenshot-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .77; }
  .screenshot-area .section-title h2 {
    color: #ffffff; }
  .screenshot-area .section-title p {
    color: #ffffff; }
  .screenshot-area .section-title .bar {
    background: #ffffff; }
    .screenshot-area .section-title .bar::before {
      background: #662d90; }

.screenshot-slider.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  background-color: transparent;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #662d90;
  position: relative; }
  .screenshot-slider.owl-theme .owl-dots .owl-dot span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #662d90;
    border-radius: 50%;
    margin: 4px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: scale(0); }
.screenshot-slider.owl-theme .owl-dots .owl-dot:hover span::before, .screenshot-slider.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1); }
.screenshot-slider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px; }

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-area {
  position: relative;
  z-index: 1;
  overflow: hidden; }

.testimonial-slides {
  position: relative; }
  .testimonial-slides .client-feedback {
    position: relative; }
    .testimonial-slides .client-feedback .single-feedback {
      text-align: center;
      position: relative;
      margin-bottom: 35px; }
      .testimonial-slides .client-feedback .single-feedback p {
        position: relative;
        max-width: 750px;
        line-height: 1.5;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        font-size: 25px;
        font-weight: normal;
        font-style: italic; }
      .testimonial-slides .client-feedback .single-feedback .icon i {
        font-size: 65px;
        color: #662d90;
        margin-bottom: 20px; }
  .testimonial-slides .client-thumbnails {
    position: relative;
    max-width: 450px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto; }
    .testimonial-slides .client-thumbnails .item .img-fill {
      cursor: pointer;
      position: relative;
      text-align: center; }
      .testimonial-slides .client-thumbnails .item .img-fill img {
        opacity: 0.7;
        transition: 0.5s;
        display: inline-block;
        position: relative;
        border-radius: 50%;
        width: 85px;
        transform: scale(0.9); }
    .testimonial-slides .client-thumbnails .item .title {
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
      margin: 20px -100px 0;
      text-align: center; }
      .testimonial-slides .client-thumbnails .item .title h3 {
        margin-bottom: 0;
        text-transform: capitalize;
        font-size: 22px; }
      .testimonial-slides .client-thumbnails .item .title span {
        display: block;
        color: #662d90;
        font-size: 14px;
        margin-top: 8px; }
    .testimonial-slides .client-thumbnails .item.slick-center .title {
      opacity: 1;
      visibility: visible; }
    .testimonial-slides .client-thumbnails .item.slick-center .img-fill img {
      opacity: 1;
      transform: scale(1); }
  .testimonial-slides .next-arrow, .testimonial-slides .prev-arrow {
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #bcbcbc;
    z-index: 1;
    border-radius: 50%;
    outline: 0 !important;
    transition: 0.5s;
    opacity: 0;
    font-size: 25px;
    visibility: hidden; }
    .testimonial-slides .next-arrow:hover, .testimonial-slides .prev-arrow:hover {
      color: #662d90; }
  .testimonial-slides .next-arrow {
    right: -20px; }
  .testimonial-slides .prev-arrow {
    left: -20px; }
  .testimonial-slides:hover .next-arrow, .testimonial-slides:hover .prev-arrow {
    opacity: 1;
    visibility: visible; }
  .testimonial-slides .slick-list {
    padding-left: 0 !important;
    padding-right: 0 !important; }

.slick-slide {
  outline: 0; }

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
  background-color: #f3f3f3; }

.overview-content h3 {
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1.4; }
.overview-content p {
  margin-bottom: 0; }
.overview-content .bar {
  height: 4px;
  width: 85px;
  background: #662d90;
  margin: 20px auto 20px 0;
  position: relative;
  border-radius: 5px;
  overflow: hidden; }
  .overview-content .bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #ffffff;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG; }
.overview-content .overview-btn {
  margin-top: 25px; }
  .overview-content .overview-btn .default-btn {
    padding: 12px 25px; }

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
  overflow: hidden; }

.single-pricing-table {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  padding-bottom: 30px;
  border-radius: 5px;
  transition: 0.5s; }
  .single-pricing-table .pricing-header {
    padding-top: 25px;
    padding-bottom: 20px; }
    .single-pricing-table .pricing-header h3 {
      font-size: 25px;
      margin-bottom: 0;
      transition: 0.5s; }
  .single-pricing-table .price {
    transition: 0.5s;
    padding-top: 8px;
    padding-bottom: 5px;
    border-top: 1px dashed #f3f3f3;
    border-bottom: 1px dashed #f3f3f3;
    font-size: 50px;
    font-weight: bold;
    color: #000000;
    transition: 0.5s; }
    .single-pricing-table .price sup {
      top: -18px;
      font-size: 30px;
      font-weight: bold;
      transition: 0.5s;
      color: #000000; }
    .single-pricing-table .price sub {
      bottom: 2px;
      color: #000000;
      font-size: 18px;
      font-weight: 600;
      transition: 0.5s; }
  .single-pricing-table .pricing-features {
    padding-left: 0;
    text-align: center;
    list-style-type: none;
    margin-top: 30px;
    margin-bottom: 0;
    margin-left: 50px;
    margin-right: 50px; }
    .single-pricing-table .pricing-features li {
      margin-bottom: 10px;
      position: relative;
      color: #000000;
      font-size: 16px;
      font-weight: 600;
      transition: 0.5s;
      font-family: "Nunito", sans-serif; }
      .single-pricing-table .pricing-features li:last-child {
        margin-bottom: 0; }
      .single-pricing-table .pricing-features li i {
        font-size: 14px;
        margin-right: 2px; }
  .single-pricing-table .pricing-btn {
    margin-top: 30px; }
    .single-pricing-table .pricing-btn .default-btn {
      padding: 10px 25px;
      transition: 0.5s; }
  .single-pricing-table:hover {
    transform: translateY(-10px);
    background-color: #662d90; }
    .single-pricing-table:hover .pricing-header h3 {
      color: #ffffff; }
    .single-pricing-table:hover .price {
      color: #ffffff; }
      .single-pricing-table:hover .price sup {
        color: #ffffff; }
      .single-pricing-table:hover .price sub {
        color: #ffffff; }
    .single-pricing-table:hover .pricing-features li {
      color: #ffffff; }
    .single-pricing-table:hover .pricing-btn .default-btn {
      background-color: #ffffff;
      color: #662d90; }

.pricing-list-tab .tabs {
  text-align: center;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 40px; }
  .pricing-list-tab .tabs li {
    display: inline-block; }
    .pricing-list-tab .tabs li a {
      display: block;
      background-color: #ffffff;
      box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
      color: #000000;
      padding: 14px 30px;
      position: relative;
      font-size: 18px;
      font-weight: bold;
      border-radius: 5px; }
    .pricing-list-tab .tabs li.current a {
      color: #ffffff;
      background-color: #662d90; }

.tab .tabs_item {
  display: none; }
  .tab .tabs_item:first-child {
    display: block; }

/*================================================
Faq Area CSS
=================================================*/
.faq-area {
  position: relative;
  z-index: 1;
  overflow: hidden; }

.faq-accordion-content .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0; }
  .faq-accordion-content .accordion .accordion-item {
    display: block;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    background: #ffffff;
    margin-bottom: 10px; }
    .faq-accordion-content .accordion .accordion-item:last-child {
      margin-bottom: 0; }
  .faq-accordion-content .accordion .accordion-title {
    padding: 18px 20px 18px 55px;
    color: #000000;
    position: relative;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    display: block;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bold; }
    .faq-accordion-content .accordion .accordion-title i {
      position: absolute;
      left: 0;
      top: 0;
      width: 40px;
      text-align: center;
      height: 100%;
      background: #662d90;
      color: #ffffff; }
      .faq-accordion-content .accordion .accordion-title i::before {
        position: absolute;
        left: 0;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        font-size: 18px; }
    .faq-accordion-content .accordion .accordion-title.active {
      border-bottom-color: #eeeeee; }
      .faq-accordion-content .accordion .accordion-title.active i {
        transform: rotate(180deg); }
  .faq-accordion-content .accordion .accordion-content {
    display: none;
    position: relative;
    padding: 15px;
    font-size: 15px; }
    .faq-accordion-content .accordion .accordion-content.show {
      display: block; }

/*================================================
Team Area CSS
=================================================*/
.team-area {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
  overflow: hidden; }

.single-team {
  text-align: center;
  position: relative;
  margin-bottom: 30px; }
  .single-team .image {
    position: relative;
    overflow: hidden;
    transition: 0.5s; }
    .single-team .image .social {
      position: absolute;
      top: 50px;
      right: 20px;
      margin: 0;
      padding: 0;
      list-style: none; }
      .single-team .image .social li {
        transform: translateY(30px);
        transition: all 0.3s ease-in-out 0s;
        opacity: 0;
        visibility: hidden;
        transform: perspective(1000px) rotateY(90deg);
        margin-bottom: 8px; }
        .single-team .image .social li:last-child {
          margin-bottom: 0; }
        .single-team .image .social li a {
          display: block;
          width: 40px;
          height: 40px;
          background-color: #ffffff;
          box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
          text-align: center;
          position: relative;
          font-size: 16px;
          color: #662d90;
          border-radius: 30px;
          transition: 0.5s; }
          .single-team .image .social li a i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-left: auto;
            margin-right: auto; }
          .single-team .image .social li a:hover {
            color: #ffffff;
            background-color: #662d90; }
        .single-team .image .social li:nth-child(1) {
          transition-delay: 0.2s; }
        .single-team .image .social li:nth-child(2) {
          transition-delay: 0.3s; }
        .single-team .image .social li:nth-child(3) {
          transition-delay: 0.4s; }
        .single-team .image .social li:nth-child(4) {
          transition-delay: 0.5s; }
    .single-team .image .content {
      background: #ffffff;
      box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
      transition: 0.5s;
      transform-origin: bottom;
      text-align: center;
      padding: 30px;
      position: relative;
      z-index: 1; }
      .single-team .image .content h3 {
        margin-bottom: 5px;
        font-size: 28px;
        color: #000000;
        transition: 0.5s; }
      .single-team .image .content p {
        font-size: 16px;
        margin-top: 6px;
        transition: 0.5s; }
  .single-team:hover .image .social li {
    transform: translateY(0);
    opacity: 1;
    visibility: visible; }
  .single-team:hover .image .content {
    background-color: #662d90; }
    .single-team:hover .image .content h3 {
      color: #ffffff; }
    .single-team:hover .image .content p {
      color: #ffffff; }

/*================================================
App Download Area CSS
=================================================*/
.app-download {
  background-image: url(../../assets/img/download-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1; }
  .app-download::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .77; }

.app-download-content {
  text-align: center;
  max-width: 800px;
  margin: auto; }
  .app-download-content h3 {
    font-size: 50px;
    margin-bottom: 0;
    color: #ffffff; }
  .app-download-content .bar {
    height: 4px;
    width: 85px;
    background: #ffffff;
    margin: 20px auto 20px;
    position: relative;
    border-radius: 5px;
    overflow: hidden; }
    .app-download-content .bar::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 5px;
      background: #662d90;
      animation-duration: 2s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      animation-name: MOVE-BG; }
  .app-download-content p {
    margin-bottom: 0;
    color: #ffffff; }
  .app-download-content .app-holder {
    margin-top: 30px; }
    .app-download-content .app-holder a {
      margin-right: 10px; }
      .app-download-content .app-holder a:last-child {
        margin-right: 0; }

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
  overflow: hidden; }

.single-blog {
  transition: 0.5s;
  position: relative;
  margin-bottom: 30px; }
  .single-blog .image {
    position: relative; }
    .single-blog .image .btn {
      background-color: #662d90;
      display: inline-block;
      position: absolute;
      right: 14px;
      bottom: 0;
      border-radius: 0;
      padding: 8px 20px;
      transition: 0.5s;
      border: none; }
      .single-blog .image .btn a {
        color: #ffffff; }
  .single-blog .content {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 25px; }
    .single-blog .content h3 {
      font-size: 25px;
      line-height: 1.5;
      margin-bottom: 10px;
      transition: 0.5s; }
      .single-blog .content h3 a {
        color: #000000; }
    .single-blog .content p {
      margin-bottom: 0; }
    .single-blog .content .read-more {
      font-size: 16px;
      display: inline-block;
      color: #662d90;
      font-weight: 500;
      margin-top: 12px;
      transition: 0.5s; }
      .single-blog .content .read-more i {
        font-size: 14px;
        margin-left: 5px; }
    .single-blog .content .post-meta {
      padding-left: 0;
      margin-bottom: 10px; }
      .single-blog .content .post-meta li {
        list-style-type: none;
        display: inline-block;
        font-size: 16px;
        color: #767676;
        margin-right: 20px;
        font-weight: 400; }
        .single-blog .content .post-meta li:last-child {
          margin-right: 0; }
      .single-blog .content .post-meta a {
        color: #767676;
        transition: 0.5s; }
      .single-blog .content .post-meta i {
        color: #662d90;
        margin-right: 5px; }
  .single-blog:hover {
    transform: translateY(-10px); }
    .single-blog:hover .content h3 a {
      color: #662d90; }
    .single-blog:hover .content .read-more {
      color: #662d90;
      letter-spacing: 1px; }
    .single-blog:hover .image .btn {
      right: 0;
      background-color: #ffffff; }
      .single-blog:hover .image .btn a {
        color: #662d90; }

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
  overflow: hidden; }

.contact-form form .form-group {
  margin-bottom: 15px; }
.contact-form form .form-control {
  height: 55px;
  padding: 0 15px;
  line-height: initial;
  color: #000000;
  background-color: transparent;
  border: 1px solid #cecfdf;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: unset !important;
  font-size: 15px;
  font-weight: 500; }
  .contact-form form .form-control:focus {
    border-color: #662d90; }
  .contact-form form .form-control::placeholder {
    color: #999999; }
.contact-form form textarea.form-control {
  height: auto !important;
  padding-top: 15px; }
.contact-form .send-btn {
  margin-top: 10px; }
  .contact-form .send-btn .default-btn {
    padding: 12px 25px; }
.contact-form .with-errors ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0; }
  .contact-form .with-errors ul li {
    color: red; }
.contact-form #msgSubmit {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500; }
  .contact-form #msgSubmit.text-danger {
    margin-top: 20px !important; }

.contact-info .contact-info-content h3 {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.5; }
.contact-info .contact-info-content h2 {
  margin-bottom: 20px; }
  .contact-info .contact-info-content h2 a {
    display: inline-block;
    color: #662d90;
    text-transform: lowercase;
    font-size: 20px; }
    .contact-info .contact-info-content h2 a:hover {
      color: #000000; }
    .contact-info .contact-info-content h2 a:not(:first-child) {
      color: #000000; }
      .contact-info .contact-info-content h2 a:not(:first-child):hover {
        color: #662d90; }
  .contact-info .contact-info-content h2 span {
    display: block;
    color: #646464;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px; }
.contact-info .contact-info-content .social {
  padding-left: 0;
  list-style-type: none; }
  .contact-info .contact-info-content .social li {
    display: inline-block;
    margin: 0 2px; }
    .contact-info .contact-info-content .social li a {
      width: 40px;
      display: block;
      height: 40px;
      border: 1px solid #dadada;
      border-radius: 50%;
      color: #646464;
      font-size: 15px;
      position: relative;
      text-align: center; }
      .contact-info .contact-info-content .social li a i {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-left: auto;
        margin-right: auto; }
      .contact-info .contact-info-content .social li a:hover {
        color: #ffffff;
        border-color: #662d90;
        background-color: #662d90; }

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  position: relative;
  z-index: 1;
  background-image: url(../../assets/img/subscribe-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  .subscribe-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .77; }

.subscribe-content h2 {
  font-size: 40px;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.4; }

.newsletter-form {
  max-width: 580px;
  position: relative;
  margin-left: auto;
  margin-right: auto; }
  .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    background-color: #ffffff;
    border: none;
    height: 70px;
    padding-left: 25px;
    border-radius: 5px;
    outline: 0;
    color: #000000; }
    .newsletter-form .input-newsletter::placeholder {
      color: #646464; }
  .newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    background-color: #662d90;
    color: #ffffff;
    border: none;
    height: 62px;
    padding: 0 30px;
    border-radius: 10px;
    transition: 0.5s;
    line-height: 50px;
    text-transform: capitalize;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400; }
    .newsletter-form button:hover {
      background-color: #000000;
      color: #ffffff; }
  .newsletter-form #validator-newsletter {
    color: red;
    position: relative;
    top: 8px;
    font-size: 16px;
    font-weight: 500; }

/*================================================
Banner Area Two CSS
=================================================*/
.main-banner-two {
  position: relative;
  height: 850px;
  z-index: 1;
  background-image: url(../../assets/img/main-banner2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  .main-banner-two::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .77; }
  .main-banner-two .banner-content {
    text-align: center;
    max-width: 800px;
    margin: auto; }
    .main-banner-two .banner-content h1 {
      font-size: 65px;
      color: #ffffff;
      margin: 0 0 10px 0;
      line-height: 1.3; }
    .main-banner-two .banner-content p {
      margin-bottom: 0;
      color: #ffffff;
      line-height: 1.8;
      font-size: 18px; }
    .main-banner-two .banner-content .banner-form {
      position: relative;
      margin-top: 30px; }
      .main-banner-two .banner-content .banner-form .input-newsletter {
        display: block;
        width: 100%;
        background-color: #ffffff;
        border: none;
        height: 70px;
        padding-left: 25px;
        border-radius: 5px;
        outline: 0;
        color: #000000; }
        .main-banner-two .banner-content .banner-form .input-newsletter::placeholder {
          color: #646464; }
      .main-banner-two .banner-content .banner-form button {
        position: absolute;
        right: 4px;
        top: 4px;
        background-color: #662d90;
        color: #ffffff;
        border: none;
        height: 62px;
        padding: 0 30px;
        border-radius: 10px;
        transition: 0.5s;
        line-height: 50px;
        text-transform: capitalize;
        cursor: pointer;
        font-size: 16px;
        font-weight: 400; }
        .main-banner-two .banner-content .banner-form button:hover {
          background-color: #000000;
          color: #ffffff; }
      .main-banner-two .banner-content .banner-form #validator-newsletter {
        color: red;
        position: relative;
        top: 8px;
        font-size: 16px;
        font-weight: 500; }

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1; }

/*================================================
Video Area CSS
=================================================*/
.video-content {
  text-align: center;
  background-image: url(../../assets/img/subscribe-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  background-attachment: fixed;
  z-index: 1; }
  .video-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.6; }
  .video-content h3 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #ffffff; }
  .video-content .video-btn {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #662d90;
    position: relative;
    z-index: 1; }
    .video-content .video-btn i {
      font-size: 30px;
      position: relative;
      top: 2px;
      left: 4px; }
    .video-content .video-btn::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      z-index: -1;
      bottom: 0;
      left: 0;
      border-radius: 50%;
      border: 1px solid #ffffff;
      -webkit-animation: ripple 2s linear 1s infinite;
      animation: ripple 2s linear 1s infinite; }
    .video-content .video-btn::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      z-index: -1;
      bottom: 0;
      left: 0;
      border-radius: 50%;
      border: 1px solid #ffffff;
      -webkit-animation: ripple 2s linear infinite;
      animation: ripple 2s linear infinite; }
    .video-content .video-btn:hover, .video-content .video-btn .video-content .video-btn:focus {
      background-color: #662d90;
      color: #ffffff; }

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1; }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0; } }
/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  background-attachment: fixed;
  background-image: url(../../assets/img/main-banner.jpg);
  overflow: hidden; }

.page-title-content {
  text-align: center;
  margin-top: 0; }
  .page-title-content h2 {
    margin-bottom: 0;
    color: #000000;
    font-size: 50px; }
  .page-title-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 12px;
    margin-bottom: 0; }
    .page-title-content ul li {
      color: #000000;
      display: inline-block;
      position: relative;
      font-weight: 400;
      font-size: 17px;
      margin-left: 10px;
      margin-right: 10px; }
      .page-title-content ul li a {
        display: inline-block;
        color: #000000;
        transition: 0.5s; }
        .page-title-content ul li a:hover {
          color: #662d90; }
      .page-title-content ul li::before {
        content: '';
        position: absolute;
        right: -15px;
        top: 11px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #662d90; }
      .page-title-content ul li:last-child::before {
        display: none; }

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center; }
  .pagination-area .page-numbers {
    width: 45px;
    height: 45px;
    margin: 0 3px;
    display: inline-block;
    background-color: #ffffff;
    line-height: 48px;
    color: #000000;
    box-shadow: 0 2px 10px 0 #d8dde6;
    font-size: 18px;
    font-weight: 700; }
    .pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
      background: #662d90;
      color: #ffffff;
      box-shadow: 0 2px 10px 0 #d8dde6; }

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px; }
  .blog-details-desc .article-content .entry-meta {
    margin-bottom: -8px; }
    .blog-details-desc .article-content .entry-meta ul {
      padding-left: 0;
      margin-bottom: 0;
      list-style-type: none; }
      .blog-details-desc .article-content .entry-meta ul li {
        position: relative;
        display: inline-block;
        color: #000000;
        margin-right: 21px;
        font-family: "Nunito", sans-serif; }
        .blog-details-desc .article-content .entry-meta ul li span {
          display: inline-block;
          color: #000000;
          font-weight: 500; }
        .blog-details-desc .article-content .entry-meta ul li a {
          display: inline-block;
          color: #646464; }
          .blog-details-desc .article-content .entry-meta ul li a:hover {
            color: #662d90; }
        .blog-details-desc .article-content .entry-meta ul li i {
          color: #662d90;
          margin-right: 2px; }
        .blog-details-desc .article-content .entry-meta ul li::before {
          content: '';
          position: absolute;
          top: 12px;
          right: -15px;
          width: 6px;
          height: 1px;
          background: #662d90; }
        .blog-details-desc .article-content .entry-meta ul li:last-child {
          margin-right: 0; }
          .blog-details-desc .article-content .entry-meta ul li:last-child::before {
            display: none; }
  .blog-details-desc .article-content h3 {
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 30px; }
  .blog-details-desc .article-content .wp-block-gallery.columns-3 {
    padding-left: 0;
    list-style-type: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 30px;
    margin-top: 30px; }
    .blog-details-desc .article-content .wp-block-gallery.columns-3 li {
      -ms-flex: 0 0 33.3333%;
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
      padding-right: 10px;
      padding-left: 10px; }
      .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
        margin-bottom: 0; }
  .blog-details-desc .article-content .features-list {
    padding-left: 0;
    list-style-type: none;
    margin-top: 25px;
    margin-bottom: 30px; }
    .blog-details-desc .article-content .features-list li {
      margin-bottom: 16px;
      position: relative;
      padding-left: 34px;
      color: #646464;
      font-family: "Nunito", sans-serif; }
      .blog-details-desc .article-content .features-list li i {
        width: 25px;
        height: 25px;
        line-height: 25px;
        text-align: center;
        border-radius: 40px;
        background-color: #faf5f5;
        color: #662d90;
        transition: 0.5s;
        display: inline-block;
        font-size: 11px;
        position: absolute;
        left: 0;
        top: -2px; }
      .blog-details-desc .article-content .features-list li:hover i {
        background-color: #662d90;
        color: #ffffff; }
      .blog-details-desc .article-content .features-list li:last-child {
        margin-bottom: 0; }
.blog-details-desc .article-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px; }
  .blog-details-desc .article-footer .article-tags {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    color: #646464; }
    .blog-details-desc .article-footer .article-tags span {
      display: inline-block;
      color: #000000;
      font-size: 20px;
      margin-right: 5px;
      position: relative;
      top: 2px; }
    .blog-details-desc .article-footer .article-tags a {
      display: inline-block;
      color: #646464;
      font-family: "Nunito", sans-serif; }
      .blog-details-desc .article-footer .article-tags a:hover {
        color: #662d90; }
  .blog-details-desc .article-footer .article-share {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%; }
    .blog-details-desc .article-footer .article-share .social {
      padding-left: 0;
      list-style-type: none;
      text-align: right;
      margin-bottom: 0; }
      .blog-details-desc .article-footer .article-share .social li {
        display: inline-block; }
        .blog-details-desc .article-footer .article-share .social li span {
          display: inline-block;
          margin-right: 2px;
          font-weight: 500;
          color: #646464;
          font-family: "Nunito", sans-serif; }
        .blog-details-desc .article-footer .article-share .social li a {
          display: block;
          color: #662d90;
          width: 30px;
          height: 30px;
          line-height: 34px;
          border-radius: 50%;
          background-color: #eeeef0;
          text-align: center;
          font-size: 12px; }
          .blog-details-desc .article-footer .article-share .social li a:hover {
            color: #ffffff;
            background-color: #662d90;
            transform: translateY(-2px); }

blockquote, .blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px; }
  blockquote p, .blockquote p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 24px !important; }
  blockquote cite, .blockquote cite {
    display: none; }
  blockquote::after, .blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #662d90;
    margin-top: 20px;
    margin-bottom: 20px; }

.post-navigation {
  margin-top: 30px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px; }
  .post-navigation .navigation-links {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .post-navigation .navigation-links .nav-previous {
      -ms-flex: 0 0 50%;
      -webkit-box-flex: 0;
      flex: 0 0 50%;
      max-width: 50%; }
      .post-navigation .navigation-links .nav-previous a i {
        margin-right: 2px;
        transition: 0.5s; }
      .post-navigation .navigation-links .nav-previous a:hover i {
        margin-right: 0; }
    .post-navigation .navigation-links .nav-next {
      -ms-flex: 0 0 50%;
      -webkit-box-flex: 0;
      flex: 0 0 50%;
      max-width: 50%;
      text-align: right; }
      .post-navigation .navigation-links .nav-next a i {
        margin-left: 2px;
        transition: 0.5s; }
      .post-navigation .navigation-links .nav-next a:hover i {
        margin-left: 0; }
    .post-navigation .navigation-links div a {
      display: inline-block;
      font-family: "Nunito", sans-serif;
      font-weight: 600; }

.comments-area {
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff; }
  .comments-area .comments-title {
    position: relative;
    margin-bottom: 30px;
    line-height: initial;
    font-size: 30px; }
  .comments-area ol, .comments-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none; }
  .comments-area .comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none; }
  .comments-area .comment-body {
    border-bottom: 1px solid #eeeeee;
    padding-left: 115px;
    color: #000000;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px; }
    .comments-area .comment-body .reply {
      margin-top: 15px; }
      .comments-area .comment-body .reply a {
        border: 1px solid #ded9d9;
        color: #000000;
        display: inline-block;
        padding: 5px 20px;
        border-radius: 30px;
        text-transform: capitalize;
        position: relative;
        z-index: 1;
        font-family: "Nunito", sans-serif;
        font-size: 14px;
        font-weight: 400; }
        .comments-area .comment-body .reply a:hover {
          color: #ffffff;
          background-color: #662d90;
          border-color: #662d90; }
  .comments-area .comment-author {
    font-size: 18px;
    margin-bottom: 0.1em;
    position: relative;
    z-index: 2; }
    .comments-area .comment-author .avatar {
      height: 100px;
      left: -115px;
      position: absolute;
      width: 100px;
      border-radius: 50px; }
    .comments-area .comment-author .fn {
      font-size: 20px; }
    .comments-area .comment-author .says {
      display: none; }
  .comments-area .comment-metadata {
    margin-bottom: .8em;
    color: #646464;
    letter-spacing: 0.01em;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 400; }
    .comments-area .comment-metadata a {
      color: #646464; }
      .comments-area .comment-metadata a:hover {
        color: #662d90; }
  .comments-area .comment-respond {
    margin-top: 30px; }
    .comments-area .comment-respond .comment-reply-title {
      margin-bottom: 0;
      position: relative;
      font-size: 30px; }
      .comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
        display: inline-block; }
    .comments-area .comment-respond .comment-form {
      overflow: hidden; }
    .comments-area .comment-respond .comment-notes {
      margin-bottom: 0;
      margin-top: 10px; }
    .comments-area .comment-respond .comment-form-comment {
      margin-top: 15px;
      float: left;
      width: 100%; }
    .comments-area .comment-respond label {
      display: block;
      font-weight: 400;
      color: #000000;
      margin-bottom: 5px; }
    .comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
      display: block;
      width: 100%;
      background-color: #ffffff;
      border: 1px solid #eeeeee;
      padding: 0.625em 0.7375em;
      outline: 0;
      transition: 0.5s; }
      .comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
        border-color: #662d90; }
    .comments-area .comment-respond .comment-form-author {
      float: left;
      width: 50%;
      padding-right: 10px;
      margin-bottom: 20px; }
    .comments-area .comment-respond .comment-form-email {
      float: left;
      width: 50%;
      padding-left: 12px;
      margin-bottom: 20px; }
    .comments-area .comment-respond .comment-form-url {
      float: left;
      width: 100%;
      margin-bottom: 20px; }
    .comments-area .comment-respond .comment-form-cookies-consent {
      width: 100%;
      float: left;
      position: relative;
      padding-left: 20px;
      margin-bottom: 20px; }
      .comments-area .comment-respond .comment-form-cookies-consent input {
        position: absolute;
        left: 0;
        top: 4px; }
      .comments-area .comment-respond .comment-form-cookies-consent label {
        display: inline-block;
        margin: 0;
        color: #646464;
        font-weight: normal;
        position: relative;
        top: -2px; }
    .comments-area .comment-respond .form-submit {
      float: left;
      width: 100%; }
      .comments-area .comment-respond .form-submit input {
        background: #662d90;
        border: none;
        color: #ffffff;
        padding: 15px 30px;
        display: inline-block;
        cursor: pointer;
        outline: 0;
        border-radius: 0;
        text-transform: capitalize;
        transition: 0.5s;
        font-weight: 500;
        font-size: 16px; }
        .comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
          color: #ffffff;
          background-color: #000000; }

/*================================================
Sidebar Widget Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px; }
  .widget-area .widget:first-child {
    margin-top: 0; }
  .widget-area .widget .widget-title {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-transform: capitalize;
    position: relative;
    font-size: 25px; }
    .widget-area .widget .widget-title::before {
      content: '';
      position: absolute;
      background: #662d90;
      bottom: -1px;
      left: 0;
      width: 50px;
      height: 1px; }
.widget-area .widget_search {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 15px; }
  .widget-area .widget_search form {
    position: relative; }
    .widget-area .widget_search form label {
      display: block;
      margin-bottom: 0; }
    .widget-area .widget_search form .screen-reader-text {
      display: none; }
    .widget-area .widget_search form .search-field {
      background-color: transparent;
      height: 50px;
      padding: 6px 15px;
      border: 1px solid #eeeeee;
      width: 100%;
      display: block;
      outline: 0;
      transition: 0.5s; }
      .widget-area .widget_search form .search-field:focus {
        border-color: #662d90; }
    .widget-area .widget_search form button {
      position: absolute;
      right: 0;
      outline: 0;
      bottom: 0;
      height: 50px;
      width: 50px;
      z-index: 1;
      border: none;
      color: #ffffff;
      background-color: #662d90;
      transition: 0.5s; }
      .widget-area .widget_search form button:hover {
        background-color: #000000;
        color: #ffffff; }
.widget-area .widget_colugo_posts_thumb {
  position: relative;
  overflow: hidden; }
  .widget-area .widget_colugo_posts_thumb .item {
    overflow: hidden;
    margin-bottom: 15px; }
    .widget-area .widget_colugo_posts_thumb .item:last-child {
      margin-bottom: 0; }
    .widget-area .widget_colugo_posts_thumb .item .thumb {
      float: left;
      height: 80px;
      overflow: hidden;
      position: relative;
      width: 80px;
      margin-right: 15px; }
      .widget-area .widget_colugo_posts_thumb .item .thumb .fullimage {
        width: 80px;
        height: 80px;
        display: inline-block;
        background-size: cover !important;
        background-repeat: no-repeat;
        background-position: center center !important; }
        .widget-area .widget_colugo_posts_thumb .item .thumb .fullimage.bg1 {
          background-image: url(../../assets/img/blog/image4.jpg); }
        .widget-area .widget_colugo_posts_thumb .item .thumb .fullimage.bg2 {
          background-image: url(../../assets/img/blog/image5.jpg); }
        .widget-area .widget_colugo_posts_thumb .item .thumb .fullimage.bg3 {
          background-image: url(../../assets/img/blog/image6.jpg); }
    .widget-area .widget_colugo_posts_thumb .item .info {
      overflow: hidden;
      margin-top: 5px; }
      .widget-area .widget_colugo_posts_thumb .item .info time {
        display: block;
        color: #646464;
        text-transform: capitalize;
        font-family: "Nunito", sans-serif;
        margin-top: -2px;
        margin-bottom: 3px;
        font-size: 14px; }
      .widget-area .widget_colugo_posts_thumb .item .info .title {
        margin-bottom: 0;
        line-height: 1.4;
        font-size: 18px; }
        .widget-area .widget_colugo_posts_thumb .item .info .title a {
          display: inline-block;
          font-family: "Nunito", sans-serif; }
.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none; }
  .widget-area .widget_categories ul li {
    position: relative;
    margin-bottom: 12px;
    color: #646464;
    padding-left: 14px;
    font-family: "Nunito", sans-serif;
    font-size: 15.5px;
    font-weight: 400; }
    .widget-area .widget_categories ul li:last-child {
      margin-bottom: 0; }
    .widget-area .widget_categories ul li::before {
      background: #662d90;
      height: 8px;
      width: 8px;
      content: '';
      left: 0;
      top: 8px;
      position: absolute;
      border-radius: 30px; }
    .widget-area .widget_categories ul li a {
      color: #000000;
      display: block; }
      .widget-area .widget_categories ul li a:hover {
        color: #662d90; }
    .widget-area .widget_categories ul li .post-count {
      float: right; }
.widget-area .widget_recent_comments ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none; }
  .widget-area .widget_recent_comments ul li {
    position: relative;
    margin-bottom: 12px;
    color: #646464;
    padding-left: 14px;
    line-height: 1.5;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 15.5px; }
    .widget-area .widget_recent_comments ul li:last-child {
      margin-bottom: 0; }
    .widget-area .widget_recent_comments ul li::before {
      background: #662d90;
      position: absolute;
      height: 8px;
      width: 8px;
      content: '';
      left: 0;
      top: 8px;
      border-radius: 30px; }
    .widget-area .widget_recent_comments ul li a {
      display: inline-block;
      color: #000000; }
      .widget-area .widget_recent_comments ul li a:hover {
        color: #662d90; }
.widget-area .widget_recent_entries ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none; }
  .widget-area .widget_recent_entries ul li {
    position: relative;
    margin-bottom: 12px;
    color: #646464;
    padding-left: 14px;
    font-family: "Nunito", sans-serif;
    font-size: 15.5px;
    font-weight: 400; }
    .widget-area .widget_recent_entries ul li:last-child {
      margin-bottom: 0; }
    .widget-area .widget_recent_entries ul li::before {
      background: #662d90;
      height: 8px;
      width: 8px;
      content: '';
      left: 0;
      top: 8px;
      position: absolute;
      border-radius: 30px; }
    .widget-area .widget_recent_entries ul li a {
      color: #000000;
      display: block; }
      .widget-area .widget_recent_entries ul li a:hover {
        color: #662d90; }
    .widget-area .widget_recent_entries ul li .post-count {
      float: right; }
.widget-area .widget_meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none; }
  .widget-area .widget_meta ul li {
    position: relative;
    margin-bottom: 12px;
    color: #646464;
    padding-left: 14px;
    font-family: "Nunito", sans-serif;
    font-size: 15.5px;
    font-weight: 400; }
    .widget-area .widget_meta ul li:last-child {
      margin-bottom: 0; }
    .widget-area .widget_meta ul li::before {
      background: #662d90;
      height: 8px;
      width: 8px;
      content: '';
      left: 0;
      top: 8px;
      position: absolute;
      border-radius: 30px; }
    .widget-area .widget_meta ul li a {
      color: #000000;
      display: block; }
      .widget-area .widget_meta ul li a:hover {
        color: #662d90; }
    .widget-area .widget_meta ul li .post-count {
      float: right; }
.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none; }
  .widget-area .widget_archive ul li {
    position: relative;
    margin-bottom: 12px;
    color: #646464;
    padding-left: 14px;
    font-family: "Nunito", sans-serif;
    font-size: 15.5px;
    font-weight: 400; }
    .widget-area .widget_archive ul li:last-child {
      margin-bottom: 0; }
    .widget-area .widget_archive ul li::before {
      background: #662d90;
      height: 8px;
      width: 8px;
      content: '';
      left: 0;
      top: 8px;
      position: absolute;
      border-radius: 30px; }
    .widget-area .widget_archive ul li a {
      color: #000000;
      display: block; }
      .widget-area .widget_archive ul li a:hover {
        color: #662d90; }
    .widget-area .widget_archive ul li .post-count {
      float: right; }
.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px; }
.widget-area .tagcloud a {
  display: inline-block;
  color: #000000;
  font-weight: 400;
  font-size: 14.5px !important;
  font-family: "Nunito", sans-serif;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  margin-top: 8px;
  margin-right: 4px; }
  .widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
    color: #ffffff;
    background-color: #662d90;
    border-color: #662d90; }

/*================================================
Footer Area CSS
=================================================*/
.single-footer-widget {
  margin-bottom: 30px; }
  .single-footer-widget .logo {
    display: block;
    margin-bottom: 25px; }
    .single-footer-widget .logo h2 {
      margin-bottom: 0;
      font-size: 25px;
      font-weight: 700; }
  .single-footer-widget p {
    margin-bottom: 0; }
  .single-footer-widget .social-list {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 16px; }
    .single-footer-widget .social-list li {
      display: inline-block;
      list-style-type: none;
      margin-right: 10px; }
      .single-footer-widget .social-list li:last-child {
        margin-right: 0; }
    .single-footer-widget .social-list a {
      display: inline-block;
      height: 35px;
      width: 35px;
      line-height: 38px;
      background-color: #662d90;
      color: #ffffff;
      text-align: center;
      font-size: 16px;
      border-radius: 50px;
      border: 1px solid #662d90; }
      .single-footer-widget .social-list a:hover {
        background-color: transparent;
        color: #000000; }
  .single-footer-widget h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px; }
  .single-footer-widget .list {
    padding-left: 0;
    margin-bottom: 0; }
    .single-footer-widget .list li {
      margin-bottom: 8px;
      list-style-type: none;
      font-size: 16px;
      font-family: "Nunito", sans-serif; }
      .single-footer-widget .list li:last-child {
        margin-bottom: 0; }
      .single-footer-widget .list li a {
        display: block;
        color: #818992;
        font-weight: 500;
        transition: 0.5s; }
        .single-footer-widget .list li a:hover {
          color: #662d90;
          letter-spacing: 1px; }
  .single-footer-widget .footer-holder {
    padding-left: 0;
    margin-bottom: 0; }
    .single-footer-widget .footer-holder li {
      list-style-type: none;
      margin-bottom: 10px; }
      .single-footer-widget .footer-holder li:last-child {
        margin-bottom: 0; }

/*================================================
Copy Right CSS
=================================================*/
.copy-right {
  background-color: #fafafa;
  padding-top: 30px;
  padding-bottom: 30px; }

.copy-right-content {
  text-align: center; }
  .copy-right-content p {
    font-size: 16px;
    margin-bottom: 0;
    color: #000000;
    font-weight: 600; }
    .copy-right-content p a {
      font-size: 18px;
      font-weight: bold; }

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #662d90;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  opacity: 0;
  visibility: hidden;
  transition: .9s;
  border-radius: 50%;
  border: 1px solid #662d90; }
  .go-top.active {
    top: 98%;
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible; }
  .go-top i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.5s;
    font-size: 16px; }
    .go-top i:last-child {
      opacity: 0;
      visibility: hidden;
      top: 60%; }
  .go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    border-radius: 50%; }
  .go-top:hover, .go-top:focus {
    color: #ffffff; }
    .go-top:hover::before, .go-top:focus::before {
      opacity: 1;
      visibility: visible; }
    .go-top:hover i:first-child, .go-top:focus i:first-child {
      opacity: 0;
      top: 0;
      visibility: hidden; }
    .go-top:hover i:last-child, .go-top:focus i:last-child {
      opacity: 1;
      visibility: visible;
      top: 50%; }
