@charset "utf-8";

/* Base */
:root {
  --sbc: #0a0a0a;
  --mc: #c22929;
  --hc: #fff;
  --bc: #ccc;
  --hff: 'Roboto', sans-serif;
  --extra-color: #666;
}

html {
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
}
*:after,
*:before,
* {
  box-sizing: border-box;
}
body {
  font-family: var(--hff);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.44;
  font-weight: 400;
  color: var(--bc);
  position: relative;
  word-break: break-word;
  background-color: var(--sbc);
}
.fn__svg {
  fill: currentcolor;
  width: 18px;
  height: 18px;
  opacity: 0;
}
.replaced-svg {
  opacity: 1;
}
p {
  letter-spacing: 0;
  margin-bottom: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--hc);
  font-family: var(--hff);
  line-height: 1.22;
  letter-spacing: 0;
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  text-decoration: none;
  color: var(--hc);
}
h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover {
  color: var(--mc);
}
/* Container */
.container {
  width: 100%;
  max-width: 1360px;
  padding: 0 80px;
  margin: 0 auto;
}
.container.wide {
  max-width: 1760px;
}
.container.small {
  max-width: 900px;
}
.container:after,
.clearfix:after,
.clearfix:before {
  content: '';
  clear: both;
  display: table;
}
@media (max-width: 1400px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 1040px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

/* Extra */
a.full_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.bg_overlay .bg_image,
.bg_overlay .bg_color,
.bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.bg_overlay .bg_color {
  z-index: 2;
}
[class*='mw_'] {
  margin-left: auto;
  margin-right: auto;
}
.mw_650 {
  max-width: 650px;
}
.mw_500 {
  max-width: 500px;
}

/* Main */
.offset_fn_main,
.offset_fn_main * {
  box-sizing: border-box;
}
.offset_fn_main {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
/*  */
.offset_fn_header {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.offset_fn_header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
}
.offset_fn_header.fixer {
  background-color: #111;
  padding: 20px 0;
}
.offset_fn_header .header_in {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

/* Hero */
.offset_fn_hero {
  width: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
}
.offset_fn_hero .overlay_slider {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.offset_fn_hero .overlay_slider .swiper-container .main_image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.offset_fn_hero .overlay_slider .swiper-slide {
  overflow: hidden;
}
.offset_fn_hero .overlay_slider .swiper-container,
.offset_fn_hero .overlay_slider .swiper-slide {
  height: 100%;
}
.offset_fn_hero .overlay_slider .swiper-container {
  cursor: e-resize;
}
.offset_fn_hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.offset_fn_hero .bg_color {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Half Content */
.offset_fn_hero.half {
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.offset_fn_hero.half .hero_content {
  width: 50%;
  background-color: #0a0a0a;
}
.offset_fn_hero.half .bg_overlay {
  left: 50%;
}

.offset_fn_hero .hero_content {
  position: relative;
  z-index: 15;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  padding: 150px 0;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}
.offset_fn_hero .content {
  text-align: center;
}

.offset_fn_hero .fn_title {
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  font-size: 120px;
  text-transform: uppercase;
  letter-spacing: 35px;
  line-height: 1;
  margin-bottom: 10px;
  transform: translateZ(0);
  overflow: hidden;
  position: relative;
  left: 17px;
}
.offset_fn_hero .fn_desc {
  padding: 0;
  font-size: 24px;
  line-height: 1.3333;
  max-width: 500px;
  margin: 0 auto;
}

/* Footer */
.offset_fn_main[data-footer-sticky='on'] #footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
}
.offset_fn_footer {
  background-color: var(--sbc);
}
.offset_fn_footer .footer_top {
  padding: 150px 0;
}
.offset_fn_footer .ft_in {
  max-width: 670px;
  margin: 0 auto;
}
.offset_fn_footer .footer_top .desc {
  text-align: center;
}
.offset_fn_footer .footer_top .img {
  margin-bottom: 33px;
}
.offset_fn_footer .footer_top .fn_title {
  font-size: 36px;
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}
.offset_fn_footer .footer_top .fn_desc {
  margin: 0;
  padding: 0;
  margin-bottom: 22px;
}
.offset_fn_footer .subscribe_form {
  width: 100%;
  padding: 0 40px;
  margin-bottom: 25px;
}
.offset_fn_footer .subscribe_in {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.offset_fn_footer .subscribe_form input[type='text'] {
  width: 100%;
  margin-right: 10px;
  height: 50px;
  min-width: inherit;
  background-color: #121212;
  border: 2px solid var(--extra-color);
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  font-family: var(--hff);
  padding: 0 15px;
  line-height: 46px;
  color: #eee;
}
.offset_fn_footer .subscribe_form input[type='text']:focus {
  background-color: #121212;
  border-color: #777;
}
.offset_fn_footer .subscribe_form a {
  flex: none;
}
.offset_fn_footer .offset_fn_social_list ul {
  justify-content: center;
}
.offset_fn_footer .footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 31px 0 28px;
}
.offset_fn_footer .fb_in {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}
.offset_fn_footer .fb_left p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: var(--hff);
}
.offset_fn_footer .fb_left p a {
  text-decoration: none;
  color: #eee;
}
.offset_fn_footer .fb_left p a:hover {
  color: #fff;
}
.offset_fn_footer .fb_right ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  margin-left: -30px;
}
.offset_fn_footer .fb_right li {
  padding-left: 30px;
  margin: 5px 0;
}
.offset_fn_footer .fb_right a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: var(--bc);
  font-family: var(--hff);
}
.offset_fn_footer .fb_right a:hover {
  color: var(--hc);
}
