.preloader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2d2d2d;
  z-index: 9999;
}

.preloader .pulse {
  position: relative;
}

.preloader .pulse img {
  width: 250px;
}

.preloader .pulse .load-text {
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  letter-spacing: 10px;
  margin: 10px 0 0;
}

.preloader .pulse .load-text span {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  -webkit-animation: pulse-outer 1.8s linear infinite;
          animation: pulse-outer 1.8s linear infinite;
}

.preloader .pulse .load-text span:nth-child(1) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.preloader .pulse .load-text span:nth-child(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.preloader .pulse .load-text span:nth-child(3) {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

@-webkit-keyframes pulse-outer {
  0% {
    opacity: 0;
  }
  50%, 60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulse-outer {
  0% {
    opacity: 0;
  }
  50%, 60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*---------- GENERAL ----------*/
html {
  overflow-x: hidden;
}

html.overflow, html.ovfl {
  overflow: hidden;
}

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #2d2d2d;
  background-color: #fff;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, a:hover, a:focus, a:active, input, textarea, select, option {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline: none !important;
}

input {
  cursor: text;
}

input[type='submit'], input[type='button'], input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
}

input::-webkit-input-placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input::-moz-placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:-ms-input-placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input::placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::-moz-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea {
  cursor: text;
}

textarea::-webkit-input-placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea::-moz-placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:-ms-input-placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea::placeholder {
  color: #2d2d2d;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus::-moz-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

textarea:focus::placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.input {
  position: relative;
  width: 100%;
  height: 55px;
}

.input input,
.input select {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16.8px;
  font-weight: 300;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d3d3d3;
}

.input input:focus ~ .focus,
.input select:focus ~ .focus {
  left: 0;
  width: 100%;
}

.input input ~ .focus,
.input select ~ .focus {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #c10b21;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 1px;
}

svg path {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.section.for-footer {
  width: 100%;
  height: 100vh;
}

.inside-bg {
  position: absolute;
  content: '';
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.navigation {
  position: absolute;
  top: 25px;
  right: 110px;
  font-size: 12.5px;
  color: #fff;
  z-index: 11;
}

.navigation.dark {
  color: #767676;
}

.navigation.dark a {
  color: #767676;
}

.navigation a {
  color: #fff;
  border-bottom: 1px solid transparent;
  padding: 0 0 2px;
}

.navigation a:hover {
  border-bottom: 1px solid #c10b21;
}

.navigation span {
  display: inline-block;
  margin: 0 5px;
}

.to-down {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  bottom: 20px;
  left: 50%;
  width: 21px;
  height: 14.75px;
  text-align: center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: 0 0 0 -10.5px;
  z-index: 2;
}

.to-down img {
  width: 21px;
  height: 14.75px;
}

.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

[class*="ymaps-2"][class*="-ground-pane"] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
  opacity: .5;
}

[class*="ymaps-2"][class*="-copyrights-pane"] {
  opacity: 0;
}

[class*="ymaps-2"][class*="-map-bg-ru"] {
  background: none;
}

/*---------- END GENERAL ----------*/
/*---------- HEADER ----------*/
header {
  position: fixed;
  right: 0;
  width: 75px;
  height: 100vh;
  text-align: center;
  letter-spacing: 1px;
  will-change: transform, opacity;
  background-color: #2d2d2d;
  z-index: 99;
}

header.hold {
  position: absolute;
  top: 100vh;
}

header .logo {
  position: relative;
  width: 100%;
  height: 73px;
  margin: 0 0 30px;
}

header .logo:after {
  position: absolute;
  content: '';
  top: 0;
  left: -200px;
  width: 275px;
  height: 100%;
  background-color: #c10b21;
  will-change: transform, opacity;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

header .logo:hover:after {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

header .logo:hover a img:last-child {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

header .logo a {
  width: 100%;
  height: 100%;
}

header .logo a img {
  will-change: transform, opacity;
}

header .logo a img:first-child {
  width: 100%;
  height: 100%;
}

header .logo a img:last-child {
  position: absolute;
  top: 6px;
  left: -175px;
  height: 70px;
  opacity: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 1;
}

header .toggle {
  position: relative;
  padding: 20px 0 15px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .toggle:hover {
  background-color: #262626;
}

header .toggle a {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-size: 9.7px;
  color: #fff;
}

header .toggle a hr {
  display: block;
  width: 31px;
  height: 2px;
  background-color: #fff;
  border: none;
  will-change: transform;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 auto 6px;
}

header .toggle a hr:nth-child(3) {
  margin: 0 auto 8px;
}

header .toggle a span {
  display: block;
}

header .search {
  display: block;
  padding: 20px 0;
  margin: 10px auto 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .search:hover {
  background-color: #262626;
}

header .search a {
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-size: 9.28px;
  color: #fff;
  line-height: 1;
}

header .search a img {
  position: relative;
  width: 17px;
  margin: 0 0 10px;
}

header .search a span {
  display: block;
}

header .lang {
  display: block;
  margin: 0 auto;
}

header .lang a {
  display: block;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  opacity: .7;
  margin: 0 0 40px;
}

header .lang a:hover, header .lang a.active {
  opacity: 1;
}

header .social {
  position: absolute;
  display: block;
  bottom: 80px;
  width: 100%;
  margin: 0 auto;
}

header .social a {
  display: block;
  opacity: .5;
  margin: 0 0 25px;
}

header .social a:hover {
  opacity: 1;
}

header .social a img {
  width: 15px;
}

header .to-top {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 59px;
  background-color: #262626;
}

header .to-top:hover {
  background-color: #9f071a;
}

header .to-top img {
  width: 10px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*---------- END HEADER ----------*/
/*---------- MAIN ----------*/
.main {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.main video {
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.main .overlay {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/media/site/img/overlay.jpg");
  opacity: .8;
  z-index: 1;
}

.main .head {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 135px;
  letter-spacing: 1px;
  padding: 0 42px;
  z-index: 2;
}

.main .head:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 42px;
  right: 42px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.main .head .logo {
  display: inline-block;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.main .head .logo img {
  width: 275px;
}

.main .head .sidebar {
  display: inline-block;
}

.main .head .sidebar .lang {
  display: inline-block;
}

.main .head .sidebar .lang a {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  opacity: .7;
  margin: 0 0 0 20px;
}

.main .head .sidebar .lang a:hover, .main .head .sidebar .lang a.active {
  opacity: 1;
}

.main .head .sidebar .search {
  display: inline-block;
  margin: 0 0 0 60px;
}

.main .head .sidebar .search a {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  line-height: 1;
  opacity: .7;
}

.main .head .sidebar .search a:hover {
  opacity: 1;
}

.main .head .sidebar .search a img {
  position: relative;
  top: -2px;
  width: 14px;
}

.main .head .sidebar .search a span {
  display: inline-block;
}

.main .toggle {
  position: relative;
  margin: 50px 0;
  z-index: 3;
}

.main .toggle a {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-size: 11.4px;
  color: #fff;
  line-height: 1;
}

.main .toggle a:hover hr:nth-child(1) {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.main .toggle a:hover hr:nth-child(2) {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.main .toggle a:hover hr:nth-child(3) {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}

.main .toggle a hr {
  display: block;
  width: 39px;
  height: 2px;
  background-color: #fff;
  border: none;
  will-change: transform;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0;
}

.main .toggle a hr:nth-child(1) {
  margin: 0 0 10px;
}

.main .toggle a hr:nth-child(2) {
  background-color: #c10b21;
  -webkit-transform: scaleX(1.4);
      -ms-transform: scaleX(1.4);
          transform: scaleX(1.4);
  margin: 0 0 10px;
}

.main .toggle a hr:nth-child(3) {
  margin: 0 0 5px;
}

.main .toggle a span {
  display: block;
}

.main .welcome {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.main .welcome h1 {
  position: relative;
  font-size: 36px;
  font-weight: 600;
}

.main .welcome h1 span {
  display: block;
  text-transform: uppercase;
  font-size: 65px;
  font-weight: 700;
}

.main .welcome .quote p {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  padding: 0 30%;
}

.main .welcome .quote .icon {
  position: relative;
  display: inline-block;
  font-size: 78px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main .welcome .quote .icon:before, .main .welcome .quote .icon:after {
  position: absolute;
  content: '';
  top: 23px;
  width: 45px;
  height: 1px;
  background-color: #fff;
}

.main .welcome .quote .icon:before {
  left: -65px;
}

.main .welcome .quote .icon:after {
  right: -75px;
}

.main .welcome .quote .author {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  margin: 30px 0 0;
}

.main .welcome .quote .author span {
  display: block;
  color: #bcbcbc;
}

/*---------- END MAIN ----------*/
/*---------- ABOUT ----------*/
.about {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/about/1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.about .border {
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: .15;
  margin: 0 0 35px;
}

.about .title {
  padding: 0 0 28px;
}

.about .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.about .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.about .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.about .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.about .about-img {
  margin: 0 0 50px;
}

.about .about-link {
  position: relative;
  padding: 25px 0 0;
}

.about .about-link:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #c10b21;
}

.about .about-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .about-link ul li {
  display: block;
  margin: 0 0 20px;
}

.about .about-link ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  color: #cccccc;
  border-bottom: 1px solid transparent;
  padding: 0 0 10px;
}

.about .about-link ul li a.active, .about .about-link ul li a:hover {
  border-bottom: 1px solid #cccccc;
}

.about .about-text p {
  font-size: 14.6px;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 30px;
}

.about-block {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/main/2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.about-block .col-lg-8 {
  padding: 0 170px 0 15px;
}

.about-block .title {
  margin: 0 0 40px;
}

.about-block .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.about-block .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.about-block .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  line-height: 1;
}

.about-block .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #2d2d2d;
}

.about-block .about-text {
  text-align: right;
}

.about-block .about-text p {
  text-align: left;
  font-size: 14.6px;
  line-height: 1.7;
  margin: 0 0 25px;
}

.about-block .about-text .btn-more {
  display: inline-block;
  font-size: 14.6px;
  font-style: italic;
  color: #575757;
  line-height: 1;
}

.about-block .about-text .btn-more:hover {
  color: #c10b21;
}

.about-block .about-text .btn-more:hover .icon svg path {
  fill: #c10b21;
}

.about-block .about-text .btn-more .icon {
  position: relative;
  display: inline-block;
  top: 1px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0 0 15px;
}

.about-block .about-text .btn-more .icon svg {
  width: 17px;
  height: initial;
}

.about-block .about-text .btn-more .icon svg path {
  fill: #575757;
}

.about-block .about-slider {
  position: relative;
  background-image: url("/media/site/img/overlay.png");
  padding: 35px 60px 35px 0;
  margin: 50px 0;
}

.about-block .about-slider:before {
  position: absolute;
  content: '';
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: url("/media/site/img/overlay.png");
}

.about-block .about-slider .swiper-about .box {
  position: relative;
}

.about-block .about-slider .swiper-about .box .box-info {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  border-left: 5px solid #c10b21;
  padding: 10px 0 10px 30px;
  margin: 0 0 30px;
}

.about-block .about-slider .swiper-about .box .btn-more {
  display: inline-block;
  font-size: 14.6px;
  font-style: italic;
  color: #adadad;
  line-height: 1;
  padding: 0 0 0 35px;
}

.about-block .about-slider .swiper-about .box .btn-more:hover {
  color: #fff;
}

.about-block .about-slider .swiper-about .box .btn-more:hover .icon svg path {
  fill: #fff;
}

.about-block .about-slider .swiper-about .box .btn-more .icon {
  position: relative;
  display: inline-block;
  top: 1px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0 0 15px;
}

.about-block .about-slider .swiper-about .box .btn-more .icon svg {
  width: 17px;
  height: initial;
}

.about-block .about-slider .swiper-about .box .btn-more .icon svg path {
  fill: #adadad;
}

.about-block .about-slider .swiper-about .swiper-pagination-bullets {
  bottom: 0;
  right: 0;
  left: initial;
  width: initial;
}

.about-block .about-slider .swiper-about .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.about-block .about-slider .swiper-about .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.35);
}

.about-block .other-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-block .other-link ul:after {
  clear: both;
  content: '';
  display: table;
}

.about-block .other-link ul li {
  position: relative;
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  padding: 50px 0 0;
}

.about-block .other-link ul li:before {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background-color: #858585;
  margin: 0 0 0 -0.5px;
}

.about-block .other-link ul li a {
  display: block;
  font-size: 14.6px;
  font-weight: 600;
  color: #858585;
  line-height: 1;
}

.about-block .other-link ul li a:hover {
  color: #c10b21;
}

.about-block .other-link ul li a .icon {
  display: block;
  margin: 0 0 15px;
}

.about-block .other-link ul li a .icon img {
  width: 51px;
}

.about-block .other-link ul li a .text {
  display: block;
}

.about-block .about-begin img {
  width: 100%;
}

.about-block .about-begin .btn {
  width: 100%;
  height: 90px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #2d2d2d;
  border: 2px solid #c10b21;
  line-height: 1;
  margin: 80px 0 0;
}

.about-block .about-begin .btn:hover {
  color: #fff;
  background-color: #c10b21;
}

.about-block .about-begin .btn:hover .icon svg path {
  fill: #fff;
}

.about-block .about-begin .btn .icon {
  display: inline-block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0 0 30px;
}

.about-block .about-begin .btn .icon svg {
  width: 28px;
  height: initial;
}

.about-block .about-begin .btn .icon svg path {
  fill: #2d2d2d;
}

.advantages {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/about/2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.advantages .row:nth-child(2) .adv-text {
  padding: 30px 50px 0 0;
}

.advantages .row:nth-child(2) .adv-img {
  text-align: right;
}

/*.advantages .row:last-child .adv-text {*/
  /*padding: 30px 0 0 57px;*/
/*}*/

/*.advantages .row:last-child .adv-text:before {*/
  /*left: 57px;*/
/*}*/

.advantages .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 75px;
}

.advantages .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #2d2d2d;
}

.advantages .adv-img {
  margin: 0 0 60px;
  margin: 0 0 60px;
  overflow: hidden;
  height: 300px;
}

.advantages .adv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages .adv-text {
  position: relative;
  padding: 30px 0 0;
}

.advantages .adv-text:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #c10b21;
}

.advantages .adv-text p {
  font-size: 14.6px;
  line-height: 1.6;
  margin: 0 0 30px;
}

.advantages .adv-text p span {
  display: inline-block;
  text-transform: uppercase;
  color: #c10b21;
}

.story {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/about/3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.story .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 120px;
}

.story .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.story .swiper-story {
  padding: 130px 0 0;
  margin: 0 120px 0 105px;
}

.story .swiper-story .box {
  position: relative;
}

.story .swiper-story .box .box-date {
  font-size: 52.8px;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  line-height: 1;
  margin: 0 0 40px;
}

.story .swiper-story .box .box-text {
  font-size: 14.6px;
  font-weight: 300;
  font-style: italic;
  color: #cccccc;
  line-height: 1.7;
}

.story .swiper-button-next, .story .swiper-button-prev {
  background: none;
  width: 16px;
  height: 28px;
  margin-top: 30px;
}

.story .swiper-button-next img, .story .swiper-button-prev img {
  width: 100%;
}

.story .swiper-button-next {
  right: 15px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.story .swiper-button-prev {
  left: 15px;
}

.story .swiper-pagination {
  top: 0;
  right: 15px;
  left: 15px;
}

.story .swiper-pagination:after {
  position: absolute;
  content: '';
  top: 55%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #575757;
  z-index: 0;
}

.story .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 9px;
  height: 9px;
  background-color: #575757;
  border: 1px solid #575757;
  opacity: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 3.5%;
  z-index: 1;
}

.story .swiper-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: -25px;
  left: -14px;
  font-size: 12.5px;
  color: #989898;
  letter-spacing: 1.5px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(1):before {
  content: '2009';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(2):before {
  content: '2010';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(3):before {
  content: '2011';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(4):before {
  content: '2012';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(5):before {
  content: '2013';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(6):before {
  content: '2014';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(7):before {
  content: '2015';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(8):before {
  content: '2016';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(9):before {
  content: '2017';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(10):before {
  content: '2018';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(11):before {
  content: '2019';
}

.story .swiper-pagination .swiper-pagination-bullet:nth-child(12):before {
  content: '2020';
}

.story .swiper-pagination .swiper-pagination-bullet-active {
  border: 1px solid #fff;
}

.story .swiper-pagination .swiper-pagination-bullet-active:before {
  color: #fff;
}

.features {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/about/4.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.features .border {
  width: 100%;
  height: 1px;
  background-color: #cecece;
  margin: 0 0 70px;
}

.features .title {
  padding: 0 0 45px;
}

.features .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.features .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.features .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  line-height: 1;
}

.features .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #2d2d2d;
}

.features .swiper-features .box {
  position: relative;
}

.features .swiper-features .box .box-icon img {
  height: 68px;
}

.features .swiper-features .box .box-title {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin: 40px 0;
}

.features .swiper-features .box .box-text {
  font-size: 14.6px;
  color: #858585;
  line-height: 1.7;
}

.features .swiper-button-next, .features .swiper-button-prev {
  background: none;
  top: -120px;
  width: 16px;
  height: 28px;
  margin: 0;
}

.features .swiper-button-next img, .features .swiper-button-prev img {
  width: 100%;
}

.features .swiper-button-next {
  right: 15px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.features .swiper-button-prev {
  left: initial;
  right: 55px;
  margin: -2px 0 0;
}

/*---------- END ABOUT ----------*/
/*---------- PRACTICES ----------*/
.practices {
  position: relative;
  width: 100%;
  height: 970px;
  background-image: url("/media/site/img/practices/1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.practices .border {
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: .15;
  margin: 0 0 35px;
}

.practices .title {
  padding: 0 0 28px;
}

.practices .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.practices .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.practices .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.practices .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.practices .practices-link {
  position: relative;
  padding: 25px 0 0;
}

.practices .practices-link:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #c10b21;
}

.practices .practices-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practices .practices-link ul li {
  display: block;
  margin: 0 0 20px;
}

.practices .practices-link ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  color: #cccccc;
  border-bottom: 1px solid transparent;
  padding: 0 0 10px;
}

.practices .practices-link ul li a.active, .practices .practices-link ul li a:hover {
  border-bottom: 1px solid #cccccc;
}

.practices .practices-text p {
  font-size: 14.6px;
  color: #fff;
  line-height: 1.6;
}

.practices-block {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/main/3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5% 0;
}

.practices-block .row {
  display: flex;
  flex-wrap: wrap;
}

/*.practices-block .row .col-lg-4 {
  width: 40%;
}

.practices-block .row .col-lg-8 {
  width: 60%;
}*/

.practices-block .row:last-child .col-lg-4 {
  padding: 0 45px 0 15px;
}

.practices-block .title {
  margin: 0 0 30px;
}

.practices-block .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.practices-block .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.practices-block .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 110px;
}

.practices-block .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.practices-block .btn {
  width: 100%;
  height: 90px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #c10b21;
  line-height: 1;
}

.practices-block .btn:hover {
  background-color: #c10b21;
}

.practices-block .btn .icon {
  display: inline-block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0 0 30px;
}

.practices-block .btn .icon img {
  width: 28px;
}

.practices-block .note {
  position: relative;
  font-size: 14.6px;
  color: #fff;
  line-height: 1.6;
  padding: 30px 0 0;
  margin: 65px 0 0;
}

.practices-block .note:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 55px;
  height: 1px;
  background-color: #fff;
}

.practices-block .note span {
  display: inline-block;
  color: #c10b21;
}

.practices-block .list {
  position: relative;
  display: inline-block;
  width: 97%;
  min-height: 560px;
  border: 5px solid rgba(181, 181, 181, 0.3);
  padding: 45px 15px 25px 50px;
  margin: 10px 0 0 3%;
}

.practices-block .list .icon-balance {
  position: absolute;
  bottom: 60px;
  right: 55px;
}

.practices-block .list .icon-balance img {
  width: 100px;
}

.practices-block .list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practices-block .list ul li {
  display: block;
  margin: 0 0 37px;
}

.practices-block .list ul li a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #bebebe;
  line-height: 2;
}

.practices-block .list ul li a:hover {
  color: #fff;
}

.practices-block .list ul li a:hover .icon {
  opacity: 1;
  -webkit-transform: translateX(0) rotate(180deg);
      -ms-transform: translateX(0) rotate(180deg);
          transform: translateX(0) rotate(180deg);
}

.practices-block .list ul li a .icon {
  position: relative;
  display: inline-block;
  top: 1px;
  opacity: 0;
  -webkit-transform: translateX(-10px) rotate(180deg);
      -ms-transform: translateX(-10px) rotate(180deg);
          transform: translateX(-10px) rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 0 0 15px;
}

.practices-block .list ul li a .icon img {
  width: 28px;
}

#kinds.section {
  background-image: url("/media/site/img/white.jpg");
}

.kinds {
  position: relative;
  margin: -480px 0 0;
  padding: 40px 0 70px;
}

.kinds .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 70px;
}

.kinds .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.kinds .box-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.kinds .box-row:after {
  display: table;
  clear: both;
  content: '';
}

.kinds .box {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 385px;
  float: left;
  background-color: #282828;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: luminosity;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 0 15px;
  z-index: 1;
  flex-grow: 1;
}

.kinds .box:hover {
  background-color: transparent;
  -webkit-box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.75);
          box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.kinds .box:hover .overlay {
  opacity: 0;
}

.kinds .box:hover .box-info .box-bg {
  opacity: 1;
}

.kinds .box:hover .box-info .box-title {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  margin: 0 0 25px;
}

.kinds .box:hover .box-info .btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/*.kinds .box:nth-child(2n-1) {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}*/

/*.kinds .box:nth-child(2n-1) .box-info {
  text-align: right;
  padding: 50px 45px 50px 35px;
}*/

/*.kinds .box:nth-child(2n-1) .box-info .box-title {
  text-align: left;
}*/

/*.kinds .box:last-child {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}*/

/*.kinds .box:last-child .box-info {
  text-align: center;
  padding: 50px 35px;
}*/

.kinds .box .overlay {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #282828;
  opacity: .75;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.kinds .box .box-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 390px;
  padding: 50px 35px 50px 45px;
  z-index: 1;
}

.kinds .box .box-info .box-bg {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/media/site/img/black.jpg");
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.kinds .box .box-info .box-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid #c10b21;
  -webkit-transform: translateY(25px);
      -ms-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 0 0 25px;
  text-align: center;
  z-index: 1;
}

.kinds .box .box-info .btn {
  position: relative;
  width: 175px;
  height: 54px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  background-color: #c10b21;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(25px);
      -ms-transform: translateY(25px);
          transform: translateY(25px);
  z-index: 1;
}

.kinds .box .box-info .btn:hover {
  background-color: #9f071a;
}

.practices-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/white.jpg");
  padding: 100px 0;
}

.practices-page .title {
  position: relative;
  text-align: center;
  color: #282828;
  border-bottom: 2px solid #c10b21;
  padding: 0 0 35px;
  z-index: 1;
}

.practices-page .title span {
  display: block;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 20px;
}

.practices-page .title h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.practices-page .pre-title {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: #6c6c6c;
  line-height: 1.2;
  margin: 40px 0 35px;
  z-index: 1;
}

.practices-page .page-text {
  position: relative;
  z-index: 1;
}

.practices-page .page-text p {
  font-size: 14.6px;
  color: #282828;
  line-height: 1.6;
  margin: 0 0 30px;
}

.practices-page .page-text p.note {
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(105, 105, 105, 0.7);
     -moz-text-decoration-color: rgba(105, 105, 105, 0.7);
          text-decoration-color: rgba(105, 105, 105, 0.7);
  font-size: 18px;
  color: #696969;
  line-height: 1.3;
  margin: 50px 0;
}

/*---------- END PRACTICES ----------*/
/*---------- LAWS ----------*/
.laws {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/laws/1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.laws .border {
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: .15;
  margin: 0 0 35px;
}

.laws .title {
  padding: 0 0 28px;
}

.laws .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.laws .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.laws .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.laws .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.laws .swiper-laws {
  margin: 0 85px;
}

.laws .swiper-laws .box {
  position: relative;
  display: block;
  width: 100%;
  height: 510px;
  overflow: hidden;
  cursor: pointer;
}

.laws .swiper-laws .box:hover .box-info {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.laws .swiper-laws .box:hover .box-info .social {
  visibility: visible;
}

.laws .swiper-laws .box:hover .box-info .btn {
  visibility: visible;
}

.laws .swiper-laws .box .box-img {
  width: 100%;
  height: 100%;
}

.laws .swiper-laws .box .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laws .swiper-laws .box .box-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-image: url("/media/site/img/overlay.png");
  -webkit-transform: translateY(135px);
      -ms-transform: translateY(135px);
          transform: translateY(135px);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  padding: 20px 0 25px;
}

.laws .swiper-laws .box .box-info .name {
  text-transform: uppercase;
  font-size: 14.6px;
  font-weight: 700;
  color: #fff;
}

.laws .swiper-laws .box .box-info .name span {
  display: block;
  text-transform: none;
  font-weight: 300;
  font-style: italic;
}

.laws .swiper-laws .box .box-info .social {
  visibility: hidden;
  margin: 25px 0 30px;
}

.laws .swiper-laws .box .box-info .social a {
  display: inline-block;
  opacity: .5;
  margin: 0 12px;
}

.laws .swiper-laws .box .box-info .social a:hover {
  opacity: 1;
}

.laws .swiper-laws .box .box-info .social a img {
  width: 15px;
}

.laws .swiper-laws .box .box-info .btn {
  width: 175px;
  height: 54px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  background-color: #c10b21;
  visibility: hidden;
}

.laws .swiper-laws .box .box-info .btn:hover {
  background-color: #9f071a;
}

.laws .swiper-button-next, .laws .swiper-button-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  width: 85px;
  height: 100%;
  background: none;
  background-color: #ccc;
  background-image: url("/media/site/img/overlay.png");
  margin: 0;
}

.laws .swiper-button-next img, .laws .swiper-button-prev img {
  width: 11px;
}

.laws .swiper-button-next {
  right: 15px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.laws .swiper-button-prev {
  left: 15px;
}

.laws .laws-link {
  position: relative;
  padding: 25px 0 0;
  margin: 30px 0 0;
}

.laws .laws-link:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #c10b21;
}

.laws .laws-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.laws .laws-link ul li {
  display: block;
  margin: 0 0 20px;
}

.laws .laws-link ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  color: #cccccc;
  border-bottom: 1px solid transparent;
  padding: 0 0 10px;
}

.laws .laws-link ul li a.active, .laws .laws-link ul li a:hover {
  border-bottom: 1px solid #cccccc;
}

.laws-block {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/main/4.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.laws-block .title {
  margin: 0 0 55px;
}

.laws-block .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.laws-block .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.laws-block .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  line-height: 1;
}

.laws-block .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #2d2d2d;
}

.laws-block .laws-person {
  position: relative;
}

.laws-block .laws-person:after {
  clear: both;
  content: '';
  display: table;
}

.laws-block .laws-person .box {
  position: relative;
  display: inline-block;
  float: left;
  width: 350px;
  height: 560px;
  overflow: hidden;
  cursor: pointer;
}

.laws-block .laws-person .box:hover .box-info {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.laws-block .laws-person .box:hover .box-info .social {
  visibility: visible;
}

.laws-block .laws-person .box:hover .box-info .btn {
  visibility: visible;
}

.laws-block .laws-person .box:first-child {
  margin: 0 15px 0 0;
}

.laws-block .laws-person .box .box-img {
  width: 100%;
  height: 100%;
}

.laws-block .laws-person .box .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laws-block .laws-person .box .box-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-image: url("/media/site/img/overlay.png");
  -webkit-transform: translateY(135px);
      -ms-transform: translateY(135px);
          transform: translateY(135px);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  padding: 20px 0 25px;
}

.laws-block .laws-person .box .box-info .name {
  text-transform: uppercase;
  font-size: 14.6px;
  font-weight: 700;
  color: #fff;
}

.laws-block .laws-person .box .box-info .name span {
  display: block;
  text-transform: none;
  font-weight: 300;
  font-style: italic;
}

.laws-block .laws-person .box .box-info .social {
  visibility: hidden;
  margin: 25px 0 30px;
}

.laws-block .laws-person .box .box-info .social a {
  display: inline-block;
  opacity: .5;
  margin: 0 12px;
}

.laws-block .laws-person .box .box-info .social a:hover {
  opacity: 1;
}

.laws-block .laws-person .box .box-info .social a img {
  width: 15px;
}

.laws-block .laws-person .box .box-info .btn {
  width: 175px;
  height: 54px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  background-color: #c10b21;
  visibility: hidden;
}

.laws-block .laws-person .box .box-info .btn:hover {
  background-color: #9f071a;
}

.laws-block .laws-info .note {
  position: relative;
  font-size: 14.6px;
  font-style: italic;
  line-height: 1.6;
  padding: 40px 0 0;
  margin: 0 0 35px;
}

.laws-block .laws-info .note:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 55px;
  height: 1px;
  background-color: #c10b21;
}

.laws-block .laws-info .note span {
  display: inline-block;
  color: #c10b21;
}

.laws-block .laws-info .person-info p {
  font-size: 14.6px;
  color: #858585;
  line-height: 1.6;
  margin: 0 0 30px;
}

.laws-block .laws-info .person-info p strong {
  display: block;
  font-weight: 700;
  color: #2d2d2d;
}

.laws-block .laws-info .btn {
  width: 100%;
  height: 90px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #2d2d2d;
  border: 2px solid #c10b21;
  line-height: 1;
  margin: 30px 0 0;
}

.laws-block .laws-info .btn:hover {
  color: #fff;
  background-color: #c10b21;
}

.laws-block .laws-info .btn:hover .icon svg path {
  fill: #fff;
}

.laws-block .laws-info .btn .icon {
  display: inline-block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0 0 30px;
}

.laws-block .laws-info .btn .icon svg {
  width: 28px;
  height: initial;
}

.laws-block .laws-info .btn .icon svg path {
  fill: #2d2d2d;
}

.career {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/laws/2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.career .title {
  margin: 0 0 40px;
}

.career .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.career .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.career .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  line-height: 1;
}

.career .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #2d2d2d;
}

.career ul {
  padding-left: 0;
  list-style: none;
}

.career ul li a {
  width: 100%;
  height: 100%;
  font-size: 16.8px;
  font-weight: 300;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 55px;
  margin: 0 0 30px;
  color: inherit;
}

.career ul li a .icon {
  position: relative;
  display: inline-block;
  top: 1px;
  opacity: 0;
  -webkit-transform: translateX(-10px) rotate(180deg);
  -ms-transform: translateX(-10px) rotate(180deg);
  transform: translateX(-10px) rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 0 0 15px;
}

.career ul li a:hover .icon {
  opacity: 1;
  -webkit-transform: translateX(0) rotate(180deg);
  -ms-transform: translateX(0) rotate(180deg);
  transform: translateX(0) rotate(180deg);
}

.career ul li a .icon img {
  width: 16px;
}

.career .career-text {
  padding: 85px 45px 0 0;
}

.career .career-text .box {
  margin: 0 0 60px;
}

.career h4, .career h5 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 40px;
}

.career .career-text h5 {
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
}

.career .career-text h5 {
  margin: 0 0 20px;
}

.career .career-text p {
  font-size: 14.6px;
  line-height: 1.6;
  margin: 0 0 30px;
}

.career .career-text p span {
  display: inline-block;
  color: #c10b21;
}

.career .resume {
  display: inline-block;
  width: 88%;
  float: right;
}

.career .resume h4 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 40px;
}

.career .resume .input {
  margin: 0 0 30px;
}

.career .resume .file {
  position: relative;
  font-size: 16.8px;
  font-weight: 300;
  color: #c10b21;
  overflow: hidden;
  margin: 40px 0;
}

.career .resume .file span {
  display: inline-block;
  margin: 0 20px 0 0;
}

.career .resume .file input {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  min-height: 100%;
  min-width: 100%;
  font-size: 999px;
  text-align: right;
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: pointer;
}

.career .resume .btn {
  position: relative;
  width: 150px;
  height: 60px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: transparent;
  border: none;
  overflow: hidden;
}

.career .resume .btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c10b21;
  -webkit-transform: translateY(57px);
      -ms-transform: translateY(57px);
          transform: translateY(57px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.career .resume .btn:hover {
  color: #fff;
}

.career .resume .btn:hover:after {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.career .resume .btn span {
  position: relative;
  z-index: 1;
}

/*---------- END LAWS ----------*/
/*---------- NEWS ----------*/
.news {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("/media/site/img/black.jpg");
  background-repeat: round;
  padding: 100px 0 120px;
}

.news .border {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: .15;
  margin: 0 0 35px;
  z-index: 1;
}

.news .title {
  position: relative;
  padding: 0 0 28px;
  z-index: 1;
}

.news .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.news .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.news .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  z-index: 1;
}

.news .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.news .tab {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.news .tab .tabs {
  position: relative;
  display: table;
  width: 100%;
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.news .tab .tabs li {
  position: relative;
  display: inline-block;
  float: left;
  overflow: hidden;
  margin: 0 40px 0 0;
}

.news .tab .tabs li.current a {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
  left: 0;
}

.news .tab .tabs li.current a:after {
  background-color: #c10b21;
}

.news .tab .tabs li a {
  position: relative;
  display: block;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.5px;
  padding: 0 0 30px;
  margin: 27px 0 0;
}

.news .tab .tabs li a:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.news .tab .tab_content {
  padding: 120px 0 0;
}

.news .tab .tab_content .tab_item {
  display: none;
  overflow: hidden;
}

.news .tab .tab_content .tab_item:first-child {
  display: block;
}

.news .tab .tab_content .tab_item .box-column {
  display: inline-block;
  width: 50%;
  float: left;
}

.news .tab .tab_content .tab_item .box {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 75px;
}

.news .tab .tab_content .tab_item .box .box-date {
  position: relative;
  display: inline-block;
  float: left;
  width: 67px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0 20px 0 0;
}

.news .tab .tab_content .tab_item .box .box-date .day {
  display: block;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.news .tab .tab_content .tab_item .box .box-date .month, .news .tab .tab_content .tab_item .box .box-date .year {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #918f90;
  line-height: 1.2;
}

.news .tab .tab_content .tab_item .box .box-info {
  display: inline-block;
  width: 80%;
  padding: 0 0 0 20px;
}

.news .tab .tab_content .tab_item .box .box-info h3 {
  position: relative;
  top: -7px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.news .tab .tab_content .tab_item .box .box-more {
  padding: 0 0 0 87px;
  margin: 20px 0 0;
}

.news .tab .tab_content .tab_item .box .box-more .btn-more {
  display: inline-block;
  font-size: 14.6px;
  font-style: italic;
  color: #adadad;
  line-height: 1;
}

.news .tab .tab_content .tab_item .box .box-more .btn-more:hover {
  color: #fff;
}

.news .tab .tab_content .tab_item .box .box-more .btn-more:hover .icon {
  opacity: 1;
}

.news .tab .tab_content .tab_item .box .box-more .btn-more .icon {
  position: relative;
  display: inline-block;
  top: 3px;
  opacity: .5;
  will-change: opacity;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 0 0 15px;
}

.news .tab .tab_content .tab_item .box .box-more .btn-more .icon img {
  width: 17px;
}

.news-block {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/main/5.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.news-block .title {
  margin: 0 0 50px;
}

.news-block .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.news-block .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.news-block .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 110px;
}

.news-block .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.news-block .box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  margin: 0 0 70px;
}

.news-block .box .box-date {
  position: relative;
  width: 67px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0 20px 0 0;
}

.news-block .box .box-date .day {
  display: block;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-right: 10px;
}

.news-block .box .box-date .month, .news-block .box .box-date .year {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #918f90;
  line-height: 1.2;
  margin-right: 10px;
}

.news-block .box .box-info {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 0 0 0 20px;
}

.news-block .box .box-info h3 {
  font-size: 16.67px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.news-block .box .box-info .tag {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  font-style: italic;
  color: #ababab;
  margin: 15px 0 0;
}

.news-block .box .box-more .btn-more {
  display: inline-block;
  font-size: 14.6px;
  font-style: italic;
  color: #adadad;
  line-height: 1;
  padding: 0 0 0 35px;
}

.news-block .box .box-more .btn-more:hover {
  color: #fff;
}

.news-block .box .box-more .btn-more:hover .icon {
  opacity: 1;
}

.news-block .box .box-more .btn-more .icon {
  position: relative;
  display: inline-block;
  top: 3px;
  opacity: .5;
  will-change: opacity;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 0 0 15px;
}

.news-block .box .box-more .btn-more .icon img {
  width: 17px;
}

.news-block .btn {
  width: 325px;
  height: 90px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #c10b21;
  line-height: 1;
  margin: 20px 0 0;
}

.news-block .btn:hover {
  background-color: #c10b21;
}

.news-block .btn .icon {
  display: inline-block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0 0 30px;
}

.news-block .btn .icon img {
  width: 28px;
}

.news-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("/media/site/img/white.jpg");
  padding: 100px 0 120px;
}

.news-page .title {
  position: relative;
  text-align: center;
  color: #282828;
  border-bottom: 2px solid #c10b21;
  padding: 0 0 35px;
  margin: 0 0 40px;
  z-index: 1;
}

.practices-page .pre-title {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: #6c6c6c;
  line-height: 1.2;
  margin: 0 0 35px;
  z-index: 1;
}

.news-page .title span {
  display: block;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 20px;
}

.news-page .title h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.news-page .page-text {
  position: relative;
  z-index: 1;
}

.news-page .page-text p {
  font-size: 14.6px;
  color: #282828;
  line-height: 1.6;
  margin: 0 0 30px;
}

.news-page .page-text p.note {
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(105, 105, 105, 0.7);
     -moz-text-decoration-color: rgba(105, 105, 105, 0.7);
          text-decoration-color: rgba(105, 105, 105, 0.7);
  font-size: 18px;
  color: #696969;
  line-height: 1.3;
  margin: 50px 0;
}

.news-page .pagination {
  margin: 100px 0 0;
}

.news-page .pagination a {
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #949494;
  letter-spacing: 1.5px;
}

.news-page .pagination a:hover {
  color: #2d2d2d;
}

.news-page .pagination a:first-child {
  display: inline-block;
  margin: 0 70px 0 0;
}

/*---------- END NEWS ----------*/
/*---------- SEARCH ----------*/
.search-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("/media/site/img/white.jpg");
  padding: 100px 0 120px;
}

.search-page .title {
  position: relative;
  text-align: center;
  color: #282828;
  border-bottom: 2px solid #c10b21;
  padding: 0 0 30px;
  margin: 0 0 40px;
  z-index: 1;
}

.search-page .title span {
  display: block;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.search-page .search {
  position: relative;
  z-index: 1;
}

.search-page .search .phrases, .search-page .search .only, .search-page .search .form-limit, .search-page .search .counter {
  display: none;
}

.search-page .search .input {
  display: inline-block;
  width: 50%;
  margin: 0 25px 0 0;
}

.search-page .search .btn-search {
  display: inline-block;
  width: 120px;
  height: 55px;
}

.search-page .search .btn-search .btn {
  position: relative;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: transparent;
  border: none;
  overflow: hidden;
}

.search-page .search .btn-search .btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c10b21;
  -webkit-transform: translateY(54px);
      -ms-transform: translateY(54px);
          transform: translateY(54px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.search-page .search .btn-search .btn:hover {
  color: #fff;
}

.search-page .search .btn-search .btn:hover:after {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.search-page .search .btn-search .btn span {
  position: relative;
  z-index: 1;
}

.search-page .search .search-note {
  margin: 10px 0 0;
  font-size: 14.6px;
  font-style: italic;
  color: #575757;
}

.search-page .search .search-note strong {
  font-weight: 600;
}

.search-page .search .search-note .count {
  color: #c10b21;
}

.search-page .search .results {
  margin: 50px 0 0;
}

.search-page .search .results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-page .search .results ul li {
  margin: 0 0 30px;
}

.search-page .search .results ul li .result-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.search-page .search .results ul li .result-title .numb {
  display: inline-block;
  color: #c10b21;
  margin: 0 10px 0 0;
}

.search-page .search .results ul li .result-title a {
  display: inline-block;
  color: #2d2d2d;
}

.search-page .search .results ul li .result-title a:hover {
  color: #c10b21;
}

.search-page .search .results ul li .result-text {
  margin: 0 0 0 25px;
}

.search-page .search .results ul li .result-detail {
  margin: 10px 0 0 25px;
}

.search-page .search .results ul li .result-detail .category, .search-page .search .results ul li .result-detail .date {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 400;
  font-style: italic;
  color: #575757;
  margin: 0 40px 0 0;
}
.search-page .search .pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.search-page .search .pagination ul li {
  padding: 0 10px;
}
.search-page .search .pagination ul li a {
  
}
/*---------- END SEARCH ----------*/
/*---------- CONTACTS ----------*/
.contacts {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/media/site/img/inside/1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.contacts .title {
  margin: 0 0 50px;
}

.contacts .title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.contacts .title h2 span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #c10b21;
}

.contacts .pre-title {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.contacts .pre-title:before {
  position: absolute;
  content: '';
  top: 50%;
  left: -210px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

.contacts .map {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 600px;
}

.contacts .map .contact-block {
  position: relative;
  display: inline-block;
  width: 450px;
  font-size: 18px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
  padding: 35px;
  z-index: 1;
}

.contacts .map .contact-block .address {
  position: relative;
  font-weight: 700;
  line-height: 1.8;
  padding: 0 0 30px;
  margin: 0 0 40px;
}

.contacts .map .contact-block .address:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  background-color: #c10b21;
}

.contacts .map .contact-block .phone .line {
  margin: 0 0 10px;
}

.contacts .map .contact-block .phone .line:nth-child(3) .label {
  color: #c10b21;
}

.contacts .map #maps {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  z-index: 0;
}

/*---------- END CONTACTS ----------*/
/*---------- MODAL ----------*/
.modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  letter-spacing: 1px;
  background-color: #262626;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
  z-index: 88;
}

.modal.open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.modal.for-menu {
  padding: 130px 110px 0 105px;
}

.modal.for-menu .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}

.modal.for-menu .menu ul li {
  margin: 0 0 70px;
}

.modal.for-menu .menu ul li a {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin: 0 0 15px;
}

.modal.for-menu .menu ul li a:hover .icon {
  opacity: 1;
  -webkit-transform: translateX(0) rotate(180deg);
      -ms-transform: translateX(0) rotate(180deg);
          transform: translateX(0) rotate(180deg);
}

.modal.for-menu .menu ul li a:first-child {
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.modal.for-menu .menu ul li a:first-child:hover {
  border-bottom: 2px solid #c10b21;
}

.modal.for-menu .menu ul li a .icon {
  position: relative;
  display: inline-block;
  top: 1px;
  opacity: 0;
  -webkit-transform: translateX(-10px) rotate(180deg);
      -ms-transform: translateX(-10px) rotate(180deg);
          transform: translateX(-10px) rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 0 0 15px;
}

.modal.for-menu .menu ul li a .icon img {
  width: 16px;
}

.modal.for-menu .menu .btn {
  position: relative;
  width: 220px;
  height: 60px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  background-color: transparent;
  overflow: hidden;
  margin: 100px 0 0;
}

.modal.for-menu .menu .btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c10b21;
  -webkit-transform: translateY(57px);
      -ms-transform: translateY(57px);
          transform: translateY(57px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.modal.for-menu .menu .btn:hover:after {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.modal.for-menu .menu .btn span {
  position: relative;
  z-index: 1;
}

.modal.for-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 240px 0 155px;
}

.modal.for-search .search {
  width: 100%;
}

.modal.for-search form {
  width: 100%;
}

.modal.for-search input {
  display: inline-block;
  float: left;
  width: 94%;
  height: 80px;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  background-color: transparent;
  border: none;
  border-top: 3px solid transparent;
  border-bottom: 3px solid #c10b21;
}

.modal.for-search input::-webkit-input-placeholder {
  color: #fff;
}

.modal.for-search input::-moz-placeholder {
  color: #fff;
}

.modal.for-search input:-ms-input-placeholder {
  color: #fff;
}

.modal.for-search input::placeholder {
  color: #fff;
}

.modal.for-search input:focus::-webkit-input-placeholder {
  color: transparent;
}

.modal.for-search input:focus::-moz-placeholder {
  color: transparent;
}

.modal.for-search input:focus:-ms-input-placeholder {
  color: transparent;
}

.modal.for-search input:focus::placeholder {
  color: transparent;
}

.modal.for-search button {
  display: inline-block;
  width: 6%;
  height: 80px;
  background-color: transparent;
  border: none;
  border-top: 3px solid transparent;
  border-bottom: 3px solid #c10b21;
  padding: 0;
}

.modal.for-search button img {
  width: 30px;
}

.modal.for-search .note {
  font-size: 14px;
  color: #fff;
  opacity: .5;
  margin: 15px 0 0;
}

.modal .btn-close {
  position: absolute;
  top: 25px;
  right: 115px;
  width: 27px;
  height: 27px;
  opacity: .7;
}

.modal .btn-close:hover {
  opacity: 1;
}

.modal .btn-close hr {
  display: block;
  width: 36px;
  height: 2px;
  background-color: #fff;
  border: none;
  margin: 0;
}

.modal .btn-close hr:first-child {
  -webkit-transform: translate(-5px, 13px) rotate(45deg);
      -ms-transform: translate(-5px, 13px) rotate(45deg);
          transform: translate(-5px, 13px) rotate(45deg);
}

.modal .btn-close hr:last-child {
  -webkit-transform: translate(-5px, 11px) rotate(-45deg);
      -ms-transform: translate(-5px, 11px) rotate(-45deg);
          transform: translate(-5px, 11px) rotate(-45deg);
}

/*---------- END MODAL ----------*/
/*---------- POPUP ----------*/
.popup {
  position: relative;
  width: 1140px;
  height: 720px;
  background-image: url("/media/site/img/white.jpg");
  overflow: hidden;
  padding: 50px 0 50px 50px;
  margin: 0 auto;
}

.popup .laws-about {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.popup .laws-about:after {
  display: table;
  clear: both;
  content: '';
}

.popup .laws-about .laws-info {
  position: relative;
  display: inline-block;
  float: left;
  width: 30%;
  margin: 0 4% 0 0;
}

.popup .laws-about .laws-info .laws-img {
  position: relative;
  width: 100%;
}

.popup .laws-about .laws-info .laws-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.popup .laws-about .laws-info .laws-img .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 65px;
  background-color: #ccc;
  background-image: url("/media/site/img/overlay.png");
}

.popup .laws-about .laws-info .laws-img .social a {
  display: inline-block;
  opacity: .5;
  margin: 0 15px;
}

.popup .laws-about .laws-info .laws-img .social a:hover {
  opacity: 1;
}

.popup .laws-about .laws-info .laws-img .social a img {
  width: 15px;
  height: initial;
}

.popup .laws-about .laws-info .laws-contact {
  margin: 30px 0 0;
}

.popup .laws-about .laws-info .laws-contact .line {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin: 0 0 20px;
}

.popup .laws-about .laws-info .laws-contact .line .icon {
  display: inline-block;
  margin: 0 15px 0 0;
}

.popup .laws-about .laws-info .laws-contact .line .icon img {
  width: 17px;
}

.popup .laws-about .laws-text {
  position: relative;
  display: inline-block;
  width: 66%;
  max-height: 100%;
  overflow: auto;
  padding: 0 50px 0 0;
}

.popup.carrierpopup .laws-about .laws-text {
  width: 100%;
}

.popup .laws-about .laws-text::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.popup .laws-about .laws-text::-webkit-scrollbar-track {
  background: #e8e6e6;
}

.popup .laws-about .laws-text::-webkit-scrollbar-thumb {
  background: #2d2d2d;
}

.popup .laws-about .laws-text h2 {
  width: 60%;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  color: #c10b21;
  letter-spacing: 2px;
  line-height: 1.5;
}

.popup .laws-about .laws-text .pre {
  display: block;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin: 25px 0 40px;
}

.popup .laws-about .laws-text p {
  font-size: 14.6px;
  line-height: 1.6;
  margin: 0 0 25px;
}

.popup .laws-about .laws-text .box {
  margin: 60px 0 0;
}

.popup .laws-about .laws-text .box h2 {
  color: #2d2d2d;
  margin: 0 0 30px;
}

.popup .laws-about .laws-text .box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup .laws-about .laws-text .box ul li {
  position: relative;
  display: block;
  font-size: 14.6px;
  line-height: 1.6;
  padding: 0 0 0 25px;
  margin: 0 0 30px;
}

.popup .laws-about .laws-text .box ul li:before {
  position: absolute;
  content: '';
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #c10b21;
}

.popup .laws-about .laws-text .box .line {
  position: relative;
  display: block;
  border-bottom: 1px solid #e9e9e9;
  padding: 0 0 10px;
  margin: 0 0 40px;
}

.popup .laws-about .laws-text .box .line:last-child {
  border-bottom: none;
}

.popup .laws-about .laws-text .box .line:after {
  display: table;
  clear: both;
  content: '';
}

.popup .laws-about .laws-text .box .line .date {
  display: inline-block;
  float: left;
  width: 17%;
  height: 75px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #c10b21;
}

.popup .laws-about .laws-text .box .line .detail {
  display: inline-block;
  width: 83%;
}

.popup .laws-about .laws-text .box .line .detail span {
  display: block;
  font-size: 14.6px;
  line-height: 1.4;
  margin: 0 0 25px;
}

.popup .laws-about .laws-text .box .line .detail span b {
  display: inline-block;
  margin: 0 20px 0 0;
}

.popup .mfp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 27px;
  height: 27px;
  line-height: initial;
}

.popup .mfp-close hr {
  display: block;
  width: 36px;
  height: 2px;
  background-color: #2d2d2d;
  border: none;
  margin: 0;
}

.popup .mfp-close hr:first-child {
  -webkit-transform: translate(-5px, 0) rotate(45deg);
      -ms-transform: translate(-5px, 0) rotate(45deg);
          transform: translate(-5px, 0) rotate(45deg);
}

.popup .mfp-close hr:last-child {
  -webkit-transform: translate(-5px, -2px) rotate(-45deg);
      -ms-transform: translate(-5px, -2px) rotate(-45deg);
          transform: translate(-5px, -2px) rotate(-45deg);
}

/*---------- END POPUP ----------*/
/*---------- FOOTER ----------*/
.call-back {
  width: 100%;
  height: 65%;
  letter-spacing: 1px;
  background-image: url("/media/site/img/main/6.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4% 0;
}

.call-back .form {
  display: inline-block;
  width: 88%;
  float: right;
}

.call-back .form h4 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 40px;
}

.call-back .form .input {
  margin: 0 0 30px;
}

.call-back .form .btn {
  position: relative;
  width: 150px;
  height: 60px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: transparent;
  border: none;
  overflow: hidden;
}

.call-back .form .btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c10b21;
  -webkit-transform: translateY(57px);
      -ms-transform: translateY(57px);
          transform: translateY(57px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.call-back .form .btn:hover {
  color: #fff;
}

.call-back .form .btn:hover:after {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.call-back .form .btn span {
  position: relative;
  z-index: 1;
}

.call-back .contact-link {
  position: relative;
  width: 88%;
  background-image: url("/media/site/img/red.png");
  padding: 60px 0;
  margin: 50px 0 0;
}

.call-back .contact-link:before {
  position: absolute;
  content: '';
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background-image: url("/media/site/img/red.png");
}

.call-back .contact-link .title {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0 30px 35px 0;
}

.call-back .contact-link .title span {
  display: block;
  font-size: 78px;
  font-weight: 700;
}

.call-back .contact-link .btn {
  width: 325px;
  height: 90px;
  text-transform: uppercase;
  font-size: 16.67px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  line-height: 1;
}

.call-back .contact-link .btn:hover {
  color: #c10b21;
  background-color: #fff;
  border: 2px solid #fff;
}

.call-back .contact-link .btn:hover .icon svg path {
  fill: #c10b21;
}

.call-back .contact-link .btn .icon {
  display: inline-block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0 0 30px;
}

.call-back .contact-link .btn .icon svg {
  width: 28px;
  height: initial;
}

.call-back .contact-link .btn .icon svg path {
  fill: #fff;
}

.footer {
  width: 100%;
  height: 35%;
  letter-spacing: 1px;
}

.footer .top {
  position: relative;
  width: 100%;
  height: 83%;
  background-image: url("/media/site/img/black.jpg");
  padding: 70px 0 80px;
}

.footer .top .menu {
  margin: 0 0 80px;
}

.footer .top .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

/*.footer .top .menu ul:after {
  clear: both;
  content: '';
  display: table;
}*/

.footer .top .menu ul li {
  display: inline-block;
  float: left;
  margin: 0 6.6% 0 0;
}

.footer .top .menu ul li:last-child {
  margin: 0;
}

.footer .top .menu ul li a {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid transparent;
  line-height: 1;
  padding: 5px 0;
}

.footer .top .menu ul li a:hover {
  border-bottom: 2px solid #c10b21;
}

.footer .top .contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer .top .contact-info .address {
  display: inline-block;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 16.67px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
}

.footer .top .contact-info .address .icon {
  position: relative;
  display: inline-block;
  top: -2px;
  margin: 0 15px 0 0;
}

.footer .top .contact-info .address .icon img {
  width: 15px;
}

.footer .top .contact-info .phone {
  display: inline-block;
  font-size: 16.8px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
}

.footer .top .contact-info .phone .icon {
  position: relative;
  display: inline-block;
  top: -2px;
  margin: 0 10px 0 0;
}

.footer .top .contact-info .phone .icon img {
  width: 20px;
}

.footer .top .contact-info .social {
  display: block;
}

.footer .top .contact-info .social a {
  display: inline-block;
  opacity: .5;
  margin: 0 10px;
}

.footer .top .contact-info .social a:hover {
  opacity: 1;
}

.footer .top .contact-info .social a img {
  width: 17px;
}

.footer .bottom {
  position: relative;
  width: 100%;
  height: 17%;
  background-image: url("/media/site/img/red.png");
}

.footer .bottom .container {
  height: 100%;
}

.footer .bottom .container .row {
  height: 100%;
}

.footer .bottom .container .row .col-xs-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.footer .bottom .copyright {
  display: inline-block;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 16.67px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.footer .bottom .developer {
  display: inline-block;
}

.footer .bottom .developer span {
  display: inline-block;
  font-size: 16.67px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin: 0 10px 0 0;
}

.footer .bottom .developer a {
  display: inline-block;
  opacity: .5;
}

.footer .bottom .developer a:hover {
  opacity: 1;
}

.footer .bottom .developer a img {
  width: 55px;
}

.footer .bottom .to-top {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #262626;
}

.footer .bottom .to-top:hover {
  background-color: #2d2d2d;
}

.footer .bottom .to-top img {
  width: 10px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*---------- END FOOTER ----------*/
/*---------- RESPONSIVE ----------*/
@media only screen and (max-width: 1600px) {
  .section.for-footer {
    height: 100%;
  }
  header {
    width: 65px;
  }
  header.hold {
    top: 800px;
  }
  header .lang a {
    font-size: 14px;
    margin: 0 0 25px;
  }
  header .social a {
    margin: 0 0 20px;
  }
  .main {
    height: 800px;
  }
  .main .head {
    height: 100px;
    padding: 0 40px;
  }
  .main .head .logo img {
    width: 250px;
  }
  .main .welcome h1 {
    font-size: 32px;
  }
  .main .welcome h1 span {
    font-size: 55px;
  }
  .main .welcome .quote p {
    font-size: 19px;
  }
  .main .welcome .quote .icon {
    font-size: 72px;
  }
  .main .welcome .quote .icon:before, .main .welcome .quote .icon:after {
    top: 21px;
  }
  .about {
    height: 100%;
    padding: 100px 0 150px;
  }
  .about-block {
    height: 100%;
    padding: 80px 0 100px;
  }
  .advantages {
    height: 100%;
    padding: 80px 0 150px;
  }
  .story {
    height: 100%;
    padding: 80px 0 150px;
  }
  .features {
    height: 100%;
    padding: 80px 0 150px;
  }
  .practices {
    padding: 100px 0 150px;
  }
  .practices-block {
    height: 100%;
    padding: 80px 0 150px;
  }
  .laws {
    height: 100%;
    padding: 100px 0 150px;
  }
  .laws-block {
    height: 100%;
    padding: 80px 0 150px;
  }
  .career {
    height: 100%;
    padding: 80px 0 0;
  }
  .news-block {
    height: 100%;
    padding: 80px 0 150px;
  }
  .contacts {
    height: 100%;
    padding: 100px 0 150px;
  }
  .call-back {
    height: 100%;
    padding: 80px 0;
  }
  .footer {
    height: 100%;
  }
  .footer .top {
    height: 300px;
  }
  .footer .bottom {
    height: 59px;
  }
  .modal {
    width: 60%;
  }
  .modal.for-menu {
    padding: 85px 90px 0 85px;
  }
  .modal.for-menu .menu ul li {
    margin: 0 0 50px;
  }
  .modal.for-menu .menu .btn {
    margin: 50px 0 0;
  }
  .modal.for-search {
    padding: 0 185px 0 120px;
  }
  .modal .btn-close {
    right: 90px;
  }
}

@media only screen and (max-width: 1366px) {
  .main .welcome h1 {
    font-size: 30px;
  }
  .main .welcome h1 span {
    font-size: 50px;
  }
  .main .welcome .quote p {
    padding: 0 25%;
  }
  .about .title h2 {
    font-size: 27px;
  }
  .about .title h2 span {
    font-size: 55px;
  }
  .about-block .title h2 {
    font-size: 27px;
  }
  .about-block .title h2 span {
    font-size: 55px;
  }
  .features .title h2 {
    font-size: 27px;
  }
  .features .title h2 span {
    font-size: 55px;
  }
  .features .swiper-features .box .box-icon img {
    height: 60px;
  }
  .features .swiper-features .box .box-title {
    font-size: 25px;
  }
  .practices .title h2 {
    font-size: 27px;
  }
  .practices .title h2 span {
    font-size: 55px;
  }
  .practices-block .title h2 {
    font-size: 27px;
  }
  .practices-block .title h2 span {
    font-size: 55px;
  }
  .practices-block .list ul li a {
    font-size: 19px;
  }
  .kinds {
    margin: -400px 0 0;
  }
  .practices-page .title span {
    font-size: 27px;
  }
  .practices-page .title h3 {
    font-size: 35px;
  }
  .laws .title h2 {
    font-size: 27px;
  }
  .laws .title h2 span {
    font-size: 55px;
  }
  .laws-block .title {
    margin: 0 0 30px;
  }
  .laws-block .title h2 {
    font-size: 27px;
  }
  .laws-block .title h2 span {
    font-size: 55px;
  }
  .laws-block .laws-person .box {
    height: 500px;
  }
  .career .title h2 {
    font-size: 27px;
  }
  .career .title h2 span {
    font-size: 55px;
  }
  .career .resume h4 {
    font-size: 27px;
  }
  .news .title h2 {
    font-size: 27px;
  }
  .news .title h2 span {
    font-size: 55px;
  }
  .news .tab .tabs li.current a {
    font-size: 45px;
  }
  .news .tab .tabs li a {
    font-size: 27px;
  }
  .news .tab .tab_content .tab_item .box .box-info h3 {
    font-size: 17px;
  }
  .news-block .title h2 {
    font-size: 27px;
  }
  .news-block .title h2 span {
    font-size: 55px;
  }
  .news-page .title span {
    font-size: 27px;
  }
  .news-page .title h3 {
    font-size: 35px;
  }
  .search-page .title span {
    font-size: 27px;
  }
  .contacts .title h2 {
    font-size: 27px;
  }
  .contacts .title h2 span {
    font-size: 55px;
  }
  .call-back .form h4 {
    font-size: 27px;
  }
  .call-back .contact-link .title {
    font-size: 27px;
  }
  .call-back .contact-link .title span {
    font-size: 74px;
  }
  .footer .top {
    height: auto;
    padding: 60px 0;
  }
  /*.footer .top .contact-info {*/
    /*display: block;*/
    /*text-align: center;*/
  /*}*/
  .footer .top .contact-info .phone {
    margin: 30px 0;
  }
  .popup {
    height: 680px;
  }
  .popup .laws-about .laws-info .laws-img {
    width: 90%;
  }
}

@media only screen and (max-width: 1300px) {
  .navigation {
    position: relative;
    top: 0;
    right: 0;
    width: 1170px;
    text-align: right;
    padding: 0 15px;
    margin: 0 auto 50px;
  }
  header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 65px;
    text-align: initial;
  }
  header .logo {
    display: inline-block;
    width: 65px;
    height: 100%;
    margin: 0 30px 0 0;
  }
  header .logo:after {
    display: none;
  }
  header .logo a img:last-child {
    display: none;
  }
  header .toggle {
    padding: 15px 20px 9px;
  }
  header .search {
    display: inline-block;
    padding: 24.5px 20px;
    margin: 0 40px 0 20px;
  }
  header .search a {
    font-size: 15px;
  }
  header .search a img {
    top: -2px;
    width: 14px;
    margin: 0;
  }
  header .search a span {
    display: inline-block;
  }
  header .lang {
    display: inline-block;
    margin: 0;
  }
  header .lang a {
    display: inline-block;
    margin: 0 15px 0 0;
  }
  header .social {
    display: inline-block;
    bottom: initial;
    right: 80px;
    width: initial;
    margin: 0;
  }
  header .social a {
    display: inline-block;
    margin: 0 15px;
  }
  header .to-top {
    top: initial;
    left: initial;
    right: 0;
    width: 59px;
    height: 100%;
  }
  .about-block {
    padding: 120px 0 100px;
  }
  .about-block .about-begin img {
    display: block;
    /*width: initial;*/
    margin: 60px auto;
  }
  .about-block .about-begin .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 325px;
    margin: 0 auto;
  }
  .advantages .row:nth-child(2) .adv-img {
    text-align: left;
  }
  .advantages .row:nth-child(2) .adv-text {
    padding: 30px 0 0;
  }
  .advantages .row:last-child .adv-text {
    padding: 30px 0 0;
  }
  .advantages .row:last-child .adv-text:before {
    left: 0;
  }
  .advantages .row .adv-img {
    margin: 0 0 30px;
  }
  .practices-block .pre-title {
    margin: 0;
  }
  .practices-block .btn {
    width: 325px;
  }
  .practices-block .list {
    display: block;
    width: 90%;
    margin: 50px auto 0;
  }
  .laws-block .laws-person {
    text-align: center;
  }
  .laws-block .laws-person .box {
    float: none;
  }
  .laws-block .laws-info .note {
    padding: 15px 0 0;
    margin: 35px 0;
  }
  .laws-block .laws-info .btn {
    width: 325px;
  }
  .news-block .box {
    height: auto;
  }
  .news-block .box .box-info {
    width: 80%;
    -webkit-box-flex: initial;
    -webkit-flex-grow: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
  .news-block .box .box-more {
    width: 20%;
    text-align: right;
  }
  .news-block .box .box-more .btn-more {
    padding: 0;
  }
  .call-back .form {
    width: 100%;
    float: none;
  }
  .call-back .contact-link {
    width: 100%;
    padding: 60px 30px;
  }
  .footer .top .menu ul li {
    margin: 0 3.6% 0 0;
  }
  .modal {
    width: 100%;
    z-index: 101;
  }
  .modal.for-menu {
    padding: 85px 120px 0 85px;
  }
  .modal.for-search {
    padding: 0 120px;
  }
  .modal .btn-close {
    top: 30px;
    right: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .navigation {
    width: 970px;
  }
  .main {
    background-image: url("/media/site/img/main/1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .main video {
    display: none;
  }
  .main .overlay {
    display: none;
  }
  .kinds {
    margin: -300px 0 0;
  }
  .career .career-text {
    padding: 0;
    padding-top: 80px;
  }
  .career .resume {
    display: block;
    width: 100%;
    float: none;
    margin: 50px 0 0;
  }
  .news {
    background-repeat: initial;
  }
  .popup {
    width: 100%;
  }
  .popup .laws-about .laws-info {
    width: 34%;
  }
  .popup .laws-about .laws-info .laws-img {
    width: 95%;
  }
  .popup .laws-about .laws-text {
    width: 62%;
  }
  .popup .laws-about .laws-text h2 {
    width: 80%;
  }
  .popup .laws-about .laws-text .box .line .date {
    width: 20%;
  }
  .popup .laws-about .laws-text .box .line .detail {
    width: 80%;
  }
}

@media only screen and (max-width: 991px) {
  [class*="ymaps-2"][class*="-map"] {
    width: 100% !important;
    height: 100% !important;
  }
  .navigation {
    width: 750px;
  }
  header.hold {
    position: fixed;
    top: 0;
  }
  header .lang {
    position: absolute;
    right: 80px;
  }
  header .social {
    display: none;
  }
  .main .head {
    display: none;
  }
  .main .toggle {
    display: none;
  }
  .main .welcome h1 {
    font-size: 27px;
    margin: 0 0 30px;
  }
  .main .welcome h1 span {
    font-size: 45px;
  }
  .main .welcome .quote p {
    padding: 0 10%;
  }
  .about-block {
    padding: 80px 0 100px;
  }
  .about-block .col-lg-8 {
    padding: 0 15px;
  }
  .about-block .about-slider:after {
    position: absolute;
    content: '';
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-image: url("/media/site/img/overlay.png");
  }
  .about-block .about-begin .btn {
    width: 45%;
    height: 80px;
  }
  .story .swiper-story {
    padding: 120px 0 0;
    margin: 0 80px;
  }
  .practices-block .row:last-child .col-lg-4 {
    padding: 0 15px;
  }
  .practices-block .btn {
    width: 45%;
    height: 80px;
  }
  .practices-block .list {
    width: 100%;
    padding: 45px 30px 25px;
    margin: 50px 0 0;
  }
  .kinds {
    margin: -250px 0 0;
  }
  .kinds .box {
    float: none;
    width: 100%;
    height: 380px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .kinds .box:nth-child(2n-1) {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .kinds .box:nth-child(2n-1) .box-info {
    text-align: center;
    padding: 50px 35px;
  }
  .kinds .box:nth-child(2n-1) .box-info .box-title {
    text-align: center;
  }
  .kinds .box .box-info {
    text-align: center;
    padding: 50px 35px;
  }
  .laws .swiper-laws {
    margin: 0 60px;
  }
  .laws .swiper-button-next, .laws .swiper-button-prev {
    width: 60px;
  }
  .laws-block .laws-info .btn {
    width: 45%;
    height: 80px;
  }
  .news .tab .tabs li.current a {
    font-size: 30px;
  }
  .news .tab .tabs li a {
    font-size: 20px;
    padding: 0 0 20px;
    margin: 10px 0 0;
  }
  .news .tab .tabs li a:after {
    height: 2px;
  }
  .news .tab .tab_content {
    padding: 70px 0 0;
  }
  .news .tab .tab_content .tab_item .box-column {
    display: block;
    width: 100%;
    float: none;
  }
  .news .tab .tab_content .tab_item .box {
    margin: 0 0 70px;
  }
  .news .tab .tab_content .tab_item .box .box-info {
    width: 90%;
  }
  .news-block .btn {
    width: 45%;
    height: 80px;
  }
  .contacts .map {
    display: block;
    height: auto;
  }
  .contacts .map .contact-block {
    display: block;
    width: auto;
    border: none;
    padding: 0;
    margin: 0 0 50px;
  }
  .contacts .map #maps {
    position: relative;
    width: 100%;
    height: 400px;
  }
  .call-back .contact-link:after {
    position: absolute;
    content: '';
    top: 0;
    right: -150%;
    width: 150%;
    height: 100%;
    background-image: url("/media/site/img/red.png");
  }
  .call-back .contact-link .btn {
    width: 45%;
    height: 80px;
  }
  .footer .top .menu {
    text-align: center;
    margin: 0 0 50px;
  }
  .footer .top .menu ul {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
  .footer .top .menu ul li {
    float: none;
    margin: 0 15px 20px;
  }
  .footer .top .menu ul li:last-child {
    margin: 0 15px;
  }
  .footer .top .menu ul li a {
    font-size: 15px;
  }
  .modal.for-menu {
    padding: 100px 60px 0 60px;
  }
  .popup {
    height: 100%;
    padding: 60px 0;
  }
  .popup .laws-about {
    height: 90vh;
    overflow: auto;
  }
  .popup .laws-about::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .popup .laws-about::-webkit-scrollbar-track {
    background: #e8e6e6;
  }
  .popup .laws-about::-webkit-scrollbar-thumb {
    background: #2d2d2d;
  }
  .popup .laws-about .laws-info {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 0 30px;
  }
  .popup .laws-about .laws-info .laws-img {
    width: 340px;
    margin: 0 auto;
  }
  .popup .laws-about .laws-text {
    display: block;
    width: 100%;
    max-height: initial;
    overflow: hidden;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 768px) {
  .navigation {
    width: 100%;
    text-align: left;
  }
  header .logo {
    margin: 0;
  }
  header .search {
    padding: 25.5px 20px;
    margin: 0;
  }
  header .search a {
    font-size: 13px;
  }
  header .search a img {
    width: 12px;
  }
  header .search a span {
    display: none;
  }
  header .lang {
    right: 10px;
  }
  header .to-top {
    display: none;
  }
  .main .welcome h1 {
    font-size: 22px;
  }
  .main .welcome h1 span {
    font-size: 35px;
  }
  .main .welcome .quote p {
    padding: 0;
  }
  .about {
    padding: 100px 0 70px;
  }
  .about .title h2 {
    font-size: 22px;
  }
  .about .title h2 span {
    font-size: 45px;
  }
  .about .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .about .pre-title:before {
    left: initial;
    right: -210px;
  }
  .about-block {
    padding: 70px 0;
  }
  .about-block .title h2 {
    font-size: 22px;
  }
  .about-block .title h2 span {
    font-size: 45px;
  }
  .about-block .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .about-block .pre-title:before {
    left: initial;
    right: -210px;
  }
  .about-block .about-slider {
    padding: 30px 30px 30px 0;
  }
  .about-block .about-slider .swiper-about .box .box-info {
    font-size: 19px;
  }
  .about-block .about-begin .btn {
    width: 100%;
  }
  .advantages {
    padding: 70px 0;
  }
  .advantages .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .advantages .pre-title:before {
    left: initial;
    right: -210px;
  }
  .advantages .adv-img img {
    width: 100%;
  }
  .story {
    padding: 70px 0;
  }
  .story .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 70px;
  }
  .story .pre-title:before {
    left: initial;
    right: -210px;
  }
  .story .swiper-story {
    margin: 0 30px;
  }
  .story .swiper-story .box .box-date {
    font-size: 45px;
    margin: 0 0 30px;
  }
  .story .swiper-pagination:after {
    display: none;
  }
  .story .swiper-pagination .swiper-pagination-bullet {
    margin: 0 30px 35px;
  }
  .features {
    padding: 70px 0;
  }
  .features .border {
    margin: 0 0 50px;
  }
  .features .title {
    padding: 0 0 20px;
  }
  .features .title h2 {
    font-size: 22px;
  }
  .features .title h2 span {
    font-size: 45px;
  }
  .features .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .features .pre-title:before {
    left: initial;
    right: -210px;
  }
  .features .swiper-features .box .box-icon img {
    height: 50px;
  }
  .features .swiper-features .box .box-title {
    font-size: 21px;
    margin: 30px 0;
  }
  .features .swiper-button-next, .features .swiper-button-prev {
    top: -110px;
  }
  .practices {
    height: 100%;
    padding: 100px 0 70px;
  }
  .practices .title h2 {
    font-size: 22px;
  }
  .practices .title h2 span {
    font-size: 45px;
  }
  .practices .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .practices .pre-title:before {
    left: initial;
    right: -210px;
  }
  .practices-block {
    padding: 70px 0;
  }
  .practices-block .title h2 {
    font-size: 22px;
  }
  .practices-block .title h2 span {
    font-size: 45px;
  }
  .practices-block .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .practices-block .pre-title:before {
    left: initial;
    right: -210px;
  }
  .practices-block .btn {
    width: 100%;
  }
  .practices-block .list {
    border: none;
    padding: 0;
  }
  .practices-block .list ul li {
    margin: 0 0 25px;
  }
  .practices-block .list ul li a {
    font-size: 17px;
    line-height: 1.4;
  }
  .practices-block .list ul li a .icon img {
    width: 20px;
  }
  .practices-block .list .icon-balance img {
    display: none;
  }
  .kinds {
    margin: 0;
    padding: 70px 0;
  }
  .kinds .pre-title {
    float: none;
    font-size: 16px;
    color: #2d2d2d;
    margin: 0 0 50px;
  }
  .kinds .pre-title:before {
    left: initial;
    right: -210px;
    background-color: #2d2d2d;
  }
  .kinds .box .box-info .box-title {
    font-size: 16px;
    padding: 0 0 15px;
  }
  .kinds .box .box-info .btn {
    width: 170px;
    height: 50px;
    font-size: 15px;
  }
  .practices-page .title {
    padding: 0 0 15px;
  }
  .practices-page .title span {
    font-size: 19px;
    margin: 0 0 10px;
  }
  .practices-page .title h3 {
    font-size: 22px;
  }
  .practices-page .pre-title {
    font-size: 16px;
    margin: 30px 0 25px;
  }
  .practices-page .page-text p {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .practices-page .page-text p.note {
    font-size: 16px;
    margin: 30px 0;
  }
  .laws {
    padding: 100px 0 50px;
  }
  .laws .title h2 {
    font-size: 22px;
  }
  .laws .title h2 span {
    font-size: 45px;
  }
  .laws .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .laws .pre-title:before {
    left: initial;
    right: -210px;
  }
  .laws-block {
    padding: 70px 0;
  }
  .laws-block .title h2 {
    font-size: 22px;
  }
  .laws-block .title h2 span {
    font-size: 45px;
  }
  .laws-block .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .laws-block .pre-title:before {
    left: initial;
    right: -210px;
  }
  .laws-block .laws-person .box {
    width: 100%;
    height: 560px;
  }
  .laws-block .laws-person .box:first-child {
    margin: 0 0 15px;
  }
  .laws-block .laws-info .btn {
    width: 100%;
  }
  .career {
    padding: 70px 0 0;
  }
  .career .title h2 {
    font-size: 22px;
  }
  .career .title h2 span {
    font-size: 45px;
  }
  .career .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .career .pre-title:before {
    left: initial;
    right: -210px;
  }
  .news {
    padding: 100px 0 0;
  }
  .news .title h2 {
    font-size: 22px;
  }
  .news .title h2 span {
    font-size: 45px;
  }
  .news .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .news .pre-title:before {
    left: initial;
    right: -210px;
  }
  .news .tab .tabs li {
    margin: 0 20px 0 0;
  }
  .news .tab .tabs li:last-child {
    margin: 0;
  }
  .news .tab .tabs li.current a {
    font-size: 16px;
  }
  .news .tab .tabs li a {
    font-size: 16px;
    padding: 0 0 15px;
    margin: 0;
  }
  .news .tab .tab_content .tab_item .box .box-info {
    width: 84%;
  }
  .news .tab .tab_content .tab_item .box .box-info h3 {
    font-size: 16px;
  }
  .news-block {
    padding: 70px 0;
  }
  .news-block .title h2 {
    font-size: 22px;
  }
  .news-block .title h2 span {
    font-size: 45px;
  }
  .news-block .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .news-block .pre-title:before {
    left: initial;
    right: -210px;
  }
  .news-block .box {
    display: block;
    height: auto;
  }
  .news-block .box .box-date {
    display: flex;
    float: left;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
  }
  .news-block .box .box-info {
    display: inline-block;
    width: 100%;
    padding: 0;
  }
  .news-block .box .box-info h3 {
    font-size: 15px;
  }
  .news-block .box .box-more {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 20px 0 0 0;
  }
  .news-block .btn {
    width: 100%;
  }
  .news-page {
    padding: 100px 0 70px;
  }
  .news-page .title {
    padding: 0 0 15px;
    margin: 0 0 30px;
  }
  .news-page .title span {
    font-size: 19px;
    margin: 0 0 10px;
  }
  .news-page .title h3 {
    font-size: 22px;
  }
  .news-page .page-text p {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .news-page .pagination {
    margin: 50px 0 0;
  }
  .news-page .pagination a {
    font-size: 14px;
  }
  .news-page .pagination a:first-child {
    margin: 0 20px 0 0;
  }
  .search-page {
    padding: 100px 0 70px;
  }
  .search-page .title {
    padding: 0 0 15px;
    margin: 0 0 30px;
  }
  .search-page .title span {
    font-size: 19px;
  }
  .search-page .search .input {
    width: 70%;
    height: 45px;
  }
  .search-page .search .input input {
    font-size: 15px;
  }
  .search-page .search .btn-search {
    width: 100px;
    height: 45px;
  }
  .search-page .search .btn-search .btn {
    font-size: 14px;
  }
  .search-page .search .btn-search .btn:after {
    -webkit-transform: translateY(44px);
        -ms-transform: translateY(44px);
            transform: translateY(44px);
  }
  .search-page .search .search-note {
    font-size: 13px;
  }
  .search-page .search .results ul li .result-title {
    font-size: 16px;
  }
  .search-page .search .results ul li .result-text {
    font-size: 15px;
  }
  .contacts {
    padding: 100px 0 70px;
  }
  .contacts .title h2 {
    font-size: 22px;
  }
  .contacts .title h2 span {
    font-size: 45px;
  }
  .contacts .pre-title {
    float: none;
    font-size: 16px;
    margin: 0 0 50px;
  }
  .contacts .pre-title:before {
    left: initial;
    right: -210px;
  }
  .contacts .map .contact-block {
    font-size: 16px;
    padding: 0 50px 0 0;
    margin: 0 0 30px;
  }
  .contacts .map .contact-block .address {
    padding: 0 0 15px;
    margin: 0 0 30px;
  }
  .contacts .map .contact-block .address:after {
    width: 70px;
    height: 2px;
  }
  .call-back .contact-link {
    padding: 30px 15px;
  }
  .call-back .contact-link .title {
    font-size: 22px;
  }
  .call-back .contact-link .title span {
    font-size: 65px;
  }
  .call-back .contact-link .btn {
    width: 100%;
  }
  .footer .bottom {
    text-align: center;
    height: auto;
  }
  .footer .bottom .container .row .col-xs-12 {
    display: block;
  }
  .footer .bottom .copyright {
    font-size: 15px;
    margin: 50px 0 30px;
  }
  .footer .bottom .developer {
    margin: 0 0 50px;
  }
  .footer .bottom .developer span {
    font-size: 15px;
  }
  .footer .bottom .to-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .modal.for-menu {
    padding: 80px 30px;
  }
  .modal.for-menu .menu {
    height: 100%;
    overflow: auto;
  }
  .modal.for-menu .menu ul {
    -webkit-column-count: initial;
       -moz-column-count: initial;
            column-count: initial;
  }
  .modal.for-menu .menu ul li {
    margin: 0 0 40px;
  }
  .modal.for-menu .menu ul li a {
    font-size: 13px;
  }
  .modal.for-menu .menu ul li a:first-child {
    font-size: 18px;
  }
  .modal.for-menu .menu .btn {
    margin: 0;
  }
  .modal.for-search {
    padding: 0 30px;
  }
  .popup .laws-about .laws-text h2 {
    width: 100%;
  }
  .popup .laws-about .laws-text .box .line .date {
    display: block;
    width: 100%;
    height: initial;
    margin: 0 0 15px;
  }
  .popup .laws-about .laws-text .box .line .detail {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  header {
    height: 55px;
  }
  header .logo {
    width: 55px;
  }
  header .toggle {
    padding: 10px 17px 4px;
  }
  header .search {
    padding: 20.5px 17px;
  }
  header .lang {
    right: 15px;
  }
  header .lang a {
    margin: 0 0 0 10px;
  }
  .main {
    height: 700px;
  }
  .main .welcome {
    padding: 0 15px;
  }
  .main .welcome h1 {
    font-size: 20px;
  }
  .main .welcome h1 span {
    font-size: 26px;
  }
  .main .welcome .quote p {
    font-size: 16px;
  }
  .main .welcome .quote .author {
    font-size: 14px;
  }
  .about .title h2 {
    font-size: 20px;
  }
  .about .title h2 span {
    font-size: 41px;
  }
  .about .pre-title {
    font-size: 15px;
  }
  .about .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .about .about-img img {
    width: 100%;
  }
  .about-block .title {
    margin: 0 0 20px;
  }
  .about-block .title h2 {
    font-size: 20px;
  }
  .about-block .title h2 span {
    font-size: 41px;
  }
  .about-block .pre-title {
    font-size: 15px;
  }
  .about-block .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .about-block .about-slider {
    padding: 30px 0;
  }
  .about-block .about-link ul li {
    width: 50%;
    margin: 0 0 30px;
  }
  .about-block .about-begin img {
    width: 100%;
    margin: 30px auto 50px;
  }
  .about-block .about-begin .btn {
    height: 65px;
    font-size: 15px;
  }
  .about-block .about-begin .btn .icon svg {
    width: 21px;
  }
  .advantages .pre-title {
    font-size: 15px;
  }
  .advantages .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .story .pre-title {
    font-size: 15px;
  }
  .story .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .story .swiper-story {
    padding: 160px 0 0;
    margin: 0;
  }
  .story .swiper-story .box .box-date {
    font-size: 40px;
  }
  .story .swiper-pagination .swiper-pagination-bullet {
    margin: 0 35px 40px;
  }
  .story .swiper-button-next, .story .swiper-button-prev {
    display: none;
  }
  .features .title h2 {
    font-size: 20px;
  }
  .features .title h2 span {
    font-size: 41px;
  }
  .features .pre-title {
    font-size: 15px;
  }
  .features .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .practices .title {
    margin: 0 0 20px;
  }
  .practices .title h2 {
    font-size: 20px;
  }
  .practices .title h2 span {
    font-size: 41px;
  }
  .practices .pre-title {
    font-size: 15px;
  }
  .practices .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .practices-block .title {
    margin: 0 0 20px;
  }
  .practices-block .title h2 {
    font-size: 20px;
  }
  .practices-block .title h2 span {
    font-size: 41px;
  }
  .practices-block .pre-title {
    font-size: 15px;
  }
  .practices-block .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .practices-block .btn {
    height: 65px;
    font-size: 15px;
  }
  .practices-block .btn .icon img {
    width: 21px;
  }
  .kinds .pre-title {
    font-size: 15px;
  }
  .kinds .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .kinds .box {
    height: 340px;
  }
  .kinds .box:nth-child(2n-1) .box-info {
    padding: 30px 15px;
  }
  .kinds .box .box-info {
    width: 90%;
    padding: 30px 15px;
  }
  .kinds .box .box-info .box-title {
    font-size: 15px;
  }
  .kinds .box .box-info .btn {
    width: 160px;
    height: 45px;
    font-size: 14px;
  }
  .laws .title h2 {
    font-size: 20px;
  }
  .laws .title h2 span {
    font-size: 41px;
  }
  .laws .pre-title {
    font-size: 15px;
  }
  .laws .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .laws .swiper-laws {
    margin: 0;
  }
  .laws .swiper-button-next, .laws .swiper-button-prev {
    width: 30px;
    background: none;
  }
  .laws .swiper-button-next img, .laws .swiper-button-prev img {
    width: 15px;
  }
  .laws-block .title {
    margin: 0 0 20px;
  }
  .laws-block .title h2 {
    font-size: 20px;
  }
  .laws-block .title h2 span {
    font-size: 35px;
  }
  .laws-block .pre-title {
    font-size: 15px;
  }
  .laws-block .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .laws-block .laws-person .box {
    height: 460px;
  }
  .laws-block .laws-info .btn {
    height: 65px;
    font-size: 15px;
  }
  .laws-block .laws-info .btn .icon svg {
    width: 21px;
  }
  .career .title h2 {
    font-size: 20px;
  }
  .career .title h2 span {
    font-size: 41px;
  }
  .career .pre-title {
    font-size: 15px;
  }
  .career .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .career .resume h4 {
    font-size: 25px;
  }
  .news .title h2 {
    font-size: 20px;
  }
  .news .title h2 span {
    font-size: 41px;
  }
  .news .pre-title {
    font-size: 15px;
  }
  .news .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .news .tab .tabs li {
    margin: 0 0 15px;
  }
  .news .tab .tabs li.current a {
    font-size: 15px;
  }
  .news .tab .tabs li a {
    font-size: 15px;
    padding: 0 0 10px;
  }
  .news .tab .tab_content {
    padding: 50px 0 0;
  }
  .news .tab .tab_content .tab_item .box .box-info {
    width: 79%;
  }
  .news .tab .tab_content .tab_item .box .box-info h3 {
    font-size: 15px;
  }
  .news-block .title {
    margin: 0 0 20px;
  }
  .news-block .title h2 {
    font-size: 20px;
  }
  .news-block .title h2 span {
    font-size: 41px;
  }
  .news-block .pre-title {
    font-size: 15px;
  }
  .news-block .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .news-block .box {
    margin: 0 0 50px;
  }
  .news-block .box .box-info {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .news-block .btn {
    height: 65px;
    font-size: 15px;
  }
  .news-block .btn .icon img {
    width: 21px;
  }
  .news-page .pagination a {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .search-page .search .input {
    width: 100%;
  }
  .search-page .search .btn-search {
    margin: 15px 0 0;
  }
  .search-page .search .search-note {
    margin: 15px 0 0;
  }
  .contacts .title h2 {
    font-size: 20px;
  }
  .contacts .title h2 span {
    font-size: 41px;
  }
  .contacts .pre-title {
    font-size: 15px;
  }
  .contacts .pre-title:before {
    right: -120px;
    width: 60px;
  }
  .call-back .form h4 {
    font-size: 25px;
  }
  .call-back .contact-link .title {
    font-size: 20px;
  }
  .call-back .contact-link .title span {
    font-size: 55px;
  }
  .call-back .contact-link .btn {
    height: 65px;
    font-size: 15px;
  }
  .call-back .contact-link .btn .icon img {
    width: 21px;
  }
  .modal.for-search {
    padding: 0 15px;
  }
  .modal.for-search input {
    height: 70px;
    font-size: 18px;
  }
  .modal.for-search button {
    height: 70px;
  }
  .modal.for-search button img {
    width: 20px;
  }
  .modal.for-search .note {
    font-size: 12px;
  }
  .modal .btn-close {
    top: 15px;
    right: 15px;
  }
  .popup .laws-about .laws-info {
    padding: 0 15px;
  }
  .popup .laws-about .laws-info .laws-img {
    width: 100%;
  }
  .popup .laws-about .laws-info .social {
    height: 60px;
  }
  .popup .laws-about .laws-text {
    padding: 0 15px;
  }
  .popup .laws-about .laws-text h2 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 359px) {
  /**/
}

/*---------- END RESPONSIVE ----------*/


/*---------- Joomla Style ----------*/
/*.single-page-hade-breadcrumbs .pathway:nth-child(1), .single-pahe-hade-breadcrumbs .pathway:nth-child(2), {
  display: none;
}*/
.single-page-hade-breadcrumbs meta[content="2"] + a, .single-page-hade-breadcrumbs meta[content="2"] + .devider, .single-page-hade-breadcrumbs meta[content="3"] + a,
.single-page-hade-breadcrumbs meta[content="2"] + a + span, .single-page-hade-breadcrumbs meta[content="2"] + .devider, .single-page-hade-breadcrumbs meta[content="3"] + a +span {
 display: none;
}


.news-page .container{position: relative; z-index: 1;}
.popup .laws-about .laws-text .box .line .detail span b:empty{display: none;}

.contacts .map #maps:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}