html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
  text-size-adjust: 100%;
  box-sizing: border-box;
  margin: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background: url(img/bg.png) right center no-repeat;
  background-size: cover;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: normal;
  color: #04a6df;
}

a {
  color: #fff;
}
h1 {
  margin-bottom: 20px;
  font-size: 40px;
}
h2 {
  margin-bottom: 25px;
  font-size: 36px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: normal;
  font-weight: 700;
}
p {
  margin-bottom: 30px;
}
a {
  color: #3876e7;
  text-decoration: none;
}
.container {
  max-width: 1350px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  padding: 10px 0;
  background: url(img/bg-header.png) left center no-repeat;
  background-size: cover;
}
.logo img {
  display: block;
}
img {
  max-width: 100%;
}

.btn {
  display: inline-block;
  position: relative;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 15px;
  color: #fff;
  text-transform: uppercase;
  background: #04a6df;
  box-shadow: 2px 2px 0px 2px rgba(219, 135, 92, 1);
  -webkit-box-shadow: 2px 2px 0px 2px rgba(219, 135, 92, 1);
  -moz-box-shadow: 2px 2px 0px 2px rgba(219, 135, 92, 1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.btn img {
  display: block;
}
.btn span {
  display: none;
}
.btn:hover {
  background: rgba(219, 135, 92, 1);
}
.btn:hover {
  box-shadow: none;
}
.btn:hover img {
  -webkit-animation: spinAround 2s linear infinite;
  -moz-animation: spinAround 2s linear infinite;
  animation: spinAround 2s linear infinite;
}
@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spinAround {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header {
  padding-bottom: 30px;
  text-align: center;
}
.header .name {
  font-weight: bold;
  font-size: 24px;
  color: #eb6423;
}
.name-email {
  position: relative;
  z-index: 2;
  padding: 5px 10px 15px;
  border-radius: 10px;
  box-sizing: border-box;
}
.name-email .name {
  background-color: #f9f9f9;
  display: inline-block;
  margin-top: -10px;
  margin-bottom: 5px;
  padding: 0 10px;
}
.name-email::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 10px;
  bottom: 0;
  border-radius: 10px;
  background: radial-gradient(
        circle at 100% 100%,
        #ffffff 0,
        #ffffff 3px,
        transparent 3px
      )
      0% 0%/8px 8px no-repeat,
    radial-gradient(circle at 0 100%, #f9f9f9 0, #f9f9f9 3px, transparent 3px)
      100% 0%/8px 8px no-repeat,
    radial-gradient(circle at 100% 0, #f9f9f9 0, #f9f9f9 3px, transparent 3px)
      0% 100%/8px 8px no-repeat,
    radial-gradient(circle at 0 0, #f9f9f9 0, #f9f9f9 3px, transparent 3px) 100%
      100%/8px 8px no-repeat,
    linear-gradient(#f9f9f9, #f9f9f9) 50% 50% / calc(100% - 10px)
      calc(100% - 16px) no-repeat,
    linear-gradient(#f9f9f9, #f9f9f9) 50% 50% / calc(100% - 16px)
      calc(100% - 10px) no-repeat,
    linear-gradient(90deg, #50afce 0%, #db875c 100%);
}

.user-email {
  font-size: 20px;
}
.site {
  padding-left: 15px;
  padding-right: 15px;
}
.site-left {
  margin: 30px auto;
  padding: 20px;
  max-width: 560px;
  background: url(img/bg-left-mb.png) left top repeat #f9f9f9;
  border-radius: 30px;
}
.site-right img {
  max-width: 60%;
}
.man {
  width: 100%;
}
.social-list ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.social-list ul li {
  flex-basis: 33.33%;
  width: 33.33%;
  padding: 0 10px;
  margin-bottom: 25px;
  text-align: center;
}

.site-right {
  display: none;
}
.footer {
  padding: 25px 0 10px;
  color: #fff;
  background: rgb(5, 166, 222);
  background: -moz-linear-gradient(
    left,
    rgba(5, 166, 222, 1) 0%,
    rgba(234, 100, 36, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(5, 166, 222, 1) 0%,
    rgba(234, 100, 36, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(5, 166, 222, 1) 0%,
    rgba(234, 100, 36, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05a6de', endColorstr='#ea6424',GradientType=1 );
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  position: relative;
  margin-bottom: 10px;
  min-height: 31px;
  display: flex;
  align-items: center;
}
.footer ul li {
  padding-left: 50px;
}
.footer ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media only screen and (min-width: 992px) {
  body {
    position: relative;
    font-size: 24px;
  }
  body::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    min-width: 750px;
    max-width: 1200px;
    background: url(img/bg-left.png) right center no-repeat;
    background-size: cover;
  }
  .header {
    padding-bottom: 70px;
  }
  .site {
    padding: 0;
    display: flex;
  }
  .site-left {
    margin: 0;
    background-color: transparent;
    background-image: none;
    width: 43%;
    flex-shrink: 0;
    max-width: 840px;
    min-width: 530px;
    border-radius: 0;
  }
  .site-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .header .name {
    font-size: 30px;
  }
  .user-email {
    font-size: 24px;
  }
  .main,
  .header {
    max-width: 430px;
  }
  .social-list ul {
    padding-bottom: 30px;
  }
  .social-list ul li {
    width: 20%;
    flex-basis: 20%;
  }
  .footer ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer ul li:nth-child(2n + 1) {
    flex-basis: 65%;
    width: 65%;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .container,
  .site-left {
    padding-left: 100px;
    padding-right: 100px;
  }
  .site-right img {
    max-width: 100%;
  }
}
