@font-face {
  font-family: "Inter";
  src: url("../font/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  scroll-padding-top: 5rem;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter";
  overflow-x: hidden;
}

.container {
  width: 120rem;
  margin: 0 auto;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.btn {
  margin-top: 5rem;
  outline: none;
  border: none;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(#4dc3ff, #007bff);
  padding: 2rem 4rem;
  border-radius: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 2.2rem;
}

.header {
  z-index: 99;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 8rem;
  box-shadow: 0 0.4rem 20px 2px rgba(227, 232, 255, 0.5);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 6rem;
  height: 6rem;
}
.header__nav {
  width: 35rem;
  display: flex;
  justify-content: space-between;
}
.header__link {
  font-size: 1.6rem;
  color: #1e40af;
  text-decoration: none;
  transition: 0.2s all ease;
}
.header__link:hover {
  transform: scale(1.08);
}
.header__link--active {
  font-weight: 700;
}

.hero {
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  margin-top: 8rem;
}
.hero__video {
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 34, 149, 0.5);
  backdrop-filter: blur(5px);
  z-index: -1;
  box-shadow: inset 0 0 100px 40px rgba(0, 0, 0, 0.25);
}
.hero__container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero__logo {
  width: 21rem;
  height: 21rem;
  margin: 2.5rem 0;
}
.hero__title {
  color: #fff;
  font-size: 5.5rem;
  letter-spacing: 2px;
}
.hero__subtitle {
  color: #fff;
  font-size: 2.5rem;
  width: 80rem;
  text-align: center;
}
.hero__btn {
  position: relative;
}
.hero__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 110%;
  border-radius: 50%;
  background: rgba(77, 195, 255, 0.25);
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  z-index: -1;
}
.hero__btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(#66d4ff, #3399ff);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.9), 0 0 60px rgba(59, 130, 246, 0.7);
  text-shadow: 0 0 8px #66d4ff, 0 0 15px #3399ff;
}
.hero__btn:hover::before {
  animation: none;
  opacity: 0;
}

.section-title {
  text-align: center;
}
.section-title h1 {
  font-size: 5rem;
  letter-spacing: 2px;
  font-weight: 900;
  background: linear-gradient(-80deg, #279aff, #006aff, #279aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.section-title p {
  font-size: 2rem;
  color: #64748b;
}
.section-title__contact {
  position: relative;
  top: 0;
  background-color: #fff;
  border-radius: 0 0 5rem 5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 65rem;
  height: 7rem;
  margin: 0 auto;
}
.section-title__contact h1 {
  margin: 0 1rem;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.services {
  padding: 5rem 0;
}
.services .cards {
  display: flex;
  flex-direction: column;
  margin: 10rem 0;
}
.services .cards .card {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services .cards .card:last-child {
  flex-direction: row-reverse;
  margin-top: 10rem;
}
.services .cards .card__left {
  position: relative;
}
.services .cards .card__img {
  background-image: url(../imgs/card1.jpg);
  background-size: cover;
  background-position: 50%;
  width: 43rem;
  height: 30rem;
  border-radius: 60px;
  box-shadow: inset 0 0 10px 15px rgba(8, 22, 90, 0.2862745098);
}
.services .cards .card-tegs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.services .cards .card-tegs__teg {
  padding: 1.2rem 2.4rem;
  background: linear-gradient(80deg, #3b82f6, #1d4ed8);
  border-radius: 20px;
  color: #fff;
  font-size: 1.4rem;
}
.services .cards .card-txt {
  position: relative;
  width: 45rem;
}
.services .cards .card-txt__particle {
  position: absolute;
  top: -9.7rem;
  left: 0;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(59, 131, 246, 0.1019607843);
}
.services .cards .card-txt__title {
  font-size: 4.5rem;
  color: #1e3a8a;
}
.services .cards .card-txt__subtitle {
  line-height: 3rem;
  margin: 2.5rem 0;
  font-size: 2rem;
  font-weight: 500;
}
.services .cards .card-animation-l.show {
  animation: fadeInLeft 1s ease forwards;
}
.services .cards .card-animation-r.show {
  animation: fadeInRight 1s ease forwards;
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(100vh - 5rem);
  background-color: #1b86ff;
}

.form {
  padding: 5rem 5rem;
  margin: 5rem auto 6rem auto;
  width: 80rem;
  border-radius: 30px;
  box-shadow: inset 0 0 15px 5px rgba(8, 22, 90, 0.2), 0 4px 30px 20px rgba(98, 161, 255, 0.4);
  background: linear-gradient(45deg, #1d4ed8, #3b82f6);
}
.form-header-txt {
  width: 60rem;
  margin: 0 auto 2rem auto;
}
.form-header-txt__title {
  text-align: center;
  font-size: 3.5rem;
  color: #fff;
}
.form-header-txt__subtitle {
  width: 60rem;
  font-size: 2rem;
  text-align: center;
  color: #fff;
}
.form-input-row {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
.form__input {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.form__input.has-error label {
  top: -0.8rem;
  left: 1.5rem;
  font-size: 1.3rem;
  color: #fff;
  background: #f63b3b;
  padding: 0 0.4rem;
  border-radius: 5px;
}
.form__input label.label-error {
  background: #f63b3b !important;
  color: #fff !important;
}
.form__input label {
  position: absolute;
  left: 2rem;
  top: 1.5rem;
  font-size: 1.6rem;
  color: #777;
  pointer-events: none;
  transition: all 0.3s ease;
}
.form__input .label-error {
  background: #f63b3b;
}
.form__input input:focus ~ label {
  transform: translateY(0);
}
.form__input input {
  height: 5rem;
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 2.2rem;
}
.form__input textarea {
  resize: none;
  height: 15rem;
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 2.2rem;
}
.form__input input:focus + label,
.form__input input:not(:placeholder-shown) + label,
.form__input textarea:focus + label,
.form__input textarea:not(:placeholder-shown) + label {
  top: -0.8rem;
  left: 1.5rem;
  font-size: 1.3rem;
  color: #fff;
  background: #3b82f6;
  padding: 0 0.4rem;
  border-radius: 5px;
}
.form__btn {
  width: 100%;
  margin-top: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #1b86ff 0%, #3baaff 51%, #1b86ff 100%);
  background-position: right center;
  background-size: 200% auto;
}
.form__btn:hover {
  background-position: left center;
}
.form__btn:active {
  transform: scale(0.95);
}

@keyframes toast-slide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.modal {
  transition: 0.3s all ease;
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(1, 1, 60, 0.5);
  backdrop-filter: blur(2px);
  z-index: 888;
}

#toast-container {
  position: fixed;
  overflow: hidden;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(#4dc3ff, #007bff);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: inset 0 0 15px 5px rgba(8, 22, 90, 0.2), 0 0 20px 10px rgba(98, 161, 255, 0.4);
}

#toast-container::after {
  content: " ";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: rgb(45, 193, 252);
  transform: translateX(-100%);
  animation-name: toast-slide;
  animation-timing-function: linear;
  animation-duration: 3s;
}

.footer {
  color: #fff;
  background-color: #1e3a8a;
  width: 100%;
  padding: 2.5rem;
}
.footer h1 {
  font-size: 2.5rem;
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
.footer-left {
  width: 30rem;
}
.footer-left__logo {
  display: flex;
  align-items: center;
}
.footer-left__logo img {
  margin-right: 1rem;
  width: 7rem;
  height: 7rem;
}
.footer-left__txt {
  font-size: 1.6rem;
}
.footer-left__txt p {
  margin-top: 1.5rem;
}
.footer-right__txt {
  font-size: 1.6rem;
}
.footer-right__txt p {
  margin-top: 1.5rem;
}
.footer-right__txt p a {
  color: #fff;
}
.footer__copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.6rem;
}

@media (max-width: 1280px) {
  .container {
    width: 100%;
    padding: 0 2rem;
  }
}
@media (max-width: 1024px) {
  .hero__title {
    text-align: center;
    font-size: 5rem;
  }
  .hero__subtitle {
    width: 70rem;
  }
  .services .cards {
    margin: 5rem 0 2rem 0;
  }
  .services .cards .card {
    flex-direction: column;
  }
  .services .cards .card__img {
    width: 37rem;
    height: 20rem;
  }
  .services .cards .card:last-child {
    flex-direction: column;
    margin-top: 5rem;
  }
  .services .cards .card-txt {
    text-align: center;
  }
  .services .cards .card-txt__title {
    font-size: 3.5rem;
  }
  .services .cards .card-txt__subtitle {
    margin: 1.5rem 0;
  }
  .services .cards .card-txt__particle {
    display: none;
  }
  .card-tegs {
    justify-content: center;
  }
  .form {
    padding: 2.5rem;
    width: auto;
  }
  .form__input label {
    font-size: 2rem;
    top: 1.3rem;
  }
  .form__input input {
    font-size: 2.5rem;
  }
  .form__input textarea {
    font-size: 2.5rem;
  }
  .form .form-input-row {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .modal #toast-container {
    font-size: 1.5rem;
    width: 28rem;
  }
  .header {
    height: 6rem;
  }
  .header__logo {
    width: 5rem;
    height: 5rem;
  }
  .header__nav {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #0051ff;
    transform: translateX(100vw);
    transition: 0.3s all ease;
  }
  .header__nav--active {
    transform: translateX(0);
  }
  .header__nav--active .header__link {
    display: flex;
    color: #fff;
    font-size: 2.5rem;
    margin-top: 8rem;
  }
  .header__nav--active .header__link:first-child {
    margin-top: 0;
  }
  .header__link {
    display: none;
  }
  .header__menu {
    background: transparent;
    border: none;
    transition: all 0.3s ease 0s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform: translateX(-2rem);
    right: 0;
    top: 1.5rem;
    z-index: 52;
    width: 4rem;
    height: 3rem;
  }
  .header__menu span {
    animation-name: transition-animate;
    animation-duration: 0.3s;
    transition: all 0.3s ease 0s;
    animation-timing-function: ease-out;
    display: inline-block;
    height: 0.4rem;
    width: 100%;
    background: linear-gradient(80deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    transform: scale(1);
  }
  .header__menu::before, .header__menu::after {
    position: absolute;
    height: 0.4rem;
    width: 100%;
    background: linear-gradient(80deg, #3b82f6, #1d4ed8);
    transition: all 0.3s ease;
    content: "";
    border-radius: 20px;
  }
  .header__menu::before {
    transform: translateY(1rem);
  }
  .header__menu::after {
    transform: translateY(-1rem);
  }
  .header__menu--active {
    position: fixed;
    transform: translateX(-88vw);
    top: 2.5rem;
    z-index: 999;
  }
  .header__menu--active::after {
    transform: translateY(1rem);
    transform: rotate(-45deg);
    background: #fff;
  }
  .header__menu--active::before {
    transform: translateY(-1rem);
    transform: rotate(45deg);
    background: #fff;
  }
  .header__menu--active span {
    transform: scale(0);
    background: #fff;
  }
  .hero {
    min-height: calc(100vh - 5rem);
    margin-top: 5rem;
  }
  .hero__title {
    font-size: 3rem;
    text-align: center;
  }
  .hero__logo {
    width: 15rem;
    height: 15rem;
  }
  .hero__subtitle {
    width: 90%;
    font-size: 2rem;
    font-weight: 500;
  }
  .hero__btn {
    font-size: 2rem;
    padding: 1.5rem 2.5rem;
  }
  .section-title h1 {
    font-size: 4rem;
  }
  .section-title p {
    font-size: 1.8rem;
  }
  .section-title__contact {
    border-radius: 0 0 4rem 4rem;
    width: 35rem;
    height: 6rem;
  }
  .section-title__contact h1 {
    font-size: 3.5rem;
    margin: 0 1rem;
  }
  .section-title__contact svg {
    display: none;
  }
  .services {
    min-height: calc(100vh - 5rem);
  }
  .services .cards {
    margin: 3rem 0 0 0;
    align-items: center;
  }
  .services .cards .card__img {
    display: none;
    width: 30rem;
    height: 15rem;
  }
  .services .cards .card {
    max-width: 47rem;
    height: auto;
    background-size: cover;
    background-position: 50%;
    background-image: url(../imgs/card1.jpg);
    border-radius: 20px;
    padding: 2rem 2rem;
  }
  .services .cards .card:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background: rgba(5, 34, 149, 0.5);
    box-shadow: inset 0 0 20px 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    z-index: 0;
  }
  .services .cards .card:last-child::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 34, 149, 0.5);
    backdrop-filter: blur(2px);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 20px 10px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    z-index: 0;
  }
  .services .cards .card__left img {
    display: none;
  }
  .services .cards .card:last-child {
    margin-top: 3rem;
    background-image: url(../imgs/card2.jpg);
  }
  .services .cards .card-txt {
    width: auto;
    color: #fff;
  }
  .services .cards .card-txt__title {
    color: #fff;
    font-size: 3rem;
  }
  .services .cards .card-tegs {
    gap: 1rem;
  }
  .services .cards .card-tegs__teg {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .contact {
    min-height: calc(100vh - 5rem);
  }
  .form__btn {
    font-size: 1.8rem;
  }
  .form__input {
    margin-top: 3rem;
  }
  .form__input input {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .form__input textarea {
    font-size: 1.8rem;
  }
  .form__input label {
    left: 1.5rem;
    font-size: 1.8rem;
  }
  .form__input .label-error {
    text-align: center;
  }
  .form__input input:focus + label,
  .form__input input:not(:placeholder-shown) + label,
  .form__input textarea:focus + label,
  .form__input textarea:not(:placeholder-shown) + label {
    top: -1.6rem;
    left: 0rem;
  }
  .form__input.has-error label {
    top: -1.6rem;
    left: 0rem;
  }
  .form .form-header-txt {
    width: auto;
  }
  .form .form-header-txt__title {
    line-height: 95%;
  }
  .form .form-header-txt__subtitle {
    margin: 1rem auto 0 auto;
    width: auto;
    max-width: 50rem;
    font-weight: 500;
  }
  .footer {
    padding: 1.5rem;
  }
  .footer h1 {
    font-size: 2.3rem;
  }
  .footer .footer-left {
    margin-right: 1rem;
  }
  .footer .footer-left__logo img {
    width: 6rem;
    height: 6rem;
  }
  .footer .footer-left__txt {
    font-size: 1.5rem;
  }
  .footer .footer-right__txt {
    font-size: 1.5rem;
  }
  .footer__container {
    padding: 0;
  }
}
@media (max-width: 360px) {
  .modal #toast-container {
    font-size: 1.3rem;
    padding: 1.5rem;
    width: 25rem;
  }
  .hero__title {
    font-size: 2.5rem;
    text-align: center;
  }
  .hero__subtitle {
    font-size: 1.8rem;
  }
  .hero__btn {
    font-size: 1.8rem;
    padding: 1.5rem 2.2rem;
  }
  .section-title h1 {
    font-size: 3rem;
  }
  .section-title p {
    font-size: 1.8rem;
  }
  .contact .section-title {
    width: 30rem;
  }
  .contact .section-title__contact {
    height: 6rem;
  }
  .contact .section-title__contact h1 {
    font-size: 3rem;
    margin: 0 1rem;
  }
  .services .cards .card {
    padding: 2rem 1rem;
  }
  .services .cards .card-txt__title {
    font-size: 2.5em;
  }
  .services .cards .card-txt__subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .services .cards .card-tegs {
    gap: 1rem;
  }
  .services .cards .card-tegs__teg {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .form .form-header-txt__title {
    font-size: 3rem;
  }
  .form .form-header-txt__subtitle {
    font-size: 1.4rem;
    font-weight: 600;
  }
  .form__input input {
    padding: 1rem;
    font-size: 1.5rem;
  }
  .form__input textarea {
    font-size: 1.5rem;
  }
  .form__input label {
    left: 1rem;
    top: 1.7rem;
    font-size: 1.5rem;
  }
  .form__btn {
    padding: 1.5rem 2rem;
  }
  .footer {
    padding: 1rem;
  }
  .footer h1 {
    font-size: 2rem;
  }
  .footer .footer-left__logo img {
    width: 5rem;
    height: 5rem;
  }
  .footer .footer-left__txt {
    font-size: 1.3rem;
  }
  .footer .footer-right__txt {
    font-size: 1.3rem;
  }
  .footer__copyright {
    font-size: 1.3rem;
  }
}

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