@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200;300;400;500;600;700&display=swap');
@font-face {
  font-family: "Panton";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Panton-Bold.woff);
}
@font-face {
  font-family: "Panton";
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/Panton-Regular.woff);
}
@font-face {
  font-family: "Panton";
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Panton-Black.woff);
}
input,
button,
textarea,
select {
  border: 1px solid transparent;
  background: #f0f3f5;
  border-radius: 4px;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

a:hover, a:focus {
  text-decoration: none;
}

a[data-fslightbox] {
  position: relative;
}
a[data-fslightbox]::before {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("../images/open_image_icon.png");
  background-repeat: no-repeat;
  background-size: 10%;
  background-position: center center;
}
a[data-fslightbox]:hover::before {
  opacity: 1;
  visibility: visible;
}

.styled-table {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  margin: 10px auto;
  font-size: 0.9em;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table th, .styled-table td {
  padding: 12px 15px;
}
.styled-table thead tr {
  background-color: #4a9edd;
  color: #fff;
  text-align: left;
}
.styled-table tbody {
  background: #fff;
}
.styled-table tbody tr:nth-of-type(even) {
  background-color: rgba(74, 157, 221, 0.1215686275);
}
.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #4a9edd;
}
.styled-table tbody tr:hover {
  color: #4a9edd;
}
.styled-table tbody tr td:first-child {
  width: 40%;
}
.styled-table tbody tr td:last-child {
  font-weight: bold;
}

.documents-list {
  display: flex;
  flex-direction: column;
}
.documents-list a {
  display: block;
  padding: 25px 80px;
  background: #fff;
  border: 1px solid #aecbff;
  margin-bottom: 5px;
  text-transform: uppercase;
  border-radius: 5px;
  position: relative;
}
.documents-list a:hover {
  background: #fff;
}
.documents-list a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 25px;
  top: 20px;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
/*.documents-list a[href$=".pdf"]::before {
  background-image: url("../images/pdf-icon.png");
}*/
/*.documents-list a[href$=".doc"]::before, .documents-list a[href$=".docx"]::before {
  background-image: url("../images/word-icon.png");
}*/
.documents-list a::before {
  background-image: url("../images/word-icon.png");
}
/*.documents-list a[href$=".xls"]::before, .documents-list a[href$=".xlsx"]::before {
  background-image: url("../images/excel-icon.png");
}
.documents-list a[href$=".zip"]::before, .documents-list a[href$=".rar"]::before {
  background-image: url("../images/archive-icon.png");
}*/

.modal-wrapper {
  position: fixed;
  background: linear-gradient(120deg, #00d2ff 0%, #3a47d5 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 120;
}
.modal-wrapper .container .row {
  position: relative;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.modal-wrapper .container .row .close-modal:hover {
  cursor: pointer;
  transform: rotate(360deg);
  transition-duration: 0.5s;
  transition-property: transform;
}
.modal-wrapper .container .row .callback-wrapper {
  width: 485px;
  height: 485px;
  padding: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.modal-wrapper .container .row .callback-wrapper .form-group .captcha-img {
  width: 80%;
  padding: 10px;
  margin: 30px auto 10px auto;
  border: 1px solid #ccc;
}
.modal-wrapper .container .row .callback-wrapper form {
  display: flex;
  flex-direction: column;
}
.modal-wrapper .container .row .callback-wrapper form h3 {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
}
.modal-wrapper .container .row .callback-wrapper form label {
  margin-top: 20px;
  color: #4a9edd;
}
.modal-wrapper .container .row .callback-wrapper form input {
  padding: 10px;
  background: #fff;
  border: 1px solid #4a9edd;
}
.modal-wrapper .container .row .close-modal {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 40px;
  background-image: url("../images/modal-close.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

body {
  background: #f0f3f5;
  color: #333;
  font-family: sans-serif, "PT Sans", "Montserrat";
  font-size: 16px;
  position: relative;
}

.red-button {
  padding: 5px 20px;
  background: #ee4d4d;
  font-size: 16px;
  font-weight: 900;
  border-radius: 5px;
  color: #fff;
}
.red-button:hover {
  color: inherit;
}

#header {
  padding: 60px 0;
  background: #fff;
}
#header .logo {
  position: relative;
}
#header .logo img {
  width: 50%;
  display: block;
  position: absolute;
  top: -25px;
  left: 70px;
}
#header .search-wrapper {
  display: flex;
  justify-content: center;
}
#header .search-wrapper form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#header .search-wrapper .search-site-input {
  padding: 15px;
  color: #4a9edd;
  width: 100%;
}
#header .search-wrapper .search-site-input::placeholder {
  color: inherit;
}
#header .search-wrapper .search-site-input:focus {
  border: 1px solid #4a9edd;
}
#header .search-wrapper .search-site-btn {
  position: absolute;
  right: 15px;
  width: 40px;
  height: 40px;
  background: transparent;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
}
#header .support-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#header .support-side p {
  text-transform: uppercase;
}
#header .support-side a {
  font-size: 22px;
  padding: 5px 0;
  color: #333;
  font-weight: 900;
}
#header .support-side .callback-btn {
  padding: 5px 20px;
  background: #ee4d4d;
  font-size: 16px;
  border-radius: 5px;
  color: #fff;
}
#header .nav-row {
  position: relative;
  justify-content: center;
}
#header .nav-row .site-nav {
  position: absolute;
  bottom: -70px;
}
#header .nav-row .site-nav ul {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
}
#header .nav-row .site-nav ul li {
  position: relative;
}
#header .nav-row .site-nav ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
#header .nav-row .site-nav ul li .submenu {
  position: absolute;
  width: 200px;
  left: 50%;
  visibility: hidden;
  transform: translate(0, 20px);
  opacity: 0;
  transition: 0.3s;
  margin-left: -100px;
  flex-direction: column;
  top: 50px;
  z-index: 999;
}
#header .nav-row .site-nav ul li .submenu::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../images/submenu-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  width: 100%;
  height: 30px;
  top: -27px;
}
#header .nav-row .site-nav ul li .submenu li a {
  display: block;
  text-align: center;
  border-bottom: 1px solid #378ac8;
}
#header .nav-row .site-nav ul a {
  color: #fff;
  padding: 15px 25px;
  background: #4a9edd;
}
#header .nav-row .site-nav ul a:hover {
  background: #4592cc;
}

section#slider {
  padding: 30px 0;
  height: 500px;
  background: url("../images/slider-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
section#slider .container {
  height: 100%;
}
section#slider .container .row {
  height: 100%;
  display: flex;
  align-items: center;
}
section#slider .container .row .slide-item {
  justify-content: center;
  align-items: center;
  display: flex;
}
section#slider .slide-desc h3 {
  text-transform: uppercase;
  font-size: 32px;
  background: #ee4d4d;
  padding: 20px;
  border-radius: 5px;
}
section#slider .slide-desc h3 span {
  font-weight: 700;
}
section#slider .slide-desc p {
  margin-top: 20px;
  width: 85%;
  border-radius: 5px;
  padding: 20px;
  font-size: 22px;
  background: #ee4d4d;
  line-height: 22px;
}
section#slider .slide-desc .red-button {
  padding: 10px 40px;
}

section#last-news {
  padding: 60px 0;
}
section#last-news .last-news-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}
section#last-news .last-news-top h4 {
  font-weight: 900;
  font-size: 22px;
}
section#last-news .last-news-item {
  background: #fff;
  margin-bottom: 40px;
}
section#last-news .last-news-item-image {
  padding-left: 0;
}
section#last-news .last-news-item-content {
  padding-top: 35px;
}
section#last-news .last-news-item-content .last-news-item-hash a {
  color: #ee4d4d;
  margin-right: 10px;
}
section#last-news .last-news-item-content .last-news-item-title {
  font-weight: 900;
  font-size: 22px;
  padding: 12px 0;
}
section#last-news .last-news-item-content .last-news-item-description ul {
  margin: 10px 0 10px 20px;
}
section#last-news .last-news-item-content .last-news-item-description a {
  font-weight: bold;
  color: #ee4d4d;
}

section#recomended {
  padding: 40px 0;
  background: #fff;
}
section#recomended .row {
  flex-direction: column;
  align-items: center;
}
section#recomended .row .section-title {
  font-weight: 900;
  font-size: 22px;
}
section#recomended .row .recomendeds-wrapper {
  padding: 80px 0;
  width: 100%;
}
section#recomended .row .recomendeds-wrapper ul {
  display: flex;
  width: 100%;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
section#recomended .row .recomendeds-wrapper ul li:hover {
  cursor: pointer;
}

section#footer {
  background: #3a4149;
  padding-top: 40px;
}
section#footer .copyright {
  padding: 20px 0;
  color: #fff;
  font-size: 12px;
}
section#footer .footer-content-row {
  padding: 20px 0;
}
section#footer .footer-content-row .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
section#footer .footer-content-row .footer-logo img {
  width: 60%;
}
section#footer span.hr {
  display: block;
  height: 1px;
  background: #fff;
  opacity: 0.2;
}
section#footer .footer-socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#footer .footer-socials .footer-mail {
  text-align: right;
  font-weight: 900;
  color: #fff;
  position: relative;
}
/*section#footer .footer-socials .footer-mail::before {
  content: "";
  display: block;
  width: 22px;
  height: 20px;
  background-image: url("../images/mail-icon.png");
  position: absolute;
  top: 2px;
  left: 5px;
}*/
section#footer .footer-socials .footer-socials-wrapper {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
}
section#footer .footer-socials .footer-socials-wrapper a {
  height: 35px;
  width: 35px;
  border-radius: 50%;
}
section#footer .footer-socials .footer-socials-wrapper .footer-social-vk {
  background-image: url("../images/vk-icon.png");
}
section#footer .footer-socials .footer-socials-wrapper .footer-social-ok {
  background-image: url("../images/ok-icon.png");
}
section#footer .footer-socials .footer-socials-wrapper .footer-social-tg {
  background-image: url("../images/tg-icon.png");
}
section#footer .footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#footer .footer-contacts a {
  color: #fff;
}
section#footer .footer-contacts a span {
  font-weight: 900;
}
section#footer .footer-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section#footer .footer-location a {
  position: relative;
  font-size: 12px;
  color: #fff;
}
section#footer .footer-location a::before {
  content: "";
  width: 15px;
  height: 22px;
  background-image: url("../images/location-icon.png");
  position: absolute;
  top: -2px;
  left: -25px;
}

section.content {
  padding: 50px 0;
}
section.content .container .page-title {
  padding-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  display: block;
  width: 100%;
  text-transform: uppercase;
}

.reception-form {
  display: flex;
  justify-content: center;
  background: #fff;
  align-self: center;
  padding: 20px;
  margin: 30px auto;
  border-radius: 5px;
  flex-direction: column;
  min-width: 570px;
}
.reception-form button {
  font-weight: bold;
}
.reception-form .form-group {
  min-width: 90%;
}
.reception-form .form-group label {
  font-weight: bold;
}
.reception-form .form-group label.required {
  position: relative;
}
.reception-form .form-group label.required::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  position: absolute;
  right: -10px;
  top: 7px;
  background-image: url("../images/required_star.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 100;
}
.reception-form .form-group .form-control {
  padding: 0.8rem 0.8rem;
  height: auto;
}
.reception-form .captcha-img {
  width: 50%;
  margin: 5px auto;
  padding: 10px;
  border: 1px solid #ccc;
}
.map-wrapper {
  position: relative;
  width: 100%;
}
.map-information {
  position: absolute;
  top: 200px;
  background: #fff;
  left: 80px;
  padding: 50px;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
  border-radius: 4px;
  width: 450px;
}
.map-information p {
  margin-bottom: 20px
}
.map-address, .map-phone, .map-mail {
  position: relative;
}
.map-address:before, .map-phone:before, .map-mail:before {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 9px;
  left: -35px;
}
.map-address:before {
  background: url("../images/marker-icon.png") no-repeat center center;
  background-size: 100%;
}
.map-phone:before {
  background: url("../images/phone-icon.png") no-repeat center center;
  background-size: 100%;
  top: -5px;
  left: -35px;
}
.map-mail:before {
  background: url("../images/map-mail-icon.png") no-repeat center center;
  background-size: 100%;
  top: -2px;
  left: -35px;
}