/*
 *  Fonts
 *//*
 *  Colors
 *//*
	*  Template Colors
	*//*
	* Animation Effect
	*/[class^='icon-'],[class*=' icon-'] {
 /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'polarygroup' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
 /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: '\e902';
}

.icon-instagram:before {
  content: '\e903';
}

.icon-linkedin:before {
  content: '\e904';
}

.icon-twitter:before {
  content: '\e905';
}

.icon-youtube:before {
  content: '\e906';
}

.icon-left:before {
  content: '\e900';
}

.icon-right:before {
  content: '\e901';
}

a {
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
}

.content-style {
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  color: #464646;
}

.content-style a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  text-decoration: underline;
  color: #f7941e;
}

.content-style p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  color: #464646;
  margin: 0 0 15px 0;
}

.content-style strong {
  font-weight: 600;
}

.header {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1860px;
  height: 130px;
  margin: 0 auto;
  padding: 0 50px;
}

.header__logo {
  flex-grow: 0;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  max-width: 270px;
}

.header__mobile-menu {
  display: none;
}

.header__mobile-menu.-active span {
  background: #f7941e;
}

.header__mobile-menu.-active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-menu.-active span:nth-child(2) {
  opacity: 0;
}

.header__mobile-menu.-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__mobile-menu span {
  display: flex;
  margin-bottom: 5px;
  width: 26px;
  height: 2px;
  background: #3fc1be;
  transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
  transition: opacity 0.2s linear, transform 0.2s linear;
  transition: opacity 0.2s linear, transform 0.2s linear, -webkit-transform 0.2s linear;
}

.header .nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header .nav__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
}

.header .nav__item__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 130px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  color: #000000;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s linear;
}

.header .nav__item__link.-active,.header .nav__item__link:hover {
  color: #f7941e;
}

.header .nav__sub {
  position: absolute;
  left: 0;
  top: 130px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: calc(100vh - 130px);
  background-color: #000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.header .nav__sub.-active {
  opacity: 1;
  visibility: visible;
}

.header .nav__sub__close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background-color: #f7941e;
  cursor: pointer;
}

.header .nav__sub__close:before,.header .nav__sub__close:after {
  content: '';
  display: flex;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
}

.header .nav__sub__close:after {
  -webkit-transform: rotate(45deg) translateX(-1px) translateY(-1px);
  transform: rotate(45deg) translateX(-1px) translateY(-1px);
}

.header .nav__sub__close:before {
  -webkit-transform: rotate(-45deg) translateY(1px);
  transform: rotate(-45deg) translateY(1px);
}

.header .nav__sub__column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding: 50px 80px;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.header .nav__sub__column.-woman {
  background-image: url("../image/menu-woman.jpg");
}

.header .nav__sub__column.-man {
  background-image: url("../image/menu-man.jpg");
}

.header .nav__sub__title {
  width: 100%;
  font-size: 64px;
  font-size: 4rem;
  line-height: 102.4px;
  line-height: 6.4rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-family: "Playfair Display", Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.header .nav__sub__title:after {
  content: '';
  display: flex;
  width: 35px;
  height: 1px;
  margin: 10px 0 50px 0;
  background-color: #ffffff;
}

.header .nav__sub__brand {
  width: 100%;
  margin: 0 0 5px 0;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 57.6px;
  line-height: 3.6rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-family: "Playfair Display", Arial, sans-serif;
  color: #ffffff;
}

.header .nav__sub__menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 30px 0;
}

.header .nav__sub__link {
  display: block;
  margin: 0 0 5px 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  color: #ffffff;
}

.header__language {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header__language.-mobile {
  display: none;
}

.header__language__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 35px;
  margin: 0 20px 0 0;
  padding: 0 2px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  color: #000000;
}

.header__language__item:last-child {
  margin: 0;
}

.header__language__item.-active {
  color: #f7941e;
  border-bottom: 1px solid #f7941e;
}

.footer {
  background-color: #ffffff;
}

.footer__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 50px;
}

.footer__logo img {
  width: 100%;
  max-width: 270px;
}

.footer__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer__nav__link {
  display: flex;
  margin: 0 20px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  color: #000000;
  transition: color 0.2s ease-out;
}

.footer__nav__link:hover {
  color: #f7941e;
}

.footer__socialmedia {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer__socialmedia__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin: 0 25px 0 0;
  border-radius: 50%;
  border: 1px solid #464646;
  transition: border 0.2s ease-out;
}

.footer__socialmedia__link:last-child {
  margin: 0;
}

.footer__socialmedia__link:hover.-facebook {
  border: 1px solid #3b5998;
}

.footer__socialmedia__link:hover.-facebook span {
  color: #3b5998;
}

.footer__socialmedia__link:hover.-twitter {
  border: 1px solid #1da1f2;
}

.footer__socialmedia__link:hover.-twitter span {
  color: #1da1f2;
}

.footer__socialmedia__link:hover.-instagram {
  border: 1px solid #e1306c;
}

.footer__socialmedia__link:hover.-instagram span {
  color: #e1306c;
}

.footer__socialmedia__link span {
  color: #464646;
  font-size: 20px;
  transition: color 0.2s ease-out;
}

.footer__copyright {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  border-top: 1px solid #efefef;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  color: #000000;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fdfcf8;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-font-feature-settings: 'kern' 1;
  font-feature-settings: 'kern' 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  color: #464646;
  letter-spacing: 1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.-no-scroll {
  padding-top: 160px;
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}

.main {
  position: relative;
  width: 100%;
}

@font-face {
  font-family:'polarygroup';src:url("../font/icon/polarygroup.eot?cgsnct");src:url("../font/icon/polarygroup.eot?cgsnct#iefix") format("embedded-opentype"), url("../font/icon/polarygroup.woff?cgsnct") format("woff"), url("../font/icon/polarygroup.svg?cgsnct#polarygroup") format("svg");font-weight:normal;font-style:normal;
}

@media only screen and (max-width: 1600px) {
  .header__logo img {
    max-width: 250px;
  }

  .header .nav__sub__column {
    padding: 50px;
  }
}

@media only screen and (max-width: 1366px) {
  .header .nav__item {
    margin: 0 20px;
  }
}

@media only screen and (max-width: 1248px) {
  .header__container {
    padding: 0 20px;
  }

  .header__logo img {
    max-width: 200px;
  }

  .header .nav__item {
    margin: 0 15px;
  }

  .header .nav__item__link {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
  }

  .header .nav__sub__title {
    font-size: 54px;
    font-size: 3.375rem;
    line-height: 86.4px;
    line-height: 5.4rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
  }

  .header .nav__sub__title:after {
    margin: 10px 0 40px 0;
  }

  .header .nav__sub__brand {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 48px;
    line-height: 3rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
  }

  .header__language__item {
    margin: 0 15px 0 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
  }

  .footer__container {
    padding: 80px 20px;
  }

  .footer__logo img {
    max-width: 200px;
  }
}

@media only screen and (max-width: 1024px) {
  .header__container {
    height: 100px;
  }

  .header__logo img {
    max-width: 180px;
  }

  .header__mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 5px 0 0;
    width: 30px;
    height: 30px;
  }

  .header .nav {
    position: absolute;
    left: 0;
    top: 100px;
    z-index: 5;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: calc(100vh - 100px);
    background-color: #ffffff;
    border-top: 1px solid #ececec;
    overflow-y: auto;
  }

  .header .nav.-active {
    display: flex;
  }

  .header .nav__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 20px 20px;
    border-bottom: 1px solid #ececec;
  }

  .header .nav__item__link {
    height: auto;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    font-weight: 600;
  }

  .header .nav__item__link.-active,.header .nav__item__link:hover {
    color: #464646;
  }

  .header .nav__sub {
    position: relative;
    left: auto;
    top: auto;
    flex-direction: column;
    height: auto;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
  }

  .header .nav__sub__close {
    display: none;
  }

  .header .nav__sub__column.-woman {
    background-image: none;
  }

  .header .nav__sub__column.-man {
    background-image: none;
  }

  .header .nav__sub__column {
    width: 100%;
    margin: 10px 0;
    padding: 0;
    background-image: none;
    background-color: #f7f7f7;
    border-radius: 4px;
    overflow: hidden;
  }

  .header .nav__sub__title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    background-color: #efefef;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    color: #000000;
  }

  .header .nav__sub__title:after {
    display: none;
  }

  .header .nav__sub__brand {
    padding: 10px 20px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28.8px;
    line-height: 1.8rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    font-weight: 600;
    color: #000000;
    width: 100%;
    border-bottom: 1px solid #efefef;
    padding: 10px 20px;
    border-top: 1px solid #efefef;
  }

  .header .nav__sub__menu {
    margin: 0;
    padding: 10px 0;
  }

  .header .nav__sub__link:last-child {
    padding: 0 0 0 30px;
  }

  .header .nav__sub__link {
    padding: 0 0 5px 30px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 25.6px;
    line-height: 1.6rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    font-weight: 600;
    color: #000000;
  }

  .header__language.-mobile {
    display: flex;
    width: 100%;
    padding: 20px 0;
  }

  .header__language.-mobile .header__language__item {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28.8px;
    line-height: 1.8rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    font-weight: 600;
  }

  .header__language {
    display: none;
  }

  .footer__container {
    flex-direction: column;
  }

  .footer__logo {
    margin: 0 0 50px 0;
  }

  .footer__nav {
    margin: 0 0 50px 0;
  }
}

@media only screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
  }

  .footer__nav__link {
    margin: 0 0 20px 0;
  }

  .footer__copyright {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    -webkit-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern' 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
  }
}

/*# sourceMappingURL=main.css.map */
