* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  width: 1000px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #444;
}

h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 400;
  border-bottom: 2px solid tomato;
}

.sidebar h2 {
  color: #fff;
}

h3 {
  font-size: 2.2rem;
  color: #777;
  margin-bottom: 30px;
}

p {
  line-height: 2.4rem;
}

section {
  margin-bottom: 50px;
}

.conteiner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hidden {
  display: none;
}

.fa-map-marker-alt {
  margin-right: 5px;
  font-size: 2.1rem;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__left {
  width: 35%;
  background-color: #303641;
}

.header__img {
  width: 250px;
  border-radius: 50%;
  border: 5px solid tomato;
  display: block;
  margin: 50px auto;
}

.header__right {
  width: 65%;
  text-align: center;
  background-color: #f0eeee;
  padding-top: 100px;
}

.header__title {
  font-size: 6rem;
  margin-bottom: 17px;
}

.header__desc {
  font-size: 2.5rem;
  color: #777;
}

.sidebar {
  width: 35%;
  background-color: #303641;
  color: #ddd;
  padding: 30px;
}

.list {
  list-style: none;
}

.list__item {
  margin-bottom: 15px;
}

.list .fas,
.list .fab {
  margin-right: 15px;
  font-size: 2rem;
}

.main {
  width: 65%;
  background-color: #f0eeee;
  padding: 30px;
  padding-bottom: 0;
  color: #444;
}

.education__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.education__item-title {
  width: 120px;
}

.skills__item {
  margin-bottom: 50px;
}

.skills__item-title {
  text-align: center;
}

.skill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.skill__name {
  width: 90px;
  text-align: right;
  display: inline-block;
  margin-right: 15px;
}

.skill__procent {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #ddd;
  height: 22px;
  display: inline-block;
  border: 1px solid #777;
  border-radius: 11px;
  position: relative;
}

.skill__procent:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  background-color: #ff63479c;
  border-radius: 10px;
}

.skill__procent--0:before {
  width: 0;
}

.skill__procent--10:before {
  width: 10%;
}

.skill__procent--20:before {
  width: 20%;
}

.skill__procent--30:before {
  width: 30%;
}

.skill__procent--40:before {
  width: 40%;
}

.skill__procent--50:before {
  width: 50%;
}

.skill__procent--60:before {
  width: 60%;
}

.skill__procent--70:before {
  width: 70%;
}

.skill__procent--80:before {
  width: 80%;
}

.skill__procent--90:before {
  width: 90%;
}

.skill__procent--100:before {
  width: 100%;
}

.tools {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tools__item {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ddd;
  border: 1px solid #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px 15px;
}

.project {
  margin: 30px 0;
}

.project__link {
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  margin-bottom: 5px;
  display: inline-block;
  color: blue;
}

.project__link:hover {
  color: tomato;
}

.footer {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #303641;
  color: #ddd;
}

.footer__logo {
  height: 70px;
  width: 195px;
  background-image: url("./rs_school.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__date {
  font-size: 2.4rem;
  font-weight: 700;
}

.footer__github {
  font-size: 4rem;
  color: #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__github:hover {
  color: tomato;
}
/*# sourceMappingURL=style.css.map */