@font-face {
  font-family: "Segoe";
  src: url("fonts/SEGUIVAR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Segoe";
  src: url("fonts/SEGUIVAR.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe", sans-serif;
  margin: 0;
  padding: 0;
  color: #FCFCFC;
}
body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  background: #E2725B;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #FEFEF6;
  text-decoration: none;
}
.btn:hover {
  background: #E35F53;
}
.btn:active {
  background: #E54B4B;
}
@media (max-width: 760px) {
  .btn {
    padding: 12px 24px;
  }
}

.header {
  padding: 24px 0;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
.header::before{
       content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,51,91,0.7) 0%, rgba(17,1,88,0.7) 100%);
    backdrop-filter: blur(3px);
    pointer-events: none;
    z-index: -1;
  }
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  display: flex;
  gap: 40px;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header__nav-link {
  padding: 10px;
  color: #FEFEF6;
  text-decoration: none;
}
.header__nav-link:hover {
  color: #FFF6E8;
}
.header__nav-link:active {
  color: #FEF1DE;
}
.header__burger {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header__close {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 960px) {
  .header__nav {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .header__wrap img {
    width: 131px;
    height: 50px;
  }
  .header__nav {
    display: none;
  }
  .header__nav.active {
      z-index: 1001; 
    display: flex;
    padding-bottom: 24px;
    margin-left: -20px;
    gap: 24px;
    position: absolute;
    width: 100%;
    top: 102px;
    flex-direction: column;
  }
  .header__nav.active::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,51,91,0.7) 0%, rgba(17,1,88,0.7) 100%);
    backdrop-filter: blur(3px);
    pointer-events: none;
  }


  .menu-open .header{
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

  .header__nav > * {
      position: relative;
      z-index: 1;
      }
  
  .header__burger {
    display: flex;
  }
  .header__burger.hidden {
    display: none;
  }
  .header__close.active {
    display: flex;
  }
}

.banner {
  padding-top: 138px;
  background: url("/img/hero-banner.webp") no-repeat center center;
  background-size: cover;
}
.banner__wrap {
  padding: 194px 0;
}
.banner__title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: 0;
  color: #FEFEF6;
}
.banner__title span {
  color: #E2725B;
}
.banner__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.48px;
  color: #FEF1DE;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .banner {
    padding-top: 98px;
  }
  .banner__wrap {
    padding: 165px 0 157px 0;
  }
  .banner__title {
    font-size: 30px;
    line-height: 130%;
  }
  .banner__text {
    font-size: 22px;
  }
}

.why-choose {
  padding: 120px 0;
}
.why-choose__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #110158;
  margin-bottom: 24px;
}
.why-choose__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  color: #404040;
  margin-bottom: 64px;
}
.why-choose__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-choose__item {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 16px 46.8px 0px rgba(0, 0, 0, 0.1019607843);
}
.why-choose__item img {
  margin-bottom: 24px;
}
.why-choose__item-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.48px;
  text-align: center;
  color: #110158;
  margin-bottom: 16px;
}
.why-choose__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #404040;
}
@media (max-width: 760px) {
  .why-choose {
    padding: 100px 0;
  }
  .why-choose__title {
    font-size: 34px;
    line-height: 120%;
  }
  .why-choose__text {
    font-size: 18px;
    margin-bottom: 48px;
  }
  .why-choose__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .why-choose__item {
    padding: 24px;
  }
  .why-choose__item-title {
    font-size: 22px;
    letter-spacing: -0.44px;
    margin-bottom: 12px;
  }
  .why-choose__item-text {
    line-height: 140%;
  }
}

.transform {
  overflow: hidden;
  position: relative;
  padding: 120px 0;
  background: #03335B;
}
.transform__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #FEFEF6;
  margin-bottom: 48px;
}
.transform__btn {
  margin: 0 auto;
  width: fit-content;
  display: block;
  z-index: 2;
  position: relative;
}
.transform__top {
  position: absolute;
  right: 40px;
  top: 0;
}
.transform__bottom {
  left: 226px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 760px) {
  .transform {
    padding: 100px 0;
  }
  .transform__title {
    font-size: 34px;
    line-height: 120%;
  }
}

.about {
  scroll-margin-top: 138px;
  padding: 120px 0;
}
.about__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #110158;
  margin-bottom: 64px;
}
.about__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.about__content-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__content-title {
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #110158;
}
.about__content-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.36px;
  color: #404040;
}
@media (max-width: 760px) {
  .about {
    scroll-margin-top: 98px;
    padding: 100px 0;
  }
  .about__title {
    font-size: 34px;
    line-height: 120%;
    margin-bottom: 48px;
  }
  .about__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .about__content-card {
    gap: 12px;
  }
  .about__content-title {
    font-size: 24px;
  }
}

.services {
  overflow: hidden;
  scroll-margin-top: 138px;
  padding: 120px 0;
  background: #03335B;
  position: relative;
}
.services__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #FEF1DE;
  margin-bottom: 24px;
}
.services__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  color: #FEFEF6;
  margin-bottom: 64px;
}
.services__cards {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  row-gap: 36px;
  column-gap: 32px;
  margin-bottom: 64px;
}
.services__card {
  padding: 25px 25px 50px;
  background: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}
.services__card-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(226, 114, 91, 0.8);
}
.services__card-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.48px;
  color: #FEFEF6;
  margin-bottom: 16px;
}
.services__card ul {
  margin: 0;
  padding-left: 25px;
}
.services__card ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.36px;
  color: rgba(255, 255, 255, 0.8);
}
.services__btn {
  margin: 0 auto;
  width: fit-content;
  display: block;
  z-index: 2;
  position: relative;
}
@media (max-width: 760px) {
  .services {
    scroll-margin-top: 98px;
    padding: 100px 0;
  }
  .services__title {
    font-size: 34px;
    line-height: 120%;
  }
  .services__text {
    font-size: 18px;
    margin-bottom: 48px;
  }
  .services__cards {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
    column-gap: 0;
    margin-bottom: 48px;
  }
  .services__card {
    padding: 24px 24px 48px;
  }
  .services__card-svg {
    width: 48px;
    height: 48px;
  }
  .services__card-title {
    font-size: 22px;
    letter-spacing: -0.44px;
    margin-bottom: 12px;
  }
}

.contact {
  scroll-margin-top: 138px;
  padding: 120px 0;
}
.contact__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #110158;
  margin-bottom: 24px;
}
.contact__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  color: #404040;
  margin-bottom: 64px;
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.contact__card-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.48px;
  color: #110158;
  margin-bottom: 24px;
}
.contact__card-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.36px;
  color: #404040;
  margin-bottom: 32px;
}
.contact__card-mail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact__card-mail-svg {
  width: 48px;
  height: 48px;
  background: #110158;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__card-mail-wrap {
  display: flex;
  flex-direction: column;
}
.contact__card-mail-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #110158;
}
.contact__card-mail-address {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #404040;
  text-decoration: none;
}
.contact__card-address {
  display: flex;
  gap: 16px;
}
.contact__card-address-svg {
  width: 48px;
  height: 48px;
  background: #110158;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__card-address-wrap {
    width:82%;
  display: flex;
  flex-direction: column;
}
.contact__card-address-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #110158;
}
.contact__card-address-address {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #404040;
  text-decoration: none;
}
.contact__form {
	position: relative;
  display: flex;
  padding: 36px;
  gap: 24px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 16px 46.8px 0px rgba(0, 0, 0, 0.1019607843);
  flex-direction: column;
}
.contact__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact__form .form-group label {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.36px;
  color: #110158;
}
.contact__form .form-group input, .contact__form .form-group textarea {
  height: 42px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 9px 13px;
}
.contact__form .form-group input::placeholder, .contact__form .form-group textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #6C727F;
}
.contact__form .form-group textarea {
  min-height: 120px;
}
.contact__form p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #404040;
}
.contact__form .btn {
  outline: none;
  border: none;
}
@media (max-width: 760px) {
  .contact {
    scroll-margin-top: 98px;
    padding: 100px 0;
  }
  .contact__title {
    font-size: 34px;
    line-height: 120%;
  }
  .contact__text {
    font-size: 18px;
    margin-bottom: 48px;
  }
  .contact__cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact__card-title {
    font-size: 22px;
    letter-spacing: -0.44px;
    margin-bottom: 12px;
  }
  .contact__card-mail {
    gap: 12px;
    margin-bottom: 26px;
  }
  .contact__card-mail-title {
    line-height: 140%;
  }
  .contact__card-mail-address {
    line-height: 140%;
  }
  .contact__card-address {
    gap: 12px;
  }
  .contact__card-address-svg {
    width: 100%;
    max-width: 48px;
  }
  .contact__card-address-title {
    line-height: 140%;
  }
  .contact__card-address-address {
    line-height: 140%;
  }
  .contact__form {
    padding: 24px;
  }
  .contact__form p {
    line-height: 140%;
  }
}

.footer {
  padding: 64px 0;
  background: linear-gradient(149.12deg, #03335B -5.88%, #110158 126.21%);
}
.footer__top {
  gap: 32px;
  display: flex;
  margin-bottom: 24px;
}
.footer__logo {
  max-width: 384px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.footer__logo-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer__company {
  width: 208px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__company__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  color: #fff;
}
.footer__company nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__company nav a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer__company nav a:hover {
  color: #FFF6E8;
}
.footer__company nav a:active {
  color: #FEF1DE;
}
.footer .wrap {
  max-width: 624px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__details-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  color: #fff;
}
.footer__details-number {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer__bottom {
  padding-top: 32px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__bottom-copy {
  width: 656px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer__bottom-dev {
  width: 624px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer__bottom-dev a {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 760px) {
  .footer {
    padding: 48px 0;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__logo {
    gap: 12px;
  }
  .footer__logo-text {
    line-height: 140%;
  }
  .footer__company {
    width: 100%;
    gap: 12px;
  }
  .footer__company__title {
    font-size: 18px;
  }
  .footer__company nav a {
    line-height: 140%;
  }
  .footer .wrap {
    max-width: 100%;
  }
  .footer__details {
    gap: 12px;
  }
  .footer__details-title {
    font-size: 18px;
  }
  .footer__details-number {
    line-height: 140%;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
  }
  .footer__bottom-copy {
    text-align: center;
    width: 100%;
    line-height: 140%;
  }
  .footer__bottom-dev {
    text-align: center;
    width: 100%;
  }
}

.notification {
	box-sizing: border-box;

	width: 100%;
	height: 100%;
	padding: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 12px;

	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;

	background-color: #FFF;
	z-index: 2;

	opacity: 0;
	visibility: hidden;
	transform: scale(0.97);
	transition: all 0.3s ease-in-out;
}
.notification-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.notification__button__wrapper{
	position: relative;
	display: flex;
	justify-content: end;
}
.notification__button {
	display: flex;
	justify-content: center;
	align-items: center;
	justify-self: end;
}
button.notification__button {
	all: unset;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	text-align: center;
	text-decoration: none;
	line-height: normal;
	-webkit-appearance: none;
	-moz-appearance: none;
	user-select: none;
	width: 48px;
	height: 48px;
	z-index: 1;
}
.notification__button__img {
	width: 26.3px;
	height: 26.3px;
}
.notification__text {
	display: flex;
	flex-direction: column;
	gap: 32px;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.notification__text__title {
	font-weight: 700;
	font-size: 64px;
	line-height: 72px;
	color: #E2725B;
}
.notification__text__subtitle {
	font-weight: 400 !important;
	font-size: 30px !important;
	line-height: 130% !important;
	color: #110158 !important;
}
.blur {
	top: 0;
	left: 0;
	display: none;
	position: fixed;
	width: 100dvw;
	height: 100dvh;
	background-color: #000;
	opacity: 0.8;
	z-index: 998;
}
.blur-active {
	display: block;
}
.hidden {
	overflow: hidden;
}
.notification__bg {
	position: absolute;
	border-radius: 50%;
	width: 384px;
	height: 384px;
	background: radial-gradient(
		circle at center,
		rgba(226, 114, 91, 0.5) 0%,
		rgba(226, 114, 91, 0.1) 60%,
		transparent 100%
	);
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}
.notification__bg--1 {
	width: 384px;
	height: 384px;
	top: -138px;
	right: -104px;
}
.notification__bg--2 {
	width: 256px;
	height: 256px;
	bottom: -57px;
	left: -38px;
}
@media (max-width: 1245px) {
	.notification__text__title {
		font-size: 40px;
		line-height: 130%;
	}
	.notification {
		padding: 24px;
	}
	.notification__text {
		gap: 24px;
	}
}
.form-group input, .form-group textarea {
	font-family: "Segoe", sans-serif;
	
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0;
	color: #6C727F;
}

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