@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,400,500,600');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:700');
@import url('https://fonts.googleapis.com/css?family=Staatliches');
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{border:0;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:none}table{border-collapse:collapse;border-spacing:0}body,html{margin:0;padding:0;font-size:16px;height:100%;width:100%}*,:after,:before{box-sizing:border-box}
body {
    background: white;
    color: black;
    line-height: 1.7;
    font-family: 'IBM Plex Sans', sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
::-webkit-input-placeholder {
    font-family: 'IBM Plex Sans', sans-serif;
}
/*::-webkit-scrollbar {
    background-color: blue;
    width: 0;
}
::-webkit-scrollbar-thumb {
    background-color: blue;
    border-radius: 5px;
}
@font-face {
    font-family: yorkville;
    src: url(../fonts/Yorkville.ttf);
}*/
body a {
    color: inherit;
    text-decoration: inherit;
}
img {
    object-fit: cover;
}
input:focus, textarea:focus {
  outline: none;
}
.clear {
    clear: both;
}
.hide {
    display: none !important;
}
.center {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
.left {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}
h2 { font-size: 32px; }
h3 { font-size: 20px; }
p { font-size: 17px;line-height: 1.8;}
b {font-weight: 600;}

* { box-sizing: border-box; }
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
[class*="col-"] {
    float: left;
}
.row::after {
    content: "";
    clear: both;
    display: block;
}
.table {display: table;}
.cell {display: table-cell;}
/*
    ---------------------------------
    NAV
    ---------------------------------
*/
a.nav-logo {
  position: absolute;
  top: 50%;
  margin-right: -50%;
  transform: translate(0, -50%);
  left: 5%;
  z-index: 111;
}
a.nav-logo img, a.nav-logo svg{
  max-height: 100%;
  vertical-align: middle;
  display: inline-block;
}
nav {
    width: 100%;
    position: absolute;
    top: 25px;
    transition: top 0.3s ease-in-out;
    z-index: 11;
}
.nav-height {
  height: 84px;
}
nav > ul {
    text-align: right;
    height: inherit;
    padding-right: 5%;
}
nav > ul > li {
    display: inline-block;
    font-size: 16px;
    color: #46494C;
    position: relative;
    margin-left: 40px;
    padding: 25px 0;
}
nav ul a {
    height: inherit;
    display: block;
    vertical-align: middle;
    padding: 3px 0;
}
nav.nav_transparent > ul > li:hover .underline, nav.nav-white > ul > li:hover .underline {
    width: 100%;
}
nav.nav-white > ul > li .underline {
    background-color: #a065ff;
}
nav ul ul {
    position: absolute;
    width: 120px;
    text-align: left;
    transition: opacity .3s ease-in;
    top: 85px;
    left: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}
nav ul li:hover ul {
    visibility: visible;
    opacity: 1;
}
nav ul ul li {
    width: 120px;
    background-color: #fff;
}
nav ul ul li a {
    padding: 20px;
    font-size: 15px;
}
nav li .underline {
    width: 0px;
    height: 2px;
    background-color: white;
    transition: width .3s ease-in;
}
.nav-white {

}
.nav-white h2 {   
    background: #766eea;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
nav.nav-white li .underline {
  background-color: #766eea;
}
.nav_transparent ul li {
    color: white;
}
/*.nav-blue ul li:hover a, .nav-blue .active {
    background-color: #7e5fff;
}*/
.nav_transparent a svg path:last-child {
    fill: #d4c9ff;
}
.nav_transparent a svg path:first-child {
    fill: white;
}
/*.nav_transparent ul li:hover a, .nav_transparent .active {
  opacity: .8;
}*/
.nav-white {
  position: relative;
  top: 0;
}
.nav-icon {
    width: 40px;
    height: 15px;
    position: absolute;
    top: 27px;
    right: 5%;
    cursor: pointer;
    display: none;
}
.nav-icon span {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
}
.nav-icon span:first-child {
    top: 0;
}
.nav-icon span:last-child {
    bottom: 0;
}
nav h2 {
  background: -webkit-linear-gradient(45deg, #ffffff, #bda7ff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-family: Open Sans;
}
.s1 {
  background: linear-gradient(130deg, rgba(68, 134, 255, 0.82) 0%, rgba(121, 38, 255, 0.5) 100%), url(../img/8.jpg); 
  /*background: linear-gradient(140deg, #203d61eb 0%, #1d737738 100%), url(../img/8.jpg);*/
  position: relative;
  height: 75vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.s1 .center {
  max-width: 1000px;
    display: table;
    margin: 0 auto;
    padding: 15% 0;
}
.s1 h1 {
    font-size: 55pt;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    max-width: 800px;
}
.s1 a {
    color: white;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 5%;
    font-size: 20px;
    font-weight: 400;
}
.s1 a:hover {
    
}
.s2 {
    padding: 5%;
    background: aliceblue;
}
.s2 > p {
    text-align: center;
    max-width: 800px;
    display: table;
    margin: 0 auto;
}
.s2 a {
    text-decoration: underline;
}
.s2 h3 {
    font-size: 17pt;
}

.s3 span {
    display: table-cell;
    white-space: nowrap;
    padding-right: 10px;
    font-size: 23px;
    font-weight: 700;
    color: #a58fff;
}
.s3 .col-4 p {
    display: table;
    max-width: 340px;
    margin: 5px auto;
    font-size: 16px;
    text-align: justify;
}
.s3 h2 {
    text-align: center;
    margin-bottom: 20px;
}
a.btn2 {
    margin: 30px auto 0 auto;
    display: table;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    background-color: #937afd;
    padding: 10px 20px;
    font-size: 10pt;
    border-radius: 4px;
}
.s3 a.btn2 span {
        font-size: 25px;
margin: 0;
font-weight: 100;
padding-left: 10px;
}
.s3 {
    margin: 5% auto;
    text-align: center;
    max-width: 1200px;
}
.s3 .col-3 {
    margin: 0 2%;
    flex: 1;
    position: relative;
    padding-bottom: 70px;
}
.s3 .row.first-child {
    display: flex;
    margin-bottom: 2.5%;
}
.s3 h3 {
    color: #7e5fff;
    font-weight: 500;
    margin-top: 10px;
}
.btn {
   color: white;
    background-color: #7e5fff;
    display: inline-block;
    padding: 10px 15px;
}
.s6 {
    max-width: 1000px;
    display: table;
    margin: 5% auto;
    text-align: center;
}
.s6 a {
    margin-top: 5%;
}

.d1 {
        margin: 0;
        position: relative;
    }
    .d1 .col-3 {
        padding: 7%;
    position: absolute;
    background-color: white;
    width: 600px;
    bottom: 0;
    right: 3%;
    padding-left: 10%;
        -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    }

.product {
margin: 5%;
text-align: center;
display: table;
margin: 0 auto;
max-width: 1000px;
width: 100%;
padding: 0 5%;
}
.product h1 {
  font-size: 30px;
  text-align: left;
  color: #6a45ff;
  margin: 5%;
}
.product span {
  font-size: 15px;
}
.product .col-9 {
  padding: 0 5%;
  width: 100%;
}
.product .col-9 > h3 {
  text-align: left;
  margin-bottom: 2%;
}
.product .col-9 > h3 span {
  font-size: 15px;
}
.c-3 p {
  padding-bottom: 15px;
  font-size: 15px;
}
.c-3 select {
      max-width: 100px;
width: 100%;
height: 35px;
cursor: pointer;
}
.c-3 svg .a {
  fill: white !important;
}
.c-3 span.month, .c-3 span.total {
  font-size: 25px;
  font-weight: 600;
}
.form input {
  border: solid 1px #bbbbbb;
  text-align: left;
}
input[type="checkbox"] {
  cursor: pointer;
  width: auto;
  height: auto;
}
.form input[type="text"] {
  width: 50%;
}
.form {
  max-width: inherit;
  text-align: left;
}
.form h3 {
  border-top: solid 1px #e2e2e2;
  margin-top: 30px;
  padding: 30px 0;
}
.form label {
  font-size: 20px;
  text-align: left; 
}
.form p {
  padding-left: 35px;
}
.form p span, .form h3 span, {
  font-size: 15px;
}
.resume {
  padding-left: 5%;
}
.resume > .row {
  text-align: left;
}
.resume > .row:first-child {
  padding-bottom: 20px;
  text-align: center;
}
.resume > .row:not(:first-child) {
  border-top: solid 1px #e2e2e2;
  padding: 20px 0;
}
.resume p span {
  float: right;
}
.resume h2 {
  font-size: 25px;
font-weight: 600;
}
.err {
  background-color: #e854a6;
color: white;
padding: 5px 7px;
display: none;
position: relative;
font-size: 15px;
margin-top: 17px;
}
.err span {
  position: absolute;
  top: -17px;
  left: 5px;
  color: #e854a6;
}
.show {
  display: inline-block;
}
label.typetext {
  margin-top: 30px;
}
.plan-prices {margin: 5% 0;}
.plan-prices .col-8 {width: 100%;}
.p4 {text-align: center;}
.p4 svg {margin: 0 auto;display: block;}
.plan > h2, .plan > p {text-align: center;}
.p4 .row {margin-top: 5%;}
.p4 .row h3 {margin-top: 10px;}
.s2 span {font-size: 45px;}
.s2 p {font-size: 14px;}
.img-plan span {font-size: 55px;}
p.f-small {font-size: 11px;}
input, textarea {margin-top: 10px;}
.input50 {width: 50%;float: left;}
input[name="email"] {}
input[name="phone"] {margin-left: 10px;width: -webkit-fill-available;}
/*
    ---------------------------------
    SCROLL ANIMATION
    ---------------------------------
*/
.animation-element {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.animation-element.in-view {
    opacity: 1;
}
.animation-element2.slide-left {
  opacity: 0;
  transition: all 500ms linear;
  -webkit-transform: translate3d(-100px, 0px, 0px);
  -ms-transform: translate(-100px, 0px);
  transform: translate3d(-100px, 0px, 0px);
}
.animation-element2.slide-left.in-view {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
/*
    ---------------------------------
    FORM
    ---------------------------------
*/
.error2 {
    border: solid 2px red;
}
.error {
    color: red;
}
form {
    width: 100%;
    color: black;
    margin: 0 auto;
}
label {
    width: 100%;
    display: block;
    padding-bottom: 15px;
}
input {
    height: 40px;
}
input, textarea {
    width: 100%;
    text-indent: 10px;
}
textarea {
  min-height: 100px;
}
input[type=submit] {
    width: initial;
    height: initial;
    float: right;
    border: 0;
    padding: 17px 25px;
    background: #6a45ff;
    text-indent: 0;
    cursor: pointer;
    color: white;
    margin-top: 24px;
}
input[type=submit]:hover {

}
.form-sucess {
    position: absolute;
    top: 70px;
    width: 100%;
}
.fileup {
    overflow: hidden;
    display: inline-flex;
    border: solid 1px #b7b7b7;
    margin-top: 15px;
    display: table;
}
.fileup:hover {
  background-color: grey;
}
.fileup label {
    line-height: 1.1;
    padding: 10px !important;
    background: #f7f7f7;
}
.fileup span.file {
    display: inline-block;
    font-weight: 100;
}
.inputfile {
    width: 0.1px !important;
    height: 0.1px !important;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.inputfile + label {
    font-size: 14px;
    cursor: pointer !important;
    margin-top: 0 !important;
}
.inputfile:focus + label {
    
}
.inputfile + label * {
    pointer-events: none;
}
.form-sent {
  color: #16c70c;
  display: none;
}

      .form {
        max-width: 1000px;
      }
      label {
        display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
      }
      input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 17px;
    border: solid 2px #9e87fd;
}
/*label:hover input ~ .checkmark {
    background-color: #ccc;
}*/
input:checked ~ .checkmark {
    background-color: #6a45ff;
    border: solid 2px #6a45ff;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
input:checked ~ .checkmark:after {
    display: block;
}
.checkmark:after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form input[type="text"] {
    width: 100%;
}
.product2 {
    width: 100%;
    max-width: 700px;
}
.product2 h1 {
    margin: 0;
    margin-top: 30px;
}
.product2 label {
    border-top: 0;
    margin-top: 30px;   
}
.send {
    color: #65d023;
    padding: 10px;
    margin-top: 10px;
    font-size: 27px;
    display: none;
}
.sent {
    display: block;
}

.job > .row {
    background-image: linear-gradient(to right, rgba(41, 117, 255, 0.5) 30%, rgba(98, 0, 255, 0.2) 100%), url(../img/12.jpg);
    background-position: center;
}
.job > .row h1 {
    color: white;
}
.job p {
    max-width: 800px;
    margin: 5% auto 0 auto;
}

.check {
  display: inline-block;
}
.check:after {
  content: "";
  display: block;
  width: 8px;
  height: 15px;
  border: solid #6a45ff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.plan {
  max-width: 1000px;
  width: 100%;
  margin: 5% auto;
  display: table;
}
.plan span.check {
  margin-right: 10px;
}
.plan h1 {
  color: #6a45ff;
    font-size: 32px;
    margin-bottom: 10px;
}
.plan .col-4 span {
  display: table-cell;
}
.plan .col-4 p {
  display: table-cell;
  padding: 0 20px;
  font-size: 16px;
}
.plan2 {
  margin-top: 25px;
}
.plan3 .col-12 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #e2e2e2;
}
.plan3 .col-12.first-child {
  border-top: 0;
}
.plan3 .col-12 span, .plan3 .col-12 div {
  display: table-cell;
  vertical-align: top;
    font-size: 40px;
}
.plan3 .col-12 span {
  width: 100px;
  color: #6a45ff;
  padding-right: 20px;
}
.plan3 .col-12:last-child span {
  font-size: 60px;
}
.plan3 .col-12 p {
  font-size: 16px;
}
.plan3 > p {
}
.img-plan {
    background-image: linear-gradient(to right, rgba(44, 41, 255, 0.68) 30%, rgba(98, 0, 255, 0.53) 100%), url(../img/3.jpg);
    background-position: center center;
    height: 60vh;
  background-size: cover;
  position: relative;
}
.img-plan h1 {
  color: white;
  font-size: 40px;
  max-width: 1000px;
  text-align: center;
}
.img-plan .btn {
  margin: 0 auto;
  display: table;
}
.about .layout > p {
  margin: 5% 0;
}
.about .row h3 {
  margin-bottom: 1%;
}
  .about .row p {
      font-size: 16px;
  }
  .about .img-title {
      background-image: linear-gradient(to right, rgba(96, 56, 255, 0.7) 30%, rgba(192, 122, 255, 0.67) 100%), url(../img/porto.jpg);
      background-position: center center;
  }
  .about .img-title h1 {
      color: white;
  }
/*
    ---------------------------------
    IMAGE LOADING
    ---------------------------------
*/
.img-load {
    width: 100%;
    height: 100%;
    background: url(../img/loading.gif), no-repeat, center center;
}

.layout {
  margin: 5% auto;
  max-width: 1000px;
  display: table;
}
.layout p {
  font-size: 16px;
}
.layout h1 {
  font-size: 35px;
  color: #6a45ff;
}
.layout h1, .layout h2, .layout h3 {
  padding-bottom: 20px;
}
.layout h2 {
  padding-top: 30px;
  font-size: 25px;
}

.img-title {
    height: 55vh;
    background-size: cover;
    position: relative;
}
.img-title h1 {
    font-size: 40px;
    color: #6a45ff;
    max-width: 1000px;
    text-align: center;
}

.contact {
    max-width: 700px;
    margin: 5% auto;
    display: table;
    text-align: center;
    width: 100%;
}
.contact h1 {
    color: #6a45ff;
    font-size: 50px;
    margin-bottom: 10px;
}
.contact p b {
    color: #6a45ff;
}

.job .btn {
    background-color: #9b83ff;
    font-size: 20px;
    margin: 0 auto;
    display: table;
    margin-top: 30px;
    transition: background-color .2s ease-in-out;
}
.job .btn:hover {
    background-color: #7c5cff;
}
.form-job {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: #0000007d;
    z-index: 11;
    transition: visibility .2s ease-in-out;
    visibility: hidden;
    padding-bottom: 5%;
}
.form-job form {
    width: 100%;
    max-width: 1000px;
    background-color: white;
    margin: 0 auto;
    display: table;
    margin-top: 5%;
    padding: 5%;
}
.form-job form .row {
    border-bottom: solid 1px #e2e2e2;
    padding-bottom: 10px;
}
.form-job form h2 {
    font-size: 20px;
    display: inline-block;
    margin-left: 20px;
}
.form-job form label {
    margin-top: 40px;
}
.form-job form input {
    max-width: 500px;
}
.job label {
    cursor: default;
}
.job input[type=submit] {
    margin-top: 50px;
}
.job input {
    display: block
}
.job .send {
    background-color: #65d023;
    color: white;
    width: 100%;
    margin: 0;
    font-size: 17px;
    text-align: center;
}
.back {
    font-size: 30px;
    display: inline-block;
    cursor: pointer;
}

.contact h2 {
   
}
.contact label {
    text-align: left;
    padding-bottom: 5px;
    margin-top: 20px;
    cursor: default;
    font-weight: 600;
    color: #676767;
}
.contact form {
    margin-top: 5%;
}
.contact input[type=submit] {
    float: none;
}
.contact .submit {
    text-align: right;
}
.contact-btn {
    display: table-cell;
background-color: #0084ff;
border-radius: 3px;
color: white;
margin-left: 20px;
padding: 0 7px;
vertical-align: middle;
}
.contact-btn span {
    display: inline-block;
}
.contact-btn p {
    font-size: 15px;
    display: inline-block;
}

.d1 img {width: 100%;}
.d1 h1 {font-size: 25px;line-height: 1.5;
text-transform: uppercase;margin-top: 10px;}
.d1 p {max-width: 400px;}
.d2 {margin: 0 5%;}
.d2 .col-6 {padding: 5%;}
.d2 p {font-size: 16px;}
.d11 h1 {font-size: 35pt;max-width: inherit;}
.d11 p {color: white;text-align: center;}
.d2 h3 {color: #7e5fff;font-weight: 500;}
/*
    ---------------------------------
    FOTTER
    ---------------------------------
*/
footer {
    margin: 5% 5% 0 5%;
}
footer > .row {
  padding: 5%;
  border-top: solid 1px #c7c7c7;
}
footer p, footer .col-6:nth-child(2) li {
  font-size: 15px;
}
footer .col-6:nth-child(2) {
  text-align: right;
}
footer .col-6:nth-child(2) li {
  display: inline-block;
  margin-left: 10px;
}
footer p svg {
  vertical-align: baseline;
}
/*
    ---------------------------------
    MEDIA QUERIES
    ---------------------------------
*/
@media only screen and (max-width: 1200px) {
    .s1 .center {
      padding: 0 5%;
    }
    .s1 h1 {
      font-size: 4rem;
    }
    .s5 {
      margin: 10% 5%;
    }
    .s3 .col-4 {
      width: 100%;
    }
    .s3 .row:last-child {
      margin-top: 0;
    }
    .s5 h2 {
      font-size: 50px;
      padding-top: 0;
      padding-bottom: 5%;
    }
    .s5 p {
      font-size: 20px;
    }
    .s5 .col-8 .col-6 {
      padding: 5%;
    }
    .img-title {
      width: 100% !important;
    }
    span.p200 {
    display: block;
    font-size: 71px;
    color: #6a45ff;
    margin-top: -30px;
    position: absolute;
    top: auto;
    right: auto;
    width: 100%;
    bottom: -54px;
    text-align: center;
    background: white;
    }
    .job > .row {
    background-image: linear-gradient(to right, rgba(41, 117, 255, 0.5) 30%, rgba(98, 0, 255, 0.4) 100%), url(../img/12.jpg) !important;
    }
    .img-plan h1 {
      font-size: 25px;
      margin: 0 5%;
    }
    .img-plan span {
      font-size: 35px;
    }
    .btn {
      padding: 6px 12px;
    }
    nav span {
      font-size: 17px;
    }
    nav > ul > li {
      margin-left: 27px;
    }
    .d1 .col-3 {
      width: 78%;
      padding-left: 25%;
    }
}

@media only screen and (max-width: 900px) { 
   .s5 .col-4, .s5 .col-8 {
      width: 100%;
      text-align: center;
    }
    .s6 {
      margin: 5%;
    }
    nav {
      top: 0;
    }
    .nav-icon {
      display: block;
    }
    a.nav-logo {
      transform: translate(0, 0);
      top: 11px;
    }
    .show-menu {
      visibility: visible;
      padding: 5% 5% 0 10%;
      animation: polygon .9s ease-out;
      -webkit-animation-fill-mode: forwards;
    }
    .hide-menu {
      visibility: hidden;
    }
    .close-menu {
      animation: polygonOut .7s ease-out;
      -webkit-animation-fill-mode: forwards;
    }
    nav ul {
      width: 155%;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    padding: 5% 5% 0 10%;
    background: #8258ff;
    height: 100vh;
    /*clip-path: polygon(100% 0, 100% 39%, 100% 77%, 100% 100%, 100% 100%, 100% 0);*/
    transition: padding, clip-path .7s ease-in-out;
    z-index: 1;
    }
    @keyframes polygon {
      0% {
        clip-path: polygon(100% 0, 100% 39%, 100% 77%, 100% 100%, 100% 100%, 100% 0);
      }
      50% {
        clip-path: polygon(69% 0, 60% 39%, 80% 77%, 84% 100%, 100% 100%, 100% 0);
      }
      100% {
        clip-path: polygon(63% 0, 57% 39%, 68% 78%, 65% 100%, 100% 100%, 100% 0);
      }
    }
    @keyframes polygonOut {
      0% {
        clip-path: polygon(63% 0, 57% 39%, 68% 78%, 65% 100%, 100% 100%, 100% 0);
      }
      50% {
        clip-path: polygon(69% 0, 60% 39%, 80% 77%, 84% 100%, 100% 100%, 100% 0);
      }
      100% {
        clip-path: polygon(100% 0, 100% 39%, 100% 77%, 100% 100%, 100% 100%, 100% 0);      
      }
    }
    nav ul li {
      width: 100%;
      color: white;
      font-size: 24px;
      text-align: right;
      padding-right: 5%;
    }
    nav ul a {
      display: inline-block;
    }
    .nav-blue a svg path:last-child {
      fill: #6a45ff
    }
    .nav-blue a svg path:first-child {
      fill: inherit;
    }
    nav h2 {
      margin-top: 5px;
    }
    .s1 a {
      padding: 7px 17px;
      font-size: 17px;
    }
    .d1 .col-3 {
      clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
      right: 0;
    }
    .nav-height {
      height: 67px;
    }
    .p4 svg, .plan3 .col-12 svg {
      height: 50px;
    }
    .plan {
      padding: 5%;
    }
    .plan .col-4 {
      margin-top: 40px;
    }
    .plan .col-4 p {
      display: block;
      max-width: 300px;
      margin: 0 auto;
    }
    .about .row {
      padding: 5%;
    }


}

@media only screen and (max-width: 768px) {
    [class*="col-"] {
        width: 100%;
    }
    p, .d2 p {
      font-size: 14px !important; 
    }
    h3 {
      font-size: 17px;
    }
    h2 {
      font-size: 24px;
    }
    .s1 h1 {
      font-size: 3rem;
    }
    .s1 a {
      font-size: 15px;
      padding: 7px 10px;
    }
    .s3 .col-6 {
      margin-top: 30px;
    }
    .s4 .col-6:last-child {
      padding-top: 10%;
    }
    .s5 h2 {
      font-size: 40px;
    }
    footer p, footer .col-6:nth-child(2) li {
      font-size: 10px;
    }
    footer .col-6 {
      width: 100%;
      text-align: center !important;
    }
    footer > .row {
      border-top: 0;
    }
    nav h2 {
      font-size: 17px;
    }
    .nav-icon {
      top: 23px;
    }
    .product h1 {
      font-size: 20px;
    }
    .product h1 span {
      font-size: 12px;
    }
    .c-3 p {
      padding-top: 20px;
    }
    .c-3 p:last-child {
      padding-top: 0;
    }
    .form label {
      font-size: 16px;
    }
    .form span {
      font-size: 12px;
    }
    .form input[type="text"] {
      width: 100%;
    }
    input[type=submit] {
      font-size: 12px;
      padding: 12px 19px;
    }
    .layout, .contact, .job p {
      padding: 5% !important;
    }
    .contact h1 {
      font-size: 25px !important;
    }
    .product2 {
      padding: 0 5%;
    }
    .img-title h1 {
      font-size: 30px;
    }
    span.p200 {
      font-size: 40px;
      bottom: -20px;
    }
    .d1 .col-3 {
      position: inherit;
      margin-top: -150px;
      width: 100%;
    }
    .nav-white .nav-icon span {
      background-color: #775fff;
    }
    .nav-height {
      height: 62px;
    }
    .d1 h1 {
      font-size: 17px;
    }
    .input50 {
      width: 100% !important;
    }
    input[name="email"] {
      margin-right: 0px !important;
    }
    input[name="phone"] {
      margin-left: 0px !important;
    }

}