@import url("https://fonts.googleapis.com/css2?family=Vast+Shadow&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rambla:ital,wght@0,400;0,700;1,400;1,700&family=Vast+Shadow&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap");
@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");
* {
  box-sizing: border-box;
}

body {
  background-color: #efefef;
  font-family: "poppins", sans-serif;
}

.c_primary {
  color: #080F38;
}
.c_secondary {
  color: #6BA8BD;
}
.c_supporting {
  color: #1C5FFC;
}
.c_light {
  color: #ffffff;
}

.gap {
  gap: 15px;
}

.wrap {
  flex-wrap: wrap;
}

.center_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.center_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.center_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  text-decoration: none;
  color: #080F38;
}

header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 5;
  background: transparent;
}
header nav .container {
  background-color: transparent;
  border-radius: 12px;
  padding: 0 15px;
  background: rgba(8, 15, 56, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.7px);
  -webkit-backdrop-filter: blur(7.7px);
  border: 1px solid rgba(255, 255, 255, 0.17);
}
header nav .container a.navbar-brand {
  color: #ffffff;
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
}
header nav .container .navbar-toggler i {
  transform: rotate(90deg);
  transition: all 0.6s;
}
header nav .container .navbar-toggler.collapsed i {
  transform: rotate(0deg);
}
header nav .container .navbar-nav a.nav-link {
  font-size: 18px;
  font-family: "Rambla", sans-serif;
  color: #ffffff;
}

section.main {
  padding: 70px 0 0;
  background-image: url("../assets/background.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #D9D9D9;
  border-bottom: 15px solid #efefef;
  border-radius: 0 0 0 50px;
}
section.main .content {
  text-align: left;
}
section.main .content .line {
  width: 100px;
  height: 1px;
  background-color: #6BA8BD;
}
section.main .content h1 {
  font-family: "poppins", sans-serif;
  color: #efefef;
  font-weight: 100;
}
section.main .content h1 span {
  font-weight: 700;
}
section.main .content h3 {
  font-size: 18px;
}
section.main .content p {
  font-size: 16px;
  color: #c9c9c9;
  margin-bottom: 40px;
}
section.main .content p span {
  font-weight: 600;
  color: #ffffff;
}
section.main img {
  margin: auto;
}

section.textMovement {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  font-size: 25px;
  flex-wrap: nowrap;
  overflow: hidden;
  transform: translateX(0);
  animation: moveItems 5s linear;
  animation-timeline: scroll();
  padding: 20px;
}
section.textMovement div {
  white-space: nowrap;
  color: #080F38;
  font-family: "Rambla", sans-serif;
}
@keyframes moveItems {
  to {
    transform: translateX(-2000px);
  }
}

.clients .container .clientBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 50px;
}
.clients .container .clientBox img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}

section.whatIdo {
  padding: 100px 0;
  background-color: #efefef;
}
section.whatIdo .aboutContent h1 {
  font-size: 50px;
  font-style: italic;
}
section.whatIdo .aboutContent p {
  color: #545454;
  max-width: 950px;
  margin: auto;
}
section.whatIdo .content {
  padding: 15px;
  border-radius: 12px;
  position: relative;
  border: 1px solid #c9c9c9;
  transition: all 0.5s;
  height: 100%;
}
section.whatIdo .content img {
  height: 60px;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  margin-bottom: 15px;
}
section.whatIdo .content h3 {
  color: #545454;
  font-size: 25px;
  font-weight: 600;
}
section.whatIdo .content p {
  margin-bottom: 0;
  color: #545454;
}
section.whatIdo .content:hover {
  display: block;
  background-color: #ffffff;
}
section.whatIdo .content:hover img {
  filter: grayscale(0%);
  mix-blend-mode: multiply;
}

section.myProjects .projectDetail {
  border-bottom: 1px solid #080F38;
  padding: 0 0 50px 0;
}
section.myProjects .projectDetail .content {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 19px;
  transition: all 0.5s;
  position: relative;
  height: 100%;
}
section.myProjects .projectDetail .content img {
  margin-bottom: 15px;
  border-radius: 12px;
}
section.myProjects .projectDetail .content h3 {
  color: #080F38;
  padding: 15px 15px 0;
  font-size: 20px;
}
section.myProjects .projectDetail .content p {
  font-size: 12px;
  color: #080F38;
  padding: 0 15px;
}
section.myProjects .projectDetail .content a {
  color: #080F38;
  padding: 0 15px 15px;
  cursor: pointer;
  display: inline-block;
}
section.myProjects .projectDetail .content a:hover {
  color: rgba(8, 15, 56, 0.9);
}
section.myProjects .projectDetail .content:hover {
  background-color: #ffffff;
}

section.socialMedia .projectDetail {
  border-bottom: 1px solid #080F38;
  padding: 0 0 50px 0;
}
section.socialMedia .projectDetail a {
  color: #080F38;
}
section.socialMedia .projectDetail h3 {
  color: #080F38;
  padding: 15px 15px 0;
  font-size: 20px;
}
section.socialMedia .projectDetail .content {
  background-color: #ffffff;
  padding: 15px 15px 5px;
  border-radius: 19px;
  transition: all 0.5s;
  position: relative;
}
section.socialMedia .projectDetail .content img {
  border-radius: 12px;
}

section.Testimonials {
  padding: 50px 0;
}
section.Testimonials .review {
  padding: 15px;
  border: 1px solid #080F38;
  position: relative;
  height: 100%;
  padding-right: 50px;
  transition: all 0.5s;
  border-radius: 15px;
}
section.Testimonials .review span {
  font-family: "Archivo Black", sans-serif;
  font-size: 50px;
  position: absolute;
  top: 5px;
  right: 10px;
  color: #080F38;
}
section.Testimonials .review p {
  font-size: 16px;
  color: #080F38;
}
section.Testimonials .review h5 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: #080F38;
}
section.Testimonials .review:hover {
  background-color: rgba(8, 15, 56, 0.1);
}

section.contacts {
  padding: 100px 0;
}
section.contacts input {
  height: 46px;
}
section.contacts input,
section.contacts textarea {
  border: 1px solid rgba(8, 15, 56, 0.4);
  border-radius: 11px;
  background-color: #ffffff;
  color: #080F38;
}
section.contacts input::-moz-placeholder, section.contacts textarea::-moz-placeholder {
  color: #080F38;
}
section.contacts input::placeholder,
section.contacts textarea::placeholder {
  color: #080F38;
}
section.contacts input:focus,
section.contacts textarea:focus {
  color: #080F38;
  background-color: #ffffff;
  box-shadow: none;
  border-color: #080F38;
}

footer {
  background-color: #080F38;
  border-radius: 45px 45px 0 0;
  padding: 140px 0 40px 0;
  color: #000000;
  position: relative;
}
footer .schedule {
  border: 1px solid #080F38;
  border-radius: 45px;
  background-color: #c9c9c9;
  width: 90%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
}
footer .schedule h1 {
  font-size: 25px;
  color: #080F38;
}
footer .schedule p {
  font-size: 25px;
  text-align: center;
  color: #080F38;
}
footer .schedule a {
  color: #080F38;
  font-size: 25px;
}
footer h1 {
  color: #6BA8BD;
}
footer p {
  font-size: 25px;
  max-width: 350px;
  margin: 40px auto;
}
footer .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
footer .contact .c_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
footer .contact .c_list .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .contact .c_list .icon i {
  color: #ffffff;
}
footer .contact .c_list a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}

section.thankYou {
  margin: 150px auto;
}
section.thankYou p {
  font-size: 20px;
  color: #080F38;
  max-width: 700px;
  margin: 50px auto;
}

section.portfolio {
  padding: 100px 0;
}
section.portfolio .content {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
section.portfolio .content h3 {
  color: #080F38;
}
section.portfolio .content p {
  font-size: 16px;
  color: #ffffff;
  max-width: 500px;
  margin: auto;
}
section.portfolio .content a {
  color: #080F38;
  border-bottom: 1px solid #080F38;
  padding-bottom: 5px;
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
}
section.portfolio .content a:hover {
  color: rgba(8, 15, 56, 0.5);
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 40px;
  }
  h1 span {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h2 span {
    font-size: 35px;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 35px;
  }
  h1 span {
    font-size: 35px;
  }
  h2 {
    font-size: 25px;
  }
  h2 span {
    font-size: 25px;
  }
  footer {
    padding: 80px 0 40px 0;
  }
  footer .schedule {
    width: 95%;
    padding: 30px;
    position: relative;
  }
  footer .contact {
    flex-wrap: wrap;
  }
  section.main {
    padding: 100px 20px 0;
  }
  section.myProjects .projectDetail {
    margin-right: 0px;
  }
}/*# sourceMappingURL=style.css.map */