/**
 * Theme Name: Gosuits Theme
 * Template: hello-elementor
 */
/* npx @tailwindcss/cli -i ./style.css -o ./src/output.css */

@config "./tailwind.config.js";

@import "tailwindcss/preflight";
@import "tailwindcss/theme";

:where(.tw-scoped) {
   @tailwind utilities;
}

:root {
   --plyr-color-main: #ffa115;
}

@media screen and (max-width: 1024px) {
   .tw-scoped.cv {
      content-visibility: auto;
   }
}

body {
   font-family: "Montserrat", sans-serif;
}
h1,
h2,
h3 {
   font-weight: bold;
}
h1,
h2,
h3,
h4,
h5 {
   margin-block-start: 0.5rem;
   margin-block-end: 1rem;
}
p {
   margin-block-start: 0;
   margin-block-end: 0.9rem;
}
a {
   color: black;
}

@media screen and (min-width: 1024px) {
   .bg-hero {
      background-image: url(/tmp/resized/hero-bg.webp?ver=2) !important;
   }
}

.plyr {
   height: 100%;
}

.marqueee {
   overflow: hidden;
   white-space: nowrap;
   padding: 10px 0px 8px 0px;
   display: flex;
   flex-direction: row;
}

.marqueee > div {
   will-change: transform;
   display: flex;
   flex-direction: row;
   margin: 0px;
   align-items: center;
   animation: scroll-left 45s linear infinite;
}

.l6s {
   animation: scroll-left 180s linear infinite !important;
}

.marqueee:hover > div {
   animation-play-state: paused;
}

@media screen and (max-width: 768px) {
   .marquee-md > div:nth-last-of-type(1) {
      display: none;
   }
}

/* Keyframe for smooth scrolling */
@keyframes scroll-left {
   0% {
      transform: translateX(0%);
   }

   100% {
      transform: translateX(-100%);
   }
}

.tab-list {
   margin-bottom: -0.15rem;
}

.tab-list li {
   border-bottom: solid 0.3rem transparent;
}

.step-active {
   border-bottom-color: #ffa115 !important;
   color: #ffa115 !important;
}

.tab {
   display: none;
}

.tab-active {
   display: block;
}

.nav-marquee {
   font-weight: 600;
   color: #00264d;
   background: #ffa115;
}

.nav-marquee a {
   color: #00264d !important;
   text-decoration: underline;
}

.nav-marquee {
   overflow: hidden;
   white-space: nowrap;
   padding: 10px 0px 8px 0px;
   display: flex;
   flex-direction: row;
}

.nav-marquee i,
.nav-marquee .i {
   --color: white;
   font-style: normal;
}

.nav-marquee b {
   font-weight: 500 !important;
   color: #d4dbe0;
}

.nav-marquee > div {
   padding-left: 20px;
   display: flex;
   flex-direction: row;
   gap: 20px;
   margin: 0px;
   align-items: center;
   animation: scroll-left 45s linear infinite;
}

.tailwind ul {
   list-style: none;
   padding: 0px;
}

.tailwind .overflow-y-auto::-webkit-scrollbar {
   border-radius: 10px;
   width: 7px;
   background-color: #f5f5f5;
}

.tailwind .overflow-y-auto::-webkit-scrollbar-thumb {
   border-radius: 10px;
   -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
   background-color: #054686;
}

#rbNav #menu-toggle,
#rbNav #menu-toggle:focus,
#rbNav #menu-toggle:focus-visible,
#rbNav #menu-toggle:hover {
   border: none !important;
   padding: 0px !important;
   border-radius: 0px !important;
   background: none !important;
}

@media screen and (max-width: 1024px) {
   #nav-menu {
      transition: 0.3s ease;
      left: 100%;
   }

   #nav-menu.show {
      left: 0%;
   }

   .parent {
      transition: 0.3s ease;
      left: 100%;
   }

   .parent.show {
      left: 0%;
   }
}

#rbNav li a.active,
#rbNav li a.active:hover {
   color: #ffa115 !important;
   font-weight: 500 !important;
}

#rbNav .group[data-active="true"] > a {
   color: #ffa115 !important;
}

#rbNav .parent li a.active,
#rbNav .parent li a.active:hover {
   color: #ffa115 !important;
}

.typewriter-text {
   animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
   50% {
      border-color: transparent;
   }
}

.grecaptcha-badge {
   bottom: 55px !important;
}

.fade-up {
   /* transform: translateY(50px); */
   opacity: 0;
   transform: scale(1);
}

/* This class is added when the element enters the viewport */
.fade-up.active {
   /* transform: translateY(0); */
   opacity: 1;
   animation: jellyBounce 0.45s;
}

@keyframes jellyBounce {
   0% {
      transform: scale(0.6);
   }
   80% {
      transform: scale(1.1);
   }
   100% {
      transform: scale(1);
   }
}

@layer base {
   a {
      @apply no-underline;
   }
}
