* {
  padding: 0px;
  margin: 0px;
}

body {
  font-size: 14px;
  color: #333;
  font-family: "Azur-Normal";
  background: #fff;
}

@font-face {
  font-family: "Azur-Normal";
  src: url(../fonts/Azur-Normal.otf);
}

@font-face {
  font-family: "Azur-Light";
  src: url(../fonts/Azur-Light.otf);
}

@font-face {
  font-family: "Azur-XLight";
  src: url(../fonts/Azur-XLight.otf);
}

@font-face {
  font-family: "Azur-Thin";
  src: url(../fonts/Azur-Thin.otf);
}

@font-face {
  font-family: "Azur-Bold";
  src: url(../fonts/Azur-Bold.otf);
}

@font-face {
  font-family: "Azur-Heavy";
  src: url(../fonts/Azur-Heavy.otf);
}

img {
  max-width: 100%;
}

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

a,
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
}

li,
ol {
  list-style: none;
}

button:focus {
  outline: none !important;
}

.blank-sec {
  position: relative;
  width: 100%;
  height: 100vh;
}

.char {
  height: 40px;
  -webkit-animation: an 1s ease-out 1 both;
          animation: an 1s ease-out 1 both;
  display: inline-block;
}

@-webkit-keyframes an {
  from {
    opacity: 0;
    -webkit-transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
            transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(500px) translate3d(0, 0, 0);
            transform: perspective(500px) translate3d(0, 0, 0);
  }
}

@keyframes an {
  from {
    opacity: 0;
    -webkit-transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
            transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(500px) translate3d(0, 0, 0);
            transform: perspective(500px) translate3d(0, 0, 0);
  }
}

model-viewer.red {
  display: table;
  margin: 0 auto;
  height: 90vw;
}

section.main-wrap .holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
}

section.main-wrap .holder section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

#cursor {
  pointer-events: none;
  position: fixed;
  display: block;
  border-radius: 0px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  mix-blend-mode: difference;
  top: 0px;
  left: 0px;
  z-index: 1000;
  -webkit-filter: url("#goo");
          filter: url("#goo");
}

#cursor span {
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 20px;
  background-color: white;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header {
  padding: 20px 55px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  mix-blend-mode: difference;
}

header .main-logo img {
  max-width: 50px;
}

header .menu-sec img {
  max-width: 30px;
}

header .menu-sec a {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

header .menu-sec span {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 6px;
  background: #fff;
}

header .menu-sec span:last-child {
  margin-bottom: 0;
}

.menu-part {
  width: 100%;
  background-color: #1a1616;
  max-width: 400px;
  position: fixed;
  top: 0;
  height: 100%;
  right: -400px;
  z-index: 999;
  padding: 20px 40px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-part a.logo-sec {
  display: table;
  margin: 0 auto 20px;
}

.menu-part a.logo-sec img {
  max-width: 30px;
}

.menu-part a.close-btn {
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 30px;
  right: 40px;
}

.menu-part h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Azur-Thin";
}

.menu-part p {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: darkgrey;
  letter-spacing: 2px;
  font-family: "Azur-Thin";
}

.menu-part ul.menu li a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: 7px;
  display: table;
  width: 100%;
  padding-left: 0px;
  border-style: none none solid;
  border-width: 0.1px 0.1px 0.2px;
  border-color: #494112;
  -webkit-transition: border-color 375ms ease, color 375ms ease;
  transition: border-color 375ms ease, color 375ms ease;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Azur-Thin";
}

.menu-part ul.menu li a:hover {
  border-color: #bbb;
  color: #fff;
  font-family: "Azur-Light";
}

.menu-part ul.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu-part ul.social li a {
  width: 30px;
  height: 30px;
  background: #333;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  color: #fff;
  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;
  margin-left: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-part ul.social li a:hover {
  opacity: .8;
}

body:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body.overlay:before {
  opacity: 1;
  visibility: visible;
}

.menu-part.open-menu {
  right: 0;
}

section.page1 {
  position: relative;
  z-index: 14;
}

section.page1 img.main-img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

section.page1 .decp {
  position: absolute;
  top: 20%;
  left: 20%;
}

section.page1 .decp h2 {
  max-width: 527px;
  font-size: 40px;
  letter-spacing: 5px;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c3133;
  font-family: "Azur-Thin";
}

section.page1 .decp p {
  margin: 0;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2c3133;
  font-family: "Azur-Bold";
}

section.page1 .decp2 {
  position: absolute;
  bottom: 15%;
  right: -30px;
  padding: 115px 78px 45px 38px;
  background: #faa733;
  border-right: 30px solid #faa733;
  overflow: hidden;
}

section.page1 .decp2 img.img1 {
  max-width: 65px;
  margin-left: 56px;
}

section.page1 .decp2 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 28px 0 0;
}

section.page1 .decp2 .img-sec {
  position: relative;
  display: table;
  margin: 0 auto;
  -webkit-animation: mymove 10s normal linear infinite;
          animation: mymove 10s normal linear infinite;
}

section.page1 .decp2 .img-sec img.img3 {
  position: absolute;
  bottom: -4px;
  left: 12px;
  -webkit-animation: rotate 5s normal linear infinite;
          animation: rotate 5s normal linear infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@-webkit-keyframes mymove {
  0% {
    left: 0;
  }
  100% {
    left: 220px;
  }
}

@keyframes mymove {
  0% {
    left: 0;
  }
  100% {
    left: 220px;
  }
}

section.page1 .decp2 p {
  margin: 0 20px;
  color: #000;
  font-size: 18px;
  max-width: 66px;
  font-family: "Azur-Bold";
}

section.page1 .decp2 span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@-webkit-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page2 {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0%;
  left: 0;
  z-index: 13;
  background: #fff;
}

section.page2 .decp {
  text-align: center;
  max-width: 744px;
  margin: 0 auto;
  position: relative;
}

section.page2 .line {
  width: 45%;
  height: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#a3a3a3), to(#a3a3a3)) left/0% 100% no-repeat;
  background: linear-gradient(#a3a3a3, #a3a3a3) left/0% 100% no-repeat;
  margin: 8% 0 0;
  -webkit-animation: anime 2s ease-in-out infinite alternate;
          animation: anime 2s ease-in-out infinite alternate;
}

@-webkit-keyframes anime {
  0% {
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 70% 100%;
  }
  100% {
    background-size: 0% 100%;
    background-position: right;
  }
}

@keyframes anime {
  0% {
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 70% 100%;
  }
  100% {
    background-size: 0% 100%;
    background-position: right;
  }
}

section.page2 .sape-1 {
  width: 34px;
  height: 40px;
  background: #f6f8f9;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  top: 46px;
  right: 100px;
}

section.page2 .sape-2 {
  width: 120px;
  height: 139px;
  background: #f6f8f9;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  bottom: 32px;
  right: 57px;
  z-index: -1;
}

section.page2 h2 {
  font-size: 28px;
  line-height: 88px;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 2px;
  font-family: "Azur-Bold";
}

section.page2 p {
  color: #1a1a1a;
  font-size: 25px;
  margin: 0 auto 20px;
  font-family: "Azur-Thin";
}

section.page2 h3 {
  font-size: 26px;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 1px;
  font-family: "Azur-Bold";
}

section.page2 .wrap {
  position: absolute;
  right: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 10%;
}

section.page2 .wrap p {
  margin: 0 20px;
  color: #000;
  font-size: 18px;
  max-width: 75px;
  font-family: "Azur-Light";
}

section.page2 .wrap span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page3 {
  position: relative;
  padding: 0 55px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 12;
  background: #fff;
}

section.page3:before {
  content: "";
  width: 33%;
  background: #faa733;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

section.page3:after {
  content: "";
  width: 25px;
  height: 80%;
  position: absolute;
  background: #faa733;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

section.page3 h2 {
  color: #000;
  font-size: 25px;
  margin: 0 0 25px;
  font-family: "Azur-Bold";
}

section.page3 p {
  margin: 0;
  font-size: 24px;
  padding-right: 50px;
  font-family: "Azur-Light";
}

section.page3 video {
  -o-object-fit: cover;
     object-fit: cover;
}

section.page3 .wrap {
  position: absolute;
  right: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 10px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

section.page3 .wrap p {
  margin: 0 20px;
  color: #000;
  font-size: 18px;
  max-width: 85px;
  padding: 0;
  font-family: "Azur-Light";
}

section.page3 .wrap span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 120px;
  background: #faa733;
  position: relative;
  z-index: 11;
}

section.page4 h2 {
  font-size: 30px;
  margin: 0 0 20px;
  letter-spacing: 2px;
  font-family: "Azur-Bold";
}

section.page4 p {
  color: #000;
  font-size: 25px;
  margin: 0 0 23px;
  font-family: "Azur-Thin";
}

section.page4 .wrap {
  position: absolute;
  right: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 15%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

section.page4 .wrap p {
  margin: 0 20px;
  color: #000;
  font-size: 18px;
  max-width: 85px;
  padding: 0;
  font-family: "Azur-Light";
}

section.page4 .wrap span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page4 .decp {
  position: relative;
}

section.page4 .shape1 {
  width: 140px;
  height: 160px;
  background: #0000001a;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  top: -109px;
  left: 0;
  right: 100px;
  margin: auto;
}

section.page4 .shape2 {
  width: 60px;
  height: 65px;
  background: #0000001a;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  top: 36%;
  left: 300px;
  right: 0;
  margin: auto;
}

section.page5 {
  background: #fef6ea;
  padding: 150px 0 30px 120px;
  position: relative;
  z-index: 10;
}

section.page5:before {
  content: "";
  width: 40px;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #faa733;
}

section.page5 h2 {
  font-size: 26px;
  letter-spacing: 2px;
  color: #000;
  font-family: "Azur-Bold";
  margin-bottom: 10px;
  line-height: 35px;
}

section.page5 p {
  font-size: 20px;
  font-family: "Azur-Thin";
}

section.page5 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 150px);
  position: relative;
  z-index: 9;
}

section.page5 ul li {
  margin-right: 14px;
  height: 100%;
  position: relative;
}

section.page5 ul li img {
  border-radius: 17px;
  margin: 0 0 20px;
  min-width: 450px;
}

section.page5 ul li:last-child {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

section.page5 .line {
  position: relative;
  width: 49%;
  height: 1px;
  margin: 80px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#a3a3a3), to(#a3a3a3)) left/0% 100% no-repeat;
  background: linear-gradient(#a3a3a3, #a3a3a3) left/0% 100% no-repeat;
  -webkit-animation: anime 2s ease-in-out infinite alternate;
          animation: anime 2s ease-in-out infinite alternate;
}

@keyframes anime {
  0% {
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 70% 100%;
  }
  100% {
    background-size: 0% 100%;
    background-position: right;
  }
}

section.page5 .shape1 {
  width: 70px;
  height: 80px;
  background: #fde9ce;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  float: right;
  margin-right: 70px;
}

section.page5 .shape2 {
  width: 70px;
  height: 80px;
  background: #fde9ce;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

section.main-wrap .holder .sec1 {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

section.main-wrap .holder .sec1 section.page6,
section.main-wrap .holder .sec1 section.page7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100vw;
  position: relative !important;
}

section.page6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #faa733;
  position: relative;
  border-right: 30px solid #2c3133;
}

section.page6 .wrap {
  position: absolute;
  right: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 15%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

section.page6 .wrap p {
  margin: 0 20px;
  color: #000;
  font-size: 18px;
  max-width: 72px;
  padding: 0;
  text-align: left;
  font-family: "Azur-Light";
}

section.page6 .wrap span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page6 .decp {
  display: table;
  margin: 0 auto;
  position: relative;
}

section.page6 h2 {
  text-align: center;
  position: relative;
  font-size: 35px;
  letter-spacing: 2px;
  display: table;
  margin: 0 auto 20px;
  font-family: "Azur-Bold";
}

section.page6 h2 img {
  position: absolute;
  bottom: 0;
  max-width: 100px;
  right: 0;
  opacity: 0.1;
}

section.page6 h2:after {
  content: "";
  width: 30px;
  height: 35px;
  background: #000;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.1;
}

section.page6 p {
  text-align: center;
  margin: 0;
  font-size: 28px;
  max-width: 700px;
  font-family: "Azur-Thin";
}

section.page6 p span {
  font-family: "Azur-Bold";
}

section.page7 {
  position: relative;
  background: #2c3133;
  padding: 120px 120px 60px;
  height: 100vh;
}

section.page7::before {
  content: "";
  width: 80px;
  height: 92px;
  background: #ffffff14;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 15px;
  margin: auto;
  bottom: 0;
}

section.page7 h2 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: "Azur-Bold";
}

section.page7 h2 span {
  display: table;
}

section.page7 p {
  color: #fff;
  font-size: 22px;
  font-family: "Azur-Thin";
}

section.page7 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.page7 ul li {
  margin-right: 10px;
}

section.page7 ul li .embed-responsive,
section.page7 ul li video {
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.page7 ul li img {
  border-radius: 15px;
}

section.page7 ul li h4 {
  color: #fff;
  text-align: center;
  margin: 15px 0;
  font-size: 16px;
  letter-spacing: 2px;
  font-family: "Azur-Bold";
}

section.page7 ul li .img-wrap {
  margin-top: 50pxpx;
  -webkit-transform: translate(37px, 0px);
          transform: translate(37px, 0px);
}

section.page7 ul li:last-child .img-wrap {
  margin: 0;
}

section.page7 ul li:last-child img {
  margin-top: 35px;
}

section.page7 .wrap {
  position: absolute;
  right: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 12%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

section.page7 .wrap p {
  margin: 0 20px;
  color: #fff;
  font-size: 18px;
  max-width: 72px;
  padding: 0;
  text-align: left;
  font-family: "Azur-Light";
}

section.page7 .wrap span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page7.page8 {
  background: #fff;
  position: relative;
  z-index: 8;
}

section.page7.page8::before {
  content: "";
  width: 130px;
  height: 140px;
  background: #00000014;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  top: 10%;
  right: -70px;
  left: unset;
  bottom: unset;
}

section.page7.page8::after {
  content: "";
  width: 27px;
  height: 30px;
  background: #00000039;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  top: 24%;
  right: 100px;
  left: unset;
  bottom: unset;
}

section.page7.page8 h2,
section.page7.page8 p {
  color: #000;
}

section.page7.page8 .line {
  width: 70%;
  height: 1px;
  margin-top: 60px;
  margin-left: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#1a1a1a)) left/0% 100% no-repeat;
  background: linear-gradient(#1a1a1a, #1a1a1a) left/0% 100% no-repeat;
  -webkit-animation: anime 2s ease-in-out infinite alternate;
          animation: anime 2s ease-in-out infinite alternate;
}

@keyframes anime {
  0% {
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 70% 100%;
  }
  100% {
    background-size: 0% 100%;
    background-position: right;
  }
}

section.page7.page8 ul {
  position: relative;
}

section.page7.page8 ul li h4 {
  color: #1a1a1a;
}

section.page7.page8 .shape1 {
  width: 150px;
  height: 160px;
  background: #00000014;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  top: 22%;
  left: -64px;
  margin: auto;
  bottom: 0;
}

section.main-wrap .holder .sec2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

section.main-wrap .holder .sec2 section.page9,
section.main-wrap .holder .sec2 section.page10,
section.main-wrap .holder .sec2 section.page11,
section.main-wrap .holder .sec2 section.page12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100vw;
  position: relative !important;
}

section.page9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 70px;
  background: #fff;
}

section.page9:after {
  content: "";
  width: 25%;
  height: 100%;
  background: #2c3133;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

section.page9::before {
  content: "";
  width: 38px;
  height: 43px;
  background: #ffffff14;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  right: 8%;
  z-index: 9;
  top: 30%;
}

section.page9 .decp2 {
  position: absolute;
  bottom: 10%;
  right: 0px;
  padding: 115px 78px 0px 38px;
  z-index: 1;
}

section.page9 .decp2 img {
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

section.page9 .decp2 img.img1 {
  max-width: 65px;
  margin-left: 56px;
}

section.page9 .decp2 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 28px 0 0;
}

section.page9 .decp2 img.img2 {
  max-width: 50px;
}

section.page9 .decp2 p {
  margin: 0 20px;
  color: #fff;
  font-size: 18px;
  max-width: 66px;
  font-family: "Azur-Bold";
}

section.page9 .decp2 span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page9 .decp {
  width: 100%;
}

section.page9 p {
  font-size: 22px;
  color: #000;
  margin-top: 25px;
  margin-bottom: 0;
  font-family: "Azur-Thin";
}

section.page9 .line {
  display: table;
  margin: 40px auto 0;
  width: 70%;
  height: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#1a1a1a)) left/0% 100% no-repeat;
  background: linear-gradient(#1a1a1a, #1a1a1a) left/0% 100% no-repeat;
  -webkit-animation: anime 2s ease-in-out infinite alternate;
          animation: anime 2s ease-in-out infinite alternate;
}

@keyframes anime {
  0% {
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 70% 100%;
  }
  100% {
    background-size: 0% 100%;
    background-position: right;
  }
}

section.page9 .embed-responsive,
section.page9 video {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.page9 .spahe1 {
  width: 90px;
  height: 100px;
  background: #00000014;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  margin-top: 80px;
  left: 100px;
}

section.page10 {
  position: relative;
  padding: 110px 70px 0;
  background: #fff;
}

section.page10 img {
  border-radius: 15px;
  max-height: 550px;
  margin: 0 auto;
  display: table;
}

section.page10:before {
  content: "";
  width: 32%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #2c3133;
}

section.page10 h2 {
  color: #fff;
  font-size: 45px;
  max-width: 200px;
  margin: 0 0 20px;
  letter-spacing: 2px;
  font-family: "Azur-Light";
}

section.page10 p {
  font-size: 22px;
  color: #fff;
  font-family: "Azur-Thin";
}

section.page10 h3 {
  font-size: 18px;
  letter-spacing: 3px;
  margin: 24px 100px 10px;
  margin-right: 0;
  font-family: "Azur-Bold";
}

section.page10 h6 {
  font-size: 20px;
  margin-left: 100px;
  font-family: "Azur-Thin";
  margin-bottom: 0;
}

section.page10 .line {
  width: 70%;
  height: 1px;
  margin-top: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left/0% 100% no-repeat;
  background: linear-gradient(#fff, #fff) left/0% 100% no-repeat;
  -webkit-animation: anime 2s ease-in-out infinite alternate;
          animation: anime 2s ease-in-out infinite alternate;
}

@keyframes anime {
  0% {
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 70% 100%;
  }
  100% {
    background-size: 0% 100%;
    background-position: right;
  }
}

section.page11 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 80px 70px 0;
  background: #fff;
}

section.page11:after {
  content: "";
  width: 25%;
  height: 100%;
  background: #a8b7bf;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

section.page11 .decp {
  position: relative;
}

section.page11 .decp img {
  border-radius: 20px;
}

section.page11 h4 {
  font-size: 20px;
  letter-spacing: 2px;
  margin: 20px 0 5px;
  font-family: "Azur-Bold";
}

section.page11 p {
  margin: 0;
  font-size: 22px;
  max-width: 334px;
  line-height: 26px;
  font-family: "Azur-Thin";
}

section.page11 .shape1 {
  width: 90px;
  height: 100px;
  background: #a8b7bf;
  opacity: 0.1;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 15px;
}

section.page11 .shape2 {
  width: 50px;
  height: 55px;
  background: #a8b7bf;
  opacity: 0.1;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  bottom: -54px;
  left: 10px;
}

section.page11 .decp2 {
  position: absolute;
  bottom: 10%;
  right: 0px;
  padding: 115px 78px 0px 38px;
  z-index: 1;
}

section.page11 .decp2 img.img1 {
  max-width: 65px;
  margin-left: 56px;
}

section.page11 .decp2 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 28px 0 0;
}

section.page11 .decp2 img.img2 {
  max-width: 50px;
}

section.page11 .decp2 p {
  margin: 0 20px;
  color: #000;
  font-size: 18px;
  max-width: 77px;
  font-family: "Azur-Bold";
}

section.page11 .decp2 span {
  width: 40px;
  height: 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page12 {
  position: relative;
  padding: 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}

section.page12:after {
  content: "";
  width: 25%;
  height: 100%;
  background: #faa733;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

section.page12:before {
  content: "";
  width: 32%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #a8b7bf;
}

section.page12 h2 {
  text-transform: uppercase;
  font-size: 40px;
  max-width: 230px;
  margin: 0 0 10px;
  letter-spacing: 3px;
  font-family: "Azur-Light";
}

section.page12 p {
  font-size: 20px;
  font-family: "Azur-Thin";
}

section.page12 ul li {
  margin-bottom: 20px;
}

section.page12 ul li img {
  border-radius: 15px;
  max-width: 60%;
}

section.page12 ul li h6 {
  font-size: 22px;
  margin: 0 0 16px;
  font-family: "Azur-Thin";
}

section.page12 ul li:first-child {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

section.page12 ul li:first-child h6 {
  max-width: 384px;
}

section.page12 ul li:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0;
}

section.page12 ul li:last-child h6 {
  margin: 0;
  max-width: 177px;
  margin-left: 20px;
}

section.page12 .wrap {
  -webkit-transform: rotate(-90deg) translate(0px, 0px);
          transform: rotate(-90deg) translate(0px, 0px);
  margin-left: 96px;
  z-index: 1;
}

section.page12 .wrap span.arrow {
  width: 40px;
  height: 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(45deg) translate(0px, 0px);
          transform: rotate(45deg) translate(0px, 0px);
  display: table;
  margin: 0 auto;
  -webkit-animation: bounceRight 3s infinite;
          animation: bounceRight 3s infinite;
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    translate: 0 0px;
  }
  40% {
    translate: -15px 0;
  }
  60% {
    translate: -10px 0;
  }
}

section.page12 h3 {
  font-size: 46px;
  letter-spacing: 6px;
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Azur-Light";
}

section.page12 h3 span {
  display: table;
  white-space: nowrap;
}

section.page12 .decp {
  z-index: 1;
}

section.page13 {
  position: relative;
  padding: 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}

section.page13::before {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0%;
  background: #faa733;
}

section.page13::after {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0%;
  background: #a8b7bf;
}

section.page13 .spahe1 {
  width: 50px;
  height: 55px;
  background: #a8b7bf;
  opacity: 0.1;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  left: 34%;
  top: 10%;
}

section.page13 .spahe2 {
  width: 70px;
  height: 75px;
  background: #a8b7bf;
  opacity: 0.1;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  left: 5%;
  top: 30%;
}

section.page13 .spahe3 {
  width: 100px;
  height: 100px;
  background: #a8b7bf;
  opacity: 0.1;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  z-index: 0;
  left: 20%;
  bottom: 10%;
}

section.page13 h2 {
  color: #000;
  font-size: 50px;
  letter-spacing: 3px;
}

section.page13 h3 {
  font-size: 22px;
  letter-spacing: 2px;
  font-family: "Azur-Light";
}

section.page13 p {
  font-size: 21px;
  font-family: "Azur-Thin";
}

section.page13 img {
  max-width: 55%;
  display: table;
  margin: 0 auto;
}

section.page13 .decp {
  width: 100%;
}

section#milton-sec1 {
  z-index: 6;
}

section#milton-sec2 {
  z-index: 5;
}

section#milton-sec3 {
  z-index: 4;
}

section.main-wrap .holder .sec3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

section.main-wrap .holder .sec3 section.page14,
section.main-wrap .holder .sec3 section.page15 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100vw;
  position: relative !important;
}

section.page14 {
  position: relative;
  text-align: right;
  background-color: #fff;
}

section.page14 img.img-1 {
  height: 100%;
}

section.page14 .decp {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  padding: 0 70px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

section.page14 h2 {
  font-size: 38px;
  max-width: 183px;
  letter-spacing: 4px;
  margin: 0 0 10px;
  font-family: "Azur-Light";
}

section.page14 p {
  font-size: 20px;
  font-family: "Azur-Thin";
}

section.page14 img.img-2 {
  display: table;
  margin: 0 auto;
  max-width: 90%;
  border-radius: 20px;
}

section.page15 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}

section.page15::after {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0%;
  background: #2c3133;
}

section.page15 img.img1 {
  height: 100%;
}

section.page15 .decp {
  position: absolute;
  right: 0;
  padding: 0 70px;
}

section.page15 h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin: 0 0 20px;
  font-family: "Azur-Light";
}

section.page15 p {
  font-size: 22px;
  font-family: "Azur-Thin";
  margin-bottom: 0;
}

section.page15 .shape {
  width: 100px;
  height: 110px;
  background: #2c3133;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  float: right;
  margin: 30px;
  margin-bottom: 0;
}

section.page15 .line {
  width: 50%;
  height: 1px;
  margin-top: 22%;
  background: -webkit-gradient(linear, left top, left bottom, from(#b2babd), to(#b2babd)) left/0% 100% no-repeat;
  background: linear-gradient(#b2babd, #b2babd) left/0% 100% no-repeat;
  -webkit-animation: anime 2s ease-in-out infinite alternate;
          animation: anime 2s ease-in-out infinite alternate;
}

@keyframes anime {
  0% {
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 70% 100%;
  }
  100% {
    background-size: 0% 100%;
    background-position: right;
  }
}

section.page-16 {
  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: center;
  z-index: 2;
  background: #fff;
}

section.page-16 .decp {
  max-width: 660px;
  position: relative;
}

section.page-16 .decp .shape1 {
  width: 100px;
  height: 110px;
  background: #e9edef;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  float: right;
  margin-right: -108px;
}

section.page-16 .decp .shape2 {
  width: 50px;
  height: 55px;
  background: #e9edef;
  display: table;
  -webkit-clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(52% 0, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
  position: absolute;
  bottom: 0;
  left: 0;
}

section.page-16 .client-review .item {
  padding: 58px 73px 0;
}

section.page-16 .client-review p {
  font-size: 32px;
  font-family: "Azur-Light";
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
}

section.page-16 .client-review p:before {
  content: "";
  width: 140px;
  height: 100px;
  background: url(../images/quate1.svg);
  position: absolute;
  top: -54px;
  left: -71px;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}

section.page-16 .client-review p:after {
  content: "";
  width: 140px;
  height: 100px;
  background: url(../images/quate1.svg);
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}

section.page-16 .client-review p span {
  font-family: "Azur-Bold";
}

section.page-16 .client-review h4 {
  font-size: 15px;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 0;
  font-family: "Azur-Bold";
}

section.page-16 .client-review h6 {
  margin: 0;
  font-size: 14px;
  font-family: "Azur-Light";
}

section.page-16 .client-review .owl-nav span {
  color: transparent;
  display: table;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

section.page-16 .client-review .owl-nav button.owl-prev {
  position: absolute;
  top: 35%;
  left: -100px;
}

section.page-16 .client-review .owl-nav button.owl-prev span {
  background: url(../images/left-arrow.svg);
}

section.page-16 .client-review .owl-nav button.owl-next {
  position: absolute;
  top: 35%;
  right: -100px;
}

section.page-16 .client-review .owl-nav button.owl-next span {
  background: url(../images/right-arrow.svg);
}

section.page-16 .client-review .owl-dots {
  text-align: center;
  margin: 60px 0 0;
}

section.page-16 .client-review .owl-dots span {
  background: #b7b7b7;
  display: table;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
}

section.page-16 .client-review .owl-dots button.owl-dot.active span {
  background: #faa733;
}

section.page17 {
  background: #1a1a1a;
  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;
  z-index: 1;
}

section.page17 .decp {
  max-width: 900px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

section.page17 h2 {
  color: #fff;
  font-size: 35px;
  letter-spacing: 3px;
  margin: 0 0 16px;
  font-family: "Azur-Thin";
}

section.page17 ul {
  margin-bottom: 15px;
}

section.page17 ul li {
  width: 33%;
  display: inline-block;
}

section.page17 ul li label {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: "Azur-Light";
}

section.page17 ul li input[type="checkbox"] {
  margin-right: 15px;
}

section.page17 ul li input[type='checkbox']:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #e0e0e0;
  -webkit-transform: translate(0px, -5px);
          transform: translate(0px, -5px);
  text-align: center;
}

section.page17 ul li input[type='checkbox']:checked:after {
  content: '\2713';
}

section.page17 input:not([type="submit"]):not([type="checkbox"]),
section.page17 textarea {
  width: 100%;
  background: #e5e5e5;
  border: none;
  border-radius: 4px;
  padding: 15px;
  margin: 0 0 20px;
  font-size: 16px;
  font-family: "Azur-Light";
}

section.page17 textarea {
  height: 120px;
}

section.page17 input[type="submit"] {
  display: table;
  margin: 30px auto 0;
  background: #faa733;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  padding: 7px 93px 0;
  border-radius: 50px;
  line-height: 48px;
  letter-spacing: 2px;
  font-family: "Azur-Bold";
}

section.page17 a.footer-logo {
  text-align: center;
  display: table;
  width: 100%;
  margin: 45px 0;
}

section.page17 a.footer-logo img {
  max-width: 70px;
}

section.page17 h3 {
  color: #fff;
  text-align: center;
  font-size: 35px;
  letter-spacing: 4px;
  font-family: "Azur-Thin";
  margin-bottom: 15px;
}

section.page17 h3 span {
  display: table;
  width: 100%;
}

section.page17 p {
  margin: 0;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-family: "Azur-Light";
}
/*# sourceMappingURL=style.css.map */