*,
*::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;
    }
}

/*------------------------------HEADER---------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
*, *:before, *:after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  color: #444;

  font-size: 1rem;
  line-height: 1.5;
}
.slider__container {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
   height: 500px;
   width: 1200px;
   margin: auto;
   margin-top: 150px;
   margin-bottom: 0;
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 5;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}
.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}
.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.slider__image {
    font-size: 2.7rem;
    color: #2196F3;
}
.slider__caption {
    font-weight: 500;
    margin: 2rem 0 1rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 19px;
}
.slider__txt {
    color: #999;
    margin-bottom: 3rem;
    max-width: 300px;
}
@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}
@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}
.slider__contents-1 {
    background-image: url(../img/apk.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;     
  }
  .button-slider-1 {
    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;
    position: absolute;
    bottom: 60px;
}
.slider__caption {
    position: absolute;
    padding-bottom: 150px;
    color:black ;
}
.button-slider-1 > a {
    color: white;
}

.slider__contents-2 {
    background-image: url('../img/proektir.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 2rem;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;  
  }
  
  .button-slider-2 {
    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;
    position: absolute;
    bottom: 60px;
}
.slider__caption-1 {
    position: absolute;
    margin-bottom: 200px;
    color:black ;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 19px;
}
.button-slider-2 > a {
    color: white;
}

.slider__contents-3 {
    background-image: url('../img/ibs.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 2rem;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;  
  }
.button-slider-3 {
    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;
    position: absolute;
    bottom: 60px;
}

.button-slider-3 > a {
    color: white;
}
.slider__contents-4 {
    background-image: url('../img/ido-2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 2rem;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .slider__contents-4 .slider__caption {   
    color: rgb(0, 0, 0);
}
.button-slider-4 {
    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;
    position: absolute;
    bottom: 60px;;
}
.button-slider-4 > a {
    color: white;
}
@media (max-width: 1027px) {
    .slider__container {
        position: absolute;
        top: 0;
        left: 0;
        height: 400px;
        width: 100%;
        padding: 50px 10px 10px 10px;
        overflow: auto;
        }


}
@media (max-width: 900px) {
    .slider__container {
        position: absolute;
        top: 0;
        left: 0;
        height: 400px;
        width: 100%;
        padding: 50px 10px 10px 10px;
        overflow: auto;
        }
  
}

.footer {
    overflow: hidden;
    overflow-x: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    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%;
    }
}

@media (max-width: 1027px) {
    .footer {
        overflow: hidden;
        position: absolute;
        top: 530px;
        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;   
    }

}

