@font-face {
  font-family: Oswald;
  src: url(/fonts/Oswald/static/Oswald-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: Oswald;
  src: url(/fonts/Oswald/static/Oswald-Bold.ttf);
  font-weight: bolder;
}
@font-face {
  font-family: Oswald;
  src: url(/fonts/Oswald/static/Oswald-Light.ttf);
  font-weight: 200;
}
@font-face {
  font-family: Oswald;
  src: url(/fonts/Oswald/static/Oswald-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Oswald;
  src: url(/fonts/Oswald/static/Oswald-SemiBold.ttf);
  font-weight: 800;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  display: flex;
  flex-direction: column;
  background-image: url("/images/power_line.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

a {
  color: inherit;
  border: inherit;
  text-decoration: inherit;
}

header {
  min-height: 60px;
  background-color: rgb(255 255 255 / 0.8);
  padding: 10px;
  border-bottom: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  font-family: Oswald;
  color: #555555;
}

.nav-mobile {
  display: none;
}

.nav {
  display: flex;
}

.nav-item {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  font-family: Oswald;
  color: #555555;
  margin-right: 30px;
  transition: 0.3s;
}
.nav-tabs .nav-item {
  margin-right: 0;
}
.tab-content .active.flex-column {
  display: flex !important;
}

.nav-item:hover {
  color: #7e7e7e;
}
.nav-item._active {
  color: #7e7e7e;
}

/* Content */

.no-content {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.content-documents {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin-top: 5vh;
}

/* ANNOUNCEMENT */
.wrapper {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  width: 1200px;
  padding: 30px;
  background-color: rgb(255 255 255 / 0.8);
}

.announcement {
  display: flex;
  flex-direction: column;
  font-family: Oswald;
  line-height: 38px;
  color: #555555;
  font-size: 26px;
  margin-bottom: 68px;
}
.announcement p a {
  border-bottom: 1px dashed #000000;
}
.announcement p a:hover {
  color: #000000;
  border-bottom: 1px solid #000000;
}

.form-client {
  display: flex;
  width: 100%;
}
.form-client form {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.form-client .input-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  width: 95%;
}
.form-client .errors {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
  width: 95%;
}
.form-client .errors .error-item {
  font-family: Oswald;
  font-size: 16px;
  color: red;
  margin: 8px 0;
}
.form-client .input-text .label {
  margin-bottom: 6px;
  font-family: Oswald;
  font-size: 16px;
  font-weight: bold;
}
.form-client .input-text input {
  margin-bottom: 6px;
  font-family: Oswald;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
  border: 1px solid #000000;
  width: 100%;
  min-height: 38px;
  padding: 10px;
  box-sizing: border-box;
}
.form-client .input-textarea {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  width: 95%;
}
.form-client .input-textarea .label {
  margin-bottom: 6px;
  font-family: Oswald;
  font-size: 16px;
  font-weight: bold;
}
.form-client .input-textarea textarea {
  margin-bottom: 6px;
  font-family: Oswald;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
  border: 1px solid #000000;
  width: 100%;
  min-height: 38px;
  padding: 10px;
  box-sizing: border-box;
}
.form-client .input-submit {
  display: flex;
  flex-direction: column;
  width: 95%;
}
.form-client .input-submit button {
  cursor: pointer;
  margin-bottom: 6px;
  font-family: Oswald;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
  border: 1px solid #000000;
  background-color: #ffffff;
  width: 100%;
  min-height: 38px;
  padding: 10px;
  padding: 0;
  box-sizing: border-box;
  text-transform: uppercase;
}
.form-client .input-submit button:hover {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
}

/* ABOUT */

.about {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  width: 1200px;
  padding: 30px;
  background-color: rgb(255 255 255 / 0.8);
}
.about h1 {
  font-family: Oswald;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 30px;
}
.about h3 {
  font-family: Oswald;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 26px;
}
.about p {
  font-family: Oswald;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333333;
}

.about ul {
  list-style: disc;
  padding: 0 20px;
}
.about ul li {
  font-family: Oswald;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
}

/* DOCUMENTS */

.documents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  /* width: 80%;
  height: 90%;
           background-color: rgb(255 255 255 / 0.8); */
}

.document {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  padding: 20px 30px;
  background-color: rgb(255 255 255 / 0.8);
  width: 60%;
  margin-bottom: 20px;
}
.document a {
  transition: 0.3s;
  font-family: Oswald;
  color: #333333;
  font-size: 26px;
}
.document a:hover {
  color: #7e7e7e;
}
.document a {
  margin-bottom: 18px;
}
.document i {
  font-size: 30px;
  margin-right: 10px;
}
.document i.fa-file-word {
  color: #0078d6;
}
.document i.fa-file-pdf {
  color: #ff0000;
}

/* consumers */

.consumers {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  width: 1200px;
  padding: 30px;
  background-color: rgb(255 255 255 / 0.8);
}

.consumers .tab-content {
  border: 1px solid #e5e5e5;
  padding: 20px;
}

.consumers .nav-link {
  font-size: 16px;
}
.consumers .accordion-button {
  font-family: Oswald;
  font-weight: bold;
  color: #333333;
  font-size: 18px;
}
.consumers .accordion-body a {
  display: flex;
  flex-direction: column;
}
.consumers .accordion-body a {
  font-family: Oswald;
  color: #333333;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
}
.consumers .accordion-body a:hover {
  color: #7e7e7e;
}
.consumers .accordion-body i {
  color: #0078d6;
  margin-right: 8px;
}

/* contacts */

.contacts {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1200px;
  padding: 30px;
  font-family: Oswald;
  color: #555555;
  font-size: 26px;
  background-color: rgb(255 255 255 / 0.8);
}

.contacts p {
  margin-bottom: 26px;
}
.contacts a:hover {
  color: #555555;
}
.contacts p i {
  color: #555555;
  font-size: 30px;
  margin-right: 10px;
}

footer {
  padding: 20px;
  background-color: rgb(255 255 255 / 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #000;
  display: flex;
  flex-direction: row;
}

.footer__copyright p {
  font-family: Oswald;
  color: #555555;
  font-size: 16px;
}

.footer__phone {
  font-size: 18px;
  font-weight: bold;
  font-family: Oswald;
  color: #555555;
}
.footer__phone:hover a {
  color: #7e7e7e;
}
.footer__phone a {
  cursor: pointer;
  transition: 0.3s;
}
.footer__phone a i {
  margin-right: 2px;
}

@media screen and (max-width: 1366px) {
  header {
    padding: 8px;
    position: relative;
  }

  .logo {
    cursor: pointer;
    font-size: 18px;
  }

  .nav-mobile {
    display: flex;
  }

  .nav {
    height: 0%;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
    transition: 1s;
  }

  .nav-item {
    padding: 10px;
    font-size: 16px;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .wrapper {
    box-sizing: border-box;
    padding: 20px;
    width: 95%;
  }

  .announcement {
    font-size: 14px;
    line-height: 18px;
  }

  .document {
    font-size: 18px;
    padding: 20px 30px;
  }
  .document i {
    font-size: 24px;
  }

  .contacts {
    padding: 10px;
    width: 90%;
    height: 90%;
    font-size: 16px;
  }

  .contacts a {
    width: inherit;
  }
  .contacts p {
    width: 90%;
    margin-bottom: 40px;
  }
  .contacts a:hover {
    color: #555555;
  }
  .contacts p i {
    color: #555555;
    font-size: 30px;
    margin-right: 10px;
  }

  .footer__phone {
    font-size: 14px;
  }
  .footer__copyright {
    font-size: 14px;
  }
}
