html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: Roboto;
}
a {
  text-decoration: none;
  color: #000;
}
.circle {
  animation: rotate 7s linear infinite;
}
.logo {
  cursor: pointer;
}
nav {
  position: fixed;
  width: 85%;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  font-family: Roboto;
  font-weight: 600;
  font-size: 18px;
  padding: 27px 65px;
  border-radius: 25px;
  z-index: 1000;
  box-shadow: 5px 9px 8px -7px rgba(64,64,64,0.212);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0 !important;
  padding: 0 !important;
}
nav ul a {
  padding: 12px 0px;
  border-radius: 18px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1b3834;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
nav ul a:hover {
  background-color: transparent;
}
nav ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
nav .desktop-buttons {
  display: flex;
  gap: 10px;
}
nav .desktop-buttons a {
  background-color: transparent;
  border: 1px solid #e7eae9;
  border-radius: 19px;
  padding: 20px 24px;
  transition: background-color 0.3s;
}
nav .desktop-buttons a:hover {
  background-color: #c6c6c6;
}
nav .desktop-buttons button {
  color: #1b3834;
  background-color: #f7f7f7;
  border-radius: 32px;
  width: 170px;
  height: 63px;
  border: none;
  font-family: Roboto;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in;
}
nav .desktop-buttons button span {
  width: 0;
  height: 0;
  opacity: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ddf1e6;
  border-radius: 100%;
  transition: all 0.4s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
nav .desktop-buttons button:hover {
  padding-left: 30px;
}
nav .desktop-buttons button:hover span {
  width: 41px;
  height: 41px;
  margin-left: 20px;
  opacity: 1;
}
nav .burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
}
nav .burger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}
nav .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
nav .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
nav .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}
nav .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 90;
}
nav .mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .mobile-menu ul .linkedin-button-mobile {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7eae9;
  padding: 10px;
}
nav .mobile-menu ul .linkedin-button-mobile img {
  width: 20px !important;
}
nav .mobile-menu ul .linkedin-button-mobile::after {
  background-color: transparent !important;
}
nav .mobile-menu ul a {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
}
nav .mobile-menu ul a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1b3834;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
nav .mobile-menu ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media (max-width: 1250px) {
  nav .menu,
  nav .desktop-buttons {
    display: none;
  }
  nav .burger-menu {
    display: flex;
  }
  nav .mobile-menu.active {
    display: block;
  }
}
@media (max-width: 400px) {
  nav {
    position: relative;
    box-shadow: none;
  }
  nav img {
    width: 150px;
  }
}
#home {
  position: relative;
  width: 96%;
  overflow: hidden;
  border-radius: 32px;
  height: 93vh;
  margin: auto;
  background-color: #1b3834;
  margin-top: 58px;
  -webkit-transform: translate3d(0, 0, 0);
}
#home video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
#home .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}
#home article,
#home div {
  z-index: 10;
}
#home article {
  position: absolute;
  top: 50%;
  left: 66px;
  transform: translateY(-50%);
}
#home article h1 {
  font-family: Paralucent;
  font-size: clamp(45px, 6vw, 106px);
  line-height: clamp(42px, 5.5vw, 90px);
  font-weight: 500;
  color: #fff;
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 55px;
}
#home article button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-radius: 32px;
  width: 210px;
  height: 73px;
  background-color: #fff;
  color: #1b3834;
  padding-left: 36px;
  font-family: Roboto;
  font-size: 19px;
  font-weight: 600;
  transition: background-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
#home article button span {
  z-index: 2;
}
#home article button img {
  z-index: 2;
  position: absolute;
  right: 28px;
}
#home article button div {
  position: absolute;
  right: 10px;
  background-color: #ddf1e6;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.2s linear, width 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9), height 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  z-index: 1;
}
#home article button:hover div {
  right: 0;
  border-radius: 53px;
  height: 250px;
  width: 250px;
}
#home .section-footer {
  position: absolute;
  bottom: 25px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-family: Roboto;
  font-weight: 500;
}
#home .section-footer div:first-child {
  display: flex;
  align-items: center;
  gap: 22px;
}
#home .section-footer div:first-child p {
  font-size: clamp(18px, 3vw, 23px);
}
#home .section-footer div:first-child img {
  width: 43px;
  height: auto;
}
@media (max-width: 1250px) {
  #home {
    height: 800px;
  }
  #home article {
    position: relative;
    width: fit-content;
    margin: auto;
    text-align: left;
    left: 0;
  }
  #home article h1 {
    max-width: 750px;
  }
  #home .section-footer {
    width: fit-content;
    margin: auto;
    position: relative;
    bottom: -350px;
    left: 2%;
    transform: translateX(0);
  }
  #home .section-footer .footer-text {
    display: none;
  }
}
@media (max-width: 820px) {
  #home {
    height: 600px;
    margin-top: 130px;
  }
  #home article {
    left: 20px;
  }
  #home article button {
    width: 200px;
    height: 69px;
  }
  #home article button div {
    width: 49px;
    height: 49px;
  }
  #home article button img {
    right: 26px;
  }
  #home .section-footer {
    bottom: -250px;
    margin: 0;
    margin-left: 10px;
    margin-top: 10px;
  }
  #home .section-footer .circle {
    width: 40px !important;
  }
}
@media (max-width: 400px) {
  #home {
    margin-top: 40px;
    height: 530px;
    width: 95%;
  }
  #home article {
    top: 250px;
    left: 10px;
  }
  #home .section-footer {
    bottom: -140px;
  }
  #home .section-footer div:first-child {
    gap: 10px;
  }
  #home .section-footer .circle {
    width: 30px !important;
  }
}
.breadcrumb {
  color: #a3b5ab;
}
.breadcrumb strong {
  color: #1b3834;
  font-weight: 500 !important;
}
#about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 90%;
  margin: auto;
  margin-top: 95px;
}
#about-us .breadcrumb {
  margin-top: 45px;
  color: #9a9a9a;
}
#about-us .title h1 {
  font-family: Paralucent;
  font-size: clamp(30px, 6vw, 40px);
  line-height: clamp(33px, 5.5vw, 50px);
  font-weight: 500;
  color: #1b3834;
  margin-bottom: 15px;
}
#about-us .title p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #9a9a9a;
}
#about-us button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-radius: 32px;
  width: 210px;
  height: 73px;
  background-color: #f0f8f4;
  color: #1b3834;
  padding-left: 36px;
  font-family: Roboto;
  font-size: 19px;
  font-weight: 500;
  transition: background-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
#about-us button span {
  z-index: 2;
}
#about-us button img {
  z-index: 2;
  position: absolute;
  right: 28px;
}
#about-us button div {
  position: absolute;
  right: 10px;
  background-color: #ddf1e6;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.2s linear, width 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9), height 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  z-index: 1;
}
#about-us button:hover div {
  right: 0;
  border-radius: 53px;
  height: 300px;
  width: 300px;
}
#about-us .title {
  width: 80%;
}
#about-us article:last-child {
  width: 100%;
  height: 540px;
  margin: auto;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
#about-us article:last-child .background-image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: fill;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#about-us article:last-child div {
  position: absolute;
  bottom: 48px;
  right: 52px;
  display: flex;
  align-items: center;
  gap: 30px;
}
#about-us article:last-child div img {
  width: 150px;
}
#about-us article:last-child div p {
  font-family: Paralucent;
  font-weight: 200;
  letter-spacing: 1.1px;
  color: #1b3834;
  font-size: clamp(9px, 1vw, 12px);
  line-height: clamp(11px, 2.5vw, 15px);
}
@media (max-width: 1250px) {
  #about-us article:last-child div {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }
}
@media (max-width: 820px) {
  #about-us {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 400px) {
  #about-us {
    margin-top: 25px;
    width: 95%;
  }
  #about-us button {
    height: 65px;
    width: 180px;
    padding-left: 25px;
  }
  #about-us button div {
    height: 40px;
    width: 40px;
  }
  #about-us button img {
    right: 22px;
  }
  #about-us .breadcrumb {
    width: 95%;
    margin: 50px auto;
  }
  #about-us .title {
    width: 95%;
    margin: auto;
  }
  #about-us article:last-child {
    height: 320px;
  }
  #about-us article:last-child div {
    gap: 10px;
  }
  #about-us article:last-child div img {
    width: 100px;
  }
}
.divider {
  height: 2px;
  background-color: #e2e2e2;
  width: 89%;
  margin: 70px auto;
}
#services {
  text-align: center;
  color: #1b3834;
  font-family: Paralucent;
  margin-top: 100px;
}
#services .breadcrumb p {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  color: #a3b5ab;
}
#services .breadcrumb p strong {
  font-weight: 600;
  color: #1b3834;
}
#services .title {
  margin-bottom: 100px;
}
#services .title h1 {
  font-weight: 600;
  font-size: 38px;
}
#services .title p {
  font-family: Paralucent;
  font-weight: 200;
  font-size: clamp(20px, 2.5vw, 23px);
  line-height: clamp(25px, 2.5vw, 28px);
}
#services .title p strong {
  color: #a3b5ab;
  font-weight: 300;
}
#services article {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: space-evenly;
  gap: 23px;
  margin: auto;
  margin-top: 65px;
  font-family: Roboto;
}
#services article .develop {
  background: url("../images/dev pc.png"), linear-gradient(to bottom left, #0b1917, #1b3834);
  background-size: cover;
  background-position: center;
}
#services article .contact {
  background: url("../images/Contact sup.png"), linear-gradient(to bottom left, rgba(242,253,252,0.537), rgba(27,56,52,0.204));
  background-size: cover;
  background-position: center;
}
#services article .contact h2 {
  color: #1b3834 !important;
}
#services article .contact .card-footer p {
  color: #1b3834 !important;
}
#services article .contact .card-breadcrumb {
  color: #1b3834 !important;
}
#services article .contact .card-breadcrumb strong {
  color: #1b3834 !important;
}
#services article .custom {
  background: url("../images/custom.png"), linear-gradient(to bottom left, #0b1917, #1b3834);
  background-size: cover;
  background-position: center;
}
#services article .card {
  width: 413px;
  height: 558px;
  overflow: hidden;
  position: relative;
  padding: 0 73px;
  padding-top: 45px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  transform-style: preserve-3d;
}
#services article .card:hover {
  transform: perspective(1000px) translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.274);
}
#services article .card h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-family: Paralucent;
  font-weight: 500;
  color: #fff;
  text-align: left;
}
#services article .card .card-breadcrumb {
  display: flex;
  justify-content: space-between;
  color: #a3b5ab;
  font-weight: 500;
}
#services article .card .card-breadcrumb p:first-child {
  font-size: 16px;
}
#services article .card .card-breadcrumb strong {
  color: #ddf1e6;
  font-weight: 500;
}
#services article .card .card-breadcrumb p:last-child {
  font-size: 20px;
}
#services article .card .card-footer {
  display: flex;
  width: 80%;
  justify-content: space-between;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
#services article .card .card-footer p {
  font-size: 11px;
  font-weight: 300;
  width: 220px;
  text-align: left;
  color: #f8fefe;
}
@media (max-width: 1250px) {
  #services article {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 820px) {
  #services article .card {
    padding: 0 25px;
    padding-top: 25px;
    width: 85%;
  }
}
@media (max-width: 400px) {
  #services article .card {
    height: 420px;
    padding: 0 25px;
    padding-top: 25px;
    width: 85%;
  }
  #services article .card .card-footer {
    width: 90%;
    margin: auto;
    margin-left: 10px;
  }
  #services article .card .card-footer img {
    width: 25px;
  }
}
#intermediate {
  width: 90%;
  margin: auto;
  margin-top: 61px;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#intermediate .solar-panel {
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
  min-height: 422px;
}
#intermediate article {
  margin-top: 0;
  background: linear-gradient(to left, #dde4dd, #fff);
  align-items: center;
  border-radius: 0 0 25px 25px;
  padding: 70px 5vw 70px 70px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#intermediate article div:first-child {
  display: flex;
  width: fit-content;
}
#intermediate article div:first-child .dark-logo {
  margin-right: 100px;
}
#intermediate article div:first-child h1 {
  color: #1b3834;
  font-family: Paralucent;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 45px);
  line-height: clamp(29px, 3vw, 48px);
}
#intermediate article div:last-child p {
  font-size: 14px;
  max-width: 300px;
  color: #1b3834;
  line-height: 20px;
}
#intermediate article div:last-child button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-radius: 32px;
  width: 210px;
  height: 73px;
  background-color: #fff;
  color: #1b3834;
  padding-left: 36px;
  font-family: Roboto;
  font-size: 19px;
  font-weight: 500;
  transition: background-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
#intermediate article div:last-child button span {
  z-index: 2;
}
#intermediate article div:last-child button img {
  z-index: 2;
  position: absolute;
  right: 28px;
}
#intermediate article div:last-child button div {
  position: absolute;
  right: 10px;
  background-color: #ddf1e6;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.2s linear, width 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9), height 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  z-index: 1;
}
#intermediate article div:last-child button:hover div {
  right: 0;
  border-radius: 53px;
  height: 250px;
  width: 250px;
}
@media (max-width: 1250px) {
  #intermediate .dark-logo {
    display: none;
  }
  #intermediate article {
    gap: 20px;
    padding-left: 25px;
  }
}
@media (max-width: 870px) {
  #intermediate .solar-panel {
    min-height: 278px;
  }
  #intermediate article {
    padding: 25px 10px;
    padding-left: 20px;
    flex-direction: column;
  }
}
#contact {
  width: 90%;
  margin: auto;
  margin-top: 170px;
}
#contact article {
  display: flex;
  justify-content: space-between;
}
#contact article .title {
  color: #1b3834;
}
#contact article .title .divider {
  height: 1px;
  background-color: rgba(27,56,52,0.133);
  margin: 0;
  margin-top: 140px;
  margin-bottom: 35px;
}
#contact article .title h1 {
  margin-top: 0;
  font-size: clamp(38px, 3.5vw, 57px);
  line-height: clamp(42px, 3.5vw, 58px);
  font-weight: 500;
  font-family: Paralucent;
}
#contact article .title p {
  font-size: 27px;
  font-weight: 300;
  line-height: 32px;
}
#contact article form {
  width: 100%;
  max-width: 692px;
  margin-right: 10vw;
}
#contact article form .inputs {
  display: grid;
  grid-template-columns: 50% 50%;
  column-gap: 10px;
  row-gap: 43px;
}
#contact article form .inputs .form-item {
  width: 100%;
  position: relative;
  height: 50px;
  margin: 0;
  padding: 0;
}
#contact article form .inputs .form-item label {
  position: absolute;
  right: 30px;
  top: 0;
  font-family: Roboto;
  font-weight: 500;
  font-size: 16px;
  color: #617774;
}
#contact article form .inputs .form-item input {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(27,56,52,0.255);
  font-size: 21px;
  font-family: Roboto;
  color: #617774;
  padding: 15px 0;
}
#contact article form textarea {
  margin-top: 60px;
  border: none;
  outline: none;
  width: 100%;
  min-height: 50px;
  font-family: Roboto;
  font-size: 21px;
  color: #617774;
  padding: 15px 0;
  resize: vertical;
  border-bottom: 1px solid rgba(27,56,52,0.255);
}
#contact article form .checkbox {
  display: flex;
  gap: 16px;
  margin-top: 54px;
}
#contact article form .checkbox label {
  font-size: 16px;
  color: #1b3834;
  font-family: Roboto;
  font-weight: 500;
}
#contact article form .checkbox input {
  position: relative;
  cursor: pointer;
}
#contact article form .checkbox input:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: " ";
  background-color: #fafffc;
  border: 1px solid #bad0cd;
  width: 200%;
  height: 200%;
  border-radius: 100%;
}
#contact article form .checkbox input:checked:before {
  z-index: 1;
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ddf1e6;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
#contact article form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-radius: 32px;
  width: 210px;
  height: 73px;
  background-color: #1b3834;
  color: #ddf1e6;
  padding-left: 36px;
  font-family: Roboto;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 53px;
  transition: background-color 0.8s;
}
#contact article form button span {
  z-index: 2;
}
#contact article form button img {
  z-index: 2;
  position: absolute;
  right: 28px;
}
#contact article form button div {
  position: absolute;
  right: 10px;
  background-color: #ddf1e6;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.2s linear, width 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9), height 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  z-index: 1;
}
#contact article form button:hover {
  background-color: transparent;
  color: #1b3834;
}
#contact article form button:hover div {
  right: 0;
  border-radius: 53px;
  height: 250px;
  width: 250px;
}
@media (max-width: 1400px) {
  #contact form {
    width: 80%;
    margin-right: 0 !important;
  }
}
@media (max-width: 1250px) {
  #contact {
    width: max-content;
  }
  #contact .title {
    margin-bottom: 50px;
  }
  #contact .title h1,
  #contact .title p {
    margin: 0;
    margin-bottom: 10px;
  }
  #contact .title .divider {
    display: none;
  }
  #contact .title p:last-child {
    display: none;
  }
  #contact article {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  #contact {
    width: 95%;
  }
  #contact article {
    margin: auto;
    width: 95%;
  }
  #contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact form .inputs {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
}
footer {
  background-color: #1b3834;
  color: #fff;
  padding-left: 113px;
  padding-right: 140px;
  padding-top: 100px;
  padding-bottom: 27px;
  width: 90%;
  margin: auto;
  border-radius: 28px;
  box-sizing: border-box;
  margin-top: 175px;
}
footer .top {
  display: flex;
  justify-content: space-between;
}
footer .top .first-group img {
  width: 286px;
  height: 60px;
  margin-bottom: 28px;
}
footer .top .first-group p {
  font-size: 12px;
  color: #f8fefe;
  font-weight: 300;
  line-height: 18px;
}
footer .top .first-group .fourth-group-mobile {
  display: none;
}
footer .top .second-group p {
  font-size: 20px;
  color: #ddf1e6;
  font-weight: 500;
  margin-bottom: 25px;
}
footer .top .second-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
footer .top .second-group div a {
  text-decoration: none !important;
  cursor: pointer;
  color: #73887c;
}
footer .top .fourth-group h4 {
  font-weight: 500;
  color: #ddf1e6;
  font-size: 27px;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 33px;
}
footer .top .fourth-group div {
  display: flex;
  gap: 17px;
}
footer .top .fourth-group div p {
  color: #ddf1e6;
  font-size: 18px;
}
footer .divider {
  background-color: #2c4d48;
  width: 100%;
  margin-bottom: 40px;
}
footer .bottom {
  display: flex;
  justify-content: space-between;
}
footer .bottom p {
  color: #ddf1e6;
  font-weight: lighter;
}
footer .bottom p a {
  color: #ddf1e6;
  text-decoration: underline;
}
@media (max-width: 1370px) {
  footer {
    height: 838px;
  }
  footer .top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .top .first-group img {
    margin-left: 50px;
  }
  footer .top .first-group .fourth-group-mobile {
    display: block;
    margin-bottom: 20px;
    margin-top: 50px;
  }
  footer .top .first-group .fourth-group-mobile h4 {
    font-weight: 300;
    font-size: 17px;
    font-family: Paralucent;
    margin: 0;
    margin-bottom: 10px;
  }
  footer .top .first-group .fourth-group-mobile div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  footer .top .first-group .fourth-group-mobile div p {
    color: #ddf1e6;
    font-size: 18px;
    margin: 0;
  }
  footer .top .first-group .fourth-group-mobile div img {
    width: 30px;
    margin: 0;
  }
  footer .second-group {
    width: max-content;
    text-align: left;
    margin-bottom: 50px;
  }
  footer .second-group div {
    display: flex;
    align-items: center;
    width: 100% !important;
  }
  footer .third-group {
    text-align: left;
  }
  footer .fourth-group {
    display: none;
  }
}
@media (max-width: 900px) {
  footer {
    padding: 0px 10px;
    padding-top: 50px;
  }
  footer .divider {
    margin: 10px auto;
  }
  footer .bottom {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
}
@media (max-width: 520px) {
  footer {
    height: fit-content;
    padding-bottom: 25px;
  }
  footer .top .third-group,
  footer .top .second-group {
    width: 90%;
  }
  footer .top .third-group div,
  footer .top .second-group div {
    width: 10%;
  }
  footer .bottom {
    text-align: center;
  }
}
.last-paragraph {
  text-align: center;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: lighter;
  margin-top: 44px;
  margin-bottom: 35px;
}
#second-home {
  background-color: #1b3834;
  height: 540px;
  width: 96%;
  margin: auto;
  margin-top: 60px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
#second-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  repeat: no-repeat;
}
#second-home article {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  height: 100%;
}
#second-home article div:first-child {
  padding-top: 138px;
  text-align: center;
}
#second-home article div:first-child .breadcrumb {
  color: #a3b5ab;
}
#second-home article div:first-child .breadcrumb strong {
  color: #ddf1e6;
}
#second-home article div:first-child h1 {
  font-family: Paralucent;
  font-size: clamp(38px, 8vw, 82px);
  font-weight: 500;
  color: #fff;
  margin: 16px 0 80px 0;
}
#second-home article div:first-child div {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
  width: fit-content;
  margin: auto;
  font-weight: 300;
}
#second-home article div:first-child div img {
  width: 35px;
  height: auto;
}
#second-home article .section-footer {
  font-family: Roboto;
  font-size: 12px;
  position: absolute;
  bottom: 90px;
  right: 130px;
  color: #fff;
}
#second-home article .section-footer strong {
  font-weight: 400;
}
@media (max-width: 1000px) {
  #second-home .breadcrumb,
  #second-home .section-footer {
    display: none;
  }
}
@media (max-width: 400px) {
  #second-home {
    height: 291px;
  }
  #second-home img {
    transform: translate(-233px, 3px) scale(2.5);
    object-fit: contain;
  }
  #second-home .about-image {
    transform: scale(1);
    object-fit: cover;
  }
  #second-home div:first-child {
    padding-top: 75px !important;
  }
  #second-home div:first-child h1 {
    margin-bottom: 15px !important;
  }
}
#second-about-us {
  width: 90%;
  margin: auto;
  margin-top: 110px;
  max-width: 666px;
  margin-bottom: 90px;
  text-align: center;
}
#second-about-us h1 {
  font-family: Paralucent;
  font-size: 30px;
  font-weight: 300;
  color: #1b3834;
  line-height: 37px;
  margin-bottom: 30px;
}
#second-about-us h1 strong {
  font-weight: 500;
}
#second-about-us p {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #9a9a9a;
}
.service-section {
  width: 96%;
  height: 629px;
  margin: auto;
  margin-top: 22px;
  border-radius: 20px;
  background: linear-gradient(to left, #8f9d9b, #f1f1f1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.service-section .text-container {
  margin-bottom: 60px;
  max-width: 651px;
  padding-left: 100px;
}
.service-section .text-container .service-breadcrumb {
  display: flex;
  gap: 36px;
  align-items: center;
}
.service-section .text-container .service-breadcrumb p:first-child {
  font-size: 20px;
  color: #1b3834;
}
.service-section .text-container .service-breadcrumb p:last-child {
  font-size: 16px;
  color: #a3b5ab;
  font-weight: 400;
}
.service-section .text-container .service-breadcrumb strong {
  font-size: 16px !important;
  font-weight: 400;
  color: #1b3834;
}
.service-section .text-container h1 {
  font-family: Paralucent;
  font-size: 40px;
  font-weight: 600;
  color: #1b3834;
  margin-top: 45px;
  margin-bottom: 50px;
}
.service-section .text-container p {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 26px;
  color: #1b3834;
  font-weight: 300;
}
.service-section .text-container p strong {
  font-weight: 400;
  line-height: 31px;
  font-size: clamp(18px, 2.5vw, 24px);
}
.service-section .image-container img {
  width: 760px;
  height: 430px;
}
@media (max-width: 1250px) {
  .service-section {
    flex-direction: column !important;
    height: fit-content !important;
    padding: 25px 10px 0 10px !important;
  }
  .service-section .service-breadcrumb {
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    width: 100% !important;
  }
  .service-section .text-container {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 820px) {
  .service-section {
    width: 85% !important;
  }
  .service-section .service-breadcrumb {
    width: 90% !important;
    gap: 0px !important;
    margin: auto;
  }
  .service-section .text-container h1 {
    width: min-content;
    margin: 40px auto !important;
  }
  .service-section .text-container p {
    padding-left: 10px !important;
  }
  .service-section .image-container img {
    width: 100% !important;
    height: auto !important;
  }
}
#contact-service {
  flex-direction: row-reverse;
  background: linear-gradient(to left, #1b3834, #0b1917);
}
#contact-service .text-container {
  margin-right: 200px;
}
#contact-service .text-container h1 {
  color: #ddf1e6;
}
#contact-service .text-container p {
  color: #8f9d9b;
}
#contact-service .text-container p strong {
  color: #ddf1e6;
}
#contact-service .image-container img {
  width: 816px;
  height: 629px;
  object-fit: fill;
}
#custom-service .text-container {
  margin-left: 210px;
}
#custom-service .image-container {
  margin-top: auto;
  width: fit-content;
}
#custom-service .image-container img {
  width: 820px;
  height: 509px;
  object-fit: fill;
}
.contact-service .title {
  position: relative;
  padding-top: 70px;
  text-align: left;
}
.contact-service .title img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 45px;
}
.contact-service .title h1 {
  margin-bottom: 30px !important;
}
.contact-service .title p {
  font-size: 20px !important;
  color: #1b3834 !important;
}
#about-us-section {
  width: 90%;
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 70px;
  margin-top: 131px;
}
#about-us-section h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: #1b3834;
  line-height: 37px;
  max-width: 666px;
}
#about-us-section p {
  max-width: 633px;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 26px;
  color: #9a9a9a;
}
#about-us-section p strong {
  font-weight: 400;
  color: #1b3834;
}
@media (max-width: 1250px) {
  #about-us-section {
    flex-direction: column;
    gap: 0px;
    margin-top: 75px;
    margin-bottom: 75px;
    width: 95%;
  }
  #about-us-section h3 {
    margin-bottom: 20px;
  }
}
#mission-section {
  width: 77%;
  margin: auto;
  background-color: #f2f7f4;
  border-radius: 33px;
  padding: 64px 182px 84px 176px;
  display: flex;
  gap: 100px;
  margin-top: 83px;
  justify-content: center;
}
#mission-section .number {
  color: #1b3834;
}
#mission-section h3 {
  font-size: 45px;
  font-weight: 600;
  color: #1b3834;
  margin-bottom: 41px;
}
#mission-section p {
  max-width: 645px;
  font-size: 18px;
  line-height: 26px;
  color: #9a9a9a;
}
#mission-section p strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  color: #1b3834;
  margin-bottom: 20px;
}
@media (max-width: 1250px) {
  #mission-section {
    flex-direction: column;
    gap: 100px;
    width: fit-content;
    padding: 75px 20px;
    width: 90%;
    margin: auto;
  }
  #mission-section div {
    width: fit-content;
    margin: auto;
  }
}
.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.42, 0, 0, 1);
  will-change: opacity, transform;
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-left.hidden {
  transform: translateX(-50px);
}
.fade-left.show {
  transform: translateX(0);
}
.fade-right.hidden {
  transform: translateX(50px);
}
.fade-right.show {
  transform: translateX(0);
}
.fade-up.hidden {
  transform: translateY(50px);
}
.fade-up.show {
  transform: translateY(0);
}
.fade-down.hidden {
  transform: translateY(-50px);
}
.fade-down.show {
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
#privacy-policy-home {
  display: flex;
  flex-direction: column;
  background-color: #ddf1e6;
  width: 96%;
  margin: auto;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
  height: 426px;
  border-radius: 25px;
  gap: 40px;
}
#privacy-policy-home h1 {
  color: #1b3834;
  font-size: clamp(30px, 4vw, 60px);
  font-family: Paralucent;
  font-weight: 500;
  margin: 0;
  margin-top: 75px;
}
#privacy-policy-home p {
  color: #1b3834;
  font-size: clamp(14px, 2.5vw, 16px);
  font-family: Roboto;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 400px) {
  #privacy-policy-home h1 {
    margin-top: 0;
  }
}
.privacy-policy-link {
  text-decoration: underline;
  color: #000;
}
#privacy-policy-content {
  display: flex;
  width: 90%;
  height: max-content;
  margin: auto;
  margin-top: 150px;
  margin-bottom: 150px;
  justify-content: center;
  gap: 50px;
}
#privacy-policy-content article:first-child {
  color: #1b3834;
  min-width: 350px;
  text-align: center;
  font-size: clamp(22px, 4vw, 30px);
}
#privacy-policy-content article:last-child {
  padding-top: 120px;
  font-family: Roboto;
  font-weight: 400;
  color: #9a9a9a;
  font-size: 18px;
  max-width: 874px;
}
@media (max-width: 1250px) {
  #privacy-policy-content {
    flex-direction: column;
    gap: 0px;
    margin-top: 75px;
  }
  #privacy-policy-content article:first-child {
    min-width: 0px;
    width: fit-content !important;
    margin: 0;
  }
  #privacy-policy-content article:last-child {
    padding-top: 0px;
    text-align: left;
    width: fit-content;
    margin: auto;
    margin-bottom: 0px;
  }
}
.notification-container {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  gap: 61px;
  padding: 34px 80px 34px 75px;
  width: fit-content;
  height: fit-content;
  box-shadow: 0px 3px 15px rgba(0,0,41,0.151);
  border-radius: 20px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: -1;
  background-color: #fff;
}
.notification-container .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 488px;
  min-width: 185px;
}
.notification-container .text h1 {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 20px);
  font-family: Paralucent;
}
.notification-container .text p {
  margin: 0;
  font-size: clamp(10px, 1.5vw, 17px);
  font-family: Roboto;
}
.notification-container .icon {
  width: 50px;
}
.notification-container .icon img {
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 622px) {
  .notification-container {
    gap: 30px;
    padding: 20px 40px;
  }
}
@media (max-width: 500px) {
  .notification-container {
    gap: 20px;
    padding: 20px 20px;
  }
  .notification-container .text {
    gap: 5px;
  }
  .notification-container .icon {
    width: 40px;
  }
}
@media (max-width: 425px) {
  .notification-container {
    gap: 15px;
    padding: 10px 2px 10px 20px;
  }
}
.show-notification {
  opacity: 1 !important;
  transform: translateY(0) translateX(-50%) !important;
  z-index: 1000 !important;
}
.success .text h1 {
  margin: 0;
  color: #30cb78;
}
.success .text p {
  color: #5a5a5a;
  margin: 0;
}
.error .text h1 {
  margin: 0;
  color: #e53e3e;
}
.error .text p {
  color: #5a5a5a;
  margin: 0;
}
@-moz-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
