*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul,
ol,
li {
    list-style: none;
    text-decoration: none;
	color: inherit;
    margin: 0;
	padding: 0;
}
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Microsoft JhengHei UI Light;
    font-size: inherit;
    margin: 0;
	padding: 0;
}
html,
body {
    font-family: Microsoft JhengHei UI Light;;
    height: 100%;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    box-sizing: border-box;
}
.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.logo_1 {
    width: 250px;
    height: 150px;
}
.header {
    background-color: white;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 140px;
    z-index: 10;
}
.header__container {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 30px;
    align-items: center;
    justify-content: space-between;
    height: 140px;
}
.header__logo {
    position: relative;
    z-index: 5;
}
.menu_icon {
    display: none;
}
.menu__list > li {
    position: relative;
    margin: 0 0 0 20px;
}
.menu__link {
    font-size: 18px;
    color: black;
    position: relative;
    z-index: 1; 
}
.menu__link:hover {
    text-decoration: underline;
}


/* Стили для затемнения всей страницы по умолчанию */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.3s;
}

.menu__sub-list {
    position: absolute;
    top: 100%;
    left: 0px;
    color: black;
    min-width: 200px;
}
.menu__sub-list li {
    margin: 5px 0 20px 0;  
}
.menu__sub-list li:last-child {
    margin: 0;
}
.menu__sub-link {
    color: black; 
}
.menu__sub-link:hover {
    text-decoration: underline;
}
.menu__arrow {
    display: none;
}

/*--------------------------*/
body._pc .menu__list > li:hover .menu__sub-list {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    pointer-events: all;
}
body._touch .menu__list > li {
    display: flex;
    align-items: center;
}
body._touch .menu__link {
   flex: 1 1 auto;
}
body._touch .menu__arrow {
    display: block;
    width: 0;
    height: 0;
    margin: 2px 0 0 10px;
    transition: transform 0.3s ease 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid black;
}

body._touch .menu__list > li._active .menu__sub-list {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
    transform: rotate(-180deg);

}

/*--------------------------*/
@media (min-width: 1040px) {
    .menu__list {
        display: flex;
        align-items: center;
    }
    .menu__list > li {
        padding: 10px 0;
    }
    .menu__sub-list {
        transform: translate(0px, 10%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease 0s;
    }
}
@media (max-width: 1040px) {
    .menu_icon {
        z-index: 5;
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
    }
    .menu_icon span,
    .menu_icon::before,
    .menu_icon::after {
        left: 0;
        position: absolute;
        height: 10%;
        width: 100%;
        transition: all 0.3s ease 0s;
        background-color: black;
    }
    .menu_icon::before,
    .menu_icon::after {
        content: "";
    }
    .menu_icon::before {
        top: 0;
    }
    .menu_icon::after {
        bottom: 0;
    }
    .menu_icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }
    .menu_icon._active span {
        transform: scale(0) translate(0px, -50%);
    }
    .menu_icon._active::before {
        top: 50%;
        transform: rotate(-40deg) translate(0px, 0%);
    }
    .menu_icon._active::after {
        top: 50%;
        transform: rotate(40deg) translate(0px, 0%);
    }
    .menu__body {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: white(223, 223, 223);
        padding: 100px 30px 30px 30px;
        transition: all 0.3s ease 0s;
        overflow: auto;
    }
    .menu__body._active {
        background-color: rgb(255, 255, 255);
        left: 0;
        margin-top: 50px;
    }
    .menu__body::before {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 100px;
        background-color:rgb(255, 255, 255);
        z-index: 2;
      
    }
    .menu__list > li {
        flex-wrap: wrap;
        margin: 0px 0px 30px 0px;
    }
    .menu__list > li:last-child {
        margin-bottom: 0;
    }
    .menu__list > li._active .menu__sub-list {
        display: block;
    }
    .menu__link {
        font-size: 26px;
        margin-top: 20px;
    }
    .menu__sub-list {
        position: relative;
        flex: 1 1 100%;
        margin: 20px 0px 0px 0px;
        display: none;
    }
    .menu__sub-link {
        font-size: 20px;
        color: black;
    }
}

.info-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 130px;
    padding: 20px;

}

.info-content p {
    max-width: 100%;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-family: Microsoft JhengHei UI Light;
    text-indent: 20px;
    text-align: justify;
}
.info-content li {
    list-style-type: disc;
    margin-left: 35px;
    font-family: Microsoft JhengHei UI Light;
  }

.footer {
    overflow: hidden;
    overflow-x: hidden;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    width: 1200px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    background-color: rgba(0, 0, 0, 0.723);  
}
.icon__contact {
    letter-spacing: 1px;
    margin-top: 25px;
    margin-left: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 1em;
    grid-template-rows: repeat(2, 300px);
    width: 100%;
    height: 100px;
}
.wht-img {
    float: left;
    height: 50px;
    width: 50px;
}
.info__txt {
    padding-left: 60px;
    color: white;
    height: 50px;
    width: 100%;
}
.mail {
    margin-left:20px;
}
.mail-img {
    margin-top: 5px;
    float: left;
    height: 40px;
    width: 60px;
}
.info__txt-1 {
    padding-top: 10px;
    padding-left: 70px;
    color: white;
    height: 50px;
    width: 100%;
}
.number-img {
    float: left;
    width: 48px;
    height: 48px;
}
.info__txt-2 {
    padding-left: 60px;
    color: white;
    height: 50px;
    width: 100%;
}
.contact__span {
    display: none;
}

@media (max-width: 1213px) {
    .footer {
        overflow: hidden;
        width: 100%;
        position: fixed;  /* Фиксированная позиция */
        bottom: 0; 
    }
}
@media (max-width: 1027px) {
    .footer {
        overflow: hidden;
        position: fixed;  /* Фиксированная позиция */
        bottom: 0; 
        width: 100%;
    }
    .icon__contact {
        margin-left: 60px;
    }
}    
.contact__menu {
    display: none;
}
@media (max-width: 775px) {
    .icon__contact {
        display: none;
    }
    .contact__span {
        margin-top: 30px;
        margin-right: auto;
        margin-left: auto;
        transition: all 0.3s ease 0s;
        display: block;
        height: 45px;
        width: 150px;
        background: rgb(163, 60, 60);
        border-radius: 10px;
    }
    .href__contact {
        display: inline-block;
        background: rgb(163, 60, 60);
        color: #fff;
        padding: 12px;
        border-radius: 10px;
        text-decoration: none;
        font-family: Tahoma;
        font-size: 18px;
        line-height: 1;
        font-weight: 100;
        height: 45px;
        width: 150px;
        padding-left: 35px;   
    }

}
@media (max-width: 577px) {
    .info-container {
        margin-bottom: 100px
    }
}
.img-1 {
    max-width: 100%; 
    height: auto; 
    margin-top: 25px;
    padding-top: 25px;
    margin-bottom: 25px;
  }