@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  padding: 0;
  background-color: #F5F5F5;
  color: #2c2c2c;
}

.dev {
  border: 1px solid black;
}

.black-button {
  background-color: #2c5e82;
  border: solid 1.5px #2c5e82;
  color: white;
  padding: 0.5em 1.5em;
  border-radius: 0.7em;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 1em;
  text-decoration: none;
}
.black-button:hover {
  background-color: #1f425c;
  color: #e6e6e6;
}

.white-button {
  color: #2c2c2c;
  border: solid 1.5px #2c5e82;
  padding: 0.5em 1.5em;
  border-radius: 0.7em;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 1em;
  text-decoration: none;
}
.white-button:hover {
  background-color: #1f425c;
  color: #e6e6e6;
}

#topnav {
  padding-top: 2em;
}
#topnav #logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  font-weight: 600;
  color: #2c2c2c;
  text-decoration: none;
  overflow: hidden;
  text-decoration: none;
}
#topnav #logo img {
  width: 100%;
  height: 100%;
}

#topnav-links {
  padding-right: 2%;
}
#topnav-links a {
  display: block;
  margin: 0 1em;
  text-decoration: none;
  color: #4e4e4e;
  font-weight: 500;
  transition: 0.2s ease;
}
#topnav-links a:hover {
  color: #2c2c2c;
  transform: scale(1.05);
}

#about {
  padding-top: 5em;
  padding-bottom: 5em;
}
#about .profile-img {
  height: auto;
  overflow: hidden;
}
#about .profile-img img {
  border-radius: 100%;
}
#about .links {
  margin-top: 5em;
}
#about .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: rgba(150, 160, 198, 0.1058823529);
  overflow: hidden;
  text-decoration: none;
  background-color: rgba(150, 160, 198, 0.1058823529);
  margin-bottom: 1em;
  transition: 0.2s ease;
}
#about .social-icons a i {
  color: #4e4e4e;
  font-size: 1.5em;
}
#about .social-icons a:hover {
  transform: scale(1.2);
}

#experience {
  padding-top: 5em;
  padding-bottom: 3em;
  background-color: rgba(150, 160, 198, 0.1058823529);
}
#experience .card-container {
  overflow-y: auto;
  margin-top: 1em;
  margin-bottom: 2em;
}
#experience .experience-card {
  width: 100%;
  padding: 1.5em 0;
  display: flex;
  border-bottom: solid 1.5px #D3D3D3;
}
#experience .experience-card .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  min-width: 3em;
  border-radius: 12px;
  background-color: white;
  overflow: hidden;
}
#experience .experience-card .logo img {
  width: 2.5em;
  height: 2.5em;
}
#experience .experience-card span {
  font-weight: bold;
  color: #2c5e82;
}
#experience .experience-card h3 {
  line-height: 1.5em;
  margin: 0;
}
#experience .experience-card a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  cursor: pointer;
}
#experience .experience-card:last-child {
  border-bottom: none;
}

#services {
  padding-top: 5em;
  padding-bottom: 3em;
}
#services .services-container {
  display: flex;
  flex-direction: column;
  background-color: rgba(150, 160, 198, 0.1058823529);
  padding: 2em;
  border-radius: 1.5em;
  margin-bottom: 2em;
}
#services .services-container img {
  width: 3.5em;
  height: 3.5em;
  margin-right: 1em;
  opacity: 85%;
}
#services .services-container span {
  font-weight: 600;
  color: #4e4e4e;
}

#portfolio {
  background-color: rgba(150, 160, 198, 0.1058823529);
  padding-top: 5em;
  padding-bottom: 5em;
}
#portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
#portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}
#portfolio .portfolio-filters li:hover,
#portfolio .portfolio-filters li.filter-active {
  color: white;
  background-color: #2c5e82;
}
#portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
#portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
#portfolio .portfolio-item img {
  border-radius: 12px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  border-radius: 12px;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 15px;
}
#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  color: white;
}
#portfolio .portfolio-item .portfolio-info p {
  font-size: 14px;
  margin-bottom: 0;
  color: white;
}
#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 1.5em;
  top: calc(50% - 14px);
  color: white;
  transition: 0.3s;
  line-height: 0;
}
#portfolio .portfolio-item .portfolio-info .preview-link:hover,
#portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #2c5e82;
}
#portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

#references {
  padding-top: 5em;
  padding-bottom: 5em;
}
#references .image-selection {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 5em;
}
#references .reference-img {
  width: 3.5em;
  height: 3.5em;
  border-radius: 1em;
  overflow: hidden;
  margin: 0 1em;
  filter: grayscale(100%);
  transition: 0.2s ease;
  cursor: pointer;
}
#references .reference-img img {
  width: 100%;
  height: 100%;
}
#references span {
  font-weight: 600;
  color: #2c5e82;
}
#references .active {
  width: 5em;
  height: 5em;
  filter: grayscale(0%);
}

#contact {
  background-color: rgba(150, 160, 198, 0.1058823529);
  padding-top: 5em;
  padding-bottom: 5em;
}

footer {
  background-color: rgba(150, 160, 198, 0.1058823529);
}
footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1em;
}
footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: rgba(150, 160, 198, 0.1058823529);
  overflow: hidden;
  text-decoration: none;
  background-color: rgba(150, 160, 198, 0.1058823529);
  margin: 0 1em;
  transition: 0.2s ease;
}
footer .social-icons a i {
  color: #4e4e4e;
  font-size: 1.5em;
  cursor: pointer;
}
footer .social-icons a:hover {
  transform: scale(1.2);
}

@media (min-width: 769px) {
  .header1 {
    font-size: 3em;
    color: #2c2c2c;
    font-weight: 400;
  }
  .header2 {
    font-size: 2em;
    color: #2c2c2c;
    font-weight: 400;
  }
  .header3 {
    font-size: 1em;
    color: #4e4e4e;
    font-weight: 400;
  }
  .header4 {
    font-size: 1.2em;
    color: #2c2c2c;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0;
  }
  .header5 {
    font-size: 1.5em;
    color: #2c2c2c;
    font-weight: 500;
  }
  .text1 {
    font-size: 1em;
    color: #2c2c2c;
    font-weight: 500;
  }
  .text2 {
    font-size: 0.9em;
    color: #4e4e4e;
  }
  .text3 {
    font-size: 1.2em;
    color: #4e4e4e;
  }
  .text4 {
    font-size: 1em;
    color: #4e4e4e;
  }
  .profile-img img {
    width: 7em;
    height: 7em;
  }
}
@media (max-width: 768px) {
  .header1 {
    font-size: 2.5em;
    color: #2c2c2c;
    font-weight: 400;
  }
  .header2 {
    font-size: 1.8em;
    color: #2c2c2c;
    font-weight: 400;
  }
  .header3 {
    font-size: 1em;
    color: #4e4e4e;
    font-weight: 400;
  }
  .header4 {
    font-size: 1.2em;
    color: #2c2c2c;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0;
  }
  .header5 {
    font-size: 1.5em;
    color: #2c2c2c;
    font-weight: 500;
  }
  .text1 {
    font-size: 1em;
    color: #2c2c2c;
    font-weight: 500;
  }
  .text2 {
    font-size: 0.9em;
    color: #4e4e4e;
  }
  .text3 {
    font-size: 1.2em;
    color: #4e4e4e;
  }
  .text4 {
    font-size: 1em;
    color: #4e4e4e;
  }
  .profile-img img {
    width: 10em;
    height: 10em;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */