/*
 * Global style Moore
 */
body {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 400px;
  overflow-x: hidden;
}
a {
  color: #000;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}
a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}
p {
  line-height: 30px;
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}
._transition {
  transition: all 500ms;
  -webkit-transition: all 500ms;
}
/*
 * TPL
 */
.TPL_container {
  position: relative;
  width: 969px;
  margin: auto;
}
@media only screen and (max-width: 969px) {
  .TPL_container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.TPL_2_cols {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .TPL_2_cols {
    flex-wrap: wrap;
  }
}
.TPL_2_cols > .TPL_2_col {
  flex: 0 0 50%;
}
@media only screen and (max-width: 768px) {
  .TPL_2_cols > .TPL_2_col {
    flex: 0 0 100%;
  }
}
.TPL_slide {
  position: relative;
  min-height: 100vh;
}
.TPL_slide ul {
  padding: 0;
}
.TPL_slide ul li {
  position: relative;
  list-style: none;
  padding-left: 13px;
  margin-bottom: 18px;
}
.TPL_slide ul li:last-child {
  margin-bottom: 0;
}
.TPL_slide ul li:before {
  content: '·';
  position: absolute;
  top: 0;
  left: 0;
}
.TPL_image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.TPL_image span {
  opacity: 0;
}
.TPL_right_column {
  margin-left: 51.2vw;
  width: 457px;
}
@media only screen and (max-width: 1920px) {
  .TPL_right_column {
    margin-left: 51.2vw;
    width: 23.8vw;
  }
}
@media only screen and (max-width: 1400px) {
  .TPL_right_column {
    width: 45vw;
  }
}
@media only screen and (max-width: 768px) {
  .TPL_right_column {
    width: 100%;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}
h1.TPL_h1,
h2.TPL_h1,
h3.TPL_h1,
.TPL_h.TPL_h1,
h1.TPL_h2,
h2.TPL_h2,
h3.TPL_h2,
.TPL_h.TPL_h2 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #000;
  font-family: "jubilat", sans-serif;
  margin-bottom: 18px;
}
h1.TPL_h1,
h2.TPL_h1,
h3.TPL_h1,
.TPL_h.TPL_h1 {
  font-size: 60px;
  line-height: 55px;
}
@media only screen and (max-width: 768px) {
  h1.TPL_h1,
  h2.TPL_h1,
  h3.TPL_h1,
  .TPL_h.TPL_h1 {
    font-size: 40px;
    line-height: 35px;
  }
}
h1.TPL_h2,
h2.TPL_h2,
h3.TPL_h2,
.TPL_h.TPL_h2 {
  text-transform: uppercase;
  font-size: 30px;
}
h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.TPL_btn {
  position: relative;
  display: inline-block;
  padding: 0 92px 0 30px;
  border-width: 1px;
  border-style: solid;
  line-height: 45px;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 35px;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}
@media only screen and (max-width: 768px) {
  .TPL_btn {
    padding: 0 60px 0 15px;
  }
}
.TPL_btn ._arrow {
  position: absolute;
  height: 13px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 37px;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}
@media only screen and (max-width: 768px) {
  .TPL_btn ._arrow {
    right: 15px;
  }
}
.TPL_btn ._arrow:before,
.TPL_btn ._arrow:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-size: 57px 13px;
  background-position: center right;
  background-repeat: no-repeat;
}
.TPL_btn ._arrow:before {
  background-image: url(../img/arrow_blue.svg);
}
.TPL_btn ._arrow:after {
  background-image: url(../img/arrow_white.svg);
}
.TPL_btn.TPL_btn_white {
  background-color: #fff;
  border-color: #fff;
  color: #009EE2;
}
.TPL_btn.TPL_btn_white ._arrow:after {
  opacity: 0;
}
.TPL_btn.TPL_btn_blue {
  background-color: #009EE2;
  border-color: #009EE2;
  color: #fff;
}
.TPL_btn.TPL_btn_blue ._arrow:before {
  opacity: 0;
}
.TPL_btn:hover ._arrow {
  right: 17px;
  width: 56px;
}
.TPL_btn:hover.TPL_btn_white {
  background: #009EE2;
  color: #fff;
}
.TPL_btn:hover.TPL_btn_white ._arrow:before {
  opacity: 0;
}
.TPL_btn:hover.TPL_btn_white ._arrow:after {
  opacity: 1;
}
.TPL_btn:hover.TPL_btn_blue {
  background: #fff;
  color: #009EE2;
}
.TPL_btn:hover.TPL_btn_blue ._arrow:before {
  opacity: 1;
}
.TPL_btn:hover.TPL_btn_blue ._arrow:after {
  opacity: 0;
}
.TPL_titre_vertical {
  position: relative;
  padding-left: 99px;
  word-wrap: break-word;
}
@media only screen and (max-width: 768px) {
  .TPL_titre_vertical {
    padding-left: 50px;
  }
}
.TPL_titre_vertical ._icone {
  position: absolute;
  top: 11px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .TPL_titre_vertical ._icone {
    top: 0;
  }
}
.TPL_titre_vertical ._icone:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 34px;
  bottom: 16px;
  left: 45px;
  background: #000;
}
@media only screen and (max-width: 768px) {
  .TPL_titre_vertical ._icone:after {
    display: none;
  }
}
.TPL_titre_vertical._white:before {
  background: #fff;
}
.TPL_titre_vertical._white ._titre {
  color: #fff;
}
.TPL_titre_vertical._white ._icone:after {
  background: #fff;
}
.TPL_actualites {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1220px;
  margin: auto;
  padding-top: 200px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites {
    width: 100%;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article {
    margin-bottom: 30px;
    padding-bottom: 0 !important;
  }
  .TPL_actualites > article:last-child {
    margin-bottom: 0;
  }
  .TPL_actualites > article .TPL_image {
    height: 300px;
  }
}
.TPL_actualites > article ._informations {
  padding-top: 25px;
  background-image: url(../img/arrow_top.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 10px 5px;
  margin-top: 20px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article ._informations {
    padding-left: 10px;
    padding-right: 10px;
    background-position: top left 10px;
  }
}
.TPL_actualites > article ._informations h2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
  margin-top: 0;
}
.TPL_actualites > article ._informations ._excerpt {
  font-size: 14px;
  line-height: 22px;
}
.TPL_actualites > article ._informations ._excerpt p {
  line-height: 22px;
}
.TPL_actualites > article:nth-child(1) {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article:nth-child(1) {
    flex-wrap: wrap;
  }
}
.TPL_actualites > article:nth-child(1) ._image {
  flex: 0 0 960px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article:nth-child(1) ._image {
    flex: 0 0 100%;
  }
}
.TPL_actualites > article:nth-child(1) ._image .TPL_image {
  height: 720px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article:nth-child(1) ._image .TPL_image {
    height: 300px;
  }
}
.TPL_actualites > article:nth-child(1) ._informations {
  flex: 0 0 223px;
  margin-top: 0;
  background-image: url(../img/arrow_left.svg);
  background-size: 5px 10px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article:nth-child(1) ._informations {
    flex: 0 0 100%;
    margin-top: 20px;
    background-image: url(../img/arrow_top.svg);
    background-size: 10px 5px;
  }
}
.TPL_actualites > article:nth-child(2) {
  margin-left: 248px;
  flex: 0 0 223px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article:nth-child(2) {
    margin-left: 0;
    flex: 0 0 100%;
  }
}
.TPL_actualites > article:nth-child(3) {
  flex: 0 0 223px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article:nth-child(3) {
    flex: 0 0 100%;
  }
}
.TPL_actualites > article:nth-child(4) {
  flex: 0 0 468px;
}
@media only screen and (max-width: 1200px) {
  .TPL_actualites > article:nth-child(4) {
    flex: 0 0 100%;
  }
}
.TPL_actualite {
  position: relative;
  padding: 185px 0 120px;
}
@media only screen and (max-width: 768px) {
  .TPL_actualite {
    padding-bottom: 30px;
  }
}
.TPL_actualite h1 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: "jubilat", sans-serif;
  margin-bottom: 35px;
  font-size: 30px;
  line-height: 30px;
}
@media only screen and (max-width: 992px) {
  .TPL_actualite h1 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.TPL_actualite ._left_zone {
  position: absolute;
  top: 185px;
  left: -124px;
  padding-top: 13px;
}
@media only screen and (max-width: 1250px) {
  .TPL_actualite ._left_zone {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .TPL_actualite ._left_zone {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.TPL_actualite ._left_zone ._date {
  color: #009EE2;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 37px;
}
@media only screen and (max-width: 1250px) {
  .TPL_actualite ._left_zone ._date {
    margin-bottom: 0;
    margin-left: 20px;
    order: 2;
  }
}
.TPL_actualite ._left_zone ._back a {
  display: block;
  padding-left: 18px;
  font-size: 14px;
  line-height: 18px;
  background: url(../img/arrow_left_light.svg) no-repeat left center;
  background-size: 5px 10px;
}
@media only screen and (max-width: 1250px) {
  .TPL_actualite ._left_zone ._back {
    order: 1;
  }
}
.TPL_actualite .TPL_image {
  height: 720px;
  margin-bottom: 85px;
}
@media only screen and (max-width: 768px) {
  .TPL_actualite .TPL_image {
    margin-bottom: 30px;
  }
}
.TPL_actualite ._content {
  font-size: 14px;
  line-height: 22px;
  padding-left: 22px;
}
@media only screen and (max-width: 992px) {
  .TPL_actualite ._content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.TPL_actualite ._content p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 12px;
}
.TPL_actualite ._content p:last-child {
  margin-bottom: 0;
}
.TPL_actualite ._content strong {
  font-weight: 600;
}
.pagination {
  display: block;
  font-size: 14px;
  font-weight: 600;
  width: 1220px;
  margin: auto;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1200px) {
  .pagination {
    width: 100%;
    padding: 0 10p 50pxx;
  }
}
/*
 * Header
 */
header._header {
  position: fixed;
  top: 28px;
  left: 28px;
  right: 28px;
  bottom: auto;
  z-index: 1000;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
header._header ._logo_container {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 171px;
  height: 45px;
  z-index: 10;
}
header._header ._logo_container a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
header._header ._logo_container a._logo_white {
  opacity: 0;
}
header._header nav {
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 0;
  height: 0;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  overflow: hidden;
  transition: opacity 500ms ease-in-out;
  -webkit-transition: opacity 500ms ease-in-out;
  z-index: 5;
}
header._header nav ul {
  padding: 0;
}
header._header nav ul li {
  list-style: none;
  height: 77px;
}
@media only screen and (max-height: 600px), only screen and (max-width: 768px) {
  header._header nav ul li {
    height: 27px;
  }
}
header._header nav ul li a {
  display: inline-block;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 77px;
  transition: all 500ms;
  -webkit-transition: all 500ms;
  transform-origin: 0% 100%;
  -webkit-transform-origin: 0% 100%;
}
@media only screen and (max-height: 600px), only screen and (max-width: 768px) {
  header._header nav ul li a {
    font-size: 20px;
    line-height: 27px;
  }
}
header._header nav ul li a:hover {
  color: #009EE2;
  transform: scale(1.04);
  -webkit-transform: scale(1.1);
}
header._header ._burger {
  position: absolute;
  top: 25px;
  right: 17px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  z-index: 10;
}
header._header ._burger span,
header._header ._burger span:before,
header._header ._burger span:after {
  height: 2px;
  width: 15px;
  background: #000;
  position: absolute;
  display: block;
  content: '';
  left: 0;
  top: 12px;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}
header._header ._burger span:before {
  top: -12px;
  left: 0;
  width: 30px;
}
header._header ._burger span:after {
  top: 12px;
  left: 0;
  width: 24px;
}
header._header._active {
  bottom: 28px;
}
header._header._active ._burger span {
  background-color: transparent;
}
header._header._active ._burger span:before,
header._header._active ._burger span:after {
  top: 0;
  background: #000;
}
header._header._active ._burger span:before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
header._header._active ._burger span:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  width: 30px;
}
header._header._active nav {
  height: auto;
  bottom: 0;
  opacity: 1;
  padding: 17px;
  padding-top: 62px;
}
header._header._header_hide {
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}
header._header._header_white ._logo_container a._logo {
  opacity: 0;
}
header._header._header_white ._logo_container a._logo_white {
  opacity: 1;
}
header._header._header_white ._burger span,
header._header._header_white ._burger span:before,
header._header._header_white ._burger span:after {
  background-color: #fff;
}
/*
 * Footer
 */
footer._footer {
  background: #000;
  padding: 80px 0;
  color: #fff;
  font-size: 18px;
}
footer._footer a {
  color: #fff;
}
footer._footer a:hover,
footer._footer a:focus {
  color: #009EE2;
}
footer._footer ._line_1._cols {
  display: flex;
  width: 553px;
  margin: auto;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #009EE2;
  justify-content: space-between;
}
@media only screen and (max-width: 580px) {
  footer._footer ._line_1._cols {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    flex-wrap: wrap;
  }
  footer._footer ._line_1._cols ._col {
    flex: 0 0 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  footer._footer ._line_1._cols ._col:last-child {
    margin-bottom: 0;
  }
  footer._footer ._line_1._cols ._col ._logo {
    margin: auto;
    margin-bottom: 50px;
  }
}
footer._footer ._line_1._cols ._logo {
  display: block;
  width: 110px;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}
footer._footer ._line_1._cols ._logo:hover {
  opacity: 0.5;
}
footer._footer ._line_1._cols ul {
  padding: 0;
}
footer._footer ._line_1._cols ul li {
  list-style: none;
  margin-bottom: 26px;
}
footer._footer ._line_1._cols ul li:last-child {
  margin-bottom: 0;
}
footer._footer ._line_1._cols ul li a {
  text-transform: uppercase;
  line-height: 16px;
}
footer._footer ._line_2 {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  footer._footer ._line_2 a {
    display: block;
  }
}
/*
 * Language switch
 */
._language_switch {
  display: flex;
  position: fixed;
  z-index: 1000;
  font-size: 14px;
  right: 28px;
  bottom: 28px;
}
._language_switch a {
  position: relative;
  padding: 0 7px;
}
._language_switch a:hover {
  opacity: 0.7;
}
._language_switch a:after {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  width: 1px;
  height: 10px;
  background: #000;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}
._language_switch a:last-child {
  padding-right: 0;
}
._language_switch a:last-child:after {
  display: none;
}
._language_switch._language_white a {
  color: #fff;
}
._language_switch._language_white a:after {
  background: #fff;
}
/*# sourceMappingURL=style.css.map */