<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");
/**
 * Сброс стилей
 **/
html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

input {
  outline: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

body {
  font-family: "Montserrat", serif;
  font-size: clamp(18px, 3vw, 20px);
  color: #313131;
  background: #fff;
  user-select: none;
  overflow: auto;
}

.container {
  min-width: 320px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

.wrap {
  min-width: 320px;
  max-width: 1400px;
  box-sizing: border-box;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding: 0 15px;
}

button {
  color: #0196B3;
  background-color: #fff;
  outline: none;
  padding: 8px 29px;
  border-radius: 50px;
  border: solid 1px #0196B3;
  cursor: pointer;
  font-size: 20px;
  font-family: "Montserrat", serif;
  line-height: 30px;
}

a {
  text-decoration: none;
  color: #313131;
}

p, li, ul {
  color: #313131;
  line-height: 30px;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 390;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h2 {
  font-size: clamp(24px, 8vw, 96px);
  color: #313131;
  font-weight: bold;
  line-height: 120px;
}

h1 {
  font-size: clamp(40px, 3vw, 64px);
  font-weight: 600;
  color: #313131;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -ms-user-drag: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 20px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #4370C5;
  border-radius: 2px;
  height: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aac5f7;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #4370C5 #fff;
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar-thumb {
  border-radius: 22px;
}

select, input, textarea {
  font-size: clamp(18px, 3vw, 20px);
  font-family: "Montserrat", serif;
}

.fade-in {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  background: rgb(1, 150, 179);
  background: linear-gradient(148deg, rgb(1, 150, 179) 1%, rgb(64, 111, 211) 80%);
  min-height: auto;
}
.intro__content {
  padding: 190px 0px 160px 0px;
  display: flex;
}
.intro__content-top-title {
  font-weight: 600;
}
.intro__content-top-title, .intro__content-top-text {
  color: #fff;
}
.intro__content-top-text {
  max-width: 550px;
  width: 100%;
}
.intro__content-top-line {
  background: linear-gradient(90deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  height: 1px;
  width: 100%;
  margin: 32px 0px 32px 0px;
}
.intro__content-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.intro__content-bottom-title, .intro__content-bottom-text {
  color: #fff;
}
.intro__content-bottom-text {
  text-align: right;
  padding-bottom: 10px;
  padding-top: 40px;
}
.intro__content-bottom-btn {
  max-width: 260px;
  width: 100%;
  background: white;
  outline: none;
  border: none;
  color: #406FD3;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 600;
}
.intro__content-bottom-btn:hover {
  transform: scale(1.1);
}
.intro__content-bottom-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  height: 1px;
  width: 100%;
}

.bg-white {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0px 6px 33px -5px rgba(41, 51, 131, 0.22);
}

.header {
  display: flex;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
}
.header__menu-list {
  display: flex;
  gap: 41px;
  align-items: center;
}
.header__menu-list li {
  cursor: pointer;
}
.header__menu-list li:hover {
  color: #0196B3;
}
.header__burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}
.header__burger-spn {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #0196B3;
}
.header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #0196B3;
  transition: all 0.3s ease 0s;
}
.header__burger::before {
  top: 0;
}
.header__burger::after {
  bottom: 0;
}
.header__burger.active .header__burger-spn {
  transform: scale(0);
}
.header__burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.header__burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

@media (max-width: 1200px) {
  .header__burger {
    display: flex;
  }
  .header__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    overflow-y: auto;
    padding: 50px 40px;
    background-color: #fff;
    animation: burgerAnimation 0.4s ease-in;
  }
  .header .header__menu.active {
    display: flex;
  }
  .header .header__menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 800px) {
  .intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .intro__content-top-title {
    line-height: 50px;
  }
  .intro__content-top-title, .intro__content-top-text {
    text-align: center;
  }
  .intro__content-top-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  }
  .intro__content-bottom {
    justify-content: center;
    align-items: center;
  }
  .intro__content-bottom-title, .intro__content-bottom-text {
    text-align: center;
  }
  .intro__content-bottom-text {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .intro__content-bottom-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 32px 0 32px 0;
  }
}
.company {
  padding: 40px 0px 70px 0px;
}
.company__title {
  text-align: center;
}
.company__information {
  padding-top: 40px;
  max-width: 816px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  row-gap: 24px;
}
.company__information-card {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  height: 170px;
  background: rgb(1, 150, 179);
  background: linear-gradient(90deg, #0196b3 0%, #5579C9 67%);
  border-radius: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 25px;
}
.company__information-card h2 {
  color: white;
  font-size: clamp(24px, 7vw, 76px);
  padding-left: 60px;
  text-align: left;
  line-height: 60px;
}
.company__information-card p {
  color: white;
  text-align: right;
  padding-right: 60px;
  line-height: 10px;
}
.company__information-card:nth-child(1), .company__information-card:nth-child(3) {
  margin-left: 0;
}
.company__information-card:nth-child(2), .company__information-card:nth-child(4) {
  margin-right: 0;
}
.company__information-text {
  padding-top: 70px;
  text-align: center;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .company__information-card {
    width: 80%;
    row-gap: 0px;
    height: 140px;
    align-items: center;
  }
  .company__information-card h2 {
    text-align: center;
    padding: 0;
  }
  .company__information-card p {
    width: 240px;
    padding: 0;
    line-height: 30px;
    text-align: center;
    padding-bottom: 20px;
  }
  .company__information-card:nth-child(1), .company__information-card:nth-child(3), .company__information-card:nth-child(2), .company__information-card:nth-child(4) {
    margin: 0 auto;
  }
  .company__information-text {
    width: 88%;
    margin: 0 auto;
  }
}
.services {
  background: rgb(1, 150, 179);
  background: linear-gradient(148deg, rgb(1, 150, 179) 1%, rgb(64, 111, 211) 80%);
  height: auto;
  margin: 0 15px;
  border-radius: 50px;
  padding-top: 30px;
  padding-bottom: 70px;
}
.services__title {
  margin: 0 auto;
  color: white;
  padding-bottom: 30px;
  text-align: center;
}
.services__text {
  text-align: center;
  max-width: 800px;
  width: 100%;
  color: white;
  margin: 0 auto;
  padding: 40px 0 50px 0;
}
.services__btn {
  margin: 0 auto;
  display: block;
  background: none;
  max-width: 380px;
  width: 100%;
  padding: 10px;
  color: white;
  border: 2px solid white;
  font-weight: 600;
  transition: all 0.5s ease;
}
.services__btn:hover {
  background-color: white;
  color: #5780CB;
  transform: scale(1.1);
}
.services__components {
  margin: 0 auto;
}
.services__components-card {
  cursor: pointer;
  margin: 0 auto;
  width: auto;
  height: 30px;
  background-color: white;
  border-radius: 50px;
  padding: 28px;
  margin-bottom: 20px;
  transition: all 0.7s ease;
  box-shadow: -1px 2px 8px 0px rgba(15, 14, 58, 0.2);
  transition: height 1s ease;
  overflow: hidden;
}
.services__components-card-title {
  font-weight: 700;
  text-align: center;
  line-height: 20px;
  padding-top: 5px;
}
.services__components-card.active {
  height: 650px;
  opacity: 1;
  cursor: default;
}
.services__components-card-inf {
  margin: 0 auto;
  padding: 30px 0px 30px 0px;
  transition: transform 0.7s ease;
}
.services__components-card-inf-text {
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.services__components-card-inf-block {
  margin-top: 0 auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.services__components-card-inf-block-two, .services__components-card-inf-block-one {
  display: flex;
  column-gap: 20px;
  justify-content: center;
}
.services__components-card-inf-block-electronic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  max-width: 290px;
  height: 230px;
  width: 100%;
  background-color: #D8D8D8;
  transition: all 0.5s ease;
  cursor: pointer;
}
.services__components-card-inf-block-electronic-title {
  max-width: 240px;
  width: 100%;
  color: #606060;
  font-weight: 600;
  transition: opacity 0.5s ease;
  text-align: center;
  line-height: 26px;
  transition: all 0.5s ease;
}
.services__components-card-inf-block-electronic:hover {
  background-color: #6FCBDD;
  transition: all 0.5s ease;
  transform: translateY(-10px);
}
.services__components-card-inf-block-electronic:hover .services__components-card-inf-block-electronic-title {
  color: #ffffff;
  transition: all 0.5s ease;
}

@media (max-width: 1025px) {
  .services__components-inf-block-electronic {
    width: 290px;
    max-width: none;
  }
  .services__components-inf-block-electronic-title {
    width: auto;
  }
  .services__components-inf-card.active {
    height: 620px;
  }
}
@media (max-width: 945px) {
  .services__components-card.active {
    height: auto;
  }
  .services__components-card-inf-block {
    flex-direction: row;
    justify-content: center;
  }
  .services__components-card-inf-block-two, .services__components-card-inf-block-one {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    row-gap: 20px;
  }
}
@media (max-width: 635px) {
  .services__title {
    line-height: 43px;
  }
  .services__components-card {
    height: 10px;
    padding-top: 15px;
    padding-bottom: 40px;
  }
  .services__components-card-title {
    font-weight: 700;
    text-align: center;
    line-height: 20px;
    padding-top: unset;
  }
  .services__components-card .two {
    padding-top: 7px;
  }
  .services__components-card-inf-block {
    flex-direction: column;
  }
  .services__components-card-inf-block-two, .services__components-card-inf-block-one {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    row-gap: 20px;
  }
}
.contacts {
  background: rgb(1, 150, 179);
  background: linear-gradient(148deg, rgb(1, 150, 179) 1%, rgb(64, 111, 211) 80%);
  height: auto;
  margin: 0 15px;
  border-radius: 50px;
  padding-top: 20px;
  padding-bottom: 70px;
  position: relative;
}
.contacts__right {
  margin-right: auto;
  position: absolute;
  bottom: 0;
  left: 60px;
}
.contacts__left {
  margin-left: auto;
  position: absolute;
  bottom: 0;
  right: 60px;
}
.contacts__title {
  text-align: center;
  padding-bottom: 10px;
  color: white;
}
.contacts__place {
  padding-top: 50px;
  text-align: center;
  color: white;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
}
.contacts__address {
  text-align: center;
  color: white;
  padding-top: 20px;
  padding-bottom: 50px;
}
.contacts__line {
  margin: 0 auto;
  padding-top: 60px;
}
.contacts__line img {
  max-width: 1117px;
  width: 100%;
  margin: 0 auto;
}
.contacts__block {
  width: 100%;
}
.contacts__block-inf {
  margin: 0 auto;
}
.contacts__block-text {
  text-align: center;
  color: white;
}
.contacts__block-map {
  margin: 0 auto;
  width: 60%;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: -1px 1px 31px -12px rgba(77, 77, 77, 0.671);
  padding-bottom: 26%;
  height: 0;
}
.contacts__block-map iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts__block-map .map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts__block-contacts {
  display: flex;
  padding-top: 49px;
  justify-content: center;
  column-gap: 90px;
}
.contacts__block-contacts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  column-gap: 10px;
  padding-top: 20px;
}
.contacts__block-contacts div img {
  max-width: 58px;
  width: 100%;
}
.contacts__block-contacts div a {
  color: white;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .contacts__right, .contacts__left {
    width: 20%;
  }
}
@media (max-width: 700px) {
  .contacts__right, .contacts__left {
    display: none;
  }
  .contacts__title {
    line-height: 50px;
  }
  .contacts__block {
    row-gap: 50px;
  }
  .contacts__block-map {
    padding-bottom: 100%;
    width: 80%;
  }
  .contacts__block-contacts {
    flex-direction: column;
    padding-top: unset;
  }
}
.footer {
  border-top: 1px solid rgb(205, 205, 205);
  padding-top: 40px;
  margin-top: 100px;
}
.footer li:hover, .footer a:hover {
  color: #0196B3;
  transition: all 0.3s;
  cursor: pointer;
}
.footer__logo img {
  max-width: 260px;
  width: 100%;
}
.footer__block {
  display: flex;
  justify-content: center;
  column-gap: 65px;
  padding-bottom: 100px;
}
.footer__block p {
  font-weight: bold;
  color: #0196B3;
}
.footer__block-part p {
  padding-bottom: 5px;
}
.footer__end {
  bottom: 0;
  font-size: 14px;
  line-height: 20px;
}
.footer__block-end {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-around;
}

@media (max-width: 1200px) {
  .footer__block {
    column-gap: 10px;
    justify-content: space-evenly;
  }
}
@media (max-width: 1100px) {
  .footer__block {
    flex-wrap: wrap;
    row-gap: 30px;
  }
}
@media (max-width: 800px) {
  .footer__block {
    flex-direction: column;
    align-items: center;
  }
  .footer__block p {
    text-align: center;
  }
  .footer__block-part li {
    text-align: center;
  }
}
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 17, 23, 0.5);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10000;
  padding-top: 20px;
}
.modal__content {
  max-width: 600px;
  max-height: 100vh;
  height: auto;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  margin: 0 auto;
}
.modal__content-close {
  width: auto;
  right: 0;
  background-color: transparent;
  position: absolute;
  cursor: pointer;
  top: -5px;
  right: -15px;
  color: #bdbdbd;
  border: none;
}
.modal__content-title {
  margin: 0 auto;
  text-align: center;
  font-size: clamp(25px, 3vw, 32px);
  width: auto;
  padding-top: 25px;
  font-weight: 600;
}
.modal__content-form {
  display: flex;
  flex-direction: column;
  padding: 10px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.modal__content-form span {
  color: #0196B3;
  font-weight: 500;
}
.modal__content-form input, .modal__content-form textarea {
  padding-left: 6px;
  border: 1px solid black;
  outline: none;
  resize: none;
  line-height: 20px;
  height: 40px;
}
.modal__content-form textarea {
  height: 70px;
  padding-top: 10px;
}
.modal__content-form input:focus, .modal__content-form textarea:focus, .modal__content-form select:focus {
  border: 1px solid #0196B3;
  outline: none;
  color: #0196B3;
}
.modal__content-form label {
  line-height: 30px;
}
.modal__content-form select {
  height: 48px;
  border: 1px solid black;
  padding: 0px 10px;
}
.modal__content-form .check_label {
  line-height: 20px;
}
.modal__content-form div {
  padding: 2px;
  display: flex;
  gap: 10px;
}
.modal__content-form div label {
  font-size: 14px;
}
.modal__content-form div input {
  width: 5%;
}
.modal__content-form div a {
  color: #0196B3;
}
.modal__content-form button {
  margin: 0 auto;
  width: 40%;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 60px;
  margin-top: 20px;
  text-align: center;
}
.modal__content-form button:hover {
  background-color: #0196B3;
  color: #fff;
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.modal .error {
  color: rgb(25, 161, 206);
  font-size: 10px;
  line-height: 10px;
}
.modal .notification {
  text-align: center;
  margin: 0 auto;
  color: #0196B3;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 500px) {
  .modal__content {
    max-height: 80vh;
  }
  .modal__content-title {
    font-size: 1em;
    line-height: 20px;
  }
  .modal__content-form {
    align-items: start;
    justify-content: center;
  }
  .modal__content-form input, .modal__content-form textarea, .modal__content-form select {
    width: 92%;
  }
  .modal__content-form button {
    display: block;
    width: 50%;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
  }
  .modal__content-form div input {
    width: 10%;
  }
  .modal__content-form div p {
    font-size: 15px;
    width: 300px;
  }
}
.vacancy {
  padding: 60px 0px 60px 0px;
}
.vacancy__title {
  line-height: 65px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 60px;
}
.vacancy__text {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 30px;
}
.vacancy__container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 30px 0 30px 0;
}
.vacancy__container-card {
  max-width: 230px;
  height: 212px;
  width: 100%;
  background-color: #EDEDED;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  cursor: pointer;
}
.vacancy__container-card p {
  transition: all 0.5s ease;
  text-align: center;
  max-width: 210px;
  width: 100%;
  font-weight: 600;
}
.vacancy__container-card:hover {
  transition: all 0.5s ease;
  transform: translateY(-10px);
  background-color: #cdcdcd;
}
.vacancy__container-card:hover p {
  color: rgb(57, 57, 57);
}

@media (max-width: 1090px) {
  .vacancy__title {
    line-height: 40px;
  }
  .vacancy__subtitle {
    text-align: center;
  }
  .vacancy__container {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.worksheet {
  background: rgb(1, 150, 179);
  background: linear-gradient(148deg, rgb(1, 150, 179) 1%, rgb(64, 111, 211) 80%);
  min-height: 520px;
  margin: 0 15px;
  border-radius: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.worksheet__bg {
  position: absolute;
  max-width: 40%;
  height: auto;
  right: 0;
  z-index: 0;
  bottom: 0;
  margin-right: 10px;
}
.worksheet__title {
  color: white;
  text-align: center;
  line-height: 45px;
  padding-bottom: 30px;
}
.worksheet__text {
  color: white;
  text-align: center;
  padding-bottom: 30px;
}
.worksheet__container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.worksheet__form {
  margin: 0 auto;
  width: 90%;
}
.worksheet__form-part {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
.worksheet__form-part div {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.worksheet__form-part label {
  color: white;
  font-weight: 600;
  padding-bottom: 10px;
  z-index: 1;
}
.worksheet__form-part input {
  background: none;
  border-radius: 50px;
  border: 1px solid white;
  color: white;
  width: auto;
  height: 40px;
  padding-left: 15px;
  z-index: 1;
}
.worksheet__form-part2 {
  padding-top: 20px;
}
.worksheet__form-part2 div {
  display: flex;
  flex-direction: column;
}
.worksheet__form-part2 label {
  color: white;
  font-weight: 600;
  padding-bottom: 10px;
}
.worksheet__form-part2 textarea {
  background: none;
  border-radius: 50px;
  border: 1px solid white;
  padding-left: 10px;
  color: white;
  outline: none;
  resize: none;
  padding: 10px 30px 0 30px;
  width: auto;
  z-index: 1;
  height: 90px;
  line-height: 25px;
}
.worksheet__form-check {
  margin: 20px 0px 20px 0px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.worksheet__form-check label, .worksheet__form-check a {
  color: white;
  line-height: 12px;
  font-size: 15px;
}
.worksheet__form-check a:hover {
  color: #2b4f5b;
}
.worksheet__form-btn {
  display: block;
  margin: 0 auto;
  max-width: 230px;
  width: 100%;
  background: none;
  border: 2px solid white;
  color: white;
  transition: all 0.5s ease;
  margin-top: 40px;
}
.worksheet__form-btn:hover {
  background-color: white;
  color: #5780CB;
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.worksheet__error {
  color: white;
  line-height: 20px;
  font-size: 13px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .worksheet__bg {
    display: none;
  }
}
@media (max-width: 1000px) {
  .worksheet__bg {
    display: none;
  }
  .worksheet__form-part {
    flex-direction: column;
    gap: unset;
  }
  .worksheet__form-part2 {
    gap: unset;
  }
}
.news {
  padding-top: 30px;
  padding-bottom: 70px;
  min-height: auto;
}
.news__button {
  width: 20%;
  display: flex;
  align-items: center;
  padding-top: 50px;
  margin: 0 auto;
}
.news__button img {
  cursor: pointer;
  margin-right: 10px;
  margin-left: 10px;
}
.news__button-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
.news__button-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(206, 206, 206);
  margin: 0 5px;
}
.news__button-dots .dot.active {
  background-color: #0196B3;
}
.news__title {
  text-align: center;
  width: auto;
  padding-bottom: 20px;
}
.news__text {
  text-align: center;
  padding-bottom: 40px;
}
.news__block {
  display: flex;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 30px;
}
.news__block-card {
  max-width: 380px;
  width: 100%;
  height: 630px;
  background-color: white;
  box-shadow: 0px 4px 18px -4px rgba(34, 60, 80, 0.2);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.news__block-card-link {
  width: 100%;
  color: #2DA2B9;
  padding-left: 20px;
}
.news__block-card-top {
  width: auto;
  height: 67px;
  background: rgb(54, 120, 193);
  background: linear-gradient(90deg, rgb(54, 120, 193) 16%, rgb(73, 171, 220) 97%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  align-items: center;
}
.news__block-card-top p {
  padding-left: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}
.news__block-card-bottom {
  max-height: 460px;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  overflow: hidden;
}
.news__block-card-bottom-data {
  color: #0196B3;
  font-weight: 600;
}
.news__block-card-bottom-title {
  font-weight: 800;
  width: 100%;
}
.news__block-card-bottom-text {
  color: gray;
}

@media (max-width: 500px) {
  .news__button {
    width: 70%;
  }
  .news__title {
    line-height: 46px;
    padding-bottom: 20px;
  }
  .news__block-card {
    height: 300px;
  }
  .news__block-card-bottom {
    max-height: 140px;
  }
  .news__block-card-bottom-text {
    display: none;
  }
}
.page_news {
  padding-top: 20px;
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.169);
}

.page-content {
  margin: 0 auto;
  background-color: #ffffff;
  width: 1325px;
  max-height: 1000px;
  max-width: 100%;
  height: auto;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.responsive-image {
  width: 100%;
  height: 370px;
  object-fit: cover;
  z-index: 0;
  padding-bottom: 20px;
}

.page-title {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 30px);
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-date {
  font-weight: 500;
}

.page-link {
  font-weight: 600;
  padding-top: 20px;
  color: #0196B3;
}

.read-more {
  border: none;
  font-weight: 600;
}

.page-news-text {
  font-size: clamp(10px, 1vw, 13px);
  color: #999999;
}

.page-text {
  text-align: justify;
  white-space: pre-wrap;
}

.no-scroll2 {
  overflow: hidden;
}

.close {
  cursor: pointer;
  padding-bottom: 10px;
  left: 0;
  color: #0196B3;
}

@media (max-width: 1024px) {
  .page-content {
    margin: 0 auto;
    width: 90%;
    height: auto;
  }
}
.title_admin {
  text-align: center;
  font-size: clamp(18px, 3vw, 40px);
  padding: 50px;
}

.block_news {
  padding-top: 100px;
}

#newsForm {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
}

#newsForm label {
  padding-bottom: 10px;
}

#newsForm input, textarea {
  padding: 10px;
  outline: none;
}

#newsForm button {
  width: 40%;
  display: block;
  margin: 0 auto;
}

#newsTable button {
  border: none;
  background: none;
}

#newsTable {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

#newsTable th, #newsTable td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

#newsTable th {
  background-color: #0196B3;
  color: #ffffff;
  text-align: center;
}

#newsTable tr:nth-child(even) {
  background-color: #f9f9f9;
}

#newsTable tr:hover {
  background-color: #f1f1f1;
}

.login-title {
  text-align: center;
  padding-top: 20px;
}

.login-form {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin: 0 auto;
}

.content-login {
  margin: 0 auto;
  margin-top: 120px;
  max-width: 620px;
  width: 100%;
  height: 300px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 0px 20px 1px rgb(231, 231, 231);
}

.login-form input {
  padding: 10px;
}

.login-form button {
  margin-top: 20px;
}

.logo_admin {
  width: 50%;
  margin: 0 auto;
  padding-top: 20px;
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>