@charset "UTF-8";
/*
/*	Copyright (c) 2024 Ajufbox
/*	Author: Ajufbox
/*	This file is made for CURRENT TEMPLATE
/*---------------------------------------------------*/
/*---------------------------------------------------*/
/*	Base
/*---------------------------------------------------*/
:root {
  --font-family: "Rubik", sans-serif;
  --font-heading-family: "Rubik", sans-serif;
  --font-base-size: 16px;
  --font-weight: 400;
  --line-height: 1.75;
  --container-max-width: 1350px;
  --container-padding: 0px 2rem;
  --section-padding-y: 100px;
  --section-padding-x: 100px;
  --header-height: 85px;
  --header-height-scrolled: 70px;
  --full-wrapper-margin-x: 30px;
  --ab-color-primary: #B04191;
  /* --ab-color-primary: #4260ff; */
  --color-dark-1: #111633;
  --color-dark-2: #222744;
  --color-gray-1: #5e606a;
  --color-gray-2: #8b8e9f;
  --color-gray-3: #b3b3b3;
  --color-light-gray-1: #edeff7;
  --color-light-gray-2: #f2f3f9;
  --color-light-gray-3: #f4f5ff;
  --color-red: #b53e3e;
  --color-green: #319b69;
  --color-gradient-blue: linear-gradient(
    45deg,
    rgb(176, 65, 145) 0%,
    rgb(136, 195, 247) 100%
  );
  /* --color-gradient-blue: linear-gradient(
    45deg,
    rgb(66, 96, 255) 0%,
    rgb(136, 195, 247) 100%
  ); */
  --box-shadow: 0px 5px 10px 0px rgba(42, 54, 79, 0.05),
    0px 1px 1px 0px rgba(42, 54, 79, 0.03),
    0px 3px 5px 0px rgba(42, 54, 79, 0.03);
  --box-shadow-block: 0px 1px 1px 0px rgba(42, 54, 79, 0.02),
    0px 2px 4px 0px rgba(42, 54, 79, 0.02),
    0px 4px 8px 0px rgba(42, 54, 79, 0.02),
    0px 0px 20px 0px rgba(42, 54, 79, 0.08);
  --transition-default: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  --transition-timing-1: cubic-bezier(0.195, 0.445, 0.375, 0.97);
  --transition-elastic: cubic-bezier(0.68, -3, 0.27, 5);
  --border-radius-default: 10px;
}

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-base-size);
  line-height: var(--line-height);
  letter-spacing: 0px;
  word-wrap: break-word;
  font-weight: var(--font-weight);
  margin: 0;
  color: var(--color-dark-1);
  overflow-x: hidden;
  position: relative;
}

.noscroll {
  overflow: hidden;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #6f6f6f;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #6f6f6f;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #6f6f6f;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6f6f6f;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #6f6f6f;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #6f6f6f;
}

button,
input,
optgroup {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

.container {
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  position: relative;
  clear: both;
}

.full-wrapper {
  margin: 0 var(--full-wrapper-margin-x);
}

.h-100vh {
  min-height: 100vh;
}

svg {
  fill: currentcolor;
  width: 1rem;
  height: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  transition: var(--transition-default);
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 0;
  position: absolute;
  white-space: nowrap;
}

.box-shadow {
  box-shadow: var(--box-shadow-block) !important;
}

.clearlist,
.clearlist li {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
}

.bg-dark-1 {
  background: var(--color-dark-1);
}
.bg-dark-2 {
  background: var(--color-dark-2);
}

.bg-gray-1 {
  background: var(--color-gray-1);
}
.bg-gray-2 {
  background: var(--color-gray-2);
}

.bg-light-gray-1 {
  background: var(--color-light-gray-1);
}
.bg-light-gray-2 {
  background: var(--color-light-gray-2);
}
.bg-light-gray-3 {
  background: var(--color-light-gray-3);
}

.bg-white {
  background: #ffffff;
}

.bg-img-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-scroll {
  background-attachment: scroll !important;
  background-position: center center !important;
}

.bg-dark-alpha:before,
.bg-dark-alpha-10:before,
.bg-dark-alpha-20:before,
.bg-dark-alpha-30:before,
.bg-dark-alpha-40:before,
.bg-dark-alpha-50:before,
.bg-dark-alpha-60:before,
.bg-dark-alpha-70:before,
.bg-dark-alpha-80:before,
.bg-dark-alpha-90:before,
.bg-light-alpha:before,
.bg-light-alpha-30:before,
.bg-light-alpha-40:before,
.bg-light-alpha-50:before,
.bg-light-alpha-60:before,
.bg-light-alpha-70:before,
.bg-light-alpha-80:before,
.bg-light-alpha-90:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-dark-alpha-10:before {
  background: #121b1f;
  opacity: 0.1;
}

.bg-dark-alpha-20:before {
  background: #121b1f;
  opacity: 0.2;
}

.bg-dark-alpha-30:before {
  background: #121b1f;
  opacity: 0.3;
}

.bg-dark-alpha-40:before {
  background: #121b1f;
  opacity: 0.4;
}

.bg-dark-alpha-50:before {
  background: #121b1f;
  opacity: 0.5;
}

.bg-dark-alpha-60:before {
  background: #121b1f;
  opacity: 0.6;
}

.bg-dark-alpha-70:before {
  background: #121b1f;
  opacity: 0.7;
}

.bg-dark-alpha-80:before {
  background: #101828;
  opacity: 0.8;
}

.bg-dark-alpha-90:before {
  background: #101828;
  opacity: 0.9;
}

.bg-light-alpha-30:before {
  background: rgba(252, 252, 252, 0.3);
}

.bg-light-alpha-40:before {
  background: rgba(252, 252, 252, 0.4);
}

.bg-light-alpha-50:before {
  background: rgba(252, 252, 252, 0.5);
}

.bg-light-alpha-60:before {
  background: rgba(252, 252, 252, 0.6);
}

.bg-light-alpha-70:before {
  background: rgba(252, 252, 252, 0.7);
}

.bg-light-alpha-80:before {
  background: rgba(252, 252, 252, 0.8);
}

.bg-light-alpha-90:before {
  background: rgba(252, 252, 252, 0.9);
}

.bg-gradient-light {
  background-image: linear-gradient(0deg, #ffffff 0%, transparent 60%);
}

.bg-gradient-dark {
  background-image: linear-gradient(0deg, var(--color-dark-1) 0%, transparent 60%);
}

.parallax-bg-1,
.parallax-bg-2,
.parallax-bg-3,
.parallax-bg-4,
.parallax-bg-5,
.parallax-bg-6,
.parallax-bg-7,
.parallax-bg-8 {
  background-position-y: 0;
  width: 100%;
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.rounded-4 {
  border-radius: 0.5rem;
}

.rounded-5 {
  border-radius: 1rem;
}

.rounded-6 {
  border-radius: 1.5rem;
}

.round-large {
  border-radius: 30px;
}

.border-bottom-light {
  border-bottom: 1px solid var(--color-light-gray-3);
}

/*---------------------------------------------------*/
/*	Margin and Padding
/*---------------------------------------------------*/
.pt-1r {
  padding-top: 1rem !important;
}
.pt-2r {
  padding-top: 2rem !important;
}
.pt-3r {
  padding-top: 3rem !important;
}
.pt-4r {
  padding-top: 4rem !important;
}
.pt-5r {
  padding-top: 5rem !important;
}
.pt-6r {
  padding-top: 6rem !important;
}

.pb-1r {
  padding-bottom: 1rem !important;
}
.pb-2r {
  padding-bottom: 2rem !important;
}
.pb-3r {
  padding-bottom: 3rem !important;
}
.pb-4r {
  padding-bottom: 4rem !important;
}
.pb-5r {
  padding-bottom: 5rem !important;
}
.pb-6r {
  padding-bottom: 6rem !important;
}

.pr-1r {
  padding-right: 1rem !important;
}
.pr-2r {
  padding-right: 2rem !important;
}
.pr-3r {
  padding-right: 3rem !important;
}
.pr-4r {
  padding-right: 4rem !important;
}
.pr-5r {
  padding-right: 5rem !important;
}
.pr-6r {
  padding-right: 6rem !important;
}

.pl-1r {
  padding-left: 1rem !important;
}
.pl-2r {
  padding-left: 2rem !important;
}
.pl-3r {
  padding-left: 3rem !important;
}
.pl-4r {
  padding-left: 4rem !important;
}
.pl-5r {
  padding-left: 5rem !important;
}
.pl-6r {
  padding-left: 6rem !important;
}

.mt-1r {
  margin-top: 1rem !important;
}
.mt-2r {
  margin-top: 2rem !important;
}
.mt-3r {
  margin-top: 3rem !important;
}
.mt-4r {
  margin-top: 4rem !important;
}
.mt-5r {
  margin-top: 5rem !important;
}
.mt-6r {
  margin-top: 6rem !important;
}
.mt-m-1r {
  margin-top: -1rem !important;
}
.mt-m-2r {
  margin-top: -2rem !important;
}
.mt-m-3r {
  margin-top: -3rem !important;
}
.mt-m-4r {
  margin-top: -4rem !important;
}
.mt-m-5r {
  margin-top: -5rem !important;
}
.mt-m-6r {
  margin-top: -6rem !important;
}

.mb-1r {
  margin-bottom: 1rem !important;
}
.mb-2r {
  margin-bottom: 2rem !important;
}
.mb-3r {
  margin-bottom: 3rem !important;
}
.mb-4r {
  margin-bottom: 4rem !important;
}
.mb-5r {
  margin-bottom: 5rem !important;
}
.mb-6r {
  margin-bottom: 6rem !important;
}
.mb-m-1r {
  margin-bottom: -1rem !important;
}
.mb-m-2r {
  margin-bottom: -2rem !important;
}
.mb-m-3r {
  margin-bottom: -3rem !important;
}
.mb-m-4r {
  margin-bottom: -4rem !important;
}
.mb-m-5r {
  margin-bottom: -5rem !important;
}
.mb-m-6r {
  margin-bottom: -6rem !important;
}

.mr-1r {
  margin-right: 1rem !important;
}
.mr-2r {
  margin-right: 2rem !important;
}
.mr-3r {
  margin-right: 3rem !important;
}
.mr-4r {
  margin-right: 4rem !important;
}
.mr-5r {
  margin-right: 5rem !important;
}
.mr-6r {
  margin-right: 6rem !important;
}
.mr-m-1r {
  margin-right: -1rem !important;
}
.mr-m-2r {
  margin-right: -2rem !important;
}
.mr-m-3r {
  margin-right: -3rem !important;
}
.mr-m-4r {
  margin-right: -4rem !important;
}
.mr-m-5r {
  margin-right: -5rem !important;
}
.mr-m-6r {
  margin-right: -6rem !important;
}

.ml-1r {
  margin-left: 1rem !important;
}
.ml-2r {
  margin-left: 2rem !important;
}
.ml-3r {
  margin-left: 3rem !important;
}
.ml-4r {
  margin-left: 4rem !important;
}
.ml-5r {
  margin-left: 5rem !important;
}
.ml-6r {
  margin-left: 6rem !important;
}
.ml-m-1r {
  margin-left: -1rem !important;
}
.ml-m-2r {
  margin-left: -2rem !important;
}
.ml-m-3r {
  margin-left: -3rem !important;
}
.ml-m-4r {
  margin-left: -4rem !important;
}
.ml-m-5r {
  margin-left: -5rem !important;
}
.ml-m-6r {
  margin-left: -6rem !important;
}

@media (min-width: 576px) {
  .pt-sm-1r {
    padding-top: 1rem !important;
  }
  .pt-sm-2r {
    padding-top: 2rem !important;
  }
  .pt-sm-3r {
    padding-top: 3rem !important;
  }
  .pt-sm-4r {
    padding-top: 4rem !important;
  }
  .pt-sm-5r {
    padding-top: 5rem !important;
  }
  .pt-sm-6r {
    padding-top: 6rem !important;
  }

  .pb-sm-1r {
    padding-bottom: 1rem !important;
  }
  .pb-sm-2r {
    padding-bottom: 2rem !important;
  }
  .pb-sm-3r {
    padding-bottom: 3rem !important;
  }
  .pb-sm-4r {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5r {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6r {
    padding-bottom: 6rem !important;
  }

  .mt-sm-1r {
    margin-top: 1rem !important;
  }
  .mt-sm-2r {
    margin-top: 2rem !important;
  }
  .mt-sm-3r {
    margin-top: 3rem !important;
  }
  .mt-sm-4r {
    margin-top: 4rem !important;
  }
  .mt-sm-5r {
    margin-top: 5rem !important;
  }
  .mt-sm-6r {
    margin-top: 6rem !important;
  }

  .mb-sm-1r {
    margin-bottom: 1rem !important;
  }
  .mb-sm-2r {
    margin-bottom: 2rem !important;
  }
  .mb-sm-3r {
    margin-bottom: 3rem !important;
  }
  .mb-sm-4r {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5r {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6r {
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 768px) {
  .pt-md-1r {
    padding-top: 1rem !important;
  }
  .pt-md-2r {
    padding-top: 2rem !important;
  }
  .pt-md-3r {
    padding-top: 3rem !important;
  }
  .pt-md-4r {
    padding-top: 4rem !important;
  }
  .pt-md-5r {
    padding-top: 5rem !important;
  }
  .pt-md-6r {
    padding-top: 6rem !important;
  }

  .pb-md-1r {
    padding-bottom: 1rem !important;
  }
  .pb-md-2r {
    padding-bottom: 2rem !important;
  }
  .pb-md-3r {
    padding-bottom: 3rem !important;
  }
  .pb-md-4r {
    padding-bottom: 4rem !important;
  }
  .pb-md-5r {
    padding-bottom: 5rem !important;
  }
  .pb-md-6r {
    padding-bottom: 6rem !important;
  }

  .mt-md-1r {
    margin-top: 1rem !important;
  }
  .mt-md-2r {
    margin-top: 2rem !important;
  }
  .mt-md-3r {
    margin-top: 3rem !important;
  }
  .mt-md-4r {
    margin-top: 4rem !important;
  }
  .mt-md-5r {
    margin-top: 5rem !important;
  }
  .mt-md-6r {
    margin-top: 6rem !important;
  }

  .mb-md-1r {
    margin-bottom: 1rem !important;
  }
  .mb-md-2r {
    margin-bottom: 2rem !important;
  }
  .mb-md-3r {
    margin-bottom: 3rem !important;
  }
  .mb-md-4r {
    margin-bottom: 4rem !important;
  }
  .mb-md-5r {
    margin-bottom: 5rem !important;
  }
  .mb-md-6r {
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 992px) {
  .pt-lg-1r {
    padding-top: 1rem !important;
  }
  .pt-lg-2r {
    padding-top: 2rem !important;
  }
  .pt-lg-3r {
    padding-top: 3rem !important;
  }
  .pt-lg-4r {
    padding-top: 4rem !important;
  }
  .pt-lg-5r {
    padding-top: 5rem !important;
  }
  .pt-lg-6r {
    padding-top: 6rem !important;
  }

  .pb-lg-1r {
    padding-bottom: 1rem !important;
  }
  .pb-lg-2r {
    padding-bottom: 2rem !important;
  }
  .pb-lg-3r {
    padding-bottom: 3rem !important;
  }
  .pb-lg-4r {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5r {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6r {
    padding-bottom: 6rem !important;
  }

  .mt-lg-1r {
    margin-top: 1rem !important;
  }
  .mt-lg-2r {
    margin-top: 2rem !important;
  }
  .mt-lg-3r {
    margin-top: 3rem !important;
  }
  .mt-lg-4r {
    margin-top: 4rem !important;
  }
  .mt-lg-5r {
    margin-top: 5rem !important;
  }
  .mt-lg-6r {
    margin-top: 6rem !important;
  }

  .mb-lg-1r {
    margin-bottom: 1rem !important;
  }
  .mb-lg-2r {
    margin-bottom: 2rem !important;
  }
  .mb-lg-3r {
    margin-bottom: 3rem !important;
  }
  .mb-lg-4r {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5r {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6r {
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 1200px) {
  .pt-xl-1r {
    padding-top: 1rem !important;
  }
  .pt-xl-2r {
    padding-top: 2rem !important;
  }
  .pt-xl-3r {
    padding-top: 3rem !important;
  }
  .pt-xl-4r {
    padding-top: 4rem !important;
  }
  .pt-xl-5r {
    padding-top: 5rem !important;
  }
  .pt-xl-6r {
    padding-top: 6rem !important;
  }

  .pb-xl-1r {
    padding-bottom: 1rem !important;
  }
  .pb-xl-2r {
    padding-bottom: 2rem !important;
  }
  .pb-xl-3r {
    padding-bottom: 3rem !important;
  }
  .pb-xl-4r {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5r {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6r {
    padding-bottom: 6rem !important;
  }

  .mt-xl-1r {
    margin-top: 1rem !important;
  }
  .mt-xl-2r {
    margin-top: 2rem !important;
  }
  .mt-xl-3r {
    margin-top: 3rem !important;
  }
  .mt-xl-4r {
    margin-top: 4rem !important;
  }
  .mt-xl-5r {
    margin-top: 5rem !important;
  }
  .mt-xl-6r {
    margin-top: 6rem !important;
  }

  .mb-xl-1r {
    margin-bottom: 1rem !important;
  }
  .mb-xl-2r {
    margin-bottom: 2rem !important;
  }
  .mb-xl-3r {
    margin-bottom: 3rem !important;
  }
  .mb-xl-4r {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5r {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6r {
    margin-bottom: 6rem !important;
  }
}
/*---------------------------------------------------*/
/*	Button
/*---------------------------------------------------*/
button {
  border: none;
}

@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  font-weight: normal;
  letter-spacing: 0.0125em;
  transition: all 0.3s ease-in-out;
  background: var(--btn-background, var(--ab-color-primary));
  color: var(--btn-color, var(--color-light-gray-1));
  position: relative;
  text-align: center;
  cursor: pointer;
  border: none;
  margin: 0;
  width: fit-content;
  overflow: hidden;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  flex-shrink: 0;
}
.btn:hover {
  color: var(--btn-color-hover, var(--color-light-gray-2));
  background: var(--btn-background-hover, var(--ab-color-primary));
}
.btn-sm {
  --btn-padding-y: 0.75rem;
  --btn-padding-x: 1.5rem;
  font-size: 0.8rem;
}
.btn-md {
  --btn-padding-y: 1rem;
  --btn-padding-x: 2rem;
  font-size: 1rem;
}
.btn-lg {
  --btn-padding-y: 1.125rem;
  --btn-padding-x: 2.75rem;
  font-size: 1.125rem;
}
.btn.btn-hvr-slide .btn-content,
.btn.btn-hvr-slide span {
  display: block;
  position: relative;
  z-index: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.1, 0, 0.3, 1);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.btn.btn-hvr-slide:before, .btn.btn-hvr-slide:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn.btn-hvr-slide:after {
  content: "";
  background: var(--btn-background-hover, var(--color-primary));
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn.btn-hvr-slide:before {
  content: "";
  background: var(--btn-background-hover, var(--color-primary));
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: 0;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
.btn.btn-hvr-slide:hover {
  color: var(--btn-color-hover, var(--color-light-gray-2));
}
.btn.btn-hvr-slide:hover:before {
  transform: translate3d(0, calc(-50% + var(--btn-padding-y)), 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn.btn-hvr-slide:hover:after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}
.btn.btn-hvr-slide:hover .btn-content {
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}
.btn.btn-hvr-bordered {
  border: 2px solid transparent;
}
.btn.btn-hvr-bordered:hover {
  background: transparent;
  color: var(--ab-color-primary);
  border: 2px solid;
}
.btn.btn-bordered {
  background: transparent;
  border: 2px solid var(--btn-background, var(--ab-color-primary));
  border-radius: 6px;
  color: var(--btn-background, var(--ab-color-primary));
}
.btn.btn-bordered:hover {
  color: var(--btn-color-hover, var(--color-light-gray-2));
  background: var(--btn-background-hover, var(--ab-color-primary));
  border: 2px solid var(--btn-background-hover, var(--ab-color-primary));
}

.play-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
}
.play-btn:hover {
  color: var(--ab-color-primary);
}
.play-btn i {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ab-color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 2rem;
  position: relative;
}
.play-btn i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
}
.play-btn.pulse-border i:after {
  border: 1px solid #ffffff;
  animation: pulse-border 1500ms ease-out infinite;
}
.play-btn.play-btn-sm i {
  margin-right: 1rem;
  width: 60px;
  height: 60px;
}
.play-btn.btn-white i {
  color: var(--ab-color-primary);
  background: #ffffff;
}

.content-light .btn.btn-bordered {
  --btn-background: #ffffff;
}

.dark .btn {
  --btn-background: var(--color-light-gray-2);
  --btn-color: var(--color-dark-1);
}

/*---------------------------------------------------*/
/*	Preloader
/*---------------------------------------------------*/
.preloader {
  position: fixed;
  background: #ffffff;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 2s var(--transition-timing-1);
}
.preloader.preloaded {
  opacity: 0;
}
.preloader.preloaded .ripple {
  opacity: 0;
}
.preloader .ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  opacity: 1;
  transition: opacity 1s var(--transition-timing-1);
}
.preloader .ripple div {
  position: absolute;
  border: 4px solid var(--ab-color-primary);
  opacity: 1;
  border-radius: 50%;
  animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.preloader .ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

.dark .preloader {
  background: var(--color-dark-1);
}

@keyframes ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
/*---------------------------------------------------*/
/*	Back to Top Button
/*---------------------------------------------------*/
.back-to-top-wrapper {
  height: 0;
  transition: height 0.3s var(--transition-timing-1);
  margin-top: -0.5rem;
  position: fixed;
  z-index: 20;
  right: 2rem;
  bottom: 4rem;
  width: 3rem;
}
.back-to-top-wrapper.active {
  height: 3rem;
  margin-top: 0;
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.3s var(--transition-timing-1);
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color-gray-1);
  background: #fff;
}
.back-to-top i {
  font-size: 2rem;
}
.back-to-top:hover {
  background-color: var(--ab-color-primary);
  color: #ffffff;
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top .progress-wrap {
  position: absolute;
  top: -1px;
  left: -1px;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(225, 225, 225, 0.54);
  z-index: 15;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.back-to-top .progress-wrap svg {
  width: 3rem;
  height: 3rem;
}
.back-to-top .progress-wrap:hover::before {
  opacity: 1;
}
.back-to-top .progress-wrap svg path {
  fill: none;
}
.back-to-top .progress-wrap svg.progress-circle path {
  stroke: var(--ab-color-primary);
  stroke-width: 3;
  box-sizing: border-box;
  -webkit-transition: all 500ms var(--transition-timing-1);
  transition: all 500ms var(--transition-timing-1);
}

.dark .back-to-top {
  color: var(--color-light-gray-1);
}
.dark .back-to-top:hover {
  color: #ffffff;
}
.dark .back-to-top .progress-wrap {
  box-shadow: inset 0 0 0 2px rgba(62, 62, 62, 0.673);
}

.fslightbox-container {
  background: var(--color-dark-1);
}

/*---------------------------------------------------*/
/*	Content Box
/*---------------------------------------------------*/
.content-box-s1 {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
}
.content-box-s1 .title {
  font-size: 1.5rem;
}

.anima-box-s1 {
  display: none;
  background: rgba(255, 255, 255, 0.75);
  padding: 1rem;
  max-width: 350px;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow-block);
  position: absolute;
}
.anima-box-s1 .content {
  font-size: 1rem;
  color: var(--color-gray-2);
  line-height: 1.4;
}
.anima-box-s1.pos-bottom-left {
  bottom: 10%;
  left: -10%;
}
.anima-box-s1.pos-top-right {
  top: 10%;
  right: 10%;
}
.anima-box-s1 .icon {
  background: var(--ab-color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.65rem;
}

@media (min-width: 768px) {
  .content-box-s1 {
    padding: 4.75rem 4rem;
  }
  .content-box-s1 .title {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .anima-box-s1 {
    display: inline-block;
  }
}
/*---------------------------------------------------*/
/*	Accordion
/*---------------------------------------------------*/
.accordion-item {
  border: none;
  background: transparent;
}
.accordion-body {
  padding: 0 1.25rem 2rem 0;
  color: var(--color-gray-1);
}
.accordion-button {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.25rem 0 1.25rem 0;
  border-top: 1px solid var(--color-light-gray-1);
  background: transparent;
}
.accordion-button::after {
  transition: transform 0.4s var(--transition-timing-function);
  background-image: unset;
  font-family: bootstrap-icons !important;
  content: "\F282";
  font-size: 1rem;
}
.accordion-button:not(.collapsed)::after {
  transform: rotateX(180deg);
  content: "\F282";
  background-image: unset;
}
.accordion-button:not(.collapsed) {
  pointer-events: none;
  color: inherit;
  background-color: transparent;
  box-shadow: unset;
  border-top: 1px solid var(--color-light-gray-1);
}

.number-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.number-descr {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
}

@media (min-width: 992px) {
  .number-title {
    font-size: 5rem;
  }
}
.page-404-title {
  color: var(--ab-color-primary);
  font-size: 10rem;
  line-height: 1;
}

/*---------------------------------------------------*/
/*	Brand
/*---------------------------------------------------*/
.brand-item img {
  cursor: pointer;
  filter: grayscale(100%);
  opacity: 0.5;
  width: 10rem;
}
.brand-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/*---------------------------------------------------*/
/*	Counter
/*---------------------------------------------------*/
.counter-item-s1 {
  border-radius: 1rem;
  border: 1px solid var(--color-light-gray-1);
  display: flex;
  align-items: center;
  padding: 28px 30px;
  margin-bottom: 30px;
  transform: translateY(0);
  transition: 0.3s linear;
}
.counter-item-s1 .icon {
  font-size: 60px;
  line-height: 0;
  position: relative;
  color: var(--ab-primary-color);
  margin-right: 40px;
}
.counter-item-s1 .icon img {
  width: 4rem;
}
.counter-item-s1 .icon:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 38px;
  background: var(--color-light-gray-1);
}

.counter-item-s2 .count {
  font-size: 2.5rem;
  color: var(--ab-color-primary);
  margin-bottom: 0;
  line-height: 1;
}
.counter-item-s2 .text {
  font-size: 1.125rem;
  color: var(--color-gray-2);
}

/*---------------------------------------------------*/
/*	Decoration
/*---------------------------------------------------*/
.decoration-shape-1 {
  width: 10rem;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -15%;
  margin-left: -10%;
  opacity: 0.7;
}

.decoration-shape-2 {
  position: absolute;
  width: 6rem;
  top: 0;
  left: 0;
  margin-top: -13.2978%;
  opacity: 0.5;
  z-index: -1;
}

/*---------------------------------------------------*/
/*	Image Group
/*---------------------------------------------------*/
.image-group-1 {
  position: relative;
}
.image-group-1 img {
  width: 100%;
  border-radius: 0.25rem;
}
.image-group-1 .image-1 {
  position: relative;
  width: 80%;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.image-group-1 .image-1-inner {
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  border-radius: 0.25rem;
}
.image-group-1 .image-2 {
  position: relative;
  width: 55%;
  margin-top: -50%;
  margin-left: auto;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: all var(--transition-timing-1);
}
.image-group-1 .image-2-inner {
  overflow: hidden;
  border: 10px solid #fff;
  isolation: isolate;
  transform: translateZ(0);
  border-radius: 0.25rem;
}

.img-hvr-zoom-1 {
  transition: all 1.5s var(--transition-timing-1);
  position: relative;
  overflow: hidden;
  transform: rotate(0.001deg) translateZ(0);
  border-radius: 30px;
}
.img-hvr-zoom-1 img {
  transition: all 1.5s var(--transition-timing-1);
  border-radius: 30px;
}
.img-hvr-zoom-1:hover {
  border-radius: 90px;
}
.img-hvr-zoom-1:hover img {
  transform: scale(1.05) rotate(0.001deg) translateZ(0);
}

.img-wrap-s1 {
  -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  overflow: hidden;
}

.img-wrap-s2 {
  border-radius: 10px;
  overflow: hidden;
}

/*---------------------------------------------------*/
/*	Pricing
/*---------------------------------------------------*/
.pricing-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}
.pricing-tab .tab-btn {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.25rem;
  user-select: none;
  transition: 0.3s;
}
.pricing-tab .tab-btn.active {
  color: var(--ab-color-primary);
}
.pricing-tab .pricing-tab-switcher {
  height: 30px;
  width: 70px;
  display: inline-block;
  border-radius: 30px;
  position: relative;
  margin: 0 15px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  cursor: pointer;
  background: var(--ab-color-primary);
}
.pricing-tab .pricing-tab-switcher:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 26px;
  border-radius: 50%;
  background: #ffffff;
  transition: 0.3s;
}
.pricing-tab .pricing-tab-switcher.active:before {
  left: calc(100% - 28px);
}

.pricing-price .price {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
}
.pricing-price .price strong {
  font-weight: 600;
  font-size: 20px;
  margin: 4px 3px auto 0;
}
.pricing-price .price span {
  color: #798eb9;
  text-transform: lowercase;
  font-weight: 500;
  font-size: 13px;
  font-family: var(--tg-body-font-family);
  margin-left: 2px;
  margin-bottom: 7px;
}
.pricing-price .price-annual {
  display: none;
}
.pricing-price .price-monthly {
  display: flex;
}
.pricing-price.annual .price-annual {
  display: flex;
}
.pricing-price.annual .price-monthly {
  display: none;
}

.pricing-head {
  padding: 50px 50px 40px;
  border-bottom: 1px solid #e1e1e9;
}
.pricing-head .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}
.pricing-head p {
  margin-bottom: 24px;
  color: var(--tg-gray-four);
}

.pricing-body {
  padding: 30px 50px 50px;
}

.pricing-list {
  display: flex;
  justify-content: center;
}
.pricing-list .list-wrap {
  margin-bottom: 1.5rem;
}
.pricing-list .list-wrap li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.pricing-list .list-wrap li i {
  font-size: 1.5rem;
  margin-right: 1rem;
}
.pricing-list .list-wrap li:last-child {
  margin-bottom: 0;
}

.pricing-box-s1 {
  border: 1px solid #e1e1e9;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
}
.pricing-box-s1 .popular {
  font-weight: 600;
  font-size: 15px;
  background: var(--ab-color-primary);
  color: #ffffff;
  display: block;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 80px;
  border-radius: 30px 0 0 30px;
  padding: 8px 18px;
  z-index: -1;
}
.pricing-box-s1 .pricing-list .list-wrap {
  margin-bottom: 30px;
}
.pricing-box-s1 .pricing-list .list-wrap li {
  justify-content: left;
}
.pricing-box-s1 .pricing-list .list-wrap li i.bi-check {
  color: var(--color-green);
}
.pricing-box-s1 .pricing-list .list-wrap li i.bi-x {
  color: var(--color-red);
}

.pricing-items-wrapper {
  background-color: white;
}

.pricing-box-s2 {
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0px 0px 60px 0px rgba(139, 111, 180, 0.08);
}
.pricing-box-s2.active {
  background: var(--color-dark-1);
  color: var(--color-light-gray-3);
}
.pricing-box-s2.active .pricing-head {
  border-bottom: 1px solid var(--color-dark-2);
}
.pricing-box-s2 .pricing-list .list-wrap {
  margin-bottom: 30px;
}
.pricing-box-s2 .pricing-list .list-wrap li {
  justify-content: left;
}
.pricing-box-s2 .pricing-list .list-wrap li i.bi-check {
  color: var(--color-green);
}
.pricing-box-s2 .pricing-list .list-wrap li i.bi-x {
  color: var(--color-red);
}

@media (min-width: 992px) {
  .pricing-items-wrapper {
    box-shadow: 0px 0px 60px 0px rgba(139, 111, 180, 0.08);
    margin-top: 4rem;
  }

  .pricing-box-s2 {
    margin-bottom: 0;
    box-shadow: unset;
  }
  .pricing-box-s2.active {
    margin-top: -4rem;
  }
}
/*---------------------------------------------------*/
/*	CTA
/*---------------------------------------------------*/
.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
}
.cta-info .content span {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 10px;
}
.cta-info .content a {
  display: inline-block;
  line-height: 1;
}
.cta-info .icon {
  font-size: 50px;
  line-height: 0;
  margin-right: 15px;
}
.cta-info .icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.cta-s1 .content-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.5rem;
  flex-direction: column;
}

.cta-s2 .cta-info {
  justify-content: start;
}

@media (min-width: 992px) {
  .cta-info {
    width: 46%;
    justify-content: end;
  }

  .cta-s1 .content-right {
    flex-direction: row;
  }

  .cta-s2 .cta-info {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cta-s2 .cta-info {
    width: 46%;
  }
  .cta-s2 .cta-info:before {
    content: "";
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 74px;
    background: var(--ab-color-primary);
  }
}
/*---------------------------------------------------*/
/*	Slider
/*---------------------------------------------------*/
@media (min-width: 992px) {
  .slider-style-1 {
    margin: 0 -265px;
  }
}
.slider-style-2 {
  position: relative;
}
.slider-style-2 .swiper-nav-container {
  display: flex;
  column-gap: 0.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.slider-style-2 .swiper-nav-container button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  font-size: 1.25rem;
  text-align: center;
  color: var(--color-gray-1);
  background: #ffffff;
  border-radius: 50%;
  opacity: 1;
  transform: none;
  transition: all 0.4s var(--transition-timing-1);
}
.slider-style-2 .swiper-nav-container button:not(:disabled):hover {
  background: var(--ab-color-primary);
  color: #ffffff;
}

.content-light .image-slider-1 button {
  color: var(--color-light-gray-2);
}
.content-light .image-slider-1 .swiper-pagination-bullet {
  --swiper-pagination-color: var(--color-light-gray-2);
  border: 1px solid var(--color-light-gray-2);
}

.slider-s4 {
  position: relative;
}
.slider-s4-pagination {
  height: 0;
}
.slider-s4-pagination button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  font-size: 1.25rem;
  top: 40%;
  z-index: 2;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 1px 0px rgba(0, 0, 0, 0.03), 0px 3px 5px 0px rgba(0, 0, 0, 0.03);
  background: var(--color-light-gray-3);
  transition: all 0.3s var(--transition-elastic);
  transform: scale(1);
}
.slider-s4-pagination button:hover {
  transform: scale(1.25);
}
.slider-s4-pagination .nav-prev {
  left: -1.5rem;
}
.slider-s4-pagination .nav-next {
  right: -1.5rem;
}

/*---------------------------------------------------*/
/*	Testimonial
/*---------------------------------------------------*/
.testimonial-container-s1 {
  padding: 6rem 2rem;
  border-radius: 30px;
}

.testimonial-item-s1 p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 35px;
  color: var(--color-dark-2);
}
.testimonial-item-s1 .rating {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  gap: 5px;
  color: var(--bs-yellow);
  margin-bottom: 30px;
}
.testimonial-item-s1 .testimonial-info span {
  color: var(--color-gray-1);
}
.testimonial-item-s1 .info-name {
  margin-bottom: 0;
}

.testimonial-item-s2 {
  position: relative;
  padding: 30px;
  background: #fff;
  border-radius: var(--border-radius-default);
  box-shadow: var(--box-shadow-block);
}
.testimonial-item-s2 .author {
  color: var(--color-dark-2);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.testimonial-item-s2 .author .small {
  color: var(--color-gray-2);
}
.testimonial-item-s2 .author-img {
  margin-top: 2px;
  margin-right: 12px;
  overflow: hidden;
  border-radius: 50%;
  isolation: isolate;
  transform: translateZ(0);
}
.testimonial-item-s2 .icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 30px;
  line-height: 1;
  opacity: 0.075;
}
.testimonial-item-s2 .text {
  margin-bottom: 0;
}
.testimonial-item-s2 .text p {
  color: var(--color-gray-1);
  font-size: 1.125rem;
  line-height: 1.529;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

/*---------------------------------------------------*/
/*	Breadcrumb
/*---------------------------------------------------*/
.breadcrumb {
  justify-content: center;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  font-size: 1.125rem;
}
.breadcrumb-list a {
  color: inherit;
}
.breadcrumb-list a:hover {
  color: var(--ab-color-primary);
}
.breadcrumb-list li {
  padding-left: 0.75rem;
}
.breadcrumb-list li i {
  font-size: 0.75rem;
}
.breadcrumb-list li:first-child {
  padding-left: 0;
}
.breadcrumb-list li.active {
  color: var(--ab-color-primary);
}

.content-light .breadcrumb {
  color: var(--color-light-gray-3);
}

/*---------------------------------------------------*/
/*	List item
/*---------------------------------------------------*/
.list-item-s1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.list-item-s1 .icon {
  position: relative;
  line-height: 0;
  margin-right: 1rem;
  background: var(--color-light-gray-3);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  width: fit-content;
}
.list-item-s1 .feature-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.list-item-s1 .content p {
  max-width: 300px;
  color: var(--color-gray-2);
}

@media (min-width: 992px) {
  .list-item-s1 {
    flex-direction: row;
  }
  .list-item-s1 .icon {
    margin-bottom: 0;
  }
}
.list-item-s2 {
  display: flex;
}
.list-item-s2 .icon {
  position: relative;
  top: 0.075em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  font-size: 18px;
  color: var(--ab-color-primary);
  border-radius: 50%;
  background: var(--color-light-gray-2);
}

.dark .list-item-s2 .icon {
  background: var(--color-dark-2);
}

.list-item-s3 {
  display: flex;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.list-item-s3 .icon {
  margin-right: 1.5rem;
  font-size: 1.5rem;
}
.list-item-s3 .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.list-item-s4 {
  padding: 1.5rem 2rem;
  background: #f6f6fb;
  border-radius: 0.5rem;
  text-align: center;
  height: fit-content;
  width: fit-content;
}
.list-item-s4 .icon {
  margin-bottom: 1rem;
}
.list-item-s4 .item-title {
  margin-bottom: 0;
}
.list-item-s4 .item-desc {
  color: var(--color-gray-1);
}

/*---------------------------------------------------*/
/*	Form
/*---------------------------------------------------*/
.form input[type="text"],
.form input[type="email"],
.form input[type="number"],
.form input[type="url"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="date"],
.form input[type="color"],
.form select {
  display: inline-block;
  height: var(--input-height, 1.75rem);
  vertical-align: middle;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-dark-1);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.183);
  padding-top: 0;
  padding-bottom: 2px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}
.form input[type="text"].input-lg,
.form input[type="email"].input-lg,
.form input[type="number"].input-lg,
.form input[type="url"].input-lg,
.form input[type="search"].input-lg,
.form input[type="tel"].input-lg,
.form input[type="password"].input-lg,
.form input[type="date"].input-lg,
.form input[type="color"].input-lg,
.form select.input-lg {
  --input-height: 3.125rem;
  font-size: 1rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="number"],
.form input[type="url"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="date"],
.form input[type="color"],
.form select,
.form textarea {
  border-color: rgba(52, 61, 85, 0.183);
  background: transparent;
}

.content-light .form input[type="text"],
.content-light .form input[type="email"],
.content-light .form input[type="number"],
.content-light .form input[type="url"],
.content-light .form input[type="search"],
.content-light .form input[type="tel"],
.content-light .form input[type="password"],
.content-light .form input[type="date"],
.content-light .form input[type="color"],
.content-light .form select,
.content-light .form textarea {
  border-color: rgba(190, 192, 199, 0.183);
}

.form textarea:focus {
  background: transparent;
}

.round {
  border-radius: var(--border-radius-default) !important;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form label {
  margin-bottom: 15px;
  font-size: 20px;
}
.form-tip, .form-tip a {
  font-size: 14px;
  line-height: 1.43;
  color: var(--color-gray-1);
}
.form-tip a {
  text-decoration: underline;
}
.form-tip, .form-tip a {
  font-size: 13px;
  line-height: 1.53;
}

form label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

/*---------------------------------------------------*/
/*	Typography
/*---------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--font-heading-family);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s var(--transition-timing-1);
}
a:hover {
  color: var(--ab-color-primary);
}

.full-link {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 4;
}

.fw-600 {
  font-weight: 600;
}

.h-title-1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: -0.035em;
}

.subtitle-s1 {
  display: inline-block;
  padding: 0.25rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  background: var(--color-light-gray-1);
  color: var(--ab-color-primary);
}

.fs-xs {
  font-size: 0.75rem;
}

.fs-sm {
  font-size: 0.875rem;
}

.fs-base {
  font-size: 1rem;
}

.fs-lg {
  font-size: 1.125rem;
}

.fs-xl {
  font-size: 1.25rem;
}

.fs-2xl {
  font-size: 1.35rem;
}

.fs-3xl {
  font-size: 1.45rem;
}

.fs-4xl {
  font-size: 1.75rem;
}

.fs-5xl {
  font-size: 2.25rem;
}

.fs-6xl {
  font-size: 2.5rem;
}

.fs-7xl {
  font-size: 3rem;
}

.fs-8xl {
  font-size: 4rem;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-900 {
  font-weight: 900;
}

.icon-lg {
  font-size: 1.25rem;
}

.icon-xl {
  font-size: 1.5rem;
}

.icon-2xl {
  font-size: 1.875rem;
}

.icon-3xl {
  font-size: 2.25rem;
}

.text-dark-1 {
  color: var(--color-dark-1);
}
.text-dark-2 {
  color: var(--color-dark-2);
}

.text-gray-1 {
  color: var(--color-gray-1);
}
.text-gray-2 {
  color: var(--color-gray-2);
}
.text-gray-3 {
  color: var(--color-gray-3);
}

.text-light-gray-1 {
  color: var(--color-light-gray-1);
}
.text-light-gray-2 {
  color: var(--color-light-gray-2);
}
.text-light-gray-3 {
  color: var(--color-light-gray-3);
}

.text-primary-1 {
  color: var(--ab-color-primary);
}

.success-message {
  color: var(--color-green);
}

.error-message {
  color: var(--color-red);
}

.content-light {
  color: var(--color-light-gray-1);
}
.content-light .fw-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.content-light .text-gray {
  color: var(--color-dark-mode-gray-1);
}

@media (min-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1rem;
  }

  .fs-xl {
    font-size: 1.25rem;
  }

  .fs-2xl {
    font-size: 1.5rem;
  }

  .fs-3xl {
    font-size: 1.875rem;
  }

  .fs-4xl {
    font-size: 2.25rem;
  }

  .fs-5xl {
    font-size: 3rem;
  }

  .fs-6xl {
    font-size: 3.75rem;
  }

  .fs-7xl {
    font-size: 4.5rem;
  }

  .fs-8xl {
    font-size: 6rem;
  }
}
blockquote {
  margin-bottom: 1.5rem;
}
blockquote p {
  position: relative;
  margin-bottom: 0.7em;
  font-size: 140%;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
blockquote footer {
  font-size: 15px;
  font-weight: 400;
}

.lead {
  margin: 0 0 1em 0;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.5;
}

.text-content {
  position: relative;
  line-height: 1.7;
  font-size: 1.125rem;
  color: var(--color-gray-1);
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  margin: 1.3em 0 0.5em 0;
  line-height: 1.3;
}
.text-content ul {
  list-style: disc;
}
.text-content ul,
.text-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.text-content ul li,
.text-content ol li {
  margin-bottom: 0.5rem;
}
.text-content .lead {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.text-content p {
  margin: 0 0 1.5rem 0;
}
.text-content a {
  text-decoration: underline;
}
.text-content blockquote {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}
.text-content blockquote p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.text-content blockquote p:before {
  content: "“";
  position: absolute;
  top: -0.23em;
  left: -0.5em;
  font-family: Georgia, "Times New Roman", Serif;
  font-size: 4em;
  opacity: 0.25;
}

.content-light .text-content {
  color: var(--color-gray-3);
}
.content-light .text-content h1,
.content-light .text-content h2,
.content-light .text-content h3,
.content-light .text-content h4,
.content-light .text-content h5,
.content-light .text-content h6 {
  color: var(--color-light-gray-1);
}

.text-shape-circle {
  overflow: visible;
  display: inline-block;
  position: relative;
}
.text-shape-circle:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/shape-1.png");
  width: 120%;
  height: 120%;
  position: absolute;
  left: -10%;
  top: -10%;
  transform: rotate(-5deg);
}

/*---------------------------------------------------*/
/*	Sections
/*---------------------------------------------------*/
.page-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.page-section-sm {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.breadcrumb-section {
  position: relative;
  margin-top: var(--header-height);
}

.section-subheading {
  font-size: 2rem;
  line-height: 1.5;
}
.section-subheading-small {
  font-size: 1.25rem;
  line-height: 1.75;
}

.section-heading {
  display: inline-block;
  padding: 7px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  background: var(--color-light-gray-1);
  color: var(--ab-color-primary);
}
.section-heading-small {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.dark .section-heading {
  background: var(--color-gray-2);
  color: var(--color-dark-1);
}

@media (min-width: 992px) {
  .page-section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
  }

  .section-subheading {
    font-size: 3rem;
  }
  .section-subheading-small {
    font-size: 1.5rem;
  }
}
/*---------------------------------------------------*/
/*	Header
/*---------------------------------------------------*/
.site-header {
  width: 100%;
  padding: 0 2rem;
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.025), 0px 1px 1px 0px rgba(0, 0, 0, 0.01), 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
  z-index: 12;
  transition: all 0.5s var(--transition-timing-1);
  backdrop-filter: blur(8px);
}
.site-header:not(.body-scrolled).transparent {
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: unset;
}
.site-header.js-transparent {
  transition: all 0.5s var(--transition-timing-1);
}
.site-header.sticky {
  position: fixed;
  top: 0;
}
.site-header.body-scrolled {
  height: var(--header-height-scrolled);
}
.site-header-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header-logo {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  flex-shrink: 0;
}
.site-header-logo .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

/*---------------------------------------------------*/
/*	Site Menu
/*---------------------------------------------------*/
.site-menu {
  position: fixed;
  background: #ffffff;
  padding: var(--container-padding);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.8s var(--transition-timing-1);
}
.site-menu.opened {
  transform: translate3d(0, 0, 0);
}
.site-menu-right {
  position: absolute;
  right: 0;
}
.site-menu > ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.site-menu ul li {
  margin: 0.25rem 0px;
  width: 100%;
}
.site-menu ul li a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025rem;
  color: var(--color-dark-2);
  transition: all 0.4s var(--transition-timing-1);
}
.site-menu ul li a.active, .site-menu ul li a:hover {
  color: var(--ab-color-primary);
}
.site-menu ul li.has-submenu {
  position: relative;
  height: 100%;
}
.site-menu ul li.has-submenu a {
  height: 100%;
  column-gap: 0.25rem;
}
.site-menu ul li.has-submenu:hover .submenu {
  opacity: 1;
  z-index: 2;
  visibility: visible;
  transform: translate(0, 0);
}
.site-menu ul li.has-submenu > a > i {
  font-size: 0.65rem;
}
.site-menu ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  padding: 1.25rem 1rem;
  background: #ffffff;
  border-radius: 0.25rem;
  opacity: 0;
  z-index: -1;
  cursor: auto;
  visibility: hidden;
  transform: translate(0, -10px);
  transition: opacity 0.3s var(--transition-timing-1), transform 0.3s var(--transition-timing-1), visibility 0.3s var(--transition-timing-1);
}
.site-menu ul.submenu li {
  margin-left: 0;
  margin-right: 0;
}
.site-menu ul.submenu li a {
  display: block;
  width: 100%;
  height: auto !important;
  line-height: 1.3 !important;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 12px;
  text-align: left;
  text-transform: none;
  border-left: none;
  border-right: none;
  letter-spacing: 0;
  outline-offset: -2px !important;
  transition: var(--transition-default);
}
.site-menu ul.submenu li a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.mobile-menu {
  display: flex;
  width: 100%;
  justify-content: right;
}
.mobile-menu button {
  width: 4rem;
  height: 4rem;
  margin-right: -1.5rem;
  font-size: 1.25rem;
  cursor: pointer;
  background: none;
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 1s;
  overflow: hidden;
}
.mobile-menu button span {
  position: absolute;
  width: 1.75rem;
  height: 2px;
  background: #212121;
  border-radius: 2px;
  transition: 0.5s;
  transition: all 0.4s var(--transition-timing-1);
}
.mobile-menu button span:nth-child(1) {
  transform: translateY(-8px);
}
.mobile-menu button span:nth-child(2) {
  transform: translateY(8px);
}
.mobile-menu button.active span:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-menu button.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu button.active span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 991px) {
  .mobile .site-menu {
    display: flex;
    height: 100vh;
    z-index: -1;
    padding: unset;
  }
  .mobile .site-menu li.has-submenu {
    height: unset;
  }
  .mobile .site-menu li.has-submenu a {
    justify-content: space-between;
  }
  .mobile .site-menu ul {
    overflow: scroll;
    padding-bottom: 6rem;
  }
  .mobile .site-menu ul.submenu {
    position: unset;
    opacity: 1;
    display: none;
    visibility: visible;
    background: unset;
    padding: 1rem 1rem 0rem;
  }
  .mobile .site-menu ul li a {
    width: 100%;
    font-size: 1rem;
  }
  .mobile .site-menu > ul {
    display: block;
    margin-top: 5rem;
    width: 100%;
  }
  .mobile .site-menu > ul > li {
    border-top: 1px solid var(--color-light-gray-1);
    padding: 1rem 2rem;
    margin: 0;
  }
  .mobile .site-menu-right {
    right: 3rem;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }

  .site-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: unset;
    background: transparent;
    transform: unset;
    padding: unset;
    opacity: 1;
    color: #212121;
  }
  .site-menu > ul {
    flex-direction: row;
    align-items: center;
  }
  .site-menu ul li {
    margin: 0 1.125rem;
  }
}
.mobile .dark .site-menu {
  background: var(--color-dark-1);
}

/*---------------------------------------------------*/
/*	Footer
/*---------------------------------------------------*/
.footer-top {
  padding: 100px 0 40px;
}

.footer-bottom {
  padding: 48px 0;
}

.footer-widget {
  color: var(--color-gray-1);
}
.footer-widget .fw-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-dark-2);
}

.fw-title {
  font-size: 1.125rem;
}

.footer-link .list-wrap li {
  margin-bottom: 0.65rem;
}

.footer-newsletter form {
  position: relative;
  margin-bottom: 1rem;
}
.footer-newsletter form input {
  width: 100%;
  border: none;
  background: var(--color-light-gray-2);
  font-weight: 500;
  font-size: 14px;
  border-radius: 0.5rem;
  padding: 12px 125px 12px 22px;
  height: 46px;
}
.footer-newsletter form button {
  border: none;
  background: var(--ab-color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 23px;
  height: 46px;
  transition: all 0.4s var(--transition-timing-1);
}
.footer-newsletter form button:hover {
  background: var(--color-dark-2);
}

.footer-social .list-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social .list-wrap li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 20px;
  background: var(--color-light-gray-1);
  color: var(--color-dark-2);
}
.footer-social .list-wrap li a:hover {
  background: var(--ab-color-primary);
  color: var(--color-light-gray-3);
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--color-gray-2);
}

.content-light .footer-widget {
  color: var(--color-gray-3);
}
.content-light .footer-widget .fw-title {
  color: var(--color-light-gray-2);
}
.content-light .footer-bottom {
  border-top: 1px solid #253352;
}
.content-light .footer-newsletter form input {
  background: var(--color-dark-2);
  color: #ffffff;
}
.content-light .footer-social .list-wrap li a {
  background: var(--color-dark-2);
  color: var(--color-light-gray-3);
}
.content-light .footer-social .list-wrap li a:hover {
  background: var(--ab-color-primary);
  color: var(--color-light-gray-3);
}

/*---------------------------------------------------*/
/*	Home
/*---------------------------------------------------*/
.home-section .container {
  padding-top: 6rem;
}

.home-2-content .sub-heading {
  letter-spacing: 0.25rem;
}
.home-2-content h2 {
  white-space: nowrap;
  font-weight: 500;
}
.home-2-content .home-name {
  font-size: 6rem;
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
}

.hs-paragraph-1 {
  top: 158px;
  left: 0;
  max-width: 256px;
  font-size: 16px;
  line-height: 1.5;
}

.home-hero-text {
  padding-right: 2.5rem;
  max-width: 450px;
  position: absolute;
}

@media (min-width: 992px) {
  .home-btn-bottom {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
  }

  .home-hero-text {
    padding-right: 0;
    max-width: 20rem;
    bottom: 2rem;
    right: 6rem;
  }

  .hs-paragraph-1 {
    position: absolute;
  }
}
.home-banner-1 {
  min-height: 620px;
}

/*---------------------------------------------------*/
/*	Service
/*---------------------------------------------------*/
.service-item-s1 {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 30px 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
  transition: 0.3s linear;
  text-align: center;
}
.service-item-s1 .service-icon {
  margin-bottom: 1.25rem;
}
.service-item-s1 .service-content {
  color: var(--color-dark-2);
}
.service-item-s1 .service-title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-dark-1);
}

.service-item-s2 {
  border-radius: 1rem;
  padding: 3.5rem 3rem;
  text-align: center;
  border: 1px solid var(--color-light-gray-2);
  background: #ffffff;
  transition: all 0.4s var(--transition-timing-1);
}
.service-item-s2 .service-icon {
  margin-bottom: 1.25rem;
}
.service-item-s2 .service-content {
  color: var(--color-gray-1);
}
.service-item-s2 .service-title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-dark-2);
}
.service-item-s2:hover {
  filter: drop-shadow(0px 14px 50px #e1e5ed);
}

.number-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 992px) {
  .number-title {
    font-size: 5rem;
  }
}
/*---------------------------------------------------*/
/*	Team
/*---------------------------------------------------*/
.team-item {
  border: 1px solid #dfe3ec;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: 0.3s linear;
}
.team-item:hover {
  filter: drop-shadow(0px 14px 30px #dde1eb);
  background: #ffffff;
}
.team-item .team-thumb {
  position: relative;
}
.team-item .team-thumb img {
  border-radius: 8px 8px 160px 0px;
}
.team-item .team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  background: var(--color-gradient-blue);
  color: #ffffff;
  border-radius: 0px 50px 50px 0px;
}
.team-item .team-social .list-wrap {
  display: flex;
  column-gap: 0.25rem;
}
.team-item .team-social .list-wrap li a {
  font-size: 1.25rem;
  padding: 1rem;
}
.team-item .team-content {
  padding: 20px 25px 25px;
}
.team-item .team-content .title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 3px;
}
.team-item .team-content span {
  font-size: 1rem;
  display: block;
  position: relative;
  padding-bottom: 15px;
  color: var(--color-gray-2);
}

@media (min-width: 768px) {
  .team-item .team-social .list-wrap li a {
    padding: 0.5rem;
    font-size: 1rem;
  }
}
.team-item-s2 .team-thumb {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.team-item-s2 .team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.5rem 0rem 1rem 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.team-item-s2 .team-social .list-wrap {
  display: flex;
  column-gap: 0.5rem;
  transform: translate3d(0px, 150%, 0px) scale(0.8);
  transition: all 0.3s ease-in-out;
}
.team-item-s2 .team-social .list-wrap li a {
  background: var(--color-light-gray-3);
  color: var(--ab-color-primary);
  font-size: 1.25rem;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team-item-s2 .team-content {
  text-align: center;
  margin-top: 1rem;
}
.team-item-s2 .team-content .title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 3px;
}
.team-item-s2 .team-content span {
  font-size: 1rem;
  display: block;
  position: relative;
  padding-bottom: 15px;
  color: var(--color-gray-2);
}
.team-item-s2:hover .team-social .list-wrap {
  transform: translate3d(0px, 0px, 0px) scale(1);
}

/*---------------------------------------------------*/
/*	Skill Progress
/*---------------------------------------------------*/
.skill-progress-container {
  overflow: hidden;
  padding-top: 5px;
}

.skill-progress-item {
  margin-bottom: 25px;
}
.skill-progress-item:last-child {
  margin-bottom: 0;
}
.skill-progress-item .title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.skill-progress-item .progress {
  height: 8px;
  background-color: var(--color-light-gray-1);
  border-radius: 8px;
  overflow: inherit;
}
.skill-progress-item .progress-bar {
  background-color: var(--ab-color-primary);
  position: relative;
  overflow: inherit;
  border-radius: 8px;
}
.skill-progress-item .progress-bar span {
  display: block;
  position: absolute;
  right: 3px;
  bottom: 20px;
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
  font-size: 11px;
  border-radius: 2px;
  background: var(--ab-color-primary);
  padding: 4px 7px;
}
.skill-progress-item .progress-bar span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 8px;
  height: 8px;
  background: var(--ab-color-primary);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/*---------------------------------------------------*/
/*	Project
/*---------------------------------------------------*/
.project-item-s1 .project-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-item-s1 .content span {
  display: block;
  font-size: 18px;
  color: var(--color-gray-2);
  line-height: 1;
  margin-bottom: 8px;
}
.project-item-s1 .project-thumb {
  margin-bottom: 30px;
}
.project-item-s1 .project-thumb img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}
.project-item-s1 .content .title {
  margin-bottom: 0;
  font-size: 30px;
}
.project-item-s1 .icon a {
  width: 55px;
  height: 55px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-gray-3);
  flex: 0 0 auto;
  color: var(--color-gray-3);
  transition: 0.3s var(--transition-timing-1);
  line-height: 0;
}
.project-item-s1 .icon a i {
  transform: rotate(45deg);
  transition: 0.3s var(--transition-timing-1);
  font-size: 1.75rem;
}
.project-item-s1 .icon a:hover {
  background: var(--ab-color-primary);
  border-color: var(--ab-color-primary);
  color: #ffffff;
}
.project-item-s1 .icon a:hover i {
  transform: rotate(0);
}

@media (min-width: 768px) {
  .project-item-s1 .icon a {
    display: flex;
  }
}
.portfolio-grid {
  margin: -2rem 0 0 -2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.portfolio-item {
  padding: 0 0 2rem 0;
  width: 100%;
}
.portfolio-item-inner {
  border-radius: var(--border-radius-default);
  transition: all 0.27s var(--transition-timing-1);
}
.portfolio-item-inner:hover {
  transform: translateY(-5px);
}
.portfolio-item a {
  display: block;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  text-decoration: none;
  border-radius: var(--border-radius-default);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  box-shadow: 0px 1px 1px 0px rgba(42, 54, 79, 0.02), 0px 2px 4px 0px rgba(42, 54, 79, 0.02), 0px 4px 8px 0px rgba(42, 54, 79, 0.02), 0px 0px 20px 0px rgba(42, 54, 79, 0.08);
}
.portfolio-item .work-title {
  margin: 0 0 3px 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.007em;
  line-height: 1.4;
  text-transform: none;
  transform: translateZ(0);
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
}
.portfolio-item .work-descr {
  display: block;
  color: var(--color-gray-2);
  font-size: 1rem;
  line-height: 1.4;
  text-transform: none;
  transform: translateZ(0);
}
.portfolio-item .work-intro {
  padding: 30px;
}

@media (min-width: 768px) {
  .portfolio-item {
    padding: 2rem 0 0 2rem;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .portfolio-item {
    width: 33.3333%;
  }
}
/*---------------------------------------------------*/
/*	Blog
/*---------------------------------------------------*/
.blog-post-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.476;
  margin-bottom: 12px;
}

.blog-post-text {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--color-gray-1);
  line-height: 1.625;
}

.blog-post-meta {
  margin-top: auto;
  font-size: 0.8rem;
}
.blog-post-meta a {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--color-gray-1);
  transition: all 0.27s var(--transition-timing-1);
}

.blog-card {
  display: flex;
  align-items: stretch;
}
.blog-card__container {
  overflow: hidden;
  border-radius: var(--border-radius-default);
  background: #ffffff;
  border: 1px solid var(--color-light-gray-1);
  isolation: isolate;
  transform: translateZ(0);
  transition: all 0.27s var(--transition-timing-1);
}
.blog-card__container > * {
  position: relative;
}
.blog-card__container > *:last-child {
  padding-bottom: 2rem;
}
.blog-card__container > *:last-child {
  padding-bottom: 2.5rem;
}
.blog-card__container:hover {
  transform: translateY(-5px);
  box-shadow: 4px 8px 30px 4px rgba(0, 0, 0, 0.05);
}
.blog-card__img {
  overflow: hidden;
  border-top-left-radius: var(--border-radius-default);
  border-top-right-radius: var(--border-radius-default);
  isolation: isolate;
  transform: translateZ(0);
}
.blog-card .blog-post-title,
.blog-card .blog-post-text,
.blog-card .blog-post-meta {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.blog-card .blog-post-title {
  padding-top: 30px;
}
.blog-card__author-img {
  width: 2rem;
  height: 2rem;
  margin-right: 5px;
  border-radius: 50%;
}

.blog-card-s2 {
  display: flex;
  align-items: stretch;
}
.blog-card-s2__container {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  transition: var(--transition-default);
  border-radius: 10px;
  box-shadow: 0px 10px 30px 0px rgba(30, 36, 50, 0.07), 0px 0px 1px 0px rgba(30, 36, 50, 0.1);
  isolation: isolate;
  transform: translateZ(0);
  transition: var(--transition-default);
}
.blog-card-s2__img {
  flex-shrink: 0;
  position: relative;
  min-width: 39.6825%;
  overflow: hidden;
}
.blog-card-s2__img a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 100%;
  transition: all 0.2s var(--ease-default);
}
.blog-card-s2__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0.01px) rotate(0.003deg);
  transition: all 0.5s var(--ease-out-short);
}
.blog-card-s2 .blog-post-title {
  font-weight: 400;
}
.blog-card-s2__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 35px 40px;
}

.dark .blog-card__container {
  background: #020202;
}
.dark .blog-card__text {
  color: var(--color-gray-2);
}
.dark .blog-card__info a {
  color: var(--color-gray-2);
}

.hs-title-1 {
  font-size: 4rem;
  font-weight: 500;
}

.blog-detail-data {
  margin-bottom: 3rem;
  font-size: 15px;
  color: var(--color-gray-2);
}
.blog-detail-data a {
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: var(--transition-default);
  transition: var(--transition-default);
}
.blog-detail-data a:hover {
  color: var(--color-dark-1);
  text-decoration: none;
}
.blog-detail-data i {
  position: relative;
  top: -2px;
  vertical-align: middle;
}

.blog-media {
  margin-bottom: 30px;
}
.blog-media .blog-media img,
.blog-media .blog-media .video,
.blog-media .blog-media iframe {
  width: 100%;
}

.blog-page-title {
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-light-gray-1);
}

.dark .blog-detail {
  color: var(--color-light-gray-1);
}
.dark .blog-page-title {
  border-bottom: 1px solid var(--color-dark-2);
}

/*---------------------------------------------------*/
/*	Comment
 /*---------------------------------------------------*/
.comment-item {
  padding-top: 2rem !important;
  border-top: 1px solid var(--color-light-gray-1);
  font-size: 1rem;
  overflow: hidden;
}
.comment-item:first-child {
  padding-top: 0 !important;
  border-top: none !important;
}
.comment-item-data {
  margin: 0 0 5px;
  font-size: 15px;
}
.comment-item-data a {
  color: var(--color-gray-1);
  text-decoration: none;
  -webkit-transition: var(--transition-default);
  transition: var(--transition-default);
}
.comment-item-data a:hover {
  color: var(--color-dark-1);
  text-decoration: none;
}

.comment-list > .comment-item:last-child p:last-child {
  margin-bottom: 0;
}

.media-body {
  overflow: hidden;
}

.comment-avatar {
  width: 3rem;
  margin-right: 1rem;
  border-radius: 50%;
}
.comment-author {
  display: inline-block;
  margin-right: 10px;
  font-weight: 500;
}
.comment-author a {
  color: var(--color-gray-1);
}

.content-light .comment-item {
  border-top: 1px solid var(--color-dark-2);
  color: var(--color-gray-2);
}
.content-light .comment-item-data a {
  color: var(--color-gray-3);
}
.content-light .comment-item-data a:hover {
  color: var(--color-light-gray-1);
}

.blog-list .blog-card {
  margin-bottom: 2rem;
}

/*---------------------------------------------------*/
/*	Pagination
/*---------------------------------------------------*/
.pagination-wrap .pagination {
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination-wrap .pagination .page-link {
  margin-left: 0;
  padding: 0 0;
  color: var(--color-gray-1);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: transparent;
}
.pagination-wrap .pagination .page-link:focus {
  color: #ffffff;
  background: var(--ab-color-primary);
  border-color: var(--ab-color-primary);
  outline: 0;
  box-shadow: none;
}
.pagination-wrap .pagination .page-item.active .page-link,
.pagination-wrap .pagination .page-link:hover {
  background: var(--ab-color-primary);
  border-color: var(--ab-color-primary);
  color: #ffffff;
}

/*---------------------------------------------------*/
/*	Blog Widget
/*---------------------------------------------------*/
.blog-widget {
  border: 1px solid var(--color-light-gray-1);
  border-radius: 10px;
  padding: 25px 30px 30px;
  margin-bottom: 30px;
}
.blog-widget:last-child {
  margin-bottom: 0;
}
.blog-widget .bw-title {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

/*---------------------------------------------------*/
/*	Sidebar Search
/*---------------------------------------------------*/
.sidebar-search {
  margin-bottom: 30px;
}
.sidebar-search form {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.sidebar-search form input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--color-light-gray-1);
  border-radius: 10px;
  padding: 20px 55px 20px 28px;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gray-1);
  height: 65px;
}
.sidebar-search form input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gray-3);
}
.sidebar-search form button {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0;
  font-size: 24px;
  color: var(--ab-color-primary);
  line-height: 0;
}

/*---------------------------------------------------*/
/*	Recent Post
/*---------------------------------------------------*/
.rc-post-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.rc-post-item:last-child {
  margin-bottom: 0;
}
.rc-post-item .thumb {
  width: 5rem;
  flex: 0 0 auto;
  margin-right: 1rem;
}
.rc-post-item .thumb img {
  border-radius: 8px;
}
.rc-post-item .content .date {
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.025rem;
  font-size: 0.75rem;
  color: var(--color-gray-3);
  margin-bottom: 8px;
}
.rc-post-item .content .date i {
  margin-right: 8px;
  font-size: 1rem;
}
.rc-post-item .content .title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-1);
}

.bs-cat-list .list-wrap li {
  border-bottom: 1px solid var(--color-light-gray-1);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
}
.bs-cat-list .list-wrap li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.bs-cat-list .list-wrap li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-1);
}
.bs-cat-list .list-wrap li a span {
  font-size: 14px;
  transition: all 0.3s ease-out 0s;
}
.bs-cat-list .list-wrap li a:hover span, .bs-cat-list .list-wrap li a:hover {
  color: var(--ab-color-primary);
}

.bs-tag-list .list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.bs-tag-list .list-wrap li a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.025rem;
  background: var(--color-light-gray-3);
  color: var(--ab-color-primary);
  display: block;
  border-radius: 4px;
  padding: 0.5rem 1rem;
}
.bs-tag-list .list-wrap li a:hover {
  color: #ffffff;
  background: var(--ab-color-primary);
}

@media (min-width: 992px) {
  .blog-sidebar {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .blog-sidebar {
    padding-left: 3rem;
  }
}
/*---------------------------------------------------*/
/*	Contact
/*---------------------------------------------------*/
.contact-form {
  margin-bottom: 6rem;
}

.contact-item {
  position: relative;
  color: var(--color-dark-1);
}

.contact-item {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.ci-icon {
  top: 4px;
  left: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-align: center;
  width: 48px;
  height: 48px;
  line-height: 46px;
  color: var(--ab-color-primary);
}
.ci-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.ci-text {
  line-height: 1.625;
  color: var(--color-gray-2);
  font-size: 1rem;
}

/*---------------------------------------------------*/
/*	Animation
/*---------------------------------------------------*/
[data-rellax-x] {
  transition: transform 0.25s var(--transition-timing-1);
  transition-delay: 0.0025s;
  will-change: transform;
}

[data-rellax-y] {
  transition: transform 0.25s cubic-bezier(0, 0, 0.58, 1);
  transition-delay: 0.0025s;
  will-change: transform;
}

.wow {
  opacity: 0.001;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.wow.animated {
  opacity: 1;
}

.wow-out {
  opacity: 1;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 2.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -2.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-2.5rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(2.5rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translate3d(0, -2.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInTop {
  animation-name: fadeInTop;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2.5rem, 0);
    transform: translate3d(0, -2.5rem, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2.5rem, 0);
    transform: translate3d(0, -2.5rem, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@keyframes fadeScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.75) translateZ(0.1px);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fadeScaleIn {
  animation-name: fadeScaleIn;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@keyframes clipRightIn {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
.clipRightIn {
  animation-name: clipRightIn;
  animation-timing-function: var(--ease-out-medium);
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
#particles-animation {
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
