/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}


.hover-input-popup {
  position: relative;
}

.hover-input-popup:hover .input-popup {
  opacity: 1;
  visibility: visible;
}

.input-popup {
  position: absolute;
  bottom: 75%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 11;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* 
  ======================
  FONT FACE DEFINITIONS
  ======================
  This section defines custom fonts (Helvetica) for the website.
  It includes normal and bold weights with fallback formats for better browser compatibility.
*/
@font-face {
  font-family: "Helvetica";
  src: url("/fonts/Helvetica.woff2") format("woff2"), url("/fonts/Helvetica.woff") format("woff"), url("/fonts/Helvetica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("/fonts/Helvetica-Bold.woff2") format("woff2"), url("/fonts/Helvetica-Bold.woff") format("woff"), url("/fonts/Helvetica-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* 
  ======================
  GLOBAL STYLES
  ======================
  Applies the custom font to all elements and sets default styles for paragraphs and headings.
*/
* {
  font-family: "Helvetica";
}

p {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  margin: 0;
}

/* 
  ======================
  CUSTOM SCROLLBAR
  ======================
  Styles the scrollbar for a modern look with a yellow thumb and light track.
*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #f5b74d;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #edb75d;
}

::-moz-selection {
  background-color: rgba(247, 203, 128, 0.4039215686);
  color: #000;
}

::selection {
  background-color: rgba(247, 203, 128, 0.4039215686);
  color: #000;
}

/* 
  ======================
  BUTTON STYLES
  ======================
  Defines styles for white and yellow buttons with hover effects.
*/
.white-button {
  color: #ffffff;
  font-size: 18px;
  padding: 13px 30px;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #000;
  display: inline-block;
}
.white-button:hover {
  background-color: transparent;
  color: #fff;
}

.yellow-button {
  color: #ffffff;
  font-size: 18px;
  padding: 13px 30px;
  border: 2px solid #edb75d;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #edb75d;
  color: #000;
  display: inline-block;
}
.yellow-button:hover {
  background-color: transparent;
  color: #edb75d;
}

/* 
  ======================
  SCROLL TO TOP BUTTON
  ======================
  Styles a button that appears when users scroll down, allowing them to return to the top.
*/
#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #edb75d;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop.show {
  opacity: 1;
  transform: scale(1);
}

#scrollToTop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  -webkit-clip-path: inset(calc(100% - var(--scroll)) 0 0 0);
          clip-path: inset(calc(100% - var(--scroll)) 0 0 0);
  transition: -webkit-clip-path 0.1s linear;
  transition: clip-path 0.1s linear;
  transition: clip-path 0.1s linear, -webkit-clip-path 0.1s linear;
  z-index: 1;
}

#scrollToTop .arrow {
  position: relative;
  z-index: 2;
}

/* 
  ======================
  NAVBAR TOGGLER (MOBILE MENU)
  ======================
  Styles the hamburger menu icon for mobile navigation with animations.
*/
.navbar-toggler {
  width: 20px;
  height: 20px;
  position: relative;
  transition: 0.5s ease-in-out;
}
.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
  position: relative;
}
.navbar-toggler span {
  margin: 0;
  padding: 0;
}
.navbar-toggler .toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: red;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.navbar-toggler .middle-bar {
  margin-top: 0px;
}
.navbar-toggler.collapsed .top-bar {
  position: absolute;
  top: 0px;
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  position: absolute;
  top: 10px;
  filter: alpha(opacity=100);
}
.navbar-toggler.collapsed .bottom-bar {
  position: absolute;
  top: 20px;
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .toggler-icon {
  background-color: #ffffff;
}
.navbar-toggler .top-bar {
  top: inherit;
  transform: rotate(135deg);
}
.navbar-toggler .middle-bar {
  opacity: 0;
  top: inherit;
  filter: alpha(opacity=0);
}
.navbar-toggler .bottom-bar {
  top: inherit;
  transform: rotate(-135deg);
}

/* 
  ======================
  NAVBAR STYLES
  ======================
  Styles the navigation bar with a blur effect on mobile and desktop adjustments.
*/
.navbar {
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
}
@media (min-width: 992px) {
  .navbar {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

@media (min-width: 992px) {
  nav {
    padding: 50px 0 !important;
  }
}
nav .navbar-brand img {
  width: 180px;
}
@media (min-width: 992px) {
  nav .navbar-brand img {
    width: 250px;
  }
}
nav .navbar-nav .nav-item a {
  text-transform: capitalize;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  nav .navbar-nav .nav-item a {
    font-size: 20px;
    padding: 10px 25px !important;
  }
}
nav .navbar-nav .nav-item a:hover {
  color: #edb75d;
}
nav .header-button {
  color: #ffffff;
  font-size: 18px;
  padding: 13px 20px;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
nav .header-button:hover {
  background-color: #ffffff;
  color: #000;
}

/* 
  ======================
  HERO SECTION
  ======================
*/
.hero {
  background-image: url(../images/hero-img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 200px 0 100px 0;
  text-align: center;
}
@media (min-width: 992px) {
  .hero {
    padding: 300px 0 150px 0;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 380px 0 180px 0;
  }
}
@media (min-width: 1400px) {
  .hero {
    padding: 450px 0 250px 0;
  }
}
.hero__content {
  max-width: 1000px;
  margin: auto;
}
.hero__content h1 {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
}
@media (min-width: 992px) {
  .hero__content h1 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .hero__content h1 {
    font-size: 60px;
  }
}
.hero__content p {
  color: rgba(255, 255, 255, 0.8470588235);
  font-size: 18px;
  margin: 30px 0;
}
@media (min-width: 992px) {
  .hero__content p {
    font-size: 25px;
  }
}
.hero__content .white-button {
  padding: 13px 50px;
}

/* 
  ======================
  UNDER-HERO SECTION
  ======================
*/
.under-hero {
  padding: 30px 12px;
  background-color: #edb75d;
}
.under-hero__content {
  text-align: center;
}
.under-hero__content p {
  color: #000;
  font-weight: bold;
}
@media (min-width: 992px) {
  .under-hero__content p {
    font-size: 20px;
  }
}

/* 
  ======================
  MARKETING PLATFORM SECTION
  ======================
*/
.marketing-platform {
  padding: 50px 0 0 0;
  /* Hide the default Swiper navigation arrows */
}
@media (min-width: 992px) {
  .marketing-platform {
    padding: 100px 0 0 0;
  }
}
@media (min-width: 1400px) {
  .marketing-platform {
    padding: 150px 0 0 0;
  }
}
.marketing-platform__header {
  max-width: 1100px;
  text-align: center;
  margin: auto;
}
.marketing-platform__header h2 {
  font-size: 30px;
  color: #000000;
  font-weight: bold;
}
@media (min-width: 992px) {
  .marketing-platform__header h2 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .marketing-platform__header h2 {
    font-size: 60px;
  }
}
.marketing-platform__header p {
  color: #000000;
  font-size: 18px;
  margin: 30px 0 0 0;
}
@media (min-width: 992px) {
  .marketing-platform__header p {
    font-size: 25px;
  }
}
.marketing-platform .swiper-container {
  width: 100%;
  overflow: hidden;
}
.marketing-platform .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
}
.marketing-platform .swiper-button-next::after,
.marketing-platform .swiper-button-prev::after {
  display: none;
}
.marketing-platform .tabs-container {
  position: relative;
  width: 100%;
  margin-top: 50px;
  border: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (min-width: 992px) {
  .marketing-platform .tabs-container {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 70px;
  }
}
.marketing-platform .tabs-container .nav-pills .nav-link {
  color: #000;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  margin: auto 20px;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .marketing-platform .tabs-container .nav-pills .nav-link {
    font-size: 18px;
  }
}
.marketing-platform .tabs-container .nav-pills .nav-link.active {
  background-color: transparent !important;
}
.marketing-platform .tabs-container .nav-pills .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #edb75d;
  transition: width 0.3s ease-in-out;
}
.marketing-platform .tabs-container .nav-pills .nav-link.active::after {
  width: 100%;
}
.marketing-platform .tabs-container .nav-pills .nav-link:hover::after {
  width: 100%;
}
.marketing-platform .tabs-container .nav-item {
  flex: 0 0 auto;
}
.marketing-platform .tabs-container .nav-arrow {
  background-color: transparent;
  border: none;
  width: 50px;
}
.marketing-platform .tabs-container .nav-arrow img {
  width: 100%;
  height: auto;
}
.marketing-platform .tab-content {
  border: 1px solid #000 !important;
  border-top-color: transparent !important;
  padding: 30px 0px;
  text-align: center;
}
@media (min-width: 992px) {
  .marketing-platform .tab-content {
    padding: 50px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .marketing-platform .tab-content .info-tab-content {
    max-width: 480px;
  }
}
.marketing-platform .tab-content .info-tab-content h3 {
  color: #000;
  font-weight: bold;
  font-size: 25px;
}
.marketing-platform .tab-content .info-tab-content p {
  margin: 30px 0;
  font-size: 18px;
}
.marketing-platform .tab-content .info-tab-content ul {
  padding: 0;
  margin-bottom: 50px;
  text-align: left;
}
.marketing-platform .tab-content .info-tab-content ul li {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
}
.marketing-platform .tab-content .info-tab-content ul li img {
  width: 30px;
  margin-right: 10px;
}
.marketing-platform .tab-content .info-tab-content .yellow-button {
  width: 100%;
}
@media (min-width: 992px) {
  .marketing-platform .tab-content .info-tab-content .yellow-button {
    width: -moz-max-content;
    width: max-content;
  }
}

/* 
  ======================
 CLIENTS FEEDBACK SECTION
  ======================
*/
.clients-feedback {
  padding: 50px 0;
}
@media (min-width: 992px) {
  .clients-feedback {
    padding: 100px 0;
  }
}
@media (min-width: 1400px) {
  .clients-feedback {
    padding: 150px 0;
  }
}
.clients-feedback__header {
  max-width: 1100px;
  text-align: center;
  margin: auto;
}
.clients-feedback__header h2 {
  font-size: 30px;
  color: #000000;
  font-weight: bold;
}
@media (min-width: 992px) {
  .clients-feedback__header h2 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .clients-feedback__header h2 {
    font-size: 60px;
  }
}
.clients-feedback__content {
  margin: 60px auto auto auto;
  text-align: center;
}
@media (min-width: 992px) {
  .clients-feedback__content {
    margin: 80px auto auto auto;
    max-width: 850px;
  }
}
.clients-feedback__content .stars-wrapper img {
  width: 40px;
}
.clients-feedback__content h4 {
  margin: 40px 0 20px 0;
  font-weight: bold;
  line-height: 2;
  font-size: 18px;
}
@media (min-width: 992px) {
  .clients-feedback__content h4 {
    margin: 60px 0 20px 0;
    font-size: 24px;
  }
}
.clients-feedback__content h4 span {
  background-color: rgba(247, 203, 128, 0.368627451);
  padding: 5px 10px;
  display: inline-block;
  line-height: 1.5;
  border-radius: 4px;
}
.clients-feedback__content p {
  font-size: 14px;
}
@media (min-width: 992px) {
  .clients-feedback__content p {
    font-size: 18px;
  }
}

.programs {
  padding: 50px 0;
  background-color: #000;
}
@media (min-width: 992px) {
  .programs {
    padding: 100px 0;
  }
}
@media (min-width: 1400px) {
  .programs {
    padding: 150px 0;
  }
}
.programs .section-title {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 50px auto;
}
@media (min-width: 992px) {
  .programs .section-title {
    margin: 0 auto 80px auto;
  }
}
.programs .section-title h2 {
  margin: 0;
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .programs .section-title h2 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .programs .section-title h2 {
    font-size: 60px;
  }
}
.programs .section-title p {
  margin: 20px 0 0 0;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 992px) {
  .programs .section-title p {
    font-size: 24px;
  }
}
.programs__content {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 50px auto auto auto;
}
@media (min-width: 991px) {
  .programs__content {
    margin: 100px auto auto auto;
    flex-direction: row;
    max-width: 500px;
  }
}
.programs__content .img-wrpper {
  flex-shrink: 0;
  flex-grow: 0;
}
.programs__content .img-wrpper img {
  width: 40px;
}
.programs__content .info h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 991px) {
  .programs__content .info h3 {
    font-size: 28px;
  }
}
.programs__content .info p {
  color: #fff;
  margin: 10px 0 0;
}

/* 
  ======================
 CALL TO ACTION SECTION
  ======================
*/
.cta {
  padding: 0 0 50px 0;
  background-color: #000;
}
@media (min-width: 992px) {
  .cta {
    padding: 0 0 100px 0;
  }
}
@media (min-width: 1400px) {
  .cta {
    padding: 0 0 150px 0;
  }
}
.cta__content {
  background-color: #ffffff;
  padding: 50px 20px;
}
@media (min-width: 992px) {
  .cta__content {
    padding: 50px;
  }
}
@media (min-width: 1400px) {
  .cta__content {
    padding: 100px;
  }
}
.cta__content h2 {
  font-size: 30px;
  color: #000;
  font-weight: bold;
}
@media (min-width: 992px) {
  .cta__content h2 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .cta__content h2 {
    font-size: 60px;
  }
}
.cta__content p {
  color: #000;
  font-size: 18px;
  margin: 30px 0;
}
@media (min-width: 992px) {
  .cta__content p {
    font-size: 25px;
  }
}

/* 
  ======================
 FOOTER SECTION
  ======================
*/
footer {
  padding: 30px 0;
  background-color: #edb75d;
}
@media (min-width: 992px) {
  footer {
    padding: 60px 0;
  }
}
footer p {
  font-weight: bold;
  color: #000;
  text-align: center;
}
@media (min-width: 992px) {
  footer p {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */