header
{
  position: relative;
	margin-bottom:100px;
  img
  {
    position: absolute;
    top:0px;
    left:0px;
    object-position:center;
    width: 100%;
    object-fit:cover;
    height:100%;
  }
  div
  {
    position: relative;
    z-index: 1;
  }

	h1
	{
		color:#fff;
		font-size: 32px;
		font-weight: 400;
		line-height: 48px; /* 150% */
		letter-spacing: 1.6px;
	}
	ul
	{
		display: flex;
		flex-wrap:wrap;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px; /* 162.5% */
		letter-spacing: 0.8px;
		color:#fff;
		li
		{
			a
			{
				
				color:#fff;
				transition-duration:.5s;
				&:hover
				{
					color:$main-color;
				}
			}
			&::after
			{
				content:'/';
				padding:0 8px;
			}
			&:last-child
			{
				a
				{
					color:$main-color;
					&:hover
					{
						color:#fff;
					}
				}
				&::after
				{
					display: none;
				}
			}
		}
	}
	@media(min-width:1200px)
	{
		padding-top:270px;
		padding-bottom:130px;
	}
	@media(max-width:1199px)
	{
		padding-top:130px;
		padding-bottom:100px;
	}
}

main
{
  article
  {
    padding-bottom:80px;
    margin-bottom:80px;
    border-bottom: 1px solid $main-color;
    h2
    {
      font-size: 32px;
      font-weight: 400;
      line-height: 48px; /* 150% */
      letter-spacing: 1.6px;
      color:$main-color;
    }
    >div
    {
      margin-bottom:50px;
      ul
      {
        margin-bottom:80px;
        li
        {
          a
          {
            color:#444;
            font-size: 16px;
            font-weight: 400;
            line-height: 26px; /* 162.5% */
            letter-spacing: 0.8px;
          }
        }
      }
      picture
      {
        display: block;
        img
        {
          display: block;
          max-width: 100%;
          margin:auto;
        }
      }
      
    }
    iframe
    {
      width: 100%;
      height: 300px;
    }
    
  }
  @media(min-width:768px)
  {
    article
    {
      display: flex;
      flex-wrap: wrap;
      h2
      {
        width: 50%;
        padding-right:24px;
      }
      >div
      {
        width: 50%;

      }
    }
  }
}