* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Kanit", sans-serif;
}

html {
  max-width: 100% !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

img {
  -webkit-user-drag: none;
}

.title-section {
  color: #F48C20;
  transition: ease-in-out 0.5s;
}
.title-section:hover {
  transform: scale(1.05);
}

p {
  font-family: "Kanit", sans-serif;
  font-size: 1.2rem;
}

h1, h2, h3, h4, h5, h6, span {
  font-family: "Oswald", sans-serif;
}

.title-rec-bg {
  color: #F48C20;
  transition: ease-in-out 0.5s;
}
.title-rec-bg:hover {
  transform: scale(1.05);
  color: #f5a045;
}

.h2-img {
  max-height: 35px;
  width: auto;
  transition: ease-in-out 0.5s;
}
.h2-img:hover {
  transform: scale(1.1) translateY(-8px);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  z-index: 9999 !important;
  transition: opacity 0.75s, visibility 0.75s;
  gap: 10px;
}
.loader img {
  height: 72px;
  width: auto;
  display: inline-block;
  animation: bounce 2s infinite ease-in-out;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.btn {
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  color: black;
  background-color: #F48C20;
  outline: #F48C20;
  border: 3.5px solid #F48C20;
  transition: ease-in-out 0.5s;
  backdrop-filter: blur(10px);
}
.btn:hover {
  background-color: #f5a045;
  outline: #f5a045;
  border: 3.5px solid #f5a045;
  backdrop-filter: blur(10px) !important;
  color: black;
}

.btn-primary {
  box-shadow: none !important;
  outline: #F48C20;
  background-color: #F48C20;
  border: 3.5px solid #F48C20;
  backdrop-filter: blur(10px) !important;
}

.btn:focus, .btn:active, .btn:focus-visible,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  color: #f5a045 !important;
  border-color: #f5a045 !important;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background-color: #1c1c1c;
  overflow-y: auto;
  height: auto;
  background-color: #1c1c1c;
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
/*Hero Section text*/
.animation-up {
  animation: fade-up 0.8s;
}

.animation-down {
  animation: fade-down 0.8s;
}

/*Scroll animation*/
.hidden-element {
  opacity: 0 !important;
  transition: all 1.5s;
  filter: blur(5px);
  contain: layout;
  will-change: transform;
}

.translate-left {
  transform: translatey(-80px);
}

.translate-right {
  transform: translatey(80px);
}

.translate-up {
  transform: translatey(80px);
}

.translate-down {
  transform: translatey(-80px);
}

.show {
  opacity: 1 !important;
  filter: none;
  transform: translateX(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}
/*Sections w/ animations*/
.fade-up {
  transition: ease-in-out;
  animation: fade-up 0.55s ease;
}

.fade-down {
  transition: ease-in-out;
  animation: fade-down 0.55s ease;
}

html {
  scrollbar-width: thin !important;
  scrollbar-color: #F48C20 #1c1c1c !important;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1c1c1c !important;
}

::-webkit-scrollbar-thumb {
  background-color: #F48C20 !important;
  border-radius: 10px;
  border: 2px solid #1c1c1c;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1c1c1c;
}

header {
  z-index: 999 !important;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1c1c1c;
}

.text-logo {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 24px;
  color: #F48C20;
  font-weight: bolder;
}

.navbar-wrapper {
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  background-color: #1c1c1c;
}

.navbar {
  z-index: 100 !important;
  align-items: center;
  vertical-align: center;
}

.nav-link.active {
  color: #F48C20 !important;
  background-color: transparent !important;
  border-bottom: 5px solid #F48C20 !important;
  border-radius: 0px;
}

@media (max-width: 991px) {
  header {
    background-color: #1c1c1c;
  }
  .nav-link.active {
    border-bottom: 3px solid #F48C20 !important;
    background-color: transparent !important;
  }
}
.nav-link {
  text-align: center;
  margin-left: 20px;
  padding-top: 0px;
  padding-bottom: 0;
}
.nav-link:hover {
  color: #f5a045 !important;
}

#brand-logo {
  max-height: 32px;
  padding-top: 0px;
  padding-bottom: 0px !important;
  margin-top: 4px;
  margin-left: 0px;
  height: auto;
  width: auto;
  transition: ease-in-out 0.5s;
}
#brand-logo:hover {
  transform: scale(1.05);
}

.cta-nav {
  margin-top: 5px;
}
.cta-nav a {
  background-color: #F48C20;
  color: white;
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 100;
  font-weight: bold;
  text-decoration: none;
  padding: 0.4rem 2rem;
  transition: linear 0.2s;
}
.cta-nav a:hover {
  background-color: #F48C20;
  color: white;
}

.nav-link-cta {
  text-align: center;
  margin-left: 20px;
  padding-bottom: 0;
}

.nav-item a {
  color: white;
  font-family: "Special Gothic Condensed One", sans-serif;
  border-bottom: 1px;
}

.nav-tabs button {
  color: white;
  text-decoration: none;
}

.tab-content {
  color: white;
}

.nav-pills {
  display: flex;
  align-items: center !important;
  align-content: center;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#brand-logo-popup {
  display: hidden;
  max-height: 50px;
  width: auto;
  align-self: center;
}

.custom-alert {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.custom-alert-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#alert-message {
  color: #000000;
}

#home {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.bg-video-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: -1;
  pointer-events: none;
}

.banner {
  display: flex;
  justify-content: space-around;
  height: 100svh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.motto {
  position: absolute;
  bottom: 30%;
  left: 11.5%;
  text-align: center;
}
.motto .name-parallax {
  text-wrap: nowrap;
}
.motto h1 {
  line-height: 0.6;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-size: 12rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: white;
  text-shadow: 6px 6px 3px rgba(0, 0, 0, 0.3);
  transition: 0.5s ease-in-out;
}
.motto .motto-p1 {
  text-align: start;
  padding-left: 3.5rem;
  line-height: 1;
  font-weight: 800;
  font-style: normal;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
}
.motto .motto-p2 {
  font-weight: 800;
  font-style: normal;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
}

#parallax {
  object-fit: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.motto-links {
  transition: ease-in-out 0.5s;
  filter: none;
}
.motto-links:hover {
  transform: scale(1.05);
}

.container-motto-text {
  display: flex;
  flex-direction: row;
}
.container-motto-text h1:first-of-type {
  margin-right: 235px;
}

.container-parallax {
  /*
  .bg-4 {
      background-image: url(../../../build/dist/img/parallax_5.webp);
      pointer-events: none;
  }
  */
  /*
  .bg-6 {
      background-image: url(../../../build/dist/img/parallax_7.webp);
      pointer-events: none;
  }
  */
}
.container-parallax .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: auto 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: 0.5s;
  overflow: visible !important;
  padding-inline: 0 !important;
  margin-inline: 0 !important;
}
.container-parallax .bg-1 {
  background-image: url(../../../build/dist/img/parallax_1.webp);
  pointer-events: none;
}
.container-parallax .bg-2 {
  background-image: url(../../../build/dist/img/parallax_2.webp);
  pointer-events: none;
}
.container-parallax .bg-3 {
  background-image: url(../../../build/dist/img/parallax_6.webp);
  pointer-events: none;
}
.container-parallax .bg-5 {
  background-image: url(../../../build/dist/img/parallax_3.webp);
  pointer-events: none;
}
.container-parallax .bg-7 {
  gap: 8px;
  position: absolute;
  left: 15%;
  top: 65%;
}
.container-parallax .bg-7 a img {
  max-height: 45px;
}
.container-parallax .bg-8 {
  position: absolute;
  left: -2.5%;
  background-image: url(../../../build/dist/img/parallax_8.webp);
  pointer-events: none;
}

@media (max-width: 1750px) {
  .name-parallax {
    font-size: 10rem !important;
  }
  .motto {
    bottom: 30%;
    left: 10.5% !important;
  }
  .bg-8 {
    max-height: 90%;
    left: -6% !important;
  }
  .container-motto-text {
    display: flex;
    flex-direction: row;
  }
  .container-motto-text h1:first-of-type {
    margin-right: 195px;
  }
}
@media (max-width: 1650px) {
  .bg-8 {
    max-height: 90%;
    left: -3% !important;
  }
  .container-motto-text {
    display: flex;
    flex-direction: row;
  }
}
@media (max-width: 1450px) {
  .name-parallax {
    font-size: 8rem !important;
  }
  .motto {
    bottom: 40%;
    left: 10.5% !important;
  }
  .motto-p1 {
    font-size: 1.8rem !important;
    text-align: start;
    padding-left: 2.3rem !important;
  }
  .motto-p2 {
    font-size: 2.5rem !important;
  }
  .bg-7 {
    left: 12% !important;
    top: 52.5% !important;
  }
  .bg-7 a img {
    max-height: 35px !important;
    filter: none;
  }
  .bg-8 {
    max-height: 98%;
    left: -1.5% !important;
  }
  .container-motto-text {
    display: flex;
    flex-direction: row;
  }
  .container-motto-text h1:first-of-type {
    margin-right: 185px;
  }
}
@media (max-width: 1280px) {
  .motto {
    bottom: 37%;
    left: 6.2% !important;
  }
  .motto-p1 {
    font-size: 1.8rem !important;
    padding-left: 2rem !important;
    text-align: start;
  }
  .motto-p2 {
    font-size: 2rem !important;
  }
  .bg-7 {
    left: 10% !important;
    top: 56.5% !important;
  }
  .bg-7 a img {
    max-height: 35px !important;
    filter: none;
  }
  .bg-8 {
    max-height: 96%;
    left: -3% !important;
  }
  .container-motto-text {
    display: flex;
    flex-direction: row;
  }
}
@media (max-width: 1180px) {
  .name-parallax {
    font-size: 6rem !important;
  }
  .motto {
    bottom: 37%;
    left: 6.2% !important;
  }
  .motto-p1 {
    font-size: 1.8rem !important;
    padding-left: 2rem !important;
    text-align: start;
  }
  .motto-p2 {
    font-size: 2rem !important;
  }
  .bg-7 {
    left: 10% !important;
    top: 56% !important;
  }
  .bg-7 a img {
    max-height: 35px !important;
    filter: none;
  }
  .bg-8 {
    max-height: 90%;
    left: -5.6% !important;
  }
  .container-motto-text {
    display: flex;
    flex-direction: row;
  }
  .container-motto-text h1:first-of-type {
    margin-right: 225px;
  }
}
@media (max-width: 1080px) {
  .bg-8 {
    max-height: 93%;
    left: -3% !important;
  }
}
@media (max-width: 930px) {
  .name-parallax {
    font-size: 6rem !important;
  }
  .motto {
    bottom: 42%;
    margin: 0 auto !important;
    padding-inline: 0 !important;
    left: 4.5% !important;
  }
  .motto-p1 {
    font-size: 1.8rem !important;
    padding-left: 1.8rem !important;
    text-align: start;
  }
  .bg-7 {
    left: 8% !important;
    top: 52% !important;
  }
  .bg-8 {
    max-height: 86%;
    left: -2% !important;
  }
  .container-motto-text {
    display: flex;
    flex-direction: row;
  }
  .container-motto-text h1:first-of-type {
    margin-right: 155px;
  }
}
@media (max-width: 850px) {
  .motto {
    bottom: 40%;
    margin: 0 auto !important;
    padding-inline: 0 !important;
    left: 13% !important;
  }
  .motto-p1 {
    font-size: 1.2rem !important;
    padding-left: 1.2rem !important;
    text-align: center !important;
  }
  .motto-p2 {
    font-size: 1.2rem !important;
    padding-top: 1.8rem;
  }
  .bg-7 {
    left: 15%;
    top: 53% !important;
  }
  .bg-7 a img {
    display: none;
  }
  .bg-8 {
    max-height: 75%;
    left: 3% !important;
  }
  #name-container {
    padding-bottom: 2.3rem;
  }
  .container-motto-text {
    display: flex;
    flex-direction: column;
  }
  .container-motto-text h1 {
    font-size: 8rem !important;
  }
  .container-motto-text h1:first-of-type {
    padding-bottom: 2.8rem;
    margin-right: 145px;
  }
  .container-motto-text h1:nth-of-type(2) {
    line-height: 1.2rem;
  }
}
@media (max-width: 610px) {
  .name-parallax {
    font-size: 3rem !important;
  }
  .motto {
    bottom: 40%;
    left: 15.5% !important;
  }
  .motto-p1 {
    font-size: 1.2rem !important;
    padding-left: 1.2rem !important;
  }
  .motto-p2 {
    font-size: 1.2rem !important;
  }
  .bg-7 {
    left: 15%;
    top: 56% !important;
  }
  .bg-8 {
    max-height: 73%;
  }
  .container-motto-text {
    display: flex;
    flex-direction: column;
  }
  .container-motto-text h1 {
    font-size: 6rem !important;
  }
  .container-motto-text h1:first-of-type {
    padding-bottom: 2.8rem;
    margin-right: 0;
  }
  .container-motto-text h1:nth-of-type(2) {
    line-height: 1.2rem;
  }
}
@media (max-width: 520px) {
  .name-parallax {
    font-size: 2rem !important;
  }
  .motto {
    bottom: 40%;
    left: 11.5% !important;
  }
  .bg-8 {
    max-height: 71%;
  }
}
@media (max-width: 480px) {
  .motto {
    bottom: 43.5%;
    left: 7% !important;
    margin: 0 auto !important;
  }
  .motto-p1 {
    font-size: 1.25rem !important;
  }
  .motto-p2 {
    font-size: 1.25rem !important;
  }
  .bg-8 {
    max-height: 78.5%;
    transform: translateX(-3%) !important;
  }
}
@media (max-width: 410px) {
  .motto {
    bottom: 43.5%;
    left: 3.5% !important;
    margin: 0 auto !important;
  }
  .name-parallax {
    font-size: 0.7rem !important;
  }
  .motto-p1 {
    font-size: 0.9rem !important;
    padding-left: 0.8rem !important;
    line-height: 0px;
    margin-bottom: 8px;
  }
  .motto-p2 {
    font-size: 1rem !important;
    line-height: 10px;
  }
  .bg-8 {
    max-height: 78.5%;
    left: 8% !important;
    transform: translateX(-8%) !important;
  }
}
@media (max-width: 380px) {
  .name-parallax {
    font-size: 0.95rem !important;
  }
  .motto {
    left: 13% !important;
    bottom: 49.2%;
  }
  .motto-p1 {
    font-size: 0.9rem !important;
    padding-left: 0.8rem !important;
    line-height: 12px;
    margin-bottom: 4px;
  }
  .motto-p2 {
    font-size: 0.65rem !important;
    line-height: 0px;
    padding-top: 16px;
    margin: 0;
  }
  .bg-8 {
    overflow-x: visible !important;
    transform: translateX(-12%) !important;
    display: block;
    max-height: 78.5%;
    left: 12% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .container-motto-text {
    display: flex;
    flex-direction: column;
  }
  .container-motto-text h1 {
    font-size: 4.2rem !important;
  }
  .container-motto-text h1:first-of-type {
    padding-bottom: 0.8rem;
    margin-right: 0;
  }
  .container-motto-text h1:nth-of-type(2) {
    line-height: 1.9rem;
  }
}
#services {
  position: relative;
  width: 100%;
}

#portfolio {
  position: relative;
  width: 100%;
}

.cards-wrapper {
  width: 100%;
}

.container-cards {
  height: auto;
  flex-wrap: nowrap;
  min-width: 600px;
}

.card-portfolio {
  filter: grayscale(100%);
  display: flex;
  align-items: flex-end;
  width: 100px;
  border-radius: 0.75rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 10px;
  transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}
.card-portfolio .card-row {
  color: white;
  display: flex;
  flex-wrap: nowrap;
}
.card-portfolio .card-row .portfolio-icon {
  color: #F48C20;
  font-weight: bold;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
}
.card-portfolio .card-row .portfolio-card-description {
  display: flex;
  text-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  height: 120px;
  width: 280px;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0.3s;
  transition: all 0.3s ease;
  text-decoration: none;
}
.card-portfolio .card-row .portfolio-card-description p {
  color: #b0b0ba;
  padding-top: 5px;
  text-wrap: wrap;
}
.card-portfolio .card-row .portfolio-card-description h4 {
  text-transform: uppercase;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
.card-portfolio .card-row .portfolio-card-description:hover h4 {
  text-decoration: underline;
  color: #F48C20;
}
.card-portfolio:hover {
  filter: none;
}
.card-portfolio:hover .portfolio-card-description h4 {
  color: #F48C20 !important;
  text-decoration: underline !important;
}

#input-c1, #input-c2,
#input-c3, #input-c4,
#input-c5 {
  display: none;
}
#input-c1:checked + label, #input-c2:checked + label,
#input-c3:checked + label, #input-c4:checked + label,
#input-c5:checked + label {
  width: 900px;
  filter: none;
}
#input-c1:checked + label .portfolio-card-description, #input-c2:checked + label .portfolio-card-description,
#input-c3:checked + label .portfolio-card-description, #input-c4:checked + label .portfolio-card-description,
#input-c5:checked + label .portfolio-card-description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.card-portfolio[for=input-c1] {
  background-image: url(../../../build/dist/img/project_1.webp);
  background-position: center center;
}

.card-portfolio[for=input-c2] {
  background-image: url(../../../build/dist/img/project_2.webp);
  background-position: center center;
}

.card-portfolio[for=input-c3] {
  background-image: url(../../../build/dist/img/project_3.webp);
  background-position: center center;
}

.card-portfolio[for=input-c4] {
  background-image: url(../../../build/dist/img/project_4.webp);
  background-position: center center;
}

.card-portfolio[for=input-c5] {
  background-image: url(../../../build/dist/img/project_5.webp);
  background-position: center center;
}

.stacks-links {
  transition: ease-in-out 0.5s;
  filter: grayscale(100%);
}
.stacks-links:hover {
  transform: scale(1.05);
  filter: none;
}
.stacks-links img {
  max-height: 35px;
}

.wrapper-icons-portfolio {
  max-width: 800px;
  border: 3px solid grey;
  padding: 0.8rem;
  border-radius: 15px;
}

.github-link-portfolio {
  text-decoration: none;
  transition: color 0.5s;
}
.github-link-portfolio:hover {
  color: #F48C20;
  text-decoration: underline;
}

.wrapper-dynamic-content {
  border-radius: 15px;
  min-height: 250px;
}

@media (max-width: 766px) {
  .cards-wrapper {
    margin-top: 20px;
  }
  .container-cards {
    flex-direction: column;
    margin: 0 auto;
    min-width: 500px;
  }
  .card-portfolio {
    margin: 0 auto;
    width: 500px;
  }
  .card-portfolio .card-row {
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
  }
  #input-c1, #input-c2,
  #input-c3, #input-c4,
  #input-c5 {
    width: 100%;
    align-items: flex-start;
    height: 80px;
  }
  #input-c1:checked + label, #input-c2:checked + label,
  #input-c3:checked + label, #input-c4:checked + label,
  #input-c5:checked + label {
    height: 500px;
    width: 500px;
  }
  .portfolio-icon-1, .portfolio-icon-2,
  .portfolio-icon-3, .portfolio-icon-4,
  .portfolio-icon-5 {
    width: 50px;
  }
  .portfolio-card-description {
    height: 300px;
    min-width: 360px;
  }
}
@media (max-width: 540px) {
  .portfolio-card-description p {
    height: 120px;
    width: 310px !important;
  }
  .card-portfolio {
    width: 380px;
  }
  .container-cards {
    min-width: 380px;
  }
  #input-c1, #input-c2,
  #input-c3, #input-c4,
  #input-c5 {
    height: 80px;
  }
  #input-c1:checked + label, #input-c2:checked + label,
  #input-c3:checked + label, #input-c4:checked + label,
  #input-c5:checked + label {
    height: 400px;
    width: 380px;
  }
}
@media (max-width: 420px) {
  .portfolio-card-description p {
    height: 120px;
    width: 270px !important;
  }
  .card-portfolio {
    width: 320px;
  }
  .container-cards {
    min-width: 320px;
  }
  #input-c1, #input-c2,
  #input-c3, #input-c4,
  #input-c5 {
    height: 80px;
  }
  #input-c1:checked + label, #input-c2:checked + label,
  #input-c3:checked + label, #input-c4:checked + label,
  #input-c5:checked + label {
    height: 400px;
    width: 320px;
  }
}
#contact {
  position: relative;
  color: white;
  background-color: #1c1c1c;
}
#contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

#brand-logo-3 {
  height: auto;
  width: auto;
  max-height: 200px;
  max-width: 50%;
  align-self: center;
  transition: 0.5s ease-in-out;
}

#brand-logo-3:hover {
  transform: scale(1.05);
}

/*FORM*/
.form {
  max-width: 450px;
  width: 100%;
  transition: 0.5s;
}

.input-search {
  outline: none;
}

.input-group {
  position: relative;
}
.input-group .input-group-text {
  z-index: 99;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.input-group .form-control {
  padding-left: 3rem;
}

.msg-control {
  padding-left: 1rem;
}

.svg-icon {
  color: #9c9ccf;
}

/* Input */
input:focus, textarea:focus {
  outline: 2px solid #F48C20;
  box-shadow: 0 0 5px #F48C20;
}

input, textarea {
  outline: 2px solid #ebebeb;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}

input:not(:placeholder-shown):valid {
  outline-color: #26e026;
}

input:not(:placeholder-shown):invalid {
  outline-color: #ffa318;
}

input:focus:valid {
  outline-color: #26e026;
}

input:focus:invalid {
  outline-color: #fd3318;
}

select option[value=""][disabled] {
  color: #aaa !important;
}

#send-form-btn {
  width: 100%;
}

#contact input:focus,
#contact textarea:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 129, 44, 0.7);
  border-color: #F48C20;
  outline: none;
}

#inicio {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
}
#inicio::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../../../../../build/dist/img/hero_overlay.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
  pointer-events: none;
}

.logo-hero-hidden {
  max-height: 150px;
  transition: ease-in-out 0.5s;
  margin: auto;
}
.logo-hero-hidden:hover {
  transform: scale(1.05);
}

.container-cta-left {
  position: relative;
  width: 50%;
  margin: 15% auto;
}
.container-cta-left .container-cta-plans {
  margin: 0;
  padding: 0;
  max-height: 600px;
  vertical-align: center;
}
.container-cta-left .container-cta-plans a {
  margin-left: 0;
}
.container-cta-left h1 {
  text-transform: uppercase;
}
.container-cta-left h1 span {
  color: #F48C20;
}

.container-cards {
  position: relative;
  width: 50%;
  min-height: 550px;
  margin-top: 6rem;
}

.card-hero {
  position: absolute;
  width: 230px;
  height: 300px;
  perspective: 1000px;
  cursor: pointer;
  border-radius: 25px;
}
.card-hero .card-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s;
  border-radius: inherit;
  position: relative;
}
.card-hero:hover .card-inner {
  transform: rotateY(180deg);
}
.card-hero .card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
}
.card-hero .card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
}
.card-hero .card-face video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
  display: block;
}
.card-hero .card-face.card-front {
  background: #363636;
}
.card-hero .card-face.card-back {
  background: #F48C20;
  color: white;
  transform: rotateY(180deg);
}

.card-1 {
  left: 55px;
  top: 125px;
  z-index: 1;
  transform: rotate(-20deg);
}

.card-2 {
  left: 165px;
  top: 0;
  z-index: 3;
}

.card-3 {
  left: 265px;
  top: 215px;
  z-index: 2;
  transform: rotate(20deg);
}

.avatars {
  display: grid;
  grid-template-columns: repeat(4, 22px);
  transition: all 0.5s;
  transition-delay: 0.5s;
}
.avatars:hover {
  grid-template-columns: repeat(4, 66px);
  transition-delay: 0s;
}

.avatar {
  width: 44px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0.25rem 0.25rem 0.5rem hsla(0, 0%, 0%, 0.2);
  transition: all 0.5s;
}

.profile:hover {
  z-index: 10;
}
.profile:hover .avatar {
  scale: 2;
  cursor: pointer;
  border: 3px solid #F48C20;
}

.profile:hover + .profile > .avatar,
.profile:has(+ .profile:hover) .avatar {
  scale: 1.5;
  z-index: 1;
}

.profile::after {
  content: attr(data-text);
  position: relative;
  top: 0px;
  left: 0px;
  background-color: #F48C20;
  color: black;
  padding: 3px 8px;
  z-index: -10;
  opacity: 0;
  transition: top 0.5s, opacity 0.5s;
}

.profile:hover::after {
  opacity: 1;
  top: 26px;
}

@media (max-width: 768px) {
  .container-cta-left {
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
  }
  .card-hero {
    width: 180px;
    height: 235px;
  }
  .container-cards {
    width: 100%;
    position: relative;
    left: 58%;
    transform: translateX(-55%);
    margin-top: 0px;
    min-height: 350px;
  }
  .card-1 {
    left: 42px;
    top: 70px;
  }
  .card-2 {
    left: 150px;
  }
  .card-3 {
    left: 265px;
    top: 70px;
  }
}
@media (max-width: 535px) {
  .container-cards {
    min-height: 350px;
  }
  .card-1 {
    left: -10px;
    top: 70px;
  }
  .card-2 {
    left: 100px;
  }
  .card-3 {
    left: 215px;
    top: 70px;
  }
}
#sobre {
  max-width: 100%;
  min-height: 550px;
  background-color: #2c2c2c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
#sobre .container-sobre-wrapper {
  max-width: 1080px;
}
#sobre .container-sobre-wrapper .container-sobre {
  max-width: 100%;
}

.card-article {
  position: relative;
  overflow: hidden;
}
.card-article:hover .card-article-data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity 0.3s;
}
.card-article:hover {
  animation: remove-overflow 2s forwards;
}
.card-article:not(:hover) {
  animation: show-overflow 2s forwards;
}
.card-article:not(:hover) .card-article-data {
  animation: remove-data 1s forwards;
}
.card-article .card-article-img {
  max-width: 328px;
  border-radius: 1.5rem;
}
.card-article .card-article-data {
  width: 280px;
  background-color: #242424;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  border-radius: 1rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
}
.card-article .card-article-data .card-article-title {
  margin-bottom: 0.75rem;
}
.card-article .card-article-data .card-article-description {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* Animations */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}
@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}
@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(0.5rem);
  }
}
@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}
@media (max-width: 340px) {
  .card-article-data {
    width: 50px;
    padding: 1rem;
  }
}
@media (min-width: 341px) and (max-width: 768px) {
  .card-article-data {
    width: 316px;
    padding-inline: 2.5rem;
  }
  .card-article-img {
    width: 348px;
  }
}
@media (min-width: 769px) {
  .card-article-data {
    width: 50px;
    padding: 1rem;
  }
}
#planos {
  width: 100%;
  background-color: #1c1c1c;
}
#planos .container-plans-wrapper {
  max-width: 1080px;
}
#planos .container-plans-wrapper .container-plans {
  max-width: 100%;
}

.container-price-table {
  transition: ease-in-out;
  border: 4px solid #d0d0d0;
}
.container-price-table:hover {
  border: 4px solid #F48C20;
}

.container-price-table {
  width: 280px;
  text-align: center;
  background-color: #d0d0d0;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-radius: 2rem;
  color: #000000 !important;
}
.container-price-table .container-price-button {
  margin-top: 1.2rem;
}
.container-price-table .container-price-button a {
  width: 100%;
}
.container-price-table .plans-features {
  min-height: 180px;
}
.container-price-table .plans-features div {
  padding-top: 5px;
  border-bottom: 1px solid #d0d0d0;
}
.container-price-table .plans-features .greyed {
  color: #919191;
}
.container-price-table .plans-title {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #464646;
}
.container-price-table .plans-price {
  margin-bottom: 20px;
  display: block;
}
.container-price-table .plans-price strong {
  font-size: 2.05rem;
  margin-bottom: -5px;
}
.container-price-table .plans-price span {
  color: #000000;
}

#faq {
  max-width: 100%;
  background-color: #2c2c2c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
#faq .container-faq-wrapper {
  max-width: 1080px;
}
#faq .container-faq-wrapper .container-faq {
  max-width: 100%;
}

.accordion-item {
  border: transparent;
  margin-bottom: 10px;
  background-color: #d0d0d0;
}

.accordion-button {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #d0d0d0;
  color: black;
}

.accordion-button:not(.collapsed) {
  background-color: #F48C20;
  color: black;
}

.accordion-body {
  background-color: #1c1c1c;
  color: white;
}

/*Accordion button to collapse*/
.accordion-button::after {
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

#contato {
  max-width: 100%;
  background-color: #1c1c1c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
#contato .container-contato-wrapper {
  max-width: 1080px;
}
#contato .container-contato-wrapper .container-contato {
  max-width: 100%;
}

#info {
  background-color: #242424;
  border-bottom: 3px solid !important;
  border-color: #F48C20 !important;
  color: #ffffff;
}

.follow-us-footer {
  color: #F48C20;
}

#info-container {
  background-color: #242424;
  color: #ffffff;
  border-color: #242424;
}

#footer-foot-note {
  background-color: #242424;
  padding-bottom: 1rem;
}

.footer-menu1,
.footer-menu1 p,
.footer-menu1 a,
#footer-foot-note span {
  color: #ffffff !important;
}

#footer-info {
  text-align: center;
}
#footer-info p {
  color: white;
}
#footer-info span {
  color: #ffffff;
}
#footer-info .store-brands img {
  height: auto;
  max-width: 60px;
  max-height: 80px;
  object-fit: contain;
  transition: ease-in-out 0.5s;
}
#footer-info .store-brands img:hover {
  transform: scale(1.05);
}

#footer-logo {
  max-height: 80px;
  transition: 0.5s ease-in-out;
}

#footer-logo:hover {
  transform: scale(1.05);
}

.text-reset {
  transition: ease-in-out 0.2s;
}
.text-reset:hover {
  color: #F48C20 !important;
}

#footer-social-links a {
  text-decoration: none;
  margin-right: 5px;
  transition: ease-in-out 0.2s;
}
#footer-social-links a svg {
  color: #F48C20;
  margin-left: 10px !important;
}
#footer-social-links a svg:hover {
  color: #f5a045;
}

.contact-footer {
  vertical-align: center !important;
  align-items: center;
  align-content: center;
  color: #ffffff;
}

#footer-foot-note {
  color: #ffffff;
  display: flex;
  font-weight: bold;
  justify-content: space-around;
}

#footer-developed-by {
  font-weight: bold;
}

#footer-developed-by a {
  color: #fbfbfb;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}

#footer-developed-by a:hover {
  color: #F48C20;
  text-decoration: underline;
}

body, html, h1, h2, h3, h4, h5, h6, p, span, a, li, ul {
  color: white;
}

/*# sourceMappingURL=style.css.map */
