@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.spin {
  animation: spin 3s infinite linear;
}

.pulse {
  animation: pulse 2s infinite;
}

.grey-text {
  color: #9e9e9e !important;
}

.grey-text-lighten-1 {
  color: #bdbdbd !important;
}

.grey-text-lighten-2 {
  color: #e0e0e0 !important;
}

.grey-text-lighten-3 {
  color: #eeeeee !important;
}

.grey-text-lighten-4 {
  color: #f5f5f5 !important;
}

.grey-text-lighten-5 {
  color: #fafafa !important;
}

.grey-text-darken-1 {
  color: #757575 !important;
}

.grey-text-darken-2 {
  color: #616161 !important;
}

.grey-text-darken-3 {
  color: #424242 !important;
}

.grey-text-darken-4 {
  color: #4d4d4d !important;
}

.grey-text-darken-5 {
  color: #212121 !important;
}

.blue {
  background-color: #2196f3 !important;
}

.blue-lighten-1 {
  background-color: #42a5f5 !important;
}

.blue-lighten-2 {
  background-color: #64b5f6 !important;
}

.blue-lighten-3 {
  background-color: #90caf9 !important;
}

.blue-lighten-4 {
  background-color: #bbdefb !important;
}

.blue-lighten-5 {
  background-color: #e3f2fd !important;
}

.blue-darken-1 {
  background-color: #1e88e5 !important;
}

.blue-darken-2 {
  background-color: #1976d2 !important;
}

.blue-darken-3 {
  background-color: #1565c0 !important;
}

.blue-darken-4 {
  background-color: #0d47a1 !important;
}

.blue-text {
  color: #2196f3 !important;
}

.blue-text-lighten-1 {
  color: #42a5f5 !important;
}

.blue-text-lighten-2 {
  color: #64b5f6 !important;
}

.blue-text-lighten-3 {
  color: #90caf9 !important;
}

.blue-text-lighten-4 {
  color: #bbdefb !important;
}

.blue-text-lighten-5 {
  color: #e3f2fd !important;
}

.blue-text-darken-1 {
  color: #1e88e5 !important;
}

.blue-text-darken-2 {
  color: #1976d2 !important;
}

.blue-text-darken-3 {
  color: #1565c0 !important;
}

.blue-text-darken-4 {
  color: #0d47a1 !important;
}

.white-text {
  color: white !important;
}

.success-color {
  background-color: #4caf50;
}

.error-color {
  background-color: #f44336;
}

.fb-color {
  background-color: #4267B2;
}

.ig-color {
  background-color: #F56040;
}

.yt-color {
  background-color: #FF0000;
}

.center {
  text-align: center;
  justify-content: center;
  align-self: center;
}

.hide {
  display: none !important;
}

@media only screen and (max-width: 992px) {
  .hide-on-med-down {
    display: none !important;
  }
}
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 62.5%;
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 56.2%;
  }
}

body {
  padding: 0 10rem;
}
@media only screen and (max-width: 992px) {
  body {
    padding: 0;
  }
}
@media only screen and (min-width: 1367px) {
  body {
    padding: 0 30rem;
  }
}

a,
:visited {
  text-decoration: none;
  color: black;
}

h1 {
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

p {
  font-size: 1.4rem;
}

.secondary-heading {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(to left, #90caf9, #2196f3);
}

.btn {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0.3rem;
  color: #2196f3;
  border-bottom: 1px solid #2196f3;
  display: inline-block;
  font-size: 1.2rem;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  background-color: #2196f3;
  color: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0.2rem 0.4rem 0.5rem #9e9e9e;
}

.button {
  display: flex;
  justify-content: space-around;
  align-items: center;
  outline: none;
  border: none;
  min-width: 12rem;
  padding: 0.8rem 0.6rem;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
  background-color: #009688;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  outline: none;
  border: none;
  color: #424242;
  font-size: 1.6rem;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
}

.input-field {
  margin: 2rem 0;
}
.input-field label {
  display: block;
  font-weight: 500;
  color: #212121;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -86%;
  width: 85%;
  height: 100%;
  z-index: 1000;
  padding: 4rem 2rem;
  background-color: white;
  box-shadow: 3px 0 3px #eeeeee;
  transition: all 0.2s ease-in;
}
.mobile-nav__close-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.2rem;
}
.mobile-nav__list-item {
  font-size: 1.6rem;
  font-weight: 600;
}
.mobile-nav__list-item a {
  color: #4d4d4d;
}
.mobile-nav__list-item:not(:last-child) {
  margin-bottom: 2rem;
}

.project-card {
  background-color: white;
  box-shadow: 1px 2px 3px #e0e0e0;
  transition: all 0.6s;
}
.project-card__img-box {
  height: 300px;
}
@media only screen and (max-width: 600px) {
  .project-card__img-box {
    height: 550px;
  }
}
.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__content {
  padding: 2rem;
}
.project-card__title {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4d4d4d;
  margin-bottom: 0.5rem;
}
.project-card__list {
  display: flex;
  margin-bottom: 0.8rem;
}
.project-card__list-item {
  font-size: 1.2rem;
  color: #424242;
}
.project-card__list-item:not(last-child) {
  margin-right: 0.5rem;
}
.project-card:hover {
  box-shadow: 2px 3px 3px #e0e0e0, 3px 5px 3px #e0e0e0, 5px 3px 5px #e0e0e0, 4px 6px 8px #e0e0e0;
}

.container {
  max-width: 1280px;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .container {
    width: 90%;
  }
}

.header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 14rem 2rem 10rem;
  z-index: 1000;
}
.header__logo {
  font-size: 1.6rem;
  color: #f5f5f5;
  font-weight: bold;
}
.header__list {
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
}
@media only screen and (max-width: 600px) {
  .header__list {
    display: none;
  }
}
.header__list-item {
  transition: all 0.2s;
}
.header__list-item:hover {
  border-bottom: 1px solid #2196f3;
  padding-right: 0.5rem;
}
.header__list-item:not(:last-child) {
  margin-right: 3rem;
}
.header__link {
  color: #64b5f6;
}
@media only screen and (min-width: 601px) and (max-width: 992px) {
  .header__link {
    color: white;
  }
}
.header__menu {
  display: none !important;
  color: white;
}
@media only screen and (max-width: 600px) {
  .header__menu {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 992px) {
  .header {
    padding: 2rem 2rem 2rem 4rem;
  }
}

.footer {
  background-color: #2196f3;
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 8rem;
}
.footer__content h5 {
  margin-bottom: 0.8rem;
}
.footer__list {
  display: flex;
}
.footer__list-item {
  font-size: 3rem;
}
.footer__list-item a {
  color: white;
}
.footer__list-item:not(:last-child) {
  margin-right: 3rem;
}
.footer__copyright {
  background-color: #1976d2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0.6rem 0;
}
.footer__copyright i {
  margin-right: 0.3rem;
}

.hero {
  display: flex;
  position: relative;
  height: 100vh;
}
.hero h1 {
  font-size: 4rem;
}
.hero h1 span {
  color: #212121;
  display: inline-block;
  animation: pulse 2s infinite;
}
.hero h1 span:hover {
  text-decoration: underline;
}
.hero__left {
  position: relative;
  background-color: #2196f3;
  color: white;
  display: flex;
  align-items: center;
  flex: 0 0 60%;
  height: 100%;
  padding-left: 10rem;
  clip-path: polygon(0 0, 100% 0, 85vh 100%, 0 100%);
  z-index: 100;
}
@media only screen and (max-width: 992px) {
  .hero__left {
    padding-left: 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.hero__social-medias {
  position: absolute;
  display: flex;
  bottom: 1.5rem;
  left: 10rem;
}
@media only screen and (max-width: 992px) {
  .hero__social-medias {
    left: 4rem;
  }
}
.hero__social-media {
  font-size: 2.2rem;
}
.hero__social-media a {
  color: white;
}
.hero__social-media:not(:last-child) {
  margin-right: 2rem;
}
.hero__right {
  position: relative;
  display: flex;
  flex: 1;
  height: 100%;
  margin-left: -16vh;
  justify-content: center;
  align-items: center;
  background-color: white;
}
@media only screen and (max-width: 992px) {
  .hero__right {
    margin-left: 0;
    align-items: center;
  }
}
.hero__img-box {
  width: 250px;
  height: 250px;
  border-radius: 50%;
}
@media only screen and (max-width: 992px) {
  .hero__img-box {
    width: 160px;
    height: 160px;
    z-index: 1000;
    margin-top: -35px;
  }
}
@media only screen and (min-width: 1367px) {
  .hero__img-box {
    position: absolute;
    left: 50%;
    transform: translate(-10%);
  }
}
.hero__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.hero__wave-box {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.hero__wave-box svg {
  display: block;
}
@media only screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
  }
}

.projects-section {
  padding: 5rem 3rem;
  background-color: #f5f5f5;
}
.projects-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 600px) {
  .projects-section__grid {
    grid-template-columns: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .projects-section {
    padding: 5rem 2rem;
  }
}

.about {
  padding: 5rem 0;
  background-color: #1976d2;
}
.about__video-container {
  margin-top: 2rem;
}
.about p {
  margin-top: 2rem;
  line-height: 3rem;
  text-align: justify;
  color: #f5f5f5;
}

.contact {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
.contact__header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}
.contact__header > div {
  padding: 4rem 0;
  background-color: #2196f3;
  color: white;
}
.contact__header > div i {
  font-size: 6rem;
  margin-bottom: 1rem;
}
.contact__header > div:nth-child(2) {
  background-color: #1565c0;
}
@media only screen and (max-width: 600px) {
  .contact__header {
    grid-template-columns: 100%;
  }
}
.contact__main {
  margin-top: 5rem;
}
.contact__footer p {
  margin-top: 4rem;
}

#error-list {
  color: #e57373;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: #f44336;
  padding: 0.8rem 1rem;
}
#error-list li {
  color: #fafafa;
  font-size: 1.3rem;
  margin: 0.8rem 0;
  font-weight: bold;
}

/*# sourceMappingURL=main.css.map */
