body {
	padding: 0;
	margin: 0;
	font-size: 14px;
	display: block;
	overflow-x:hidden; /*Убираем горизонтальный скролл*/
}

h1, h2, h3, h4, h5, h6, ul, li,
blockquote, code, dd, div,
dl, dt, fieldset, form, input, p,
pre, td, textarea, th {
	padding: 0;
	margin: 0;
	/* white-space: pre-line; */
}

ul, li {
	display: inline-block;
}

/*header*/
h1 {
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

h1, h2 {
    color: #fff;
    font-weight: normal;
}

.header {
	background-color: #97D8F4;
	height: 100vh;
}

._container {
	width: 1170px;
	margin: auto;
	padding-top: 22px;
	text-align: center;
}

.logo {
	width: 240px;
	height: 240px;
	background: url(..//img/logo.jpg) no-repeat center / cover;
    border-radius: 100%;
}

.instagram {
	height: 42px;
	display: flex;
    justify-content: center;
}

.instagram img {
	height: 100%;
	padding-right: 10px;
}

.instagram a {
    text-decoration: none;
    font-size: 36px;
    list-style-type: circle;
    transition: all 0.5s ease;
    color: #fff;
}

.strelka {
	position: absolute;
    right: 0;
    bottom: 15%;
    left: 0;
    text-align: center;
    animation: strelka 2.5s infinite;
    z-index: 1;
}

.head_img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

@keyframes strelka {
    0%{
        opacity: 0;
        transform: translateY(-20px);
    }
    50%{
        opacity: 1;
        transform: translateY(0);
    }
    100%{
        opacity: 0;
        transform: translateY(0);
    }
}
/*header out*/


/*section_one*/

.section_one {
	background-color: #005478;
	position: relative;
}

.s_one_left_img {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 70%;
}

.s_one_right_img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 60%;
}

.category li {
	height: 75px;
    width: 620px;
    background: #fff;
    border-radius: 18px;
    margin-top: 40px;
}

.category a {
    text-decoration: none;
    color: #000;
    line-height: 75px;
    width: 100%;
    display: inline-block;
}

.category li:hover {
	box-shadow: 0 0 7px 10px #41b5ff;
	transition: all 0.5s ease;
}


#wrapper-modal {
    width: 100%;
    height: 100%;
    display: none;
}

#wrapper-modal.active {
    display: block;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #3f3f3f;
    opacity: 0.8;
}

#modal-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    padding: 20px;
    margin: 15px;
    z-index: 2;
    border: 1px solid black;
    background-color: #ffffff;
    white-space: normal;
}

.close_modal_window {
    color: #aaa;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    text-align: right;
    white-space: normal;
}

/* Responsive */

/* 992px - 1200px*/
@media screen and (max-width: 1200px) {
._container {
	width: 90%;
	position: relative;
}

.header h2 {
    font-size: 1.3em;
}

.s_one_left_img {
    max-height: 45%;
}

.s_one_right_img {
    max-height: 35%;
}

.category li {
	height: 65px;
    width: 490px;
}

.category a {
    line-height: 65px;
}


}
	
	
/* 768px - 992px*/
@media screen and (max-width: 992px) {
.category li {
    width: 420px;
}

.strelka {
    display: none;
}

.s_one_left_img {
    max-height: 30%;
}

.s_one_right_img {
    max-height: 40%;
}
}

/* 576px - 768px*/
@media screen and (max-width: 768px) {

    
}

/* 320px - 576px*/
@media screen and (max-width: 576px) {
  .category li {
    width: 80%;
}  
}

