/*=============================== Скидання ===============================*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}

img {
    display: block;
	max-width: 100%;
}

button {
    cursor: pointer;
	font-family: inherit;
	color: currentColor;
}

a {
    text-decoration: none;
}

input {
	font-family: inherit;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
/*=============================== / Скидання ===============================*/

/*=============================== Загальні ===============================*/
body {
	margin:0;
    font-family: 'Roboto', sans-serif;
    color: #434455;
    font-weight: 400;
    background-color: #176081;
    font-weight: 400;
    font-style: normal;
    line-height: 1.625;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

nav {
    height: 55px;
    border-bottom: 1px solid #ffffff;
}

.nav-pib{
    color: #ffffff;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 3px;
}

.nav-link{
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
}

.nav-link:hover {
    color:rgb(86, 158, 206); 
    font-weight: 400;
    font-size: 14px;
}

.about-text{
    color: #ffffff;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    padding-bottom: 20px;
    border-top: 1px solid #ffffff;
}

.about-text-tel{
    color: #ffffff;
    padding-top: 20px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    padding-bottom: 20px;
    border-top: 1px solid #ffffff;
}

.sends{
	color: #ffffff;
}

.sends-link{
	color: #ffffff;
	display: block;
}

.about-histiry{
    color: #ffffff;
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
}

.footerhr{
	padding-bottom: 20px;
	border-bottom: 1px solid #ffffff;
}

/*=============================== / Загальні ===============================*/

/*=============================== Мобільні 320 ===============================*/
.container {
    max-width: 320px;
	margin: 0 auto;
	padding: 0 15px; 
}

.section{
	padding-top: 15px;
	padding-bottom: 15px;
}
/*=============================== / Мобільні ===============================*/

/*=============================== Планшет 768===============================*/
@media screen and (min-width:768px){
    .container {
        max-width: 738px;
}
}
/*=============================== / Планшет ===============================*/

/*=============================== Від планшета до 1157===============================*/
@media screen and (max-width: 1157px) {
    .section {
        padding: 96px 0;
    }
    
    .box-svg {
        display: none;
    }
}
/*=============================== / Від планшета до декстопа ===============================*/

/*=============================== Декстоп 1158===============================*/
@media screen and (min-width: 1158px){
    .container {
        max-width: 1158px;
}
    
}
/*=============================== / Декстоп ===============================*/    