html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -moz-text-rendering: optimizelegibility;
  text-rendering: optimizelegibility;
}

*, :after, :before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, body, h1, h2, h3, h4, h5, h6, ol, p, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  font-size: 18px;
  background: #FBFBFB;
  font-family: "Sequel Sans Body Text";
  font-weight: normal;
  color: #000;
}

input {
  outline: none;
}

a, button {
  outline: none !important;
}

a:active, a:visited, a:focus, a:hover, button:active, button:visited, button:focus, button:hover {
  text-decoration: none;
}

.wide {
  display: block;
  width: 100%;
}

.h1, .h2, .h3, h1, h2, h3 {
  font-family: "Sequel100Black-65";
  font-weight: 900;
}

.h4, .h5, .h6, h4, h5, h6 {
  font-family: "Sequel100Black-55";
  font-weight: 900;
}

.position-relative {
  position: relative;
}

.ov-h {
  overflow: hidden;
}

.theme-single-title {
  font-size: 60px;
  letter-spacing: -0.9px;
  color: #272626;
  font-family: "Sequel100Black-65";
  font-weight: 900;
  line-height: 65px;
}

p {
  font-size: 18px;
  line-height: 30px;
  color: #272626;
  letter-spacing: -0.45px;
}

p strong {
  font-weight: 600;
}

.btn {
  background-color: #C51D2D;
  min-width: 250px;
  letter-spacing: -0.45px;
  color: #F1F1F1;
  font-size: 18px;
  border-radius: 0;
  border: 0;
  padding: 17.5px 15px;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.btn .btn-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn .icon {
  margin-left: 15px;
  position: relative;
  left: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.btn:hover {
  background-color: #990C19;
  color: #F1F1F1;
}

.btn:hover .icon {
  left: 10px;
}

.btn.btn-hide-show .btn-spl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn.btn-hide-show .btn-spl .multi-btn {
  height: 27px;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.btn.btn-hide-show .btn-spl .multi-btn span {
  display: block;
  width: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 1;
}

.btn.btn-hide-show .btn-spl .multi-btn span:first-child {
  position: absolute;
}

.btn.btn-hide-show .btn-spl .multi-btn span:last-child {
  opacity: 0;
}

.btn.btn-hide-show .btn-spl .icon-area .icon {
  margin-left: 15px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
  left: 0;
}

.btn.btn-hide-show:hover .multi-btn span {
  color: #F1F1F1;
}

.btn.btn-hide-show:hover .multi-btn span:first-child {
  opacity: 0;
}

.btn.btn-hide-show:hover .multi-btn span:last-child {
  opacity: 1;
}

.btn.btn-hide-show:hover .icon-area .icon {
  display: inline-block;
  left: 10px;
}

button.btn {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}

button.btn::after {
  content: "\e900";
  font-family: "icomoon";
  position: absolute;
  font-size: 18px;
  margin-left: 10px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

button.btn:hover::after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.navbar-dark {
  background-color: transparent !important;
  padding: 0;
}

.navbar-dark .navbar-brand {
  max-width: 170px;
  margin-right: 80px;
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #F1F1F1;
  margin: 48px 0;
  padding: 10px 0;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  height: 2px;
  width: 0;
  background-color: #F1F1F1;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
  width: 25px;
  opacity: 1;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link::after {
  width: 25px;
  opacity: 1;
}

.navbar-dark .navbar-nav .nav-item:last-child .nav-link {
  position: relative;
}

.navbar-dark .navbar-nav .nav-item:last-child .nav-link::before {
  content: "\e900";
  font-family: "icomoon";
  position: absolute;
  right: -25px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.navbar-dark .navbar-nav .nav-item:last-child .nav-link::after {
  content: none;
}

.navbar-dark .navbar-nav .nav-item:last-child .nav-link:hover::before {
  right: -35px;
}

.navbar-dark .navbar-nav .nav-item:last-child.active {
  background-color: #000;
}

.navbar-dark .navbar-nav .nav-item:last-child.active::after {
  background-color: #000;
}

.navbar-nav li:nth-child(5) {
  margin-left: auto;
}

.navbar-nav li + li {
  margin-left: 45px;
}

.navbar-nav li:last-child {
  background-color: #C51D2D;
  padding-left: 52px;
  position: relative;
}

.navbar-nav li:last-child a {
  position: relative;
  z-index: 1;
}

.navbar-nav li:last-child::after {
  content: '';
  background: #C51D2D;
  width: 62.5rem;
  position: absolute;
  right: auto;
  bottom: 0;
  top: 0;
}

.smart-scroll {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.smart-scroll.darkHeader {
  background-color: #1d1d1d;
}

@media (min-width: 1200px) {
  .smart-scroll.darkHeader .navbar-dark .navbar-nav .nav-link {
    margin: 28px 0;
  }
}

.scrolled-down {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.extendGradient::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#fff)) 0% 0% no-repeat;
  background: linear-gradient(180deg, #000 0%, #fff 100%) 0% 0% no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.59;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 450px;
}

.landing-header {
  background: url(../images/banner-bg.jpg) no-repeat;
  background-size: cover;
  height: 100vh;
  padding-top: 140px;
  position: relative;
  margin-bottom: 120px;
}

.landing-header::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#fff)) 0% 0% no-repeat;
  background: linear-gradient(180deg, #000 0%, #fff 100%) 0% 0% no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.59;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 450px;
}

.landing-header .detail-banner {
  max-width: 1000px;
  margin: 0 auto;
}

.landing-header .detail-banner .header-big-title {
  font-size: 132px;
  letter-spacing: -1.98px;
  color: #fff;
  text-align: center;
  line-height: 147px;
}

.landing-header .click-banner {
  margin: 45px auto 0 auto;
  display: table;
}

.media-inner {
  margin: 60px auto 0 auto;
  display: table;
}

.media-inner .media .media-body {
  margin-left: 55px;
}

.media-inner .media .media-body p {
  max-width: 390px;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.4px;
  color: #F1F1F1;
}

.close-home .theme-single-title {
  margin-bottom: 30px;
}

.close-home p {
  max-width: 650px;
}

.close-home .marka-left img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.red-title-26 {
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0.52px;
  color: #C51D2D;
  font-family: "Sequel100Black-55";
  font-weight: 900;
  margin-bottom: 35px;
}

.partial-box {
  margin-top: 80px;
}

.partial-box .box-inner {
  padding: 60px 50px;
  background-color: #fff;
}

.partial-box .box-inner .under-line {
  padding-bottom: 45px;
  position: relative;
}

.partial-box .box-inner .under-line::after {
  content: '';
  height: 4px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #C51D2D;
}

.partial-box .box-inner .under-line p {
  max-width: 300px;
}

.flow-left {
  position: relative;
  overflow: hidden;
}

.flow-left .promo-slider--container {
  padding-left: 15px;
}

.flow-left .content-max {
  max-width: 440px;
}

.info-half {
  padding: 80px 0 80px 110px;
}

.info-half .common-title {
  margin-bottom: 65px;
}

.info-half .theme-single-title {
  color: #C51D2D;
}

.info-half .theme-single-title .push-cs-right {
  margin-left: 25%;
}

.info-half .content-space {
  margin-top: 50px;
}

.info-half .content-space .anchor-area {
  margin-top: 65px;
}

.common-title {
  position: relative;
}

.common-title span {
  font-size: 20px;
  line-height: normal;
  letter-spacing: 4.4px;
  color: #000;
  font-family: "Sequel100Black-55";
  font-weight: 900;
  background-color: #FBFBFB;
  text-transform: uppercase;
}

.common-title.line-left-throw::before {
  content: '';
  height: 1px;
  width: 100%;
  background-color: #000;
  position: absolute;
  left: calc(-100% - 50px);
  top: 18px;
  z-index: -1;
}

.common-title.line-right-throw span {
  padding-right: 50px;
}

.common-title.line-right-throw::before {
  content: '';
  height: 1px;
  width: 150%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 18px;
  z-index: -1;
}

.common-title.line-right-throw.line-dark span {
  background-color: #141414;
  color: #fff;
  position: relative;
  z-index: 1;
}

.common-title.line-right-throw.line-dark::before {
  background-color: #fff;
  z-index: 0;
}

.our-porcess {
  padding-top: 60px;
}

.our-porcess .common-title {
  margin-bottom: 40px;
}

.our-porcess .img-floting-right {
  text-align: right;
  margin: -125px 0 100px 0;
}

.our-porcess .img-floting-right .fix-img {
  width: 515px;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-porcess .writen-area {
  padding: 0 0 80px 90px;
}

.our-porcess .writen-area p {
  max-width: 370px;
  color: #000;
}

.our-porcess .writen-area .anchor-area {
  margin-top: 70px;
}

.our-porcess .horizontal-dots {
  position: relative;
}

.our-porcess .horizontal-dots::after {
  content: '';
  height: 100%;
  width: 3px;
  background: url(../images/border.png);
  background-repeat: repeat-y;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: contain;
}

.our-porcess .sprad-bild {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.our-porcess .sprad-bild .img-lft-top {
  margin-top: -70px;
}

.our-porcess .sprad-bild .img-lft-top .tp-one {
  width: 200px;
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-porcess .sprad-bild .img-lft-bottom {
  padding-left: 100px;
}

.our-porcess .sprad-bild .img-lft-bottom .tp-bottom {
  width: 345px;
  height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-porcess .over-lap {
  position: absolute;
  top: 31%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 48%;
  width: 100%;
}

.our-porcess .over-lap .center-title {
  font-family: "Sequel100Black-65";
  font-weight: 900;
  font-size: 72px;
  line-height: 84px;
  letter-spacing: -1.08px;
  color: #C51D2D;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.our-porcess .over-lap .center-title::before {
  content: '';
  background-color: #FBFBFB;
  height: 140%;
  width: 200px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.serve-sect {
  background: url(../images/gred-center.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 0 120px;
  position: relative;
}

.serve-sect::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(transparent)) 0% 0% no-repeat;
  background: linear-gradient(180deg, #FBFBFB 0%, transparent 100%) 0% 0% no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.serve-sect .theme-single-title {
  color: #000;
  margin-bottom: 75px;
}

.serve-sect .card-serve .card-row .card-column:nth-child(2) {
  padding-top: 80px;
}

.serve-sect .card-serve .card {
  border-radius: 0;
  border: 0;
  border-bottom: 4px solid #C51D2D;
  overflow: hidden;
}

.serve-sect .card-serve .card .card-body {
  padding: 75px 70px;
}

.serve-sect .card-serve .card .card-body .card-title {
  margin: 0 0 60px 0;
  padding: 0 0 60px 0;
  position: relative;
}

.serve-sect .card-serve .card .card-body .card-title::after {
  content: '';
  background: url(../images/hr-line.png);
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  height: 3px;
  width: calc(100% + 70px);
  bottom: 0;
}

.serve-sect .card-serve .card .card-body .card-title .serve-title {
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0.72px;
  color: #C51D2D;
}

.serve-sect .card-serve .card .card-body .card-content p {
  max-width: 270px;
}

.slider-gl-dots .slider-gl {
  overflow: hidden;
  background: #141414;
  padding: 124px 0 0;
}

.slider-gl-dots .slider-gl .slick-slider-container .slick-list {
  margin: 0 -50px;
  padding-right: 360px;
}

.slider-gl-dots .slider-gl .slick-slider-container .slick-list .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slider-gl-dots .slider-gl .slick-slider-container .items-slick-inner {
  margin: 0 50px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: inherit !important;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  margin-top: 70px;
  outline: none;
}

.slider-gl-dots .slider-gl .slick-slider-container .items-slick-inner.slick-active {
  margin-top: 0px;
}

.slider-gl-dots .slider-gl .slick-slider-container .items-slick-inner img {
  max-width: 100%;
  height: 726px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.slider-gl-dots .slider-gl .half-container-area {
  padding-top: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.slider-gl-dots .slider-gl .half-container-area .common-title span {
  font-size: 18px;
  letter-spacing: 3.96px;
  padding-right: 20px;
}

.slider-gl-dots .slider-gl .half-container-area .title-slider {
  margin: 50px 0 70px;
}

.slider-gl-dots .slider-gl .half-container-area .title-slider .h1 {
  font-size: 88px;
  color: #fff;
  line-height: 88px;
  letter-spacing: -1.32px;
}

.slider-gl-dots .slider-gl .half-container-area .title-slider .h1 .outer-title {
  padding-left: 25%;
}

.slider-gl-dots .slider-gl .half-container-area .infoslider {
  max-width: 320px;
}

.slider-gl-dots .slider-gl .half-container-area .infoslider p {
  color: #EEEEEE;
  line-height: 34px;
}

.slider-gl-dots .slider-gl .half-container-area .button-first {
  margin-top: auto;
}

.slider-gl-dots .dots-and-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider-gl-dots .dots-and-arrows .slider-dots-spawn .slick-dots {
  list-style: none;
}

.slider-gl-dots .dots-and-arrows .slider-dots-spawn .slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 30px;
}

.slider-gl-dots .dots-and-arrows .slider-dots-spawn .slick-dots li a {
  color: #000;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.4px;
  display: block;
  cursor: pointer;
}

.slider-gl-dots .dots-and-arrows .slider-dots-spawn .slick-dots li + li {
  margin-left: 20px;
}

.slider-gl-dots .dots-and-arrows .slider-dots-spawn .slick-dots li.slick-active {
  width: 140px;
}

.slider-gl-dots .dots-and-arrows .slider-dots-spawn .slick-dots li.slick-active a::after {
  content: "";
  width: 90px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.slider-gl-dots .dots-and-arrows .need-arrow-here {
  margin-left: 18px;
}

.slider-gl-dots .dots-and-arrows .need-arrow-here .slick-arrow {
  cursor: pointer;
}

.slider-gl-dots .dots-and-arrows .need-arrow-here .icon {
  font-size: 16px;
}

.slider-gl-dots .full-area {
  background-color: #FBFBFB;
  padding: 0;
  margin-top: -150px;
  min-height: 250px;
}

.anchor-area .link-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #C51D2D;
  font-size: 18px;
  letter-spacing: -0.45px;
}

.anchor-area .link-only .icon-anchore .icon {
  margin-left: 5px;
  position: relative;
  left: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.anchor-area .link-only:hover .icon-anchore .icon {
  left: 10px;
}

.content-both-side .info-half {
  padding: 80px 110px 80px 0;
}

.content-both-side .theme-single-title .push-cs-right {
  margin-left: 19%;
}

.content-both-side .content-space p {
  max-width: 490px;
}

.custom-slider {
  position: relative;
  overflow: hidden;
  background-color: #313131;
  height: calc(100vh + 100px);
}

.custom-slider .slider-info-ovelap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.custom-slider .cob-custom-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-slider .cob-custom-slider .slick-track .cob-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.custom-slider .cob-custom-slider .slick-track .cob-item img {
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 110px);
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-slider .thumb-container {
  position: relative;
  z-index: 3;
}

.custom-slider .thumb-container .relocating-area .thumb-dots-here {
  max-width: 320px;
  margin-left: auto;
  position: absolute;
  left: 0;
  right: 0;
  height: 170px;
}

.custom-slider .thumb-container .relocating-area .thumb-dots-here ul {
  list-style: none;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.custom-slider .thumb-container .relocating-area .thumb-dots-here ul::after {
  content: '';
  height: calc(100% - 60px);
  width: 1px;
  background-color: #F1F1F1;
  position: absolute;
  left: 10px;
  top: 30px;
}

.custom-slider .thumb-container .relocating-area .thumb-dots-here ul li {
  display: none;
}

.custom-slider .thumb-container .relocating-area .thumb-dots-here ul li a {
  font-size: 16px;
  color: #F1F1F1;
  letter-spacing: -0.4px;
}

.custom-slider .thumb-container .relocating-area .thumb-dots-here ul li.slick-active {
  display: block;
}

.custom-slider .thumb-container .relocating-area .thumb-dots-here ul li:last-child {
  display: block;
}

.custom-slider .thumb-container .relocating-area .thumb-main {
  max-width: 270px;
  height: 170px;
  margin: -55px 0 0 auto;
}

.custom-slider .thumb-container .relocating-area .thumb-main .cob-single-item {
  position: relative;
}

.custom-slider .thumb-container .relocating-area .thumb-main .cob-single-item .progressBar {
  width: 100%;
  height: 3px;
  background-color: white;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.custom-slider .thumb-container .relocating-area .thumb-main .cob-single-item .progressBar .inProgress {
  background-color: #990C19;
  height: 3px;
}

.custom-slider .slider-info-ovelap .custom-cabinat {
  margin-top: -100px;
}

.custom-slider .slider-info-ovelap .custom-cabinat .page-main-title {
  font-size: 110px;
  line-height: 122px;
  letter-spacing: -1.65px;
  color: #fff;
  margin-bottom: 60px;
}

.custom-slider .media-inner {
  margin: 0;
}

.custom-slider .media-inner .media img {
  max-width: 60px;
}

.custom-slider .media-inner .media .media-body {
  margin-left: 40px;
}

.cober_container-cut__left {
  max-width: calc(50vw + 430px);
  margin-left: calc(50vw - 430px);
  padding-right: 0;
}

@media (max-width: 1650px) {
  .cober_container-cut__left {
    max-width: calc(50vw + 250px);
    margin-left: calc(50vw - 230px);
  }
}

@media (max-width: 767px) {
  .cober_container-cut__left {
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}

.cober_container-cut__left .cober_single-column-cut__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

.cober_container-cut__right {
  max-width: calc(50vw + 430px);
  margin-right: calc(50vw - 430px);
  padding-left: 0;
}

.cober_container-cut__right .cober_single-column-cut__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1650px) {
  .cober_container-cut__right {
    max-width: calc(50vw + 250px);
    margin-right: calc(50vw - 230px);
  }
}

@media (max-width: 1199px) {
  .cober_container-cut__right {
    max-width: 100%;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.anim-section {
  padding: 120px 0;
}

@media (min-width: 1200px) {
  .anim-section .custom__col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    max-width: 28%;
  }
}

.anim-section .anim-part .anim-container {
  position: absolute;
  right: -140px;
  top: 0;
  overflow: hidden;
}

.anim-section .anim-part .anim-container img {
  width: 100%;
  max-width: 250px;
  height: 302px;
  -o-object-fit: cover;
     object-fit: cover;
}

.anim-section .anim-part .in-detail-anim {
  margin: 100px 0 0;
  max-width: 350px;
}

.anim-section .anim-part .in-detail-anim .anim-title {
  font-size: 48px;
  line-height: 48px;
  color: #C51D2D;
  margin-bottom: 35px;
}

.anim-section .anim-part.anim-left {
  margin-top: 100px;
}

.anim-section .anim-part.anim-left .common-title {
  overflow: hidden;
}

.anim-section .anim-part.anim-left .common-title.line-right-throw::before {
  width: 90%;
}

.anim-section .anim-part.anim-left .common-title span {
  padding-right: 20px;
}

.anim-section .anim-part.anim-right {
  margin: 0;
  padding-left: 20px;
}

.anim-section .anim-part.anim-right .in-detail-anim {
  margin: 0;
  max-width: 100%;
}

.anim-section .anim-part.anim-right .in-detail-anim .anim-title {
  font-size: 101px;
  line-height: 96px;
  letter-spacing: 0px;
}

.anim-section .anim-part.anim-right .in-detail-anim p {
  max-width: 380px;
  margin: 0 0 0 auto;
}

.bottom-anim {
  overflow: hidden;
}

.bottom-anim .main-title {
  margin-bottom: 100px;
}

.bottom-anim .main-title .common-title {
  overflow: hidden;
  margin-top: 20px;
}

.bottom-anim .main-title .common-title.line-right-throw span {
  padding-right: 20px;
}

.bottom-anim .main-title .title-middle-anim {
  max-width: 810px;
}

.bottom-anim .main-title .title-middle-anim h4 {
  font-size: 85px;
  line-height: 80px;
  letter-spacing: 1.7px;
  color: #C51D2D;
}

.bottom-anim .bild-infor .bild-child-left {
  padding-left: 100px;
}

.bottom-anim .bild-infor .bild-child-left img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.bottom-anim .bild-infor .info-child-center {
  max-width: 440px;
  padding-left: 110px;
  display: inline-block;
}

.bottom-anim .side-bg-bild .slid-animation-cob {
  position: absolute;
  right: 290px;
  z-index: 1;
  top: 120px;
  overflow: hidden;
}

.bottom-anim .side-bg-bild .slid-animation-cob img {
  max-width: 225px;
  width: 100%;
  height: 295px;
  -o-object-fit: cover;
     object-fit: cover;
}

.bottom-anim .side-bg-bild .corner-image {
  position: absolute;
  right: -260px;
  top: 0;
  bottom: 0;
  height: 100%;
}

.bottom-anim .side-bg-bild .corner-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 600px;
}

.ft-upper_card .info-card-left {
  padding: 90px 100px;
  height: 100%;
}

.ft-upper_card .info-card-left .bt-title-card {
  font-size: 48px;
  letter-spacing: -0.72px;
  color: #fff;
  margin-bottom: 35px;
}

.ft-upper_card .info-card-left p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 60px;
}

.ft-upper_card .bild-holder {
  height: 100%;
}

.work-collab {
  padding: 120px 0;
}

.work-collab .single-cob-title {
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0.96px;
  color: #C51D2D;
}

.work-collab .cob-work-info {
  max-width: 570px;
}

.work-collab .cob-work-info p {
  line-height: 34px;
}

.craftsmanship .half-right {
  height: 100vh;
  background-color: #313131;
  overflow: hidden;
  position: relative;
}

.craftsmanship .half-right::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#fff)) 0% 0% no-repeat;
  background: linear-gradient(180deg, #000 0%, #fff 100%) 0% 0% no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.59;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 450px;
  z-index: 1;
}

.craftsmanship .half-right .craft-bild-holder {
  padding-right: 100px;
}

.craftsmanship .half-right .craft-bild-holder img {
  max-width: 100%;
  width: 100%;
  height: calc(100vh - 100px);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.67;
}

.craftsmanship .half-right .modern-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.craftsmanship .half-right .modern-area .left-align-area {
  padding-top: 50px;
}

.craftsmanship .half-right .modern-area .left-align-area .craft-main-title {
  font-size: 132px;
  line-height: 147px;
  letter-spacing: -1.98px;
  color: #fff;
  display: table;
  width: calc(100% - 40px);
  margin-left: auto;
}

.craftsmanship .half-right .modern-area .left-align-area .info-hero {
  max-width: 380px;
  margin-left: auto;
  margin-top: 90px;
}

.craftsmanship .half-right .modern-area .left-align-area .info-hero p {
  color: #F1F1F1;
  letter-spacing: -0.4px;
  line-height: 27px;
}

.craftsmanship .content-both-side {
  padding-top: 120px;
}

.craftsmanship .content-both-side .theme-single-title .push-cs-right {
  margin-left: 28%;
}

.craftsmanship .content-both-side .content-space p {
  max-width: 400px;
}

.craftsmanship .content-both-side .push-image {
  padding-left: 50px;
}

.craftsmanship .kcma-test .inner-white {
  padding: 80px 0;
}

.craftsmanship .kcma-test .inner-white .certybox {
  max-width: 280px;
  margin: 0 auto;
}

.craftsmanship .kcma-test .inner-white .certybox img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.craftsmanship .kcma-test .inner-white .title-kcma {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.72px;
  color: #2E2E2E;
  margin-bottom: 25px;
}

.craftsmanship .kcma-test .inner-white .kcma-content p {
  max-width: 650px;
}

@media (min-width: 992px) {
  .craftsmanship .kcma-test .inner-white .kcma-content p {
    line-height: 34px;
  }
}

.craftsmanship .slider-gl-dots .slider-gl .half-container-area .title-slider .h1 .outer-title-left {
  margin-left: -15%;
}

.craftsmanship .upper-footer .background-main {
  background-color: #000;
}

.craftsmanship .flow-left .hardware-slider__text .info-half .title-uneven .theme-single-title {
  font-size: 90px;
  line-height: 90px;
  letter-spacing: -1.35px;
}

.craftsmanship .flow-left .hardware-slider__text .info-half .title-uneven .theme-single-title .out-word {
  margin-left: -40px;
}

.craftsmanship .flow-left .hardware-slider__text .info-half .title-uneven .theme-single-title .push-pr-right {
  position: relative;
  right: -90px;
}

.craftsmanship .flow-left .hardware-slider__text .info-half .content-space p {
  max-width: 540px;
}

.craftsmanship .big-font-changes .info-half {
  padding: 80px 0;
}

.craftsmanship .big-font-changes .info-half .theme-single-title {
  font-size: 126px;
  line-height: 126px;
  letter-spacing: -1.89px;
}

.craftsmanship .big-font-changes .info-half .theme-single-title .push-right {
  margin-left: 13%;
}

.craftsmanship .big-font-changes .info-half .content-space {
  max-width: 370px;
  margin-left: auto;
}

.craftsmanship .big-font-changes .info-half .content-space p {
  max-width: 100%;
}

.freamless-doors .all-door-images {
  position: relative;
  margin-left: -30px;
}

.freamless-doors .all-door-images .inner-door:first-child {
  position: absolute;
  z-index: -1;
  right: 45px;
  top: 20px;
}

.freamless-doors .all-door-images .inner-door:first-child img {
  max-width: 150px;
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}

.freamless-doors .all-door-images .inner-door:nth-child(2) img {
  max-width: 200px;
  width: 100%;
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
}

.freamless-doors .all-door-images .inner-door:last-child {
  position: absolute;
  top: 40px;
  left: -10px;
}

.freamless-doors .all-door-images .inner-door:last-child img {
  max-width: 155px;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

.freamless-doors .middle-writen {
  position: relative;
  z-index: 1;
}

.freamless-doors .title-door .ttl-door {
  font-size: 122px;
  line-height: 122px;
  letter-spacing: -1.83px;
  color: #C51D2D;
}

.freamless-doors .title-door .ttl-door:last-child {
  white-space: nowrap;
}

.freamless-doors .right-img-bunch {
  position: relative;
  padding-left: 45px;
}

.freamless-doors .right-img-bunch img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.freamless-doors .right-img-bunch .bild-rit-door {
  position: absolute;
  top: 0px;
  right: 100px;
}

.freamless-doors .right-img-bunch .bild-rit-door img {
  max-width: 220px;
  height: 385px;
}

.freamless-doors .beneath-content .cont-bild {
  padding-right: 80px;
}

.freamless-doors .beneath-content .cont-bild img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.freamless-doors .beneath-content .cont-info {
  max-width: 450px;
}

.anim-wrapper {
  position: relative;
  height: 100%;
}

.anim-wrapper .anim-object {
  position: absolute;
  left: 0;
  z-index: 1;
}

.anim-wrapper .anim-object img {
  max-width: 220px;
  height: 315px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-slider {
  height: 100vh;
  background-color: #313131;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-slider .process-big-title {
  font-size: 106px;
  line-height: 117px;
  letter-spacing: -1.59px;
  color: #fff;
}

.header-slider .slider-merge-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header-slider .slider-merge-center .vertical-main-slider {
  max-width: 590px;
}

.header-slider .slider-merge-center .vertical-main-slider .vr-item {
  height: auto;
  outline: 0;
  border: 0;
}

.header-slider .slider-merge-center .vertical-main-slider .vr-item img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
}

.header-slider .slider-merge-center .vertical-numb-slider .slick-list {
  padding: 60px 0 !important;
}

.header-slider .slider-merge-center .vertical-numb-slider .vr-bunch {
  padding: 24px 15px;
}

.header-slider .slider-merge-center .vertical-numb-slider .vr-bunch ul {
  display: table;
  margin: 0 auto;
}

.header-slider .slider-merge-center .vertical-numb-slider .vr-bunch ul li {
  margin: 0;
}

.header-slider .slider-merge-center .vertical-numb-slider .vr-bunch ul li .arrow-bunch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
}

.header-slider .slider-merge-center .vertical-numb-slider .vr-bunch ul li .arrow-bunch .icon {
  color: #fff;
  font-size: 14px;
  margin-right: 20px;
}

.header-slider .slider-merge-center .vertical-numb-slider .vr-bunch ul li .item-name {
  margin-right: 25px;
  position: relative;
  top: -4px;
  min-width: 205px;
  text-align: center;
}

.header-slider .slider-merge-center .vertical-numb-slider .nmb-item {
  outline: 0;
  border: 0;
  margin: 10px 0;
}

.header-slider .slider-merge-center .vertical-numb-slider .nmb-item .item-name {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: -0.42px;
  color: #fff;
  font-family: "Sequel100Black-65";
}

.header-slider .slider-merge-center .vertical-numb-slider .nmb-item span {
  width: 100%;
  text-align: right;
  display: block;
  font-size: 18px;
  letter-spacing: -0.45px;
  color: #8898AA;
}

.header-slider .slider-merge-center .vertical-numb-slider .nmb-item:last-child span {
  margin-bottom: 0;
}

.header-slider .slider-merge-center .vertical-numb-slider .nmb-item.slick-center.slick-current {
  background-color: #C51D2D;
}

.header-slider .slider-merge-center .vertical-numb-slider .nmb-item.slick-center.slick-current .arrow-bunch {
  opacity: 1;
  visibility: visible;
}

.header-slider .slider-merge-center .vertical-numb-slider .nmb-item.slick-center.slick-current span {
  color: #fff;
}

.header-slider .slider-merge-center .side-slick-sl {
  position: absolute;
  right: 0;
  width: 370px;
}

.process .upper-footer .bg-pr-kitchen .background-main {
  background-color: #2E2E2E;
}

.process .upper-footer .bg-pr-kitchen .background-main img {
  opacity: 0.58;
}

@media (min-width: 991px) {
  .process .upper-footer .kitchen-position {
    margin: 0 auto;
  }
}

body, html {
  height: auto;
}

.panel {
  height: 100vh;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  overflow: hidden;
}

.panel .box-child-number {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: right;
}

.panel .box-child-number .number-call {
  font-size: 797px;
  line-height: 800px;
  font-family: "Sequel 100 Wide";
  font-weight: normal;
  letter-spacing: -11.96px;
  color: rgba(46, 46, 46, 0.07);
}

.panel .box-child .title-infor-box .scroll-title {
  font-size: 145px;
  line-height: 183px;
  letter-spacing: -2.17px;
  color: #2E2E2E;
  margin-bottom: 80px;
}

.panel .box-child .title-infor-box .box-inforamtion {
  max-width: 380px;
  margin: 0 auto 0 auto;
}

.scroller-inner {
  position: relative;
}

.scroller-inner .scroller-number {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 9;
  pointer-events: none;
}

.scroller-inner .scroller-number ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.scroller-inner .scroller-number ul li a {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.45px;
  color: #8898AA;
  pointer-events: auto;
  cursor: pointer;
}

.scroller-inner .scroller-number ul li + li {
  margin-top: 50px;
}

.scroller-inner.activate .scroller-number {
  opacity: 1;
}

.scroller-inner .slick-slide {
  border: 0;
  outline: none;
}

.slid-panels .pin-spacer:last-child .sub-slick-items {
  position: relative !important;
  -webkit-transform: none !important;
          transform: none !important;
}

.inspiration-header {
  background-color: #313131;
  padding-top: 220px;
  position: relative;
}

.inspiration-header::after {
  content: '';
  background-color: #FBFBFB;
  height: 130px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
}

.inspiration-header .bt-header-space {
  margin-bottom: 135px;
}

.inspiration-header .bt-header-space .maxi-container {
  max-width: 1200px;
  margin: 0 auto;
}

.inspiration-header .bt-header-space .maxi-container .single-inspi-title {
  font-size: 117px;
  line-height: 117px;
  letter-spacing: -1.75px;
  color: #fff;
}

.inspiration-header .bt-header-space .inspiration-info p {
  color: #F1F1F1;
  letter-spacing: -0.4px;
  font-size: 16px;
  line-height: 27px;
  max-width: 390px;
  margin: 75px auto 0 auto;
}

.inspiration-header .flex-area .box-common .bild-common img {
  height: 465px;
}

.multi-common .flex-area .box-common .bild-common img {
  height: 465px;
}

.trio-common .flex-area .vertical-column .box-common .bild-common img {
  height: 355px;
}

.box-common .bild-common {
  margin-bottom: 20px;
  overflow: hidden;
}

.box-common .bild-common img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.box-common .id-common .small-common span {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 3.96px;
  color: #000;
  font-family: "Sequel100Black-55";
}

.box-common .id-common .red-titl-common {
  font-size: 26px;
  line-height: 30px;
  color: #C51D2D;
  letter-spacing: -0.39px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
  margin-bottom: 5px;
}

.box-common .id-common .red-titl-common::after {
  content: "\e900";
  font-family: "icomoon";
  position: absolute;
  font-size: 18px;
  top: 4px;
  margin-left: 5px;
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.equal-space {
  margin-bottom: 65px;
}

@media (max-width: 767px) {
  .equal-space .custom-row-area .custom-gapping-column {
    margin-bottom: 65px;
  }
  .equal-space .custom-row-area .custom-gapping-column .box-common {
    height: auto;
  }
  .equal-space .custom-row-area .custom-gapping-column:last-child {
    margin-bottom: 0;
  }
  .equal-space .custom-row-area .custom-gapping-column .vertical-row .vertical-column {
    margin: 0 0 65px 0;
  }
  .equal-space .custom-row-area .custom-gapping-column .vertical-row .vertical-column .box-common {
    height: auto;
  }
  .equal-space .custom-row-area .custom-gapping-column .vertical-row .vertical-column:last-child {
    margin-bottom: 0;
  }
}

.equal-space.trio-common .vertical-row .vertical-column {
  margin-bottom: 50px;
}

.equal-space.trio-common .vertical-row .vertical-column:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .equal-space.trio-common .vertical-row .vertical-column {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .equal-space.trio-common .vertical-row {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .equal-space.trio-common .vertical-row {
    margin-top: 0;
  }
}

.flex-area {
  position: relative;
  z-index: 1;
}

@media (min-width: 1360px) {
  .flex-area .custom-row-area {
    margin: 0 -42px;
  }
}

@media (min-width: 1360px) {
  .flex-area .custom-row-area .custom-gapping-column {
    padding: 0 42px;
  }
}

.flex-area a:hover .box-common .red-titl-common::after {
  opacity: 1;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.flex-area a:hover .bild-common img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-common a:hover .box-common img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-common a:hover .box-common .red-titl-common::after {
  opacity: 1;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.trio-common .box-common {
  height: 100%;
}

.trio-common .box-common .bild-common {
  height: calc(100% - 71px);
}

.trio-common .box-common .big-bild-common {
  height: 100%;
}

.ameb-footer.upper-footer .bg-pr-kitchen .background-main {
  background-color: #000;
}

.ameb-footer.upper-footer .bg-pr-kitchen .background-main img {
  opacity: 0.82;
}

.ameb-footer.upper-footer .bg-pr-kitchen .background-main .info-flex .more-info p {
  max-width: 450px;
}

.details-main-content {
  padding: 120px 0;
}

.details-main-content .flex-area .custom-row-area .custom-gapping-column {
  margin-bottom: 90px;
}

.detail-global .box-common {
  display: table;
  margin: 0 auto;
}

.detail-global .box-common .details-common {
  max-width: 800px;
  margin: 0 auto;
}

.detail-global .box-common .details-common p {
  line-height: 34px;
  margin-bottom: 30px;
  color: #000;
}

.detail-global .box-common .details-common p:last-child {
  margin-bottom: 0;
}

.dark-titl-common {
  font-size: 48px;
  line-height: 84px;
  letter-spacing: -0.72px;
  color: #2E2E2E;
}

.dark-titl-common.new-title-size {
  font-size: 81px;
  line-height: 100px;
  letter-spacing: -1.22px;
}

.box-common .id-common .small-common.small-new-title span {
  font-size: 14px;
  letter-spacing: 3.08px;
  line-height: 60px;
}

.similar-items .title-similar .dark-titl-common {
  margin-bottom: 60px;
}

.similar-items a:hover .box-common .red-titl-common::after {
  opacity: 1;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.similar-items a:hover .bild-common img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.extra-bilds-area .bild-common {
  margin: 0;
}

.extra-bilds-area .bild-common img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: 780px;
}

.details-main-content .extra-bilds-area .flex-area {
  border-bottom: 1px solid #D9E3EE;
  margin-bottom: 100px;
  padding-bottom: 40px;
}

.career .inspiration-header .bt-header-space .inspiration-info p {
  max-width: 450px;
}

.career .inspiration-header::after {
  content: none;
}

.career .theme-single-title {
  color: #C51D2D;
}

.career .common-title {
  margin-bottom: 40px;
}

.career .common-title span {
  background-color: transparent;
}

.career .max-1300 {
  max-width: 1300px;
  margin: 0 auto;
}

.career .card-information-caree {
  max-width: 550px;
}

.career .card-information-caree p {
  color: #000;
}

.career .card-information-caree .anchor-area {
  margin-top: 25px;
}

.career .wall-group-info {
  position: relative;
  background-color: #F4F5F8;
  padding-bottom: 40px;
}

.career .wall-group-info::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  background-color: #313131;
  height: 450px;
  z-index: 0;
}

.career .wall-group-info .job-listing-ul {
  position: relative;
  z-index: 1;
}

.career .wall-group-info .job-listing-ul .job-listing-items {
  padding: 78px 30px;
  margin-bottom: 35px;
}

@media (min-width: 1360px) {
  .custom-row__70 {
    margin: 0 -35px;
  }
  .custom-row__70 .custom-column__70 {
    padding: 0 35px;
  }
}

.contact-section .wrapper-contact {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.contact-section .wrapper-contact .wrapper-gsap {
  max-width: 1250px;
}

.contact-section .wrapper-contact .wrapper-gsap img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 843px;
}

.contact-section .cotnact-title h1 {
  font-size: 161px;
  line-height: 150px;
  letter-spacing: -2.42px;
  color: #fff;
}

.canva-form {
  padding: 50px;
  max-width: 630px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.canva-form p {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 45px;
}

.canva-form .inner-form .button-parent {
  margin-top: 25px;
}

.canva-form .inner-form .button-parent .loader-ic {
  display: inline-block;
}

.canva-form .inner-form .success {
  margin-bottom: 0;
  color: #4cd137;
  text-align: center;
}

.canva-form .inner-form .fail {
  margin-bottom: 0;
  color: #e84118;
  text-align: center;
}

label {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -0.45px;
  color: #4B4C53;
}

.form-control {
  background-color: #EFF2F5;
  border: 0;
  border-radius: 0;
  height: 52px;
  padding: 10px 20px;
}

.form-control:focus, .form-control:hover, .form-control:active {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #EFF2F5;
}

.contact-detail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-detail ul li {
  margin-right: 0 !important;
}

.contact-detail ul li + li {
  margin-left: 90px;
}

.contact-detail .title-contact {
  font-size: 24px;
  line-height: 60px;
  letter-spacing: -0.36px;
  color: #fff;
  font-family: "Sequel100Black-65";
}

.contact-detail .contact-info a {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.4px;
  color: #F1F1F1;
  border-bottom: 1px solid transparent;
}

.contact-detail .contact-info a:hover {
  color: #F1F1F1;
  border-bottom: 1px solid #F1F1F1;
}

.contact-bottom {
  margin-top: -120px;
  padding-bottom: 160px;
}

.form-control::-webkit-input-placeholder {
  color: #8898AA;
  font-size: 18px;
  letter-spacing: -0.45px;
}

.form-control:-ms-input-placeholder {
  color: #8898AA;
  font-size: 18px;
  letter-spacing: -0.45px;
}

.form-control::-ms-input-placeholder {
  color: #8898AA;
  font-size: 18px;
  letter-spacing: -0.45px;
}

.form-control::placeholder {
  color: #8898AA;
  font-size: 18px;
  letter-spacing: -0.45px;
}

.more-creer-details {
  margin-top: 115px;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #D9E3EE;
}

.more-creer-details .what-you-do h4, .more-creer-details .what-about-you h4 {
  font-family: "Sequel100Black-65";
  margin-bottom: 30px;
}

.more-creer-details .what-you-do p, .more-creer-details .what-about-you p {
  margin-bottom: 40px;
  color: #000;
}

.more-creer-details .what-you-do {
  max-width: 495px;
}

.more-creer-details .what-you-do ul {
  padding-left: 50px;
}

.more-creer-details .what-about-you {
  max-width: 490px;
}

.apply-pr .custom-paragraph {
  max-width: 340px;
}

.apply-pr .custom-paragraph p {
  color: #000;
}

.apply-pr .inner-form {
  max-width: 600px;
}

.listing-custom ul {
  list-style: none;
}

.listing-custom ul li {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.45px;
  color: #000;
  padding-left: 15px;
}

.listing-custom ul li::before {
  content: "\e907";
  font-family: "icomoon";
  color: #C51D2D;
  text-indent: -15px;
  display: inline-block;
  font-size: 8px;
  position: relative;
  top: -2px;
}

.listing-custom ul li + li {
  margin-top: 20px;
}

.custom-file {
  height: 52px;
  margin: 0;
}

.custom-file .custom-file-label {
  margin: 0;
  height: 52px;
  line-height: 38px;
  background-color: #EFF2F5;
  border: 0;
  border-radius: 0;
  color: #8898AA;
  padding: 6px 20px;
}

.custom-file .custom-file-label span {
  font-family: "icomoon";
  margin-right: 10px;
  font-size: 22px;
  position: relative;
  top: 3px;
}

.custom-file .custom-file-label::after {
  content: none !important;
}

.custom-file .custom-file-input {
  height: 52px;
  margin: 0;
}

.custom-file .custom-file-input:active, .custom-file .custom-file-input:hover, .custom-file .custom-file-input:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gl-space {
  padding-bottom: 120px;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-dark-theme {
  background-color: #2E2E2E;
}

.bg-dark-ft {
  background-color: #313131;
}

.nav-push {
  padding-top: 150px;
}

.breadcrumb {
  background-color: transparent;
  padding-left: 0;
}

.breadcrumb li a {
  color: #F1F1F1;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.breadcrumb li a:hover {
  border-bottom: 1px solid #fff;
}

.breadcrumb li.active {
  color: #F1F1F1;
}

.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  color: #F1F1F1;
}

.upper-footer {
  margin: 90px 0;
}

.upper-footer .bg-pr-kitchen {
  width: 100%;
  height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.upper-footer .bg-pr-kitchen .background-main {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.upper-footer .bg-pr-kitchen .background-main .wrapper-gsap {
  height: 100%;
}

.upper-footer .bg-pr-kitchen .background-main img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}

.upper-footer .kitchen-position {
  display: table;
  margin: 0 100px 0px auto;
  position: relative;
  z-index: 2;
}

.upper-footer .kitchen-position .title-kitchen {
  color: #fff;
  margin-bottom: 50px;
}

.upper-footer .kitchen-position .info-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.upper-footer .kitchen-position .info-flex .more-info {
  margin-right: 60px;
}

.upper-footer .kitchen-position .info-flex .more-info p {
  color: #fff;
  max-width: 380px;
}

footer {
  background: #313131;
  overflow: hidden;
}

footer .main-ft {
  padding: 70px 0;
}

footer .main-ft .top-branding img {
  max-width: 60px;
}

footer .main-ft .ft-nav-itmes {
  margin: 60px 0;
}

footer .main-ft .ft-nav-itmes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

footer .main-ft .ft-nav-itmes ul li {
  display: inline-block;
  margin-right: 45px;
}

footer .main-ft .ft-nav-itmes ul li a {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.4px;
  color: #C7C7C7;
  position: relative;
  padding: 5px 0;
}

footer .main-ft .ft-nav-itmes ul li a::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #F1F1F1;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  bottom: 0;
}

footer .main-ft .ft-nav-itmes ul li a:hover::after {
  width: 25px;
}

footer .main-ft .ft-nav-itmes ul li.active a::after {
  width: 25px;
}

footer .main-ft .moto-line .title-moto {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.45px;
  color: #E2E2E2;
  text-align: center;
}

footer .sub-footer {
  text-align: center;
  border-top: 1px solid #707070;
  padding: 30px 0;
}

footer .sub-footer p {
  font-size: 14px;
  line-height: normal;
  color: #959595;
}

.hardware-slider--container .hardware-slider__slider-holder {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  max-width: 45%;
}

.hardware-slider--container .hardware-slider__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  max-width: 55%;
}

@media (min-width: 1200px) {
  .hardware-slider--container {
    max-width: calc(50vw + 600px);
    margin-right: calc(50vw - 600px);
  }
}

@media (min-width: 1650px) {
  .hardware-slider--container {
    max-width: calc(50vw + 700px);
    margin-right: calc(50vw - 700px);
    padding-left: 0;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.wrapper-gsap, .custom-reveal {
  position: relative;
}

.wrapper-gsap .cover, .wrapper-gsap .cover-custom, .custom-reveal .cover, .custom-reveal .cover-custom {
  position: absolute;
  width: 100%;
  background-color: #C51D2D;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.wrapper-gsap.to-theright .cover, .custom-reveal.to-theright .cover {
  left: auto;
}

.font-normal {
  font-style: normal;
  font-weight: normal;
}

.items-slick-inner .custom-reveal .cover-custom {
  height: 100%;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.slick-active .custom-reveal .cover-custom {
  height: 0;
}

.nav-off-canvas {
  background-color: #1d1d1d;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 200px;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 890px;
  width: calc(100% - 200px);
}

.nav-off-canvas .navbar-nav {
  display: table;
  width: auto !important;
  margin: 0 auto;
}

.nav-off-canvas .navbar-nav .nav-item .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: #F1F1F1;
  line-height: normal;
}

.nav-off-canvas .navbar-nav .nav-item:last-child {
  background-color: #1d1d1d;
  margin-top: 40px !important;
}

.nav-off-canvas .navbar-nav .nav-item:last-child .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-off-canvas .navbar-nav .nav-item:last-child .nav-link .icon {
  margin-left: 8px;
}

.nav-off-canvas .navbar-nav .nav-item:last-child::after {
  content: none;
}

.nav-off-canvas .navbar-nav .nav-item + .nav-item {
  margin-top: 5px;
}

.nav-off-canvas .navbar-nav .nav-item.active .nav-link {
  position: relative;
}

.nav-off-canvas .navbar-nav .nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  width: 25px;
  background-color: #F1F1F1;
  bottom: 0;
  height: 2px;
}

.off-canvas-brading {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  height: 110px;
  background-color: #1d1d1d;
}

.off-canvas-brading .d-flex {
  padding: 26px 15px;
}

.off-canvas-brading .branding-mobile img {
  max-width: 120px;
}

.off-canvas-brading .child-flex-nav .box-navigation {
  position: relative;
  padding-right: 8px;
}

.off-canvas-brading .child-flex-nav .box-navigation span {
  width: 40px;
  height: 2px;
  background-color: #fff;
  display: block;
}

.off-canvas-brading .child-flex-nav .box-navigation span + span {
  margin-top: 10px;
}

.off-canvas-brading .child-flex-nav .box-navigation span:nth-child(2) {
  width: 30px;
}

.off-canvas-brading::after {
  content: '';
  background-color: #C51D2D;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 85px;
  z-index: 0;
  height: 80px;
}

.off-canvas-brading .postion-navbar {
  position: relative;
  z-index: 1;
}

.footer-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: #1d1d1d;
  z-index: 9999;
}

main {
  overflow: hidden;
}

.text-black p {
  color: #000;
}

.slickListingNumber-call {
  height: 100%;
}

.slickListingNumber-call .slick-dots li a {
  opacity: 0.5;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.slickListingNumber-call .slick-dots li a:hover {
  opacity: 1;
}

.slickListingNumber-call .slick-dots li.slick-active a {
  opacity: 1;
}

.scroller-inner .slid-panels .slick-slide {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.scroller-inner .slid-panels .slick-active {
  opacity: 1 !important;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}

.scroller-inner .slid-panels .slick-cloned {
  opacity: 0.5;
}

.reveal-holder {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.reveal-block, .reveal-simple {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: #fff;
}

.reveal-block::before, .reveal-simple::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #C51D2D;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

[data-aos="reveal-left"] {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-aos="reveal-left"].aos-animate {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-aos="reveal-item"] {
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

[data-aos="reveal-item"].aos-animate {
  visibility: visible;
}

.slick-active .slidUp-text, .active-animation .slidUp-text {
  -webkit-animation: text-up 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
          animation: text-up 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 0;
}

.slidUp-text {
  opacity: 0;
}

.active .slidUp-text, .active .slidUp-text {
  -webkit-animation: text-up 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
          animation: text-up 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 0;
}

.reveal-simple {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  width: 100%;
}

.slick-active .reveal-simple, .active-animation .reveal-simple {
  width: 0;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.section.active .reveal-simple, .section.active .reveal-simple {
  width: 0;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.slidUp-text.delay-400 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.slidUp-text.delay-600 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.slidUp-text.delay-700 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

@-webkit-keyframes text-up {
  0% {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes text-up {
  0% {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.social-media li a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-media li a .icon {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #C51D2D;
  line-height: 40px;
  border-radius: 50px;
  margin-right: 10px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.social-media li a:hover .icon {
  color: #C51D2D;
  background-color: #fff;
}

.social-media li:not(:last-child) {
  margin-right: 30px;
}

.video-container .title-video {
  margin-bottom: 75px;
}

.video-container .title-video .theme-single-title {
  color: #C51D2D;
}

.video-container .main-video-canvas > .plyr {
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .video-container .main-video-canvas .plyr__control--overlaid {
    padding: 50px;
  }
  .video-container .main-video-canvas .plyr__control--overlaid svg {
    width: 25px;
    height: 25px;
  }
}

.section.fp-completely .wrapper-gsap .cover {
  width: 0 !important;
  -webkit-transition: 1s all;
  transition: 1s all;
}

#fp-nav.fp-right {
  left: 0;
  right: 0;
  margin: 0 auto;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

@media (min-width: 1200px) {
  #fp-nav.fp-right {
    max-width: 100%;
  }
}

@media (min-width: 1360px) {
  #fp-nav.fp-right {
    max-width: 1200px;
  }
}

@media (min-width: 1650px) {
  #fp-nav.fp-right {
    max-width: 1600px;
  }
}

#fp-nav.fp-right ul li {
  width: 35px;
  height: 35px;
  margin: 50px 0 0 auto;
}

#fp-nav.fp-right ul li a .fp-sr-only {
  width: 100%;
  height: 100%;
  clip: inherit;
  white-space: normal;
  display: block;
  background: transparent;
  margin: 0;
  text-align: center;
  line-height: 35px;
  left: 0;
  top: 0;
  color: #8898AA;
  pointer-events: auto;
}

#fp-nav.fp-right ul li a span {
  display: none;
}

#fp-nav.fp-right ul li .fp-tooltip.fp-right {
  display: none;
}

#fp-nav.fp-right ul li:hover a.active span {
  height: 100%;
  width: 100%;
  margin: 0;
  border-radius: 0;
  color: #000;
}

#fp-nav.fp-right ul li a.active span {
  color: #000;
}

#fp-nav.fp-right ul li:first-child, #fp-nav.fp-right ul li:last-child, #fp-nav.fp-right ul li:nth-last-child(2) {
  display: none;
}

.fp-viewing-1 #fp-nav, .fp-viewing-2 #fp-nav, .fp-viewing-3 #fp-nav, .fp-viewing-4 #fp-nav, .fp-viewing-5 #fp-nav {
  opacity: 1;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
/*# sourceMappingURL=app.css.map */