* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
}

a:hover,
a:link,
a:link:hover,
a:visited,
a:visited:hover {
    text-decoration: none;
}

p {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 30px;
  color: #22313f;
}

@media screen and (min-width: 420px) {
  p {
    margin: 28px 0 0;
    font-size: 16px;
  }
}

h3 {
  margin: 28px 0 0;
  font-size: 20px;
  font-weight: 600;
}

p:first-of-type {
  margin: 0;
}

.wrapper {
  width: 100%;
  max-width: 1195px;
  padding: 0 25px;
  margin: 0 auto;
}

.wrapper__flex {
  display: flex;
}

.header {
  background: #ffffff;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 420px) {
  .header {
    height: 120px;
  }
}

.header .wrapper__flex {
  justify-content: space-between;
  align-items: center;
}

.header__link {
  font: 600 17px/28px 'Open Sans',sans-serif;
  color: #ff7b00;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header__link span {
  display: none;
}

@media screen and (min-width: 530px) {
  .header__link span {
    display: block;
  }
}

.header__link img {
  height: 35px;
}

@media screen and (min-width: 530px) {
  .header__link img {
    height: 23px;
    margin-right: 7px;
  }
}

/* Section banner */

/*
.banner {
  width: 100%;
  height: 180px;
  background: url('../img/banner-fiber.jpg');
  background-size: cover;
  background-position: top center;
}
*/

@media screen and (min-width: 420px) {
  .banner {
    height: 280px;
  }
}



/* footer */

.footer {
  width: 100%;
  background: #000000; /* was #22313f */
  color: #ffffff;
  padding: 40px 0;
}

.footer_text {
  width: 100%;
  background: #000000;
  color: #ffffff;
  padding: 40px 0;
}

.footer .wrapper__flex {
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.footer__list {
  width: 100%;
  list-style-type: none;
  margin-bottom: 20px;
  padding: 0
}

@media screen and (min-width: 420px) {
  .footer__list {
    width: calc(50% - 7.5px);
  }
}

@media screen and (min-width: 890px) {
  .footer__list {
    width: calc(25% - 7.5px);
  }
}

.footer__list h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 28px;
}

.list__item {
  font-size: 13px;
  font-weight: 300;
  padding: 3px 0;
}

.list__item a {
  color: #ffffff;
}

.list__item a:hover {
  color: orange; /* #ff7b00; */
}

.fullwidth {
  position: relative;
/*  height: 100vh; */
  width: 100%;
  border: 0px;
} 

.imgfull {
    max-width: 100%;
    height: auto;
}