/**
 * Theme Name: Swift Performance AI
 */


@font-face {
      font-family: 'IsidoraSans';
      src: url('assets/fonts/IsidoraSans-Regular.eot');
      src: url('assets/fonts/IsidoraSans-Regular.eot?#iefix') format('embedded-opentype'),
            url('assets/fonts/IsidoraSans-Regular.ttf') format('truetype'),
            url('assets/fonts/IsidoraSans-Regular.woff') format('woff'),
            url('assets/fonts/IsidoraSans-Regular.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'IsidoraSans-Light';
      src: url('assets/fonts/IsidoraSans-Light.eot');
      src: url('assets/fonts/IsidoraSans-Light.eot?#iefix') format('embedded-opentype'),
            url('assets/fonts/IsidoraSans-Light.ttf') format('truetype'),
            url('assets/fonts/IsidoraSans-Light.woff') format('woff'),
            url('assets/fonts/IsidoraSans-Light.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'IsidoraSans-Bold';
      src: url('assets/fonts/IsidoraSans-Bold.eot');
      src: url('assets/fonts/IsidoraSans-Bold.eot?#iefix') format('embedded-opentype'),
            url('assets/fonts/IsidoraSans-Bold.ttf') format('truetype'),
            url('assets/fonts/IsidoraSans-Bold.woff') format('woff'),
            url('assets/fonts/IsidoraSans-Bold.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'IsidoraSans-SemiBold';
      src: url('assets/fonts/IsidoraSans-SemiBold.eot');
      src: url('assets/fonts/IsidoraSans-SemiBold.eot?#iefix') format('embedded-opentype'),
            url('assets/fonts/IsidoraSans-SemiBold.ttf') format('truetype'),
            url('assets/fonts/IsidoraSans-SemiBold.woff') format('woff'),
            url('assets/fonts/IsidoraSans-SemiBold.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'IsidoraSans-Italic';
      src: url('assets/fonts/IsidoraSans-MediumItalic.eot');
      src: url('assets/fonts/IsidoraSans-MediumItalic.eot?#iefix') format('embedded-opentype'),
            url('assets/fonts/IsidoraSans-MediumItalic.woff') format('woff'),
            url('assets/fonts/IsidoraSans-MediumItalic.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
}

* {
      box-sizing: border-box;
}

strong {
      font-family: IsidoraSans-SemiBold;
      font-weight: normal;
}

h3 {
      margin: 0;
      font-family: IsidoraSans;
      font-size: 3em;
}

h4 {
      margin: 0;
      font-family: IsidoraSans;
      font-size: 2em;
}

.btn,
.woocommerce a.button {
      color: #2c3539;
      user-select: none;
      padding: 10px 20px;
      border: 1px solid #bfbfbf;
      border-radius: 50px;
      font-size: 18px;
      line-height: 1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      display: inline-block;
      font-family: IsidoraSans-SemiBold;
}

.btn:hover {
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-success {
      color: #fff;
      background: #51e381;
      border-color: #51e381;
}

.btn-brand {
      color: #fff;
      background: #f04f1a;
      border-color: #f04f1a;
}

.btn-transparent-light {
      color: #fff;
}

.btn-transparent-light:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.15);
}

.btn-small {
      font-size: 14px;
      padding: 6px 15px;
}

.btn-large {
      font-size: 22px;
      padding: 12px 30px;
}

.text-align-right {
      text-align: right;
}

.text-align-center {
      text-align: center;
}

.caption-text {
      font-family: IsidoraSans;
      font-size: 1.2em;
}

@media (max-width: 991px){
      .hide-on-mobile {
            display: none !important;
      }
}

@media (max-width: 991px){
      .col-reverse-on-mobile {
            flex-direction: column-reverse;
      }
}

.mobile-only {
      display: none !important;
}

@media (max-width: 991px){
      .mobile-only {
            display: block !important;
      }
}

.justify-center {
      justify-content: center;
}

.justify-end {
      justify-content: end;
}

.is-hidden {
      display: none !important;
}

body {
      font-family: IsidoraSans-SemiBold;
      max-width: 100vw;
      overflow-x: hidden;
      margin: 0;
      background: #ededee;

}

#content-wrapper {
      box-sizing: border-box;
      max-width: 1440px;
      margin: 0 auto;
}

header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      column-gap: 40px;
      padding: 20px;
      background: #ededee;
}

@media (min-width: 992px){
      header {
            justify-content: center;
      }
}

@media (min-width: 1200px){
      header {
            padding: 60px;
      }
}

#logo {
      width: 150px;
}

.mobile-nav-trigger-container {
      display: none;
}

@media (max-width: 991px){
      .mobile-nav-trigger-container {
            width: 25%;
            text-align: center;
            display: block;
            position: relative;
            height: 40px;
      }

      .mobile-nav-trigger-container label {
            position: relative;
            display: flex;
            align-content: space-around;
            flex-direction: column;
            flex-wrap: wrap;
            row-gap: 4px;
            height: 28px;
            justify-content: flex-end;
            cursor: pointer;
      }

      .nav-trigger-line {
            display: block;
            width: 30px;
            height: 4px;
            background: #434343;
            transition: all 0.3s ease-in-out;
      }

      .nav-trigger-line:nth-child(2) {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
      }
}

#mobile-nav-trigger {
      display: none;
}


#mobile-nav-trigger:checked + div + .primary-nav {
      max-height: 100vh;
      padding: 30px;
      opacity: 1;
}

#mobile-nav-trigger:checked + div .nav-trigger-line:nth-child(1){
  transform: translateY(3px) rotate(45deg);
}


#mobile-nav-trigger:checked + div .nav-trigger-line:nth-child(2){
      height: 40px;
      width: 40px;
      background: transparent;
      border: 3px solid #434343;
      border-radius: 100%;
      top: 0 !important;
}


#mobile-nav-trigger:checked + div .nav-trigger-line:nth-child(3){
  transform: translateY(-5px) rotate(-45deg);
}

.primary-nav {
      display: flex;
      width: 100%;
      margin: 0;
      padding: 0 30px;
      border-radius: 10px;
      font-size: .7em;
      max-height: 0;
      opacity: 0;
      transition: all .5s ease;
      overflow: hidden;
}

@media (min-width: 992px){
      .primary-nav{
            width: 660px;
            background: #f2280d;
            border-radius: 25px;
            max-height: 200px;
            padding: 30px;
            opacity: 1;
			transition: none;
      }
}

@media (min-width: 1200px){
      .primary-nav {
            width: 810px;
            column-gap: 20px;
            font-size: .8em;
      }
}

.primary-nav .menu,
.primary-nav .menu-cta {
      display: flex;
      flex-direction: column;
      row-gap: 30px;
      width: 100%;
      list-style: none;
      padding: 0;
      margin: 0;
}

@media (min-width: 992px){
      .primary-nav .menu,
      .primary-nav .menu-cta {
            flex-direction: row;
      }
}

.primary-nav .menu-cta {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
}

.primary-nav .menu a,
.primary-nav .menu-cta a {
      color: #434343;
      text-decoration: none;
      font-size: 2em;
	  white-space: nowrap;
}

@media (min-width: 768px){
      .primary-nav .menu a::after {
            display: block;
            content: "";
            width: 100%;
            height: 1px;
            background: #fff;
            opacity: 0;
            transition: all .4s ease;
            max-width: 0;
            transform: translateY(2px);
      }

      .primary-nav .menu a:hover::after {
            opacity: .8;
            max-width: 100%;
            box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
      }
}

@media (min-width: 992px){
      .primary-nav .menu {
            column-gap: 15px;
      }

      .primary-nav .menu a,
      .primary-nav .menu-cta a {
            position: relative;
            color: #fff;
            padding: 10px 0px;
            font-size: 1em;
            transition: all .2s ease;
            text-transform: uppercase;
      }
}

@media (min-width: 1200px){
      .primary-nav .menu {
            column-gap: 40px;
      }
}

.primary-nav .menu-cta a,
.primary-nav .cta-btn-wrapper a {
      padding: 10px 20px;
      background: #4fe480;
      color: #fff;
      text-align: center;
      border-radius: 50px;
      box-shadow: 4px 4px 5px rgba(0,0,0,.2);
      transition: all .2s ease;
      white-space: nowrap;
}

.primary-nav .menu-cta a:hover,
.primary-nav .cta-btn-wrapper a:hover {
      box-shadow: 4px 4px 5px rgba(0,0,0,.4);
}

.primary-nav .cta-btn-wrapper a {
      display: block;
      margin: 20px 0;
}

.primary-nav .submenu {
      display: flex;
      flex-direction: column;
      row-gap: 20px;
      list-style: none;
      margin: 10px 0 0 0;
      transition: max-height .4s ease;
      overflow: hidden;
      max-height: 0;
      height: 175px;
}

.primary-nav .has-submenu:hover .submenu {
      max-height: 175px;
}

.primary-nav .has-submenu > a {
      display: flex;
      flex-direction: row-reverse;
      column-gap: 5px;
      align-items: center;
      justify-content: space-between;
      padding: 0
}

.primary-nav .has-submenu > a::before {
      display: block;
      content: '';
      width: 0;
      height: 0;
      border-left: .35em solid transparent;
      border-right: .35em solid transparent;
      border-top: .35em solid;
}

.primary-nav .has-submenu > a::after {
      display: none;
}

@media (min-width: 992px){
      .primary-nav .has-submenu > a {
            justify-content: flex-end;
      }

      .primary-nav .submenu {
            background: #f2280d;
            position: absolute;
            z-index: 2;
            margin: 0;
            padding: 30px 25px 0 25px;
            border-bottom-left-radius: 25px;
            border-bottom-right-radius: 25px;
            transform: translateX(-25px);
      }
}

.not-found-page {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 100px;
      color: #fff;
}

.not-found-page h1 {
      margin: 0;
      font-size: 2.5em;
      font-family: IsidoraSans;
}

.not-found-page h2 {
      margin: 0;
      font-size: 5em;
}

.pricing-table {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 40px 20px;
}

.pricing-table-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-table-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      width: 300px;
      background: #fff;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 3px 3px 10px rgba(0,0,0,.2);
}

@media (min-width: 992px){
      .pricing-table-inner {
            width: 225px;
      }
}

@media (min-width: 1200px){
      .pricing-table-inner {
            width: 275px;
      }
}

@media (min-width: 1400px){
      .pricing-table-inner {
            width: 300px;
      }
}

.pricing-table-business {
      position: relative;
      background: #f23700;
      color: #fff;
}

.pricing-table-title {
      width: 100%;
      text-align: center;
      padding: 20px 10px;
      border-radius: 20px;
      font-size: 1.3em;
      color: #fff;
      text-transform: uppercase;
}

.pricing-table-single .pricing-table-title {
      background: #f28300;
}

.pricing-table-multi .pricing-table-title {
      background: #f25b00;
}

.pricing-table-developer .pricing-table-title {
      background: #f23700;
}

.pricing-table-business .pricing-table-title {
      background: #212a2e;
}

.pricing-table-license {
      height: 20px;
}

.pricing-table-developer .pricing-table-license {
      height: 60px;
      margin-top: -40px;
}

.pricing-table-business .pricing-table-license {
      height: 60px;
      margin: -20px 0;
}

.price {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      width: 180px;
      height: 180px;
      box-shadow: 0 0 40px rgba(0,0,0,.15);
      border-radius: 100%;
      aspect-ratio: 1;
      background: #fff;
      color: #555a63;
      font-size: 4.8em;
      font-family: IsidoraSans;
}

@media (min-width: 992px){
      .price {
            width: 150px;
            height: 150px;
            font-size: 3.8em;
      }
}

@media (min-width: 1200px){
      .price {
            width: 180px;
            height: 180px;
            font-size: 4.5em;
      }
}

.pricing-table-business .price {
      color: #f23700;
}

.price-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      line-height: 1;
      transform: translateY(10px);
}

.price-inner sup:first-of-type {
      font-size: .55em;
      transform: translateY(-10px);
}

.pricing-table-single .price-inner sup:first-of-type {
      font-size: .55em;
      transform: translate(5px, -10px);
}

.price-inner sup:last-of-type {
      font-size: .3em;
      transform: translateY(-5px)
}

.subscription-period {
      width: 100%;
      text-align: center;
      font-size: .25em;
}

.pricing-table-business .subscription-period {
      font-size: .2em;
}

.license-include-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      list-style: none;
      padding: 0;
      margin: 0;
      font-family: IsidoraSans;
}

.pricing-table-inner:not(.pricing-table-business) .license-include-list {
      margin: 20px 0;
}

.license-include-list li {
      display: flex;
      gap: 20px;
      align-items: center;
}

.license-include-list li i {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 31px;
      height: 31px;
      box-shadow: 0 0 10px rgba(0,0,0,.1);
      background: #fafafa;
      border-radius: 100%;
      padding: 5px;
      color: #42cc70;
      font-size: 1.3em;
}

.pricing-table-business .license-include-list li i {
      color: #f23700;
}


.license-include-list em {
      font-style: normal;
      font-size: 1.3em;
      color: #42cc70;
      font-family: IsidoraSans-SemiBold;
}

.pricing-table a {
      color: #fff;
      text-decoration: none;
      background: #51e381;
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 4px 4px 10px rgba(0,0,0,.2);
}

.pricing-table a:hover {
      background: #42cc70;
}

.pricing-bubble {
      display: none;
}

@media (min-width: 992px){
      .pricing-bubble {
            position: absolute;
            top: -125px;
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fff;
            padding: 20px 40px;
            border-radius: 100px;
            color: #2c3539;
            transform: rotate(5deg);
      }

      .pricing-bubble img {
            width: 60px;
      }

      .pricing-bubble::after {
            content: "";
            position: absolute;
            left: 32px;
            bottom: -29px;
            width: 0px;
            height: 0px;
            border-left: 12px solid transparent;
            border-right: 24px solid #fff;
            border-top: 16px solid #fff;
            border-bottom: 30px solid transparent;
            transform: rotate(-20deg);
      }
}

.reviews-container {
      position: relative;
      height: 370px;
      width: 740px;
      max-width: 100%;
      overflow: hidden;
}

.reviews-container-inner {
      position: absolute;
      top: 10px;
      display: flex;
      justify-content: flex-end;
      transition: all 1s ease;
      transform: translateX(-20px);
}

.review-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width:  680px;
      max-width: calc(100vw - 40px);
      height: 400px;
      padding: 0 40px;
      transition: opacity .4s ease;
      border-left: 2px solid #d7d7d7;
      box-sizing: content-box;
}

@media (min-width: 768px){
      .review-container {
            width: 300px;
      }
}

.review-head {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      column-gap: 15px;
      width: 100%;
      padding: 5px 10px;
      box-shadow: 0 0 10px rgba(0,0,0,.2);
      border-radius: 50px;
      box-sizing: border-box;
}

.review-head:before {
      content: "“";
      font-size: 6em;
      line-height: 0;
      color: #f6f6f9;
      transform: translateY(20px);
}

.review-title {
      font-family: IsidoraSans-Italic;
}

.review-image {
      width: 50px;
      border-radius: 100%;
}

.review-name {
      display: flex;
      gap: 10px;
      justify-content: space-around;
}

.review-name a {
      font-family: IsidoraSans;
      text-decoration: none;
      color: #000;
}

.review-content {
      font-family: IsidoraSans;
}

.review-stars {
      display: flex;
      column-gap: 3px;
}

.review-star-wrapper {
      background: #51e381;
      display: inline-flex;
      padding: 4px;
      align-items: center;
      justify-content: center;
}

.review-star-wrapper img {
      width: 20px;
      height: 20px;
}

.reviews-pagination {
      display: flex;
      justify-content: flex-end;
      column-gap: 10px;
      position: absolute;
      bottom: 10px;
      right: 10px;
}

.pagination-arrow {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 30px;
      border-radius: 100%;
      background: #dcdddf;
      text-decoration: none;
      color: #212a2e;
      box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.pagination-arrow:hover {
  box-shadow: 0 0 10px rgba(0,0,0,.2) inset;
}


#ai-caption {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      flex-wrap: wrap;
      flex-direction: column;
      width: 100%;
      row-gap: 40px;
      padding: 60px 0;
}

#ai-sphere {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle at 100px 100px, #fff, rgba(0,0,0,.2));
      border-radius: 100%;
      font-size: 2.6em;
      color: #51c780;
      font-family: IsidoraSans-Bold;
      text-shadow: 2px 2px 10px rgba(0,0,0,.2);
}

#ai-particles {
      position: absolute;
      width: 300px;
      height: 300px;
      bottom: 0;
      right: 0;
}

.ai-caption-text {
      text-transform: uppercase;
      font-size: 1.3em;
      color: #6d6d6f;
}

@media (min-width: 768px){
      #ai-caption {
            flex-direction: row;
      }
      .ai-caption-text {
            font-size: 1em;
            width: 25%;
      }

      .ai-caption-text:first-child {
            text-align: right;
      }
}

@media (min-width: 1280px){
      .ai-caption-text {
            font-size: 1.6em;
      }
}

footer {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
      justify-content: space-around;
      padding: 60px;
      color: #fff;
      background: #2c3539;
      min-height: 300px;
}

footer a {
      color: #fff;
      text-decoration: none;
      transition: all .4 ease;
}

footer a:hover {
      opacity: .7;
}

#footer-logo {
      display: flex;
      flex-direction: column;
      gap: 40px;
}

#footer-logo img {
      width: 130px;
}

footer h3 {
      font-size: 1em;
      font-family: IsidoraSans-SemiBold;
      text-transform: uppercase;
      margin-bottom: 20px;
}

.footer-menu {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      width: 66%;
      max-width: 700px;
}

@media (min-width: 768px){
      .footer-menu {
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
      }
}

.footer-menu-col {
      min-width: 200px;
}

.social-icons,
.footer-menu-list {
      margin: 0;
      padding: 0;
      list-style: none;
      font-family: IsidoraSans;
}

.footer-menu-list {
      display: flex;
      flex-direction: column;
      gap: 5px;
}

.social-icons {
      display: flex;
      column-gap: 10px;
}

.social-icons a {
      display: flex;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border: 2px solid;
      border-radius: 100%;
      font-size: .8em;
}

#footer-particles {
      position: absolute;
      width: 50%;
      height: 50%;
      bottom: 0;
      right: 0;
      pointer-events: none;
}

.popup-message {
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 1s ease;
      background: #ef3600;
      min-width: 300px;
      padding: 30px;
      border-radius: 10px;
      color: #fff;
      z-index: 2147483647;
}

.woocommerce-message {
      border-top-color: #51e381;
}

.woocommerce-error {
      border-top-color: #f6330c;
      font-family: IsidoraSans;
}

.woocommerce-message::before {
      content: "\e015";
      color: #51e381;
}

.woocommerce-error::before {
      color: #f6330c;
}

.woocommerce-error a {
      font-family: 'IsidoraSans-SemiBold';
      color: #000;
}

.cta-line {
      display: flex;
      justify-content: space-between;
      width: 90%;
      margin: 0 auto;
      background: #212a2e;
      color: #fff;
      font-size: 1.25em;
      border-radius: 50px;
      font-family: IsidoraSans-Bold;
      text-decoration: none;
}

@media (min-width: 1200px){
      .cta-line {
            margin: 100px auto;
            font-size: 1.75em;
      }
}

.cta-line-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-left: 25px;
}

.cta-line-side {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 30%;
      padding: 20px;
      color: #000;
      background: #52e984;
      border-radius: 50px;
      font-family: IsidoraSans-SemiBold;
      font-size: .6em;
      text-align: center;
}

#toast-container {
      display: flex;
      flex-direction: column;
      row-gap: 15px;
      position: fixed;
      top: 44px;
      right: 15px;
      z-index: 2147483647;
}


.toast-message {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      column-gap: 20px;
      width: 400px;
      min-height: 80px;
      max-width: 90%;
      border-radius: 15px;
      padding: 20px;
      background: linear-gradient(98deg, rgb(238, 63, 28) 0%, rgb(239, 79, 26) 100%);
      transition: all 1s ease;
      color: #fff;
      font-family: IsidoraSans-SemiBold;
      font-size: 1.2em;
}