@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

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

:focus, :active {
  outline: none; }

a:focus, a:active {
  outline: none; }

nav, footer, header, aside {
  display: block; }

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit; }

input::-ms-clear {
  display: none; }

button {
  cursor: pointer; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

a, a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit; }

/*--------------------*/

body {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 18px;
  line-height: 1.67;
  color: #5F6486;
  background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%; 
  background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 100px;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  padding: 0 70px;
  margin: 0 auto;
}

.footer {
  margin-bottom: 20px;
}

.about {
  margin: 200px 0 50px 0;
}

/*---------------------------------------------*/

.main_body {
  /* display: flex;
  align-items: start; */
}

.main_info {
  /* flex: 1 1 90%; */
  /* padding-right: 40px; */
}

/* .main_image {
  flex: 0 1 auto;
  margin-top: 30px;
}

.main_image img {
  width: 200px;
  height: 100%;
  object-fit: contain;
} */

.main_title {
  font-size: 100px;
  font-family: Honk;
}

.main_text {
}

/*---------------------------------------------*/

.dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(to bottom,  #cb60b3 4%,#cb60b3 45%,#de47ac 100%);
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
  z-index: 1;
  padding: 20px;
}

.dropdown-content > a{
  font-family: Honk;
  position: relative;
}

.dropdown-content > a::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #064d12;
  left: 0;
  bottom: 0;
}

.dropdown {
  display: inline-block
}

.dropdown > p {
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease 0s;
}

#read {
}

/*---------------------------------------------*/

.footer_body {
}

.footer_list {
  display: flex;
  justify-content: center;
}

.footer_item {
}

.footer_item:not(:last-child) {
  margin-right: 25px;
}

.footer_link {
}

.footer_link img {
  width: 50px;
  height: 100%;
  object-fit: contain;
}

/*---------------------------------------------*/

.about_body {
}

.about_text {
}

/*---------------------------------------------*/

.text {
  font-size: 32px;
  font-family: Honk;
  display: inline;
}

.bigger {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 50px;
}

/*---------------------------------------------*/

@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 50px;
  }

  .main {
    padding: 0 80px;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    padding: 0 40px;
  }

  .main {
    padding: 0 60px;
  }

  .text {
    font-size: 28px;
  }

  .bigger {
    font-size: 45px;
  }

  .about {
    margin-top: 175px;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .main {
    padding: 0 40px;
  }

  .text {
    font-size: 24px;
  }

  .bigger {
    font-size: 40px;
  }

  .main_title {
    font-size: 80px;
  }

  .about {
    margin-top: 140px;
  }
}

@media only screen and (max-width: 500px) {
  .container {
    padding: 0 20px;
  }
  
  .main {
    padding: 0 20px;
  }

  .about {
    margin-top: 120px;
  }
}

@media only screen and (max-width: 400px) {
  .main {
    padding: 0;
  }

  .text {
    font-size: 22px;
  }

  .bigger {
    font-size: 36px;
  }
}