/*------------------------------------------------------------------
[Table of contents]

1. Import libraries
2. Custom properties
3. General Styles
4. Typography
5. Animations
6. Navs and Tabs
7. Breadcrumb
8. Buttons
9. Utilities
10. Sections
11. Boxes and Cards
12. Accordion
13. Form
14. Responsive Layouts

-------------------------------------------------------------------*/

/* ---------------------------- */
/* Import libraries             */
/* ---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet');
@import url('../css/vendor/bootstrap.min.css');

/* ---------------------------- */
/* Custom properties            */
/* ---------------------------- */
:root {
  /* Color */
  --primary-color: #101EC5;
  --secondary-color: #CCFF00;
  --heading-color: #252525;
  --text-color: #646464;
  --accent-color: #FF7B6E;
  --background-color: #FFFFFF;
  --background-alt-color: #313131;
  --transparent-1-color: #CCFF0000;
  --transparent-2-color: #CCFF007A;
  --light-color: #EEEEEE;
  --divider-1-color: #494949;
  --divider-2-color: #B9B9B9;
  --divider-3-color: #3847FF;

  /* Font */
  --font-heading: "Anton", sans-serif;
  --font-text: "Poppins", sans-serif;

  /* Heading Custom */
  --text-counter: 60px;

  /* Heading Font Sizes - Desktop */
  --text-9xl: 300px;
  --text-7xl: 75px;
  --text-5xl: 40px;
  --text-4xl: 32px;
  --text-xl: 20px;
  --text-base: 16px;

  /* Heading Font Sizes - Tablet */
  --md-text-9xl: 175px;
  --md-text-7xl: 64px;
  --md-text-6xl: 44px;
  --md-text-5xl: 32px;
  --md-text-4xl: 25px;
  --md-text-xl: 18px;
  --md-text-base: 14px;

  /* Heading Font Sizes - Mobile */
  --sm-text-9xl: 93px;
  --sm-text-7xl: 36px;
  --sm-text-6xl: 28px;
  --sm-text-5xl: 26px;
  --sm-text-4xl: 20px;
  --sm-text-xl: 16px;
  --sm-text-base: 12px;
}

/* ---------------------------- */
/* General Styles               */
/* ---------------------------- */
body {
  font-family: var(--font-text);
  color: var(--text-color);
  background-color: var(--background-color);
}

.bg-primary-color {
  background-color: var(--primary-color) !important;
}

.bg-secondary-color {
  background-color: var(--secondary-color) !important;
}

.bg-dark-color {
  background-color: var(--heading-color) !important;
}

.bg-alt-color {
  background-color: var(--background-alt-color) !important;
}

.heading {
  font-family: var(--font-heading);
  font-weight: 400;
}

.heading-offside {
  margin: -7px 0px -8px 0px;
}

.text-semi-bold {
  font-weight: 600;
}

.text-small {
  font-size: var(--md-text-base);
}

.subtitle {
  display: flex;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
}

.subtitle::before,
.heading-counter.big::before {
  content: "";
  margin-right: 20px;
  width: 35px;
  height: 35px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23CCFF00' d='M512,242.93v26.14c-134.17,0-242.93,108.76-242.93,242.93h-26.14c0-134.17-108.76-242.93-242.93-242.93v-26.14c134.17,0,242.93-108.76,242.93-242.93h26.14c0,134.17,108.76,242.93,242.93,242.93Z'/%3E%3C/svg%3E");
  background-size: 35px;
  background-position: center;
}

.text-primary-color {
  color: var(--primary-color);
}

.text-secondary-color {
  color: var(--secondary-color);
}

.text-heading-color {
  color: var(--heading-color);
}

.text-color {
  color: var(--text-color) !important;
}

.text-transparent {
  color: var(--transparent-1-color);
}

.b-container {
  max-width: 1340px;
  margin-right: auto;
  margin-left: auto;
}

.section {
  padding: 100px 20px 100px 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.section.no-pad-bot {
  padding-bottom: 0px;
}

.section.pad-top-big {
  padding-top: 300px;
}

.width-10 {
  width: 10%;
}

.width-12 {
  width: 12%;
}

.width-13 {
  width: 13%;
}

.width-20 {
  width: 20%;
}

.width-header-20 {
  width: 20%;
}

.width-header-25 {
  width: 25%;
}

.width-header-75 {
  width: 75%;
}

.width-21 {
  width: 21%;
}

.width-40 {
  width: 40%;
}

.width-45 {
  width: 45%;
}

.width-50 {
  width: 50%;
}

.width-57 {
  width: 57%;
}

.width-74 {
  width: 100%;
  max-width: 838px;
}

.width-82 {
  width: 82%;
}

.max-w-204 {
  max-width: 204px;
}

.max-w-223 {
  max-width: 223px;
}

.max-w-257 {
  max-width: 257px;
}

.max-w-428 {
  max-width: 428px;
}

.mt-n250 {
  margin-top: -250px;
}

.mt-n220 {
  margin-top: -220px;
}

.mt-n170 {
  margin-top: -170px;
}

.mt-n140 {
  margin-top: -140px;
}

.mt-n100 {
  margin-top: -100px;
}

.mt-n70 {
  margin-top: -79px;
}

.mt-n60 {
  margin-top: -60px;
}

.mt-n35 {
  margin-top: -35px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-120 {
  padding-top: 120px;
}

.mb-n50 {
  margin-bottom: -50px;
}

.ms-n15 {
  margin-left: -15px;
}

.py-30 {
  padding: 30px 0px;
}

.fs-70 {
  font-size: 70px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.pt-150 {
  padding-top: 150px;
}

.h-65 {
  height: 65px;
}

.max-width-690 {
  width: 100%;
  max-width: 690px;
}

.rounded-25 {
  border-radius: 25px
}

.border-color {
  border: 5px solid var(--heading-color);
}

.border-secondary-color {
  border-color: var(--secondary-color) !important;
  opacity: 1;
  border-radius: 0;
}

.border-text-color {
  border-color: var(--divider-2-color) !important;
}

.border-start {
  border-top: 2px solid var(--secondary-color) !important;
  opacity: 1;
}

.border-start-2 {
  border-top: 1px solid var(--divider-1-color) !important;
  opacity: 1;
}

.border-start-3 {
  border-top: 1px solid var(--divider-3-color) !important;
  opacity: 1;
}

.border-start-4 {
  border-top: 1px solid var(--divider-2-color) !important;
  opacity: 1;
}

.border-start-5 {
  border-top: 1px solid var(--text-color) !important;
  opacity: 1;
}

.border-radius-107 {
  border-radius: 107px;
}

.heading-counter {
  font-size: var(--text-counter);
  font-weight: 600;
  line-height: 1.2;
}

.heading-counter {
  display: inline-flex;
  align-items: baseline;
}

.heading-counter.big {
  position: relative;
  font-family: var(--font-heading);
  font-size: var(--text-7xl);
  font-weight: 400;
}

.heading-counter.big::before {
  position: absolute;
  z-index: -1;
  width: 85px;
  height: 85px;
  background-size: 85px;
  margin-right: 0px;
  left: -40px;
}

.heading-counter.big .plus-sign {
  font-size: var(--text-7xl);
  color: var(--primary-color);
  top: -10px;
}

.count-up {
  display: inline-block;
  min-width: 4ch;
  text-align: left;
}

.plus-sign {
  color: var(--secondary-color);
  font-size: var(--md-text-5xl);
  top: -25px;
  padding-left: 10px;
  position: relative;
}

.big-title-stroke {
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: var(--secondary-color);
  color: var(--transparent-1-color);
}

.icon-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  background-color: var(--secondary-color);
  color: var(--heading-color);
}

.icon-offer {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-color);
  border-radius: 100px;
  padding: 15px;
}

.client-wrapper {
  padding: 50px 0px;
}

.client-logos img {
  width: 100%;
  height: 73px;
  object-fit: contain;
  margin: 0px 10px;
}

.img-wrapper {
  margin: -52px -90px 0px -90px;
}

.wrapper-img {
  margin-right: -130px;
}

.img-special {
  height: 138px;
}

.qoute {
  row-gap: 0px !important;
}

.quote-word {
  font-family: var(--font-heading);
  font-size: var(--text-counter);
  line-height: var(--text-7xl);
  text-transform: uppercase;
}

.quote-word.rotate-right,
.quote-word.rotate-left,
.quote-word.rotate-special,
.quote-word.left {
  transition: .3s;
}

.quote-word.rotate-right {
  transform: rotate(-3deg);
}

.quote-word.rotate-left {
  transform: rotate(3deg);
}

.quote-word.rotate-special {
  transform: rotate(-5deg);
}

.quote-word.rotate-right:hover,
.quote-word.rotate-left:hover,
.quote-word.rotate-special:hover {
  transform: rotate(0deg);
}

.quote-word.left:hover {
  transform: translateX(-10px);
}

.qoute-has-bg {
  padding: 0px 15px;
  border-radius: 25px;
}

.heading-stroke {
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
}

.heading-stroke-thin {
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
}

.stroke-white-color {
  -webkit-text-stroke-color: var(--background-color);
  stroke: var(--background-color);
  color: var(--transparent-1-color);
}

.stroke-secondary-color {
  -webkit-text-stroke-color: var(--secondary-color);
  stroke: var(--secondary-color);
  color: var(--transparent-1-color);
}

.stroke-heading-color {
  -webkit-text-stroke-color: var(--heading-color);
  stroke: var(--heading-color);
  color: var(--transparent-1-color);
}

.stroke-text-color {
  -webkit-text-stroke-color: var(--text-color);
  stroke: var(--text-color);
  color: var(--transparent-1-color);
}

.icon-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: var(--secondary-color);
  color: var(--heading-color);
  transition: .3s;
  width: 62px;
  height: 62px;
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 555px;
  gap: 20px;
}

.item:hover::before {
  top: 0px;
  opacity: 1;
}

.item {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: flex 0.8s ease;
  overflow: hidden;
  cursor: pointer;
}

.item::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0px;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0px, rgba(255, 255, 255, 0) 60%);
  transition: 0.5s;
  z-index: 1;
}

.item.active,
.item:hover {
  flex: 2.5;
}

.item:hover .content-item {
  top: 0px;
  opacity: 1;
  visibility: visible;
}

.content-item {
  padding: 20px;
  position: relative;
  z-index: 2;
  position: relative;
  top: 100px;
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: 0.6s;
}

.spacer-50 {
  height: 50px;
}

.spacer-100 {
  height: 100px;
}

.video-wrapper .play-btn {
  font-size: 90px;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  cursor: pointer;
}

.timer-number {
  font-size: var(--text-counter);
  font-weight: 600;
  letter-spacing: 5px;
  font-family: var(--font-text);
}

.contact-map {
  display: block;
  width: 100%;
  height: 245px;
  pointer-events: auto;
}

.icon-big {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.icon-big img {
  height: 70px !important;
}

.lh-special {
  line-height: 47px;
}

/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */

h1,
.heading-1 {
  font-size: var(--text-9xl);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--heading-color);
  line-height: 1em;
}

h2,
.heading-2 {
  font-size: var(--text-7xl);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--heading-color);
}

h3 {
  font-size: var(--text-5xl);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--heading-color);
}

h4 {
  font-size: var(--text-4xl);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--heading-color);
}

h5 {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--heading-color);
}

h6 {
  font-size: var(--text-base);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--heading-color);
}

p,
li {
  font-size: var(--text-base);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* --------------------------- */
/* Animations                  */
/* --------------------------- */
@keyframes button-ripple {
  70% {
    -webkit-box-shadow: 0 0 0 var(--glow-size, 34px) var(--secondary-color);
    box-shadow: 0 0 0 var(--glow-size, 34px) var(--secondary-color);
    opacity: 0
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 var(--secondary-color);
    box-shadow: 0 0 0 0 var(--secondary-color);
    opacity: 0
  }
}

.radar-animate::after,
.radar-animate::before {
  content: " ";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: .6;
  z-index: -1;
}

.radar-animate::before {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.radar-animate::after {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.marquee-slider {
  padding: 20px 0px;
  background-color: var(--secondary-color);
  transform: rotateZ(2deg);
}

.marquee-slider h2 {
  display: flex !important;
  align-items: center;
  position: relative;
  padding-left: 40px;
  margin-bottom: 0px;
}

.marquee-slider h2::after {
  content: "";
  margin-left: 40px;
  width: 36px;
  height: 36px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23252525' d='M512,242.93v26.14c-134.17,0-242.93,108.76-242.93,242.93h-26.14c0-134.17-108.76-242.93-242.93-242.93v-26.14c134.17,0,242.93-108.76,242.93-242.93h26.14c0,134.17,108.76,242.93,242.93,242.93Z'/%3E%3C/svg%3E");
  background-size: 36px;
  background-position: center;
}

/* Custom AOS */
.from-right {
  transform: translate3d(100vw, 0, 0);
}

[data-aos="fade-left"].aos-animate {
  transform: translate3d(0, 0, 0);
}

.from-left {
  transform: translate3d(-100vw, 0, 0);
}

[data-aos="fade-right"].aos-animate {
  transform: translate3d(0, 0, 0);
}

.progress,
.progress-bar {
  height: 10px;
  overflow: visible;
}

.progress.progress-2 {
  background-color: var(--background-color);
}

.progress.progress-2 .title {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--md-text-base);
  font-weight: 300;
  padding-right: 20px;
}

.progress.progress-2,
.progress.progress-2 .progress-bar {
  height: 16px;
}

.progress-bar {
  width: 0;
  background-color: var(--secondary-color);
  animation: progress 1.5s ease-in-out forwards;
  border-radius: 5px;
}

.progress-bar .title {
  opacity: 0;
  color: var(--heading-color);
  text-align: end;
  margin-top: -37px;
  animation: show 0.35s forwards ease-in-out 0.5s;
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.rotate-slow {
  width: 553px;
  height: 553px;
  background-image: url("/images/lottie-aurelia.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation: slow-spin 20s linear infinite;
  position: absolute;
  right: -100px;
  bottom: -320px;
}

.rotate-slow-2 {
  width: 397px;
  height: 397px;
  background-image: url("/images/Graphics.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation: slow-spin 4s linear infinite;
  position: absolute;
  left: -174px;
  bottom: -222px;
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Slick Dots */
.slick-slider .slick-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  margin-top: 35px;
  padding: 0
}

.slick-slider .slick-dots li {
  display: flex;
  width: auto;
  margin-bottom: 0
}

.slick-slider .slick-dots li:not(:last-child) {
  margin-right: 16px
}

.slick-slider .slick-dots button {
  width: 15px;
  height: 15px;
  border: none;
  background-color: var(--background-alt-color);
  font-size: 0;
  opacity: 1;
  transition: .2s
}

.slick-dots .slick-active button {
  background-color: var(--secondary-color);
  opacity: 1
}

/* ---------------------------- */
/* Navs and Tabs                */
/* ---------------------------- */
.nav-link {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--background-color);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--secondary-color) !important;
}

.nav-link.active {
  color: var(--secondary-color) !important;
}

.nav-link.dropdown-toggle:hover,
.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle.show {
  color: var(--secondary-color) !important;
}

.nav-link.dropdown-toggle::after {
  display: none;
}

.nav-link .bi-chevron-down {
  font-size: 12px;
  color: var(--secondary-color);
  top: -2px;
  position: relative;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 21px;
  height: 21px;
  margin: 10px;
}

.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
}

.dropdown-menu {
  background-color: var(--heading-color);
  border: none;
  border-radius: 0px;
  padding: 5px 0px;
  width: 170px;
}

.dropdown-item {
  color: var(--background-color);
  font-size: var(--text-base);
  font-weight: 400;
  font-family: var(--font-heading);
  margin: 20px 0;
  padding: 0px 27px;
  text-transform: uppercase;
  transition: .3s;
}

.dropdown-item:hover,
.dropdown-item.active:hover,
.dropdown-item:focus {
  color: var(--secondary-color) !important;
  background-color: transparent;
}

.dropdown-item.active {
  color: var(--secondary-color) !important;
  background-color: transparent;
}

.nav-pills .nav-link {
  padding: 5px 0;
  font-size: 32px;
  font-weight: 600;
  text-align: end;
}

.nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--text-color);
}

.tab-content .service-box img {
  max-height: 500px;
  min-height: 500px;
}

.tab-content .service-box .bg-overlay-2 {
  border-radius: 16px;
}

.tab-content .service-wrap {
  transform: translateY(115px);
}

/* ---------------------------- */
/* Breadcrumb                   */
/* ---------------------------- */
.breadcrumb {
  text-transform: uppercase;
  font-weight: 600;
}

.breadcrumb .breadcrumb-item>a {
  color: var(--secondary-color);
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--background-color) !important;
}

.breadcrumb-item a:hover {
  color: var(--background-color) !important;
}

.breadcrumb-item.active {
  color: var(--background-color) !important;
}

/* ---------------------------- */
/* Buttons                      */
/* ---------------------------- */
.btn-cta-primary {
  background-color: var(--transparent-1-color);
  color: var(--background-color);
  border: 2px solid var(--secondary-color);
  border-radius: 0;
  padding: 13px 25px;
  font-size: var(--text-base);
  font-weight: 400;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  transition: 0.5s;
}

.btn-cta-primary:hover {
  background-color: var(--secondary-color) !important;
  color: var(--heading-color);
  transform: scale(.9);
}

.btn-cta-secondary {
  background-color: var(--transparent-1-color);
  color: var(--heading-color);
  border: 2px solid var(--primary-color);
  border-radius: 0;
  padding: 13px 25px;
  font-size: var(--text-base);
  font-weight: 400;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  transition: 0.5s;
}

.btn-cta-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: var(--heading-color);
  border-color: var(--secondary-color);
  transform: scale(.9);
}

/* ---------------------------- */
/* Utilities                    */
/* ---------------------------- */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.bg-overlay-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, var(--transparent-1-color) 0%, var(--heading-color) 100%);
  z-index: 1;
}

.bg-grayscale {
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.bg-window {
  background-color: var(--secondary-color);
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  border: 10px solid var(--heading-color);
  border-bottom: none;
}

.object-cover {
  object-fit: cover;
  object-position: center;
}

.object-cover-top {
  object-fit: cover;
  object-position: top center;
}

.column-paragraph {
  columns: 2;
  column-gap: 50px;
  text-align: justify;
}

.list-key .bi-circle-fill {
  font-size: 10px;
}

.img-grayscale {
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

[data-fancybox="portfolio-image"] {
  cursor: zoom-in;
}

/* ---------------------------- */
/* Sections                     */
/* ---------------------------- */
.marquee {
  background-image: linear-gradient(180deg, var(--transparent-1-color) 50%, var(--heading-color) 0%);
}

.offcanvas-header .btn-close {
  margin-right: 0px;
  padding: 12px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
  opacity: 1;
}

.header-logo {
  width: 100%;
  max-width: 268px;
}

.footer {
  padding-top: 100px;
}

.footer a {
  color: var(--text-color);
  transition: .3s;
}

.footer a:hover {
  color: var(--background-color);
}

.footer-logo-box {
  width: 100%;
  max-width: 270px;
}

.footer .marquee-slider {
  background-color: var(--transparent-1-color);
  transform: rotateZ(6deg);
}

.footer .marquee-slider .heading-1 {
  padding: 0px 20px;
  opacity: .5;
}

/* ---------------------------- */
/* Boxes and Cards              */
/* ---------------------------- */
.offer-box {
  padding: 20px;
  background-color: var(--background-alt-color);
  transition: .3s;
}

.offer-box.about {
  padding: 30px;
}

.process-box {
  transition: .3s;
}

.offer-box:hover,
.process-box:hover {
  transform: scale(1.02);
}

.offer-box:hover .icon-arrow-right {
  transform: rotate(45deg);
}

.offer-box .icon-arrow-right {
  font-size: 60px;
  line-height: 1;
  transition: .3s;
}

.work-box a {
  font-weight: 600;
  color: var(--text-color);
}

.process-box {
  padding: 30px;
  overflow: hidden;
}

.testimonial-box {
  padding: 40px;
  background-color: var(--background-alt-color);
  margin: 0px 10px;
}

.testimonial-box img {
  width: 60px;
  height: 60px;
  border-radius: 50px;
}

.testimonial-box p {
  font-size: 20px;
}

.listing-blog .blog h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.listing-blog .blog img {
  aspect-ratio: 655/436;
}

.blog {
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-content {
  padding-top: 30px;
}

.blog-content .bi {
  font-size: var(--md-text-base)
}

.blogs-title {
  transition: color 0.3s ease;
  color: var(--text-color);
  text-decoration: none;
}

.blogs:hover .blogs-title {
  color: var(--primary-color);
}

.blogs-cover {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.blogs:hover .blogs-cover {
  transform: scale(1.05) rotate(1deg);
}

.blog img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.blog:hover img {
  transform: scale(1.05) rotate(2deg);
  opacity: .8;
}

.blog h4 {
  text-transform: uppercase;
}

.blog h4,
.blog img {
  transition: .3s;
  color: var(--heading-color);
}

.post-cat {
  padding: 3px 10px;
  border-radius: 30px;
  background-color: var(--secondary-color);
  color: var(--heading-color);
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion .accordion-item {
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: var(--accent-color-2) 2px solid;
}

.accordion .accordion-header {
  border-bottom: 1px solid var(--divider-2-color);
}

.accordion .accordion-button {
  font-family: var(--font);
  padding: 20px 0px;
  font-size: 32px;
  background-color: transparent;
  text-transform: uppercase;
  color: var(--heading-color);
  border: none;
  border-bottom: none !important;
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23252525' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23252525' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
  transition: all 0.5s;
}

.accordion .accordion-body {
  color: var(--text-color);
  padding: 10px 0px;
}

.accordion .accordion-body-2 {
  color: var(--text-color-2);
  padding: 10px 15px 10px 100px;
}

/* ---------------------------- */
/* Form                         */
/* ---------------------------- */
.form label {
  font-size: 18px;
  font-weight: 500;
  display: none;
}

.form input,
.form textarea,
.form select {
  background-color: transparent;
  color: var(--text-color);
  border-radius: 0px;
  outline: none;
  padding: 0;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid var(--secondary-color);
}

.form textarea {
  max-height: 158px;
}

.form select option {
  color: var(--text-color);
  background-color: var(--heading-color);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  box-shadow: none;
  border: solid 2px var(--accent-color-2);
  background-color: transparent;
  color: var(--text-color);
  border: none;
  border-bottom: 2px solid var(--secondary-color);
}

.form input::placeholder,
.form textarea::placeholder,
.form select {
  color: var(--placeholder-color);
  font-size: var(--md-text-base);
}

.datepicker {
  background-color: var(--background-color);
  border-radius: 8px;
  border: 1px solid var(--divider-2-color);
  padding: 8px;
  width: 300px;
}

.datepicker .datepicker-switch {
  border-radius: 0;
}

.datepicker table tr td,
.datepicker table tr th {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.datepicker table tr td.today {
  background-color: var(--primary-color) !important;
  color: var(--background-color) !important;
}

.datepicker table tr td.active {
  background-color: var(--primary-color) !important;
  color: var(--background-color) !important;
  background-image: none !important;
}

/* ---------------------------- */
/* Responsive Layouts           */
/* ---------------------------- */
@media only screen and (max-width: 1199.98px) {

  h1,
  .heading-1 {
    font-size: var(--md-text-9xl);
  }

  h2,
  .heading-2 {
    font-size: var(--md-text-7xl);
  }

  h3 {
    font-size: var(--md-text-5xl);
  }

  h4 {
    font-size: var(--md-text-4xl);
  }

  h5 {
    font-size: var(--md-text-xl);
  }

  h6 {
    font-size: var(--md-text-base);
  }

  p,
  li {
    font-size: var(--md-text-base);
  }

  .subtitle {
    font-size: var(--md-text-xl);
  }

  .mt-n220 {
    margin-top: -70px;
  }

  .pt-70 {
    padding-top: 70px;
  }

  .pt-30 {
    padding-top: 30px;
  }

  .pt-120 {
    padding-top: 48px;
  }

  .mt-n35 {
    margin-top: 48px;
  }

  .mt-n70 {
    margin-top: 0px;
  }

  .mt-n140 {
    margin-top: 0px;
  }

  .mt-n250 {
    margin-top: 0px;
  }

  .width-20 {
    width: 32%;
  }

  .width-40 {
    width: 100%;
  }

  .width-57 {
    width: 100%;
  }

  .width-74 {
    max-width: 817px;
  }

  .width-header-20 {
    width: 177px;
  }

  .nav-link,
  .dropdown-item {
    font-size: var(--md-text-base);
  }

  .img-hero {
    margin-left: -135px;
  }

  .big-title,
  .big-title-stroke {
    line-height: 1em;
    padding-left: 10px;
  }

  .img-special {
    height: 297px;
  }

  .bg-window {
    width: 48%;
  }

  .quote-word {
    font-size: var(--md-text-6xl);
    line-height: 55px;
  }

  .h-65 {
    height: 45px;
  }

  .width-21 {
    width: 42%;
  }

  .work-box a {
    font-size: var(--md-text-base);
  }

  .subtitle.special {
    justify-content: center;
  }

  .spacer-100 {
    height: 50px;
  }

  .testimonial-box p {
    font-size: 16px;
  }

  .rotate-slow-2 {
    width: 251px;
    height: 251px;
    bottom: unset;
    left: -90px;
    top: -135px;
  }

  .width-82 {
    width: 100%;
  }

  .max-w-428 {
    max-width: 100%;
  }

  .mt-n170 {
    margin-top: -40px;
  }

  .width-50 {
    width: 100%;
  }

  .lh-special {
    line-height: 40px;
  }

  .footer a {
    font-size: var(--md-text-base)
  }

}

@media only screen and (min-width: 991.98px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    top: 40px;
  }

  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }

  .nav-link.icon-submenu {
    padding: 0px !important;
  }
}

@media only screen and (max-width: 991.98px) {

  p,
  li {
    font-size: var(--md-text-base);
  }

  .offcanvas-header {
    justify-content: space-between;
  }

  .offcanvas-header .header-logo {
    width: 100%;
    max-width: 160px;
  }

  .dropdown-menu {
    width: 100%;
    border-radius: 0;
    padding: 5px;
    max-width: 170px;
  }

  .dropdown-item {
    margin: 15px 0;
  }

  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
  }

  .nav-link .bi-chevron-down {
    border: 1px solid;
    border-radius: 30px;
    padding: 1px 15px;
  }

  .icon-submenu {
    padding: 0px 5px;
    margin-left: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-wrapper {
    margin: 0px -100px -286px -120px;
  }

  .big-title,
  .big-title-stroke {
    width: 100% !important;
    max-width: unset !important;
  }
}

@media only screen and (max-width: 768.98px) {

  h1,
  .heading-1 {
    font-size: var(--sm-text-9xl);
  }

  h2,
  .heading-2 {
    font-size: var(--sm-text-7xl);
  }

  h3 {
    font-size: var(--sm-text-5xl);
  }

  h4 {
    font-size: var(--sm-text-4xl);
  }

  h5 {
    font-size: var(--sm-text-xl);
  }

  h6 {
    font-size: var(--sm-text-base);
  }

  p,
  li {
    font-size: var(--sm-text-base);
  }

  .nav-link,
  .dropdown-item {
    font-size: var(--sm-text-base);
  }

  .subtitle {
    font-size: var(--sm-text-xl);
  }

  .heading-counter.big {
    font-size: var(--sm-text-7xl);
  }

  .heading-counter.big .plus-sign {
    font-size: var(--sm-text-7xl);
    top: -5px;
  }

  .heading-counter.big::before {
    width: 45px;
    height: 45px;
    background-size: 45px;
    left: -25px;
  }

  .fs-70 {
    font-size: 50px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 10px 15px;
    font-size: var(--sm-text-base);
  }

  .img-hero {
    margin-left: auto;
  }

  .width-20 {
    width: 100%;
  }

  .width-45 {
    width: 100%;
  }

  .radar-animate::after,
  .radar-animate::before {
    width: 45px;
    height: 45px;
  }

  .subtitle::before {
    width: 25px;
    height: 25px;
    background-size: 25px;
  }

  .img-special {
    height: 189px;
  }

  .quote-word {
    font-size: var(--sm-text-6xl);
    line-height: 35px;
  }

  .h-65 {
    height: 39px;
  }

  .width-21 {
    width: 40%;
  }

  .work-box a {
    font-size: var(--sm-text-base);
  }

  .gallery-wrap {
    flex-direction: column;
    height: 843px;
  }

  .gallery-wrap.team {
    height: 1200px;
  }

  .item.active,
  .item:hover {
    flex: 12;
  }

  .item {
    flex: 3;
  }

  .rotate-slow {
    width: 300px;
    height: 300px;
    right: -85px;
    bottom: -190px;
  }

  .testimonial-box p {
    font-size: 14px;
  }

  .max-w-204 {
    max-width: 100%;
  }

  .footer a {
    font-size: var(--sm-text-base)
  }

  .big-title,
  .big-title-stroke {
    width: 100%;
    max-width: 330px;
  }

  .mt-n100 {
    margin-top: 50px;
  }

  .w-special {
    width: 100%;
  }

  .column-paragraph {
    columns: auto;
    text-align: center;
  }

  .wrapper-img {
    margin-right: -111px;
  }

  .lh-special {
    line-height: 26px;
  }
}

@media only screen and (max-width: 576.98px) {}