@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 2vw;
}

.layout {
  background-image: radial-gradient(circle 343px at 46.3% 47.5%, #f9f9f9 0%, #f1f0f1 72.9%);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.top-nav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: top .75s ease-in;
  background-color: #e8e8e8;
  z-index: 10;
}

.top-nav .menu {
  list-style: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.top-nav .menu li a {
  display: flex;
  min-width: 75px;
  margin: .3em 0;
  padding: 0 10px;
  transition: 1s all;
  text-decoration: none;
  font-weight: 500;
}

.top-nav .menu li a:link, .top-nav .menu li a:visited {
  color: #0d0d0d;
}

.top-nav .logo {
  display: inline-block;
  width: 150px;
}

.top-nav .menu-icon {
  cursor: pointer;
  display: inline-block;
  padding: 18px 20px;
}

.top-nav .menu-icon .navicon {
  background: #20232d;
  display: block;
  height: 2px;
  position: relative;
  width: 1.625rem;
}

.top-nav .menu-icon .navicon:before, .top-nav .menu-icon .navicon:after {
  background: #20232d;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

.top-nav .menu-icon .navicon:before {
  top: 7px;
}

.top-nav .menu-icon .navicon:after {
  top: -7px;
}

.top-nav .menu-btn {
  display: none;
}

.top-nav .menu-btn:checked ~ .menu {
  max-height: 300px;
}

.top-nav .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.top-nav .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.top-nav .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.top-nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .top-nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.content h3 {
  font-size: 2.2em;
  font-weight: 800;
  line-height: 1.3em;
  margin-bottom: 1vw;
}

.content p {
  color: #444d56;
  font-size: 14px;
  line-height: 1.7em;
}

.lineNavW {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 2vw;
  align-items: center;
}

.lineNavW input {
  font-size: 14px;
  border-radius: 16px;
  background-color: #fff;
  outline: none;
  border: 1px solid #ccc;
  padding: 4px 10px;
  margin-right: 10px;
}

.logo a svg, .logo a img {
  width: 150px;
  height: auto;
  object-fit: contain;
  fill: #eb7353;
}

.navW {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
}

.navW ul {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style-type: none;
  justify-content: space-between;
}

.navW ul .entersite {
  line-height: 0;
}

.navW ul .entersite a {
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  border-radius: 50%;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
}

.navW ul .entersite a ion-icon {
  transition: .2s linear;
}

.navW ul .entersite a:hover ion-icon {
  color: #fff;
}

.navW ul li {
  font-size: 12px;
}

.navW ul li:last-of-type {
  margin-right: 0;
}

.navW ul li a {
  color: #444d56;
  text-decoration: none;
  font-weight: 500;
}

.mainsec {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.mainsec .phone {
  z-index: 0;
  width: 700px;
  height: 700px;
  background-image: url("/assets/images/iphone_mockup.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0%;
  right: 10%;
}

.mainMessageW {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #202432;
}

.mainMessageW h1 {
  font-size: 3.2em;
  font-weight: 800;
  line-height: 1.3em;
  margin-bottom: 2vw;
}

.mainMessageW p {
  color: #444d56;
  font-size: 14px;
  line-height: 1.7em;
}

.videoform {
  position: absolute;
  left: 5%;
  bottom: 5%;
  z-index: 1;
}

.getChoice {
  display: flex;
  flex-direction: row;
  padding: 2vw 0vw;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  justify-content: baseline;
}

.getChoice .choiceL {
  margin-right: 3vw;
}

.getChoice .choiceL a {
  padding: 20px 25px;
  border-radius: 16px;
  color: #0b0f1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  font-weight: 600;
}

.getChoice .choiceR {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.getChoice .choiceR a {
  color: #0b0f1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #eb7353;
  border-bottom: 2px solid #eb7353;
  font-weight: 600;
}

.message {
  display: flex;
  flex-direction: row;
  padding: 10px 0px;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  color: #538ff3;
}

.message span {
  padding-left: 10px;
}

.advantage {
  position: absolute;
  width: 170px;
  height: 75px;
  background-color: #fff;
  border-radius: 15px;
  right: 5%;
  top: 25%;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  line-height: 1.5em;
  color: #202432;
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.2);
}

.circle {
  width: 900px;
  height: 900px;
  border-radius: 50%;
  position: absolute;
  right: -5%;
  top: 15%;
  background-color: #fafafa73;
}

.adimg1 {
  right: 13%;
  top: 19%;
  display: flex;
  flex-direction: row;
  width: 200px;
}

.adimg1 .advantageavatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  display: flex;
  overflow: hidden;
  margin-right: 12px;
}

.adimg1 .advantageavatar img {
  display: flex;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transform: rotate(20deg);
}

.adimg2 {
  right: 38%;
  top: 36%;
}

.adimg2 .appStoreIco {
  display: flex;
  position: absolute;
  width: 100%;
}

.adimg2 .appStoreIco img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: flex;
  margin-right: 10px;
  position: absolute;
  left: -20px;
  bottom: -78px;
  transform: rotate(16deg);
  border-radius: 50%;
}

.adimg2 .appStoreIco img:last-of-type {
  margin-right: 0;
  left: -45px;
  top: -55px;
  transform: rotate(-22deg);
  border-radius: 0%;
}

.adimg3 {
  right: 40%;
  top: 15%;
  height: auto;
}

.adimg3 .getcomments {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}

.adimg3 .getcomments .getcomm1 {
  width: 40%;
  height: 7px;
  margin-bottom: 6px;
  background-color: #444d56;
  border-radius: 5px;
}

.adimg3 .getcomments .getcomm1:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 15%;
  width: 0;
  height: 0;
  border-top: 30px solid #fff;
  border-right: 30px solid transparent;
}

.adimg3 .getcomments .getcomm2 {
  width: 28%;
  height: 7px;
  margin-bottom: 6px;
  background-color: silver;
  border-radius: 5px;
}

.adimg3 .getcomments .getcomm3 {
  width: 65%;
  height: 7px;
  margin-bottom: 6px;
  background-color: #444d56;
  border-radius: 5px;
}

.fastRun {
  font-size: 12px;
  font-weight: 600;
  padding: 1vw 0vw;
  color: #202432;
}

.fastRun ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

.fastRun ul li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.fastRun ul li:last-of-type {
  margin-right: 0;
}

.fastRun ul li .full {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #42c689;
}

.fastRun ul li .full ion-icon {
  margin-right: 5px;
  font-size: 22px;
}

.sec {
  background-image: radial-gradient(circle 343px at 46.3% 47.5%, #f9f9f9 0%, #f1f0f1 72.9%);
  padding: 4vw 0;
  z-index: 1;
  position: relative;
  padding-top: 0;
}

.nog {
  background-image: unset;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2vw;
}

.steps .step {
  display: flex;
  flex-direction: column;
  padding: 4vw 0vw;
  position: relative;
}

.steps .step:after {
  content: '';
  width: 100%;
  height: 1px;
  display: flex;
  position: absolute;
  left: 15%;
  top: 33%;
  border-bottom: 1px dashed rgba(120, 120, 120, 0.2);
  z-index: -1;
}

.steps .step:before {
  content: '';
  width: 10px;
  height: 10px;
  display: flex;
  position: absolute;
  border-radius: 50%;
  left: 64%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 31.3%;
  border: 1px solid rgba(120, 120, 120, 0.2);
  z-index: 1;
}

.steps .step .stepIco {
  width: 70px;
  height: 70px;
  border-radius: 26px;
  border-top-left-radius: 15px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 25px;
  margin-bottom: 25px;
  background-color: #42c689;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 2em;
  position: relative;
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.5);
}

.steps .step .stepNumber {
  position: absolute;
  width: 20px;
  height: 20px;
  border-top-left-radius: 25px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #444d56;
  bottom: 0;
  right: 0;
  font-size: 11px;
  background-color: #fff;
  padding: 4px;
}

.steps .step .stepIco1 {
  background-color: #42c689;
}

.steps .step .stepIco2 {
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
}

.steps .step .stepIco3 {
  background-color: #ab94fe;
}

.steps .step .stepIco4 {
  background-color: #538ff3;
}

.steps .step .stepDesc p {
  color: #202432;
  font-size: 14px;
  line-height: 1.7em;
}

.adimg11 {
  display: flex;
  flex-direction: row;
  width: 200px;
  top: 39%;
  right: 7%;
}

.adimg11:after {
  width: 20px;
  height: 20px;
  content: '';
  transform: rotate(45deg) translateX(-50%);
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -13px;
  left: 50%;
}

.adimg11 .advantageavatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  overflow: hidden;
  margin-right: 12px;
}

.adimg11 .advantagedesc {
  display: flex;
  flex-direction: column;
}

.adimg11 .advantagedesc span:nth-of-type(1) {
  font-weight: 600;
}

.adimg11 .advantagedesc span:nth-of-type(2) {
  font-weight: 600;
  color: #444d56;
  font-size: 9px;
  text-transform: uppercase;
}

.adimg11 .advantagedesc ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin-top: 2px;
}

.adimg11 .advantagedesc ul li {
  margin-right: 5px;
}

.adimg11 .advantagedesc ul li:last-of-type {
  margin-right: 0;
}

.adimg11 .advantagedesc ul li ion-icon {
  font-size: 15px;
  color: #ffdc60;
}

.faceOk, .faceOk2, .faceOk3, .faceOk4 {
  position: absolute;
  right: 12%;
  top: 55%;
  background-image: url("https://media0.giphy.com/media/f5voQIM2GP1tkAT8J6/giphy.gif");
  background-size: cover;
  background-position: center center;
  width: 70px;
  height: 70px;
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.2);
  border-radius: 50%;
  z-index: 2;
}

.faceOk .done, .faceOk2 .done, .faceOk3 .done, .faceOk4 .done {
  right: 10%;
  top: -5%;
  position: absolute;
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.2);
}

.faceOk .done .full, .faceOk2 .done .full, .faceOk3 .done .full, .faceOk4 .done .full {
  width: 18px;
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.2);
  height: 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #42c689;
  padding: 4px;
  border-radius: 50%;
  background-color: #fff;
}

.faceOk .done .full ion-icon, .faceOk2 .done .full ion-icon, .faceOk3 .done .full ion-icon, .faceOk4 .done .full ion-icon {
  font-size: 14px;
  font-weight: 900;
}

.faceOk2 {
  right: 17%;
  width: 65px;
  height: 65px;
  top: 68%;
  background-image: url("https://i.pinimg.com/originals/a5/28/55/a528559ca4b79754d7691b5ead811b80.gif");
}

.faceOk3 {
  right: 27%;
  width: 85px;
  height: 85px;
  top: 88%;
  background-image: url("https://64.media.tumblr.com/f3361f99bc274d219f7839578d2314ea/tumblr_mfrs1yRqxT1rdutw3o1_400.gif");
}

.faceOk4 {
  right: 12%;
  width: 85px;
  height: 85px;
  top: 98%;
  background-image: url("https://i.pinimg.com/originals/2d/0d/9e/2d0d9e9208292824468053e5018135ac.gif");
}

.problemHelp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0;
  padding: 2vw 0vw 0 0vw;
}

.problemHelp .problem {
  transition: .6s ease;
  padding: 2vw;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  transition: .3s ease;
}

.problemHelp .problem .problemSvg {
  width: 80px;
  height: 70px;
  display: none;
  flex-direction: column;
}

.problemHelp .problem .problemSvg img {
  width: 90px;
  height: 50px;
  display: flex;
  object-fit: contain;
}

.problemHelp .problem .problemTitle {
  position: relative;
  z-index: 1;
}

.problemHelp .problem .problemTitle h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 1vw;
}

.problemHelp .problem .problemDesc {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.problemHelp .problem .problemDesc p {
  color: #444d56;
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
}

.probW {
  border-radius: 16px;
  background-image: radial-gradient(circle 1243px at 26.3% 47.5%, rgba(220, 220, 220, 0.11) 0%, rgba(245, 245, 245, 0.81) 12.9%);
  padding: 4vw;
}

.probW h3 {
  max-width: 850px;
}

.probW .mainimg {
  padding-top: 2vw;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  overflow: hidden;
}

.probW .mainimg img {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  height: auto;
  max-height: 600px;
  display: flex;
  object-fit: cover;
}

.letstalkIco {
  position: relative;
  width: 150px;
  height: 60px;
  border-radius: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.2);
  background-color: #fff;
  margin-bottom: 2vw;
}

.letstalkIco:after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0%;
  transform: rotate(-60deg);
  width: 0;
  height: 0;
  border-top: 30px solid #fff;
  border-right: 30px solid transparent;
  border-radius: 10px;
}

.letstalkIco > div {
  width: 15px;
  height: 15px;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  margin-right: 10px;
  border-radius: 50%;
  opacity: 1;
  top: 25%;
  position: absolute;
  transform: translateY(-2px);
}

.letstalkIco > div:nth-of-type(1) {
  left: 35px;
  animation: bounce .6s ease-in infinite alternate;
}

.letstalkIco > div:nth-of-type(2) {
  left: 65px;
  animation: bounce .6s ease-in .1s infinite alternate;
}

.letstalkIco > div:nth-of-type(3) {
  left: 95px;
  animation: bounce .6s ease-in .2s infinite alternate;
}

.letstalkIco > div:last-of-type {
  margin-right: 0;
}

.oh {
  overflow: hidden;
}

/* ANIMATION */
@keyframes bounce {
  100% {
    top: 42%;
    text-shadow: 0 1px 0 #CCC, 0 2px 0 #CCC, 0 3px 0 #CCC, 0 4px 0 #CCC, 0 5px 0 #CCC, 0 6px 0 #CCC, 0 7px 0 #CCC, 0 8px 0 #CCC, 0 9px 0 #CCC, 0 30px 30px rgba(0, 0, 0, 0.3);
  }
}

.plansW {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2vw;
  margin: 4vw 0vw;
}

.plansW .plan {
  background-image: radial-gradient(circle 343px at 26.3% 47.5%, rgba(220, 220, 220, 0.21) 0%, rgba(245, 245, 245, 0.81) 12.9%);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 32px;
}

.plansW .plan .fastRun ul {
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.plansW .plan .fastRun ul li {
  justify-content: unset;
}

.plansW .plan .planTitle h4 {
  font-size: 1.3em;
  font-weight: 800;
  text-transform: uppercase;
}

.plansW .plan .planDesc {
  min-height: 100px;
}

.plansW .plan .planBuy {
  font-size: .9em;
  margin: 24px 0;
}

.plansW .plan .planBuy a {
  padding: 14px 25px;
  border-radius: 16px;
  color: #0b0f1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  font-weight: 600;
}

.plansW .plan .planPrice {
  font-size: 1.3em;
  font-weight: 800;
}

.plansW .plan .planPrice span:nth-of-type(2) {
  font-size: .6em;
}

.plansW .plan .planList {
  margin: 15px 0;
}

.plansW .plan .planList p {
  font-size: 12px;
  margin-bottom: 12px;
  color: #444d56;
  font-weight: 600;
  line-height: 1.7em;
  margin: 15px;
}

.plansW .plan .planList ul {
  padding: 0;
}

.plansW .plan .planList ul li {
  font-size: 12px;
  margin-bottom: 12px;
  color: #444d56;
  font-weight: 600;
  line-height: 1.7em;
}

.plansW .plan .planMoreInfo {
  font-size: 13px;
}

.plansW .plan .planMoreInfo a {
  text-decoration: none;
  border-bottom: 1px dashed #444d56;
  color: #444d56;
}

.fromWhoW {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2vw;
  padding: 4vw 0 0 0;
  z-index: 2;
}

.fromWhoW .fromWhoBlock {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(222, 222, 222, 0.37);
  transition: .3s ease;
  background-image: radial-gradient(circle 1243px at 26.3% 47.5%, rgba(220, 220, 220, 0.21) 0%, rgba(245, 245, 245, 0.81) 12.9%);
}

.fromWhoW .fromWhoBlock:hover {
  box-shadow: 0 150px 160px -60px rgba(250, 124, 52, 0.3);
  transform: rotate(-2deg) scale(1.02);
  z-index: 2;
  position: relative;
}

.fromWhoW .fromWhoBlock .fromWhoIco {
  margin-bottom: 15px;
}

.fromWhoW .fromWhoBlock .fromWhoIco ion-icon {
  font-size: 2em;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0b0f1d;
  border-radius: 16px;
  color: #fff;
  background-image: radial-gradient(circle 343px at 26.3% 47.5%, #0b0f1d 0%, rgba(44, 44, 44, 0.81) 12.9%);
}

.fromWhoW .fromWhoBlock .fromWhoTitle h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 1vw;
}

.fromWhoW .fromWhoBlock .fromWhoDesc p {
  color: #444d56;
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
}

.primary-table {
  font-size: 1em;
}

.primary-table td, .primary-table th {
  padding: 7px;
  line-height: 1.7em;
}

.primary-table td {
  border-bottom: 1px solid rgba(222, 222, 222, 0.57);
  text-align: center;
}

.primary-table td:nth-of-type(1) {
  text-align: left;
  font-size: 0.9em;
}

.primary-table td:nth-of-type(4n) {
  background-color: rgba(250, 250, 250, 0.7);
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.2);
}

.primary-table th:nth-of-type(4n) {
  background-color: rgba(250, 250, 250, 0.7);
  box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.2);
  padding: 25px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  min-width: 180px;
}

.primary-table th:nth-of-type(2) {
  padding: 25px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  min-width: 180px;
}

.primary-table th:nth-of-type(4) {
  padding: 25px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  min-width: 180px;
}

.primary-table th:nth-of-type(5) {
  padding: 25px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  min-width: 180px;
}

.primary-table .full, .primary-table .disabled {
  text-align: center;
}

.primary-table .full ion-icon, .primary-table .disabled ion-icon {
  color: #42c689;
  font-size: 22px;
}

.primary-table .disabled ion-icon {
  color: #c7c9d0;
}

.primary-table tbody td {
  font-weight: 600;
  color: #444d56;
}

.primary-table .name {
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 2em;
}

.primary-table .name:nth-of-type(1) {
  color: #202432;
}

.primary-table .price {
  color: #ab94fe;
}

.primary-table .save {
  color: #444d56;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 0.7em;
}

.primary-table .SecondaryText-sc-15ajbez-0 {
  color: silver;
}

footer {
  width: 100%;
  padding: 4vw 0vw;
  padding-bottom: 0;
}

footer .footerG {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

footer .footerG .fcol {
  display: flex;
  flex-direction: column;
  padding: 4vw;
}

footer .footerG .fcol h4 {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 25px;
}

footer .footerG .fcol ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  font-size: 15px;
}

footer .footerG .fcol ul li {
  margin-bottom: 15px;
}

footer .footerG .fcol ul li a {
  color: #000;
  text-decoration: none;
  transition: .2s linear;
  font-size: 0.85em;
  font-weight: 500;
}

footer .footerG .fcol ul li a:hover {
  border-bottom: 1px solid #000;
}

footer .footerG .fcol:last-of-type ul {
  flex-direction: row;
}

footer .footerG .fcol:last-of-type ul li {
  margin-right: 15px;
}

footer .footerG .fcol:last-of-type ul li a img {
  width: 25px;
  height: 25px;
  display: flex;
  object-fit: contain;
}

.herosec {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.herosec video {
  width: 100%;
  height: 100%;
}

.priceG {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4vw;
  padding: 2vw 0vw 0 0;
}

.priceG .priceBlock {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(222, 222, 222, 0.37);
  transition: .3s ease;
  background-image: radial-gradient(circle 1243px at 26.3% 47.5%, rgba(220, 220, 220, 0.21) 0%, rgba(245, 245, 245, 0.81) 12.9%);
}

.priceG .priceBlock .pricesec {
  padding: 25px 0px;
}

.priceG .priceBlock .pricesec .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 0px;
}

.priceG .priceBlock .pricesec .price .priceDollar {
  font-size: 2.5em;
  font-weight: 700;
}

.priceG .priceBlock .pricesec .price .priceDollar .dollarsym {
  display: inline-flex;
  font-size: .6em;
  font-weight: 900;
}

.priceG .priceBlock .pricesec .price .pricePerMonthW {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.priceG .priceBlock .pricesec .price .pricePerMonthW .pricePerMonth {
  font-size: 0.85em;
  color: silver;
}

.priceG .priceBlock .pricesec .priceTitle {
  font-size: .85em;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 5%;
  left: -5%;
  padding: 4px 10px;
  border-radius: 15px;
  width: 100%;
}

.priceG .priceBlock .pricesec .priceTitle .priceTitleName {
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 15px;
  padding: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 25px;
}

.priceG .priceBlock .pricesec .priceTitle .priceOne {
  background-color: #0093e9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.priceG .priceBlock .pricesec .priceTitle .priceTwo {
  background-color: #21D4FD;
  background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
}

.priceG .priceBlock .pricesec .priceTitle .priceThree {
  background-color: #FBAB7E;
  background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
}

.priceG .priceBlock .pricesec .priceTitle .priceFour {
  background-color: #ff5d00;
  background-image: linear-gradient(62deg, #ff5d00 0%, #ffc126 100%);
}

.priceG .priceBlock .pricesec .priceDesc .pricedesctitle {
  margin-bottom: 25px;
  font-weight: 600;
}

.priceG .priceBlock .pricesec .priceDesc ul {
  list-style-type: none;
}

.priceG .priceBlock .pricesec .priceDesc ul li {
  margin-bottom: 10px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.7em;
}

.priceG .priceBlock .pricesec .priceDesc ul li ion-icon {
  margin-right: 2px;
  background-color: #fea621;
  color: #fff;
  border-radius: 50%;
  position: relative;
  top: 2px;
}

.priceG .priceBlock .pricesec .priceDesc ul li .lidot {
  width: 15px;
  height: 15px;
  background-color: #f35;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  margin-right: 5px;
}

.priceG .priceBlock .priceBtnW {
  display: flex;
  width: 100%;
  padding: 32px 0px;
}

.priceG .priceBlock .priceBtnW .priceBtn {
  padding: 14px 25px;
  border-radius: 16px;
  color: #0b0f1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  font-weight: 600;
  font-size: 0.85em;
  cursor: pointer;
}

.priceG .priceBlock:nth-of-type(1):hover {
  box-shadow: 0 150px 160px -60px rgba(0, 147, 233, 0.3);
}

.priceG .priceBlock:nth-of-type(2):hover {
  box-shadow: 0 150px 160px -60px rgba(33, 212, 253, 0.3);
}

.priceG .priceBlock:nth-of-type(3):hover {
  box-shadow: 0 150px 160px -60px rgba(251, 171, 126, 0.3);
}

.priceG .priceBlock:nth-of-type(4):hover {
  box-shadow: 0 150px 160px -60px rgba(254, 166, 33, 0.3);
}

.priceG .priceBlockWild {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  position: relative;
  overflow: hidden;
}

.priceG .priceBlockWild .pricesec {
  padding-bottom: 0;
}

.priceG .priceBlockWild .pricesec .price {
  align-items: unset;
  padding-bottom: 15px;
}

.priceG .priceBlockWild .pricesec .price .pricePerMonthW {
  align-items: flex-start;
}

.priceG .priceBlockWild .pricesec .priceTitle {
  left: unset;
  padding: 8px 0px;
}

.priceG .priceBlockWild .priceBtnW {
  padding: 0;
}

.linesvg {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: auto;
}

.linesvg svg {
  opacity: 0.8;
}

.nav-down {
  padding: 15px 0px;
  background-color: #f1f0f1;
}

.nav-up {
  transition: .2s linear;
  background-color: #f1f0f1;
  padding: 10px 0px;
}

header {
  width: 100%;
  transition: top 0.2s ease-in-out;
  position: fixed;
  z-index: 1000;
  top: 0;
  transition: .3s ease-in-out;
}

.logo {
  font-weight: 600;
}

.rbtnW {
  font-weight: 600;
  min-width: 200px;
  padding-right: 25px;
}

.mainherosec {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainherosec .content {
  padding-left: 5%;
  padding-right: 5%;
}

.mainherosec .herovideo {
  overflow: hidden;
  display: flex;
  position: relative;
  padding: 2vw 4vw;
  width: 100%;
}

.mainherosec .herovideo video {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mainherosec .herovideo .overlayvideobg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
}

.mainherosec .herovideo .getChoice {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 1;
  padding-left: 10%;
  padding-right: 10%;
  max-width: 1000px;
  margin: 0 auto;
}

.mainherosec .content .getChoice {
  position: relative;
  z-index: 2;
}

.mainherosec .content .message {
  color: #fff;
}

.mainherosec .content h1 {
  color: #fff;
  text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.31);
}

.menucontainer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 2vw 4vw;
}

nav {
  font-size: 0;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
}

nav ul {
  position: relative;
  z-index: 100;
  list-style-type: none;
}

nav > ul > li {
  display: flex;
  width: 100%;
  margin-bottom: 25px;
  font-size: 14px;
  position: relative;
  margin-right: 3vw;
}

nav > ul > li > a {
  font-size: 11.5px;
  text-transform: uppercase;
  color: #000;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  transition: all .3s ease;
  width: 100%;
  justify-content: center;
}

nav .navcontainer {
  z-index: 100;
  position: relative;
}

.mega-menu {
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: .2s linear;
  position: absolute;
  left: 0;
  transform: translateX(-20%);
  width: 100%;
  z-index: 1;
}

.mega-menu .menucontainer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 4vw;
  padding: 4vw;
}

.mega-menu .item {
  opacity: 0;
}

.mega-menu .item span {
  color: #000;
  font-size: 12.5px;
  display: flex;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.mega-menu .item img {
  width: 100%;
  height: auto;
  display: flex;
  object-fit: contain;
}

.mega-menu .item .imgblock {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mega-menu .item .imgblock img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: contain;
}

.mega-menu .item .imgblock .goverlay {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 33%;
  width: 100%;
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(5, 5, 5, 0.61) 100%);
}

.mega-menu .item .imgblock .imgblocktitle {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
  max-width: 80%;
}

.mega-menu .item .imgblock .imgblocktitle .imgblocklink {
  padding: 10px 0px;
}

.mega-menu .item .imgblock .imgblocktitle .imgblocklink a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 400;
  z-index: 1;
  text-decoration: underline;
}

.mega-menu ul {
  margin-bottom: 45px;
}

.mega-menu ul li {
  margin-bottom: 10px;
}

.mega-menu ul li a {
  color: #555;
  display: inline-flex;
  flex-direction: row;
  text-decoration: none;
  font-size: 11.5px;
}

.mega-menu ul li a:hover {
  color: #000;
  text-decoration: underline;
}

@keyframes megama {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

.dropdown {
  position: static;
}

.dropdown:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  animation: .2s megama forwards;
}

.dropdown:hover .item {
  opacity: 1;
}

.galleryG {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  width: 100%;
  padding: 2vw 0vw;
}

.galleryG .galleryblock {
  position: relative;
  display: flex;
  flex-direction: column;
}

.galleryG .galleryblock .galleryImg {
  max-height: 290px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0px;
}

.galleryG .galleryblock .galleryImg a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.galleryG .galleryblock .galleryImg a .galleryOverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, #0b0b0b 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0.8;
}

.galleryG .galleryblock .galleryImg a img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}

.galleryG .galleryblock .galleryyoutube {
  position: relative;
  display: flex;
  flex-direction: column;
}

.galleryG .galleryblock .galleryyoutube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

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

/* Styles for dialog window */
#small-dialog, #enter, #firstplan, #twoplan, #threeplan, #fourplan {
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 20px 30px;
  text-align: left;
  max-width: 700px;
  margin: 40px auto;
  position: relative;
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(222, 222, 222, 0.37);
  background-image: radial-gradient(circle 1243px at 26.3% 47.5%, rgba(220, 220, 220, 0.21) 0%, rgba(245, 245, 245, 0.81) 12.9%);
}

#small-dialog h5, #enter h5, #firstplan h5, #twoplan h5, #threeplan h5, #fourplan h5 {
  font-size: 2.2em;
  font-weight: 800;
  line-height: 1.3em;
  margin-bottom: 1vw;
}

#small-dialog p, #enter p, #firstplan p, #twoplan p, #threeplan p, #fourplan p {
  margin-bottom: 10px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.7em;
}

#small-dialog ul, #enter ul, #firstplan ul, #twoplan ul, #threeplan ul, #fourplan ul {
  list-style-type: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
}

#small-dialog ul li, #enter ul li, #firstplan ul li, #twoplan ul li, #threeplan ul li, #fourplan ul li {
  margin-bottom: 15px;
  margin-bottom: 10px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.7em;
}

#small-dialog .formW, #enter .formW, #firstplan .formW, #twoplan .formW, #threeplan .formW, #fourplan .formW {
  display: flex;
  flex-direction: column;
}

#small-dialog .formW .enterW, #enter .formW .enterW, #firstplan .formW .enterW, #twoplan .formW .enterW, #threeplan .formW .enterW, #fourplan .formW .enterW {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  grid-gap: 15px;
  margin: 15px 0px;
}

#small-dialog .formW .enterW span, #enter .formW .enterW span, #firstplan .formW .enterW span, #twoplan .formW .enterW span, #threeplan .formW .enterW span, #fourplan .formW .enterW span {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#small-dialog .formW .enterW .sendbtnW, #enter .formW .enterW .sendbtnW, #firstplan .formW .enterW .sendbtnW, #twoplan .formW .enterW .sendbtnW, #threeplan .formW .enterW .sendbtnW, #fourplan .formW .enterW .sendbtnW {
  grid-column: span 2;
}

#small-dialog .formW .enterW input, #enter .formW .enterW input, #firstplan .formW .enterW input, #twoplan .formW .enterW input, #threeplan .formW .enterW input, #fourplan .formW .enterW input {
  font-size: 14px;
  border-radius: 16px;
  background-color: #fff;
  outline: none;
  border: 1px solid #ccc;
  padding: 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#small-dialog .formW .enterW .priceBtn, #enter .formW .enterW .priceBtn, #firstplan .formW .enterW .priceBtn, #twoplan .formW .enterW .priceBtn, #threeplan .formW .enterW .priceBtn, #fourplan .formW .enterW .priceBtn {
  padding: 14px 25px;
  border-radius: 16px;
  border: 0;
  color: #0b0f1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  font-weight: 600;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

#small-dialog .enterW, #enter .enterW, #firstplan .enterW, #twoplan .enterW, #threeplan .enterW, #fourplan .enterW {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#small-dialog .enterW span, #enter .enterW span, #firstplan .enterW span, #twoplan .enterW span, #threeplan .enterW span, #fourplan .enterW span {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#small-dialog .enterW input, #enter .enterW input, #firstplan .enterW input, #twoplan .enterW input, #threeplan .enterW input, #fourplan .enterW input {
  font-size: 14px;
  border-radius: 16px;
  background-color: #fff;
  outline: none;
  border: 1px solid #ccc;
  padding: 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#small-dialog .enterW .wpcf7-submit, #enter .enterW .wpcf7-submit, #firstplan .enterW .wpcf7-submit, #twoplan .enterW .wpcf7-submit, #threeplan .enterW .wpcf7-submit, #fourplan .enterW .wpcf7-submit {
  padding: 14px 25px;
  border-radius: 16px;
  border: 0;
  color: #0b0f1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  font-weight: 600;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

#small-dialog .enterW .priceBtn, #enter .enterW .priceBtn, #firstplan .enterW .priceBtn, #twoplan .enterW .priceBtn, #threeplan .enterW .priceBtn, #fourplan .enterW .priceBtn {
  padding: 14px 25px;
  border-radius: 16px;
  border: 0;
  color: #0b0f1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  font-weight: 600;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
}

.popupblock {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px;
}

.wpcf7-spinner {
  width: 24px !important;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 12px;
}

.wpcf7-not-valid-tip {
  font-size: .85em;
}

#enter {
  max-width: 400px;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper .galleryblock {
  font-size: 18px;
  background: #fff;
  height: calc((100% - 30px) / 2);
  width: 100%;
  /* Center slide text vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #ff5d00;
  background-image: linear-gradient(62deg, #ff5d00 0%, #ffc126 100%);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #ff5d00;
  background-image: linear-gradient(62deg, #ff5d00 0%, #ffc126 100%);
}

.paginW {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
}

.svideobtnW {
  display: flex;
  position: relative;
}

.svideobtnW .svideosecname {
  display: flex;
  align-items: center;
}

.svideobtnW .msliderarrow {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0%;
  max-width: 100px;
  height: 100%;
  align-items: center;
}

.svideobtnW .msliderarrow .mslider-next {
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  right: 2%;
  position: absolute;
  z-index: 100;
  transition: .2s ease;
}

.svideobtnW .msliderarrow .mslider-next ion-icon {
  color: rgba(255, 255, 255, 0.6);
}

.svideobtnW .msliderarrow .mslider-next img {
  width: 36px;
  height: 36px;
}

.svideobtnW .msliderarrow .mslider-next:hover {
  background-color: #fff;
  color: #000;
}

.svideobtnW .msliderarrow .mslider-next:hover ion-icon {
  color: white;
}

.svideobtnW .msliderarrow .mslider-prev {
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  position: absolute;
  z-index: 100;
  left: 2%;
  transition: .2s ease;
}

.svideobtnW .msliderarrow .mslider-prev ion-icon {
  color: rgba(255, 255, 255, 0.6);
}

.svideobtnW .msliderarrow .mslider-prev img {
  width: 36px;
  height: 36px;
}

.svideobtnW .msliderarrow .mslider-prev:hover {
  background-color: #fff;
  color: #fff;
}

.svideobtnW .msliderarrow .mslider-prev:hover ion-icon {
  color: white;
}

.galleryG .swiper-wrapper {
  height: 600px;
}

.svideo {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2vw 0vw 4vw 0;
  position: relative;
}

.svideo .swiper-wrapper {
  width: 1000%;
}

.svideo .swiper-slide {
  display: flex;
  flex-direction: column;
  background-color: #333;
}

.svideo .videoslide {
  display: flex;
  flex-direction: column;
  height: 340px;
  width: 100%;
  position: relative;
  box-shadow: 0 50px 60px -60px rgba(12, 12, 12, 0.6);
}

.svideo .videoslide .videooverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
}

.svideo .videoslide iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#scrollToTop {
  display: none;
  position: fixed;
  right: 5%;
  bottom: 13%;
  background-color: #fea621;
  background-image: linear-gradient(62deg, #fea621 0%, #fdbc16 100%);
  width: 35px;
  height: 35px;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 900;
  transition: .3s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  z-index: 3;
  font-size: 1em;
  outline: none;
  border: 0;
  cursor: pointer;
}

#scrollToTop:hover {
  color: #fff !important;
}

.herovideo .sound,
.herovideo .full {
  position: absolute;
  cursor: pointer;
}

.herovideo .full {
  right: 30px;
  bottom: 19px;
  width: 21px;
  height: 21px;
  background-image: url("../images/fullic.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.herovideo .sound {
  right: 65px;
  bottom: 15px;
  width: 28px;
  height: 26px;
  background-image: url("../images/soundic.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.newvideoW {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 4vw;
  display: flex;
}

.newvideoW video {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  object-fit: contain;
}

.loop-holder {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  background-color: #000;
  padding: 10px 0;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.videobtnW {
  position: absolute;
  bottom: 5%;
  right: 5%;
  padding-left: 10%;
  padding-right: 10%;
  height: auto;
}

.loop-holder__text {
  animation: textLoop 10s linear infinite;
  font-size: 1vw;
  font-weight: 600;
  letter-spacing: 1em;
  text-transform: uppercase;
  padding-right: .35em;
}

@keyframes textLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 900.98px) {
  .problemHelp {
    grid-template-columns: repeat(1, 1fr);
  }
  .content {
    padding: 0px 15px;
  }
  .content h3 {
    font-size: 1.2em;
  }
  .fromWhoW {
    grid-template-columns: repeat(3, 1fr);
  }
  .priceG {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
  .priceG .priceBlockWild {
    grid-column: span 3;
  }
  .mainMessageW {
    max-width: unset;
  }
  .mainMessageW h1 {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .newvideoW {
    padding-top: 35px;
  }
  #home {
    padding-top: 15px;
  }
  .loop-holder__text {
    font-size: 0.85em;
  }
  .pcnav {
    display: none;
  }
  .mobilebtn {
    display: flex;
    font-size: 1.5em;
  }
  .mfp-content {
    padding: 0px 15px;
  }
  .lineNavW {
    grid-template-columns: auto 1fr;
  }
  .lineNavW .navW ul {
    width: 100%;
    max-width: 100px;
  }
  .probW {
    padding: 0;
  }
  .mainherosec {
    min-height: unset;
  }
  .mainherosec .herovideo {
    padding: 0;
  }
  .mainherosec .mainMessageW h1 {
    font-size: 1.2em;
  }
  #about {
    padding: 0;
  }
  #about .probW .mainimg {
    border-radius: 0;
  }
  #about .probW .mainimg img {
    border-radius: 0;
  }
  #about .probW .letstalkIco {
    left: 15px;
    top: 15px;
    height: 40px;
    margin-bottom: 20px;
  }
  #about .probW h3 {
    padding: 15px;
  }
  .galleryG .swiper-wrapper {
    height: 450px;
  }
  .priceG {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    padding: 25px;
  }
  .priceG .priceBlockWild {
    grid-column: span 2;
  }
  .priceG .mobwild {
    grid-column: span 2;
  }
  .priceG .mobwild .priceBtnW {
    padding: 0;
  }
  .priceG .mobwild .pricesec .price {
    padding: 15px;
  }
  .videoslide {
    height: 320px;
  }
  .fromWhoW {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .footerG {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .footerG .fcol:first-of-type {
    grid-column: span 3;
  }
  footer .footerG .fcol:nth-of-type(3) {
    grid-column: span 2;
  }
  footer .footerG .fcol:last-of-type {
    grid-column: span 3;
  }
  #small-dialog .formW .enterW, #enter .formW .enterW, #firstplan .formW .enterW, #twoplan .formW .enterW, #threeplan .formW .enterW, #fourplan .formW .enterW {
    grid-template-columns: repeat(1, 1fr);
  }
  #small-dialog .formW .enterW .sendbtnW, #enter .formW .enterW .sendbtnW, #firstplan .formW .enterW .sendbtnW, #twoplan .formW .enterW .sendbtnW, #threeplan .formW .enterW .sendbtnW, #fourplan .formW .enterW .sendbtnW {
    grid-column: span 1;
  }
  .svideobtnW {
    padding: 15px 0px;
  }
}

@media (max-width: 576px) {
  .priceG .priceBlock {
    grid-column: span 2;
  }
}
/*# sourceMappingURL=main.css.map */