/*
============================================
*   [Table of contents]
* ==========================================
    Theme Default Css
    01.	Common Css
    02. Preloader
    03.	Above Header
    04.	Navigation
    05.	Cart
    06.	Slider
    07.	Info Section
    08.	Heading Default
    09.	Service Section
    10.	Features Section
    11. Filter Tab
    12. Portfolio/Gallery
    13. Pricing
    14. Team
    15. Fun Fact
    16. Testimonial Section
    17. CTA Section
    18. Blog Post Section
    19. Blog Post Image Carousel
    20. Author-Area
    21. Comments-Area
    22. Form Part for Comment
    23. Footer Section
    24. Back To Top Start
    25. Breadcrumb Section
    26. About Page
    27. Pagination
    28. FAQ
    29. Contact Page
    30. 404 Page
    31. Coming Soon

========================================== */

/*------ Theme Default Css
=======================================*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*===== 01. Common Classes Start =====*/

.layout-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #000000 none repeat scroll 0 0;
  z-index: -1;
}

.primary-color,
.av-link {
  color: var(--sp-primary);
}

.bg-primary {
  background-color: var(--sp-primary);
}

.bg-primary-light {
  background-color: var(--sp-primary-light);
}

.av-my-default {
  margin: 100px 0;
}

.av-mt-default {
  margin-top: 100px;
}

.av-mb-default {
  margin-bottom: 100px;
}

.av-py-default {
  padding: 100px 0;
}

.av-pt-default {
  padding-top: 100px;
}

.av-pb-default {
  padding-bottom: 100px;
}

.av-load-item {
  display: none;
}

.av-load-spinner {
  position: relative;
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.av-load-spinner:before,
.av-load-spinner:after {
  position: absolute;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  left: 0;
  top: -5px;
  right: 0;
  bottom: 0;
  margin: auto;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: var(--sp-white);
  border-right-color: var(--sp-white);
  border-radius: 0 0 1px 0;
  transform: translate(0%, 0%) rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.loadspinner .av-load-spinner:before {
  border-radius: 50%;
  animation: 0.8s rotate 0.4s linear forwards infinite;
}

.loadspinner .av-load-spinner:after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  animation: 0.8s rotate2 0.4s linear forwards infinite;
}

@keyframes rotate {
  to {
    transform: translate(0%, 0%) rotate(405deg);
  }
}

@keyframes rotate2 {
  to {
    transform: translate(0%, 0%) rotate(-315deg);
  }
}

/*===== // =====*/

/*===== 02. Preloader Start =====*/

.prealoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background-color: var(--sp-primary);
}

.load-circle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}

.load-circle span {
  display: inline-block;
  width: 64px;
  height: 64px;
}

.load-circle span:after {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid var(--sp-white);
  border-color: var(--sp-white) transparent var(--sp-white) transparent;
  animation: rotate 0.5s linear infinite;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*===== // =====*/

/*===== 03. Above Header =====*/

.header-above-info {
  color: var(--sp-white);
  background-color: var(--sp-secondary);
}

.header-above-light .header-above-info {
  color: var(--sp-secondary-dark);
  background-color: var(--sp-white);
}

.header-above-info .header-widget {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-above-info .widget-left,
.header-above-info .widget-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-above-info .widget-right {
  /*-ms-flex-direction: row-reverse;
    flex-direction: row-reverse;*/
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-above-dark .widget-left .widget {
  border-right: 1px solid rgba(221, 221, 221, 0.25);
}

.header-above-dark .widget-left .widget:last-child {
  border-right: 0;
}

.header-above-dark .widget-right .widget:not(:first-child) {
  border-left: 1px solid rgba(221, 221, 221, 0.25);
}

.header-above-dark .widget-right .widget.widget_social_widget:first-child li a {
  border-left: 1px solid rgba(221, 221, 221, 0.25);
}

.header-above-dark
  .widget-right
  .widget.widget_social_widget:first-child
  li:last-child
  a {
  border-right: 1px solid rgba(221, 221, 221, 0.25);
}

/*===== // =====*/

/*===== 04. Navigation Start =====*/

.logo img {
  max-width: 180px;
}

.navbar-area .menubar .menu-wrap > li.active > a,
.navbar-area .menubar .menu-wrap > li.focus > a,
.navbar-area .menubar .menu-wrap > li:hover > a {
  text-shadow: 0 0 0.75px var(--sp-primary);
}

.navbar-area .menubar .menu-wrap > li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 20px;
  display: inline-block;
  margin: auto;
  border-right: 2px dotted var(--sp-secondary-dark);
  opacity: 0.65;
  z-index: -1;
}

.navigator-wrapper button.menu-toggle {
  background: none;
  border: none;
  border-radius: 0;
}

.navigator-wrapper button.menu-toggle:focus {
  outline-color: var(--sp-primary);
  background-color: var(--sp-primary-light);
}

.navigator-wrapper .close-style {
  background: none;
  border: none;
}

.header-search-close:after,
.header-search-close:before {
  background-color: var(--sp-white);
}

/*===== Header 9 =====*/
.header-nine .navbar-area .menubar .menu-wrap > li.active > a,
.header-nine .navbar-area .menubar .menu-wrap > li.focus > a,
.header-nine .navbar-area .menubar .menu-wrap > li:hover > a {
  color: var(--sp-white);
}

.header-nine .navbar-area .av-btn-primary {
  background: var(--sp-white);
  color: var(--sp-primary);
  border-radius: 50px;
  border: none;
}

.header-nine .navbar-area {
  padding: 1rem 0;
}

.header-nine .widget-right .widget,
.header-nine .widget-left .widget {
  padding: 0px 8px;
}

.header-nine .theme-menu {
  justify-content: space-between;
}

.header-nine .header-search-popup form .search-field,
.header-nine button[type="submit"],
.header-nine button:not(.scrollup),
.header-nine input[type="button"],
.header-nine input[type="reset"],
.header-nine input[type="submit"],
.header-nine .av-btn {
  border-radius: 100px;
}

.header-nine .sticky-menu {
  background: #151535;
}

.header-nine .navbar-area.sticky-nav.sticky-menu .menubar .menu-wrap > li > a,
.header-nine .navbar-area.sticky-nav.sticky-menu .header-search-toggle,
.header-nine
  .navbar-area.sticky-nav.sticky-menu
  .header-search-toggle
  .cart-icon-wrap,
.header-nine .navbar-area.sticky-nav.sticky-menu .cart-icon-wrap {
  color: #fff !important;
}

/*===== // =====*/

/*===== 05. Cart =====*/

.cart-wrapper .cart-icon-wrap i {
  display: inline-block;
  color: inherit;
  vertical-align: text-bottom;
  font-size: 22px;
}

.cart-wrapper {
  position: relative;
}

.cart-wrapper .cart-icon-wrap span {
  position: absolute;
  top: -1px;
  right: 2px;
  width: 21px;
  height: 21px;
  line-height: 21px;
  display: inline-block;
  font-size: 10px;
  color: var(--sp-white);
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  text-align: center;
  background-color: var(--sp-primary);
}

.shopping-cart {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  width: 320px;
  padding: 20px;
  color: var(--sp-primary);
  background: var(--sp-white);
  border-radius: 0 3px 3px;
  border: 0;
  border-top: 3px solid var(--sp-primary);
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}

.menu-wrap .dropdown-menu li a sup,
.menu-wrap .dropdown-menu li a sub,
.theme-mobile-menu div.mobile-menu a:hover,
.navbar-area .menubar .menu-wrap .dropdown-menu > li.active > a,
.navbar-area .menubar .menu-wrap > li.active > a,
.navbar-area .menubar .menu-wrap > li.focus > a,
.navbar-area .menubar .menu-wrap > li:hover > a,
.navbar-area .menubar .dropdown-menu:before,
.header .widget_nav_menu .sub-menu:before {
  color: var(--sp-primary);
}

.header .widget_nav_menu .sub-menu:before,
.navbar-area .menubar .menu-wrap > .menu-item > .dropdown-menu:before,
.shopping-cart:after {
  top: -8px;
  left: 95%;
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border: 3px solid;
  background-color: var(--sp-white);
  border-right: none;
  border-bottom: none;
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.shopping-cart:after {
  right: 15%;
}

.header .widget_nav_menu .sub-menu:before,
.navbar-area .menubar .menu-wrap > .menu-item > .dropdown-menu:before {
  left: 15%;
}

.menu-right .cart-wrapper:hover .shopping-cart,
.menu-right .cart-wrapper:focus .shopping-cart {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 2px, 0);
  transform: translate3d(0, 2px, 0);
}

.shopping-cart .cart-header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 15px;
}

.shopping-cart .cart-header .cart-total {
  float: right;
}

.shopping-cart .cart-badge {
  color: var(--sp-white);
  font-size: 10px;
  margin: 0;
  width: 16px;
  height: 16px;
  line-height: 1.6;
  text-align: center;
  vertical-align: super;
  border-radius: 100px;
  display: inline-block;
  background-color: var(--sp-primary);
}

div.shopping-cart ul.cart-items {
  padding: 0;
  margin: 0;
  padding-top: 20px;
  list-style: none;
  max-height: 188px;
  overflow-x: hidden;
  overflow-y: auto;
}

div.shopping-cart ul.cart-items li {
  display: inline-block;
  width: 100%;
  margin: 0 10px 10px 0;
  padding: 0;
  font-size: 15px;
  position: relative;
}

.shopping-cart .cart-items .item-img {
  float: left;
  margin-right: 12px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  line-height: 4.5;
  border-width: 1px;
  border-style: solid;
  border-color: var(--sp-primary);
}

.shopping-cart .cart-items .item-img img {
  width: 90%;
  border-radius: 50%;
  display: inline-block;
  float: none;
  margin: auto;
}

.shopping-cart .cart-items .item-name {
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding-top: 15px;
}

.shopping-cart .cart-items .amount {
  font-size: 12px;
  font-weight: 600;
  margin-right: 0;
  color: #222;
}

.shopping-cart .cart-items .quantity {
  font-size: 12px;
  font-weight: 400;
  color: red;
}

.shopping-cart .av-btn {
  display: block;
}

.widget_shopping_cart .av-btn i,
.shopping-cart .av-btn i {
  font-size: 12px;
  margin-left: 5px;
  position: relative;
  top: -1px;
}

div.shopping-cart ul a.remove {
  float: right;
  margin-top: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 100%;
  color: var(--sp-white) !important;
  background-color: var(--sp-primary);
  box-shadow: 0 0 10px rgb(0 0 0 / 0.15);
}

/* ---//--- */

/*===== 06. Slider =====*/

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  color: var(--sp-white);
  background-color: #333;
  z-index: 0;
}

.main-slider,
.main-slider .owl-item img {
  width: 100%;
  height: 100%;
}

.main-slider .owl-item .item {
  position: relative;
  background-color: var(--sp-secondary);
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  z-index: 0;
  padding: 90px 0;
  background-size: cover;
  min-height: 660px;
}

.theme-slider:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.theme-table {
  overflow: hidden;
  display: table;
  width: 100%;
  height: 100%;
}

.theme-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.theme-slider div.theme-content {
  position: relative;
  /*max-width: 635px;*/
  width: 100%;
  margin-top: 68px;
  margin-bottom: 150px;
}

.theme-slider .text-left {
  margin-right: auto;
}

.theme-slider .text-center {
  margin: auto;
}

.theme-slider .text-right {
  margin-left: auto;
}

.theme-content h3 {
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}

.theme-content h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.theme-content p {
  font-weight: 300;
  margin-bottom: 46px;
}

.theme-content .av-btn:not(:last-child) {
  margin-right: 28px;
}

.owl-carousel {
  position: relative;
  z-index: 0;
}

/* ===== owl Nav ===== */

.owl-theme:not(.main-slider) .owl-nav {
  width: 100%;
  margin: 4px auto 0 auto;
}

.main-slider .owl-nav {
  position: absolute;
  bottom: 11.9em;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}

.owl-theme div.owl-nav [class*="owl-"] {
  width: 25px;
  height: 25px;
  font-size: 0.75rem;
  line-height: 25px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  color: var(--sp-white);
  background-color: var(--sp-primary);
  border: 1px solid var(--sp-primary);
  border-radius: 100%;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  color: var(--sp-primary);
  background-color: var(--sp-white);
  border-color: var(--sp-white);
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15);
}

.owl-theme .owl-nav .owl-prev i {
  margin-left: 0px;
}

.owl-theme .owl-nav .owl-next i {
  margin-right: -2px;
}

/*===== // =====*/

/*===== 07. Info Section =====*/

.contact-area .contact-icon img {
  width: 40px;
}

.info-section {
  margin: -120px 0px 20px 0px;
}

.footer-info-wrapper,
.info-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info-wrapper li,
.info-wrapper li {
  flex: 1;
  position: relative;
  list-style: none;
}

.info-wrapper li:not(:last-child) {
  margin-right: 20px;
}

.info-wrapper .widget {
  padding: 28px 45px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  display: block;
  color: var(--sp-white);
  background-color: var(--sp-primary);
  height: 100%;
  z-index: 0;
}

.avril-theme .info-wrapper .contact-area {
  flex-wrap: wrap;
}

.avril-theme .info-wrapper .contact-more {
  padding-left: 53px;
  margin-top: 5px;
}

.avril-theme .info-wrapper .contact-more a {
  color: var(--sp-white);
  -webkit-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.avril-theme .info-wrapper .contact-more a:not(:hover):not(:focus) {
  border-bottom: 1px dashed var(--sp-white);
}

.info-wrapper .widget:after,
.info-wrapper .widget:before {
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  z-index: -1;
  transition: all 0.5s;
}

.info-wrapper .widget:before {
  top: 0;
  right: 100%;
  background-color: var(--sp-primary);
}

.info-wrapper .widget:hover:before,
.info-wrapper .widget:focus-within:before {
  right: 0;
}

.info-wrapper .widget:after {
  bottom: 0;
  left: 100%;
  background-image: url(../img/info-hover.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right;
}

.info-wrapper .widget:hover:after,
.info-wrapper .widget:focus-within:after {
  left: 0;
}

.info-wrapper .info-second .widget:before,
.info-wrapper .info-first .widget,
.info-wrapper .info-third .widget {
  background-color: var(--sp-secondary);
}

.info-wrapper .info-first .widget:before,
.info-wrapper .info-third .widget:before,
.info-wrapper .info-second .widget {
  background-color: var(--sp-primary);
}

.info-wrapper .contact-icon {
  font-size: 44px;
  height: 44px;
  transition: all 0.5s;
  color: var(--sp-white);
}

.info-wrapper .widget .contact-info {
  color: var(--sp-white);
}

.info-wrapper .contact-icon i {
  text-shadow: 1200px -17px 0 rgb(255 255 255 / 0.2);
  transition: text-shadow 0.5s ease;
}

.info-wrapper .widget:hover .contact-icon i,
.info-wrapper .widget:focus-within .contact-icon i {
  text-shadow: 235px -17px 0 rgb(255 255 255 / 0.2);
}

/*===== // =====*/

/*===== 08. Heading Default =====*/

.about-panel {
  padding: 35px 0;
}

.heading-title {
  margin-bottom: 2rem;
}

.heading-default {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
}

.heading-default > span {
  font-weight: 600;
  display: block;
  margin-bottom: 9px;
  color: var(--sp-primary);
}

.heading-default p {
  color: #777777;
  display: block;
  margin: 0;
  margin-top: 10px;
}

.heading-default h3 {
  font-size: 36px;
  font-family: inherit;
  position: relative;
  max-width: max-content;
  margin: 0 auto;
  padding: 0 14px;
}

.heading-default h3:before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  bottom: 0;
  margin: auto 0;
  width: 60px;
  height: 2px;
  background-color: var(--sp-primary);
}

.heading-default h3 .av-heading {
  margin-left: 2px;
  padding: 8px 0.232em;
  text-align: center;
  display: inline-block;
  line-height: 0;
}

.heading-default:not(.heading-white) h3 .av-heading {
  color: var(--sp-white);
}

.heading-default h3 .av-heading:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--sp-primary);
}

.heading-default .av-heading .av-text-wrapper,
.heading-default .av-heading .av-text-wrapper b {
  text-align: center;
  line-height: 1;
}

.heading-white > span,
.heading-white h3,
.heading-white p {
  color: var(--sp-white) !important;
}

.heading-white h3 .av-heading {
  color: var(--sp-primary);
}

.heading-white h3:before,
.heading-white h3 .av-heading:after {
  background-color: var(--sp-white) !important;
}

/*===== // =====*/

/*===== 09. Service Section =====*/

.indicator {
  content: "";
  position: absolute;
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: left 500ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: left 500ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: left 500ms cubic-bezier(0.694, 0, 0.335, 1);
  z-index: -1;
  background-color: #ffffff;
  -webkit-box-shadow: 2px 15px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 20px 30px 0 rgba(0, 0, 0, 0.1);
}

.service-row {
  position: relative;
  z-index: 0;
}

.service-item {
  width: 100%;
  min-height: 263px;
  display: block;
  padding: 47px 30px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.testimonial-carousel.owl-carousel .owl-stage,
.services-carousel.owl-carousel .owl-stage {
  margin: 26px 0 40px;
}

.testimonial-carousel .owl-item,
.services-carousel .owl-item {
  height: 100%;
}

.service-item .service-icon {
  font-size: 44px;
  display: inline-block;
  line-height: normal;
  margin-bottom: 8px;
  color: #9a9a9a;
  -webkit-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.service-item p {
  color: #777777;
  margin-top: 16px;
  margin-bottom: 0;
}

.service-content > a {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 50px;
  display: flow-root;
  text-align: center;
  color: var(--sp-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.service-content > a i {
  margin: 1.15rem 0 0 1.9rem;
  font-size: 22px;
  line-height: 1.35;
}

.service-content > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  min-width: 120px;
  min-height: 120px;
  background-color: var(--sp-primary);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(0px) translateY(20px) rotate(50deg);
  transform: translateX(0px) translateY(20px) rotate(50deg);
  -webkit-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.service-item:hover,
.service-item:focus-within {
  border-bottom-color: var(--sp-primary);
}

.services-carousel .owl-item.center .service-item {
  background-color: var(--sp-white);
  border-bottom-color: var(--sp-primary);
  -webkit-box-shadow: 2px 15px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 20px 30px 0 rgba(0, 0, 0, 0.1);
}

.service-item:hover .service-content > a:before,
.service-item:focus-within .service-content > a:before,
.services-carousel .owl-item.center .service-content > a:before {
  opacity: 1;
  visibility: visible;
}

.service-item:hover .service-icon,
.service-item:focus-within .service-icon,
.services-carousel .owl-item.center .service-icon {
  color: var(--sp-primary);
}

.service-item:hover .service-content > a,
.service-item:focus-within .service-content > a,
.services-carousel .owl-item.center .service-content > a {
  opacity: 1;
  visibility: visible;
}

/*===== // =====*/

/*===== 10. Features Section =====*/

.features-section.bg-primary .features-item {
  color: var(--sp-white);
  padding: 0;
}

.features-section.bg-primary .features-title {
  padding-bottom: 16px;
}

.features-section.bg-primary .features-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--sp-white);
}

.features-section.bg-primary .features-item p {
  margin: 16px 0 0;
}

.features-section.bg-primary .features-icon {
  font-size: 26px;
  width: 153px;
  max-width: 53px;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.features-section.bg-primary .features-icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 100%;
  border: 1px solid var(--sp-white);
  transition: 0.3s ease-in-out;
}

.features-section.bg-primary .features-item:hover .features-icon,
.features-section.bg-primary .features-item:focus-within .features-icon {
}

.features-section.bg-primary .features-item:hover .features-icon:before,
.features-section.bg-primary .features-item:focus-within .features-icon:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
  border: 3px dashed #fff;
  -webkit-animation: spinAround 9s linear infinite;
  -moz-animation: spinAround 9s linear infinite;
  animation: spinAround 9s linear infinite;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spinAround {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.features-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}

.features-section:not(.bg-primary) .features-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--sp-primary);
  transition: var(--sp-transition);
}

.features-section:not(.bg-primary) .features-item:hover,
.features-section:not(.bg-primary) .features-item:focus-within {
  background-color: var(--sp-white);
  box-shadow: 0px 0px 10px 0px rgba(85, 83, 83, 0.35);
}

.features-section:not(.bg-primary) .features-item:hover:before,
.features-section:not(.bg-primary) .features-item:focus-within:before {
  width: 5px;
}

.features-section:not(.bg-primary) .features-item:hover .features-icon,
.features-section:not(.bg-primary) .features-item:focus-within .features-icon {
  color: var(--sp-primary);
}

.features-icon {
  display: inherit;
  margin-right: 25px;
  width: 75px;
  position: relative;
  font-size: 75px;
}

.features-title {
  position: relative;
  z-index: 0;
}

.features-item p {
  margin: 7px 0 0;
}

.features-section:not(.bg-primary) .features-item p {
  color: #777777;
  margin-bottom: 10px;
}

.bg-primary .features-title a:hover,
.bg-primary .features-title a:focus {
  color: var(--sp-white);
}

/*===== // =====*/

/*===== 11. Filter Tab =====*/

.av-tab-filter {
  width: 100%;
  text-align: center;
  margin: 0 0 25px;
  padding: 0;
  display: block;
}

.av-tab-filter a {
  display: inline-block;
  position: relative;
  letter-spacing: 0.4px;
  font-size: 18px;
  padding: 6px 8px 4px;
  font-weight: 600;
  text-transform: capitalize;
  border: none;
  z-index: 0;
}

.av-tab-filter a:not(:last-child) {
  margin-right: 40px;
}

.av-tab-filter a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--sp-primary);
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  transition: top 0.3s;
}

.av-tab-filter a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: var(--sp-primary);
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
}

.av-tab-filter a.active {
  color: var(--sp-primary);
}

.av-tab-filter a.active::before,
.av-tab-filter a:hover::before,
.av-tab-filter a:focus::before {
  top: 100%;
  opacity: 1;
}

.av-tab-filter a.active::after,
.av-tab-filter a:hover::after,
.av-tab-filter a:focus::after {
  height: 100%;
}

/*===== // =====*/

/*===== 12. Portfolio/Gallery =====*/

.gallery-area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-area .gallery-item {
  margin: 0;
}

.mgf-popup a {
  /*display: inline-block;*/
}

.mfp-close-btn-in button.mfp-close {
  display: inline-block;
  max-width: 40px;
  height: 40px;
  text-align: center;
  right: 0;
  padding: 0;
  background-color: var(--sp-primary);
}

.gallery-item,
.portfolio-item {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.gallery-item .gallery-icon img,
.portfolio-item .portfolio-icon img {
  width: 100%;
}

.gallery-item .gallery-icon,
.portfolio-item .portfolio-icon {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-item .gallery-caption,
.portfolio-item .portfolio-caption {
  font-weight: 400;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 58px 28px;
  color: var(--sp-white);
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery-item:hover .gallery-caption,
.portfolio-item:hover .portfolio-caption,
.gallery-item:focus-within .gallery-caption,
.portfolio-item:focus-within .portfolio-caption {
  opacity: 1;
  visibility: visible;
}

.gallery-item .gallery-caption:before,
.portfolio-item .portfolio-caption:before {
  position: absolute;
  top: 50%;
  right: 30px;
  bottom: 50%;
  left: 30px;
  border-top: 1px solid var(--sp-white);
  border-bottom: 1px solid var(--sp-white);
  content: "";
  opacity: 0;
  background-color: var(--sp-white);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.gallery-item h6,
.portfolio-item h6,
.gallery-item p,
.portfolio-item p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s,
    -o-transform 0.35s, transform 0.35s;
}

.gallery-item h6,
.portfolio-item h6 {
  -webkit-transform: translate3d(0%, 50%, 0);
  transform: translate3d(0%, 50%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.gallery-item p,
.portfolio-item p {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.gallery-item i,
.portfolio-item i {
  display: inline-block;
  transition: 0.5s ease-in;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
}

.gallery-item:hover .gallery-icon img,
.portfolio-item:hover .portfolio-icon img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.gallery-item:hover .gallery-caption,
.portfolio-item:hover .portfolio-caption {
  background: url(../images/bg/pattern.png) repeat 0, 0 rgba(0, 0, 0, 0.6);
}

.gallery-item:hover h6,
.portfolio-item:hover h6 {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.gallery-item:hover p,
.portfolio-item:hover p {
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.gallery-item:hover i,
.portfolio-item:hover i {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.gallery-item:hover .gallery-caption:before,
.portfolio-item:hover .portfolio-caption:before {
  background: rgba(255, 255, 255, 0);
  top: 30px;
  bottom: 30px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.gallery-item h6,
.portfolio-item h6 {
  font-size: 15px;
}

.portfolio-item i {
  font-size: 30px;
}

.gallery-item i {
  font-size: 20px;
  width: 44px;
  height: 44px;
  line-height: 2.3;
  border-radius: 50%;
  margin: 0 auto;
  background-color: var(--sp-primary);
}

/*===== // =====*/

/*===== 13. Pricing =====*/

.dottet-bg-image {
  background: linear-gradient(
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3)
    ),
    url(../img/dotted-arrow-dark.png) no-repeat top;
}

.pricing-item {
  padding: 50px 20px;
  border-radius: 5px;
  background-color: var(--sp-white);
  text-align: center;
  display: block;
  position: relative;
  z-index: 0;
  box-shadow: 0px 0px 9.4px 0.6px rgba(0, 0, 0, 0.15);
}

.pricing-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.recommended-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.87;
  padding: 0 1.51em;
  border-radius: 25px;
  color: var(--sp-primary);
  background-color: #faeff0;
  z-index: 1;
}

.pricing-icon {
  width: 100%;
  display: block;
  font-size: 85px;
  line-height: normal;
  text-align: center;
  position: relative;
}

.recommended .pricing-icon {
  color: var(--sp-primary);
}

.recommended .pricing-icon {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--sp-primary);
}

.recommended .pricing-icon:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border: 3px solid;
  background-color: var(--sp-white);
  border-right: none;
  border-bottom: none;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pricing-item i {
  font-size: 13px;
}
.pricing {
  font-size: 45px;
  font-weight: 700;
  display: inline-flex;
  padding: 0 6px;
  color: var(--sp-primary);
}

.pricing sup {
  font-size: 25px;
  line-height: 2.75;
  font-weight: normal;
}

.pricing-item ul,
.pricing-item li {
  margin: 0;
  padding: 0;
}

.pricing-item ul {
  margin-bottom: 35px;
  padding-left: 12px;
}

.pricing-item li {
  line-height: 2.75;
}

/*===== // =====*/

/*===== 14. Team =====*/

.team-member {
  margin: 0px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: block;
}

.team-footer {
  width: 100%;
  height: 71px;
  position: absolute;
  bottom: 0;
  padding: 16px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: var(--sp-white);
  background-color: var(--sp-primary);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.team-info {
  display: block;
  padding: 0 10px;
}

.team-info h6 a:hover,
.team-info h6 a:focus {
  color: var(--sp-white);
}

.team-member img {
  width: 100%;
}

.team-footer span {
  margin-bottom: 16px;
  display: inline-block;
}

.team-footer p {
  border-top: 1px solid #dddddd;
  padding-top: 16px;
}

.team-footer .widget {
  margin-top: 55px;
  visibility: hidden;
}

.team-member:hover .widget {
  visibility: visible;
}

.team-member .widget li:not(:last-child) {
  margin-right: 6px;
  margin-bottom: 5px;
}

.team-member:hover .team-footer {
  justify-content: space-around;
  height: 100%;
  padding: 46px 10px 32px;
  background-color: rgba(0, 0, 0, 0.6);
}

.team-member:hover .team-footer h6 {
  color: var(--sp-primary);
}

/*===== // =====*/

/*===== 15. Fun Fact =====*/

.funfact-section {
  position: relative;
  background-image: url(../images/bg/fun-fact-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  padding: 80px 0;
  z-index: 0;
}

.funfact-item {
  width: 100%;
  display: inline-block;
  text-align: center;
  color: var(--sp-white);
}

.funfact-item i,
.funfact-item img {
  font-size: 60px;
  width: 60px;
  margin-bottom: 8px;
  display: inline-block;
  color: var(--sp-primary);
}

.funfact-item h1 {
  font-size: 48px;
}

.funfact-item p {
  font-size: 18px;
  font-weight: 300;
  margin: 10px 0 0;
}

/*===== // =====*/

/*===== 16. Testimonial Section =====*/

.testimonial-item,
.testimonial-item .testimonial-content {
  width: 100%;
  display: block;
  transition: 0.3s ease-in-out;
}

.testimonial-item .testimonial-content {
  padding: 47px 30px;
  position: relative;
  z-index: 0;
  background-color: var(--sp-white);
  transition: 0.3s ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.22);
}

.testimonial-item .testimonial-content:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  background-color: inherit;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.testimonial-title p {
  color: var(--sp-primary);
  margin-top: 6px;
  margin-bottom: 0;
  transition: 0.3s ease-in-out;
}

.testimonial-content blockquote {
  margin: 25px 0 0;
  padding: 0;
  padding-bottom: 60px;
  position: relative;
  border: 0;
  background: none;
  z-index: 0;
}

.testimonial-content blockquote:after {
  content: "\f10e";
  font-family: FontAwesome;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: normal;
  color: #e1e1e1;
  font-size: 40px;
  z-index: 0;
  transition: 0.3s ease-in-out;
}

.testimonial-item .testimonial-icon {
  width: 100%;
  display: block;
  line-height: normal;
  margin-top: 35px;
  text-align: center;
}

.testimonial-item .testimonial-icon .image-box {
  display: inline-block;
  width: 60px;
  border-radius: 100%;
  overflow: hidden;
}

.testimonial-item .testimonial-icon img {
  width: auto;
  margin: 0 auto;
}

.testimonial-carousel .owl-item.center .testimonial-content {
  color: var(--sp-white);
  background-color: var(--sp-primary);
}

.testimonial-carousel .owl-item:hover .testimonial-content {
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.22);
}

.testimonial-carousel .owl-item:hover .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item {
  transform: translateY(-12px);
}

.testimonial-carousel .owl-item.center blockquote:after,
.testimonial-carousel .owl-item.center .testimonial-title p {
  color: var(--sp-white);
}

/*===== // =====*/

/*===== 17. CTA Section =====*/

.cta-section {
  position: relative;
  z-index: 0;
}

.cta-section:not(.cta-3) {
  background-color: var(--sp-white);
  background-blend-mode: multiply;
  background-size: cover;
}

.cta-3 .cta-content {
  display: flex;
  align-items: flex-start;
}

.cta-3 .cta-content .cta-img {
  max-width: 82px;
  margin-right: 1.5rem;
  font-size: 4.25rem;
  display: flex;
  align-items: flex-start;
}

/* .cta-bg-image { */
/* background: url(../images/bg/cta-bg.jpg) center center scroll rgba(0,0,0,.7); */
/* } */

.cta-bg-image .cta-wrapper {
  color: var(--sp-white);
  border: none;
  box-shadow: none;
  padding: 56px 15px;
}

.cta-wrapper {
  border-top: 3px solid var(--sp-primary);
  display: -ms-flexbox;
  display: flex;
  padding: 56px 48px;
  -ms-flex-align: flex-start;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 0px 4.75px 0.25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.cta-text-content .cta-wrapper {
  border: 0;
  padding: 25px 125px;
}

.cta-img-icon {
  width: 203px;
  margin-right: 25px;
}

.cta-section:not(.cta-bg-image):not(.cta-3) .cta-wrapper {
  background-color: var(--sp-white);
}

.cta-section.cta-3:after,
.cta-section:not(.cta-3) .cta-wrapper:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 62px;
  opacity: 0.3;
  background-position: center bottom;
  z-index: -1;
}

.cta-section.cta-3:after {
  top: 0;
  height: 100%;
  background-color: var(--sp-primary);
  opacity: 0.95;
}

.cta-shadow-one .cta-wrapper:after {
  background: url(../images/bg/shadow-one.png) no-repeat;
  bottom: -38px;
}

.cta-shadow-two .cta-wrapper:after {
  background: url(../images/bg/shadow-two.png) no-repeat;
  bottom: -50px;
  transform: rotate(-180deg);
}

.cta-content h4 {
  font-size: 24px;
  margin-bottom: 5px;
}

.cta-content p {
  margin-bottom: 0;
}

.cta-section:not(.cta-bg-image) p {
  color: #777777;
}

.cta-learn-more {
  display: inline-block;
  margin-left: 18px;
  color: var(--sp-primary);
}

.cta-learn-more a {
  text-decoration: underline;
  font-weight: 500;
}

.cta-learn-more a:hover,
.cta-learn-more a:focus {
  text-decoration: none;
}

.cta-bg-image .cta-learn-more {
  color: var(--sp-white);
}

.cta-btn-wrap {
  display: flex;
  align-items: center;
}

.cta-more {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.cta-section:not(.cta-3) .cta-more {
  margin-left: 12px;
}

.cta-section.cta-3 .cta-more {
  margin-right: 1.25rem;
}

.cta-section.cta-3 .cta-more .cta-icon {
  margin-right: 6px;
}

.cta-section.cta-3 .cta-more span {
  display: block;
  text-align: left;
  color: var(--sp-white);
}

.cta-section.cta-3 .cta-label-dis {
  font-size: 1.125rem;
  font-weight: 600;
}

.cta-section:not(.cta-3) .cta-more span {
  display: inline-flex;
  align-items: center;
  color: var(--sp-white);
  background: none;
  border: 1px solid var(--sp-white);
  line-height: 36px;
  padding: 0 6px;
  opacity: 0;
  transition: all 0.3s ease-out 0ms;
}

.cta-more i {
  height: 41px;
  width: 41px;
  line-height: 42px;
  border-radius: 0;
  background-color: var(--sp-primary);
  color: var(--sp-white);
  border: 1px solid transparent;
  border-right: 0;
  font-size: 26px;
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-transform: scale(0.93);
  transform: scale(0.93);
  -webkit-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.cta-section:not(.cta-3) .cta-more i:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-animation: ripperOnCircle 1.3s ease-out 75ms infinite;
  animation: ripperOnCircle 1.3s ease-out 75ms infinite;
}

.cta-3 .cta-more i {
  font-size: 2.25rem;
  background: none;
  color: var(--sp-white);
  vertical-align: top;
  line-height: normal;
}

@-webkit-keyframes ripperOnCircle {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.075),
      0 0 8px 8px rgb(226 223 223 / 0.5), 0 0 0 8px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.075),
      0 0 8px 8px rgb(226 223 223 / 0.5), 0 0 0 8px rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes ripperOnCircle {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.075),
      0 0 8px 8px rgb(226 223 223 / 0.5), 0 0 0 8px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.075),
      0 0 8px 8px rgb(226 223 223 / 0.5), 0 0 0 8px rgba(255, 255, 255, 0.2);
    transform: scale(1.35);
    opacity: 0;
  }
}

.cta-more i:before {
  display: inline-flex;
  -webkit-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.cta-more:hover i:before,
.cta-more:focus i:before {
  transform: rotate(70deg);
}

.cta-section:not(.cta-3) .cta-more:hover i,
.cta-section:not(.cta-3) .cta-more:focus i,
.cta-wrapper .av-btn-primary:hover,
.cta-wrapper .av-btn-primary:focus {
  border-color: var(--sp-white);
}

.cta-section:not(.cta-3) .cta-more:hover span,
.cta-section:not(.cta-3) .cta-more:focus span {
  transform: translateX(-2px);
  opacity: 1;
}

/*===== // =====*/

/*===== 18. Blog Post Section =====*/

.post-items {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  border: 1px solid #d0d0d0;
  z-index: 0;
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.av-masonry .post-items {
  display: inline-block;
  margin-bottom: 1.15rem;
}

.post-meta ul {
  margin: 0;
  padding: 0;
}

.post-shadow .post-items {
  box-shadow: 0px 0px 38px 0px rgba(68, 68, 68, 0.12);
  border: none;
}

.post-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.post-image > a {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.post-image:hover .author-name,
.post-image:hover .author-name a,
.post-image:focus-within .author-name,
.post-image:focus-within .author-name a,
.post-items .post-image a:hover,
.post-items .post-image a:focus {
  color: var(--sp-white);
}

.post-image .author-name,
.post-items .post-hover:after,
.post-items .post-hover:before,
.post-image .post-meta,
.post-image > a img {
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  -webkit-transition: all 1.3s;
  transition: all 1.3s;
}

.post-items:hover .post-image > a img,
.post-items:focus-within .post-image > a img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.post-image .post-hover:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

.post-image .post-hover:before,
.post-image .post-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.post-image .post-hover:before {
  content: "\f002";
  font-family: FontAwesome;
  max-width: 60px;
  max-height: 60px;
  color: var(--sp-white);
  background-color: var(--sp-primary);
  border-radius: 100%;
  border: 1px solid transparent;
  z-index: 2;
}

.post-image .post-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  text-align: center;
  color: var(--sp-white);
  z-index: 0;
}

.post-image .author-name,
.post-image .post-hover:after,
.post-items .post-hover:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
}

.post-image:hover .author-name,
.post-items:hover .post-hover:after,
.post-items:hover .post-hover:before,
.post-image:focus-within .author-name,
.post-items:focus-within .post-hover:after,
.post-items:focus-within .post-hover:before {
  visibility: visible;
  opacity: 1;
}

.post-items:hover .post-image .post-hover:before,
.post-items:hover .post-image .post-meta ul li a,
.post-items:hover .post-image .posted-on,
.post-items:focus-within .post-image .post-hover:before,
.post-items:focus-within .post-image .post-meta ul li a,
.post-items:focus-within .post-image .posted-on {
  border-color: var(--sp-white);
}

.post-meta .posted-on:not(.post-date),
.post-meta p,
.post-meta p,
.post-date p {
  margin: 0;
}

.post-items .post-date {
  max-width: max-content;
  text-align: center;
  display: inline-block;
  color: var(--sp-white);
  background-color: var(--sp-primary);
  border: 1px solid transparent;
  padding: 0.35em 0.51em;
}

.post-items .post-date span {
  font-size: 38px;
  line-height: 1;
  font-weight: bold;
  display: block;
  word-break: break-word;
}

.post-image .posted-on {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.post-image .author-name {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sp-primary);
}

.post-image .author-name p {
  margin: 0;
}

.post-image .author-name > a {
  max-width: max-content;
  display: inline-block;
  margin: 0 auto;
  font-size: 14px;
}

.post-image .post-list {
  position: absolute;
  bottom: 18px;
  left: 0;
  z-index: 1;
}

.post-image .post-list,
.post-image .posted-on {
  margin: 20px 0 0 20px;
  display: inline-block;
}

.post-image .author-name img {
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 100%;
}

.post-title {
  font-weight: 400;
}

.post-content {
  width: 100%;
  padding: 25px 20px 23px;
}

.post-content p {
  margin: 18px 0 14px;
}

.post-content .gallery {
  display: inline-block;
}

.post-meta.up {
  margin-bottom: 12px;
}

.post-meta:not(.imu) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.post-meta.down {
  border-top: 1px solid #d0d0d0;
  margin: 0;
  clear: both;
  margin-top: 20px;
  padding-top: 22px;
}

.post-items .post-meta .post-meta ul,
.post-meta:not(.up):not(.imu) > span {
  flex: auto;
  text-align: center;
  line-height: 1;
}

.post-meta:not(.down):not(.imu) > span:not(.post-date) {
  flex: auto;
  text-align: left;
  line-height: 1;
}

.post-meta:not(.imu) > span:not(.post-date) {
  border-right: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  padding: 0 5px;
}

.post-meta:not(.imu) > span:not(.post-date):first-child {
  border-left: 0;
  padding-left: 0;
  border-right: 0;
}

.post-meta:not(.imu) > span:not(.post-date):last-child {
  padding-right: 0;
  border-right: 0;
}

.post-meta:not(.imu) > span:nth-child(even) {
  border-right: 0;
}

.post-meta > span i {
  margin-right: 5px;
  color: var(--sp-primary);
}

.more-link {
  position: relative;
  line-height: 30px;
  white-space: nowrap;
  display: inline-block;
}

.more-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 100%;
  background-color: var(--sp-white);
  transition: 0.3s ease-in-out;
}

.more-link:hover:before,
.more-link:focus:before {
  left: -200%;
}

.more-link:after {
  content: "\f061";
  font-family: fontawesome;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--sp-white);
  background-color: var(--sp-secondary);
  border-radius: 3px;
  transition: 0.6s ease-in-out;
}

.more-link:hover:after,
.more-link:focus:after {
  color: var(--sp-white);
  background-color: var(--sp-primary);
  left: 104%;
}

.post-items .post-meta ul,
.post-items .post-meta ul li {
  padding: 0;
  display: inline-block;
  text-align: left;
}

.post-items .post-meta ul li a {
  display: inline-block;
  font-weight: 500;
  line-height: 2.5;
  padding: 0 20px;
  color: var(--sp-white);
  background-color: var(--sp-primary);
  border: 1px solid transparent;
}

.post-items .post-meta ul.post-categories li a:first-child {
  display: none;
}

.post-items .post-meta ul li a:not(:nth-child(2)) {
  margin-left: 5px;
}

.post-items .post-meta ul li a:nth-child(n + 5) {
  margin-top: 10px;
}

.post-items ul:not(.post-categories) li a,
.post-items ol:not(.post-categories) li a,
.post-items table a,
strong a,
blockquote a,
code a,
p a,
span:not(.author-name):not(.comments-link):not(.posted-on):not(.post-list) a {
  color: var(--sp-primary);
  text-decoration: underline;
}

/*===== // =====*/

/*===== 19. Blog Post Image Carousel =====*/

.post-image-carousel {
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.post-image-carousel.owl-carousel .owl-item img {
  width: auto;
  max-width: 100%;
}

.post-image-carousel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.post-items:hover .post-image-carousel:before {
  visibility: visible;
  opacity: 1;
}

.post-image-carousel.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 0;
  margin: 0;
}

.post-image-carousel.owl-theme .owl-nav [class*="owl-"] {
  width: 51px;
  height: 180px;
  line-height: 60px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease 0s;
  color: var(--sp-white);
  background-color: rgba(0, 0, 0, 0.75);
  border: none;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  z-index: 2;
}

.post-image-carousel.owl-theme .owl-nav .owl-prev {
  left: -20px;
}

.post-image-carousel.owl-theme .owl-nav .owl-next {
  right: -20px;
}

.post-items:hover .post-image-carousel.owl-theme .owl-prev {
  right: auto;
  left: 8px;
  opacity: 1;
  visibility: visible;
}

.post-items:hover .post-image-carousel.owl-theme .owl-next {
  left: auto;
  right: 8px;
  opacity: 1;
  visibility: visible;
}

.post-image-carousel.owl-theme .owl-prev:hover,
.post-image-carousel.owl-theme .owl-next:hover {
  background-color: rgba(214, 21, 35, 0.75);
}

/*===== // =====*/

/*===== 20. Author-Area =====*/

.author-details {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 40px;
  margin: 1.5rem auto;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #d0d0d0;
}

.author-details .section-header {
  width: 100%;
  display: block;
  margin-bottom: 1.5rem;
}

.author-details .section-header h2 {
  font-weight: 500;
  line-height: 1.1;
}

.author-details .media {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.author-details .media .auth-mata {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: 1.5rem;
}

.author-details .media .auth-mata img {
  width: 100px;
}

.author-details .media .media-body {
  flex-basis: 90%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.author-details .media .media-body h4 {
  margin-bottom: 0.5rem;
}

.author-details .media .media-body p {
  margin: 0;
  line-height: 1.5;
}

.media-body.author-meta-det > a:not(.av-btn) {
  color: var(--sp-primary);
}

.media-body.author-meta-det .av-btn {
  display: table;
  margin-top: 5px;
  margin: 6px 0 0 auto;
}

/*===== // =====*/

/*===== 21. Comments-Area =====*/

.toggle-comments {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}

.avril-is-toggle-comments .comments-area {
  display: none;
}

.avril-is-toggle-comments.comments-visible .comments-area {
  display: block;
}

.comments-area {
  margin-top: 1.5rem;
}

.single-comments-title,
.comments-title {
  margin-bottom: 1rem;
  text-align: left;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comments-area li {
  list-style: none;
}

.comments-area .comment-body {
  position: relative;
  padding: 25px 25px 25px 140px;
  min-height: 120px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 3px;
  z-index: 0;
  margin-bottom: 1rem;
}

.comments-area .comment-list > .comment > .comment-body {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.comments-area .comment-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
}

.comments-area .comment-meta .comment-author img {
  position: absolute;
  z-index: 0;
  left: 20px;
  top: 28px;
  width: 100px;
}

.comment-meta .comment-metadata {
  width: 100%;
  line-height: 1.5;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.comment-content {
  position: relative;
  z-index: 0;
  padding: 1em 2.35rem 1em 0;
}

.comment-content p {
  margin: 0;
}

.comment-metadata .edit-link,
.comment-body .reply {
  position: relative;
  z-index: 0;
}

.comment-metadata .edit-link a,
.comment-body .reply a {
  padding-left: 5px;
}

.comment-metadata .edit-link:before {
  content: "\f044";
  font-family: FontAwesome;
}

.comment-body .reply:before {
  content: "\f01e";
  font-family: FontAwesome;
}

.comment-metadata .edit-link:before,
.comment-body .reply:before {
  font-size: 12px;
  color: var(--sp-primary);
}

.comment-metadata .edit-link:before {
  vertical-align: text-bottom;
}

.comment-body .reply {
  text-align: right;
}

.comment-list .children {
  position: relative;
  padding: 0;
  margin: 0;
  margin-left: 2.5rem;
  z-index: 0;
}

#cancel-comment-reply-link {
  color: var(--sp-primary);
  text-decoration: underline;
}

#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus {
  text-decoration: none;
}

/*===== // =====*/

/*===== 22. Form Part for Comment =====*/

.comment-respond {
  margin-top: 2.25rem;
}

.comment-reply-title {
  text-align: left;
  margin-bottom: 15px;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.comment-form
  > p:not(.comment-notes):not(.comment-form-comment):not(
    .comment-form-cookies-consent
  ):not(.form-submit) {
  flex: auto;
}

.comment-form
  > p:nth-child(2n + 1):not(.comment-notes):not(.comment-form-comment):not(
    .comment-form-cookies-consent
  ):not(.form-submit) {
  margin-right: 30px;
}

.comment-form
  p.comment-form-url:not(.comment-notes):not(.comment-form-comment):not(
    .comment-form-cookies-consent
  ):not(.form-submit) {
  margin-right: 0;
}

.comment-form-comment {
  max-width: 100%;
  flex-basis: 100%;
}

.comment-form > p:not(:last-child) {
  margin-bottom: 30px;
}

.comment-form-cookies-consent,
.form-submit {
  width: 100%;
}

/*===== // =====*/

/*===== 23. Footer Section =====*/

.footer-section {
  padding-top: 30px;
}

.footer {
  color: var(--sp-white);
  background-color: #151535;
}

.footer-light .footer {
  color: var(--sp-secondary-dark);
  background-color: var(--sp-white);
}

.footer-light .footer .widget_payment_methods li a {
  color: var(--sp-primary);
}

.footer-light .footer .widget_payment_methods li a:hover,
.footer-light .footer .widget_payment_methods li a:focus {
  color: var(--sp-secondary-dark);
}

.footer-info-wrapper li:not(:last-child) {
  margin-right: 25px;
}

.contact-info-wrapper .widget,
.footer-info-wrapper .widget {
  padding: 30px 18px;
  background-color: var(--sp-white);
  overflow: hidden;
  display: block;
}

.footer-info-wrapper .widget {
  border-radius: 3px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.22);
}

.footer-info-wrapper .contact-icon {
  font-size: 74px;
  height: 74px;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid #dddde0;
}

.footer-info-wrapper .contact-area .contact-icon i {
  text-shadow: 1200px 1000px 0 rgb(0 0 0 / 0.1);
  transition: text-shadow 0.5s ease;
}

.footer-info-wrapper .contact-area:hover .contact-icon i,
.footer-info-wrapper .contact-area:focus-within .contact-icon i {
  text-shadow: 240px 24px 0 rgb(0 0 0 / 0.1);
}

.footer-info-wrapper .contact-info span.text {
  font-size: 20px;
  font-weight: 600;
}

.footer-info-wrapper .contact-info:not(:hover):not(:focus) span.text {
  color: var(--sp-secondary);
}

.footer-info-wrapper .contact-info span.title {
  color: #777777;
  margin-top: 5px;
}

.footer-main {
  padding: 45px 0;
  border-bottom: 1px solid rgba(125, 125, 125, 0.3);
}

.footer-copyright {
  padding: 24px 0;
  border-bottom: 5px solid var(--sp-primary);
}

.footer-main .contact-area:not(:last-child) {
  margin-bottom: 15px;
}

.footer .mail-form .av-mail-field:focus {
  background-image: var(--sp-gradient-focus);
}

/*===== // =====*/

/*===== 24. Back To Top Start =====*/

.scrollup {
  position: fixed;
  top: 0;
  right: 25px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  padding: 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  color: var(--sp-white);
  background-color: var(--sp-primary);
  border: none;
  outline: none;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.9s;
  transition: 0.9s;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}

.scrollup i {
  display: inline-block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.scrollup.is-active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.scrollup.is-active:hover,
.scrollup.is-active:focus {
  color: var(--sp-white);
  transform: translateY(-98%) rotate(-45deg);
  -webkit-transform: translateY(-98%) rotate(-45deg);
  -moz-transform: translateY(-98%) rotate(-45deg);
  -o-transform: translateY(-98%) rotate(-45deg);
  -ms-transform: translateY(-98%) rotate(-45deg);
}

.scrollup.is-active:hover i,
.scrollup.is-active:focus i {
  transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
}

/*===== // =====*/

/*===== 25. Breadcrumb Section =====*/

.breadcrumb-area {
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: auto;
  display: block;
  color: var(--sp-white);
  background-size: cover;
  background-attachment: fixed;
}

.breadcrumb-area:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--sp-secondary-dark);
  z-index: 0;
  opacity: 0.75;
}

.breadcrumb-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  padding: 35px 0;
  min-height: 236px;
}

.breadcrumb-heading {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  /* margin: auto 0; */
  height: 100%;
  width: 100%;
  max-width: 50%;
}

.breadcrumb-heading h2 {
  margin-bottom: 0;
}

.breadcrumb-list {
  flex-shrink: 0;
  list-style: none;
  width: 100%;
  max-width: 50%;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  display: inline-block;
  word-break: break-word;
}

.breadcrumb-list li i {
  vertical-align: middle;
}

.breadcrumb-list li i.fa.fa-chevron-right {
  font-size: 80%;
  margin-right: 2px;
}

.breadcrumb-list li span {
  color: var(--sp-primary);
  display: inline-block;
}

.breadcrumb-content .breadcrumb-list li a:not(:focus):not(:hover) {
  color: var(--sp-white);
}

.breadcrumb-center .breadcrumb-content {
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb-center .breadcrumb-heading {
  text-align: center;
}

.breadcrumb-center .breadcrumb-list {
  text-align: center;
}

.breadcrumb-right .breadcrumb-content {
  flex-direction: row-reverse;
}

.breadcrumb-right .breadcrumb-list,
.breadcrumb-left .breadcrumb-heading {
  text-align: left;
}

.breadcrumb-left .breadcrumb-list,
.breadcrumb-right .breadcrumb-heading {
  text-align: right;
}

.breadcrumb-footer {
  position: relative;
  background-color: var(--sp-primary);
}

.breadcrumb-content-below {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 83px;
}

.breadcrumb-content-below .breadcrumb-list,
.breadcrumb-content-below .breadcrumb-widget {
  flex: 1;
  line-height: 0.5;
}

.breadcrumb-content-below .breadcrumb-list {
  text-align: left;
}

.breadcrumb-content-below .breadcrumb-widget {
  text-align: right;
}

.breadcrumb-widget .widget {
  display: inline-block;
  max-width: 180px;
}

.breadcrumb-home {
  margin-right: 20px;
}

.breadcrumb-home a {
  display: inline-block;
  line-height: 1.65;
  padding: 0 0.49rem;
  font-size: 22px;
  color: var(--sp-secondary-dark);
  background-color: var(--sp-white);
}

.breadcrumb-home a:hover,
.breadcrumb-home a:focus {
  color: var(--sp-primary);
}

/*===== // =====*/

/*===== 26. About Page =====*/

.about-panel p {
  margin-bottom: 35px;
}

.skills-image {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.skills-image img {
  margin: 0 auto;
}

.skills-wrapper {
  width: 100%;
  display: block;
  padding: 20px 0;
}

.skills-panel {
  display: flex;
  align-items: center;
  width: 100%;
}

.skills-panel:not(:last-child) {
  margin-bottom: 60px;
}

.skills-growth {
  margin-right: 35px;
}

.skills-panel p:last-child {
  margin-bottom: 0;
}

.progressbar {
  display: inline-block;
  width: 100px;
}

.circle {
  width: 95px;
  height: 95px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  text-align: center;
}

.circle canvas {
  vertical-align: middle;
  border-radius: 50%;
}

.circle div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  line-height: 95px;
  font-size: 25px;
  font-weight: 700;
}

/*===== // =====*/

/*===== 27. Pagination =====*/

nav.woocommerce-pagination,
.pagination {
  position: relative;
  text-align: center;
  z-index: 0;
  width: 100%;
  max-width: fit-content;
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  padding: 12px 10px;
  box-shadow: 0px 0px 5.52px 0.48px rgba(0, 0, 0, 0.2);
}

.pagination h2 {
  display: none;
}

nav.woocommerce-pagination ul {
  line-height: 40px;
}

nav.woocommerce-pagination ul,
.pagination .nav-links {
  display: inline-flex;
}

.pagination .page-numbers:not(.dots) {
  font-weight: 600;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  display: flow-root;
  font-size: 16px;
  line-height: 1.1;
  min-width: 25px;
  text-align: center;
  padding: 2px;
  transition: all 0.3s ease 0s;
  vertical-align: baseline;
  white-space: nowrap;
  border-radius: 0;
  cursor: pointer;
}

.pagination .nav-links .prev.page-numbers,
.pagination .nav-links .next.page-numbers,
.pagination .nav-links .page-numbers.current {
  color: var(--sp-white);
  background-color: var(--sp-primary);
}

.pagination .page-numbers:not(.dots):not(:last-child) {
  margin-right: 10px;
}

/*===== // =====*/

/*===== 28. FAQ =====*/

.faq-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.faq-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 60px;
  height: 60px;
  margin-right: 15px;
  line-height: 1;
  position: relative;
  z-index: 0;
  color: var(--sp-primary);
}

.faq-content {
  display: inline-block;
  text-align: left;
  color: inherit;
}

.faq-content h5 {
  margin-bottom: 10px;
}

.faq-content p {
  margin: 0;
  color: #777777;
}

/*===== // =====*/

/*===== 29. Contact Page =====*/

.contact-info-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-wrapper li {
  flex-basis: 100%;
  position: relative;
  list-style: none;
}

.contact-info-wrapper li:not(:last-child) {
  margin-bottom: 50px;
}

.contact-info-wrapper .widget {
  border-left: 2px solid var(--sp-primary);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.contact-info-wrapper .contact-icon {
  font-size: 42px;
  height: 42px;
  margin-right: 14px;
}

.contact-info-wrapper .contact-info span.text {
  font-size: 18px;
  font-weight: 600;
}

.contact-info-wrapper .contact-info span.title {
  color: #777777;
  margin-top: 2px;
}

.send-your-enquiry {
  text-align: center;
  padding: 26px 38px;
  background-color: var(--sp-white);
  box-shadow: 0px 0px 12.61px 0.39px rgba(0, 0, 0, 0.1);
}

.send-your-enquiry form p {
  text-align: left;
}

.send-your-enquiry h4,
.send-your-enquiry form p:not(:last-child) {
  margin-bottom: 15px;
}

.send-your-enquiry form p:last-child {
  margin-bottom: 0;
}

.send-your-enquiry form .av-btn {
  margin-top: 10px;
}

.opening-hours {
  padding: 25px 35px;
  color: var(--sp-white);
  background-blend-mode: multiply;
  background-size: cover !important;
  box-shadow: 0px 0px 12.61px 0.39px rgba(0, 0, 0, 0.1);
}

.opening-heading {
  text-align: center;
}

.opening-heading h4 {
  margin-bottom: 12px;
}

.opening-hours .av-grid-dl {
  padding: 0 10px;
}

.opening-hours .av-grid-dl dd {
  text-align: right;
}

.map-section {
  padding: 350px 0 100px;
}

#map {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/*===== // =====*/

/*===== 30. 404 Page =====*/

.av-text-404 {
  text-align: center;
}

.av-text-404 h1 {
  font-size: 515px;
  line-height: 0.8;
}

.av-text-404 h1,
.av-text-404 img {
  display: inline-flex;
  max-width: 916px;
}

.av-text-404 h2 {
  margin: 60px 0 22px;
}

/*===== // =====*/

/*===== 31. Coming Soon =====*/

.coming-soon {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 50px 0 40px;
  color: var(--sp-white);
  background-blend-mode: multiply;
  text-align: center;
  z-index: 0;
}

.av-soon-text {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 35px;
  display: block;
}

.av-logo-soon {
  margin-bottom: 16px;
}

.av-soon-text p {
  margin-top: 10px;
  margin-bottom: 0;
}

.fact-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.fact-soon .fun-box {
  flex: 1 1 0%;
  margin-right: 35px;
  padding-right: 35px;
  position: relative;
  z-index: 0;
}

.fact-soon .fun-box:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100px;
  display: inline-block;
  margin: auto;
  border: 0px solid rgba(255, 255, 255, 0.4);
  border-right-width: 1px;
  z-index: -1;
}

.fact-soon .fun-box:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.count-fact {
  padding: 35px;
  text-align: center;
  background-color: rgba(214, 21, 35, 0.25);
  position: relative;
  z-index: 0;
}

.count-fact h1 {
  font-size: 100px;
  line-height: 0.8;
}

.count-fact h4 {
  margin-top: 15px;
}

.soon-widget,
.subscribe-form-soon {
  max-width: 462px;
  margin: 0 auto;
  margin-top: 40px;
  display: block;
}

.subscribe-form-soon .av-search-field {
  background-color: #323232;
  border-color: #323232;
}

.soon-widget .widget_social_widget li a {
  color: var(--sp-secondary);
  background-color: var(--sp-white);
}

.soon-widget .widget_social_widget li a:hover,
.soon-widget .widget_social_widget li a:focus {
  color: var(--sp-primary);
}

/*===== // =====*/

/*---------------------------------------
    Screen Reader Text
-----------------------------------------*/
/* Accessibility */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content {
  background: var(--sp-white);
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

/*---------------------------------------
    Boxed Layout CSS
-----------------------------------------*/
@media (min-width: 1200px) {
  body.boxed {
    width: 1210px;
    -webkit-box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
    box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
    margin: 0 auto;
    position: relative;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  body.boxed {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body.boxed {
    width: 100%;
    /* padding: 0px 20px !important; */
  }

  body {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .menu-right {
    display: none !important;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  body.boxed {
    width: 100%;
  }
}

/*===== // =====*/

/*---------------------------------------
    Blog Sticky Start
-----------------------------------------*/

.bg-sticky {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  text-align: center;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  padding: 0 0.62em;
  line-height: 30px;
  border-radius: 3px;
  color: var(--sp-white);
  z-index: 9;
}

.bg-sticky.rounded-circle {
  border-radius: 100%;
}

/*===== // =====*/

/*---------------------------------------
    Transition
-----------------------------------------*/

.blog-img-carousel,
.blog-img-carousel:before,
.service-icon,
.service-content > a,
.service-item,
.service-item:before,
.pricing-item,
.features-item,
.features-icon,
.av-link,
.gallery-item .gallery-icon img,
.portfolio-item .portfolio-icon img,
a {
  -webkit-transition: var(--sp-transition);
  transition: var(--sp-transition);
}

/*===== // =====*/

/*---------------------------------------
    Easypress Theme
-----------------------------------------*/

/* ========= EasyPress >> Contact Info / Social Widget / Button  ========= */

.aera-theme .contact-icon {
  font-size: 33px;
  height: auto;
}

.aera-theme .widget_social_widget li a {
  width: 33px;
  height: 33px;
  line-height: 32px;
  font-size: 16px;
}

.aera-theme .header-search-popup form .search-field,
.aera-theme button[type="submit"],
.aera-theme button:not(.scrollup),
.aera-theme input[type="button"],
.aera-theme input[type="reset"],
.aera-theme input[type="submit"],
.aera-theme .av-btn {
  border-radius: 100px;
}

/* ========= EasyPress Header Search ========= */

.aera-theme .header-search-popup {
  z-index: -2;
  visibility: hidden;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.aera-theme.header-search-active .header-search-popup {
  z-index: 999;
  visibility: visible;
}

.aera-theme .search-overlay-layer {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(100px - 112vw);
  z-index: 1;
  display: block;
  background-color: var(--sp-secondary);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  opacity: 0.9;
}

.aera-theme.header-search-active .search-overlay-layer {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

.aera-theme .header-search-popup form {
  width: 0;
  max-width: 680px;
  -webkit-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.aera-theme.header-search-active .header-search-popup form {
  width: 100%;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.aera-theme .header-search-popup .header-search-close {
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: all 0.8s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: all 0.8s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: all 0.8s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: all 0.8s cubic-bezier(0.4, 0, 0, 1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0, 1);
  transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.aera-theme .close-style:before,
.aera-theme .close-style:after {
  width: 22px;
  -webkit-transition: all 0.3s linear 0ms;
  -khtml-transition: all 0.3s linear 0ms;
  -moz-transition: all 0.3s linear 0ms;
  -ms-transition: all 0.3s linear 0ms;
  -o-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
}

.aera-theme.header-search-active .header-search-popup .header-search-close {
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}

.aera-theme.header-search-active .header-search-close:hover:before,
.aera-theme.header-search-active .header-search-close:hover:after,
.aera-theme.header-search-active .header-search-close:focus:before,
.aera-theme.header-search-active .header-search-close:focus:after {
  -webkit-transform: scale(1.25);
  -khtml-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.25);
}

/* ========= EasyPress Slider ========= */

.aera-theme .main-slider .owl-nav {
  left: auto;
  bottom: 0;
  top: 0;
  right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}

.aera-theme .main-slider div.owl-nav [class*="owl-"] {
  border-radius: 0;
  color: var(--sp-secondary);
  background-color: var(--sp-white);
  border-color: var(--sp-white);
  width: 47px;
  height: 47px;
  line-height: 37px;
  font-size: 20px;
}

.aera-theme .main-slider div.owl-nav [class*="owl-"]:hover {
  color: var(--sp-white);
  background-color: var(--sp-primary);
}

.aera-theme .theme-content a.av-btn.av-btn-primary {
  color: var(--sp-primary);
  background-color: var(--sp-white);
  border-color: var(--sp-white);
}

.aera-theme .theme-content a.av-btn.av-btn-primary:hover,
.aera-theme .theme-content a.av-btn.av-btn-primary:focus {
  color: var(--sp-white);
  background-color: var(--sp-primary);
  border-color: var(--sp-primary);
}

.aera-theme .theme-slider div.theme-content {
  max-width: 100%;
}

.aera-theme .theme-slider .text-right [class*="av-column-"]:first-child {
  order: 1;
}

.aera-theme .theme-slider .text-center [class*="av-column-"]:first-child {
  flex-basis: 100%;
  max-width: 100%;
}

.aera-theme .theme-slider .text-center [class*="av-column-"]:nth-child(2) img {
  margin: auto;
}

.aera-theme .theme-slider .text-center [class*="av-column-"]:nth-child(2) {
  margin-top: 2rem;
}

.azwa-header-slider .owl-item .aera-img img {
  width: auto;
  height: auto;
}

@media only screen and (max-width: 991px) {
  .aera-theme .theme-slider div.theme-content {
    margin-bottom: 15px;
  }

  .aera-theme .theme-slider .text-right [class*="av-column-"]:first-child {
    order: 0;
  }

  .aera-theme .theme-slider [class*="av-column-"]:nth-child(2) {
    margin-top: 2rem;
  }
}

/* ========= EasyPress CTA Info ========= */

@media only screen and (min-width: 992px) {
  .aera-theme .info-section {
    margin: -100px 0px 20px 0px;
  }
}

.aera-theme .info-area {
  position: relative;
  width: 100%;
  background-color: var(--sp-white);
  padding: 50px 20px 60px;
  box-shadow: 0px 3px 30px -3px rgb(0 0 0 / 0.12);
}

.aera-theme .svg-clip-art {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  fill: #fff;
}

.aera-theme .svg-clip-art svg {
  height: 45px;
}

.aera-theme .slider-wrapper .svg-clip-art {
  bottom: -10px;
}

.aera-theme .info-area .svg-clip-art {
  top: -70px;
}

.aera-theme .info-area .svg-clip-art svg {
  height: 78px;
}

.aera-theme .info-area .info-wrapper [class*="info-"] .widget {
  background: none;
  padding: 6px 22px;
}

.aera-theme .info-area .info-wrapper [class*="info-"] .widget,
.aera-theme .info-area .widget .contact-info {
  color: var(--sp-secondary);
}

.aera-theme .info-area .info-wrapper .widget:after,
.aera-theme .info-area .info-wrapper .widget:before {
  display: none;
}

.aera-theme .info-area .info-wrapper .contact-area {
  flex-direction: column;
  align-items: flex-start;
}

.aera-theme .info-area .contact-icon {
  color: var(--sp-primary);
}

.aera-theme .info-area .contact-info span.text {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: bold;
}

.aera-theme .info-area .contact-info span.title {
  font-size: 16px;
  font-weight: 400;
}

.aera-theme .info-area .contact-icon {
  font-size: 52px;
  margin-bottom: 12px;
}

.aera-theme .contact-more {
  margin-top: 1.25rem;
}

.aera-theme .btn-arrow {
  position: relative;
  line-height: 30px;
  white-space: nowrap;
  display: inline-block;
}

.aera-theme .btn-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 100%;
  background-color: var(--sp-white);
  transition: 0.3s ease-in-out;
}

.aera-theme .btn-arrow:after {
  content: "\f054";
  font-family: fontawesome;
  font-size: 0.8rem;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--sp-white);
  background-color: var(--sp-secondary);
  border-radius: 0 15px 15px 0;
  transition: 0.6s ease-in-out;
}

.aera-theme .btn-arrow:hover:before,
.aera-theme .btn-arrow:focus:before {
  left: -200%;
}

.aera-theme .btn-arrow:hover:after,
.aera-theme .btn-arrow:focus:after {
  color: var(--sp-white);
  background-color: var(--sp-primary);
  left: 104%;
}

.aera-theme .more-link:after {
  content: "\f054";
  border-radius: 0 15px 15px 0;
  font-size: 0.8rem;
}

@media screen and (max-width: 1024px) {
  .aera-theme .info-area .svg-clip-art {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .aera-theme .main-slider .owl-nav {
    display: none;
  }

  .aera-theme .info-area .info-wrapper [class*="info-"] .widget {
    padding: 15px 22px;
  }

  .aera-theme .svg-clip-art svg {
    height: 18px;
  }
}

/*===== // =====*/

/*===== Avitech Theme =====*/
.avitech-theme .nav-wrapper {
  background: var(--sp-secondary);
  padding: 15px 22px;
  border-radius: 50px;
  border-bottom: 9px solid var(--sp-primary);
}

.avitech-theme .navbar-area {
  padding: 0;
}

.avitech-theme .header .header-search-toggle,
.avitech-theme .cart-icon-wrap {
  border: 1px solid #43435c;
  border-radius: 50%;
}

.avitech-theme .theme-mobile-nav {
  background: var(--sp-secondary);
}

.avitech-theme .menu-right > ul > li:nth-child(2) {
  border-left: none;
}

.avitech-theme button[type="submit"],
.avitech-theme button,
.avitech-theme input[type="button"],
.avitech-theme input[type="reset"],
.avitech-theme input[type="submit"],
.avitech-theme .av-btn,
.avitech-theme .navigation.posts-navigation .nav-links a,
.avitech-theme .wp-block-loginout a {
  border-radius: 20px;
}

.avitech-theme .main-slider .owl-item .item {
  min-height: auto;
}

.avitech-theme .header-widget .widget:not(.widget_social_widget) a,
.avitech-theme .theme-content h3,
.avitech-theme .theme-content h1,
.avitech-theme .theme-content p {
  color: var(--sp-secondary);
}

.avitech-theme .info-wrapper .widget {
  border-radius: 50px;
}

.avitech-theme .owl-item .aera-img img {
  height: auto;
  width: auto;
}

.avitech-theme .heading-default h3 .av-heading {
  border-radius: 50px;
}

.avitech-theme .theme-content .av-btn-border-white {
  color: var(--sp-primary);
  border-color: var(--sp-primary);
}

.avitech-theme .theme-content.text-right [class*="av-column-"]:first-child {
  order: 1;
}

.avitech-theme .header-widget .widget-contact a:hover span,
.avitech-theme .header-widget .widget-contact a:focus span {
  color: var(--sp-secondary) !important;
}

.avitech-theme .breadcrumb-area,
.avitech-theme
  .breadcrumb-content
  .breadcrumb-list
  li
  a:not(:focus):not(:hover) {
  color: var(--sp-secondary);
}

.avitech-theme .cart-wrapper .cart-icon-wrap span {
  top: -6px;
  right: -6px;
}

.avitech-theme button.menu-toggle:focus {
  background-color: inherit;
}

/*===== // =====*/

/*===== Ampark Theme =====*/
.ampark-theme .header-nav-wrap {
  box-shadow: 0px 1px 4px 0px rgb(44 49 59 / 50%);
  position: relative;
  background: var(--sp-white);
}

.ampark-theme .header-above-info {
  color: var(--sp-secondary);
  background-color: var(--sp-white);
}

.ampark-theme .cart-wrapper .cart-icon-wrap i {
  display: inline-block;
  color: inherit;
  vertical-align: text-bottom;
  font-size: 30px;
  color: var(--sp-primary);
}

.ampark-theme .cart-wrapper span.cart-count {
  display: inherit;
  background: var(--sp-secondary);
  border-radius: 50%;
  color: var(--sp-white);
  height: 30px;
  width: 30px;
  line-height: 2;
  position: relative;
  font-size: 16px;
}

.ampark-theme .cart-wrapper span.cart-text {
  display: block;
  padding-top: 10px;
  color: var(--sp-secondary);
}

.ampark-theme .cart-wrapper span.cart-count:after {
  content: "";
  width: 50px;
  height: 1px;
  background: rgb(189 189 189 / 0.75);
  top: 14px;
  left: -10px;
  position: absolute;
  z-index: -1;
}

.ampark-theme .navbar-area {
  padding: 1rem 0;
}

.ampark-theme .widget-left,
.ampark-theme .widget-right {
  min-height: 60px;
}

body.ampark-theme:not(.header-above-light)
  .header-widget
  .contact-info:hover
  span:nth-child(2),
body.ampark-theme:not(.header-above-light)
  .header-widget
  .contact-info:focus
  span:nth-child(2) {
  color: var(--sp-secondary);
}

/*===== // =====*/

/*===== Varuda Theme =====*/
.varuda-theme .nav-wrapper {
  padding: 22px;
  border-radius: 50px;
  box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 10%);
  background: #fff;
}

.varuda-theme .navbar-area {
  padding: 0;
}

.varuda-theme .header .header-search-toggle,
.varuda-theme .cart-icon-wrap {
  border: 1px solid #43435c;
  border-radius: 50%;
}

.varuda-theme .heading-default h3 .av-heading {
  border-radius: 50px;
}

.varuda-theme .sticky-menu,
.varuda-theme .theme-mobile-nav {
  /* background: var(--sp-secondary); */
}

.varuda-theme .menu-right > ul > li:nth-child(2) {
  border-left: none;
}

.varuda-theme .breadcrumb-area,
.varuda-theme
  .breadcrumb-content
  .breadcrumb-list
  li
  a:not(:focus):not(:hover) {
  color: var(--sp-secondary);
}

.varuda-theme .breadcrumb-area:before {
  opacity: 0.5;
  background-color: #fff;
}

.varuda-theme button[type="submit"],
.varuda-theme button,
.varuda-theme input[type="button"],
.varuda-theme input[type="reset"],
.varuda-theme input[type="submit"],
.varuda-theme .av-btn,
.varuda-theme .navigation.posts-navigation .nav-links a,
.varuda-theme .wp-block-loginout a {
  border-radius: 20px;
}

.varuda-theme .main-slider .owl-item .item {
  min-height: auto;
}

.varuda-theme .theme-content h1 {
  color: var(--sp-primary);
}

.varuda-theme .info-wrapper .widget {
  border-radius: 50px;
}

.varuda-theme .info-wrapper .widget-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: var(--sp-secondary);
  gap: 20px;
  position: relative;
  overflow: hidden;
  padding: 33px 33px;
}

.varuda-theme .info-wrapper .contact-icon {
  font-size: 44px;
  color: #ffffff;
  z-index: 1;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-right: 12px;
  position: relative;
  z-index: 1;
}

.varuda-theme .info-wrapper .contact-info .text {
  font-weight: 800;
  margin: 0;
  display: block;
}

.varuda-theme .info-wrapper .contact-info p {
  margin: 0;
}

.varuda-theme .info-wrapper .contact-info {
  color: #ffffff !important;
  z-index: 1;
}

.varuda-theme .info-wrapper .widget-contact:before {
  content: "";
  position: absolute;
  width: 380px;
  height: 110px;
  background-color: var(--sp-primary);
  top: -54px !important;
  right: 0 !important;
  border-radius: 80px;
  z-index: 1;
}

.varuda-theme .info-wrapper .widget-contact:hover::after,
.varuda-theme .info-wrapper .widget-contact:focus-within::after {
  left: 0;
}

.varuda-theme .info-wrapper .widget-contact::after {
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  z-index: -1;
  transition: all 0.5s 0.6s;
  z-index: 0;
}

.varuda-theme .info-wrapper .widget-contact::after {
  bottom: 0;
  left: 100%;
  background-image: url(../images/info-hover.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right;
}

.varuda-theme .info-wrapper .contact-icon i,
.varuda-theme .info-wrapper .widget-contact img {
  display: inline-block;
  vertical-align: super;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.varuda-theme .info-wrapper .contact-icon i {
  text-shadow: 1200px -17px 0 rgb(255 255 255 / 0.2);
  transition: all 0.5s;
}

.varuda-theme .info-wrapper .widget-contact:hover .contact-icon i,
.varuda-theme .info-wrapper .widget-contact:focus-within .contact-icon i {
  text-shadow: 222px -29px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s;
  z-index: 3;
}

.varuda-theme .info-wrapper .widget-contact:hover .contact-icon i {
  -webkit-animation-name: avril-float, avril;
  animation-name: avril-float, avril;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

@-webkit-keyframes avril-float {
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@keyframes avril-float {
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@-webkit-keyframes avril {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@keyframes avril {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

.varuda-theme .info-wrapper .contact-area {
  position: relative;
}

.varuda-theme .info-wrapper .contact-area::before {
  content: "";
  position: absolute;
  opacity: 0;
  transform: translateY(-150%);
  background-color: var(--sp-secondary);
  visibility: hidden;
  transition: all 0.5s;
  width: 390px;
  border-radius: 100px;
  height: 110px;
  z-index: 1;
  top: -86px;
  left: -96px;
}

.varuda-theme .info-wrapper .widget-contact:hover .contact-area:before {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.varuda-theme .info-wrapper .contact-area::after {
  content: "";
  position: absolute;
  opacity: 0;
  transform: translateY(150%);
  background-color: var(--sp-primary);
  visibility: hidden;
  transition: all 0.5s;
  width: 455px;
  /* border-radius: 100px; */
  height: 110px;
  z-index: 0;
  top: -27px;
  left: -90px;
}

.varuda-theme .info-wrapper .widget-contact:hover .contact-area:after {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.varuda-theme .info-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.varuda-theme .info-wrapper li:not(:last-child) {
  margin-right: 20px;
}

.varuda-theme .info-wrapper li {
  flex: 1;
  position: relative;
  list-style: none;
}

.varuda-theme .info-wrapper .contact-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.varuda-theme .info-wrapper .contact-info {
  display: inline-block;
  text-align: left;
  color: inherit;
}

@media (max-width: 991px) {
  .varuda-theme .info-wrapper li:not(:last-child) {
    margin-right: 0 !important;
  }

  .varuda-theme .info-wrapper .widget-contact::before {
    width: 920px;
  }

  .varuda-theme .info-wrapper .contact-area::after,
  .varuda-theme .info-wrapper .contact-area::before {
    left: -356px;
    width: 920px;
  }
}

@media (max-width: 991px) {
  .varuda-theme .info-wrapper li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.varuda-theme .info-wrapper li:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 991px) {
  .varuda-theme .info-wrapper li {
    flex: 1 1 100%;
  }
}

@media (max-width: 424px) {
  .varuda-theme .info-wrapper .widget-contact {
    padding: 23px 15px;
  }
}

@media (max-width: 338px) {
  .varuda-theme .info-wrapper .contact-info {
    font-weight: 14px;
  }

  .varuda-theme .info-wrapper .contact-icon {
    font-size: 33px;
  }
}

.varuda-theme .info-wrapper .contact-info .title {
  font-size: 16px;
}

/*===== // =====*/

.varuda-theme .theme-content .av-btn-border-white {
  color: var(--sp-primary);
  border-color: var(--sp-primary);
}

.varuda-theme .slider-wrapper .owl-carousel.owl-drag .owl-item {
  max-height: 600px;
}

.varuda-theme .main-slider .owl-nav {
  bottom: 5.9em;
}
