body {
    font-family: 'Helvetica';
    font-size: 14px;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
}

.logo-img {
    max-width: 250px;
}

.first{
    background-image: url('../img/main.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
}

header {
    display: flex;
    flex-flow: row wrap;
    height: 55px;
    justify-content: space-around;
    background: rgba(76, 76, 76, 1);
}


header .buttons {
    display: flex;
    flex-flow: row nowrap;
}

.buttons a {
    text-decoration: none;
    align-self: center;
    margin: 0px 10px;
    color: #ffffff;
    text-transform: uppercase;
}

section {
    display: flex;
    flex-flow: row wrap;
}

.main-text {
    margin-left: 10%;
    padding-top: 7%;
    padding-bottom: 40%;
    max-width: 60%;
    font-size: 25px;
    font-weight: bold;
}

.main-title {
    padding: 4%;
}

.main-title-1 {
    color: #FFCB04;
}

.main-title-2 {
    margin-left: 13%;
    color: #FFCB04;

}

.main-title-3 {
    margin-left: 26%;
    color: #FFCB04;

}

.audit {
    display: flex;
    justify-content: center;
    padding: 0 2% 2% 2%;
}

.title {
    display: block;
    margin: auto;
    text-align: center;
    padding: 3% 0;
    font-size: 2em;
    color: #4b4b4b;
    text-transform: uppercase;
}

.sub-title {
    display: block;
    margin: auto;
    text-align: center;
    padding-bottom: 1%;
    font-size: 1.5em;
    color: #0E5E3A;

}

.audit-link {
    justify-content: space-around;

}

.audit-link-1 {
    max-width: 100px;
    width: 100%;
}

.main-info-block {
    display: flex;
    justify-content: center;
    padding: 10%;
    padding-top: 0;
    padding-bottom: 2%;
    color: black;
}

.activity-main {
    display: flex;
    justify-content: center;
    margin: 0 10%;
}

.activity-info-link {
    justify-content: center;
    max-width: 200px;
    width: 100%;
}


.own-main {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center; 
    overflow: auto;   
}

.own-main p {
    margin: 2%;
}

.own-info-img {
    display: block;
    margin: auto;
    max-width: 1000px;
    width: 100%;
}

.direct {
    display: flex;
    justify-content: center;
    padding: 2%;
    background-color: rgba(225, 222, 222, 0.40);
}

.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 12px 16px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 12px;
	transition: background-color 0.3s ease;
	margin-top: 0px;
}

.accordion.active,
.accordion:hover {
	background-color: #ccc;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #f9f9f9;
  padding: 0 16px;
}

.panel.open {
  padding: 20px 16px; /* додаємо вертикальні паддінги тільки при відкритті */
}

.panel.active {
	display: block;

}

/* СТИЛІ ФОРМИ */
.incident-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-size: 14px;
}

.incident-form label {
  font-weight: 500;
}

.incident-form input[type="text"],
.incident-form input[type="email"],
.incident-form input[type="tel"],
.incident-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.incident-form textarea {
  resize: vertical;
}

.incident-form fieldset {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
}

.incident-form legend {
  font-weight: bold;
  padding: 0 5px;
}

.checkbox-scroll {
  max-height: 150px;
  overflow-y: auto;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.incident-form button[type="submit"] {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
}

.incident-form button:hover {
  background-color: #0056b3;
}



.uk-panel, .uk-panel:hover {
	text-decoration: none;
	color: #066673;
}


.uk-panel-box {
    padding: 15px;
    margin: 5px;
    background: #f5f5f5;
}

.but-fond {
    display: flex;
    justify-content:center;
}


.footer {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    padding: 2%;
    background-color: #1c1c1d;
    color: #7e7e7f;
}

.footer-info {
    display: flex;
    flex-flow: row wrap;

}

.footer-info p {
    padding: 1%;
    padding: 0 15px;
    font-size: 11px;
    line-height: 19px;

}

#scrollup {
    position: fixed; /* фиксированная позиция */
    opacity: 0.8; /* прозрачность */
    padding: 15px 10px 10px; /* отступы */
    background: #aaa;
    border-radius: 5px; /* скругление углов */
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
    left: 10px; /* отступ слева */
    bottom: 10px; /* отступ снизу */
    display: none; /* спрятать блок */
    cursor: pointer;
    width: 50px;
    height: 50px;
}



