*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --btn-color: #ff5733;
  --dark-color: #020518;
  --light-color: #f4f4f4;
  --primary-color: #08c0dd;
  --secondary-color: #262431;
  --tertiary-color: #2f2c3d;
}
body {
  font-family: "montserrat", sans-serif;
  overflow-x: hidden;
  font-display: swap;
}
/* LOADING BTN */
.loader-box {
  width: 100%;
  background: #111;
  height: 100%;
  position: fixed;
  z-index: 99999999999;
  transform: translateY(0);
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader {
  position: absolute;
  /* left: 50%;
  top: 50%; */
  width: 120px;
  height: 120px;
  /* transform: translate(-50%, -50%); */
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid var(--btn-color);
  animation: spin 2s linear infinite;
  opacity: 0.8;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.basic-btn {
  border-radius: 15px;
  text-decoration: none;
  padding: 10px 20px;
  background: var(--btn-color);
  color: #f4f4f4;
  position: relative;
  display: inline-block;
  transition: all ease-in 0.3s;
  font-weight: 600;
}
.basic-btn:hover {
  background: #ec5800;
  transform: translateY(7px);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  color: #f4f4f4;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease-in-out;
}
.navbar.scroll {
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(7px);
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  align-items: end;
  transition: all ease-in-out 0.6s;
  padding: 20px 0;
}
.navbar ul li a {
  text-decoration: none;
  padding: 10px;
  color: var(--light-color);
  opacity: 0.5;
  transition: all ease-in-out 0.3s;
  font-size: 1.3rem;
}
.navbar ul li a:hover {
  opacity: 1;
}
.navbar ul li i {
  font-size: 1.4rem;
  cursor: pointer;
  gap: 0;
  margin-right: -1rem;
}
.logo {
  text-decoration: none;
  color: #f4f4f4;
  font-size: 1.4rem;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
}
.logo:hover {
  opacity: 1;
  cursor: pointer;
}

.logo i {
  padding: 5px;
  border-radius: 10px;
  border: 2px solid #f4f4f4;
}
nav img {
  width: 50px;
}
.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
}
.social a {
  text-decoration: none;
  color: var(--light-color);
  opacity: 0.5;
  transition: all ease-in-out 0.3s;
  font-size: 1.4rem;
}
.social a:hover {
  opacity: 1;
}
.hamburger {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 20px;
  right: 10px;
  background: var(--third-color);
  padding: 10px;
  z-index: 101;
  transition: all ease-in-out 0.7s;
  cursor: pointer;
  display: none;
}
.hamburger span {
  width: 100%;
  background: #f4f4f4;
  height: 2px;
  transition: ease-in-out 0.4s all;
}
.navbar .on {
  transform: translateX(0);
}

.change .span-1 {
  transform: rotateZ(-405deg) translate(-4px, 3px);
}
.change .span-2 {
  opacity: 0;
}
.change .span-3 {
  transform: rotateZ(405deg) translate(-4px, -3px);
}

#welcome {
  height: 110vh;
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.9),
      rgba(51, 51, 51, 0.4)
    ),
    url("/images/5184015.jpg");
  background-size: cover;
  background-position: center;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
#welcome img {
  width: 750px;
  height: 100%;
}
.welcome-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  margin: auto;
}
.welcome-text {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: end;
  gap: 2rem;
}
#welcome h1 {
  font-size: 3rem;
}
#welcome p {
  font-size: 1.3rem;
  color: var(--btn-color);
}
#welcome a {
  margin-right: 0.3rem;
}
/*  */
/* section about */
/*  */
#landing-about {
  display: flex;
  background: #222;
  color: #f4f4f4;
  height: 100vh;
  border-bottom: 2px solid #333;
}
.landing-about-image {
  background: url(/images/eufundal.jpg) center/cover;
  flex: 1;
}
.landing-about-image p {
  display: none;
}
.landing-about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0px 100px;
  align-self: center;
}
.landing-about-text a {
  border-radius: 5px;
  padding: 20px 10px;
  font-size: 1rem;
  text-align: center;
  width: 50%;
}
.landing-about-text p {
  color: #d4d4d4;
  font-size: 1.1rem;
}
.landing-about-text h1 {
  font-size: 1.6rem;
}

/* experience section */
/*  */
#experience {
  padding: 50px 20px 50px 20px;

  background: #222;
}
.experience-container {
  position: relative;
  width: 80%;
  margin: auto;
}
.scroll-indicator {
  position: absolute;
  left: 50px;
  top: 15px;
  bottom: -15px;
  width: 2px;
  height: 99%;
  background: #444;
  z-index: 2;
  transition: height 0.25s ease-out;
}
.scroll-bar {
  width: 2px;
  height: 60px;
  background: #ec5800;
  box-shadow: 0 0 13px #ec5800, 0 0 16px #ec5800, 0 0 18px #ec5800;
  z-index: 9999;
  transition: height 0.25s ease-out;
}
.experience-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  width: 100%;
}
.experience-box div {
  padding: 30px 20px;
  border-bottom: 2px solid #333;
  color: #f4f4f4;
  width: 85%;
  text-align: start;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 1rem;
}
.experience-box div h2 {
  padding: 4px 13px;
  font-size: 1.3rem;
  border: 2px solid #ec5800;
  display: inline;
}
.experience-box div p {
  font-size: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* section intro */
#landing-info {
  background: #222;
  color: #f4f4f4;
}
.landing-info-container {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 2.5rem;
  width: 80%;
  margin: auto;
  padding: 100px 0px;
}
.landing-info-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.landing-info-intro h1 {
  border-bottom: 5px solid var(--btn-color);
  padding-bottom: 20px;
  font-size: 2rem;
  width: 70%;
  margin-top: -1.4rem;
}
.landing-info-intro h3 {
  font-size: 1.2rem;
  font-weight: 300;
}
.landing-info-intro p {
  color: #d3d3d3;
}
.landing-info-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.landing-info-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.landing-info-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
.landing-info-box p {
  color: #d3d3d3;
  font-weight: 200;
}
.landing-info-box i {
  padding: 15px;
  font-size: 2.2rem;
  border-radius: 20px;
  border: solid 2px var(--btn-color);
  transition: all ease-in 0.2s;
}
.landing-info-box i:hover {
  transform: rotate(0.5deg);
}
/*  */
/* 
landing projects
/*  */
.container.swiper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/images/vecteezy_dark-perspective-hexagon-background_11884207.jpg")
    no-repeat center/cover;
  padding: 100px 50px;
}
.slider-wrapper {
  overflow: hidden;
}
.card-list .card-item {
  height: auto;
  color: #f4f4f4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 10px;
  background: rgba(53, 53, 53, 0.7);
  backdrop-filter: blur(2px);
  border: 2px solid #333;
  text-align: center;
  cursor: pointer;
}
.card-list .card-item h3 {
  font-weight: 400;
}
.card-list .card-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  max-height: 350px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.landing-numbering {
  background: #f4f4f4;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}
.landing-numbering-active {
  opacity: 1;
}
.swipe-btn {
  color: #fff;
  margin-top: -55px;
  transition: 0.2s ease;
}
.slider-wrapper .swiper-pagination-bullet {
  background: #f4f4f4;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}
.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.slider-wrapper .swiper-slide-button {
  color: #fff;
  margin-top: -55px;
  transition: 0.2s ease;
}
.slider-wrapper .swiper-slide-button:hover {
  color: var(--btn-color);
}

/* contact */
/*  */
/* section */
#contact {
  padding: 20px;
  padding-bottom: 3rem;
  background: #222;
  color: #f4f4f4;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.8rem;
  width: 85%;
  text-align: center;
  margin: auto;
  margin-top: 5rem;
  box-shadow: 0 4px 8px 0 rgba(255, 2555, 255, 0.2),
    0 6px 20px 0 rgba(255, 2555, 255, 0.19);
  padding: 40px;
}
.contact-form h4 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-top: 2rem;
}
.contact-form h2 {
  padding: 0px 10px 20px 10px;
  border-bottom: 3px solid #ec5800;
}
#contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  margin-top: 4rem;
  font-size: 1.3rem;
}
.form-grup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  gap: 0.5rem;
  border-bottom: 2px solid #444;
}

.form-grup input {
  padding: 10px;
  border: none;
  outline: none;
  width: 100%;
  background: inherit;
  color: var(--btn-color);
  font-size: 1rem;
}
.form-grup input::placeholder {
  color: #aaa;
}
.form-grup textarea {
  outline: none;
  padding: 10px;
  opacity: 0.8;
  width: 90%;
}

form .basic-btn {
  padding: 10px;
  width: 20%;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
  justify-self: center;
  grid-column: 1 / 3;
}

#textarea-input {
  border: none;
  grid-column: 1/3;
  width: 70%;
  align-items: center;
  justify-self: center;
}
/* footer section */
#footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background: #111;
  color: #f4f4f4;
  padding: 50px 100px;
}
#footer-section img {
  width: 50px;
}
.social-media {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  border-bottom: 2px solid #333;
}
.social-media a {
  font-size: 1.2rem;
  color: #f4f4f4;
}
.social-media i {
  font-size: 1.1rem;
  margin-right: 0.6rem;
  padding: 15px;
  background: #333;
  border-radius: 50%;
}
.footer-info {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  justify-content: start;
}
.footer-info h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-info p {
  color: #d3d3d3;
  font-size: 0.9rem;
}
.footer-info div {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.footer-about a {
  color: #f4f4f4;
  text-decoration: underline;
  cursor: pointer;
}

.footer-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: start;
}
.footer-services ul a {
  text-decoration: none;
  color: #d4d4d4;
  font-size: 0.9rem;
}
.footer-location h3 {
  font-size: 0.9rem;
  color: #d4d4d4;
}

.footer-news .footer-inputs {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 3px;
}
.footer-news .footer-inputs input {
  padding: 5px;
  outline: none;
  font-size: 0.9rem;
  border: none;
}
.footer-news .footer-inputs input:nth-child(2) {
  padding: 4px 10px;
  color: var(--light-color);
  background: var(--btn-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.footer-news .footer-inputs input:nth-child(2):hover {
  transform: translateY(-5px);
}
.copyright {
  margin-top: 30px;
  padding-top: 50px;
  border-top: 1px solid #333;
  text-align: center;
}

/*  */
/*  */
/* responsiveness */
@media (max-width: 1070px) {
  #welcome img {
    width: 600px;
    flex: 2;
  }
  #welcome h1 {
    font-size: 2.3rem;
  }
  #welcome p {
    font-size: 1.1rem;
    color: var(--btn-color);
  }
  #welcome a {
    margin-right: 0.3rem;
  }
  .welcome-box {
    width: 90%;
  }
  .welcome-text {
    flex: 1;
  }
  .landing-about-text {
    padding: 0px 20px 0px 50px;
  }
  .landing-about-text a {
    width: 60%;
  }

  .navbar ul {
    gap: 0rem;
    width: 100%;
  }
}
@media (max-width: 966px) and (min-width: 756px) {
  .navbar {
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
  }
}
@media (max-width: 966px) {
  #footer-section {
    padding: 50px 50px;
  }
  .landing-info-container {
    width: 100%;
    padding: 50px;
  }
  .footer-info {
    grid-template-columns: 3fr 1fr 1fr 1fr;
  }
  .navbar {
    padding: 20px;
  }
  .navbar ul {
    gap: 1rem;
    border-top: 2px solid #333;
    margin-top: 1rem;
    padding: 10px;
    width: 90%;
  }
  .welcome-box {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 85%;
    margin-bottom: 40px;
  }
  #welcome a {
    display: inline-block;
    margin-top: 10px;
  }

  #welcome img {
    width: 100%;
  }
  .welcome-text {
    text-align: center;
    gap: 1rem;
    align-items: center;
  }
  .scroll-indicator {
    top: 15px;
    left: -10px;
  }
  .experience-box div {
    width: 90%;
  }
  .contact-form {
    width: 90%;
  }
  .form-grup textarea {
    width: 100%;
  }
  #contact {
    padding: 1px;
    padding-bottom: 3rem;
  }
}
@media (max-width: 888px) {
  #footer-section {
    padding: 40px 20px;
  }
  .footer-info {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-content: center;
    gap: 1rem;
  }
  .footer-services {
    grid-column: 1/2;
    grid-row: 2;
  }
  .footer-info div {
    gap: 1rem;
  }
  .footer-info h2 {
    margin: 0;
  }
  .navbar ul {
    gap: 0.2rem;
  }
  .welcome-box {
    margin-bottom: 60px;
  }
  #landing-about {
    flex-direction: column;
    height: 130vh;
    padding: 30px 20px 30px 20px;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 2rem;
  }
  .landing-about-text {
    padding: 0 50px;
  }
  .landing-about-text a {
    width: 70%;
    align-self: center;
  }
  .landing-about-image {
    background: url(/images/inlocuitor.webp) center/cover;
    flex: 2;
    width: 100%;
  }
  .landing-about-image p {
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: end;
    padding-bottom: 0.5rem;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    font-size: 10px;
  }
  .experience-container {
    width: 100%;
  }
  .experience-box div {
    width: 95%;
  }
}

@media (max-width: 756px) {
  .experience-box div p {
    font-size: 1.2rem;
  }
  .navbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 0 0 0 0;
    height: 92px;
  }
  .navbar ul {
    padding: 45px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(800px);
    gap: 2.4rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    margin-top: -1rem;
  }

  .social {
    flex-direction: column;
    margin: 0;
  }
  .social a {
    font-size: 1.7rem;
  }
  .hamburger {
    display: flex;
  }
  .navbar ul li a {
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0;
  }
  .logo {
    align-self: start;
    margin-left: 1.2rem;
    width: 100%;
    padding: 20px;
    margin: 0;
  }
  .welcome-box {
    margin: 0;
    gap: 1.3rem;
  }
  #welcome {
    height: 100vh;
  }

  .card-list .card-item {
    padding: 10px 20px 10px 20px;
  }
  .container.swiper {
    height: auto;
    padding: 30px;
    padding-bottom: 0;
  }
  .landing-info-container {
    flex-direction: column;
  }
  .landing-info-intro {
    align-items: center;
    text-align: center;
    gap: 1.6rem;
  }
  .landing-info-intro h1 {
    font-size: 1.8rem;
    margin-top: -0.5rem;
  }
  .landing-info-intro h3 {
    font-size: 1.1rem;
    font-weight: 300;
  }
  .contact-form {
    width: 100%;
    padding: 20px;
    margin-top: 2rem;
  }

  #contact {
    padding: 30px;
  }
  #contact form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 20px;
    margin-top: 2rem;
  }
  .form-grup {
    width: 90%;
  }
  form .basic-btn {
    width: 50%;
    margin-top: 0;
  }
  #textarea-input {
    border: none;
    width: 90%;
    align-items: start;
  }

  .contact-form h2 {
    font-size: 1.8rem;
  }
  .contact-form h4 {
    margin-top: 1rem;
  }
}
@media (max-width: 550px) {
  #welcome h1 {
    font-size: 1.5rem;
  }
  #welcome p {
    font-size: 1.1rem;
    color: var(--btn-color);
  }
  #welcome a {
    margin-right: 0.3rem;
    margin-top: 0;
    font-size: 1.1;
  }
  .welcome-box {
    width: 100%;
    padding: 15px;
    margin-top: 3rem;
    gap: 2rem;
  }
  .hamburger {
    top: 27px;
    right: 10px;
  }
  .landing-info-container {
    padding: 50px 20px;
  }
  .landing-info-box h3 {
    font-size: 1.1rem;
  }
  .card-list .card-item {
    gap: 0.3rem;
  }

  .container.swiper {
    padding: 30px 10px 0px 10px;
  }
  .card-list .card-item h3 {
    font-size: 1rem;
  }
  .slider-wrapper {
    padding: 0;
  }
  .social-media {
    padding: 30px 0px 30px 0px;
  }
  .social-media .logo {
    padding: 0;
    font-size: 1.1rem;
  }
  .social-media a {
    font-size: 1rem;
    color: #f4f4f4;
  }

  .social-media i {
    margin-right: 0;
    font-size: 1rem;
  }
  .social-media .social-icons {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .footer-info {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
  }
  .footer-info div {
    border-bottom: 1px solid #333;
    padding: 20px 10px;
  }
  .footer-services ul {
    align-items: center;
  }
  .footer-news .footer-inputs {
    border: none;
    align-self: center;
    margin-top: -1.7rem;
  }
  #footer-section {
    padding: 0 10px 0px 10px;
    gap: 0.5rem;
  }
  .copyright {
    border: 0;
    padding: 20px 5px;
    margin: 0;
    font-size: 0.9rem;
  }
  .landing-about-text a {
    width: 90%;
  }
  .landing-about-text {
    padding: 0px 10px;
  }
  .landing-info-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .landing-info-box {
    background: #333;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    width: 90%;
    margin: auto;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 500px) {
  #contact {
    padding: 20px;
  }
  #contact form {
    padding: 10px;
  }
  .contact-form h2 {
    font-size: 1.6rem;
  }
  .contact-form h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }
  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}
@media (min-width: 1700px) {
  #welcome img {
    width: 90%;
  }
  #welcome h1 {
    font-size: 4rem;
  }
  #welcome p {
    font-size: 1.9rem;
    color: var(--btn-color);
  }
  #welcome a {
    font-size: 1.6rem;
  }
  .navbar ul li a {
    font-size: 1.7rem;
  }
  .logo {
    font-size: 1.8rem;
  }
  .landing-about-text p {
    font-size: 1.5rem;
  }
  .landing-about-text a {
    font-size: 1.5rem;
  }
  .landing-about-text h1 {
    font-size: 2rem;
  }
  .landing-info-intro h1 {
    font-size: 3rem;
  }
  .landing-info-intro h3 {
    font-size: 2.1rem;
    font-weight: 300;
  }
  .landing-info-intro p {
    font-size: 1.5rem;
  }
  .landing-info-intro a {
    font-size: 1.3rem;
  }
  .landing-info-box h3 {
    font-size: 1.8rem;
  }
  .landing-info-box p {
    font-size: 1.3rem;
  }
  .landing-info-box i {
    font-size: 3rem;
  }
  .card-list .card-item h3 {
    font-size: 1.5rem;
  }
  .footer-info h2 {
    font-size: 2rem;
  }
  .footer-info p {
    color: #d3d3d3;
    font-size: 1.4rem;
  }
  .footer-about a {
    font-size: 1.6rem;
  }
  #footer-section img {
    width: 65px;
  }
  #footer-section .logo {
    font-size: 1.7rem;
  }
  .social-media i {
    font-size: 2rem;
    padding: 30px;
  }
  .footer-services ul a {
    text-decoration: none;
    color: #d4d4d4;
    font-size: 1.4rem;
  }
  .footer-location h3 {
    font-size: 1.4rem;
    color: #d4d4d4;
  }
  .footer-news .footer-inputs input:nth-child(2) {
    font-size: 1.7rem;
  }
  .footer-news .footer-inputs input {
    font-size: 1.5rem;
  }
  .copyright {
    font-size: 1.2rem;
  }
}
