/* helpers */
.wrapper {
  width: 80vw;
  max-width: 1920px;
  margin: auto;
}
@media (min-width: 2560px) {
  .wrapper {
    width: 60vw;
  }
}

.load-error {
  position: absolute;
  color: #F2003c;
  padding: 1rem;
  text-align: center;
}

.logo {
  width: -moz-fit-content;
  width: fit-content;
  filter: brightness(2);
}

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

/* ::-webkit-scrollbar
 *  display: none */
html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

body {
  width: 100%;
  overflow-x: hidden;
  transition: background-color 0.8s ease, color 0.5s ease;
}

a {
  text-decoration: none;
  color: rgb(167, 71, 71);
}
a:not(.link-arrow, .leftArrow) {
  transition: letter-spacing 0.3s ease, text-shadow 0.3s ease;
}
a:not(.link-arrow, .leftArrow):hover {
  letter-spacing: 1px;
  text-shadow: 0px 0px 14px #F09367;
}

ol, ul, li {
  list-style: none;
}

section:not(#hero, #projects, #temp, #closing) {
  padding: 151px 0;
}

#bigTitle {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.15;
  text-shadow: none;
  font-weight: 700;
}

.hero-accent {
  color: #CE5A43;
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(240, 147, 103, 0.3);
  border-radius: 3px;
  z-index: -1;
}

/* Eyebrow text above title */
.hero-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #CE5A43;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Divider line under title */
.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #F09367, #CE5A43);
  margin: 20px auto 24px;
  border-radius: 2px;
}

/* Text card */
.hero-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-card p {
  text-align: center;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

/* Tags under card */
.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a8a7a;
  font-weight: 500;
}
.hero-tags__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #CE5A43;
  display: inline-block;
}

/* Decorative blurred blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.hero-blob--1 {
  width: 340px;
  height: 340px;
  background: rgba(240, 147, 103, 0.35);
  top: 10%;
  right: 8%;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-blob--2 {
  width: 260px;
  height: 260px;
  background: rgba(206, 90, 67, 0.2);
  bottom: 15%;
  left: 5%;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}
.hero-blob--3 {
  width: 180px;
  height: 180px;
  background: rgba(240, 165, 153, 0.25);
  top: 55%;
  right: 25%;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.08); }
}

/* New scroll button */
#projects-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-decoration: none;
}
.scroll-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #CE5A43;
  font-weight: 600;
}
.scroll-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #CE5A43;
  transition: all 0.35s ease;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-circle img {
  width: 18px;
  height: 18px;
  filter: brightness(0);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@media (hover: hover) and (pointer: fine) {
  #projects-shortcut:hover .scroll-circle {
    background: linear-gradient(135deg, #F09367, #CE5A43);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(206, 90, 67, 0.3);
  }
  #projects-shortcut:hover .scroll-circle img {
    filter: brightness(0) invert(1);
  }
}

#projectTitle {
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  position: absolute;
  text-shadow: 0px 1px 24px black;
  color: white;
  z-index: 1;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 26px;
}

p {
  font-style: normal;
  line-height: 1.6;
  font-size: 1rem;
}

label, .outlined-btn {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.text-field {
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

.outlined-btn {
  padding: 8px 24px;
  border: 1.5px solid #000;
  border-radius: 0;
  background-color: transparent;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.outlined-btn:hover {
  background-color: #F09367;
  color: #fff;
  border-color: #F09367;
}

.validation-error-label {
  font-family: "Share Tech", sans-serif;
  font-size: 1rem;
  color: #F2003c !important;
  letter-spacing: 0.4px;
  font-weight: 300;
}

body[data-theme=light] {
  background-color: #fffbf5;
  color: #000;
}
body[data-theme=light] a {
  color: #CE5A43;
  transition: color 0.3s ease;
}
body[data-theme=light] a:hover {
  color: #AB482D;
}
body[data-theme=light] #nav-link {
  background-color: rgba(240, 147, 103, 0.15);
}
body[data-theme=light] #nav-link:hover {
  background-color: rgba(206, 90, 67, 0.2);
}
body[data-theme=light] .logo {
  filter: drop-shadow(0px 0px 3px rgba(171, 72, 45, 0.4));
}
body[data-theme=light] #burgerM span {
  background-color: #000;
}
body[data-theme=light] #social a {
  background: rgba(206, 90, 67, 0.15);
  border-color: rgba(206, 90, 67, 0.3);
}
body[data-theme=light] #social a:hover {
  background: rgba(206, 90, 67, 0.3);
  border-color: rgba(206, 90, 67, 0.5);
}
body[data-theme=light] #hero-line {
  background: linear-gradient(to right, #CE5A43, #F09367);
}
body[data-theme=light] #skills-list {
  background-color: #E7E7E7;
  border: 2px solid #CE5A43;
  box-shadow: inset 0px 0px 5px rgba(206, 90, 67, 0.2);
}
body[data-theme=light] #skills-list::after {
  background: linear-gradient(to right, rgba(240, 147, 103, 0) 90%, #e7e7e7 100%),linear-gradient(to left, rgba(240, 147, 103, 0) 90%, #e7e7e7 100%);
}
body[data-theme=light] #skills-list::after .iconGroup .icon {
  fill: #CE5A43;
  transition: fill 0.3s ease;
}
body[data-theme=light] #skills-list::after .iconGroup .icon:hover {
  fill: #AB482D;
}
body[data-theme=light] .description h3, body[data-theme=light] .description p {
  color: #000;
}
body[data-theme=light] .description::before {
  background-color: rgba(240, 147, 103, 0.08);
  border-left: 4px solid #CE5A43;
}
body[data-theme=light] .text-field {
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
body[data-theme=light] .text-field:focus {
  border-color: #CE5A43;
  box-shadow: 0 0 0 3px rgba(206, 90, 67, 0.1);
}
body[data-theme=light] .square-all {
  background: linear-gradient(135deg, #CE5A43, #F09367);
  transition: transform 0.3s ease;
}
body[data-theme=light] .square-all:hover {
  transform: scale(1.05);
}
body[data-theme=light] footer {
  border-top: 2px solid #CE5A43;
  box-shadow: 0rem 1rem 5rem rgba(171, 72, 45, 0.2);
}
body[data-theme=light] footer a {
  color: #CE5A43;
}
body[data-theme=light] footer a:hover {
  color: #AB482D;
}
body[data-theme=light] .closeIcon {
  border-radius: 13px;
  background: rgba(240, 147, 103, 0.1);
  border: 2px solid #CE5A43;
}
body[data-theme=light] .special {
  filter: invert(1);
}

body[data-theme=dark] {
  background-color: #E6DAC6;
  color: #000;
}
body[data-theme=dark] a {
  color: #F09367;
  transition: color 0.3s ease;
}
body[data-theme=dark] #nav-link {
  background-color: rgba(240, 147, 103, 0.1);
}
body[data-theme=dark] #nav-link:hover {
  background-color: rgba(240, 147, 103, 0.2);
}
body[data-theme=dark] .logo {
  filter: drop-shadow(0px 0px 8px rgba(240, 147, 103, 0.3));
}
body[data-theme=dark] #burgerM span {
  background-color: #000;
}
body[data-theme=dark] #social a {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}
body[data-theme=dark] #social a:hover {
  background: rgba(240, 147, 103, 0.35);
  border-color: rgba(240, 147, 103, 0.5);
}
body[data-theme=dark] #hero-line {
  background: linear-gradient(to right, #F09367, #F0A599);
}
body[data-theme=dark] #skills-list {
  background-color: #E7E7E7;
  border: 2px solid #F09367;
  box-shadow: inset 0px 0px 5px rgba(240, 147, 103, 0.2);
}
body[data-theme=dark] #skills-list::after {
  background: linear-gradient(to right, rgba(240, 147, 103, 0) 90%, #e7e7e7 100%),linear-gradient(to left, rgba(240, 147, 103, 0) 90%, #e7e7e7 100%);
}
body[data-theme=dark] #skills-list::after .iconGroup .icon {
  fill: #F09367;
  transition: fill 0.3s ease;
}
body[data-theme=dark] #skills-list::after .iconGroup .icon:hover {
  fill: #CE5A43;
}
body[data-theme=dark] .description h3, body[data-theme=dark] .description p {
  color: #000;
}
body[data-theme=dark] .description::before {
  background-color: rgba(240, 147, 103, 0.08);
  border-left: 4px solid #F09367;
}
body[data-theme=dark] .text-field {
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
body[data-theme=dark] .text-field:focus {
  border-color: #F09367;
  box-shadow: 0 0 0 3px rgba(240, 147, 103, 0.1);
}
body[data-theme=dark] .square-all {
  background: linear-gradient(135deg, #F09367, #F0A599);
  transition: transform 0.3s ease;
}
body[data-theme=dark] .square-all:hover {
  transform: scale(1.05);
}
body[data-theme=dark] footer {
  border-top: 2px solid #F09367;
  box-shadow: 0rem 1rem 5rem rgba(240, 147, 103, 0.2);
}
body[data-theme=dark] footer a {
  color: #F09367;
}
body[data-theme=dark] footer a:hover {
  color: #CE5A43;
}
body[data-theme=dark] .closeIcon {
  border-radius: 13px;
  background: rgba(240, 147, 103, 0.15);
  border: 2px solid #F09367;
}
body[data-theme=dark] .special {
  filter: invert(0);
}

#burgerM {
  width: 43px;
  height: 27px;
  position: fixed;
  cursor: pointer;
  z-index: 10;
  right: 20px;
  top: 20px;
}
#burgerM span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
#burgerM span:nth-child(1) {
  top: 0;
}
#burgerM span:nth-child(2) {
  top: 11px;
}
#burgerM span:nth-child(3) {
  top: 23px;
}
#burgerM.open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
#burgerM.open span:nth-child(2) {
  opacity: 0;
}
#burgerM.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

#nav-link {
  width: 100%;
  position: fixed;
  z-index: 3;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(45deg, rgb(16, 16, 16), rgb(219, 219, 219), rgb(16, 16, 16)) 1;
     border-image: linear-gradient(45deg, rgb(16, 16, 16), rgb(219, 219, 219), rgb(16, 16, 16)) 1;
  border-image-slice: 1;
  opacity: 0;
  padding: 0rem 10vw;
  visibility: hidden;
  backdrop-filter: blur(10px);
}
#nav-link div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  #nav-link div {
    flex-direction: row;
  }
}
#nav-link .logo {
  transform: scale(0.2);
  transform-origin: center;
  transition: transform 0.5s ease;
}
#nav-link ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  #nav-link ul {
    flex-direction: row;
  }
}
#nav-link ul li:nth-child(3) > a:nth-child(1) {
  padding-right: 0;
}
#nav-link ul a {
  padding: 0;
}
@media (min-width: 768px) {
  #nav-link ul a {
    padding: 25px;
  }
}
#nav-link.isClicked {
  opacity: 1;
  padding: 3rem 10vw;
  visibility: visible;
}
@media (min-width: 768px) {
  #nav-link.isClicked {
    padding: 1.2rem 10vw;
  }
}
#nav-link.isClicked .logo {
  transform: scale(1);
}

#loaderPage {
  width: 100%;
  height: 100vh;
  background: #E6DAC6;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
#loaderPage .loader {
  display: block;
  width: 55px;
  height: 55px;
  aspect-ratio: 1;
  background: conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0);
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  animation: l11 1.5s infinite;
}

@keyframes l11 {
  0% {
    background-size: 35px 15px, 15px 15px, 15px 35px, 35px 35px;
  }
  25% {
    background-size: 35px 35px, 15px 35px, 15px 15px, 35px 15px;
  }
  50% {
    background-size: 15px 35px, 35px 35px, 35px 15px, 15px 15px;
  }
  75% {
    background-size: 15px 15px, 35px 15px, 35px 35px, 15px 35px;
  }
  100% {
    background-size: 35px 15px, 15px 15px, 15px 35px, 35px 35px;
  }
}
/*------ HERO SECTION ------- */
#hero {
  height: 100svh;
  width: 100%;
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  position: fixed;
}
@media (min-width: 1024px) {
  #hero {
    height: 100vh;
  }
}
#hero #hero-background {
  height: 100svh;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  opacity: 0.5;
  right: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  #hero #hero-background {
    height: 100vh;
  }
}

/* Ensure hero background has no overlay or tint */
#hero #hero-background {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  background-blend-mode: normal !important;
}

#hero p {
  text-align: center;
  padding: 0;
}
#hero .hero-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
#hero .Tcontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -40px;
}

#hero #social {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 10;
}
#hero #social #hero-line {
  display: none;
}
#hero #social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
#hero #social a:hover {
  background: rgba(240, 147, 103, 0.35);
  border-color: rgba(240, 147, 103, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240, 147, 103, 0.25);
}
#hero #social a > img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
#hero #social a:hover > img {
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(240,147,103,0.6));
}

/* Old projects-shortcut styles removed — replaced by new scroll button above */

.downArrow {
  width: 31px;
  margin-top: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* #navigation
 *  display: flex
 *  flex-direction: column
 *  justify-content: space-between
 *  align-items: center
 *  position: fixed
 *  right: 10px
 *  height: 55vh
 *  z-index: 100
 *
 *  #arrows
 *      display: none
 *      flex-direction: column 
 *      */
#sections-container {
  position: relative;
  top: 100vh;
  z-index: 2;
  background-color: inherit;
}

/*------ SKILLS SECTION ------- */
#skills {
  overflow: clip;
}

.skills-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#skills-text {
  margin-bottom: 68px;
}
#skills-text p {
  text-wrap: balance;
  max-width: 600px;
}

#skills-list {
  width: 102vw;
  min-height: 200px;
  display: flex;
  align-self: center;
  align-items: center;
  margin-bottom: 166px;
  position: relative;
}
#skills-list::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#skills-list .iconGroup {
  display: flex;
  gap: 7vw;
  padding-right: 3rem;
  will-change: transform;
  animation: scrolling 20s linear infinite;
}
#skills-list .iconGroup .icon {
  height: 3em;
  width: 3em;
  mix-blend-mode: normal !important;
  object-fit: contain;
  transition: transform 0.2s ease, filter 0.2s ease, color 0.2s ease;
}

/* Theme-specific colors for SVG and colorable icons */
body[data-theme=dark] #skills-list .iconGroup .icon {
  color: #F09367;
}
body[data-theme=light] #skills-list .iconGroup .icon {
  color: #CE5A43;
}

/* Raster icons keep their original colors */
#skills-list .iconGroup img.icon {
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1;
}

/* SVGs use the theme color */
#skills-list .iconGroup svg.icon,
#skills-list .iconGroup svg.icon [fill],
#skills-list .iconGroup svg.icon [stroke] {
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Hover effect to emphasize icons */
#skills-list .iconGroup .icon:hover {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 6px 18px rgba(240, 147, 103, 0.25));
}

/*         .icon-html
 *          fill: #d15502
 *      .icon-css3
 *          fill: #025cd1
 *      .icon-sass
 *          fill: #F03D70
 *      .icon-tailwind
 *          fill: #44A8B3
 *      .icon-bootstrap
 *          fill: #7E57C2
 *      .icon-js
 *          fill: #ffd000
 *      .icon-ts
 *          fill: #0288D1
 *      .icon-react
 *          fill: #26A2C1 */
/*------ PROJECTS SECTION ------- */
#container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 77% 45%;
     object-position: 77% 45%;
}
@media (min-width: 1024px) {
  #container {
    flex-direction: row;
  }
}
#container .project {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: auto;
  transition: none;
}
#container .project .description {
  position: absolute;
  text-align: center;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: none;
}
#container .project .description::before {
  content: "";
  width: 116%;
  height: 116%;
  inset: -8%;
  position: absolute;
  z-index: -1;
  border-radius: 3px;
}
@media (min-width: 1024px) {
  #container .project .description {
    opacity: 0;
    transform: translateX(100%) scale(1);
    transition: 0.5s ease-in-out;
  }
}
@media (min-width: 1024px) {
  #container .project {
    width: 25vw;
    height: 100vh;
    transition: width 0.5s ease;
    cursor: pointer;
  }
  #container .project:hover {
    width: 40%;
  }
  #container .project:hover .description {
    opacity: 1;
    transform: translateX(0) scale(1.2);
  }
}

/* Project section: force title and description text to white for better contrast (only inside #projects) */
#projects .description h3,
#projects .description p,
#projects .project .description h3,
#projects .project .description p {
  color: #ffffff !important;
}

/*------ CONTACT SECTION ------- */
.contact-wrapper {
  gap: 50px;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .contact-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

#contact-text {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#contact-text p:nth-child(3) {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  #contact-text {
    max-width: 500px;
  }
}

.half-div {
  width: 100%;
}
@media (min-width: 1440px) {
  .half-div {
    width: 50%;
  }
}
.half-div p {
  margin-bottom: 46px;
}

textarea {
  resize: vertical;
  max-width: 100%;
  min-height: 150px;
}

label {
  display: block;
  margin-bottom: 8px;
}

.text-field {
  width: 100%;
  padding: 8px;
  border-style: none none solid;
  border-width: 2px;
  border-color: #a1a1a1;
  border-radius: 0;
  background-color: transparent;
  outline: none;
}

.outlined-btn {
  padding: 8px 24px;
  border: 1.5px solid #000;
  border-radius: 0;
  background-color: transparent;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.outlined-btn:hover {
  background-color: #F09367;
  color: #fff;
  border-color: #F09367;
}

.control-wrapper {
  margin-bottom: 48px;
}

.is-valid {
  border-color: #57d6c5;
}
.is-valid:focus {
  border-color: #aafff4;
}

.is-invalid {
  border-color: #F2003c;
}
.is-invalid:focus {
  border-color: #ff5c84;
}

.g-recaptcha {
  margin-bottom: 48px;
}

/*------ FOOTER ------- */
footer {
  width: 100%;
  padding: 3rem 10vw;
  box-shadow: 0rem 1rem 5rem #EFEFEF;
}
@media (min-width: 768px) {
  footer {
    padding: 1.2rem 10vw;
  }
}
footer div {
  max-width: 1920px;
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  footer div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
footer div ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  footer div ul {
    flex-direction: row;
  }
}
footer div ul li:nth-child(3) > a:nth-child(1) {
  padding-right: 0;
}
footer div ul a {
  padding: 0;
}
@media (min-width: 768px) {
  footer div ul a {
    padding: 25px;
  }
}/*# sourceMappingURL=style.css.map */