:root {
  --primary: #0d00a4;
  --primary-500: #0b1473;
  --primary-600: #03045e;
  --secondary: #f61379;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "poppins", Arial, Helvetica, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

.container {
  padding: 0 10%;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 1700px) {
  .container {
    padding: 0;
    max-width: 80rem !important;
  }
}

a {
  text-decoration: none;
  color: initial;
}

.hide {
  display: none !important;
}

.jumbotron-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f5f5f505;
  left: 0;
  z-index: -1;
  border: 2px solid transparent;
  -webkit-font-smoothing: antialiased;
  background-clip: padding-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}

.text-error {
  display: block;
  color: var(--secondary);
  font-weight: 700;
}

.text-success {
  color: #008000;
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.text-error.input-error {
  margin-top: -1.25rem;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.loading-animation {
  -webkit-animation: loading 1s infinite;
          animation: loading 1s infinite;
}

@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

nav {
  position: relative;
  width: 100%;
  padding-top: 1.5em !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

nav.nav-clicked {
  background: #fffaf9;
}

nav img {
  -webkit-filter: drop-shadow(0em 0.75em 1em #0b147350);
          filter: drop-shadow(0em 0.75em 1em #0b147350);
}

nav .fa-bars {
  font-size: 2rem;
  cursor: pointer;
}

nav .fa-bars.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .fa-bars.hide {
  display: none;
}

@media (min-width: 768px) {
  nav .fa-bars {
    display: none;
  }
}

nav .fa-xmark {
  position: fixed;
  font-size: 2rem;
  z-index: 100;
  right: 10%;
  display: none;
}

nav .fa-xmark.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  nav .fa-xmark {
    display: none;
  }
}

nav h1 {
  font-size: 45px;
  color: var(--secondary);
}

nav h1 span {
  color: var(--primary);
}

nav .nav-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

@media (min-width: 768px) {
  nav .nav-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

nav .nav-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .nav-right ul li {
  margin: 0 1.5rem;
}

nav .nav-right ul li a {
  font-weight: 600;
  font-size: 0.9rem;
}

nav .nav-right ul li a:hover {
  color: var(--primary);
}

nav .nav-right ul li:first-child a {
  color: var(--primary);
}

nav .nav-right button {
  padding: 0.75em 1.25em;
  width: 100%;
  max-width: 10rem;
  border-radius: 1.15em;
  background: linear-gradient(102.18deg, var(--primary) 23.13%, var(--primary-500) 100%);
  color: white;
  font-family: "poppins";
  font-weight: 700;
  margin-left: 1rem;
  font-size: 0.9rem;
  border: none;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav .nav-right button:hover {
  cursor: pointer;
}

nav .nav-mobile-list {
  top: 0;
  width: 60%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: -30rem;
  bottom: 0;
  /* height: 100%; */
  padding: 2em 0 1em 0;
  background: #0d00a410;
  position: fixed;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  background-clip: padding-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0px 7px 10px #00000025;
          box-shadow: 0px 7px 10px #00000025;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

nav .nav-mobile-list.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0 !important;
}

nav .nav-mobile-list li {
  font-size: 15px;
  font-weight: 500;
  padding: 0.5rem 0.5rem 0.5rem 10%;
}

@media (min-width: 768px) {
  nav .nav-mobile-list {
    display: none;
  }
}

@-webkit-keyframes navAnimation {
  0% {
    margin-top: -150px;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes navAnimation {
  0% {
    margin-top: -150px;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@-webkit-keyframes reverseNav {
  100% {
    margin-top: -150px;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes reverseNav {
  100% {
    margin-top: -150px;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 3em;
  padding-bottom: 10em;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.jumbotron .circle-two,
.jumbotron .circle-three,
.jumbotron .circle-one {
  width: 18rem;
  height: 18rem;
  top: -14rem;
  left: -5rem;
  border-radius: 50%;
  background-color: var(--primary-600);
  opacity: 0.05;
  position: absolute;
  z-index: -2;
}

@media (min-width: 768px) {
  .jumbotron .circle-two,
  .jumbotron .circle-three,
  .jumbotron .circle-one {
    width: 25rem;
    height: 25rem;
  }
}

.jumbotron .circle-two {
  top: unset;
  left: unset;
  width: 18rem;
  height: 18rem;
  bottom: -5rem;
  right: -10rem;
  opacity: 0.1;
  background: var(--secondary);
}

@media (min-width: 768px) {
  .jumbotron .circle-two {
    width: 20rem;
    opacity: 0.2;
    height: 20rem;
  }
}

@media (min-width: 1140px) {
  .jumbotron .circle-two {
    bottom: 5rem;
    right: 5rem;
  }
}

.jumbotron .circle-three {
  top: unset;
  left: unset;
  bottom: -8rem;
  right: -5rem;
  opacity: 0.1;
  display: none;
}

@media (min-width: 1140px) {
  .jumbotron .circle-three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.jumbotron .jumbotron-left {
  max-width: 38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  top: 4rem;
}

@media (min-width: 768px) {
  .jumbotron .jumbotron-left {
    top: 6rem;
  }
}

.jumbotron .jumbotron-left .jumbotron-left-head h1 {
  font-size: 2.25rem;
  line-height: 4rem;
  color: #000;
  line-height: 1.25;
  font-weight: 700;
}

@media (min-width: 768px) {
  .jumbotron .jumbotron-left .jumbotron-left-head h1 {
    font-size: 3rem;
  }
}

.jumbotron .jumbotron-left p {
  max-width: 29rem;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 1.5rem 0 1.5rem 0;
}

@media (min-width: 768px) {
  .jumbotron .jumbotron-left p {
    font-size: 1rem;
  }
}

.jumbotron .jumbotron-left .jumbotron-button-github {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1.15em;
  padding: 0.65em 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: linear-gradient(97.53deg, #000000 -2.38%, #101334 100%);
  font-family: "poppins";
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.jumbotron .jumbotron-left .jumbotron-button-github img {
  margin-right: 0.5rem;
}

.jumbotron .jumbotron-left .jumbotron-button-github:hover {
  cursor: pointer;
}

.jumbotron .jumbo-main-img {
  position: absolute;
  right: 0;
  /* margin-right: -10%; */
  top: 50%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  display: none;
}

@media (min-width: 1140px) {
  .jumbotron .jumbo-main-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.jumbotron .jumbotron-img-shadow {
  position: absolute;
  bottom: 4rem;
  right: 11rem;
  max-width: 350px;
  width: 100%;
}

.jumbotron .jumbotron-img-ball {
  position: absolute;
  bottom: 9rem;
  right: 16rem;
  max-width: 200px;
  width: 100%;
  z-index: 2;
}

.jumbotron .jumbotron-img-main {
  position: absolute;
  max-width: 550px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.jumbotron .jumbotron-img-main2 {
  display: none;
}

.services {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .services-head {
  max-width: 300px;
}

.services .services-head h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: var(--secondary);
}

.services .services-head p {
  text-align: center;
  font-weight: 300;
  color: #525252;
  font-size: 15px;
}

.services .services-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3rem 0;
}

.services .services-card-container .services-card {
  max-width: 350px;
  width: 100%;
  padding: 2rem;
  margin: 0px 15px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.services .services-card-container .services-card img {
  max-width: 40px;
  width: 100%;
}

.services .services-card-container .services-card h3 {
  font-weight: 600;
  color: var(--secondary);
  margin: 3px 0 7px 0;
}

.services .services-card-container .services-card p {
  font-weight: 300;
  font-size: 15px;
  color: #525252;
}

.services .services-card-container .services-card:hover {
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1700px) {
  .services .services-head {
    max-width: 400px;
  }
  .services .services-head h2 {
    font-size: 45px;
  }
  .services .services-head p {
    font-size: 18px;
  }
  .services .services-card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3rem 0;
  }
  .services .services-card-container .services-card {
    max-width: 380px;
    padding: 2.5rem;
    margin: 0px 20px;
    border-radius: 12px;
  }
  .services .services-card-container .services-card img {
    max-width: 55px;
    width: 100%;
  }
  .services .services-card-container .services-card h3 {
    font-size: 25px;
  }
  .services .services-card-container .services-card p {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .services .services-head h2 {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .services .services-card-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services .services-card-container .services-card {
    padding: 2rem;
    margin: 25px 0px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  .services .services-card-container .services-card h3 {
    color: var(--secondary);
    margin: 3px 0 7px 0;
  }
  .services .services-card-container .services-card p {
    font-weight: 300;
    font-size: 15px;
    color: #525252;
  }
  .services .services-card-container .services-card:hover {
    -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 425px) {
  .services {
    padding-top: 5rem;
    padding-bottom: 1rem;
  }
  .services .services-head {
    max-width: 300px;
  }
  .services .services-head h2 {
    font-size: 30px;
  }
  .services .services-head p {
    font-size: 14px;
  }
  .services .services-card-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services .services-card-container .services-card p {
    font-weight: 300;
    font-size: 14px;
    color: #525252;
  }
  .services .services-card-container .services-card:hover {
    -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  }
}

.project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 5rem 0 10rem 0;
  position: relative;
}

@media (min-width: 1140px) {
  .project {
    margin: 20rem 0 15rem 0;
  }
}

.project .circle-three,
.project .circle-two,
.project .circle-one {
  position: absolute;
  width: 25rem;
  height: 25rem;
  top: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 25%;
  border-radius: 50%;
  background-color: var(--primary-600);
  opacity: 0.05;
  z-index: -2;
  display: none;
}

@media (min-width: 1140px) {
  .project .circle-three,
  .project .circle-two,
  .project .circle-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.project .circle-two {
  left: 50%;
  opacity: 0.1;
  background-color: var(--secondary);
}

.project .circle-three {
  left: 75%;
  z-index: -3;
}

.project .project-head h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

@media (min-width: 768px) {
  .project .project-head h2 {
    font-size: 2.5rem;
    text-align: center;
  }
}

.project .project-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  -ms-grid-columns: (minmax(18rem, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.project .project-container .project-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em 1.5em;
  border-radius: 1.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0px 1.875em 3.125rem #0d00a41a;
          box-shadow: 0px 1.875em 3.125rem #0d00a41a;
}

.project .project-container .project-card .project-title {
  margin: 0.5em 0;
}

.project .project-container .project-card .project-title span {
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: var(--secondary) !important;
  text-transform: uppercase;
}

.project .project-container .project-card img {
  max-width: 500px;
  width: 100%;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25em;
}

@media (min-width: 768px) {
  .project .project-container .project-card img {
    height: 13rem;
  }
}

.project .project-container .project-card .project-card-description span {
  font-size: 40px;
  color: var(--primary);
}

.project .project-container .project-card .project-card-description h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  font-weight: 700;
}

.project .project-container .project-card .project-card-description p {
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.project .project-container .project-card .project-card-description ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.project .project-container .project-card .project-card-description ul li {
  padding: 0.5em 1.25em;
  font-size: 0.75rem;
  border-radius: 3em;
  font-weight: 700;
  color: #ffffff;
  margin: 0px 0.5rem 0.5rem 0;
  cursor: default;
  background: linear-gradient(96.75deg, #0d00a4 4.68%, #0b1473 95.32%), linear-gradient(96.75deg, #0d00a4 4.68%, #0b1473 95.32%);
}

.project button {
  width: 200px;
  height: 45px;
  border-radius: 30px;
  margin-top: 2rem;
  background: var(--primary);
  color: white;
  font-family: "poppins";
  font-size: 14px;
  line-height: 45px;
  letter-spacing: 0.5px;
  font-weight: 600;
  -webkit-box-shadow: 0px 5px 10px #ff480041;
          box-shadow: 0px 5px 10px #ff480041;
  border: none;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.project button:hover {
  cursor: pointer;
  background: #d63d00;
}

.attract {
  background: #fb8b24;
  margin: 10rem 0 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.attract .attract-description {
  max-width: 450px;
  margin-right: 2rem;
}

.attract .attract-description h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 3rem;
}

.attract .attract-description p {
  font-weight: 200;
  color: #fff;
  font-size: 15px;
  margin: 15px 0 25px 0;
}

.attract .attract-description button {
  width: 120px;
  height: 40px;
  border-radius: 30px;
  color: var(--primary);
  background: #fff;
  font-family: "poppins";
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 0.5px;
  font-weight: 600;
  -webkit-box-shadow: 0px 5px 10px #0000002a;
          box-shadow: 0px 5px 10px #0000002a;
  border: none;
  cursor: pointer;
  outline: none;
}

.attract img {
  max-width: 550px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1700px) {
  .attract {
    margin: 10rem 0 5rem;
  }
  .attract .attract-description {
    max-width: 900px;
    margin-right: 2rem;
  }
  .attract .attract-description h2 {
    font-size: 50px;
    line-height: 4rem;
  }
  .attract .attract-description p {
    max-width: 500px;
    font-size: 18px;
  }
  .attract .attract-description button {
    width: 150px;
    height: 55px;
    font-size: 18px;
    line-height: 55px;
  }
  .attract img {
    max-width: 650px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media (max-width: 1200px) {
  .attract .attract-description h2 {
    font-size: 35px;
  }
  .attract img {
    max-width: 400px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media (max-width: 1000px) {
  .attract {
    padding-top: 3rem;
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .attract .attract-description {
    margin-right: 0;
  }
  .attract img {
    max-width: 500px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media (max-width: 425px) {
  .attract {
    padding-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .attract .attract-description {
    margin-right: 0;
  }
  .attract .attract-description h2 {
    font-size: 30px;
  }
  .attract .attract-description p {
    font-size: 14px;
  }
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.contact .circle-two,
.contact .circle-one {
  position: absolute;
  width: 18rem;
  height: 18rem;
  bottom: -15rem;
  left: -5rem;
  border-radius: 50%;
  background-color: var(--primary-600);
  opacity: 0.05;
  z-index: -2;
}

@media (min-width: 768px) {
  .contact .circle-two,
  .contact .circle-one {
    width: 25rem;
    height: 25rem;
  }
}

.contact .circle-two {
  bottom: unset;
  left: unset;
  right: -5rem;
  opacity: 0.1;
  background: var(--secondary);
  top: -10rem;
}

.contact .contact-container {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 1.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .contact .contact-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3em;
    max-width: 58rem;
    background: #fff;
    padding: 2em;
    -webkit-box-shadow: 10px 30px 80px #0f067826;
            box-shadow: 10px 30px 80px #0f067826;
  }
}

@media (min-width: 1200px) {
  .contact .contact-container {
    padding: 4em;
  }
}

.contact .contact-container h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
}

@media (min-width: 1140px) {
  .contact .contact-container h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .contact .contact-container .contact-left {
    margin-right: 4rem;
  }
}

.contact .contact-container .contact-left svg path {
  fill: var(--primary);
}

.contact .contact-container .contact-left p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 1rem 0 3rem 0;
}

@media (min-width: 768px) {
  .contact .contact-container .contact-left p {
    max-width: 350px;
  }
}

@media (min-width: 1140px) {
  .contact .contact-container .contact-left p {
    font-size: 0.9rem;
    max-width: 350px;
  }
}

.contact .contact-container .contact-left .contact-image {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  margin-top: 2rem;
  background: #fb8b24;
  max-width: 500px;
  width: 100%;
}

.contact .contact-container .contact-media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0.75rem 0;
}

.contact .contact-container .contact-media-item:last-of-type {
  margin-bottom: 2rem;
}

.contact .contact-container .contact-media-item img {
  max-width: 25px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact .contact-container .contact-media-item a {
  font-weight: 300;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

@media (min-width: 1140px) {
  .contact .contact-container .contact-media-item a {
    font-size: 0.9rem;
  }
}

.contact .contact-container .contact-media-item svg {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #0d00a410;
  padding: 0.5em;
}

.contact .contact-container .contact-media-item svg path {
  fill: #0f0678;
}

.contact .contact-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .contact .contact-container form {
    max-width: 25rem;
  }
}

.contact .contact-container form .text-success {
  margin-bottom: 1rem;
}

.contact .contact-container form h3 {
  font-weight: 600;
  color: #76ff03;
}

.contact .contact-container form label {
  margin: 10px 0 5px;
}

.contact .contact-container form input,
.contact .contact-container form textarea {
  font-family: "poppins", Arial, Helvetica, sans-serif;
  width: 100%;
  border-radius: 1.25em;
  outline: none;
  padding: 1rem;
  border: none;
  background: #0d00a410;
  margin-bottom: 1.5rem;
}

.contact .contact-container form input::-webkit-input-placeholder,
.contact .contact-container form textarea::-webkit-input-placeholder {
  font-weight: 300;
  color: #909090;
}

.contact .contact-container form input:-ms-input-placeholder,
.contact .contact-container form textarea:-ms-input-placeholder {
  font-weight: 300;
  color: #909090;
}

.contact .contact-container form input::-ms-input-placeholder,
.contact .contact-container form textarea::-ms-input-placeholder {
  font-weight: 300;
  color: #909090;
}

.contact .contact-container form input::placeholder,
.contact .contact-container form textarea::placeholder {
  font-weight: 300;
  color: #909090;
}

.contact .contact-container form textarea {
  resize: none;
  height: 200px;
}

.contact .contact-container form button {
  padding: 0.75em 1.25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.15em;
  background: linear-gradient(102.18deg, var(--primary) 23.13%, var(--primary-500) 100%);
  color: white;
  font-family: "poppins";
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact .contact-container form button:hover {
  cursor: pointer;
}

.contact .contact-container form i,
.contact .contact-container form svg {
  margin-left: 10px;
}

footer {
  margin-top: 10rem;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #c8c4f9;
  font-size: 0.8rem;
}

footer h1 {
  font-size: 25px;
  margin-right: 15px;
  color: var(--secondary);
}

footer h1 span {
  color: var(--primary);
}
/*# sourceMappingURL=style.css.map */