
/* -- */


:root
{
  --head-padding-top: calc(var(--menu-height) + var(--page-default-padding) + 20px);
  --head-image-width: 45%;
  --head-button-image-animation: head_button_image_animation 20s ease-in-out 1s infinite;
  --head-button-image-mouseover-animation: head_button_image_animation 20s ease-in-out infinite;
}


/* -- */


.head
{
  position: relative;

  width: 100%;
  box-sizing: border-box;
  padding: var(--menu-height) var(--page-horizontal-padding) 60px 45%;

  background-color: var(--accent-color);
  color: var(--white-color);
}

.head::before
{
  position: absolute;
  content: '';

  left: 0; top: 0;
  width: 100%; height: 100%;

  background-image: url("../img/hero_pattern.webp");
  background-size: 100% 100%;

  opacity: 0.02;
}

@supports (-webkit-hyphens: none)
{
  background-image: url("../img/hero_pattern.jpg");
}

.head > div
{
  width: 100%;
  height: auto;
}

.head img
{
  display: block;
  position: absolute;
  width: calc(0.35 * var(--page-width));
  left: calc(var(--page-horizontal-padding) + 0px);
  margin-top: 30px;
}


/* -- */


.head_title
{
  margin-top: 120px;
  margin-bottom: 40px;

  font-family: "Open Sans";
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;

  animation: head_title_animation 1s ease-out forwards;
}

.head_title span
{
  letter-spacing: 16px;
}

.head_list
{
  opacity: 0;
  margin-left: 40px;
  line-height: 44px;

  font-size: 17px;
  letter-spacing: 1px;
  color: var(--white-color);

  font-family: "Open Sans";
  font-weight: 400;

  white-space: nowrap;

  animation: head_content_animation 1s ease-out forwards 0.5s;
}

.head_listitem
{
  clear: both;
  width: auto;
  height: 44px;
}

.head_listitem_symbol
{
  float: left;
  width: 11px;
  height: 11px;

  margin-top: 17px;
  margin-right: 16px;

  background-color: var(--white-color);
  border-radius: 20%;
  opacity: 0.99;
}

.head_listitem_text
{
  width: calc(100% - 27px);
  float: left;
  text-align: left;
}


/* -- */


.head_button
{
  margin-top: 50px;
  opacity: 0;
  cursor: pointer;
  animation: head_button_animation 1s forwards 1s;
}

.head_button_arrow
{
  height: 48px;

  background-image: url("../img/head_arrow.png");
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;

  animation: var(--head-button-image-animation);
}

.head_button_text
{
  margin-top: 10px;
  text-align: center;
  font-family: "Open Sans";
  font-size: 12.5px;
  letter-spacing: 2px;
}


/* -- */
