@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPT.woff2") format("woff2"), url("../fonts/FuturaPT.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPTItalick.woff2") format("woff2"), url("../fonts/FuturaPTItalick.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPTMediumItalick.woff2") format("woff2"), url("../fonts/FuturaPTMediumItalick.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPTMedium.woff2") format("woff2"), url("../fonts/FuturaPTMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPTBold.woff2") format("woff2"), url("../fonts/FuturaPTBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPTBoldItalick.woff2") format("woff2"), url("../fonts/FuturaPTBoldItalick.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: ProximaNova;
  font-display: swap;
  src: url("../fonts/ProximaNova.woff2") format("woff2"), url("../fonts/ProximaNova.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: ProximaNova;
  font-display: swap;
  src: url("../fonts/ProximaNovaSemibold.woff2") format("woff2"), url("../fonts/ProximaNovaSemibold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: ProximaNova;
  font-display: swap;
  src: url("../fonts/ProximaNovaBold.woff2") format("woff2"), url("../fonts/ProximaNovaBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: ProximaNova;
  font-display: swap;
  src: url("../fonts/ProximaNovaBlack.woff2") format("woff2"), url("../fonts/ProximaNovaBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

h1,
.h1 {
  font-size: 1.5rem;
}

h2,
.h2 {
  font-size: 1.25rem;
}

h3,
.h3 {
  font-size: 1rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0 0 15px;
}

.title {
  text-transform: uppercase;
  letter-spacing: 0.245em;
  font-weight: 500;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input {
  display: block;
  width: 100%;
  padding: 0.625rem 1.0417rem;
  font-size: 1rem;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 1px #ccc;
  box-shadow: inset 0 0 1px #ccc;
  -webkit-transition: border-color ease-in-out 0.5s, -webkit-box-shadow ease-in-out 0.5s;
  -o-transition: border-color ease-in-out 0.5s, box-shadow ease-in-out 0.5s;
  transition: border-color ease-in-out 0.5s, box-shadow ease-in-out 0.5s;
}
input:focus {
  border-color: #79d9ff;
  outline: 0;
}
input::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #ccc;
}
input::-webkit-input-placeholder {
  color: #ccc;
}
input::-ms-expand {
  background-color: transparent;
  border: 0;
}

p {
  margin: 0 0 15px;
}

a {
  text-decoration: none;
  color: #565656;
}

img {
  display: block;
  max-width: 100%;
  height: auto !important;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "ProximaNova", sans-serif;
  line-height: 1.3;
}

.date {
  margin-bottom: 1rem;
}
.date span:last-child {
  padding-left: 0.4rem;
}

.btn {
  padding: 0.4rem 1.6667rem;
  border: 2px solid #565656;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 768px) {
  .btn {
    padding: 0.35rem 1.5rem;
  }
}
.btn:hover {
  transition: 300ms;
  border: 2px solid #333;
  background: #333;
  color: #fff;
}

.breadcrumbs {
  display: flex;
  padding: 2.5rem 0 1.6667rem;
}
.breadcrumbs li {
  line-height: 0.7rem;
}
.breadcrumbs li:first-child a {
  padding-left: 0;
}
.breadcrumbs li:last-child a {
  padding-right: 0;
}
.breadcrumbs li:last-child a::after {
  content: "";
}
.breadcrumbs a {
  position: relative;
  font-size: 14px;
  padding: 0 8px;
}
.breadcrumbs a::after {
  content: "/";
  display: block;
  position: absolute;
  top: 50%;
  right: -0.3333rem;
  width: 0.3333rem;
  transform: translateY(-40%);
}

.wrapper {
  min-height: 100%;
}
.wrapper::after {
  content: "";
  display: block;
  height: 13.28rem;
}
@media only screen and (max-width: 768px) {
  .wrapper::after {
    height: 7.5714rem;
  }
}

.header_inner,
.container-fluid {
  padding-left: 4.2857rem !important;
  padding-right: 4.2857rem !important;
}
@media only screen and (max-width: 1200px) {
  .header_inner,
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.single-block {
  padding: 3rem 0;
}

.social {
  display: flex;
  display: flex;
}
.social li {
  padding: 0 0.2083rem;
}
.social a {
  display: inline-block;
}
.social img {
  display: inline-block;
  width: 2.8571rem;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3333rem 0.8333rem;
  background: #EDEDED;
}
@media only screen and (max-width: 768px) {
  .header_inner {
    padding: 0.5rem 0.8333rem;
  }
}
.header_inner .menu-mob {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header_inner .menu-mob {
    display: block;
  }
}
.header_inner .login__item {
  display: block;
}
.header_inner .login__item_text {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 2.1429rem;
}
@media only screen and (max-width: 992px) {
  .header_inner .login__item_text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .header_inner .login__item_text {
    padding-top: 5px;
    font-size: 1rem;
  }
}
.header_inner .login__item_desc {
  font-size: 1.2857rem;
  letter-spacing: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .header_inner .login__item_desc {
    font-size: 0.8rem;
    letter-spacing: 0.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .header_inner .login__item_desc {
    font-size: 0.6rem;
    letter-spacing: 0.35rem;
  }
}
.header_inner .menu-wrap,
.header_inner .menu {
  display: block;
  position: inherit;
  transform: inherit;
  background: transparent;
}
@media only screen and (max-width: 768px) {
  .header_inner .menu-wrap.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    background: #fff;
    opacity: 0.95;
  }
}
.header_inner .menu-wrap.active .menu {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .header_inner .menu-wrap.active .menu {
    display: inherit;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .header_inner .menu-wrap.active .menu li a {
    padding: 0.4rem 0;
    font-size: 1.2rem;
    color: #565656;
  }
}
.header_inner .menu {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .header_inner .menu {
    display: none;
  }
}
.header_inner .menu li:first-child a {
  padding-left: 0;
}
.header_inner .menu li:last-child a {
  padding-right: 0;
}
.header_inner .menu a {
  padding: 0 12px;
  text-transform: uppercase;
  font-size: 10px;
  color: #aaa;
}
.header_inner .menu a.active {
  color: #565656;
}

.menu {
  display: none;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-wrap {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  background: #fff;
  opacity: 0.95;
  z-index: 10;
}
.menu-wrap.active, .menu-wrap.active .menu {
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.menu li a {
  display: inline-block;
  padding: 0.4rem 0;
  color: #222;
  letter-spacing: 0.175rem;
  font-size: 2.8571rem;
}
@media only screen and (max-width: 768px) {
  .menu li a {
    padding: 0.4rem 0;
    font-size: 1.2rem;
    color: #565656;
  }
}

.menu-mob {
  position: absolute;
  top: 1.4286rem;
  left: 1.4286rem;
  width: 2.8571rem;
  cursor: pointer;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  .menu-mob {
    left: inherit;
    right: 1.4286rem;
    width: 1.8rem;
  }
}
.menu-mob:hover span {
  transition: 300ms;
  max-width: 100% !important;
}
.menu-mob.active {
  position: fixed;
  height: 2.8571rem;
}
@media only screen and (max-width: 768px) {
  .menu-mob.active {
    height: 1rem;
  }
}
.menu-mob.active span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  max-width: 100% !important;
  margin: 0;
}
.menu-mob.active span:nth-child(2) {
  display: none;
}
.menu-mob.active span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.menu-mob span {
  transition: 300ms;
  width: 100%;
  height: 2px;
  display: block;
  background: #565656;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .menu-mob span {
    margin-bottom: 0.35rem;
  }
}
.menu-mob span:first-child {
  max-width: 75%;
}
.menu-mob span:last-child {
  max-width: 90%;
  margin-bottom: 0;
}

.header .login {
  display: none;
}

.main .container-fluid {
  padding: 0 15px !important;
}
.main img {
  max-width: 100%;
}
.main .row {
  height: 100vh;
}
@media only screen and (max-width: 992px) {
  .main .row {
    flex-direction: column-reverse;
    height: auto;
  }
}
@media only screen and (max-width: 992px) {
  .main .col-12 {
    padding: 0;
  }
}
.main .top-desc {
  font-size: 0.8571rem;
  font-family: "FuturaPT", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.175rem;
}
@media only screen and (max-width: 992px) {
  .main .top-desc {
    margin-bottom: 4rem;
  }
}
.main a.main__img {
  display: block;
  height: calc(100% - 1.6667rem);
  margin: 0.625rem 0;
}
@media only screen and (max-width: 992px) {
  .main a.main__img {
    margin-top: 0;
  }
}
.main a.main__img img {
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
}
.main__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 1.6667rem 0;
  text-align: center;
  min-height: 100%;
}
.main .title {
  margin-bottom: 2.7143rem;
  color: #565656;
  font-family: "FuturaPT", sans-serif;
  font-size: 2.1429rem;
}
@media only screen and (max-width: 992px) {
  .main .title {
    margin-bottom: 1.4rem;
  }
}
.main .desc {
  font-size: 0.8571rem;
  font-family: "FuturaPT", sans-serif;
  font-style: italic;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  margin-bottom: 2.7143rem;
}
@media only screen and (max-width: 992px) {
  .main .desc {
    margin-bottom: 1.4rem;
  }
}
@media only screen and (max-width: 992px) {
  .main .btn {
    margin-bottom: 4rem;
  }
}

.footer {
  margin-top: -13.28rem;
  padding: 5.7143rem 0;
}
@media only screen and (max-width: 768px) {
  .footer {
    margin-top: -7.5714rem;
    padding: 2.5rem 0;
  }
}
.footer__text {
  font-size: 1.4286rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .footer__text {
    font-size: 1rem;
  }
}