* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --orange: #e7480f;
  --orange2: #e05a2a;
  --background_form_color: #065e62;
  --dark-background: #01050f;
  --dark-second-bg: #0c0f19;
}

*::selection {
  background: var(--orange);
  color: #fff;
}

/* custom scroll bar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* all similar content styling codes */

section {
  padding: 100px 0;
}

.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}

.about,
.projects,
.blog,
.skills,
.teams,
.contact,
footer {
  font-family: "Roboto", sans-serif;
  font-size: 1.08em;
}

.about .about-content,
.projects .projects-content,
.blog .blog-content,
.skills .skills-content,
.contact .contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about p {
  line-height: 140%;
  font-size: 1.16em;
}

section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}

section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: var(--dark-background);
  transform: translateX(-50%);
}

section .title::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  font-size: 20px;
  color: var(--orange);
  padding: 0 5px;
  background: #fff;
  transform: translateX(-50%);
}

/* navbar styling */

.navbar {
  position: fixed;
  width: 100%;
  z-index: 10000;
  height: 65px;
  padding: 20px 0;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.3s ease;
}

.navbar-sticky {
  padding: 10px 0;
  background: var(--orange);
  box-shadow: 0 2px 5px #4e4e4e77;
}

.navbar.sticky {
  padding: 10px 0;
  background: var(--orange);
  box-shadow: 0 2px 5px #4e4e4e77;
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  transition: opacity 0.1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar .logo a:hover {
  opacity: 0.8;
}

.navbar .logo a img {
  height: 30px;
  margin-right: 4px;
  width: auto;
}

.navbar.sticky .logo a span {
  color: #fff;
}

.navbar .menu li {
  list-style: none;
  display: inline-block;
}

.navbar .menu li a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: transform 0.3s ease;
}

.navbar .menu li a:hover {
  /* color: var(--orange); */
  transform: scale(1.15);
}

.sticky .menu li a:hover {
  transform: scale(1.2);
}

/* menu btn styling */

.menu-btn {
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}

.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 42px;
  background: var(--orange);
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}

.scroll-up-btn:hover {
  filter: brightness(90%);
}

/* home section styling */

.home {
  display: flex;
  height: 64vh;
  color: #fff;
  min-height: 500px;
  font-family: "Ubuntu", sans-serif;
  background: linear-gradient(
      45deg,
      rgba(18, 34, 34, 0.8),
      rgba(0, 0, 0, 0.6),
      rgba(2, 2, 24, 0.8),
      rgba(2, 0, 1, 0.8)
    ),
    url("https://images.unsplash.com/photo-1522252234503-e356532cafd5?q=80&w=1925&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.home .box div {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #eeeded6c;
  border-radius: 50%;
}

.home .box div:nth-child(1) {
  top: 12%;
  left: 42%;
  animation: square-animation 10s linear infinite;
}

.home .box div:nth-child(2) {
  top: 90%;
  left: 50%;
  animation: square-animation 6s linear infinite;
}

.home .box div:nth-child(3) {
  top: 17%;
  left: 6%;
  animation: square-animation 9s linear infinite;
}

.home .box div:nth-child(4) {
  top: 20%;
  left: 60%;
  animation: square-animation 10s linear infinite;
}

.home .box div:nth-child(5) {
  top: 67%;
  left: 10%;
  animation: square-animation 6s linear infinite;
}

.home .box div:nth-child(6) {
  top: 80%;
  left: 70%;
  animation: square-animation 8.5s linear infinite;
}

.home .box div:nth-child(7) {
  top: 30%;
  left: 80%;
  animation: square-animation 13s linear infinite;
}

.home .box div:nth-child(8) {
  top: 32%;
  left: 18%;
  animation: square-animation 11s linear infinite;
}

.home .box div:nth-child(9) {
  top: 90%;
  left: 20%;
  animation: square-animation 9s linear infinite;
}

.home .box div:nth-child(10) {
  top: 55%;
  left: 90%;
  animation: square-animation 5s linear infinite;
}

.home .box div:nth-child(11) {
  top: 90%;
  left: 85%;
  animation: square-animation 7s linear infinite;
}

.home .max-width {
  width: 100%;
  display: flex;
}

.home .max-width .row {
  margin-right: 0;
}

.home .home-content {
  margin: auto;
  text-align: center;
}

.home .home-content .text-1 {
  font-size: 35px;
  padding: 8px 0;
}

.home .home-content .text-2 h1 {
  font-size: 76px;
  font-weight: 600;
}

.home .home-content .text-3 {
  font-size: 36px;
  margin: 25px 0 20px 0;
}

.home .home-content .text-3 span {
  color: var(--orange2);
  font-weight: 500;
}

.home .home-content a {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 25px;
  padding: 12px 36px;
  margin-top: 50px;
  font-weight: 400;
  border-radius: 6px;
  border: 1px solid var(--orange);
  transition: all 0s ease;
}

.home .home-content a:hover {
  color: var(--orange);
  background: none;
}

/* about section styling */

.about .title::after {
  content: "quién soy";
}

.about .title.english::after {
  content: "who i am";
}

.about .about-content .left {
  width: 45%;
}

.about .about-content .left img {
  height: 380px;
  width: 380px;
  object-fit: cover;
  border-radius: 6px;
  transition: all ease-in 0.3s;
}

.about .about-content .left img:hover {
  transform: scale(1.02);
  box-shadow: 4px 4px 10px #4e4e4e;
}

.about .about-content .right {
  width: 55%;
}

.about .about-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .about-content .right .text span {
  color: var(--orange);
}

.about .about-content .right p {
  text-align: justify;
}

.about .about-content .right a {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid var(--orange);
  transition: all 0.3s ease;
}

.about .about-content .right a:hover {
  color: var(--orange);
  background: none;
}

/* projects section styling */

.projects {
  color: #fff;
  background: var(--dark-background);
}

.projects .title::before {
  content: "";
  background-color: #fff;
}

.projects .title::after {
  content: "mis trabajos";
  background-color: var(--dark-background);
}

.projects .title.english::after {
  content: "what i did";
}

.projects .projects-content .card {
  margin: 0 0 1px 0;
  width: calc(33% - 20px);
  background: var(--dark-second-bg);
  text-align: center;
  border-radius: 6px;
  padding: 40px 25px 35px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects .projects-content .card:hover {
  background-color: #061a2d;
}

.projects .projects-content .card .box {
  transition: all 0.3s ease;
}

.projects .projects-content .card:hover .box {
  transform: scale(1.05);
}

.projects .projects-content .card .box img {
  width: 100%;
  transition: color 0.3s ease;
}

.projects .projects-content .card .box .text {
  font-size: 25px;
  font-weight: 500;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 10px 0 7px 0;
}

.projects .projects-content .card .box p {
  margin: 0 auto;
  margin-top: 16px;
  height: 50px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects .projects-content .card .box .go-project a {
  position: relative;
  display: inline-block;
  color: #e97d56;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 20px;
  margin-top: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.projects .projects-content .card .box .go-project a:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0;
  height: 0;
  background-color: transparent;
  border: 1.8px solid transparent;
}

.projects .projects-content .card .box .go-project a:hover:before {
  animation: animate 0.3s linear forwards;
}

@keyframes animate {
  0% {
    width: 0;
    height: 0;
    border-color: #e97d56 transparent transparent transparent;
  }
  50% {
    width: 100%;
    height: 0;
    border-color: #e97d56 #e97d56 transparent transparent;
  }
  100% {
    width: 100%;
    height: 100%;
    border-color: #e97d56 #e97d56 transparent transparent;
  }
}

.projects .projects-content .card .box .go-project a:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0;
  height: 0;
  background-color: transparent;
  border: 1.8px solid transparent;
}

.projects .projects-content .card .box .go-project a:hover:after {
  animation: animateTwo 0.3s linear forwards;
}

/* blog section */

.blog {
  color: #000;
  background: #f4f4f4;
}

.blog .title::before {
  content: "";
  background-color: var(--orange);
}

/* .blog .title::after {
  content: "mis trabajos";
  background-color: var(--dark-background);
} */

/* .blog .title.english::after {
  content: "what i did";
} */

.blog .blog-content .card {
  margin: 0 0 1px 0;
  width: calc(33% - 20px);
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 40px 25px 35px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
}

.blog .blog-content .card:hover {
  background-color: #fff9f9;
}

.blog .blog-content .card .box {
  transition: all 0.3s ease;
}

.blog .blog-content .card:hover .box {
  transform: scale(1.05);
}

.blog .blog-content .card .box img {
  width: 100%;
  transition: color 0.3s ease;
}

.blog .blog-content .card .box .text {
  font-size: 25px;
  font-weight: 500;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 10px 0 7px 0;
}

.blog .blog-content .card .box p {
  margin: 0 auto;
  margin-top: 16px;
  height: 50px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-content .card .box .go-project a {
  position: relative;
  display: inline-block;
  color: #e97d56;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 20px;
  margin-top: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.blog .blog-content .card .box .go-project a:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0;
  height: 0;
  background-color: transparent;
  border: 1.8px solid transparent;
}

.blog .blog-content .card .box .go-project a:hover:before {
  animation: animate 0.3s linear forwards;
}

@keyframes animate {
  0% {
    width: 0;
    height: 0;
    border-color: #e97d56 transparent transparent transparent;
  }
  50% {
    width: 100%;
    height: 0;
    border-color: #e97d56 #e97d56 transparent transparent;
  }
  100% {
    width: 100%;
    height: 100%;
    border-color: #e97d56 #e97d56 transparent transparent;
  }
}

.blog .blog-content .card .box .go-project a:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0;
  height: 0;
  background-color: transparent;
  border: 1.8px solid transparent;
}

.blog .blog-content .card .box .go-project a:hover:after {
  animation: animateTwo 0.3s linear forwards;
}

@keyframes animateTwo {
  0% {
    width: 0;
    height: 0;
    border-color: transparent transparent transparent #e97d56;
  }
  50% {
    width: 0;
    height: 100%;
    border-color: transparent transparent #e97d56 #e97d56;
  }
  100% {
    width: 100%;
    height: 100%;
    border-color: transparent transparent #e97d56 #e97d56;
  }
}

/* skills section styling */

.skills .title::after {
  content: "lo que sé";
}

.skills .title.english::after {
  content: "what i know";
}

.skills .skills-content .text-container {
  margin-top: -20px;
  margin-bottom: 24px;
}

.skills .skills-content .text-container p {
  text-align: justify;
}

.skills .skills-content .text-container a {
  display: inline-block;
  color: var(--orange);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skills .skills-content .text-container a:hover {
  text-decoration: underline;
}

.skills .managed-tecnologies {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.skills .managed-tecnologies .tecnologies-container {
  margin: 0 auto;
}

.skills .managed-tecnologies .tecnologie {
  position: relative;
  width: 250px;
  height: 180px;
  margin: 20px 15px;
  display: inline-block;
  box-shadow: 5px 5px 10px #b2b2b2;
  padding: 28px;
  border-radius: 8px;
}

.skills .managed-tecnologies .tecnologie .tecno-logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.skills .managed-tecnologies .tecnologie .tecno-logo img {
  width: auto;
  height: auto;
}

.skills .managed-tecnologies .tecnologie .tecno-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000dc;
  color: #fff;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.skills .managed-tecnologies .tecnologie .tecno-info span {
  font-size: 1.35em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.skills .managed-tecnologies .tecnologie .tecno-info > * {
  transform: translateY(50px);
  transition: transform 0.25s;
}

.skills .managed-tecnologies .tecnologie .tecno-info:hover {
  opacity: 1;
  cursor: pointer;
}

.skills .managed-tecnologies .tecnologie .tecno-info:hover > * {
  transform: translateY(0);
}

.skills .managed-tecnologies .tecnologie .tecno-info .line {
  height: 4px;
  width: 60%;
  margin-top: 10px;
  background: #9c9c9c;
  position: relative;
  border-radius: 10px;
}

.skills .managed-tecnologies .tecnologie .tecno-info .line::before {
  content: "";
  position: absolute;
  height: 100%;
  border-radius: 10px;
  left: 0;
  top: 0;
}

.skills .tecnologie .tecno-info .html::before {
  width: 88%;
  background: orangered;
}

.skills .tecnologie .tecno-info .css::before {
  width: 82%;
  background: #0084ff;
}

.skills .tecnologie .tecno-info .javascript::before {
  width: 92%;
  background: yellow;
}

.skills .tecnologie .tecno-info .react::before {
  width: 92%;
  background: #00e1ff;
}

.skills .tecnologie .tecno-info .react-native::before {
  width: 90%;
  background: #00e1ff;
}

.skills .tecnologie .tecno-info .expo::before {
  width: 90%;
  background: #ffffff;
}

.skills .tecnologie .tecno-info .typescript::before {
  width: 95%;
  background: #2d79c7;
}

.skills .tecnologie .tecno-info .git::before {
  width: 85%;
  background: #e00000;
}

.skills .tecnologie .tecno-info .dart::before {
  width: 65%;
  background: #00b5f8;
}

.skills .tecnologie .tecno-info .flutter::before {
  width: 70%;
  background: #47c5fb;
}

.skills .tecnologie .tecno-info .nodejs::before {
  width: 75%;
  background: #75d25c;
}

.skills .tecnologie .tecno-info .expressjs::before {
  width: 65%;
  background: #ffffff;
}

.skills .tecnologie .tecno-info .nextjs::before {
  width: 65%;
  background: #ffffff;
}

.skills .tecnologie .tecno-info .mongodb::before {
  width: 70%;
  background: #7dd963;
}

.skills .tecnologie .tecno-info .firebase::before {
  width: 90%;
  background: #f2b705;
}

/* contact section styling */

.contact {
  min-height: 100vh;
  background-color: var(--dark-background);
}

.contact .title {
  color: #fff;
}

.contact .title::before {
  content: "";
  background-color: #fff;
}

.contact .title::after {
  content: "conéctate";
  background-color: var(--dark-background);
}

.contact .title.english::after {
  content: "get in touch";
}

.contact-sect {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-sect .container {
  position: relative;
  min-width: 1100px;
  min-height: 550px;
  display: flex;
  z-index: 1000;
}

.contact-sect .container .contactInfo {
  position: absolute;
  top: 40px;
  width: 360px;
  height: calc(100% - 80px);
  background-color: var(--background_form_color);
  z-index: 1;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.contact-sect .container .contactInfo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.contact-sect .container .contactInfo ul.info {
  position: relative;
  margin: 40px 0;
}

.contact-sect .container .contactInfo ul.info li {
  position: relative;
  list-style: none;
  display: flex;
  margin: 20px 0;
  cursor: pointer;
  align-items: flex-start;
  color: #ccc;
}

.contact-sect .container .contactInfo ul.info li:hover {
  color: #fff;
}

.contact-sect .container .contactInfo ul.info li span i {
  font-size: 24px;
}

.contact-sect .container .contactInfo ul.info li a {
  margin-left: 6px;
  font-size: 14.5px;
}

.contact-sect .container .contactInfo ul.info li a:link {
  color: #ccc;
}

.contact-sect .container .contactInfo ul.info li a:visited {
  color: #ccc;
}

.contact-sect .container .contactInfo ul.info li a:hover {
  color: #fff;
}

.contact-sect .contact-content .info .sub-title a:active {
  text-decoration: underline;
}

.contact-sect .container .contactInfo ul.info li span:nth-child(1) {
  width: 30px;
  min-width: 30px;
}

.contact-sect .container .contactInfo ul.info li span:nth-child(2) {
  margin-left: 4px;
}

.contact-sect .container .contactInfo ul.sci {
  position: relative;
  display: flex;
}

.contact-sect .container .contactInfo ul.sci li {
  list-style: none;
  margin-right: 15px;
}

.contact-sect .container .contactInfo ul.sci li a {
  text-decoration: none;
  color: #ccc;
  font-size: 24px;
  margin: 0 3px;
}

.contact-sect .container .contactInfo ul.sci li a:link {
  color: #ccc;
}

.contact-sect .container .contactInfo ul.sci li a:visited {
  color: #ccc;
}

.contact-sect .container .contactInfo ul.sci li a:hover {
  color: #fff;
}

.contact-sect .container .contactForm {
  position: absolute;
  padding: 60px 50px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background-color: #fff;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.15);
}

.contact-sect .container .contactForm h2 {
  color: var(--background_form_color);
  font-size: 24px;
  font-weight: 500;
}

.contact-sect .container .contactForm .formBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}

.contact-sect .container .contactForm .formBox .inputBox {
  position: relative;
  margin-bottom: 25px;
}

.contact-sect .container .contactForm .formBox .inputBox.w50 {
  width: 47%;
}

.contact-sect .container .contactForm .formBox .inputBox.w100 {
  width: 100%;
}

.contact-sect .container .contactForm .formBox .inputBox input,
.contact-sect .container .contactForm .formBox .inputBox textarea {
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  border: none;
  outline: none;
  border-bottom: 1px solid #777;
}

.contact-sect .container .contactForm .formBox .inputBox textarea {
  height: 100px;
}

.contact-sect .container .contactForm .formBox .inputBox label {
  position: absolute;
  left: 0;
  padding: 5px 0;
  pointer-events: none;
  font-size: 16px;
  font-weight: 300;
  transition: 0.3s;
}

.contact-sect .container .contactForm .formBox .inputBox input:focus ~ label,
.contact-sect .container .contactForm .formBox .inputBox textarea:focus ~ label,
.contact-sect .container .contactForm .formBox .inputBox label.has-content {
  transform: translateY(-20px);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--background_form_color);
}

.contactForm .inputBox .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 6px;
  right: 5px;
  pointer-events: none;
  z-index: 2;
}

.contactForm .inputBox .icon-error {
  color: red;
}

.contactForm .inputBox .icon-success {
  color: green;
}

.contactForm .inputBox .error-message {
  height: 14px;
  margin: 4px 0;
  font-size: 12px;
  color: red;
}

.contact-sect .container .contactForm .formBox .inputBox input.input-error,
.contact-sect .container .contactForm .formBox .inputBox textarea.input-error {
  border-bottom: 1px solid red;
}

.contact-sect .container .contactForm .formBox .inputBox input[type="submit"] {
  position: relative;
  cursor: pointer;
  background-color: var(--background_form_color);
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
}

.contact-sect
  .container
  .contactForm
  .formBox
  .inputBox
  input[type="submit"]:hover {
  background: var(--orange);
}

.contact-sect
  .container
  .contactForm
  .formBox
  .inputBox
  input[type="submit"]:active {
  opacity: 0.8;
}

.lds-ring {
  display: inline-block;
  position: relative;
  top: 10px;
  width: 40px;
  height: 40px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 8px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--background_form_color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

.contact-sect .container .contactForm .formBox .inputBox .response-content {
  display: inline;
  margin-left: 10px;
}

.contact-sect
  .container
  .contactForm
  .formBox
  .inputBox
  .response-content
  span.success {
  color: green;
}

.contact-sect
  .container
  .contactForm
  .formBox
  .inputBox
  .response-content
  span.error {
  color: red;
}

.success-icon {
  color: green;
}

.success-icon.hidden {
  display: none;
}

.error-icon {
  color: red;
}

.error-icon.hidden {
  display: none;
}

.hidden {
  display: none;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* footer section styling */

footer {
  background: #0c0c0c;
  padding: 0 23px 20px 23px;
  color: #fff;
  text-align: center;
}

footer p:nth-child(1) {
  border-top: 1px solid #fff;
  width: 90%;
  margin: 0 auto;
}

footer .languages {
  margin: 20px auto 16px auto;
}

footer p .separation {
  margin: 0 20px;
}

footer p .current-language {
  color: var(--orange);
}

footer p a {
  color: #fff;
  text-decoration: none;
}

footer p a:link {
  color: #fff;
}

footer p a:visited {
  color: #fff;
}

footer p a:hover {
  color: var(--orange);
}

footer p a:active {
  color: #aaa;
}

footer span a {
  color: var(--orange);
  text-decoration: none;
}

footer span a:hover {
  text-decoration: underline;
}

/* responsive media query start */

@media (max-width: 1104px) {
  .about .about-content .left img {
    height: 350px;
    width: 350px;
  }
  .contact-sect .container {
    width: 90%;
    min-width: auto;
    margin: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }
  .contact-sect .container .contactInfo {
    top: 0;
    height: 500px;
    position: relative;
    box-shadow: none;
  }
  .contact-sect .container .contactForm {
    position: relative;
    width: calc(100% - 350px);
    padding-left: 0;
    padding: 40px;
    height: 550px;
    margin-left: 0;
    box-shadow: none;
  }
}

@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
  .contact-sect.max-width {
    background: var(--dark-background);
    padding: 0;
  }
  .contact-sect .container {
    display: flex;
    flex-direction: column-reverse;
  }
  .contact-sect .container .contactForm {
    width: 100%;
    height: auto;
  }
  .contact-sect .container .contactInfo {
    width: 100%;
    height: auto;
    flex-direction: row;
  }
  .contact-sect .container .contactInfo ul.sci {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: var(--dark-background);
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .home .home-content .text-2 h1 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    height: 70px;
    font-size: 35px;
    font-weight: 350;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .about .about-content .column {
    width: 100%;
  }
  .about .about-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .about .about-content .right {
    flex: 100%;
  }
  .projects .projects-content .card {
    width: calc(50% - 30px);
    margin: 10px auto;
  }
  .blog .blog-content .card {
    width: calc(50% - 30px);
    margin: 10px auto;
  }
  .skills .skills-content .column,
  .contact .contact-content .column.left,
  .contact .contact-content .column.right {
    width: 100%;
    margin-bottom: 35px;
  }
  .skills .managed-tecnologies .tecnologie .tecno-info span {
    font-size: 1em;
  }
}

@media (max-width: 800px) {
  .skills .managed-tecnologies .tecnologie {
    width: calc(25% - 40px);
    height: 150px;
  }
}

@media (max-width: 690px) {
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 h1 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
  .projects .projects-content .card {
    width: 100%;
  }
  .blog .blog-content .card {
    width: 100%;
  }
  .skills .managed-tecnologies .tecnologie {
    width: calc(50% - 40px);
    height: 150px;
  }
  .home .box div:nth-child(10) {
    left: 83%;
  }
  .home .box div:nth-child(11) {
    left: 78%;
  }
  .contact-sect .container .contactForm {
    padding: 25px;
  }
  .contact-sect .container .contactForm .formBox .inputBox.w50 {
    width: 100%;
  }
  .contact-sect .container .contactInfo {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-sect .container .contactInfo ul.sci {
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .home .home-content .text-1 {
    font-size: 23px;
  }
  .home .home-content .text-2 h1 {
    font-size: 30px;
    padding: 10px 0;
  }
  .home .home-content .text-3 {
    font-size: 26px;
    min-height: 60px;
  }
  .about .about-content .right .text,
  .skills .skills-content .left .text {
    font-size: 19px;
  }
  .contact .right form .fields {
    flex-direction: column;
  }
  .contact .right form .firstname,
  .contact .right form .lastname,
  .contact .right form .email,
  .contact .right form .phone {
    margin: 0;
  }
  .right form .error-box {
    width: 150px;
  }
  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
}

@media (max-width: 400px) {
  .skills .managed-tecnologies .tecnologie {
    width: calc(45% - 20px);
    height: 120px;
  }
}

@keyframes background-animation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes square-animation {
  0% {
    transform: scale(0) translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.3) translateY(-90px) rotate(360deg);
    opacity: 0;
  }
}

.img-carousel img {
  height: 158px;
}
