
/* ------------------------------------------------*/
/* Loader Start */
/* ------------------------------------------------*/
.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: #191919;
  opacity: 1;
  visibility: visible;
}
.loader.fade {
  background-color: transparent;
}
.loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader .loader-content {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.loader .loader-content .loader-logo {
  position: relative;
  padding: 12px 20px;
  overflow: hidden;
}
.loader .loader-content .loader-logo.animate-in::after {
  -webkit-animation: 0.8s ease-in-out 1 both blockMove;
     -moz-animation: 0.8s ease-in-out 1 both blockMove;
          animation: 0.8s ease-in-out 1 both blockMove;
}
.loader .loader-content .loader-logo.animate-in img {
  -webkit-animation: 0.8s ease-in-out 1 both itemsOpacity;
     -moz-animation: 0.8s ease-in-out 1 both itemsOpacity;
          animation: 0.8s ease-in-out 1 both itemsOpacity;
}
.loader .loader-content .loader-logo.animate-out::after {
  -webkit-animation: 0.8s ease-in-out 1 both blockMove2;
     -moz-animation: 0.8s ease-in-out 1 both blockMove2;
          animation: 0.8s ease-in-out 1 both blockMove2;
  animation-direction: reverse;
}
.loader .loader-content .loader-logo.animate-out img {
  -webkit-animation: 0.8s ease-in-out 1 both itemsOpacity2;
     -moz-animation: 0.8s ease-in-out 1 both itemsOpacity2;
          animation: 0.8s ease-in-out 1 both itemsOpacity2;
}
.loader .loader-content .loader-logo::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#b721ff), to(#21d4fd));
  background: -moz-linear-gradient(left, #b721ff 0%, #21d4fd 100%);
  background: -o-linear-gradient(left, #b721ff 0%, #21d4fd 100%);
  background: linear-gradient(to right, #b721ff 0%, #21d4fd 100%);
  -webkit-transform: translateX(-101%);
     -moz-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);
}
.loader .loader-content .loader-logo img {
  display: block;
  width: auto;
  height: auto;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation: fadeIn 0.6s 1;
     -moz-animation: fadeIn 0.6s 1;
          animation: fadeIn 0.6s 1;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation: fadeOut 0.6s 1;
     -moz-animation: fadeOut 0.6s 1;
          animation: fadeOut 0.6s 1;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes blockMove {
  0% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  40% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}

@-moz-keyframes blockMove {
  0% {
    -moz-transform: translateX(-101%);
         transform: translateX(-101%);
  }
  40% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(101%);
         transform: translateX(101%);
  }
}

@keyframes blockMove {
  0% {
    -webkit-transform: translateX(-101%);
       -moz-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  40% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
       -moz-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@-webkit-keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blockMove2 {
  0% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  40% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
@-moz-keyframes blockMove2 {
  0% {
    -moz-transform: translateX(101%);
         transform: translateX(101%);
  }
  40% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(-101%);
         transform: translateX(-101%);
  }
}
@keyframes blockMove2 {
  0% {
    -webkit-transform: translateX(101%);
       -moz-transform: translateX(101%);
            transform: translateX(101%);
  }
  40% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-101%);
       -moz-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
@-webkit-keyframes itemsOpacity2 {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes itemsOpacity2 {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes itemsOpacity2 {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ------------------------------------------------*/
/* Loader End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Loading Animation Start */
/* ------------------------------------------------*/
body.loaded .headline {
  -webkit-animation: 0.5s ease-in-out 0.2s 1 both slideInUp;
     -moz-animation: 0.5s ease-in-out 0.2s 1 both slideInUp;
          animation: 0.5s ease-in-out 0.2s 1 both slideInUp;
}
body.loaded .header__logo,
body.loaded .header__buttons {
  -webkit-animation: 0.5s ease-in-out 0.2s 1 both fadeIn;
     -moz-animation: 0.5s ease-in-out 0.2s 1 both fadeIn;
          animation: 0.5s ease-in-out 0.2s 1 both fadeIn;
}
body.loaded .intro__illustrations .illustration-1 {
  -webkit-animation: 0.5s ease-in-out 0.4s 1 both fadeIn;
     -moz-animation: 0.5s ease-in-out 0.4s 1 both fadeIn;
          animation: 0.5s ease-in-out 0.4s 1 both fadeIn;
}
body.loaded .intro__illustrations .illustration-2 {
  -webkit-animation: 0.3s ease-in-out 0.5s 1 both slideInUp;
     -moz-animation: 0.3s ease-in-out 0.5s 1 both slideInUp;
          animation: 0.3s ease-in-out 0.5s 1 both slideInUp;
}
body.loaded .intro__illustrations .illustration-3 {
  -webkit-animation: 0.3s ease-in-out 0.6s 1 both slideInUp;
     -moz-animation: 0.3s ease-in-out 0.6s 1 both slideInUp;
          animation: 0.3s ease-in-out 0.6s 1 both slideInUp;
}
body.loaded .intro__illustrations .illustration-4 {
  -webkit-animation: 0.3s ease-in-out 0.7s 1 both slideInUp;
     -moz-animation: 0.3s ease-in-out 0.7s 1 both slideInUp;
          animation: 0.3s ease-in-out 0.7s 1 both slideInUp;
}
body.loaded .intro__illustrations .illustration-5 {
  -webkit-animation: 0.3s ease-in-out 0.8s 1 both slideInUp;
     -moz-animation: 0.3s ease-in-out 0.8s 1 both slideInUp;
          animation: 0.3s ease-in-out 0.8s 1 both slideInUp;
}

/* ------------------------------------------------*/
/* Loading Animation End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Fonts Start */
/* ------------------------------------------------*/
/* Iran Yekan */
@font-face {
  font-family: Iranyekan;
  src: url(../fonts/IranYekan/iranyekanwebregularfanum.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Iranyekan;
  src: url(../fonts/IranYekan/iranyekanwebmediumfanum.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Iranyekan;
  src: url(../fonts/IranYekan/iranyekanwebboldfanum.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Iranyekan;
  src: url(../fonts/IranYekan/iranyekanwebextraboldfanum.ttf);
  font-weight: 800;
}

@font-face {
  font-family: Iranyekan;
  src: url(../fonts/IranYekan/iranyekanweblightfanum.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Iranyekan;
  src: url(../fonts/IranYekan/iranyekanwebthinfanum.ttf);
  font-weight: 300;
}

/* Vazirmatn */

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-Regular.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-Medium.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-SemiBold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-Bold.ttf);
  font-weight: 800;
}

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-ExtraBold.ttf);
  font-weight: 900;
}

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-Light.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-Thin.ttf);
  font-weight: 300;
}

@font-face {
  font-family: Vazirmatn;
  src: url(../fonts/Vazirmatn/static/Vazirmatn-ExtraLight.ttf);
  font-weight: 200;
}

/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Base CSS Styles Start */
/* ------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

::-moz-selection {
  background-color: #b721ff;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background-color: #b721ff;
  color: #ffffff;
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 4px;
  background: #303030;
}
@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #303030;
}

::-webkit-scrollbar-thumb {
  background-color: #b721ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#b721ff), to(#21d4fd));
  background: linear-gradient(to bottom, #b721ff 0%, #21d4fd 100%);
  border-radius: 2px;
}

html {
  font-family: "Vazirmatn";
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden !important;
  font: normal 400 1.6rem/1.7 "Iranyekan", "Vazirmatn";
  color: rgba(255, 255, 255, 0.7);
  background-color: #191919;
}

section {
  position: relative;
  min-width: 320px;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.color-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.color-layer-black-06 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-light {
  background-color: #f9f9f9;
}

.bg-dark {
  background-color: #252525;
}

/* ------------------------------------------------*/
/* Base CSS Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Typography Start */
/* ------------------------------------------------*/
h1 {
  font: normal 800 3.2rem/1.2 "Iranyekan", "Vazirmatn";
  color: #ffffff;
}
h1 span {
  color: #b721ff;
  background: -webkit-linear-gradient(-45deg, #b721ff 0%, #21d4fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 4rem;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 5rem;
    max-width: 700px;
  }
}

.title__caption {
  font: normal 800 2.8rem/1.2 "Iranyekan", "Vazirmatn";
  color: #111111;
  margin-bottom: 2.4rem;
}
.title__caption.light {
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .title__caption {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .title__caption {
    font-size: 4rem;
  }
}

.title__text {
  font: normal 400 1.6rem/1.7 "Iranyekan", "Vazirmatn";
  color: #444444;
  max-width: 800px;
  margin: 0 auto 3.2rem;
}
.title__text.light {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 992px) {
  .title__text {
    max-width: 600px;
  }
}

.title__colors {
  margin: 0 auto;
}
.title__colors > div {
  display: inline-block;
  width: 50px;
  height: 50px;
  -moz-border-radius: 50%;
       border-radius: 50%;
}
.title__colors > div.colors__base {
  margin-right: -34px;
}
@media only screen and (min-width: 768px) {
  .title__colors > div {
    width: 72px;
    height: 72px;
  }
  .title__colors > div.colors__base {
    margin-right: -48px;
  }
}

.background-color-1 {
  background-color: #191919;
}

.gradient-color-1 {
  background: -moz-linear-gradient(315deg, #b721ff 0%, #21d4fd 100%);
  background: -o-linear-gradient(315deg, #b721ff 0%, #21d4fd 100%);
  background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
}

.background-color-2 {
  background-color: #ffffff;
}

.gradient-color-2 {
  background: -moz-linear-gradient(315deg, #F52587 0%, #F8B538 100%);
  background: -o-linear-gradient(315deg, #F52587 0%, #F8B538 100%);
  background: linear-gradient(135deg, #F52587 0%, #F8B538 100%);
}

.links__caption {
  text-align: center;
}
.links__caption p {
  margin-top: 1.4rem;
  font: normal 600 1.4rem/1.7 "Iranyekan", "Vazirmatn";
  color: #111111;
}
.links__caption p.light {
  color: #ffffff;
}

.subscribe__title .title {
  font: normal 600 2.8rem/1.2 "Iranyekan", "Vazirmatn";
  color: #ffffff;
  margin: 0 0 2.4rem 0;
}
.subscribe__title .title.light {
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .subscribe__title .title {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .subscribe__title .title {
    font-size: 4rem;
  }
}

.footer p {
  font: normal 400 1.6rem/1.2 "Iranyekan", "Vazirmatn";
  text-align: center;
  color: #111111;
}
.footer a {
  font: normal 600 1.6rem/1.2 "Iranyekan", "Vazirmatn";
  color: #111111;
}
.no-touch .footer a:hover {
  color: #b721ff;
}
.footer i {
  color: #b721ff;
}
.footer i::before {
  background: -webkit-linear-gradient(-45deg, #b721ff 0%, #21d4fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ------------------------------------------------*/
/* Typography End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Buttons & Triggers Start */
/* ------------------------------------------------*/
.btn {
  position: relative;
  display: block;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}

.btn-l .btn-caption {
  position: relative;
  display: block;
  height: 54px;
  padding: 0 4rem;
  font: normal 700 1.4rem/54px "Iranyekan", "Vazirmatn";
  color: #ffffff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.btn-l .btn-border {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
}
.btn-l .btn-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(315deg, #b721ff 0%, #21d4fd 100%);
  background: -o-linear-gradient(315deg, #b721ff 0%, #21d4fd 100%);
  background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
  -webkit-transform: translateY(50px);
     -moz-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.no-touch .btn-l:hover .btn-caption {
  color: #111111;
}
.no-touch .btn-l:hover .btn-hover {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.btn-popup {
  margin: 0 auto;
}

.btn-cart {
  width: 100%;
}
.btn-cart i,
.btn-cart .btn-caption {
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.btn-cart i {
  font-size: 1.4rem;
  color: #ffffff;
  padding: 0 0.4rem 0 4rem;
}
.btn-cart .btn-caption {
  padding: 0 4rem 0 0;
}
.no-touch .btn-cart:hover i {
  color: #111111;
}
.no-touch .btn-cart:hover .btn-caption {
  color: #111111;
}
@media only screen and (min-width: 768px) {
  .btn-cart {
    width: auto;
  }
}

.to-top {
  display: inline-block;
  width: 4.4rem;
  height: 4.4rem;
  line-height: 4.4rem;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: -moz-linear-gradient(315deg, #b721ff 0%, #21d4fd 100%);
  background: -o-linear-gradient(315deg, #b721ff 0%, #21d4fd 100%);
  background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
  overflow: hidden;
  z-index: 3;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.no-touch .to-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
  opacity: 1;
  color: #ffffff;
}
.to-top.is-visible, .to-top.fade-out {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.to-top.is-visible {
  visibility: visible;
  opacity: 1;
}
.to-top.fade-out {
  opacity: 0.4;
}
@media only screen and (min-width: 768px) {
  .to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
}

/* ------------------------------------------------*/
/* Buttons & Triggers End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Intro Start */
/* ------------------------------------------------*/
.intro {
  position: relative;
  background-color: #252525;
  background-image: url("../img/demo/bg-1.png");
  background-position: -80px 100px;
  background-repeat: no-repeat;
  -moz-background-size: 800px;
       background-size: 800px;
}
@media only screen and (min-width: 768px) {
  .intro {
    background-position: center 200px;
    padding-bottom: 160px;
    -moz-background-size: 100%;
         background-size: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .intro {
    background-position: center 150px;
    padding-bottom: 240px;
    -moz-background-size: 90%;
         background-size: 90%;
  }
}
@media only screen and (min-width: 1400px) {
  .intro {
    background-position: center 162px;
    padding-bottom: 400px;
    -moz-background-size: auto;
         background-size: auto;
  }
}

.intro__header {
  position: relative;
  padding: 5rem -moz-calc(10% - 1.5rem) 0 -moz-calc(10% - 1.5rem);
  padding: 5rem calc(10% - 1.5rem) 0 calc(10% - 1.5rem);
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .intro__header {
    padding: 5rem 8.5rem 0 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .intro__header {
    padding: 8rem 12.5rem 0 12.5rem;
  }
}

.header__logo {
  text-align: center;
  margin-bottom: 3rem;
}
.header__logo img {
  width: auto;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .header__logo {
    margin-bottom: 0;
    padding-top: 1rem;
    text-align: left;
  }
  .header__logo img {
    margin: 0;
  }
}

.header__buttons {
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .header__buttons {
    text-align: left;
  }
}

.intro__content {
  position: relative;
  text-align: center;
}

.headline {
  padding: 10rem -moz-calc(10% - 1.5rem);
  padding: 10rem calc(10% - 1.5rem);
}
@media only screen and (min-width: 768px) {
  .headline {
    padding: 12rem -moz-calc(10% - 15px);
    padding: 12rem calc(10% - 15px);
  }
}
@media only screen and (min-width: 1200px) {
  .headline {
    padding: 10rem 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .headline {
    padding: 12rem 12.5rem;
  }
}

.intro__illustrations {
  position: absolute;
  left: 0;
  bottom: -190px;
  width: 100%;
  height: 227px;
  overflow: hidden;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .intro__illustrations {
    height: 497px;
    bottom: -230px;
  }
}
@media only screen and (min-width: 992px) {
  .intro__illustrations {
    bottom: -354px;
    height: 671px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro__illustrations {
    bottom: -450px;
    height: 941px;
  }
}

.illustration-1 {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 320px;
  height: 227px;
  background-image: url("../img/demo/bg-3.png");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .illustration-1 {
    width: 700px;
    height: 497px;
  }
}
@media only screen and (min-width: 992px) {
  .illustration-1 {
    width: 946px;
    height: 671px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-1 {
    width: 1326px;
    height: 941px;
  }
}

.illustration-2, .illustration-3, .illustration-4, .illustration-5 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .illustration-2, .illustration-3, .illustration-4, .illustration-5 {
    display: block;
  }
}

.illustration-2 {
  position: absolute;
  left: 66px;
  top: 200px;
  width: 516px;
  height: 290px;
  background-image: url("../img/demo/bg-4.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
     -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media only screen and (min-width: 1200px) {
  .illustration-2 {
    left: 38px;
    top: 140px;
    width: 360px;
    height: 202px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-2 {
    left: 50px;
    top: 200px;
    width: 516px;
    height: 290px;
  }
}

.illustration-3 {
  position: absolute;
  left: 118px;
  top: 414px;
  width: 300px;
  height: 225px;
  background-image: url("../img/demo/bg-5.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
@media only screen and (min-width: 1200px) {
  .illustration-3 {
    left: 86px;
    top: 280px;
    width: 208px;
    height: 233px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-3 {
    left: 110px;
    top: 380px;
    width: 300px;
    height: 337px;
  }
}

.illustration-4 {
  position: absolute;
  right: 60px;
  top: 240px;
  width: 516px;
  height: 290px;
  background-image: url("../img/demo/bg-7.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
     -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media only screen and (min-width: 1200px) {
  .illustration-4 {
    right: 60px;
    top: 170px;
    width: 360px;
    height: 202px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-4 {
    width: 516px;
    height: 290px;
  }
}

.illustration-5 {
  position: absolute;
  right: -120px;
  top: 420px;
  width: 516px;
  height: 290px;
  background-image: url("../img/demo/bg-6.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
@media only screen and (min-width: 1200px) {
  .illustration-5 {
    right: -80px;
    top: 300px;
    width: 360px;
    height: 202px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-5 {
    right: -120px;
    top: 400px;
    width: 516px;
    height: 290px;
  }
}

/* ------------------------------------------------*/
/* Intro End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Preview Sections Start */
/* ------------------------------------------------*/
.demo {
  padding: 5rem 0;
}
.demo.first-section {
  padding: 19rem 0 5rem 0;
  background-image: url("../img/demo/bg-2-s.jpg");
  background-position: 0 0;
  -moz-background-size: 1250px;
       background-size: 1250px;
  background-repeat: repeat-x;
}
@media only screen and (min-width: 768px) {
  .demo.first-section {
    padding-top: 23rem;
  }
}
@media only screen and (min-width: 992px) {
  .demo.first-section {
    padding-top: 32rem;
    -moz-background-size: 1400px;
         background-size: 1400px;
    background-image: url("../img/demo/bg-2.jpg");
  }
}
@media only screen and (min-width: 1400px) {
  .demo {
    padding: 6rem 0;
  }
  .demo.first-section {
    -moz-background-size: 1600px;
         background-size: 1600px;
    padding-top: 41rem;
    padding-bottom: 6rem;
  }
}

/* ------------------------------------------------*/
/* Preview Sections End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Headline Start */
/* ------------------------------------------------*/
.demo__title {
  position: relative;
  width: 100%;
  padding: 5rem -moz-calc(10% - 1.5rem);
  padding: 5rem calc(10% - 1.5rem);
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .demo__title {
    padding: 5rem 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .demo__title {
    padding: 6rem 12.5rem;
  }
}

/* ------------------------------------------------*/
/* Sections Headline End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Preview Links Start */
/* ------------------------------------------------*/
.demo__links {
  position: relative;
  padding: 0 -moz-calc(10% - 1.5rem);
  padding: 0 calc(10% - 1.5rem);
}
.demo__links a {
  display: block;
}
.no-touch .demo__links a:hover .links__image {
  -webkit-transform: translateY(-1.6rem);
     -moz-transform: translateY(-1.6rem);
      -ms-transform: translateY(-1.6rem);
          transform: translateY(-1.6rem);
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1200px) {
  .demo__links {
    padding: 0 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .demo__links {
    padding: 0 12.5rem;
  }
}

.links__item {
  position: relative;
  margin-bottom: 5rem;
}
@media only screen and (min-width: 1200px) {
  .links__item.left {
    margin-right: 1.5rem;
  }
  .links__item.right {
    margin-left: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .links__item {
    margin-bottom: 6rem;
  }
}

.links__image {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.06), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.06), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.06), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
  -o-transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
  -moz-transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
  transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
}

.links__caption {
  display: block;
  text-align: center;
}

/* ------------------------------------------------*/
/* Preview Links End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Subscribe Section Start */
/* ------------------------------------------------*/
.subscribe {
  position: relative;
  padding: 10rem -moz-calc(10% - 1.5rem);
  padding: 10rem calc(10% - 1.5rem);
  background-color: #ffffff;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  background-attachment: fixed;
  background-image: url("../img/demo/bg-demo-subscribe.jpg");
}
@media only screen and (min-width: 1200px) {
  .subscribe {
    padding: 10rem 8.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .subscribe {
    padding: 12rem 12.5rem;
  }
}

.subscribe__container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.subscribe__form {
  position: relative;
  margin: 0 auto;
}

.reply-group {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  text-align: center;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.reply-group.is-visible {
  opacity: 1;
}

.reply-group__icon {
  display: block;
  position: relative;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
}
.reply-group__icon::before {
  background: -webkit-linear-gradient(-45deg, #b721ff 0%, #21d4fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reply-group__title {
  font: normal 600 2.2rem/1.2 "Iranyekan", "Vazirmatn";
  color: #111111;
  margin-top: 1rem;
}
.reply-group__title.light {
  color: #ffffff;
}

.reply-group__text {
  display: block;
  font: normal 400 1.6rem/1.7 "Iranyekan", "Vazirmatn";
  color: #111111;
  margin-top: 0.6rem;
}
.reply-group__text.light {
  color: rgba(255, 255, 255, 0.7);
}

.form {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.form.is-hidden {
  opacity: 0;
}

.form {
  position: relative;
  width: 100%;
}
.form input, .form textarea {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  padding: 1.2rem 0.3rem;
  font: normal 400 1.6rem/1.7 "Iranyekan", "Vazirmatn";
  -webkit-transition: border-bottom 0.6s;
  -o-transition: border-bottom 0.6s;
  -moz-transition: border-bottom 0.6s;
  transition: border-bottom 0.6s;
}
.form input {
  height: 5rem;
  margin: 0 0 2.4rem 0;
}

.form-light input, .form-light textarea {
  font-weight: 300;
}
.form-light ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-light :-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-light ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-light :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-light input:focus:required:invalid,
.form-light textarea:focus:required:invalid {
  color: #ffffff;
}
.form-light input:required:valid,
.form-light textarea:required:valid {
  color: #ffffff;
}
.form-light input, .form-light textarea {
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}
.form-light input:focus, .form-light textarea:focus {
  border-bottom: 1px solid #b3b3b3;
}
.form-light .inputs-description {
  color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------------*/
/* Subscribe Section End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Footer Start */
/* ------------------------------------------------*/
.footer {
  position: relative;
  padding: 5rem 10%;
}
@media only screen and (min-width: 1200px) {
  .footer {
    padding: 5rem 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer {
    padding: 5rem 12.5rem;
  }
}

/* ------------------------------------------------*/
/* Footer End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations Start */
/* ------------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
    opacity: 0;
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-moz-keyframes slideInUp {
  from {
    -moz-transform: translate3d(0, 50px, 0);
         transform: translate3d(0, 50px, 0);
    opacity: 0;
    visibility: visible;
  }
  to {
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
       -moz-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
    opacity: 0;
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* ------------------------------------------------*/
/* Animations End */
/* ------------------------------------------------*/