@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@400;600&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,800&family=Source+Code+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Source+Sans+Pro:wght@200;300;400&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  --background-color-1: linear-gradient(145deg, #1e2024, #23272b);
  --background-color-2: #212529;
  --color-primary: #fff;
  --color-secondary: #46538a;
  --color-grey-5: #2a2e35;
  --transition-primary: all .4s ease-in-out;
  --box-shadow-1: 10px 10px 19px #181a25, -10px -10px 19px #23242c;
  --box-shadow-2: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e;
}

body {
  font-family: 'Poppins', sans-serif, 'Open Sans', sans-serif;
  text-align: center;
  color: var(--color-primary);
  background-color: var(--background-color-2);
}

nav {
  height: 100%;
  padding: 1.2rem;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style-type: none;
}

nav ul li {
  margin: .5rem;
  padding: .3rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.29rem 0px;
}

.header-container {
  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;
  min-height: 60vh;
}

.header-container .left-header {
  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;
}

.header-container .left-header .header-img {
  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-radius: 5%;
  border: 4px solid var(--color-secondary);
  height: 90%;
  width: 80%;
  background-image: url("/img/Project2.jpg");
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
  -webkit-box-shadow: var(--box-shadow-1);
          box-shadow: var(--box-shadow-1);
}

.header-container .left-header .header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}

.right-header {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
}

.right-header h1 span {
  color: #46538a;
  position: relative;
}

.right-header h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--background-color-2);
  border-left: 2px solid #fff;
  -webkit-animation: typing 2.5s ease-in-out infinite;
          animation: typing 2.5s ease-in-out infinite;
}

.right-header p {
  margin: 1.5rem 0;
  line-height: 2rem;
}

@-webkit-keyframes typing {
  50%,
  50% {
    left: calc(100% + 5px);
  }
  88% {
    left: 0;
  }
}

@keyframes typing {
  50%,
  50% {
    left: calc(100% + 5px);
  }
  88% {
    left: 0;
  }
}

main {
  background: var(--background-color-1);
  margin-top: 3rem;
  padding-top: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

main h2 {
  text-transform: uppercase;
  font-weight: 702;
  font-size: 1.5rem;
  padding-bottom: 30px;
  color: #46538a;
}

main .boxes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(350px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .boxes .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: var(--box-shadow-2);
          box-shadow: var(--box-shadow-2);
  margin: 25px 15px;
  padding: 1.8rem;
  border-radius: 5%;
  width: 100%;
  height: 300px;
}

main .boxes .box p {
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

.main-title {
  text-align: center;
}

.main-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 700;
}

.main-title h2 span {
  color: var(--color-secondary);
}

.main-title h2 .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-grey-5);
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 5rem;
}

.contact-container {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-container .contact-content-con {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2rem;
}

.contact-container .contact-content-con .left-contact {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.contact-container .contact-content-con .left-contact h4 {
  margin-top: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.contact-container .contact-content-con .left-contact p {
  margin: 1rem 0;
  line-height: 2rem;
}

.right-contact {
  display: block;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  margin: 2rem;
}

.right-contact .input-control {
  margin: 1.5rem 0;
}

.right-contact .input-control input,
.right-contact .input-control textarea {
  border-radius: 30px;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  padding: .8rem 1.1rem;
  margin: .5rem;
  outline: none;
  border: none;
  color: var(--color-primary);
  background-color: var(--color-grey-5);
  width: 100%;
  resize: none;
}

@media (min-width: 80em) {
  .boxes {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=styles.css.map */