*, body {
  margin: 0;
  padding: 0;
  font-family: "Google Sans Flex", sans-serif;
}

html, body {
  overflow-x: hidden;
}

.block_scroll {
  overflow: hidden;
  max-height: 100vh;
}
.block_scroll section {
  filter: blur(5px);
}

body {
  background: #E7EFF3;
}

h1 {
  font-size: clamp(2rem, 0.125rem + 5vw, 4.5rem);
  line-height: 72px;
  font-style: normal;
  font-weight: 400;
}
h1 span {
  background: linear-gradient(90deg, #28ADFF 0%, #2D50FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1200px) {
  h1 {
    line-height: normal;
  }
}

input:focus {
  outline: none;
}

.block_label {
  border-radius: 100px;
  background: linear-gradient(0deg, #2D50FF 0%, #2D50FF 100%), rgba(255, 255, 255, 0.32);
  display: flex;
  padding: 4px 12px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #FFF;
  font-family: "Google Sans Flex";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  height: fit-content;
}

header, section, footer {
  padding: 40px 80px;
}
@media screen and (max-width: 1200px) {
  header, section, footer {
    padding: 24px;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background-color: #fff;
  position: relative;
}
header img {
  width: 81px;
  height: 72px;
}
header .menu {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  header .menu {
    display: block;
  }
}
header .mobile_menu {
  position: absolute;
  top: 0%;
  right: -66%;
  background: #FFF;
  padding: 16px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 100ms;
  height: 100vh;
  width: 65%;
  box-sizing: border-box;
  z-index: 100;
}
header .mobile_menu .top {
  border-bottom: 1px solid #c2c2c2;
  margin-bottom: 16px;
  padding-bottom: 26px;
}
header .mobile_menu li {
  list-style: none;
  font-size: 32px;
  margin-top: 16px;
}
header .mobile_menu--open {
  right: 0%;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1094px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
header nav ul li {
  cursor: pointer;
}
header nav a {
  border-radius: 100px;
  border: 1px solid #0E184A;
  display: flex;
  gap: 16px;
  padding: 16px 32px;
  color: #0E184A;
  font-family: "Google Sans Flex";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}
header nav a img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1200px) {
  header nav {
    display: none;
  }
}

.grid-2 {
  grid-column: span 2;
}

.separator_line {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.separator_line div {
  height: 20px;
  width: 100%;
  background-image: radial-gradient(100% 100% at 0% 0%, rgba(45, 80, 255, 0.76) 0%, rgba(40, 173, 255, 0.76) 100%);
  background-color: #FFF;
  backdrop-filter: blur(27.5px);
  -webkit-backdrop-filter: blur(27.5px);
}

#intro {
  padding: 196px 80px 88px 80px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background-image: url("../../public/images/intro_balls.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
#intro .scroll_down {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
#intro .scroll_down span {
  display: block;
  max-width: 96px;
}
#intro p {
  color: #0E184A;
  font-family: "Google Sans Flex";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.9px;
}
#intro h1 {
  color: #0E184A;
  margin-top: 24px;
  max-width: 646px;
}
#intro a {
  display: flex;
  height: 64px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  background: #0E184A;
  margin-top: 56px;
  width: fit-content;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  #intro {
    padding: 88px 24px 48px 24px;
    align-items: unset;
    background-size: 140%;
    background-position: -30% 0%;
    flex-direction: column;
    gap: 48px;
  }
  #intro .scroll_down {
    align-items: center;
  }
  #intro .scroll_down span {
    max-width: unset;
  }
  #intro p, #intro a {
    font-size: 16px;
  }
  #intro a {
    padding: 12px 24px;
    font-size: 16px;
  }
}

#company {
  margin: 0 14px;
  padding: 88px 66px;
  border-radius: 16px;
  background: #FFF;
}
#company .top {
  display: flex;
  justify-content: space-between;
}
#company .top .intro {
  max-width: 463px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
#company .top h1 {
  background: linear-gradient(90deg, #28ADFF 0%, #2D50FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 1094px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  #company .top {
    flex-direction: column;
    gap: 32px;
  }
  #company .top h1 {
    width: 100%;
  }
}
#company .img_wrapper {
  margin-top: 88px;
  height: clamp(26.25rem, 6.375rem + 53vw, 52.75rem);
  width: 100%;
  box-sizing: border-box;
  background-image: url("../../public/images/20260109_1257_Image Generation_simple_compose_01kegw5nbgej4axafn0yyfvbp4 1.jpg");
  background-position: center;
  background-size: cover;
  padding: 8px;
  border-radius: 12px;
}
#company .img_wrapper .inner_border {
  width: 100%;
  height: 100%;
  border: 3px solid #28ADFF;
  position: relative;
  box-sizing: border-box;
  border-radius: 12px;
}
#company .img_wrapper .inner_border .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  #company .img_wrapper {
    height: unset;
    margin-top: 32px;
    aspect-ratio: 1/1;
    position: relative;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1200px) {
  #company {
    padding: 48px 16px;
  }
}

#service {
  padding: 136px 80px;
  display: flex;
  flex-direction: column;
  gap: 188px;
  background-image: url("../../public/images/services_ball.png");
  background-repeat: no-repeat;
  background-position: center 10%;
}
#service .top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
#service .text {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
#service .text p {
  max-width: 484px;
  font-size: clamp(1rem, 0.7188rem + 0.75vw, 1.375rem);
}
@media screen and (max-width: 1200px) {
  #service .text {
    flex-direction: column;
    justify-content: unset;
  }
  #service .text p {
    max-width: 100%;
  }
}
#service .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (max-width: 1200px) {
  #service .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 900px) {
  #service .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
#service .cards .card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(27.5px);
}
#service .cards .card .number {
  width: 64px;
}
#service .cards .card img {
  display: block;
  width: 100%;
}
#service .cards .card p {
  color: #0E184A;
  font-family: "Google Sans Flex";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#service .cards .card:nth-child(2) {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(45, 80, 255, 0.76) 0%, rgba(40, 173, 255, 0.76) 100%);
  backdrop-filter: blur(27.5px);
  flex-direction: column-reverse;
}
#service .cards .card:nth-child(2) p {
  color: #FFF;
}
#service .cards .card:nth-child(5) {
  flex-direction: column-reverse;
}
@media screen and (max-width: 1200px) {
  #service {
    padding: 48px 24px;
    gap: 32px;
    background-position: center 1%;
  }
}

#advantages {
  background-color: #fff;
  padding: 136px 80px;
}
#advantages .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  #advantages .top {
    flex-direction: column-reverse;
    justify-content: unset;
    gap: 32px;
    align-items: center;
  }
}
#advantages .main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 72px;
}
#advantages .main img {
  width: 100%;
}
#advantages .main .cards {
  border-radius: 16px;
  border: 1px solid rgba(14, 24, 74, 0.16);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#advantages .main .cards .card {
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(14, 24, 74, 0.16);
}
#advantages .main .cards .card .top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
#advantages .main .cards .card .top h3 {
  color: #0E184A;
  font-size: clamp(1.5rem, 0.75rem + 2vw, 2.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#advantages .main .cards .card .top img {
  width: 56px;
}
@media screen and (max-width: 1200px) {
  #advantages .main .cards .card .top {
    flex-direction: column;
    gap: 16px;
  }
  #advantages .main .cards .card .top img {
    width: 40px;
  }
}
#advantages .main .cards .card p {
  margin-top: 32px;
}
#advantages .main .cards .card:last-child {
  border: none;
}
@media screen and (max-width: 1200px) {
  #advantages .main {
    grid-template-columns: 1fr;
  }
  #advantages .main .cards {
    padding: 24px;
  }
  #advantages .main .cards .card {
    padding-bottom: 32px;
  }
  #advantages .main .cards .card p {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1200px) {
  #advantages {
    padding: 48px 24px;
  }
  #advantages .main {
    margin-top: 32px;
  }
}

#FAQ {
  padding: 136px 80px;
  background-image: url("../../public/images/Mask group.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}
#FAQ .top {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
#FAQ form {
  margin: 0 auto;
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1088px;
  gap: 8px;
}
#FAQ form input, #FAQ form textarea {
  border-radius: 16px;
  background: #FFF;
  padding: 24px;
  border: none;
}
#FAQ form button {
  border-radius: 100px;
  background: #0E184A;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  margin-top: 40px;
}
#FAQ form .phone-input {
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: #FFF;
  padding: 24px;
  border: none;
}
#FAQ form .phone-input input {
  padding: 0;
  padding-left: 4px;
}
#FAQ form .phone-input .custom_select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
#FAQ form .phone-input .custom_select .shevron {
  cursor: pointer;
}
#FAQ form .phone-input .custom_options {
  max-height: 0;
  position: absolute;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  transition: all 100ms;
}
#FAQ form .phone-input .custom_options .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
#FAQ form .phone-input .custom_select--open .custom_options {
  max-height: 100vh;
  padding: 12px;
  border: 1px solid #28ADFF;
}
#FAQ form .phone-input .custom_select--open .shevron {
  transform: rotate(180deg);
}
#FAQ form .phone-input img {
  width: 32px;
  height: 24px;
}
#FAQ .bot {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#FAQ .bot p {
  color: rgba(14, 24, 74, 0.56);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
#FAQ .bot p a {
  color: #0E184A;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}
@media screen and (max-width: 1200px) {
  #FAQ {
    padding: 48px 24px 24px 24px;
  }
  #FAQ form {
    display: flex;
    flex-direction: column;
  }
}

#contacts {
  margin: 0 14px;
  border-radius: 16px;
  background: linear-gradient(270deg, #28ADFF 0%, #2D50FF 100%);
  display: grid;
  grid-template-columns: 5fr 6fr 3fr;
}
#contacts .item .block_label {
  background: rgba(255, 255, 255, 0.32);
  margin-bottom: 40px;
}
#contacts .item h3 {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}
#contacts .item h3 a {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
#contacts .item p {
  color: #FFF;
  font-family: "Google Sans Flex";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
  max-width: 300px;
  cursor: pointer;
}

footer {
  margin: 12px 14px 14px 14px;
  border-radius: 16px;
  background: linear-gradient(270deg, #2D50FF 0%, #28ADFF 100%);
  display: grid;
  grid-template-columns: 5fr 6fr 3fr;
  align-items: center;
}
footer p {
  color: #FFF;
  font-family: "Google Sans Flex";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 1200px) {
  #contacts, footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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