@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* -------------------------------------------

Name: 		Borostore
Version:  1.0.0
Author:		ACHRAF LAFKIRI

p.s. I am available for Freelance hire (UI design, web development). mail: achraf.lafkiri.2@gmail.com

------------------------------------------- */
/*--------------------------------------------

01. Fonts
02. Global styles
      - mycontainer
      - Custom button
04. Start components
      - Navbar
      - Hero section
      - About us
      - hot-deals
      - Banner
      - Services
      - Experience
      - Blog
      - Footer
      - Contact
      - Single Post
          - post
          - comments
      - preloader
      
--------------------------------------------*/

/***************************

font

***************************/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,900&display=swap");

/***************************

Global styles

***************************/

:root {
  --main-color: #C25E86;
  --secondary-color: #f6f8ff;
  --third-color: #b4a72f;
  --gray-color: #898989;
  --font-color: #080129;
  --padding-section: 1.4rem 0;
  --margin-section-bottom: 2rem;
  --main-color-opacity-50: rgba(194, 94, 134, 0.5);
  --main-color-opacity-25: rgba(194, 94, 134, 0.25);
  --third-color-opacity-50: rgb(180, 167, 47, 0.5);
  --third-color-opacity-25: rgb(180, 167, 47, 0.25);
}

.section {
  padding: var(--padding-section);
}

* {
  font-family: "Poppins", sans-serif;
  border: none;
  outline: none;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.w-full {
  width: 100%;
}

.text-colored {
  color: var(--main-color) !important;
  font-weight: 500 !important;
  line-height: 50px !important;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--main-color);
  margin: 20px 0;
}

.sub-title {
  color: #ff9800;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.is-violet {
  background-color: var(--main-color) !important;
  color: #ffff !important;
}

.has-text-violet {
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .column.is-6-touch {
    width: 100%;
  }
}

.bg-grey {
  background-color: #F7F8F8;
}

/* Shine Effect for images */

figure.image {
  overflow: hidden;
  position: relative;
}

figure.image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

figure.image::before {
  -webkit-animation: shine 4s ease infinite;
  animation: shine 4s ease infinite;
}

figure.image:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* .mycontainer */
.mycontainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  /* border: 3px solid #000000; */
  clear: both;
  position: relative;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .mycontainer {
    max-width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 700px) {
  .column.is-6-touch {
    width: 100% !important;
  }
}

/* custom-radius */
.custom-radius-5 {
  border-radius: 5px !important;
}

.custom-radius-10 {
  border-radius: 10px !important;
}

.custom-radius-20 {
  border-radius: 20px !important;
}

.custom-radius-30 {
  border-radius: 30px !important;
}

/* Custom button */
.custom-btn {
  color: #fff;
  padding: 10px 15px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bx-btn {
  border: none;
  background: var(--main-color);
  color: #fff;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}

.bx-btn-outline {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.bx-btn:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}

.bx-btn:hover,
.bx-btn-1:hover {
  opacity: 0.7;
  text-decoration: none;
  color: #fff;
}

.bx-contact-section .custom-btn {
  margin-top: 30px;
}

.bx-btn:active {
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3),
    -4px -4px 6px 0 rgba(116, 125, 136, 0.2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

@keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/***************************  Start Components ***************************/

/***************************

Navbar

***************************/
nav.navbar {
  z-index: 999999;
  padding: 20px 6rem;
}

nav.navbar.active {
  position: fixed;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #ffffffad;
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 1021px) {
  nav.navbar.active {
    position: relative;
  }
}

.navbar .custom-btn {
  border-radius: 4px !important;
  width: 140px !important;
  height: 40px !important;
}

@media screen and (max-width: 600px) {
  nav.navbar.active {
    top: 0;
    transform: translate(-50%, 0);
  }
}

.navbar .navbar-start a {
  font-size: 18px;
  transition: all 0.3s ease;
}

.navbar .navbar-start a.active,
.navbar .navbar-start a:hover {
  background-color: transparent !important;
  letter-spacing: 1px;
  font-weight: 800;
}

.navbar .select:not(.is-multiple):not(.is-loading)::after {
  border-color: var(--main-color) !important;
}

.navbar-dropdown {
  display: none;
}

.navbar-dropdown.active {
  display: block;
}

.navbar.mt-4 {
  margin-top: 0 !important;
}

/***************************

Hero section

***************************/

.hero-section {
  overflow: hidden;
  position: relative;
}

.hero-section .hero-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 999;
}

.hero-section .hero-content h1 {
  font-size: 68px;
  color: #fff;
  font-weight: 500;
  width: 50%;
}

.hero-section .hero-content p {
  font-size: 20px;
  color: #dddddd;
  width: 50%;
}

.hero-section .hero-content .custom-btn {
  font-size: 14px;
  padding: 15px 30px;
  width: 130px;
}

.hero-section .swiper-slide {
  background-size: cover;
  background-position: top center;
  padding: 400px 0
}

.hero-section .swiper-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all .3s linear;
}

.hero-section .swiper-button>.bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  z-index: -1;
  transition: all .3s linear;
}

.hero-section .swiper-button:hover .bg {
  transform: rotate(45deg) scale(1.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: #fff !important;
}

@media screen and (max-width: 900px) {
  .hero-section img {
    height: 100% !important;
  }
}

.bg-shape-hero {
  position: relative;
  background-color: #f6f8ff;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section .hero-section-title {
  font-size: 3.9rem;
  font-weight: 900;
  color: var(--main-color);
  line-height: 80px;
  margin-top: 10px;
  position: relative;
}

.hero-section .hero-section-p {
  font-size: 20px;
  color: #000;
  margin: 11px 0;
}

.hero-section-me {
  font-size: 25px;
  font-weight: 500;
  position: relative;
}

.hero-section-me #shape3 {
  width: 40px;
  position: absolute;
  top: -50%;
  right: 50%;
  transform: translate(-50%, -50%);
}

.hero-section .buttons {
  margin-top: 10px;
  position: relative;
}

.hero-section .buttons #shape1 {
  width: 50px;
  position: absolute;
  top: 103px;
  left: -9%;
  transform: translate(-50%, -50%);
  animation: turn10 5s linear infinite;
  transform: rotate(20deg);
}

@keyframes turn10 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(20deg);
  }
}

.hero-section .custom-btn {
  font-size: 18px;
}

.profile-img {
  width: 500px;
}

.profile-img>figure.image {
  position: relative;
}

.profile-img .image #shape2 {
  width: 100px;
  position: absolute;
  top: 28%;
  left: 15%;
  transform: translate(-50%, -50%);
  animation: shape21Animation 2.5s ease-in-out infinite;
}

.profile-img .image #shape2.w-index3 {
  width: 20px;
}

/* Medium laptops */
@media screen and (max-width: 1280px) {
  .profile-img {
    width: 400px;
  }
}

/* Tablets */
@media screen and (max-width: 900px) {
  .hero-section .buttons #shape1 {
    display: none;
  }

  .hero-section .columns {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-section .columns .info {
    text-align: center;
  }

  .hero-section .columns .info .buttons {
    margin: 15px auto;
  }

  .profile-img {
    width: 300px;
  }

  .hero-section .hero-section-title {
    font-size: 3rem;
  }

  .hero-section .hero-section-p {
    margin: 14px 0;
  }
}

/* Phones */
@media screen and (max-width: 500px) {
  .hero-section .hero-section-title {
    font-size: 34px;
    line-height: 44px;
  }
}

/* shapes */
#shape1,
#shape2,
#shape3 {
  max-width: 90px;
}

/* Shape animations */
@keyframes shape21Animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes shape3Animation {
  0% {
    transform: translate(-50%, -50%) translateY(-20px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(20px);
  }

  100% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

/* Hero Section */

.hero-section.active img.hero-shape\.png {
  position: absolute;
  top: 91%;
  left: 0;
  background: #f6f8ff;
}

/***************************

About us

***************************/

.about {
  position: relative;
}

.about #about-shape1 {
  position: absolute;
  left: 50px;
  top: 30px;
  transform: translate(-50%, -50%);
}

.about .column .myinfos {
  position: relative;
}

.about .column .info .myinfos .has-blur {
  border: 1px solid #c5c5c5;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  margin-top: 26px;
  padding: 20px 10px;
}

.about .myinfos .columns.has-blur {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.about #about-shape2 {
  position: absolute;
  right: -21%;
  top: 100%;
  animation: shape21Animation 5s ease-in-out infinite;
}

.about .column .info ul {
  list-style-type: none;
}

.about .column .info ul li {
  font-size: 18px;
  margin: 8px 0;
}

.about .info p {
  font-size: 20px;
  margin: 10px 0;
}

span {
  color: var(--main-color);
}

.about .myinfos {
  position: relative;
}

.about .profile-img {
  width: 400px;
}

/* Medium laptops */
@media screen and (max-width: 1280px) {
  .about .column:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Tablets */
@media screen and (max-width: 900px) {
  .about #about-shape1 {
    display: none;
  }

  .about #about-shape2 {
    width: 80px;
  }

  .about #about-shape2 {
    position: absolute;
    right: -11%;
    top: 95%;
    animation: shape21Animation 5s ease-in-out infinite;
  }

  .about .info {
    align-items: center;
  }

  .about .columns {
    display: flex;
    flex-direction: column;
  }

  .about .columns .mobile {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
  }

  .about .column .info ul {
    padding: 20px;
    width: 100%;
  }

  .about .info p {
    font-size: 20px;
    margin: 10px auto;
    width: 96%;
  }

  .profile-img.is-hidden-desktop.is-hidden-mobile {
    display: none;
  }
}

/* Phones */
@media screen and (max-width: 500px) {}

about .breadcrumb {
  background-color: #f8f8f8;
  padding: 0.75rem 1.5rem;
}

about .breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
}

about .breadcrumb ul li a {
  color: var(--main-color);
  white-space: pre-wrap;
}

.breadcrumb a {
  padding: 0 !important;
}

/* About 2 */

.about.page-2 {
  margin-top: 8rem;
}

.about .column .info .myinfos .has-blur.page-2 {
  border: 0px solid #c5c5c5;
  backdrop-filter: blur(5px);
  margin-top: 26px;
  margin-left: 3rem;
  padding: 0px;
  position: relative;
}

.about .column .info .myinfos .has-blur.page-2::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  left: -51px;
  top: 0;
  background-color: var(--main-color);
}

.about .column .info .myinfos .has-blur.page-2::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--main-color);
  left: -60px;
  top: 0;
  border-radius: 50%;
}

.about .columns .column .profile-img.page-2 {
  width: 500px !important;
}

.about .column {
  display: flex;
  align-items: center;
  justify-content: center;
}

/***************************

Technology

***************************/

.brands-section .single-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 10px 20px 10px;
  text-align: center;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  width: 200px;
}

.single-brand-item .technology-icon {
  display: inline-block;
  width: 145px;
}

.single-brand-item .technology-icon img {
  width: 100%;
}

.single-brand-item h3 {
  color: #505050;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.technology-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 780px) {
  .technology-grid {
    padding: 0 30px;
  }

  .brands-section .single-brand-item {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .technology-grid {
    padding: 0;
  }
}

/***************************

Hot Deals

***************************/

.hot-deals,
.hot-deals2 {
  background-color: var(--secondary-color);
}

.hot-deals .hot-deals-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  position: relative;
}

.hot-deals .infos p {
  width: 100%;
}

@media screen and (width: 500px) {
  .hot-deals .infos p {
    width: 69%;
  }
}

.hot-deals .tab-content {
  position: relative;
}

.hot-deals .project-content {
  padding: 10px 20px;
  border-radius: 4px;
  background: var(--secondary-color);
  width: 80%;
  height: auto;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hot-deals .project-content .tab-content:hover {
  opacity: 1;
}

.hot-deals .card {
  overflow: hidden;
}

li.filter-btn.mixitup-control-active {
  background: transparent;
  font-weight: 600;
  color: red;
}

.hot-deals .card img {
  transition: all 0.3s ease-in-out;
}

.hot-deals .card:hover img {
  /* filter: grayscale(1); */
}

.hot-deals .project-content h1 {
  margin-bottom: 4px;
  color: var(--main-color);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.hot-deals .project-content p {
  font-weight: 900;
  font-size: 13px;
}

.hot-deals .card {
  padding: 20px;
  background: url("../img/portfolio/card-bg.png") center top no-repeat;
  background-color: var(--main-color);
  position: relative;
  transition: all .3s ease-in-out;
}

.hot-deals .card.home-3 {
  padding: 0 !important;
}

.hot-deals .card-image {
  height: 100%;
}


.hot-deals .image.is-4by3 {
  width: 100%;
  height: 100%;
}

.hot-deals .card .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(19, 19, 19, 0.8) 50%, transparent 100%);
  opacity: 0;
  transition: all .3s linear;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 27px;
}

.hot-deals .card .content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.hot-deals .card .content p {
  color: #fff;
  font-size: 15px;
}

.hot-deals .card:hover .content,
.hot-deals .card.active .content {
  opacity: 1;
}

.hot-deals .tab-content .card .eay {
  width: 80px;
  height: 80px;
  background-color: #3c269e57;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  bottom: -100px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hot-deals .tab-content .card:hover .eay {
  bottom: -21px;
  opacity: 1;
  transition: all 0.3s linear;
}

.hot-deals .image_lightbox {
  width: 100%;
  height: 100%;
  background-color: #ffffff86;
  backdrop-filter: blur(200px);
  padding: 3rem 4rem;
  position: fixed;
  left: -100%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.hot-deals .image_lightbox.active {
  left: 50%;
  opacity: 1;
  cursor: url("../img/hot-deals/close.png"), auto;
}

@media screen and (max-width: 800px) {
  .hot-deals .tabs>ul>li a {
    font-size: 20px;
  }

  .hot-deals .tabs>ul>li a>span.icon {
    display: none;
  }

  .hot-deals .tabs.is-centered ul {
    justify-content: center;
    flex-wrap: wrap !important;
    display: flex;
    width: 100%;
  }
}

/***************************

Banner

***************************/

.banner .bac-banner {
  position: relative;
  min-height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/services/banner.jpg");
  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: center !important;
}

.banner .bac-banner .is-overlay {
  background-color: var(--main-color-opacity-50);
}

.banner .bac-banner .banner-content h1 {
  font-weight: 700;
  font-size: 3rem;
  color: #ffffff;
}

.banner .breadcrumb li {
  align-items: center;
  display: flex;
  color: #fff !important;
}

.breadcrumb li+li::before {
  color: #b5b5b5 !important;
  content: "\0002f" !important;
  padding: 0 10px 0 6px !important;
}

.breadcrumb li:first-child a {
  color: #b5b5b5 !important;
}

.banner .content .breadcrumb li.is-active a {
  color: #fff;
}

/***************************

Offer Home 3

***************************/

.offer .card {
  padding: 30px 10px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 2px 2px 5px #cdcdcd7c;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0px 0 1px rgba(10, 10, 10, 0.02);
  background-color: var(--main-color);
}

.offer .card:hover .title {
  color: #fff;
}

.offer .card:hover .subtitle {
  color: #fff;
}

.offer .card .title {
  margin-bottom: 1.5em;
}

.offer .card .subtitle {
  font-weight: 300;
  color: var(--gray-color);
  line-height: 27px;
}

/***************************

Services

***************************/

.services {
  background-color: #fff;
  position: relative;
}

/* = Services 1 = */

.services .service-card {
  backdrop-filter: blur(7px);
  width: 100%;
  height: 203px;
  border: 1px solid #7e7e7e7e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.services .service-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.services .hm2-service-box {
  background-color: #ffff;
  padding: 50px;
}

.hm2-service-box .icon-wrapper {
  transition: all 0.3s ease-out;
}

.hm2-service-box:nth-child(1):hover .icon-wrapper {
  background-color: pink;
}

.hm2-service-box:nth-child(2):hover .icon-wrapper {
  background-color: #cebcaa;
}

.hm2-service-box:nth-child(3):hover .icon-wrapper {
  background-color: #ffa300;
}

.hm2-service-box:nth-child(4):hover .icon-wrapper {
  background-color: #00aeff;
}

.services .hm2-service-box:nth-child(1) {
  border-top: 10px solid pink;
  background-color: rgba(238, 130, 238, 5%);
}

.services .hm2-service-box:nth-child(2) {
  border-top: 10px solid #cebcaa;
  background-color: rgb(206, 188, 170, 5%);
}

.services .hm2-service-box:nth-child(3) {
  border-top: 10px solid yellow;
  background-color: rgba(145, 255, 0, 5%);
}

.services .hm2-service-box:nth-child(4) {
  border-top: 10px solid #00aeff;
  background-color: hsl(199, 100%, 50%, 5%);
}

.services .hm2-service-box .icon-wrapper {
  width: 120px;
  height: 120px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.services .hm2-service-box .mt-32 {
  margin-top: 32px;
  font-weight: 900;
}

.services .hm2-service-box .mb-32 {
  margin-bottom: 32px;
}

.services .hm2-service-box .fw-medium {
  font-weight: 500 !important;
}

.services .hm2-service-box .mt-4 {
  margin-top: 1.5rem !important;
}

.services .hm2-service-box p {
  font-size: 16px;
  line-height: 26px;
}

.services .hm2-service-box .explore-btn {
  font-weight: 600;
  color: var(--main-color);
}

/* = Services 2 = */

.servicesTwo .card {
  width: 100%;
  height: 100%;
  padding: 2em .5em;
  background: linear-gradient(#ffffff 50%, var(--main-color) 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}

.servicesTwo h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
}

.servicesTwo p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.servicesTwo .icon-wrapper {
  background-color: var(--main-color);
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}

.servicesTwo .card:hover {
  background-position: 0 100%;
}

.servicesTwo .card:hover .icon-wrapper {
  background-color: #ffffff;
  color: var(--main-color);
}

.servicesTwo .card:hover h3 {
  color: #ffffff;
}

.servicesTwo .card:hover p {
  color: #f0f0f0;
}

/***************************

Experience

***************************/

/* = Experience - 1 = */

.experience {
  background-color: var(--secondary-color);
}

.experience li {
  position: relative;
  padding-left: 74px;
  padding-bottom: 68px;
  background-color: #fff;
}

.experience li:hover h4 {
  color: var(--main-color);
}

.experience li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: var(--main-color);
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s linear;
}

.experience .date {
  display: block;
  margin-bottom: 28px;
  transition: 0.3s;
  font-size: 12px;
  color: #939191;
}

.experience .cbp_tmlabel h3 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #000;
}

.experience h4 {
  font-size: 20px;
  color: rgb(56, 80, 183);
  transition: all 0.3s linear 0s;
  margin-bottom: 18px;
  font-weight: 600;
}

.experience i {
  font-size: 14px;
  margin-right: 15px;
}

.experience .swiper-slide {
  width: 90% !important;
}

.experience figure.image {
  width: 300px;
}

.experience .column {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .experience .columns.is-vcentered {
    flex-direction: column-reverse;
    display: flex;
    gap: 1rem;
  }
}

/* = Experience - 2 = */

.experience li {
  position: relative;
  padding: 2rem 70px;
}

.experience li.bar::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background-color: var(--main-color);
  left: 0;
  top: 0;
  z-index: 999;
}

.experience li.bar::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main-color);
  left: -8px;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.experience ul.cbp_tmtimelinez {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.experience li.bar h4 {
  position: relative;
  z-index: 2;
  width: fit-content;
}

.experience li.bar h4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 100%;
  background-color: var(--main-color);
  z-index: -1;
  transition: all 0.4s ease;
}

.experience li.bar:hover h4::after {
  width: 100%;
}

.experience li.bar:hover h4 {
  font-size: 800;
  letter-spacing: 1px;
  color: #fff;
}

.experience li.bar:hover .date {
  color: red;
}

/***************************

Blog

***************************/

/* Version 1 */

.blog {
  position: relative;
}

.blog .blog-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.blog .button.is-rounded {
  background-color: var(--main-color);
}

.blog .columns .column a {
  color: #1f2738;
  text-decoration: underline;
}

.blog .columns .column a.button {
  text-decoration: none;
  margin: 20px 0;
}

.blog .card-content {
  background-color: #fffbfb;
}

.blog .card-content h2>a {
  color: var(--font-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  min-height: 28px;
}

.blog .card-content .blog-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.post-metatag {
  display: flex;
}

.pagination-link.is-current {
  background-color: var(--main-color) !important;
  color: #fff !important;
  border-color: var(--main-color) !important;
}

.blog .columns .column a {
  color: #1f2738;
  text-decoration: underline;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .column.is-6-touch {
    width: 100% !important;
  }
}

.blog .swiper {
  position: relative;
}

.blog .swiper-slide {
  width: 350px !important;
}

.blog .columns .column a.button {
  text-decoration: none;
  margin: 20px 0;
  width: 63%;
  border: none;
  border-radius: 5px;
}

.card .card-image {
  overflow: hidden;
}

.blog figure.image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.blog figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

/* Version 2 */

.card.flexCard {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0;
}

.card.flexCard .card-image {
  width: 300px;
}

.card.flexCard .card-image img {
  border-radius: 0;
}

.card.flexCard .card-content {
  padding: 0 15px;
}

.card.flexCard .blog-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 780px) {
  .card.flexCard {
    padding: 20px;
  }

  .card.flexCard .card-image {
    display: none;
  }
}

.readmorebutton {
  position: relative;
  float: right;
  width: 100%;
  z-index: 9;
}

.readmorebutton::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
}

a.readmorebuttonbefore {
  float: right;
  background: #fff;
  padding: 0 13px;
}

/***************************

Footer

***************************/

.footer-section {
  background-color: var(--secondary-color);
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid var(--main-color);
}

footer .single-cta i {
  color: var(--main-color);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

footer .cta-text {
  padding-left: 15px;
  display: inline-block;
}

footer .cta-text h4 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

footer .cta-text span {
  color: #000;
  font-size: 15px;
}

footer .footer-content {
  position: relative;
  z-index: 2;
}

footer .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

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

footer .footer-logo img {
  max-width: 150px;
}

footer .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

footer .footer-social-icon span {
  color: #000;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

footer .footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

footer .footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  color: #fff;
}

footer .tiktok-bg {
  background: #000000;
}

footer .facebook-bg {
  background: #3b5998;
}

footer .twitter-bg {
  background: #55acee;
}

footer .google-bg {
  background: #dd4b39;
}

footer .footer-widget-heading h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

footer .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--main-color);
}

footer .footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

footer .footer-widget ul li a:hover {
  color: var(--main-color);
}

footer .footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

footer .subscribe-form {
  position: relative;
  overflow: hidden;
}

footer .subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ffff;
  border: 1px solid var(--main-color);
  color: #000;
}

footer .subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--main-color);
  padding: 13px 20px;
  border: 1px solid var(--main-color);
  top: 0;
}

footer .subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

footer .copyright-area {
  background: #ffff;
  padding: 25px 0;
}

footer .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

footer .copyright-text p a {
  color: var(--main-color);
}

footer .footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

footer .footer-menu li:hover a {
  color: var(--main-color);
}

footer .footer-menu li a {
  font-size: 14px;
  color: #878787;
}

@media screen and (max-width: 780px) {
  footer {
    padding: 2rem;
  }
}

/***************************

Contact

***************************/

.main-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 600px) {
  .main-content {
    text-align: center;
    gap: 15px;
  }
}

.main-content h2 {
  font-size: 45px;
  font-weight: 700;
}

.main-content p {
  color: #c5c5c5;
}

.contact iframe {
  width: 100%;
  height: 90vh;
}

.contact .form {
  margin-top: 2rem;
  width: 100%;
  transition: 0.5s all ease;
  animation-duration: 1.5s;
}

.contact .form .label {
  background-color: white;
  color: var(--main-color);
  font-size: 17px;
  font-weight: 300;
  margin: 0 8px;
  padding: 0 5px;
  position: absolute;
  transition: 0.5s all cubic-bezier(0.5, 1.35, 0.5, 1.35);
}

.contact .form .email-text {
  transform: translateY(-51px);
}

.contact .form .subject-text {
  transform: translateY(-52px);
}

.contact .form .help-text {
  transform: translateY(-112px);
}

.contact .form input,
.contact .form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dadce0;
  border-radius: 5px;
  outline: none;
  margin-bottom: 20px;
  transition: 0.3s;
  padding: 20px;
  font-size: 20px;
  color: var(--main-color);
}

.contact .form input:focus,
.contact .form textarea:focus {
  border: 1px solid var(--main-color);
  box-shadow: inset 1px 1px 0 var(--main-color),
    inset -1px -1px 0 var(--main-color);
}

.contact .form input:focus+.label,
.contact .form input:valid+.label,
.contact .form textarea:focus+.label,
.contact .form textarea:valid+.label {
  font-size: 13px;
  font-weight: 600;
  color: var(--main-color);
}

.contact .form input:focus+.email-text,
.contact .form input:valid+.email-text,
.contact .form textarea:focus+.email-text,
.contact .form textarea:valid+.email-text {
  transform: translateY(-67px);
}

.contact .form input:focus+.subject-text,
.contact .form input:valid+.subject-text,
.contact .form textarea:focus+.subject-text,
.contact .form textarea:valid+.subject-text {
  transform: translateY(-67px);
}

.contact .form input:focus+.help-text,
.contact .form input:valid+.help-text,
.contact .form textarea:focus+.help-text,
.contact .form textarea:valid+.help-text {
  transform: translateY(-127px);
}

.contact .form textarea {
  max-height: 150px;
  max-width: 100%;
}

.submit-area {
  position: relative;
}

.design_contact_info {
  background: linear-gradient(to top, var(--main-color), #a28dfd);
  padding: 2rem;
  color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.content ul {
  list-style: disc outside;
  margin-left: 2em;
  margin-top: 1em;
}

/***************************

Single Post

***************************/

/* Posts */

.blog-single-post {
  background-color: #fff;
}

.blog-single-post .post-header {
  margin-bottom: 25px;
}

.blog-single-post .widget-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 800;
}

.blog-single-post .post-header .post-thumbnail img {
  border-radius: 5px;
}

.blog-single-post .post-categories .bac-post-category-item {
  background-color: rgba(247, 217, 127, 0.4);
  border: none;
  font-weight: 600;
  font-size: 0.8rem;
  min-width: 150px;
  text-align: center;
  outline: none;
  box-shadow: none;
  margin-right: 7px;
  position: relative;
}

.blog-single-post .post-categories .bac-post-category-item::before {
  content: "";
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background-color: #f7d97f;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -10px;
}

.blog-single-post h1.post-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin: 15px 0 15px;
}

.blog-single-post .post-metatags {
  padding-bottom: 25px;
  margin-bottom: 35px;
  border-bottom: 1px solid #e9e9e9;
}

.blog-single-post .post-metatags .author .author-avatar {
  margin-right: 10px;
  width: 40px;
  height: 40px;
}

.blog-single-post .post-metatags .author .author-name {
  color: #717171;
}

.blog-single-post .post-metatags .post-publish-date {
  margin-left: 15px;
}

.blog-single-post .post-metatags .post-publish-date .icon-image {
  width: 20px;
  margin-left: 7px;
}

.blog-single-post .post-metatags .post-publish-date .post-date {
  font-size: 0.93rem;
  font-weight: 600;
  color: #717171;
}

.blog-single-post .post-content img {
  margin-top: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.blog-single-post .post-content h1,
.blog-single-post .post-content h2,
.blog-single-post .post-content h3,
.blog-single-post .post-content h4,
.blog-single-post .post-content h5,
.blog-single-post .post-content h6 {
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-single-post .post-content h1 {
  font-size: 1.75rem;
}

.blog-single-post .post-content h2 {
  font-size: 1.5rem;
}

.blog-single-post .post-content h3 {
  font-size: 1.35rem;
}

.blog-single-post .post-content h4 {
  font-size: 1.2rem;
}

.blog-single-post .post-content h5 {
  font-size: 1.15rem;
}

.blog-single-post .post-content h6 {
  font-size: 1.05rem;
}

.blog-single-post .post-content p {
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 2;
  font-size: 1.03rem;
}

.blog-single-post .post-content p br {
  display: none;
}

.blog-single-post .post-content ul {
  margin-bottom: 25px;
  list-style: disc;
  margin-left: 20px;
}

.blog-single-post .post-content ul li:not(:last-of-type) {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 2;
  font-size: 1.03rem;
}

.blog-single-post .bac-post_comments {
  margin: 35px 0;
}

.blog-single-post .bac-post_comments h2 {
  color: var(--main-color);
  position: relative;
  margin-bottom: 25px;
}

.blog-single-post .bac-post_comments h2 span {
  background: #ffffff;
  z-index: 2;
  position: sticky;
  padding-right: 1rem;
  font-weight: 400;
  font-size: 1.35rem;
}

.blog-single-post .bac-post_comments h2::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;
}

.blog-single-post .related-post-item:not(:last-of-type) {
  margin-bottom: 25px;
}

.blog-single-post .related-post-item .media .media-left .image {
  max-width: 200px;
}

.blog-single-post .related-post-item .media .media-left .image img {
  border-radius: 3px;
}

.blog-single-post .related-post-item .media .media-content h4 a {
  font-weight: 600;
  color: #1f2738;
  font-size: 1.05rem;
}

.blog-single-post .bac-social-media a {
  border-radius: 4px;
  background-color: #e5f5ed;
  color: var(--main-color);
  border: 1px solid #e5f5ed;
  font-size: 1.25rem;
  padding-bottom: calc(0.5em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(0.5em - 1px);
  transition: background-color 0.3s ease-in-out;
}

.blog-single-post .bac-social-media a:hover {
  background-color: #e5f5ed !important;
  border: 1px solid #e5f5ed;
}

.blog-single-post .bac-social-media a:not(:last-of-type) {
  margin-right: 7px;
}

.blog-single-post.bg-light {
  background-color: #fff !important;
  padding: 6rem 5rem;
}

/* comments */

.comments li {
  list-style: none;
}

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

.comments .comment .comment-body {
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 10px;

}

.comments .comment .comment-body .comment-meta .comment-metadata {
  display: none;
}

.comments .comment .comment-body .comment-meta .comment-author {
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-size: 0.9rem;
}

.comments .comment .comment-body .comment-meta .comment-author a {
  pointer-events: none;
  color: var(--main-color);
}

.comments .comment .comment-body .comment-meta .comment-author a:hover {
  color: var(--main-color);
}

.comments .comment .comment-body .comment-meta .comment-author img {
  border-radius: 50%;
  margin-right: 15px;
  width: 60px;
  height: 60px;
}

.comments .comment .comment-body .comment-meta .comment-author .says {
  display: none;
}

.comments .comment .comment-body .comment-content {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #636469;
}

.comments .comment footer {}

.comments .comment.depth-2 .comment-body {
  max-width: 90%;
  margin-left: auto;
}

.comments .comment.depth-2 .comment-body .comment-author img {
  width: 50px;
  height: 50px;
}

.comments .comment-notes {
  margin-bottom: 15px;
}

.comments .logged-in-as {
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.comments .comment-respond {
  margin-top: 25px;
}

.comments .comment-respond .form-submit .submit {
  background-color: var(--main-color);
  border: none;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 3px;
  cursor: pointer;
}

.comments #commentform .input,
.comments #commentform .textarea {
  box-shadow: none;
}

.comments #commentform .comment-form-cookies-consent {
  display: none;
}

/***************************

preloader

***************************/

.sb-preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99999999999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease-in-out;
}

.sb-preloader span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.sb-preloader .sb-preloader-bg {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  position: absolute;
  background-color: var(--main-color);
  height: 1000px;
  width: 1000px;
  top: 20%;
  transform: scale(2);
  transition: 0.6s ease-in-out;
}

.sb-preloader .sb-preloader-body {
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
  text-align: center;
  transition: 0.4s ease-in-out;
}

.sb-preloader .sb-preloader-body .sb-loading {
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.sb-preloader .sb-preloader-body .sb-loading-bar {
  margin-bottom: 15px;
  width: 1px;
  height: 80vh;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  background-color: #ffffff;
}

.sb-preloader .sb-preloader-body .sb-loading-bar .sb-bar {
  width: 100%;
  height: 0;
  background-color: #fff;
}

.sb-preloader.sb-hidden {
  pointer-events: none;
  transition-delay: 0.2s;
}

.sb-preloader.sb-hidden .sb-preloader-bg {
  transform: scale(0);
  transition-delay: 0.2s;
}

.sb-preloader.sb-hidden .sb-preloader-body {
  transform: translateY(30%);
  opacity: 0;
  transition-delay: 0s;
}

/***************************

Page  404

***************************/

.not-found .infos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 70vh;
  gap: 20px;
}

.not-found .infos p {
  display: block;
  color: var(--main-color);
  font-size: 56px;
  margin-bottom: 10px;
  font-weight: 800;
}

.not-found .infos h1 {
  line-height: 100%;
  font-size: 72px;
  letter-spacing: -3px;
}

.not-found small {
  color: #6f6f87;
  margin: 0;
  font-size: 15px;
  width: 50%;
}

.not-found .infos a.bx-btn {
  border: none;
  background: var(--main-color);
  color: #fff;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  width: 155px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***************************

preloader

***************************/

.sb-preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99999999999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease-in-out;
}

.sb-preloader .sb-preloader-bg {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  position: absolute;
  background-color: var(--main-color);
  height: 1200px;
  width: 1200px;
  top: 20%;
  transform: scale(2);
  transition: 0.6s ease-in-out;
}

.sb-preloader .sb-preloader-body {
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
  text-align: center;
  transition: 0.4s ease-in-out;
}

.sb-preloader .sb-preloader-body .sb-loading {
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.sb-preloader .sb-preloader-body .sb-loading-bar {
  margin-bottom: 15px;
  width: 1px;
  height: 80vh;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  background-color: #ffffff;
}

.sb-preloader .sb-preloader-body .sb-loading-bar .sb-bar {
  width: 100%;
  height: 0;
  background-color: #231e41;
}

.sb-preloader.sb-hidden {
  pointer-events: none;
  transition-delay: 0.2s;
}

.sb-preloader.sb-hidden .sb-preloader-bg {
  transform: scale(0);
  transition-delay: 0.2s;
}

.sb-preloader.sb-hidden .sb-preloader-body {
  transform: translateY(30%);
  opacity: 0;
  transition-delay: 0s;
}

/***************************

BOX ANIMATION

***************************/

.spinner {
  width: 70.4px;
  height: 70.4px;
  animation: spinner 8s infinite ease;
  transform-style: preserve-3d;
  position: absolute;
  top: 30px;
  left: 3%;
  z-index: 9999;
  transition: all 1s ease-in;
}

.spinner.active {
  left: 90%;
}

.spinner>div {
  background-color: var(--main-color);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 3.5px solid var(--main-color);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background-color: #fff;
}

.spinner div:nth-of-type(1) {
  transform: translateZ(-35.2px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}

.spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}

.spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}

.spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
  transform: translateZ(35.2px);
}

@keyframes spinner {
  0% {
    transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
  }

  50% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
  }

  100% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
  }
}

/***************************

Custom Scrollbar

***************************/

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

/***************************



***************************/

.blog-single-post {
  background-color: #fff;
}

.blog-single-post .title {
  color: var(--main-color);
  font-size: 50px !important;
  margin-bottom: 3rem !important;
  font-weight: 800 !important;
}

.blog-single-post .subtitle {
  color: #777;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-single-post .columns {
  margin-bottom: 2rem;
}

.blog-single-post .column {
  padding: 1rem;
}

.blog-single-post h2.subtitle {
  color: #06b33c;
  font-size: 30px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-single-post p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .blog-single-post .columns {
    flex-direction: column;
  }

  .blog-single-post .column {
    width: 100%;
  }
}


/***************************

Login & Register Page

***************************/
.is-google {
  background-color: red !important;
  border-radius: 10px;
}

.is-google span,
.is-facebook span {
  color: #fff !important;
}

.is-facebook {
  background-color: rgb(0, 132, 255) !important;
  border-radius: 10px;
}

.is-tiktok {
  background-color: rgb(0, 0, 0) !important;
}

.is-tiktok span {
  color: #fff;
}

.login_page .image {
  width: 400px;
}

.login_page .border {
  border: 1px solid var(--main-color) !important;
  border-radius: 10px;
}

.login_page_title {
  margin-bottom: 40px !important;
  color: var(--main-color) !important;
}

.login_page input {
  padding: 30px !important;
  transition: all .3s ease-in-out;
}

.login_page input:hover,
.login_page input:focus,
.login_page input:active {
  border-bottom: 3px solid rgb(6, 214, 6);
  background-color: rgba(0, 0, 0, .06);
}

/***************************

Collection Page

***************************/
.collection_page article {
  padding: 30px 0;
}

.collection_page .title--collection {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 800;
  color: var(--main-color);
}

.collection_page .card-video {
  position: relative;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, .06);
}

.collection_page .card-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 40%, #a1a1a170 100%);
  z-index: 1;
}

.collection_page .card-video .badge {
  background-color: rgb(8, 8, 8);
  position: absolute;
  right: 20px;
  top: 15px;
  text-align: center;
  z-index: 3;
  color: #fff;
  font-size: 12px;
  border-radius: 40px;
  padding: 4px 10px;
}

.collection_page .card-video .card-body {
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 43;
  padding: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.collection_page .card-video .playvideo-btn {
  width: 30px !important;
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.collection_page .card-video .card-content {
  color: #fff;
  font-size: 18px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  z-index: 12;
  font-weight: 800;
  width: 90%;
}

.card-product {
  padding: 20px;
  box-shadow: none !important;
  border: 1px solid var(--main-color);
}

.card-product .card-header {
  margin-bottom: 20px;
}

.card-product .card-title {
  width: 100%;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 30px;
}

.card-product .card-title a {
  color: var(--font-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  min-height: 30px;
}

.card-product p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-product .card-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.card-product .card-end .price {
  font-size: 20px;
}

.card-product .card-end .custom-btn {
  width: 80%;
  margin: auto;
}

.card-product .custom-btn {
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  margin: auto;
  display: flex;
  width: 100%;
  transition: all .3s linear;
}

.card-product .custom-btn:hover {
  background-color: var(--main-color);
  color: #fff;
}


/***************************

Pricing Page

***************************/

.pricing-page {
  padding: 70px 0;
}

.pricing-page .pricing-card {
  background-color: #fff;
  box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, .06);
  border-radius: 10px;
}

.pricing-page .pricing-card .pricing-card-head {
  padding: 40px 0 32px 0;
  text-align: center;
}

.pricing-page .pricing-card .pricing-card-head .type {
  font-size: 18px;
  font-weight: 500;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-page .pricing-card .pricing-card-head .price {
  font-size: 50px;
  font-weight: 600;
  color: #1f115f;
}

.pricing-page .pricing-card .pricing-card-head .price span {
  font-size: 16px !important;
  color: #383838b4 !important;
}

.pricing-page .pricing-card .pricing-card-body li {
  padding: 20px 0;
  list-style: none;
  text-align: center;
}


.pricing-page .pricing-card .pricing-card-footer {
  padding: 20px;
  background-color: #feebeb;
}

.pricing-page .pricing-card .pricing-card-footer .desc {
  color: #424242b6;
  font-size: 14px;
  text-align: center;
}

.pricing-page .pricing-card .pricing-card-footer button {
  text-transform: uppercase;
  background-color: var(--main-color);
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  color: #fff;
}

.pricing-page .pricing-card .pricing-card-footer.free {
  background-color: #E8F9FB !important;
}

.pricing-page .pricing-card .pricing-card-footer button.free {
  background-color: #00BCD4 !important;
}

/***************************

Faq

***************************/

.faq_main_container {
  padding: 70px 0;
}

.faq-img {
  width: 300px;
  margin: auto;
}

.faq_question {
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all .3s linear;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 9px 8px 10px #e6e6e68f;
  margin-bottom: 20px;
}

.faq_question.active {
  background-color: var(--main-color);
  color: #fff;
}

.faq_question.active .icon .icon-shape::after,
.faq_question.active .icon .icon-shape::before {
  background: #fff !important;
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  margin: 8px 0;
  border-radius: 10px;
}

.answer {
  padding: 0px 20px;
  line-height: 1.5rem;
}

.fqa_headline_container h2 span {
  font-weight: 700;
}

.faq_question-text h3 {
  font-size: 18px;
}

.icon.active {
  background: transparent;
  border: 2px solid #fff;
}

.icon:hover {
  cursor: pointer;
}

.icon-shape {
  position: relative;
  width: 50px;
  height: 50px;
}

.icon .icon-shape::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: var(--main-color);
  border-radius: 3px;
  transition: all 0.5s ease;
}

.icon .icon-shape::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background: var(--main-color);
  border-radius: 3px;
  transition: all 0.5s ease;
}

.icon .icon-shape.active::before {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.5s ease;
}

.icon .icon-shape.active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.5s ease;
}



/***************************

product detail page

***************************/

.product-detail-page {
  padding: 70px 0;
}

.product-detail-page .product-detail__image {
  padding: 20px;
  border: 1px solid var(--main-color);
  backdrop-filter: blur(20px);
}

.product-detail-page .title {
  color: var(--main-color) !important;
  padding-bottom: 15px !important;
}

.product-detail-page .subtitle {
  line-height: 30px !important;
  font-size: 20px !important;
  color: var(--font-color) !important;
}

.product-detail-page .stars {
  padding-bottom: 30px !important;
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-detail-page .product-detail__prodTitle {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2em;
}

/***************************

Review Page

***************************/

.review {
  position: relative;
  padding: 70px 0 0;
}

.review h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color);
}

.review .swiper.reviewsSlide {
  padding: 30px 0;
}

.review .swiper.reviewsSlide .review-card {
  background-color: rgb(255, 255, 255);
  padding: 84px 0 36px;
  box-shadow: 2px 2px 10px #cdcdcd;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s linear;
  border: 2px solid var(--main-color);
}

.review .swiper.reviewsSlide .review-card:hover {
  border: 2px solid var(--third-color);
}

.review .swiper.reviewsSlide .review-card:hover::before {
  transform: rotate(0deg);
  background-color: var(--third-color);
}

.review .swiper.reviewsSlide .review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  z-index: -1;
  transform: rotate(3deg);
  border-radius: 10px;
  transition: all .3s linear;
}

.review .swiper.reviewsSlide .review-card .client-infos {
  text-align: center;
}

.review .swiper.reviewsSlide .review-card .client-infos h4 {
  font-size: 20px;
  color: #1d1d1d;
  margin-bottom: 8px;
}

.review .swiper.reviewsSlide .review-card .client-image {
  width: 120px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.review .swiper.reviewsSlide .review-card .client-image img {
  border-radius: 10px;
}

.review .swiper.reviewsSlide .review-card .content p {
  color: var(--font-color);
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}

/***************************

Products Page

***************************/

#products .card-product {
  width: 100%;
}

#products .product-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

/***************************

Product Section

***************************/

.product {
  padding: 70px 0;
  background-color: #f2f2f283;
}

ul.tab-filter-list.aos-init.aos-animate {
  display: flex;
  flex-wrap: wrap;
}

/***************************
  
  Contact Us Component
  
***************************/

.contact-us-component p {
  width: 40%;
  margin: auto;
  text-align: center;
  color: #929292 !important;
  margin-bottom: 7px;
}

.contact-us-component .bx-btn {
  font-size: 19px;
  padding: 14px 40px !important;
}