@font-face {
  font-family: "Namu Pro";
  src: url("/font/NAMU-Pro.woff2") format("woff2");
}
@font-face {
  font-family: "GARALAMA";
  src: url("/font/GARALAMA.ttf") format("ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Namu Pro", sans-serif;
}

body {
  background: linear-gradient(to right, #9F71E7 48%, #7844C7 93%, #6E38C1 100%);
}

.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background: linear-gradient(to right, #9F71E7 48%, #7844C7 93%, #6E38C1 100%);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 800px) {
  header {
    flex-direction: column-reverse;
    height: auto;
  }
}
header .logo {
  max-width: 200px;
  width: 60%;
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
header .nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  header .nav a {
    margin: 0 5px;
    font-size: 14px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.container .title-page {
  min-height: 100vh;
  position: relative;
  width: 100%;
}
.container .title-page .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  font-weight: 500;
  text-align: center;
  padding: 0 30px;
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .container .title-page .title {
    transform: none;
    position: relative;
    top: 0;
    left: 0;
    padding-top: 150px;
  }
}
.container .title-page .writeUs {
  position: absolute;
  left: 50%;
  bottom: 15%;
  color: #7b48ca;
  background-color: white;
  padding: 15px 40px;
  font-weight: 500;
  border-radius: 10px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 320px;
  width: 100%;
  transform: translate(-50%, 0%);
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .container .title-page .writeUs {
    transform: none;
    position: relative;
    top: 0;
    left: 0;
    margin: 30px auto;
  }
}

.about-us {
  min-height: 100vh;
  position: relative;
  width: 100%;
}
.about-us .aboutUs-block {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .about-us .aboutUs-block {
    transform: none;
    position: relative;
    top: 0;
    left: 0;
    padding-top: 150px;
  }
}
.about-us .aboutUs-block h1 {
  font-weight: 500;
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  padding-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .about-us .aboutUs-block h1 {
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .about-us .aboutUs-block h1 {
    font-size: 26px;
  }
}
.about-us .aboutUs-block .desc_blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.about-us .aboutUs-block .desc_blocks div {
  padding: 10px 20px;
  background-color: white;
  border-radius: 10px;
  max-width: 30%;
  margin: 0 20px 20px 0;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 1100px) {
  .about-us .aboutUs-block .desc_blocks div {
    max-width: 45%;
  }
}
@media screen and (max-width: 600px) {
  .about-us .aboutUs-block .desc_blocks div {
    max-width: 85%;
    margin: 10px auto 10px auto;
  }
}
.about-us .aboutUs-block .desc_blocks div:hover {
  transform: scale(1.1);
}
.about-us .aboutUs-block .desc_blocks div .text-title {
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  .about-us .aboutUs-block .desc_blocks div .text-title {
    font-size: 22px;
  }
}
.about-us .aboutUs-block .desc_blocks div .text-desc {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  .about-us .aboutUs-block .desc_blocks div .text-desc {
    font-size: 16px;
  }
}

.geo-block {
  min-height: 100vh;
  position: relative;
  width: 100%;
}
.geo-block .geo-main {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}
@media screen and (max-width: 1100px) {
  .geo-block .geo-main {
    position: relative;
    left: 0;
    padding-top: 150px;
    top: 0;
    transform: none;
  }
}
.geo-block .geo-main .our-geo h1 {
  font-weight: 500;
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .geo-block .geo-main .our-geo h1 {
    font-size: 26px;
    text-align: center;
  }
}
.geo-block .geo-main .our-geo div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .geo-block .geo-main .our-geo div {
    justify-content: center;
  }
}
.geo-block .geo-main .our-geo div img {
  display: block;
  max-width: 120px;
  width: 14%;
  margin: 0 15px;
  min-width: 100px;
}
@media screen and (max-width: 1100px) {
  .geo-block .geo-main .our-geo div img {
    margin: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .geo-block .geo-main .our-geo div img {
    min-width: 60px;
    margin: 20px;
  }
}
.geo-block .geo-main .our-traf {
  margin-top: 120px;
}
.geo-block .geo-main .our-traf h1 {
  font-weight: 500;
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .geo-block .geo-main .our-traf h1 {
    font-size: 26px;
    text-align: center;
  }
}
.geo-block .geo-main .our-traf div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-block .geo-main .our-traf div img {
  display: block;
  max-width: 100px;
  margin: 0 20px;
}
@media screen and (max-width: 1000px) {
  .geo-block .geo-main .our-traf div img {
    max-width: 60px;
  }
}
@media screen and (max-width: 600px) {
  .geo-block .geo-main .our-traf div img {
    max-width: 40px;
  }
}

.team {
  min-height: 100vh;
  position: relative;
  width: 100%;
}
.team .team-block {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}
@media screen and (max-width: 1100px) {
  .team .team-block {
    position: relative;
    left: 0;
    padding-top: 150px;
    top: 0;
    transform: none;
  }
}
.team .team-block h1 {
  font-weight: 500;
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .team .team-block h1 {
    font-size: 26px;
    text-align: center;
  }
}
.team .team-block .team-text p {
  font-weight: 500;
  color: white;
  font-size: 32px;
}
@media screen and (max-width: 1000px) {
  .team .team-block .team-text p {
    font-size: 20px;
  }
}
.team .team-block .vacancies {
  padding-top: 50px;
}
.team .team-block .vacancies a {
  font-weight: 700;
  color: white;
  font-size: 32px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 0;
  width: fit-content;
  font-family: "GARALAMA", sans-serif;
}
.team .team-block .vacancies a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  .team .team-block .vacancies a {
    font-size: 20px;
  }
}
.team .team-block .all-vacancies {
  font-weight: 700;
  color: white;
  width: fit-content;
  font-size: 32px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 45px 0 0 0;
  font-family: "GARALAMA", sans-serif;
}
.team .team-block .all-vacancies:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  .team .team-block .all-vacancies {
    font-size: 20px;
  }
}

.contacts {
  min-height: 100vh;
  position: relative;
  width: 100%;
}
.contacts .contacts-block {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}
@media screen and (max-width: 1100px) and (max-height: 500px) {
  .contacts .contacts-block {
    position: relative;
    left: 0;
    padding-top: 150px;
    top: 0;
    transform: none;
  }
}
.contacts .contacts-block h1 {
  font-weight: 500;
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .contacts .contacts-block h1 {
    font-size: 26px;
  }
}
.contacts .contacts-block .email {
  font-weight: 500;
  color: white;
  font-size: 30px;
  padding-bottom: 40px;
  display: block;
  text-decoration: none;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .contacts .contacts-block .email {
    font-size: 22px;
  }
}
.contacts .contacts-block .links a {
  display: block;
  font-weight: 500;
  color: white;
  font-size: 28px;
  padding-bottom: 10px;
  text-decoration: none;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .contacts .contacts-block .links a {
    font-size: 20px;
  }
}
.contacts .contacts-bot {
  position: absolute;
  bottom: 50px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .contacts .contacts-bot {
    flex-direction: column;
  }
}
@media screen and (max-width: 1100px) and (max-height: 500px) {
  .contacts .contacts-bot {
    position: relative;
    left: 0;
    flex-direction: column;
    padding: 20px 0;
    top: 0;
    transform: none;
  }
}
.contacts .contacts-bot .rights {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: white;
  font-size: 20px;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .contacts .contacts-bot .rights {
    padding-bottom: 30px;
    font-size: 16px;
  }
}
.contacts .contacts-bot img {
  width: 200px;
}
@media screen and (max-width: 1000px) {
  .contacts .contacts-bot img {
    width: 100px;
  }
}

/*# sourceMappingURL=style.css.map */
