:root {
     --primary-color: #4A6CF7;
     --dark-color: #15141C;
     --secondary-color: #525256;
     --grey-color: #F3F3F3;
     --white-color: #ffffff;
     --body-fonts: "Jost", sans-serif;
     --title-fonts: "Jost", sans-serif;
     --font-weight: 500;
     --border-radius: 20px;
     --big--border-radius: 900px;
     --transition-duration: 0.5s;
     --transition-timing-function: ease-in-out;
     --transition: all 0.5s ease-in-out;
}


body {
     background: var(--white-color);
     font-family: var(--body-fonts);
     font-size: 18px;
     font-style: normal;
     font-weight: normal;
     line-height: 1.8;
     color: var(--secondary-color);
     overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     font-family: var(--title-fonts);
     color: var(--dark-color);
     font-style: normal;
     text-transform: capitalize;
     font-weight: var(--font-weight);
     margin: 0;
     -ms-word-wrap: break-word;
     word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
     color: inherit;
}

h1 {
     font-size: 40px;
     font-style: normal;
     line-height: 48px;
}

h2 {
     font-size: 36px;
     font-style: normal;
     line-height: 44px;
}

h3 {
     font-size: 32px;
     font-style: normal;
     line-height: 40px;
}

h4 {
     font-size: 28px;
     font-style: normal;
     line-height: 36px;
}

h5 {
     font-size: 24px;
     font-style: normal;
     line-height: 32px;
}

h6 {
     font-size: 20px;
     font-style: normal;
     line-height: 28px;
}

ul {
 list-style: none !important;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.justify {
  text-align: justify;
}

/* ################################# */

/* OWL Carousel */

/* ################################# */

.owl-carousel .owl-nav.disabled {
     display: none;
}

.owl-nav {
     position: relative;
     top: 0%;
     transform: translateY(0);
     margin-top: 20px;
     width: 100%;
     display: flex;
     cursor: inherit;
     justify-content: center;
}

.owl-carousel .owl-nav button.owl-prev i,
.owl-carousel .owl-nav button.owl-next i{
     outline: none;
     text-align: center;
     text-indent: inherit;
     cursor: pointer;
     position: relative;
     font-size: 18px;
     width: 60px;
     height: 60px;
     line-height: 60px;
     background: var(--dark-color);
     padding: 0 !important;
     margin: 0 5px;
     border: none;
     color: var(--white-color);
     border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-next {
     right: 0;
}

.owl-carousel .owl-nav button:hover {
     color: var(--white-color);
     background: var(--primary-color);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
     color: var(--primary-color);
     background: var(--white-color);
}

/*++++++++++++++++ Dots +++++++++++*/

.owl-carousel .owl-dots.disabled {
     display: none;
}

.owl-carousel .owl-dots {
     margin-top: 30px;
     line-height: normal;
     position: relative;
     width: 100%;
     text-indent: inherit;
     text-align: center;
     cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
 box-shadow: none;
 outline: none;
 background: #000000;
 border: 0 solid #000000;
 display: inline-block;
 padding: 0;
 margin: 0px 5px;
 height: 4px;
 width: 12px;
 transition: var(--transition-duration);
 -webkit-transition: var(--transition-duration);
 -o-transition: var(--transition-duration);
 -moz-transition: var(--transition-duration);
 -ms-transition: var(--transition-duration);
 cursor: pointer;
 -webkit-border-radius: var(--border-radius);
 -moz-border-radius: var(--border-radius);
 border-radius: var(--border-radius);
}

.owl-carousel .owl-dots .owl-dot span {
     display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
     background: var(--primary-color);
     border-color: var(--primary-color);
     opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
     background: var(--primary-color);
     border-color: var(--primary-color);
     opacity: 1;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next { 
 background-color: transparent;
 color: #000000;
 text-transform: uppercase;
 letter-spacing: 5px;
 font-size: 18px;
}



/*================================================
swiper slide
================================================*/

.swiper-container {
   width: 100%;
   height: auto;
   padding: 20px 0;
   overflow: hidden;
}

/* Smooth continuous scroll */
.swiper-container-free-mode>.swiper-wrapper {
   transition-timing-function: linear !important;
}

.swiper-slide {
   display: flex;
   justify-content: center;
   align-items: center;
}

.pt-image-slide img {
   width: 100%;
   height: auto;
   object-fit: cover;
   border-radius: 10px;
   /* optional */
}


/*================================================
tab css
================================================*/

.pqcew-tab-content {
  display: none;
}
.pqcew-tab-content.active {
  display: block;
}


/* Corner Icon */
.pqcew-plugin .pqcew-button {
    position: relative;
}

.pqcew-plugin .pqcew-button .pqcew-corner-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px; /* adjust size */
    background: #000; /* optional background */
    color: #fff;      /* icon color */
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    transform: translate(50%, -50%); /* adjust for exact placement */
}






