html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: Helvetica, Geneva, sans-serif;
  color: #fff;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1 {
  color: #fff;
}
h2 {
  font-size: 16pt;
  color: #214096;
}
h3 {
  font-size: 12pt;
  color: #214096;
}
a {
  text-decoration: none;
}
.width-wide {
  margin: 0 200px 0;
}
@media (max-width: 1200px) {
  .width-wide {
    margin: 0;
    padding: 0;
  }
}
.navigation {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  background-color: #2a52be;
}
.navigation .logo {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 200px;
}
.navigation .logo a {
  display: inline-flex;
  align-self: center;
  font-size: 20pt;
  gap: 20px;
  color: #fff;
}
.navigation .logo a img {
  width: 35px;
  height: 35px;
}
.navigation .logo a p {
  margin: 0;
  margin-top: 5px;
  padding: 0;
}
.navigation .logo a p b {
  color: #00bfff;
}
@media (max-width: 1200px) {
  .navigation .logo {
    margin-left: 30px;
  }
}
.navigation .nav-list ul {
  display: inline-flex;
  list-style-type: none;
  margin-right: 200px;
}
.navigation .nav-list ul .nav-item {
  display: flex;
  flex-wrap: nowrap;
  text-transform: uppercase;
  margin-right: 20px;
}
.navigation .nav-list ul .nav-item a {
  font-size: 14px;
  color: #fff;
}
.about {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding: 0 40px 0;
}
.about .my-photo {
  display: flex;
  align-items: center;
}
.about .my-photo img {
  border-radius: 50%;
  max-width: 350px;
  min-width: 250px;
  height: auto;
}
.about .greeting {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  min-width: 400px;
  margin-left: 40px;
}
.about .greeting p {
  font-size: 14pt;
  color: #214096;
  text-align: justify;
  margin: 5px;
  padding: 0;
}
.about .greeting li {
  color: #214096;
}
@media (max-width: 1200px) {
  .about {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.projects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
}
.projects .projects-list {
  display: flex;
  justify-content: space-between;
}
.projects .projects-list .cards-list {
  display: inline-flex;
  background-color: #f0f0ff;
  border-radius: 10px;
  margin: 20px;
  padding: 10px;
  list-style: none;
}
.projects .projects-list .cards-list .card-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 400px;
  padding: 20px;
  max-width: 500px;
  min-width: 400px;
}
.projects .projects-list .cards-list .card-item p {
  font-size: 13pt;
  color: #214096;
  text-align: justify;
  margin: 5px;
  padding: 0;
}
@media (max-width: 1200px) {
  .projects {
    flex-direction: column;
    align-items: center;
  }
  .projects .projects-list {
    flex-direction: column;
    align-items: center;
  }
  .projects .cards-list {
    max-width: 500px;
    min-width: 400px;
  }
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  background-color: #2a52be;
  margin-top: auto;
}
footer .copyright {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  font-size: 12px;
  line-height: 13px;
  margin-top: 5px;
  margin-left: 200px;
  padding: 0;
}
footer .copyright a {
  color: #fff;
}
footer .contacts {
  display: flex;
  flex-wrap: nowrap;
  margin-right: 200px;
}
footer .contacts ul {
  display: inline-flex;
  justify-content: space-between;
  gap: 20px;
  list-style-type: none;
}
.registration {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.registration .registration-form {
  margin-bottom: 40px;
}
.flash p {
  font-size: 16px;
  color: #f00;
}
.captcha {
  display: flex;
  height: 110px;
  margin: 20px 0 20px;
}
