* {
   padding: 0px;
   margin: 0px;
   border: 0px;
}

*,
*:before,
*:after {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
   font-family: sans-serif;
}

img {
   max-width: 100%;
   height: auto;
}

.wrapper {
   width: 100%;
   min-height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   overflow: hidden;
}

.plug {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   height: 100%;
   max-width: 700px;
   padding: 50px 20px;
}
.plug__logo {
   margin-bottom: 40px;
}
.plug__block {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   margin-bottom: 50px;
}
.plug__block:last-child{
   margin-bottom: 0;
}
.plug__text {
   line-height: 150%;
   margin-bottom: 20px;
}
.plug__label {
   font-size: 22px;
   font-weight: bold;
   margin-bottom: 20px;
}

.contacts {
   list-style: none;
   display: flex;
   margin: -20px;
}
.contacts__item {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 20px;
}
.contacts__item:last-child {
   margin-bottom: 0;
}
.contacts__label {
   margin-bottom: 5px;
}
.contacts__link {
   color: #1D64B4;
   text-decoration: none;
   border-bottom: 1px solid transparent;
   transition: all 0.3s ease 0s;
}
.contacts__link:hover {
   border-bottom-color: #1D64B4;
}