/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
  --primary: #6e2fff;
  --secondary: #14e3b0;
  --black: #000;
  --light-black: #1f1f1f;
  --gray: #616368;
  --light-gray: #f6f6f6;
  --white: #fff;
  --error: #ff0000;
  --success: #4caf50;
  --transition: all 0.3s ease-in-out;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
p {
  margin: 0 0 1rem;
}
a,
a:hover,
button,
button:hover,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

i {
  transition: unset;
}

:focus {
  outline: 0px !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
}
ul.slick-dots {
  left: 0;
  right: 0;
  margin: 0 auto !important;
  bottom: -5% !important;
  z-index: 9;
}

ul.slick-dots li {
  background: #bc8f8f;
  border-radius: 5px !important;
  width: 1rem;
  height: 5px;
  opacity: 0.2;
}

ul.slick-dots li.slick-active {
  background: var(--primary);
  width: 4rem !important;
  opacity: 1;
}

ul.slick-dots button {
  display: none;
}
@media (max-width: 767px) {
  p#breadcrumbs {
    font-size: 14px !important;
  }
}


/* =========================================
   BLOG POST CONTENT
   Main Wrapper: .post-containter
========================================= */

.post-containter {
  width: 100%;
  max-width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  overflow-wrap: break-word;
}

/* =========================================
   PARAGRAPHS
========================================= */

.post-containter p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
}

/* =========================================
   HEADINGS
========================================= */

.post-containter h1,
.post-containter h2,
.post-containter h3,
.post-containter h4,
.post-containter h5,
.post-containter h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--secondary);
  margin-top: 45px;
  margin-bottom: 20px;
}

.post-containter h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 25px;
}

.post-containter h2 {
  font-size: 36px;
}

.post-containter h3 {
  font-size: 28px;
}

.post-containter h4 {
  font-size: 24px;
}

.post-containter h5 {
  font-size: 21px;
}

.post-containter h6 {
  font-size: 18px;
}

/* =========================================
   BOLD / ITALIC / EMPHASIS
========================================= */

.post-containter strong,
.post-containter b {
  font-weight: 700;
}

.post-containter em,
.post-containter i {
  font-style: italic;
}

/* =========================================
   LINKS
========================================= */

.post-containter a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.post-containter a:hover {
  color: var(--primary);
}

/* =========================================
   UNORDERED & ORDERED LISTS
========================================= */

.post-containter ul,
.post-containter ol {
  margin: 20px 0 30px;
  padding-left: 30px;
}

.post-containter ul {
  list-style-type: disc;
}

.post-containter ol {
  list-style-type: decimal;
}

.post-containter li {
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 18px;
  line-height: 1.7;
}

.post-containter li::marker {
  color: var(--primary);
  font-weight: 600;
}

/* Nested Lists */

.post-containter ul ul,
.post-containter ol ol,
.post-containter ul ol,
.post-containter ol ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* =========================================
   BLOCKQUOTE
========================================= */

.post-containter blockquote {
  margin: 35px 0;
  padding: 30px 35px;
  border-left: 4px solid var(--primary);
  background-color: #f5f5f2;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--black);
}

.post-containter blockquote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

/* =========================================
   IMAGES
========================================= */

.post-containter img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
  margin: 30px 0;
}

/* =========================================
   IMAGE CAPTIONS
========================================= */

.post-containter figure {
  margin: 35px 0;
}

.post-containter figure img {
  margin: 0;
}

.post-containter figcaption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
  color: #777;
}

/* =========================================
   TABLE
========================================= */

.post-containter table {
  width: 100%;
  border-collapse: collapse;
  margin: 35px 0;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  border: 1px solid #ddd;
}

.post-containter th,
.post-containter td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #ddd;
}

.post-containter th {
  font-weight: 600;
  color: var(--black);
  background-color: #f5f5f2;
}


/* =========================================
   HORIZONTAL RULE
========================================= */

.post-containter hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 45px 0;
}

/* =========================================
   BUTTON / CTA LINKS
========================================= */

.post-containter p a[href*="Request"],
.post-containter a.cta-button {
  display: inline-block;
  margin: 10px 0 25px;
  padding: 14px 28px;
  border-radius: 4px;
  background-color: var(--secondary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-containter p a[href*="Request"]:hover,
.post-containter a.cta-button:hover {
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1024px) {
  .post-containter {
    font-size: 17px;
    line-height: 1.7;
  }

  .post-containter p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .post-containter h1 {
    font-size: 40px;
  }

  .post-containter h2 {
    font-size: 32px;
  }

  .post-containter h3 {
    font-size: 26px;
  }

  .post-containter h4 {
    font-size: 22px;
  }

  .post-containter h5 {
    font-size: 19px;
  }

  .post-containter h6 {
    font-size: 17px;
  }

  .post-containter li {
    font-size: 17px;
  }

  .post-containter blockquote {
    padding: 25px 30px;
    font-size: 20px;
  }

  .post-containter img {
    max-height: 500px;
    border-radius: 16px;
  }

  .post-containter th,
  .post-containter td {
    padding: 13px 15px;
  }
}

/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 767px) {
  .post-containter {
    font-size: 16px;
    line-height: 1.65;
  }

  .post-containter p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .post-containter h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .post-containter h2 {
    font-size: 28px;
    line-height: 1.25;
    margin-top: 35px;
  }

  .post-containter h3 {
    font-size: 24px;
    margin-top: 30px;
  }

  .post-containter h4 {
    font-size: 21px;
  }

  .post-containter h5 {
    font-size: 18px;
  }

  .post-containter h6 {
    font-size: 16px;
  }

  .post-containter ul,
  .post-containter ol {
    margin: 15px 0 25px;
    padding-left: 25px;
  }

  .post-containter li {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 8px;
  }

  .post-containter blockquote {
    margin: 30px 0;
    padding: 20px 20px;
    font-size: 18px;
    line-height: 1.55;
  }

  .post-containter img {
    max-height: 400px;
    margin: 25px 0;
    border-radius: 12px;
  }

  .post-containter figure {
    margin: 25px 0;
  }

  .post-containter figcaption {
    font-size: 13px;
  }

  /* Responsive Table */

  .post-containter table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 14px;
    margin: 25px 0;
  }

  .post-containter th,
  .post-containter td {
    padding: 11px 13px;
  }

  .post-containter hr {
    margin: 35px 0;
  }

  .post-containter p a[href*="Request"],
  .post-containter a.cta-button {
    width: 100%;
    padding: 13px 20px;
    text-align: center;
    font-size: 15px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .post-containter {
    font-size: 15px;
  }

  .post-containter p {
    font-size: 15px;
  }

  .post-containter h1 {
    font-size: 28px;
  }

  .post-containter h2 {
    font-size: 25px;
  }

  .post-containter h3 {
    font-size: 22px;
  }

  .post-containter h4 {
    font-size: 19px;
  }

  .post-containter h5 {
    font-size: 17px;
  }

  .post-containter h6 {
    font-size: 15px;
  }

  .post-containter li {
    font-size: 15px;
  }

  .post-containter blockquote {
    padding: 18px 16px;
    font-size: 17px;
  }

  .post-containter img {
    border-radius: 10px;
  }
}


.gradient-border {
    border: 2px solid;
    border-image-slice: 18;
    border-image-source: linear-gradient(90deg,#6e2fff 0,#6e2fff 49%,#14e3b0);
}
.gradient-border:hover {
    border-color: var(--primary);
    border-image-source: none;
}
.gradient-text .elementor-heading-title {
    background: linear-gradient(90deg,#6e2fff 0,#14e3b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* ==========================
	GLOBAL STYLES START  
=============================*/

/* ===============================
	HEAD & BUTTON STYLES START  
==================================*/

.section {
  position: relative;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
@media (max-width: 767px) {
  .section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

.swiper-pagination {
  display: none;
  margin-top: 2rem;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 1rem !important;
  height: 5px !important;
  transition: var(--transition);
  border-radius: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 4rem !important;
  border-radius: 5px !important;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #bc8f8f;
}
@media (max-width: 767px) {
  .elementor-swiper-button {
    display: none !important;
  }
  .swiper-pagination {
    display: block;
  }
}

.elementor-heading-title span {
  color: var(--primary);
}

.primary-btn a {
  background: var(--secondary) !important;
  padding: 20px 52px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
}
.primary-btn a:hover {
  background: var(--primary) !important;
}

@media (max-width: 767px) {
  .primary-btn a {
    padding: 16px 33px;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .bg-fixed {
    background-attachment: fixed;
  }
}

/* ===============================
	HEAD & BUTTON STYLES END  
==================================*/

/* ===============================
	HOME STYLES START  
==================================*/

.vfm-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.vfm-parent {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.vfm-parent p {
    flex-shrink: 0;
    margin: 0;
    padding-right: 50px;
    font-size: 260px;
    font-weight: 800;
    opacity: 0.1;
    line-height: 1;
}
@media (max-width: 767px) {
    .vfm-parent p {
        font-size: 100px;
    }
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.border-left-animated {
    position: relative;
}

.border-left-animated:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 100%;
    background: var(--secondary);
    transition: all .3s ease-in-out;
}
@media (max-width: 767px) {
    .border-left-animated:before {
        width: 4px;
    }
}
.border-left-animated:hover:before {
    width: 100%;
}

.border-left-animated .elementor-heading-title span {
    color: var(--secondary);
    transition: all .3s ease-in-out;
}

.border-left-animated:hover .elementor-heading-title span {
    color: var(--primary);
}

.get-started:hover .see-itin h3 {
    color: var(--black) !important;
}

@media (min-width: 1200px) {

    .glow-green:before {
        height: 450px;
        width: 450px;
        filter: blur(150px);
        position: absolute;
        content: '';
        border-radius: 9999px;
        background-color: var(--secondary);
        opacity: .4;
        left: -7%;
    }
    
    .glow-purple:before {
        height: 450px;
        width: 450px;
        filter: blur(150px);
        position: absolute;
        content: '';
        border-radius: 9999px;
        background-color: var(--primary);
    }
    .s4 .glow-purple:before {
        left: 0;
        top: -10%;
        right: 0;
        margin: auto;
    }
    .s7.glow-purple:before {
        left: -10%;
    }
}

/* ===============================
	HOME STYLES END  
==================================*/
