* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  color: #222222;
  font-family: "Helvetica", "Montserrat", sans-serif;
  letter-spacing: 1.5px;
}

.content {
  padding: 0 10%;
}

/* -=-=-=-= Logo =-=-=-=- */
.logo {
  position: absolute;
  /* padding-top: 50px; */
  width: 10%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  padding: 0 10px 10px 10px;
  border-radius: 0 0 8px 8px;
  -webkit-box-shadow: 0px 0px 21.87px 5.13px rgba(13, 13, 13, 0.55);
  box-shadow: 0px 0px 21.87px 5.13px rgba(13, 13, 13, 0.55);
}

.logo img {
  width: 100%;
  height: auto;
}

/* -=-=-=-= Menu =-=-=-=- */
nav {
  background: #fff;
  position: fixed;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1000;
}

.menu-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

nav .menu-block > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

nav ul.main-menu {
  margin-left: 18%;
}

nav .menu-block > ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  height: 100%;
  margin-right: 15px;
}

nav .menu-block > ul li:last-child {
  margin-right: 0px;
}

nav .menu-block > ul li a {
  text-decoration: none;
  padding: 25px 15px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #001a4c;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.active-menu {
  color: #000d26;
  font-weight: 600;
}

.active-menu::after,
nav .menu-block > ul.main-menu li:hover::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 3px;
  background: #314768;
}

.active-menu2 a {
  background: rgb(2, 4, 119);
  font-weight: bold;
  color: #fff !important;
}

/* -=-=-=-= Toggle Menu =-=-=-=- */
.toggle {
  display: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  text-align: right;
  float: right;
  background: #fff;
  cursor: pointer;
}

.toggle span {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #222222;
}

.toggle span::before,
.toggle span::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  background: #222222;
}

.toggle span:before {
  top: -8px;
}

.toggle span:after {
  bottom: -8px;
}

.showMenu {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* -=-=-=-= Main Block =-=-=-=- */
.mainBlock {
  position: relative;
  padding-top: 68px;
  min-height: 750px;
  height: 750px;
  max-height: 750px;
  width: 100%;
}
.mainBlock:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  background: rgb(2, 4, 119);
  width: 3px;
  height: 750px;
}

.mainBlock video {
  position: absolute;
  width: 100%;
  height: 750px;
  max-height: 750px;
  min-height: 750px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 40%;
  object-position: 40%;
}

.mainBlock .text-lable {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 10%;
  padding-left: 2%;
  text-align: right;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  height: 310px;
  width: 50%;
}

.mainBlock .text-lable h1 {
  position: relative;
  color: #fff;
  font-size: 54px;
  text-align: right;
}
.mainBlock .text-lable h1:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  border-radius: 1.5px 0 0 1.5px;
  background: rgb(2, 4, 119);
}

.mainBlock .text-lable p {
  color: #fff;
  margin-top: 50px;
}
.mainBlock .text-lable a {
  padding: 7px 15px;
  background: rgb(20, 64, 205);
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  margin-top: 40px;
}
.mainBlock .text-lable a:hover {
  background: rgb(34, 76, 215);
}
/* -=-=-=-= Product =-=-=-=- */
.product {
  margin-top: 80px;
}
.product h2 {
  position: relative;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 95px;
}
.product p,
.slider__item ul li {
  line-height: 25px;
}
.product h2:after {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 30px;
  background: rgb(2, 4, 119);
}
.product .slide img {
  height: 500px;
  width: auto;
}
/* -=-=-=-=-= Slider -=-=-=-=-=*/
.slider {
  width: 100%;
  height: 650px;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}

.slider__wrapper {
  display: flex;
  width: 400%;
  height: 100%;
  position: absolute;
  left: 0;
  transition: all 1s;
}

.slider__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
}
.slider__item:nth-child(odd) {
  justify-content: center;
  align-items: center;
  padding-left: 1.5%;
  text-align: center;
}
.slider__item:nth-child(3) ul {
  padding-top: 20px;
}
.slider__item:nth-child(2) {
  background: url(../img/Electricidad-Sener.png) center center no-repeat;
  background-size: contain;
}
.slider__item:nth-child(4) {
  background: url(../img/Крюк.png) center center no-repeat;
  background-size: contain;
}
.slider__item:nth-child(6) {
  background: url(../img/Крюк.png) center center no-repeat;
  background-size: contain;
}
.slider__item:nth-child(8) {
  background: url(../img/Трансформатор-new.png) center center no-repeat;
  background-size: contain;
}
.slider__item:nth-child(1) {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}
.slider__item:nth-child(1) p {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.slider__item:nth-child(3) .wrap p,
.slider__item:nth-child(5) .wrap p {
  margin-top: 40px;
  text-indent: 30px;
}
.slider__item:nth-child(3) .wrap p,
.slider__item:nth-child(3) .wrap ul,
.slider__item:nth-child(5) .wrap ul,
.slider__item:nth-child(7) ul {
  text-align: left;
}
.slider__item:nth-child(3) .wrap ul,
.slider__item:nth-child(5) ul,
.slider__item:nth-child(7) ul {
  border-bottom: 1px dashed gray;
  padding-bottom: 10px;
}
.slider__item:nth-child(3) .wrap ul:last-child,
.slider__item:nth-child(5) ul:last-child {
  border-bottom: none;
}
.slider__item:nth-child(5) ul {
  margin-bottom: 30px;
}
.slider__item:nth-child(3) ul li h4,
.slider__item:nth-child(5) ul li h4 {
  color: rgb(2, 4, 119);
  text-transform: uppercase;
  /* padding-bottom: 15px; */
}
.slider__item:nth-child(3) ul li,
.slider__item:nth-child(5) ul li,
.slider__item:nth-child(7) ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: rgb(1, 0, 46);
}
.slider__item:nth-child(3) ul li span,
.slider__item:nth-child(5) ul li span,
.slider__item:nth-child(7) ul li span {
  display: flex;
  margin-right: 20px;
  margin-top: 5px;
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(1, 0, 46);
}
.slider_btn {
  width: 20px;
  height: 20px;
  background: red;
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 50px;
  z-index: 1000;
}
.slider_right {
  margin-top: 100px;
}
.slider__control {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  height: 50px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
}
.slider__control_show {
  display: flex;
}
.slider__control:hover,
.slider__control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.slider__control_left {
  left: 0;
}
.slider__control_right {
  right: 0;
}
.slider__control::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.slider__control_left::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.slider__control_right::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.slider__item img {
  height: auto;
  max-width: 50%;
}
.slider__item h3 {
  position: relative;
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 30px;
  display: inline;
}
.slider__item h3::after {
  content: "";
  display: block;
  position: absolute;
}
.slider__item h3::after {
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: rgb(2, 4, 119);
}
.slider__item ul li {
  list-style-type: none;
}
.slider__item .wrap {
  display: inline-block;
  overflow-y: auto;
  box-sizing: border-box;
}
#sener {
  display: none;
}
/* -=-=-=-= Map =-=-=-=- */
#map {
  position: relative;
  width: 100%;
  height: 800px;
  margin-top: 60px;
}
#map:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: rgb(2, 4, 119);
}
.loc-map {
  margin-top: 0px !important;
}
/* -=-=-=-= Contacts =-=-=-=- */
.info {
  display: flex;
  justify-content: space-around;
  margin: 25px 0;
}
.contact ul,
.info .developed p,
.info .reserved p {
  position: relative;
}
.info p {
  font-size: 14px;
}
.contact ul:after,
.developed p:after,
.reserved p:after {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background: rgb(2, 4, 119);
}
.info .developed p a {
  font-weight: bold;
  color: #222222;
}
.loc-contact {
  padding-top: 180px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.loc-contact .contactUs .contact ul li {
  list-style: none;
}
.loc-contact .contactUs .contact,
.loc-contact .loc .map {
  margin-top: 40px;
}
.loc-contact .loc {
  width: 60%;
}
.loc-contact .loc h2,
.loc-contact .contactUs h2 {
  position: relative;
}
.loc-contact .loc h2:after,
.loc-contact .contactUs h2:after {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 30px;
  background: rgb(2, 4, 119);
}
.loc-contact .loc .map {
  width: 100% !important;
  height: 600px;
}
.loc-contact .contact ul li:first-child{
  margin-bottom: 15px;
}
.loc-contact .contact ul li a{
  text-decoration: none;
  color: rgb(2, 4, 119)
}
.loc-contact .contact ul li a:hover{
  text-decoration: underline;
}
.loc-contact .contact ul:nth-child(2),
.loc-contact .contact ul:last-child{
  margin-top: 40px;
}
/* -=-=-=-= Downloads =-=-=-=- */
.downloads-block{
  padding-top: 180px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.downloads-block .download{
  width: 28%;
}
.downloads-block .download a{
  font-size: 18px;
  text-decoration: none;
  color: #000;
}
.downloads-block .download a:hover{
  text-decoration: underline;
}
.downloads-block .download a img{
  width: 100%;
  height: auto;
}
.downloads-block .download a h4{
  margin-top: 20px;
  text-align: center;
}
/* -=-=-=-= Media =-=-=-=- */
@media (max-width: 1440px) {
  /* body {
    font-size: 19px;
  } */
  .mainBlock .text-lable h1 {
    font-size: 44px;
  }
  .slider__item h3,
  .slider__item .wrap h3 {
    font-size: 16px;
  }
  .product p,
  .slider__item ul li {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 1280px) {
  body {
    font-size: 16px;
  }
  .mainBlock .text-lable h1 {
    font-size: 36px;
  }
  nav .menu-block > ul li a {
    padding: 25px 8px;
  }
}
@media (max-width: 980px) {
  .product p,
  .slider__item ul li {
    font-size: 13px;
  }
  .product h2 {
    margin-left: 10%;
  }
  #sener {
    margin-top: 20px;
    display: block;
    height: 50%;
    width: auto;
  }
  .content.product {
    padding-right: 0;
    padding-left: 0;
  }
  .slider__wrapper {
    width: 800%;
  }
  .slider__item {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    padding-left: 2%;
    padding-right: 2%;
  }
  .slider__item:nth-child(3) ul li span,
  .slider__item:nth-child(5) ul li span,
  .slider__item:nth-child(7) ul li span {
    margin-right: 7px;
  }
  .slider__item:nth-child(odd) {
    padding-right: 0;
  }
  .slider__item:nth-child(3) .wrap p,
  .slider__item:nth-child(5) .wrap p {
    text-indent: 0;
    font-size: 11px;
    line-height: 16px;
    margin-top: 30px !important;
  }
  .slider__item:nth-child(3) ul li,
  .slider__item:nth-child(5) ul li,
  .slider__item:nth-child(7) ul li {
    margin-bottom: 6px;
  }
  .product p,
  .slider__item ul li {
    line-height: 18px;
  }
  .slider__item:nth-child(1) p {
    margin-bottom: 30px;
    text-align: center;
  }

  .slider__item:nth-child(1) p,
  .slider__item:nth-child(1) h3 {
    background: #fff;
  }
  .slider__item:nth-child(3),
  .slider__item:nth-child(5) {
    overflow-y: auto;
  }
  .slider__item h3::after {
    left: 50%;
    transform: translateX(-75%);
    bottom: -8px;
    width: 25%;
    height: 3px;
    background: rgb(2, 4, 119);
  }
  .slider__item h3:before {
    left: 65%;
    transform: translateX(-60%);
    bottom: -7px;
    width: 15%;
    height: 1px;
    background: rgb(211, 211, 218);
  }
  /*-=-=-==-=- Mobile MENU -=-=-=-=-*/
  .toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-block {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  nav .menu-block > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  nav .menu-block > ul li {
    margin-right: 0px;
    width: 100%;
  }
  nav .menu-block ul.main-menu {
    margin-left: 0;
  }
  nav .menu-block > ul li a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .active-menu::after {
    display: none;
  }
  .active-menu2 {
    background: space;
  }
  .mainBlock .text-lable {
    width: 65%;
    height: 330px;
  }
}
@media (max-width: 768px) {
  nav.content {
    padding: 0 0;
  }
  .active-menu::after,
  nav .menu-block > ul.main-menu li:hover::after {
    display: none;
  }
  .logo {
    margin-left: 3%;
    width: 25%;
    height: 75px;
  }
  .mainBlock {
    padding-top: 60px;
  }
  .toggle {
    margin-right: 3%;
  }
  .mainBlock .text-lable {
    width: 75%;
    height: 380px;
  }
  .loc-contact {
    flex-direction: column;
    padding-top: 140px;
  }
  .loc-contact .contactUs {
    padding-left: 5%;
    padding-right: 5%;
  }
  .loc-contact .loc {
    margin-top: 70px;
    width: 100%;
  }
  .loc-contact .loc h2 {
    margin-left: 5%;
  }
  .loc-contact.content {
    padding-left: 0;
    padding-right: 0;
  }
  .info {
    justify-content: space-between;
    flex-direction: column;
    margin: 0 0 25px 0;
  }
  .developed,
  .reserved {
    margin-top: 30px;
  }
  .downloads-block{
    flex-direction: column;
  }
  .downloads-block .download{
    margin-bottom: 80px;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .mainBlock .text-lable {
    height: 400px;
  }
}
