@import url(../fonts/fonts.css);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
html a {
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input,
input:focus {
  border: 0;
  outline: 0;
}

button:focus {
  outline: 0;
}

* {
  -webkit-locale: auto;
  white-space: normal;
}

html {
  background-color: #0d0d0d;
}

body {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

.hidden {
  overflow: hidden;
}

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

a:hover {
  color: #D78E5E;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

input,
button,
textarea {
  font-family: Raleway;
  font-size: 18px;
  font-weight: 400;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

b {
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.container,
.m-container {
  max-width: 1600px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.m-container {
  max-width: 1140px;
}

.clearfix {
  clear: both;
}

/*------------------------Grid Style------------------------*/
.d-block {
  display: block;
}

.d-grid {
  display: grid;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-none {
  display: none;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.col-lg-6,
.col-lg-3,
.col-lg-4 {
  grid-gap: 30px;
}

.gap-column {
  grid-column-gap: 30px;
}

.col-6,
.col-lg-6 {
  grid-template-columns: repeat(2, 1fr);
}

.col-lg-4 {
  grid-template-columns: repeat(3, 1fr);
}

.col-lg-3 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-0 {
  grid-gap: 0;
}

/*------------------------Indentation------------------------*/
.m-t-8 {
  margin-top: 8px !important;
}

.m-b-8 {
  margin-bottom: 8px !important;
}

.m-t-16 {
  margin-top: 16px !important;
}

.m-b-16 {
  margin-bottom: 16px !important;
}

.m-t-18 {
  margin-top: 18px !important;
}

.m-b-18 {
  margin-bottom: 18px !important;
}

.m-t-24 {
  margin-top: 24px !important;
}

.m-b-24 {
  margin-bottom: 24px !important;
}

.m-t-36 {
  margin-top: 36px !important;
}

.m-b-36 {
  margin-bottom: 36px !important;
}

.m-t-48 {
  margin-top: 48px !important;
}

.m-b-48 {
  margin-bottom: 48px !important;
}

/*------------------------Font & Text------------------------*/
.font-s-14 {
  font-size: 14px !important;
}

.font-s-16 {
  font-size: 16px !important;
}

.font-s-24 {
  font-size: 24px !important;
}

.font-s-36 {
  font-size: 36px !important;
}

.font-w-600 {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

@media (max-width: 996px) {
  .col-lg-6,
  .col-lg-12 {
    grid-template-columns: 1fr;
  }
  .col-md-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-md-12 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .col-md-6,
  .col-md-12 {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 12px;
  }
  .sm-d-none {
    display: none;
  }
}
/*------------------------Global------------------------*/
.title-box {
  font-size: 36px;
  line-height: 48px;
}

.text-white {
  color: #fff;
}

.speedbar {
  margin: 48px 0 24px;
  font-size: 16px;
}
.speedbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.speedbar ul li {
  position: relative;
  color: #D78E5E;
}
.speedbar ul li a {
  color: #0D0D0D;
}
.speedbar ul li a:hover {
  color: #D78E5E;
}
.speedbar ul li:not(a):after {
  content: "/";
  margin: 0 5px;
}
.speedbar ul li:not(a):last-child:after {
  content: "";
}

.title-page {
  font-weight: 600;
  font-size: 36px;
  line-height: 32px;
  margin-bottom: 47px;
  padding-bottom: 47px;
  border-bottom: 1px solid #000000;
}

.main {
  padding-bottom: 144px;
}

/*------------------------Preloader------------------------*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #FBFBFB;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  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;
}

.loaded {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  visibility: visible;
  opacity: 1;
}

/*------------------------Button------------------------*/
.btn {
  display: inline-block;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #0D0D0D;
  font-size: 16px;
  height: 48px;
  line-height: 48px;
  padding: 0 48px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn-border {
  border: 1px solid #D78E5E;
}
.btn-border:hover {
  color: #fff;
  background: #D78E5E;
}

.btn-white {
  color: #fff;
}

.wrapper {
  margin-top: 80px;
  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;
  min-height: calc(100vh - 80px);
}

/*------------------------Form------------------------*/
input {
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
  height: 28px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
input:hover, input:focus {
  border-bottom: 1px solid #D78E5E;
}

textarea {
  width: 100%;
  height: 243px;
  border: 1px solid #000;
  resize: none;
  padding: 16px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
textarea:hover, textarea:focus {
  border-color: #D78E5E;
}

label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  opacity: 0.75;
}

/*------------------------Navigation------------------------*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
.navbar .nav-info {
  position: relative;
  height: 80px;
  z-index: 1000;
}
.navbar .nav-info .logo {
  height: 20px;
}
.navbar .nav-info li {
  position: relative;
  font-size: 14px;
  margin: 12px 0;
  padding: 0 16px;
}
.navbar .nav-info li a {
  color: #000000;
  display: block;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
.navbar .nav-info li a.active, .navbar .nav-info li a:hover {
  color: #D78E5E;
}
.navbar .nav-info li.droplink {
  position: relative;
}
.navbar .nav-info li.droplink svg {
  position: relative;
  margin: 0 0 0 8px;
  top: -2px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .nav-info li.droplink .dropmenu {
  visibility: hidden;
  position: absolute;
  padding-top: 33px;
  top: -50px;
  left: 0;
  width: 105px;
  background: #fff;
  border: 1px solid #D78E5E;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.navbar .nav-info li.droplink .dropmenu li:hover a {
  color: #D78E5E;
}
.navbar .nav-info li.droplink.active > a {
  position: relative;
  z-index: 2;
  color: #D78E5E;
}
.navbar .nav-info li.droplink.active .dropmenu {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  top: -10px;
  visibility: visible;
}
.navbar .nav-info li.droplink.active svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.navbar .burger {
  margin-left: 40px;
  cursor: pointer;
  width: 24px;
  height: 16px;
}
.navbar .burger div {
  width: 24px;
  height: 1px;
  background: #0D0D0D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .burger div.line2 {
  margin: 6px 0;
}
.navbar .burger:hover div {
  background: #D78E5E;
}
.navbar .burger.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
      -ms-transform: rotate(-45deg) translate(-5px, 5px);
          transform: rotate(-45deg) translate(-5px, 5px);
}
.navbar .burger.toggle .line2 {
  opacity: 0;
}
.navbar .burger.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
      -ms-transform: rotate(45deg) translate(-5px, -5px);
          transform: rotate(45deg) translate(-5px, -5px);
}
.navbar .side-menu {
  position: fixed;
  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;
  text-align: center;
  left: 0;
  top: -100%;
  height: 100%;
  width: 100%;
  z-index: 999;
  padding: 107px 12px 48px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.navbar .side-menu.active {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.navbar .side-menu .side-wrap {
  height: 100vh;
  font-size: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar .side-menu .side-wrap .menu-list {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100vh - 200px);
}
.navbar .side-menu li {
  margin-bottom: 24px;
  line-height: 21px;
}
.navbar .side-menu li a {
  display: block;
  color: #0D0D0D;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .side-menu li a:hover {
  color: #D78E5E;
}
.navbar .side-menu .side-copyright {
  font-size: 14px;
  opacity: 0.75;
}
.navbar.navbar-black {
  background: #0D0D0D;
}
.navbar.navbar-black .side-menu {
  color: #fff;
  background: #0D0D0D;
}
.navbar.navbar-black .side-menu a {
  color: #fff;
}
.navbar.navbar-black .burger div {
  background: #fff;
}
.navbar.navbar-black .nav-info li.droplink .dropmenu {
  background: #0D0D0D;
}
.navbar.navbar-black .nav-info li a {
  color: #fff;
}

/*------------------------Section------------------------*/
.section {
  position: relative;
  padding: 144px 0;
}

.section-dark {
  background: #0D0D0D;
  color: rgba(255, 255, 255, 0.7);
}

/*------------------------Tabs------------------------*/
.tabs .tab-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  line-height: 19px;
}
.tabs .tab-head a {
  border-bottom: 1px solid #C4C4C4;
  padding: 8px;
  color: #0D0D0D;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
.tabs .tab-head a:hover:not(.active) {
  color: #D78E5E;
}
.tabs .tab-head a.active {
  font-weight: 500;
  border-bottom: 1px solid #D78E5E;
}
.tabs .tab-content {
  margin-top: 24px;
}
.tabs .tab-content .tab-item {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.tabs .tab-content .tab-item.active {
  opacity: 1;
  visibility: visible;
}
.tabs .tab-content .tab-item.animation-filter {
  opacity: 0;
  visibility: hidden;
}

/*------------------------Header------------------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 48px 0;
  background: #0D0D0D;
  min-height: calc(100vh - 250px);
}
.header:after {
  content: "";
  position: absolute;
  bottom: -136px;
  left: 0;
  width: 100%;
  height: 136px;
  background: url(../images/down_head.svg) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.header .title-box {
  color: #fff;
}
.header .header-item .header-info {
  max-width: 545px;
  width: 100%;
}
.header .head-anchor {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 2;
}

/*------------------------Products------------------------*/
.our-productions {
  margin-top: 86px;
}

.products-box .product-box-title {
  font-size: 24px;
  line-height: 32px;
  margin: 48px 0 24px;
}
.products-box .products-item {
  position: relative;
}
.products-box .products-item.hidden {
  display: none;
}
.products-box .products-item .poster {
  overflow: hidden;
}
.products-box .products-item .poster img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.products-box .products-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 175px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.products-box .products-item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  padding: 24px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.products-box .products-item .more {
  margin-left: 10px;
}
.products-box .products-item:hover .poster img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.products-box .products-item:hover .title {
  color: #D78E5E;
}

.product-remark {
  font-size: 16px;
  margin-top: 36px;
  line-height: 1.4;
}

.products-page {
  grid-row-gap: 48px;
}

/*------------------------Approach------------------------*/
.approach {
  background: #0D0D0D;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.approach:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/dot_pattern.png) repeat;
  z-index: 2;
}
.approach #video-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
.approach .approach-info {
  position: relative;
  z-index: 3;
}

/*------------------------About Us------------------------*/
.about-us {
  padding: 195px 0 149px;
}
.about-us .about-poster .poster {
  position: relative;
  margin: 0 auto;
  max-width: 412px;
}
.about-us .about-poster .poster .stamp {
  position: absolute;
  width: 157px;
  height: 160px;
  bottom: -41px;
  left: -71px;
}
.about-us .about-info {
  max-width: 540px;
}

/*------------------------Delivery------------------------*/
.delivery-box {
  overflow: hidden;
}
.delivery-box .delivery-info {
  max-width: 540px;
}
.delivery-box .delivery-info .delivery-item {
  margin-top: 51px;
}
.delivery-box .delivery-info .delivery-item .title {
  font-size: 18px;
  font-weight: 600;
}
.delivery-box .delivery-poster {
  background: url(../images/compass_bg.svg) no-repeat center;
  background-size: contain;
}
.delivery-box .delivery-poster img {
  border-radius: 50%;
  -webkit-animation: compass 7s ease-in-out infinite;
          animation: compass 7s ease-in-out infinite;
}

.delivery-page .delivery-item {
  max-width: 525px;
  margin-top: 51px;
}
.delivery-page .delivery-item .title {
  font-size: 18px;
  font-weight: 600;
}

@-webkit-keyframes compass {
  25% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  75% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes compass {
  25% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  75% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
/*------------------------About Page------------------------*/
.about-page .about-poster {
  background: #0D0D0D url(../images/about-kraken.jpg) no-repeat top right;
  background-size: auto 100%;
  margin-bottom: 58px;
  padding: 0 0 0 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  height: 280px;
}
.about-page .about-poster .icon-logo {
  height: 96px;
  margin-right: 24px;
}
.about-page .about-poster .name-logo {
  height: 32px;
}
.about-page .about-item {
  font-size: 16px;
}
.about-page .about-item .title {
  font-size: 18px;
  font-weight: 600;
}

/*------------------------Contacts------------------------*/
.feedback-page-form {
  max-width: 929px;
}

.form-item {
  margin-right: 28px;
  max-width: 350px;
  width: 100%;
}
.form-item:last-child {
  margin-right: 0;
}

.contacts {
  background: #F9F9F9;
}

.contacts-info .contacts-item {
  font-size: 16px;
  margin-top: 15px;
}
.contacts-info .contacts-item .title {
  font-size: 18px;
  font-weight: 600;
}
.contacts-info .contacts-item a {
  color: #D78E5E;
}

.map {
  height: 540px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.map:hover {
  -webkit-filter: none;
          filter: none;
}
.map iframe {
  width: 100%;
  margin-top: -115px;
  height: calc(100% + 130px);
}
.map iframe .gmnoprint {
  display: none;
}
.map iframe .gm-style .place-card-large {
  display: none;
}

/*------------------------Footer------------------------*/
.footer {
  padding: 96px 0;
  background: #0D0D0D;
}
.footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .footer-logo img:first-child {
  margin-bottom: 20px;
}
.footer .footer-info {
  color: #fff;
  font-size: 16px;
  margin-left: 30px;
}
.footer .footer-info li:not(:last-child) {
  margin-right: 48px;
}
.footer .footer-info a {
  color: #fff;
}
.footer .footer-info a:hover {
  color: #D78E5E;
}
.footer .footer-info .copyright {
  text-align: right;
  opacity: 0.5;
  margin-top: 48px;
  font-size: 14px;
}

/*------------------------Modal------------------------*/
.body-hidden {
  overflow: hidden;
}

.modal {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0D0D0D;
  opacity: 0.75;
}
.modal .modal-body {
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 1110px;
  background: #fff;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.modal .modal-body .close-modal {
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 9;
}
.modal .modal-body .close-modal:hover svg g {
  opacity: 1;
}
.modal .modal-body .close-modal:hover svg path {
  stroke: #D78E5E;
}
.modal .modal-body .modal-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal .modal-body .modal-product .m-product-poster {
  width: 445px;
  height: 100%;
  position: absolute;
}
.modal .modal-body .modal-product .m-product-info {
  margin-left: 445px;
  padding: 48px;
  font-size: 16px;
}
.modal .modal-body .modal-product .m-product-info .m-product-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
}
.modal .modal-body .modal-product .m-product-info .m-product-item {
  overflow-x: auto;
}
.modal .modal-body .modal-product .m-product-info .m-product-item .item-info {
  margin-bottom: 16px;
}
.modal.active .modal-body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/*-----Modal Message----*/
.massage-modal {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.massage-modal:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0D0D0D;
  opacity: 0.75;
}
.massage-modal .massage {
  position: relative;
  z-index: 1001;
  width: 100%;
  padding: 48px;
  text-align: center;
  max-width: 540px;
  background: #fff;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.massage-modal.active {
  visibility: visible;
  opacity: 1;
}
.massage-modal.active .massage {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/*------------------------Adaptive------------------------*/
@media (min-width: 2000px) {
  .header {
    min-height: calc(100vh - 190px);
  }
  .header:after {
    background: url(../images/down-head-2.svg) no-repeat center;
    background-size: cover;
    bottom: -80px;
    height: 88px;
  }
}
@media (max-width: 996px) {
  .delivery-poster {
    text-align: center;
  }
  .about-us .about-poster .poster {
    margin-bottom: 48px;
  }
  .about-us .about-poster .poster .stamp {
    position: absolute;
    width: 131px;
    height: 133px;
    bottom: -31px;
    left: -50px;
  }
  .modal .modal-body .modal-product .m-product-poster {
    width: 350px;
  }
  .modal .modal-body .modal-product .m-product-info {
    margin-left: 350px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 48px 0;
  }
  .footer .footer-logo {
    margin: 0 auto 30px;
  }
  .footer .footer-info {
    width: 100%;
    margin-left: 0;
  }
  .footer .footer-info ul {
    display: block;
    text-align: center;
  }
  .footer .footer-info ul li {
    margin: 8px 0;
  }
  .footer .footer-info ul li:not(:last-child) {
    margin-right: 0;
  }
  .footer .footer-info .copyright {
    text-align: center;
  }
  .about-page .about-poster {
    padding: 0 0 0 24px;
  }
  .products-box .products-item {
    max-width: 500px;
    margin: 0 auto;
  }
  .form-item {
    margin-top: 8px;
    margin-right: 0;
  }
  .modal .modal-body .modal-product {
    display: block;
  }
  .modal .modal-body .modal-product .m-product-poster {
    width: 100%;
    height: 200px;
    position: relative;
  }
  .modal .modal-body .modal-product .m-product-info {
    margin-left: 0;
    padding: 24px;
  }
  .modal .modal-body .modal-product .m-product-info .m-product-item {
    max-height: 350px;
  }
  .modal .modal-body .close-modal svg g {
    opacity: 1;
  }
  .modal .modal-body .close-modal svg path {
    stroke: #fff;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 16px;
  }
  .about-us .about-poster .poster {
    padding: 0 36px;
  }
  .about-us .about-poster .poster .stamp {
    width: 100px;
    height: 100px;
    bottom: -14px;
    left: 0;
  }
  .about-page .about-poster .icon-logo {
    height: 88px;
  }
  .about-page .about-poster .name-logo {
    height: 28px;
  }
  .modal .modal-body .modal-product .m-product-info .m-product-title {
    font-size: 20px;
  }
  .modal .modal-body .modal-product .m-product-info .m-product-item {
    max-height: 250px;
  }
  .modal .modal-body .modal-product .m-product-info .m-product-item .col-6 {
    grid-template-columns: 1fr;
  }
}