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

body, html
{
  height: 100%;
}

html
{
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd
{
  margin: 0;
}

ul[role='list'], ol[role='list']
{
  list-style: none;
}

body
{
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label
{
  line-height: 1.1;
}

h1, h2, h3, h4
{
  text-wrap: balance;
}

a:not([class])
{
  text-decoration-skip-ink: auto;
  color: currentColor;
  text-decoration: underline;
}

img, picture
{
  max-width: 100%;
  display: block;
}

input, button, textarea, select
{
  font: inherit;
}

textarea:not([rows])
{
  min-height: 10em;
}

:target
{
  scroll-margin-block: 5ex;
}

a
{
  text-decoration: none !important;
  color: #333;
}

a:hover
{
  color: #333;
}

@font-face
{ 
  font-family: "Minsk";
  src: url("./fonts/Minsk.otf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

body
{
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background: #366aa4;
  color: #202020;
  /* position: relative; */
  /* width: 100%; */
  /* height: 100%; */
}

img.project_icon
{
  width: 180px;
  border-radius: 128px;
  animation: project_icon 2s ease-in-out infinite alternate both;
  transform: scale(1) translate(0px, 0px);
}

@keyframes project_icon
{
  0%
  {
    transform: scale(1) translate(0px, 0px);
  }
  
  100%
  {
    transform: scale(0.95) translate(0, -10px);
  }
}

.main
{
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  position: relative;
  z-index: 5;
  gap: 50px;
  margin-inline: auto;
  inset-inline: 0;
  padding: 100px 0;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

h1
{
  font-family: "Minsk";
  font-size: 72px;
}

.buttons
{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

a.butt_main
{
  background: #01b538;
  color: #fff;
  border-radius: 100px;
  font-size: 30px;
  font-weight: bold;
  padding: 0 40px;
  height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .5s;
  transform: translate(0px, 0px);
  opacity: 0.75;
  cursor: pointer;
}

a.butt_main:hover
{
  transform: translate(0px, -8px);
  opacity: 1;
}

.butt_main.other
{
background: #13aff4;
}

.butt_main.other .a_t
{
  font-size: 16px;
  font-weight: normal;
  margin-top: -8px;
}

a.butt_main svg
{
  width: 24px;
  margin: 1px 8px 0 0;
}

p.main_text
{
  font-size: 24px;
  line-height: 120%;
}

.bg
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: fixed;
}

.bg.bg_01
{
  background: url(/img/bg_01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.bg.bg_02
{
  background: url(/img/bg_02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
  animation: bg_02 15s ease-in-out infinite alternate both;
  transform: scale(1) translate(0px, 0px);
  opacity: 1;
}

@keyframes bg_02
{
  0%
  {
    opacity: 1;
  }
  
  25%
  {
    opacity: 1;
  }
  
  30%
  {
    opacity: 1;
  }
  
  60%
  {
    opacity: 0;
  }
  
  75%
  {
    opacity: 0;
  }
  
  100%
  {
    opacity: 0;
  }
}

.wrapper
{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.copy_massage
{
  position: absolute;
  top: 0;
  font-size: 16px;
  text-align: center;
  background: #01b538;
  border-radius: 40px;
  padding: 3px 10px;
  left: 50%;
  transform: translate(-50%, -10px);
  opacity: 0;
  transition: .5s;
  width: max-content;
}

.active .copy_massage
{
  transform: translate(-50%, -17px);
  opacity: 1;
}

.butt_m
{
  transition: .2s;
  color:#fff;
}

.butt_m:hover
{
  opacity: .5;
  color:#fff;
}
.content {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    background: #0000007a;
    padding: 30px 20px;
    border-radius: 30px;
    text-align: left;
    backdrop-filter: blur(5px);
}