.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.grid div[class*="col-"] {
    display: block;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 0 5px;
}

.grid div[class*="col-"] .grid {
    width: 100%;
}

@media (min-width: 768px) {
	.grid div.col-18-sm {
    -webkit-box-flex: 18;
    -ms-flex-positive: 18;
    flex-grow: 18;
    -ms-flex-preferred-size: 56.25%;
    flex-basis: 56.25%;
    max-width: 56.25%;
  }
	.grid div.col-16-sm {
    -webkit-box-flex: 16;
    -ms-flex-positive: 16;
    flex-grow: 16;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
	.grid div.col-7-sm {
	  -webkit-box-flex: 7;
	  -ms-flex-positive: 7;
	  flex-grow: 7;
	  -ms-flex-preferred-size: 21.875%;
	  flex-basis: 21.875%;
	  max-width: 21.875%;
	}
	.grid div.col-6-sm {
    -webkit-box-flex: 6;
    -ms-flex-positive: 6;
    flex-grow: 6;
    -ms-flex-preferred-size: 18.75%;
    flex-basis: 18.75%;
    max-width: 18.75%;
  }
  .grid div.col-4-sm {
    -webkit-box-flex: 4;
    -ms-flex-positive: 4;
    flex-grow: 4;
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
	.grid div.col-3-sm {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
    -ms-flex-preferred-size: 9.375%;
    flex-basis: 9.375%;
    max-width: 9.375%;
  }
  .grid div.col-1-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 3.125%;
    flex-basis: 3.125%;
    max-width: 3.125%;
  }
}

.container-fluid {
	max-width: 100%;
	width: 100%;
	padding: 0 24px;
}

.byline {
	font-size: 11px;
	text-transform: uppercase;
}
@media (max-width:  767px) {
	.byline {
		padding-top: 50px;
	}
}

.byline a {
	text-decoration: underline;
}

footer .grid {
	width:  100%;
}

@media (max-width:  1439px) {
	footer .grid .col-3-sm {
		-webkit-box-flex: 5;
    -ms-flex-positive: 5;
    flex-grow: 5;
    -ms-flex-preferred-size: 15.625%;
    flex-basis: 15.625%;
    max-width: 15.625%;
	}
	footer .grid .col-18-sm {
		-webkit-box-flex: 12;
        -ms-flex-positive: 12;
        flex-grow: 12;
        -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
        max-width: 37.5%;
	}
	footer .grid .col-7-sm {
		 -webkit-box-flex: 9;
        -ms-flex-positive: 9;
        flex-grow: 9;
        -ms-flex-preferred-size: 28.125%;
        flex-basis: 28.125%;
        max-width: 28.125%;
	}
}
@media (max-width:  1023px) {
	footer .grid .col-1-sm,
	footer .grid .col-7-sm {
		-webkit-box-flex: 32;
      -ms-flex-positive: 32;
      flex-grow: 32;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
	}
	footer .grid .col-3-sm,
	footer .grid .col-18-sm {
		-webkit-box-flex: 10;
        -ms-flex-positive: 10;
        flex-grow: 10;
        -ms-flex-preferred-size: 31.25%;
        flex-basis: 31.25%;
        max-width: 31.25%;
	}
}

address {
	font-size: 25px;
}

.sticky-header {
	mix-blend-mode: difference;
  background: none;
}

body.home .sticky-header {
	position: fixed;
	top:  0;
	left:  0;
	width: 100%;
	padding: 0 29px;
}

header.header {
	background: none;
}
header.header h1 {
	padding-top: 0;
}

header .nav li a {
	color: #fff;
}

section.main .thumb {
	width: calc(100% + 30px);
	margin-left: -30px;
	position: relative;
	height: 100vh;
}

@media (max-width:  767px) {
	section.main .thumb {
		width: calc(100% + 60px);
	}
}

section.main .thumb img {
	position: absolute;
	top:  50%;
	left:  50%;
	transform:  translate(-50%, -50%);
	width:  100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-height: auto;
	max-height: initial;
}

section.main .text {
	padding-top: 20px;
	padding-left: 20px;
}

@media (max-width:  1599px) {
	section.main .text {
		padding-top: 100px;
	}
}

@media (max-width:  767px) {
	section.main .text {
		padding-top: 75px;
		padding-left: 0;
	}
}

section.main .text p {
	font-weight: 400;
	font-size: 25px;
	line-height: 1.16;
	max-width: 555px;
	margin:  0;
}

section.main .text p + p {
	padding-top: 15px;
}

section.main .text a {
	color:  #000;
	font-size: 11px;
	line-height: 1.18;
	text-transform: uppercase;
}

@media (min-width:  1025px) {
	section.main .text a:hover {
		text-decoration: underline;
	}
}

section.news {
	padding-top: 125px;
}

.head {
	padding-top: 24px;
	border-top:  1px solid;
	padding-bottom: 25px;
}

@media (max-width:  767px) {
	.head { 
		padding-bottom: 0;
	}
}

.head h3 {
	font-weight: 400;
	font-size: 25px;
	font-family: 'HelveticaNeue-roman', sans-serif;
}

.head h3 a {
	color:  #000;
}

@media (min-width:  1025px) {
	.head h3 a :hover {
		text-decoration: underline!important
	}
}

section.news {
	padding-bottom: 125px;
}

section.news .block {
	margin-top: 100px;
	position: relative;
}

section.news .block a {
	position: absolute;
	display: block;
	top:  0;
	left:  0;
	width:  100%;
	height: 100%;
	z-index: 2;
}

section.news .block .thumb {
	position: relative;
	width:  100%;
	padding-bottom: 113%;
}

section.news .block .thumb img {
	position: absolute;
	top:  50%;
	left:  50%;
	transform:  translate(-50%, -50%);
	width:  100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-height: auto;
	max-height: initial;
}

section.news .block .details {
	padding-top: 25px;
	margin-top: 25px;
	border-top: 1px solid #000;
	font-size: 11px;
	line-height: 1.18;
	text-transform: uppercase;
}

section.news .block .title {
	padding-top: 25px;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.16;
}

section.news .block .excerpt {
	font-size: 15px;
	line-height: 1.13;
	padding-top: 25px;
}
@media (max-width:  1599px) {
	.grid.head .col-3-sm {
		-webkit-box-flex: 6;
        -ms-flex-positive: 6;
        flex-grow: 6;
        -ms-flex-preferred-size: 18.75%;
        flex-basis: 18.75%;
        max-width: 18.75%;
	}
}
@media (max-width:  1199px) and (min-width:  768px) {
	section.news .col-6-sm {
		-webkit-box-flex: 14;
        -ms-flex-positive: 14;
        flex-grow: 14;
        -ms-flex-preferred-size: 43.75%;
        flex-basis: 43.75%;
        max-width: 43.75%;
	}
}
@media (max-width:  1023px) {
	.grid.head .col-1-sm {
		-webkit-box-flex: 32;
      -ms-flex-positive: 32;
      flex-grow: 32;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
	}
	.grid.head .col-3-sm {
		-webkit-box-flex: 16;
      -ms-flex-positive: 16;
      flex-grow: 16;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      max-width: 50%;
	}
}

section.events .table {
	text-transform: uppercase;
	font-size: 11px;
	line-height: 1.18;
	padding-top:  50px;
}

section.events .thead {
	padding-bottom: 20px;
}

@media (max-width:  767px) {
	section.events .thead {
		display: none;
	}
}

section.events .tbody .grid {
	border-top:  1px solid #000;
	padding:  40px 0;
	align-items: center;
}

section.events .tbody .grid:last-child {
	border-bottom:  1px solid #000;
}

section.events .tbody .grid a {
	color:  #000;
}

@media (max-width: 767px) {
	section.events .tbody .grid {
		padding: 0 0 25px;
	}
	section.events .tbody [data-label]::before {
		content:  attr(data-label);
		display: block;
		padding-bottom: 10px;
		padding-top: 25px;
	}
}

@media (min-width:  1025px) {
	section.events .tbody .grid a:hover {
		text-decoration: underline;
	}
}