@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap");
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  background: #242934;
  margin: 0 auto;
  color: #FFFFFF; }

.flex-row {
  display: flex;
  flex-flow: row wrap; }

.flex-row-justify-between {
  justify-content: space-between; }

.flex-row-justify-evenly {
  justify-content: space-evenly; }

.flex-row-justify-center {
  justify-content: center; }

.flex-row-justify-start {
  justify-content: flex-start; }

.flex-row-justify-end {
  justify-content: flex-end; }

.flex-row-justify-around {
  justify-content: space-around; }

.flex-row-align-center {
  align-items: center; }

.flex-row-align-start {
  align-items: flex-start; }

.flex-row-align-end {
  align-items: flex-end; }

.flex-column {
  display: flex;
  flex-flow: column wrap; }

.flex-column-justify-between {
  justify-content: space-between; }

.flex-column-justify-evenly {
  justify-content: space-evenly; }

.flex-column-justify-center {
  justify-content: center; }

.flex-column-justify-start {
  justify-content: flex-start; }

.flex-column-justify-end {
  justify-content: flex-end; }

.flex-column-justify-around {
  justify-content: space-around; }

.flex-column-align-center {
  align-items: center; }

.flex-column-align-start {
  align-items: flex-start; }

.flex-column-align-end {
  align-items: flex-end; }

.flex-column-align-stretch {
  align-items: stretch; }

.self-center-align {
  align-self: center; }

.nowrap-flex {
  flex-wrap: nowrap !important; }

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

a:hover {
  color: #182644;
  text-decoration: none; }

header {
  background: #11171f;
  height: 150px; }

@media (min-width: 320px) and (max-width: 1999px) {
  header {
    height: 120px; } }

@media (max-width: 1500px) {
  header {
    height: 9vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  header {
    height: 70px; } }

header > div {
  height: 100%; }

@media (max-width: 1500px) {
  header > div .logo {
    height: 4vw; }
  header > div .logo img {
    height: 100%; } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .logo {
    height: 80%;
    flex-grow: 1;
    text-align: center; } }

@media (max-width: 480px) {
  header > div .logo {
    height: 40px; } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .menuWrapper {
    flex-direction: column; } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .menuItem {
    margin-bottom: 30px; } }

header > div .menuItem a {
  color: #FFF;
  font-size: 36px;
  margin: 0 50px;
  position: relative; }

@media (min-width: 2000px) and (max-width: 2559px) {
  header > div .menuItem a {
    font-size: 29px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  header > div .menuItem a {
    font-size: 22px; } }

@media (max-width: 1500px) {
  header > div .menuItem a {
    margin: 0 20px;
    font-size: 1.5vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .menuItem a {
    font-size: 20px;
    margin-top: 10px; } }

header > div .menuItem.active a:after, header > div .menuItem:hover a:after {
  content: "";
  background: #95d5d0;
  height: 3px;
  width: 98px;
  bottom: -13px;
  position: absolute;
  left: calc(50% - 49px); }

@media (max-width: 1500px) {
  header > div .menuItem.active a:after, header > div .menuItem:hover a:after {
    height: 0.1vw;
    width: 5vw;
    left: calc(50% - 2.4vw); } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .menu {
    position: absolute;
    background: #11171f;
    top: 70px;
    z-index: 9999;
    padding: 25px;
    left: -2000px;
    width: 100%;
    box-sizing: border-box;
    transition: 400ms; } }

header > div .menu.open {
  left: 0; }

header > div .mobileMenu {
  display: none;
  cursor: pointer;
  margin-right: 60px;
  /* Rotate first bar */
  /* Fade out the second bar */
  /* Rotate last bar */ }

header > div .mobileMenu .bar1, header > div .mobileMenu .bar2, header > div .mobileMenu .bar3 {
  width: 35px;
  height: 3px;
  background-color: #FFF;
  margin: 8px 0;
  transition: 0.4s; }

header > div .mobileMenu.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px); }

header > div .mobileMenu.change .bar2 {
  opacity: 0; }

header > div .mobileMenu.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-9px, -7px);
  transform: rotate(45deg) translate(-9px, -7px); }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .mobileMenu {
    display: block; } }

@media (max-width: 480px) {
  header > div .mobileMenu {
    margin-right: 30px; } }

header > div .social a:first-child {
  margin-right: 30px; }

@media (max-width: 1500px) {
  header > div .social a:first-child {
    margin-right: 1.5vw; } }

@media (min-width: 320px) and (max-width: 1999px) {
  header > div .social img {
    width: 40px;
    height: 40px; } }

@media (max-width: 1500px) {
  header > div .social img {
    width: 3vw;
    height: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .social img {
    width: 30px;
    height: 30px; } }

header > div .language {
  position: relative; }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .language {
    margin-right: 10px; } }

@media (max-width: 480px) {
  header > div .language {
    position: absolute;
    top: 65px;
    right: 10px;
    z-index: 999; } }

header > div .language .dropmenu {
  position: relative; }

header > div .language .dropmenu .active img {
  width: 50px;
  border: 1px solid #cccccc; }

@media (min-width: 320px) and (max-width: 1999px) {
  header > div .language .dropmenu .active img {
    width: 30px; } }

@media (max-width: 1500px) {
  header > div .language .dropmenu .active img {
    width: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .language .dropmenu .active img {
    width: 30px; } }

header > div .language .dropmenu .sub {
  display: none;
  position: absolute;
  background: #11171f;
  padding: 20px;
  left: -40px;
  top: 0px;
  z-index: 9; }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .language .dropmenu .sub {
    padding: 10px;
    left: -13px;
    top: 30px; } }

header > div .language .dropmenu .sub img {
  width: 75px;
  border: 1px solid #cccccc;
  margin-bottom: 17px; }

@media (min-width: 320px) and (max-width: 1999px) {
  header > div .language .dropmenu .sub img {
    width: 50px; } }

@media (max-width: 1500px) {
  header > div .language .dropmenu .sub img {
    width: 4vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  header > div .language .dropmenu .sub img {
    width: 35px; } }

header > div .language .dropmenu:hover .sub {
  display: block; }

.footer {
  height: 320px;
  background: #0c1626;
  font-size: 29px;
  text-align: center;
  line-height: 320px;
  position: relative;
  color: #FFFFFF; }

@media (min-width: 320px) and (max-width: 1999px) {
  .footer {
    line-height: 200px;
    height: 200px; } }

@media (max-width: 1500px) {
  .footer {
    line-height: 13vw;
    height: 14vw;
    font-size: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .footer {
    line-height: 100px;
    height: 100px;
    font-size: 15px; } }

.container {
  width: 100%;
  max-width: 2330px;
  margin: 0 auto; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .container {
    max-width: 1920px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .container {
    max-width: 1620px;
    padding: 0 20px;
    box-sizing: border-box; } }

.block {
  margin-top: 215px; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .block {
    margin-top: 110px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .block {
    margin-top: 60px; } }

@media (max-width: 1500px) {
  .block {
    margin-top: 2vw; } }

.button {
  background: #95d5d0;
  font-size: 37px;
  color: #242934;
  border-radius: 10px;
  padding: 20px 50px;
  line-height: 37px;
  text-transform: lowercase;
  cursor: pointer;
  display: inline-block;
  border: none; }

@media (min-width: 320px) and (max-width: 1999px) {
  .button {
    font-size: 26px;
    padding: 12px 35px;
    line-height: 26px; } }

@media (max-width: 1500px) {
  .button {
    font-size: 2vw;
    padding: 0.7vw 2vw;
    line-height: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .button {
    font-size: 15px;
    padding: 15px 50px;
    line-height: 15px; } }

.input {
  font-size: 37px;
  color: #242934;
  border-radius: 10px;
  padding: 18px 25px;
  line-height: 37px;
  border: none; }

@media (min-width: 320px) and (max-width: 1999px) {
  .input {
    font-size: 25px;
    padding: 7px 15px; } }

@media (max-width: 1500px) {
  .input {
    font-size: 1.3vw;
    line-height: 2vw;
    padding: 0.7vw 2vw;
    width: 15vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .input {
    font-size: 13px;
    line-height: 13px;
    padding: 16px 10px;
    width: 100%; } }

@media (max-width: 560px) {
  .input {
    width: auto; } }

.h1 {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  color: #95d5d0;
  margin-bottom: 100px;
  font-weight: normal; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .h1 {
    font-size: 39px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .h1 {
    font-size: 29px;
    margin-bottom: 50px; } }

@media (max-width: 1500px) {
  .h1 {
    font-size: 2.5vw;
    margin-bottom: 6vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .h1 {
    font-size: 20px;
    margin-bottom: 50px;
    margin-top: 50px; } }

.h1:after {
  content: "";
  background: #95d5d0;
  height: 3px;
  width: 98px;
  bottom: -13px;
  position: absolute;
  left: calc(50% - 49px); }

.h1_alt {
  font-size: 44px;
  text-transform: uppercase;
  font-weight: normal; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .h1_alt {
    font-size: 39px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .h1_alt {
    font-size: 29px;
    margin-bottom: 50px; } }

@media (max-width: 1500px) {
  .h1_alt {
    font-size: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .h1_alt {
    font-size: 20px; } }

.wrapper {
  position: relative; }

.bodyWrapper {
  background: -moz-linear-gradient(top, #13151c 0%, rgba(36, 41, 52, 0) 100%);
  background: -webkit-linear-gradient(top, #13151c 0%, rgba(36, 41, 52, 0) 100%);
  background: linear-gradient(to bottom, #13151c 0%, rgba(36, 41, 52, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13151c', endColorstr='#00242934',GradientType=0 );
  margin-bottom: -1580px;
  height: 1580px;
  overflow: hidden; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .bodyWrapper {
    margin-bottom: -1240px;
    height: 1240px; } }

.bodyWrapper > div {
  position: relative; }

.bodyWrapper > div img {
  position: absolute; }

.bodyWrapper > div img.left_rmb {
  left: -200px; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .bodyWrapper > div img.left_rmb {
    left: -175px;
    width: 100%;
    top: -30px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .bodyWrapper > div img.left_rmb {
    width: 1500px; } }

@media (max-width: 1500px) {
  .bodyWrapper > div img.left_rmb {
    width: 103vw;
    left: -8vw; } }

.bodyWrapper > div img.right_rmb {
  right: -220px; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .bodyWrapper > div img.right_rmb {
    right: -310px;
    top: -335px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .bodyWrapper > div img.right_rmb {
    top: -400px; } }

@media (max-width: 1500px) {
  .bodyWrapper > div img.right_rmb {
    top: -14vw;
    right: -4vw;
    width: 164vw; } }

.topBlock {
  position: relative;
  flex-wrap: nowrap; }

@media (min-width: 320px) and (max-width: 767px) {
  .topBlock {
    flex-direction: column; } }

.topBlock > div {
  flex: 1 1 50%; }

.topBlock .left {
  text-align: center;
  color: #95d5d0;
  text-transform: uppercase;
  padding-right: 295px; }

@media (max-width: 1500px) {
  .topBlock .left {
    padding-right: 70px; } }

@media (min-width: 320px) and (max-width: 767px) {
  .topBlock .left {
    padding-right: 0; } }

.topBlock .left h1 {
  font-size: 62.5px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .topBlock .left h1 {
    font-size: 50.5px; } }

@media (max-width: 1500px) {
  .topBlock .left h1 {
    font-size: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .topBlock .left h1 {
    font-size: 30px; } }

.topBlock .left h2 {
  font-size: 33px; }

@media (max-width: 1500px) {
  .topBlock .left h2 {
    font-size: 1.5vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .topBlock .left h2 {
    font-size: 26px; } }

.topBlock .right {
  text-align: center; }

.topBlock .right p {
  font-size: 33px;
  text-align: justify;
  color: #b9b9b9;
  line-height: 44px;
  padding-bottom: 60px; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .topBlock .right p {
    font-size: 24px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .topBlock .right p {
    font-size: 21px; } }

@media (max-width: 1500px) {
  .topBlock .right p {
    font-size: 1.2vw;
    line-height: 2.5vw;
    margin-bottom: 1vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .topBlock .right p {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 0px;
    padding-bottom: 10px; } }

.teamBlock {
  position: relative; }

@media (min-width: 320px) and (max-width: 767px) {
  .teamBlock .teamBlockWrapper {
    flex-direction: column; } }

.teamBlock .teamBlockWrapper .item {
  flex: 1 1 50%; }

@media (min-width: 320px) and (max-width: 767px) {
  .teamBlock .teamBlockWrapper .item {
    margin-bottom: 40px; } }

@media (max-width: 560px) {
  .teamBlock .teamBlockWrapper .item {
    flex-direction: column;
    align-items: center; } }

.teamBlock .teamBlockWrapper .item:first-child {
  margin-right: 50px; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .teamBlock .teamBlockWrapper .item:first-child {
    margin-right: 0px; } }

@media (max-width: 1500px) {
  .teamBlock .teamBlockWrapper .item:first-child {
    margin-right: 1vw; } }

.teamBlock .teamBlockWrapper .item:last-child {
  margin-left: 50px; }

@media (max-width: 1500px) {
  .teamBlock .teamBlockWrapper .item:last-child {
    margin-left: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .teamBlock .teamBlockWrapper .item:last-child {
    margin-left: 0; } }

.teamBlock .teamBlockWrapper .item .img {
  height: 520px;
  border-radius: 50%;
  overflow: hidden;
  width: 520px;
  flex: 1 1 50%;
  max-width: 520px; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .teamBlock .teamBlockWrapper .item .img {
    height: 400px;
    width: 400px;
    max-width: 400px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .teamBlock .teamBlockWrapper .item .img {
    height: 300px;
    width: 300px;
    max-width: 300px; } }

@media (max-width: 1500px) {
  .teamBlock .teamBlockWrapper .item .img {
    height: 20vw;
    width: 20vw;
    min-width: 20vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .teamBlock .teamBlockWrapper .item .img {
    height: 185px;
    width: 185px;
    max-width: 185px; } }

.teamBlock .teamBlockWrapper .item .img img {
  width: 100%;
  height: 100%; }

.teamBlock .teamBlockWrapper .item .about {
  margin-left: 100px;
  flex: 1 1 50%; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .teamBlock .teamBlockWrapper .item .about {
    margin-left: 40px; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .teamBlock .teamBlockWrapper .item .about {
    margin-left: 40px; } }

@media (max-width: 560px) {
  .teamBlock .teamBlockWrapper .item .about {
    margin-left: 0; } }

.teamBlock .teamBlockWrapper .item .about h2 {
  font-size: 44px;
  text-transform: uppercase;
  white-space: nowrap; }

@media (min-width: 320px) and (max-width: 1999px) {
  .teamBlock .teamBlockWrapper .item .about h2 {
    font-size: 24px; } }

@media (max-width: 1500px) {
  .teamBlock .teamBlockWrapper .item .about h2 {
    font-size: 1.6vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .teamBlock .teamBlockWrapper .item .about h2 {
    font-size: 20px;
    margin-top: 0;
    padding-top: 0; } }

@media (max-width: 560px) {
  .teamBlock .teamBlockWrapper .item .about h2 {
    text-align: center;
    margin-top: 20px; } }

.teamBlock .teamBlockWrapper .item .about .text {
  font-size: 25px;
  text-align: justify;
  margin-bottom: 50px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .teamBlock .teamBlockWrapper .item .about .text {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 24px; } }

@media (max-width: 1500px) {
  .teamBlock .teamBlockWrapper .item .about .text {
    font-size: 1vw;
    margin-bottom: 1vw;
    line-height: 1.5vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .teamBlock .teamBlockWrapper .item .about .text {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 20px; } }

.teamBlock .teamBlockWrapper .item .about span {
  font-size: 29px;
  color: #95d5d0;
  text-align: right;
  margin-top: 12px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .teamBlock .teamBlockWrapper .item .about span {
    font-size: 21px; } }

@media (max-width: 1500px) {
  .teamBlock .teamBlockWrapper .item .about span {
    font-size: 1.5vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .teamBlock .teamBlockWrapper .item .about span {
    font-size: 15px; } }

.consultBlock {
  align-items: flex-end; }

@media (min-width: 320px) and (max-width: 767px) {
  .consultBlock {
    margin: 0px 0;
    justify-content: space-between; } }

@media (max-width: 560px) {
  .consultBlock {
    flex-direction: column;
    align-items: unset;
    margin-bottom: 20px; } }

.consultBlock > div {
  width: 25%;
  box-sizing: border-box;
  padding-left: 80px; }

@media (min-width: 320px) and (max-width: 767px) {
  .consultBlock > div {
    width: 30%;
    padding-left: 0px; } }

@media (max-width: 560px) {
  .consultBlock > div {
    width: auto; } }

.consultBlock > div:first-child {
  padding-left: 0; }

.consultBlock .inputs {
  display: flex;
  flex-direction: column; }

@media (max-width: 560px) {
  .consultBlock .inputs {
    margin-top: 25px; } }

.consultBlock .inputs span {
  color: #919499;
  font-size: 29px;
  margin-bottom: 15px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .consultBlock .inputs span {
    font-size: 19px; } }

@media (max-width: 1500px) {
  .consultBlock .inputs span {
    font-size: 1.2vw;
    margin-bottom: 1vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .consultBlock .inputs span {
    font-size: 12px;
    margin-bottom: 10px; } }

.consultBlock .text {
  font-size: 33px;
  text-transform: uppercase;
  line-height: 80px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .consultBlock .text {
    font-size: 24px;
    line-height: 45px; } }

@media (max-width: 1500px) {
  .consultBlock .text {
    font-size: 1.5vw;
    line-height: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .consultBlock .text {
    font-size: 20px;
    line-height: 22px;
    flex-basis: 100%;
    text-align: center;
    margin-top: 30px; } }

.consultBlockFooter {
  margin: 100px 0; }

@media (max-width: 1500px) {
  .consultBlockFooter {
    margin: 7vw 0; } }

@media (max-width: 560px) {
  .consultBlockFooter {
    margin-bottom: 20px; } }

.servicesBlock .servicesBlockWrapper {
  background: #0c1626;
  padding: 80px 0; }

@media (max-width: 1500px) {
  .servicesBlock .servicesBlockWrapper {
    padding: 4vw 0; } }

@media (min-width: 320px) and (max-width: 767px) {
  .servicesBlock .servicesBlockWrapper {
    padding: 10px 0; } }

.servicesBlock .servicesBlockWrapper .item {
  width: 25%;
  box-sizing: border-box;
  flex-grow: 1;
  padding: 40px 0;
  text-align: center; }

@media (min-width: 320px) and (max-width: 767px) {
  .servicesBlock .servicesBlockWrapper .item {
    width: 50%;
    box-sizing: border-box;
    flex-grow: 1;
    padding: 20px 0; } }

.servicesBlock .servicesBlockWrapper .item a {
  color: #FFFFFF; }

@media (min-width: 320px) and (max-width: 1999px) {
  .servicesBlock .servicesBlockWrapper .item a img {
    height: 55px; } }

@media (max-width: 1500px) {
  .servicesBlock .servicesBlockWrapper .item a img {
    height: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .servicesBlock .servicesBlockWrapper .item a img {
    height: 40px; } }

.servicesBlock .servicesBlockWrapper .item a h2.h1 {
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF; }

.servicesBlock .servicesBlockWrapper .item a h2.h1:after {
  background: transparent; }

@media (min-width: 320px) and (max-width: 1999px) {
  .servicesBlock .servicesBlockWrapper .item a h2.h1 {
    font-size: 20px; } }

@media (max-width: 1500px) {
  .servicesBlock .servicesBlockWrapper .item a h2.h1 {
    font-size: 1.5vw;
    margin-bottom: 0; } }

@media (min-width: 320px) and (max-width: 767px) {
  .servicesBlock .servicesBlockWrapper .item a h2.h1 {
    font-size: 17px;
    margin-bottom: 0;
    margin-top: 10px; } }

@media (max-width: 380px) {
  .servicesBlock .servicesBlockWrapper .item a h2.h1 {
    font-size: 14px; } }

.newsBlock .newsBlockWrapper {
  position: relative; }

.newsBlock .newsBlockWrapper .owl-stage-outer {
  overflow: hidden; }

.newsBlock .newsBlockWrapper .owl-stage-outer .owl-stage {
  display: flex; }

.newsBlock .newsBlockWrapper .owl-controls {
  position: absolute;
  right: 0;
  top: -170px; }

@media (max-width: 1500px) {
  .newsBlock .newsBlockWrapper .owl-controls {
    top: -10.5vw; } }

.newsBlock .newsBlockWrapper .owl-controls .owl-nav > div {
  width: 45px;
  height: 45px;
  background: #95d5d0;
  border-radius: 10px;
  font-size: 50px;
  color: #0c1626;
  line-height: 44px; }

@media (max-width: 1500px) {
  .newsBlock .newsBlockWrapper .owl-controls .owl-nav > div {
    width: 3vw;
    height: 3vw;
    font-size: 3vw;
    line-height: 3vw; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .newsBlock .newsBlockWrapper .owl-controls {
    top: -110px; } }

.newsBlock .newsBlockWrapper .item {
  display: flex;
  flex-direction: column; }

.newsBlock .newsBlockWrapper .item .img {
  overflow: hidden;
  height: 400px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .newsBlock .newsBlockWrapper .item .img {
    height: 315px; } }

@media (max-width: 1500px) {
  .newsBlock .newsBlockWrapper .item .img {
    height: 16vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .newsBlock .newsBlockWrapper .item .img {
    height: 150px; } }

.newsBlock .newsBlockWrapper .item .img img {
  width: 100%; }

.newsBlock .newsBlockWrapper .item h1 {
  text-align: center;
  margin-bottom: 50px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .newsBlock .newsBlockWrapper .item h1 {
    margin-bottom: 30px;
    font-size: 24px; } }

@media (max-width: 1500px) {
  .newsBlock .newsBlockWrapper .item h1 {
    margin-bottom: 1vw;
    font-size: 1.5vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .newsBlock .newsBlockWrapper .item h1 {
    margin-bottom: 10px;
    font-size: 14px; } }

.newsBlock .newsBlockWrapper .item .text {
  font-size: 25px;
  text-align: justify;
  line-height: 40px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .newsBlock .newsBlockWrapper .item .text {
    font-size: 14px;
    line-height: 27px; } }

@media (max-width: 1500px) {
  .newsBlock .newsBlockWrapper .item .text {
    font-size: 1vw;
    line-height: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .newsBlock .newsBlockWrapper .item .text {
    font-size: 12px;
    line-height: 14px; } }

.newsBlock .newsBlockWrapper .item .button {
  margin: 50px auto; }

@media (min-width: 320px) and (max-width: 1999px) {
  .newsBlock .newsBlockWrapper .item .button {
    margin: 25px auto; } }

.newsBlock .newsBlockWrapper.no-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.newsBlock .newsBlockWrapper.no-slide .item {
  background: #0c1626;
  width: 31%;
  margin-bottom: 40px;
  box-sizing: border-box;
  padding: 50px;
  margin-right: 40px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .newsBlock .newsBlockWrapper.no-slide .item {
    margin-right: 30px; } }

@media (max-width: 1500px) {
  .newsBlock .newsBlockWrapper.no-slide .item {
    margin-right: 2vw;
    padding: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .newsBlock .newsBlockWrapper.no-slide .item {
    margin: 5px;
    padding: 20px;
    width: 48%; } }

.contactBlock .contactBlockWrapper {
  background: #0c1626; }

.contactBlock .contactBlockWrapper > div {
  flex-wrap: nowrap;
  padding: 100px 0; }

@media (max-width: 1500px) {
  .contactBlock .contactBlockWrapper > div {
    padding: 4vw 20px; } }

@media (min-width: 320px) and (max-width: 767px) {
  .contactBlock .contactBlockWrapper > div {
    padding: 0 20px;
    flex-direction: column; } }

.contactBlock .contactBlockWrapper > div .maps {
  width: 65%;
  height: 715px;
  padding: 30px 0; }

@media (min-width: 320px) and (max-width: 1999px) {
  .contactBlock .contactBlockWrapper > div .maps {
    height: 450px; } }

@media (max-width: 1500px) {
  .contactBlock .contactBlockWrapper > div .maps {
    height: 34vw;
    padding: 2.5vw 0; } }

@media (min-width: 320px) and (max-width: 767px) {
  .contactBlock .contactBlockWrapper > div .maps {
    height: 350px;
    padding: 20px 0;
    width: 100%; } }

.contactBlock .contactBlockWrapper > div .maps #map {
  height: 100%;
  width: 100%; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .contactBlock .contactBlockWrapper > div .about {
    margin-left: 75px; } }

.contactBlock .contactBlockWrapper > div .about .item {
  font-size: 25px;
  margin: 15px 0;
  color: #FFFFFF; }

@media (min-width: 320px) and (max-width: 1999px) {
  .contactBlock .contactBlockWrapper > div .about .item {
    font-size: 16px; } }

@media (max-width: 1500px) {
  .contactBlock .contactBlockWrapper > div .about .item {
    font-size: 1vw;
    margin: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .contactBlock .contactBlockWrapper > div .about .item {
    font-size: 14px;
    margin: 10px 0; } }

.contactBlock .contactBlockWrapper > div .about .item .social {
  float: right; }

@media (max-width: 1500px) {
  .contactBlock .contactBlockWrapper > div .about .item .social {
    margin-left: 1vw; } }

.contactBlock .contactBlockWrapper > div .about .item img {
  vertical-align: middle;
  margin-right: 20px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .contactBlock .contactBlockWrapper > div .about .item img {
    width: 40px;
    height: 40px; } }

@media (max-width: 1500px) {
  .contactBlock .contactBlockWrapper > div .about .item img {
    width: 3vw;
    height: 3vw;
    margin-right: 1vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .contactBlock .contactBlockWrapper > div .about .item img {
    width: 20px;
    height: 20px;
    margin-right: 5px; } }

@media (min-width: 320px) and (max-width: 767px) {
  .contactPage {
    margin: 0 20px; } }

.contactPage h1 {
  margin-bottom: 0; }

.contactPage .contactBlockWrapper {
  background: transparent; }

@media (min-width: 320px) and (max-width: 1999px) {
  .contactPage .contactBlockWrapper > div {
    padding: 50px 0 0; } }

.contactPage .contactBlockWrapper > div .maps {
  order: 2; }

.contactPage .contactBlockWrapper > div .about {
  order: 1; }

@media (min-width: 2000px) and (max-width: 2559px) {
  .contactPage .contactBlockWrapper > div .about {
    margin-left: 0;
    margin-right: 75px; } }

.loginPage {
  font-size: 29px;
  height: calc(100vh - 470px);
  display: flex;
  flex-direction: column;
  justify-content: center; }

.loginPage .input {
  padding: 30px 25px; }

.adminPage {
  font-size: 29px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; }

.adminPage .big-heading {
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  padding-left: 22px;
  margin-bottom: 48px;
  border-left: 9px solid #95d5d0; }

.adminPage .big-heading small {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 4px;
  padding-top: 9px; }

.adminPage .nav-tabs > li {
  background: #ccc; }

.adminPage .input {
  padding: 30px 25px; }

.adminPage select {
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  margin: 11px 0;
  font-size: 20px;
  color: #0c1626; }

.adminPage form {
  margin: 50px 0; }

.adminPage .form-group {
  margin: 30px 0; }

.adminPage .btn {
  padding: 12px 17px;
  font-size: 20px; }

.adminPage .note-editor {
  background: #0c1626;
  color: #FFF; }

.practiceBlock .item {
  background: #0c1626;
  text-align: center;
  width: calc(50% - 40px);
  margin-bottom: 40px;
  padding: 95px;
  box-sizing: border-box; }

@media (max-width: 1500px) {
  .practiceBlock .item {
    width: calc(50% - 2vw);
    margin-bottom: 2vw;
    padding: 4vw; } }

@media (max-width: 1500px) {
  .practiceBlock .item img {
    height: 4vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .practiceBlock .item img {
    height: 30px; } }

.practiceBlock .item:nth-child(even) {
  margin-left: 1vw; }

.practiceBlock .item:nth-child(odd) {
  margin-right: 1vw; }

.practiceBlock .item h2 {
  color: #FFFFFF;
  margin-bottom: 50px; }

@media (max-width: 1500px) {
  .practiceBlock .item h2 {
    margin-bottom: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .practiceBlock .item h2 {
    margin: 20px 0;
    font-size: 15px; } }

@media (max-width: 420px) {
  .practiceBlock .item h2 {
    font-size: 11px; } }

.practiceBlock .item h2:after {
  background: transparent; }

.practiceBlock .item .text {
  font-size: 25px;
  line-height: 40px;
  text-align: justify; }

.viewBlock {
  background: #0c1626;
  box-sizing: border-box;
  padding: 100px 0;
  margin-bottom: 100px; }

@media (max-width: 1500px) {
  .viewBlock {
    padding: 6vw 0;
    margin-bottom: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock {
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    padding: 20px 0;
    margin-bottom: 10px; } }

.viewBlock .title {
  width: calc(40% - 1px);
  align-self: center;
  text-align: center; }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock .title {
    width: 100%; } }

@media (max-width: 1500px) {
  .viewBlock .title > img {
    height: 5vw;
    margin-bottom: 2vw; } }

.viewBlock .title h1 {
  color: #FFFFFF;
  margin: 0 auto 50px auto;
  max-width: 700px; }

.viewBlock .title h1:after {
  background: transparent; }

.viewBlock .title .image {
  width: 100%;
  box-sizing: border-box;
  padding: 0 100px; }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock .title .image {
    padding: 0 20px; } }

.viewBlock .title .image img {
  width: 100%; }

.viewBlock .title .date {
  font-size: 38px;
  color: #95d5d0;
  margin: 50px 0; }

@media (max-width: 1500px) {
  .viewBlock .title .date {
    font-size: 2vw;
    margin: 3vw 0; } }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock .title .date {
    font-size: 14px;
    margin: 10px 0; } }

.viewBlock .title .category, .viewBlock .title .author {
  font-size: 29px; }

@media (max-width: 1500px) {
  .viewBlock .title .category, .viewBlock .title .author {
    font-size: 1.5vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock .title .category, .viewBlock .title .author {
    font-size: 14px; } }

.viewBlock .title .author {
  margin-top: 25px; }

@media (max-width: 1500px) {
  .viewBlock .title .author {
    margin-top: 1vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock .title .author {
    font-size: 12px;
    margin-bottom: 50px; } }

.viewBlock.news .title h1 {
  margin: 0 0 50px 0; }

.viewBlock .line {
  width: 2px;
  background: #95d5d0; }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock .line {
    width: auto;
    background: #95d5d0;
    height: 1px;
    margin: -20px 20px 20px; } }

.viewBlock .text {
  width: calc(60% - 1px);
  box-sizing: border-box;
  padding: 150px 200px;
  line-height: 30px;
  font-size: 25px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .viewBlock .text {
    padding: 0px 50px;
    line-height: 30px;
    font-size: 15px; } }

@media (max-width: 1500px) {
  .viewBlock .text {
    padding: 0px 4vw;
    line-height: 1.7vw;
    font-size: 1vw;
    align-self: center; } }

@media (min-width: 320px) and (max-width: 767px) {
  .viewBlock .text {
    padding: 0 20px;
    line-height: 21px;
    font-size: 14px;
    align-self: center;
    width: 100%;
    text-align: justify; } }

.sendPage {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin: 250px 0; }

@media (min-width: 320px) and (max-width: 1999px) {
  .sendPage {
    margin: 100px 0; } }

.sendPage .logo {
  width: 70%;
  align-self: center; }

@media (min-width: 320px) and (max-width: 1999px) {
  .sendPage .logo {
    width: 50%; } }

@media (min-width: 320px) and (max-width: 767px) {
  .sendPage .logo {
    width: 70%; } }

.sendPage .h1_alt {
  font-size: 63px;
  color: #95d5d0; }

@media (min-width: 320px) and (max-width: 1999px) {
  .sendPage .h1_alt {
    font-size: 44px; } }

@media (max-width: 1500px) {
  .sendPage .h1_alt {
    font-size: 4vw;
    margin-bottom: 2vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .sendPage .h1_alt {
    font-size: 25px;
    margin-bottom: 10px; } }

.sendPage .text_sub {
  font-size: 63px;
  color: #95d5d0;
  margin: 25px 0;
  text-transform: uppercase; }

@media (min-width: 320px) and (max-width: 1999px) {
  .sendPage .text_sub {
    font-size: 44px; } }

@media (max-width: 1500px) {
  .sendPage .text_sub {
    font-size: 3vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .sendPage .text_sub {
    font-size: 20px; } }

.sendPage .buttons {
  margin-top: 100px; }

.sendPage .buttons .main {
  margin-left: 40px; }

@media (max-width: 1500px) {
  .sendPage .buttons .main {
    margin-left: 2vw; } }

@media (max-width: 1500px) {
  .sendPage .buttons {
    margin-top: 7vw; } }

@media (min-width: 320px) and (max-width: 767px) {
  .sendPage .buttons .button {
    margin: 5px; } }

.popupWrapper {
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 999;
  top: 0;
  /*
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
   */ }

.popupWrapper .popupBlock {
  position: relative;
  background: #0c1626;
  padding: 100px;
  border-radius: 10px; }

@media (max-width: 1500px) {
  .popupWrapper .popupBlock {
    padding: 5vw; } }

.popupWrapper .popupBlock h2 {
  text-align: center; }

@media (max-width: 1500px) {
  .popupWrapper .popupBlock h2 {
    margin-bottom: 2vw; } }

.popupWrapper .popupBlock .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 39px;
  cursor: pointer; }

@media (max-width: 1500px) {
  .popupWrapper .popupBlock .close {
    width: 2vw; } }

.popupWrapper .popupBlock .inputs {
  display: flex;
  flex-direction: column;
  margin: 50px 20px; }

.popupWrapper .popupBlock .inputs span {
  color: #919499;
  font-size: 29px;
  margin-bottom: 15px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .popupWrapper .popupBlock .inputs span {
    font-size: 19px; } }

@media (max-width: 1500px) {
  .popupWrapper .popupBlock .inputs span {
    font-size: 1.2vw;
    margin-bottom: 1vw; } }

@media (min-width: 320px) and (max-width: 1999px) {
  .popupWrapper .popupBlock .inputs {
    margin: 0 20px 50px; } }

@media (max-width: 1500px) {
  .popupWrapper .popupBlock .inputs {
    margin: 2vw 1vw; } }

.popupWrapper .popupBlock .inputs .button {
  align-self: center; }

.popupWrapper .popupBlock .text {
  font-size: 33px;
  text-transform: uppercase;
  line-height: 80px; }

@media (min-width: 320px) and (max-width: 1999px) {
  .popupWrapper .popupBlock .text {
    font-size: 24px;
    line-height: 45px; } }

@media (max-width: 1500px) {
  .popupWrapper .popupBlock .text {
    font-size: 1.5vw;
    line-height: 3vw; } }
