@media (min-width: 993px) {
  body {
    font-family: serif, sans-serif, Times New Roman, Arial, Helvetica;
    background: #0c0c0b;
    background: #000;
    color: #019904;
    color: #ffd700;
    padding: 0 !important;
    margin: 0;
    display: flex;
    flex-flow: column;
  }
  .unselectable {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  /* ........................................................................ */
  .root {
    display: flex;
    /* min-height: 702vh; */
    flex-flow: column nowrap;
    flex-grow: 1;
    overflow: hidden;
  }
  .root-body {
    flex: 1 0 auto;
  }
  *,
  *:before,
  *:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /* global */
  .container {
    width: 80%;
    margin: auto;
    overflow: hidden;
  }
  button {
    background-color: transparent;
    color: white;
    padding: 11px 20px;
    margin: 40px 40px 40px 132px;
    border: none;
    border: 1px solid #fff;
    cursor: pointer;
    width: 42%;
    border-radius: 10px;
  }
  button:hover {
    opacity: 0.8;
  }
  /* header starts */
  .\.logo_class {
    margin: 49px auto 56px 87px;
    cursor: pointer;
    width: 100%;
  }
  .stage {
    position: absolute;
    top: 2%;
    left: 2%;
    margin: 15px;
  }
  @-webkit-keyframes spincube {
    from,
    to {
      -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    16% {
      -webkit-transform: rotateY(-90deg);
    }
    33% {
      -webkit-transform: rotateY(-90deg) rotateZ(90deg);
    }
    50% {
      -webkit-transform: rotateY(-180deg) rotateZ(90deg);
    }
    66% {
      -webkit-transform: rotateY(-270deg) rotateX(90deg);
    }
    83% {
      -webkit-transform: rotateX(90deg);
    }
  }

  @keyframes spincube {
    from,
    to {
      -moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
      -ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
      -o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    16% {
      -moz-transform: rotateY(-90deg);
      -ms-transform: rotateY(-90deg);
      -o-transform: rotateY(-90deg);
      transform: rotateY(-90deg);
    }
    33% {
      -moz-transform: rotateY(-90deg) rotateZ(90deg);
      -ms-transform: rotateY(-90deg) rotateZ(90deg);
      -o-transform: rotateY(-90deg) rotateZ(90deg);
      transform: rotateY(-90deg) rotateZ(90deg);
    }
    50% {
      -moz-transform: rotateY(-180deg) rotateZ(90deg);
      -ms-transform: rotateY(-180deg) rotateZ(90deg);
      -o-transform: rotateY(-180deg) rotateZ(90deg);
      transform: rotateY(-180deg) rotateZ(90deg);
    }
    66% {
      -moz-transform: rotateY(-270deg) rotateX(90deg);
      -ms-transform: rotateY(-270deg) rotateX(90deg);
      -o-transform: rotateY(-270deg) rotateX(90deg);
      transform: rotateY(-270deg) rotateX(90deg);
    }
    83% {
      -moz-transform: rotateX(90deg);
      -ms-transform: rotateX(90deg);
      -o-transform: rotateX(90deg);
      transform: rotateX(90deg);
    }
  }

  .cubespinner {
    -webkit-animation-name: spincube;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 12s;

    -moz-animation-name: spincube;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: infinite;
    -moz-animation-duration: 12s;

    -o-animation-name: spincube;
    -o-animation-timing-function: ease-in-out;
    -o-animation-iteration-count: infinite;
    -o-animation-duration: 12s;

    -ms-animation-name: spincube;
    -ms-animation-timing-function: ease-in-out;
    -ms-animation-iteration-count: infinite;
    -ms-animation-duration: 12s;

    animation-name: spincube;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 12s;

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;

    -webkit-transform-origin: 60px 60px 0;
    -moz-transform-origin: 60px 60px 0;
    -ms-transform-origin: 60px 60px 0;
    transform-origin: 60px 60px 0;
    -o-transform-origin: 60px 60px 0;
    color: #fff;
  }

  .cubespinner div {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    background: #673ab7;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 20px rgb(13 223 22);
    line-height: 120px;
    text-align: center;
    font-size: 40px;
  }

  .cubespinner .face1 {
    -webkit-transform: translateZ(60px);
    -moz-transform: translateZ(60px);
    -ms-transform: translateZ(60px);
    transform: translateZ(60px);
    -o-transform: translateZ(60px);
  }
  .cubespinner .face2 {
    -webkit-transform: rotateY(90deg) translateZ(60px);
    -moz-transform: rotateY(90deg) translateZ(60px);
    -ms-transform: rotateY(90deg) translateZ(60px);
    transform: rotateY(90deg) translateZ(60px);
    -o-transform: rotateY(90deg) translateZ(60px);
  }
  .cubespinner .face3 {
    -webkit-transform: rotateY(90deg) rotateX(90deg) translateZ(60px);
    -moz-transform: rotateY(90deg) rotateX(90deg) translateZ(60px);
    -ms-transform: rotateY(90deg) rotateX(90deg) translateZ(60px);
    transform: rotateY(90deg) rotateX(90deg) translateZ(60px);
    -o-transform: rotateY(90deg) rotateX(90deg) translateZ(60px);
  }
  .cubespinner .face4 {
    -webkit-transform: rotateY(180deg) rotateZ(90deg) translateZ(60px);
    -moz-transform: rotateY(180deg) rotateZ(90deg) translateZ(60px);
    -ms-transform: rotateY(180deg) rotateZ(90deg) translateZ(60px);
    transform: rotateY(180deg) rotateZ(90deg) translateZ(60px);
    -o-transform: rotateY(180deg) rotateZ(90deg) translateZ(60px);
  }
  .cubespinner .face5 {
    -webkit-transform: rotateY(-90deg) rotateZ(90deg) translateZ(60px);
    -moz-transform: rotateY(-90deg) rotateZ(90deg) translateZ(60px);
    -ms-transform: rotateY(-90deg) rotateZ(90deg) translateZ(60px);
    transform: rotateY(-90deg) rotateZ(90deg) translateZ(60px);
    -o-transform: rotateY(-90deg) rotateZ(90deg) translateZ(60px);
  }
  .cubespinner .face6 {
    -webkit-transform: rotateX(-90deg) translateZ(60px);
    -moz-transform: rotateX(-90deg) translateZ(60px);
    -ms-transform: rotateX(-90deg) translateZ(60px);
    transform: rotateX(-90deg) translateZ(60px);
    -o-transform: rotateX(-90deg) translateZ(60px);
  }
  /* fixing_items */
  .fixing_items .cubespinner {
    -webkit-transform-origin: 40px 40px 0;
    -moz-transform-origin: 40px 40px 0;
    -ms-transform-origin: 40px 40px 0;
    transform-origin: 40px 40px 0;
    -o-transform-origin: 40px 40px 0;
  }
  .fixing_items .cubespinner div {
    width: 80px;
    height: 80px;
  }
  .fixing_items .cubespinner .face1 {
    -webkit-transform: translateZ(40px);
    -moz-transform: translateZ(40px);
    -ms-transform: translateZ(40px);
    transform: translateZ(40px);
    -o-transform: translateZ(40px);
  }
  .fixing_items .cubespinner .face2 {
    -webkit-transform: rotateY(90deg) translateZ(40px);
    -moz-transform: rotateY(90deg) translateZ(40px);
    -ms-transform: rotateY(90deg) translateZ(40px);
    transform: rotateY(90deg) translateZ(40px);
    -o-transform: rotateY(90deg) translateZ(40px);
  }
  .fixing_items .cubespinner .face3 {
    -webkit-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
    -moz-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
    -ms-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
    transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
    -o-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
  }
  .fixing_items .cubespinner .face4 {
    -webkit-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
    -moz-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
    -ms-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
    transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
    -o-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
  }
  .fixing_items .cubespinner .face5 {
    -webkit-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
    -moz-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
    -ms-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
    transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
    -o-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
  }
  .fixing_items .cubespinner .face6 {
    -webkit-transform: rotateX(-90deg) translateZ(40px);
    -moz-transform: rotateX(-90deg) translateZ(40px);
    -ms-transform: rotateX(-90deg) translateZ(40px);
    transform: rotateX(-90deg) translateZ(40px);
    -o-transform: rotateX(-90deg) translateZ(40px);
  }
  /* ............................................................ */
  .logo {
    width: 120px;
    height: 120px;
  }
  .fixing_items .logo {
    width: 80px;
    height: 80px;
  }
  /* ............................................................ */
  @font-face {
    font-family: "Marvin Visions Variable";
    src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/756881/MarvinVisionsTrial-Variable.ttf");
  }
  #quote {
    --weight: 10;
    font-family: "Marvin Visions Variable", Brush Script MT, Lucida Handwriting,
      cursive, "Audiowide", Georgia, serif, Times New Roman, Arial, Helvetica;
    font-size: 6.5rem;
    font-weight: 170;
    background-size: contain;
    line-height: 0.8;
    margin: 0;
    text-align: left;
    display: inline;
    margin-left: 15%;
    color: rgb(221, 29, 67);
  }
  .company_name_launch {
    color: rgb(221, 29, 67);
    font-variation-settings: "wght" var(--weight);
  }
  .phone-call {
    text-align: center;
    /* display: inline-block;
  float: right; */
    margin-top: 5.9%;
    /* width: 9%; */
    z-index: 1;
    margin-right: 7%;
  }
  .phone-call:hover {
    text-shadow: 0px 0px 3px rgb(24 151 227 / 80%),
      0px 2px 3px rgb(27 170 255 / 80%), 2px 0px 3px rgb(27 170 255 / 80%),
      -2px 0px 5px rgb(27 170 255 / 80%);
  }
  .phone_link {
    display: flex;
    text-decoration: none;
    width: 0;
  }
  .phone-call .fas {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.24px;
    padding: 0 0 0 30px;
    white-space: nowrap;
  }
  .phone-call .fa-headset:before {
    content: "\f590";
    margin-right: 10px;
  }
  .head-req {
    margin-right: 9%;
    margin-top: 5.5%;
    height: 45px;
  }
  .head-req a {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 1.08px;
    animation: color-change 1s 2s infinite;
  }
  @-webkit-keyframes color-change {
    0% {
      -webkit-box-shadow: 0px 0px 5px 1px #1f71a2, inset 0 0 5px 0 #0776b9;
      box-shadow: 0px 0px 5px 1px #1f71a2, inset 0 0 5px 0 #0776b9;
      text-shadow: -2px 0px 5px rgb(24 151 227 / 98%), 2px 3px 5px #1baaff,
        3px 0px 5px #1baaff, -3px -2px 5px #1baaff;
      border-color: #7dc4c8;
    }
    50% {
      -webkit-box-shadow: 0px 0px 5px 1px #3c813f, inset 0 0 5px 0 #3f9e42;
      box-shadow: 0px 0px 5px 1px #3c813f, inset 0 0 5px 0 #3f9e42;
      text-shadow: -2px 0px 5px rgb(50 153 54), 2px 3px 5px #22c629,
        3px 0px 5px #25d92c, -3px -2px 5px #07ea10;
      border-color: #74a53c;
    }
    100% {
      -webkit-box-shadow: 0px 0px 5px 1px #aa3e36, inset 0 0 5px 0 #aa4038;
      box-shadow: 0px 0px 5px 1px #aa3e36, inset 0 0 5px 0 #aa4038;
      text-shadow: -2px 0px 5px rgb(208 66 56), 2px 3px 5px #da271a,
        3px 0px 5px #e11c0e, -3px -2px 5px #fc1504;
      border-color: #f44109;
    }
  }
  @-ms-keyframes color-change {
    0% {
      -ms-box-shadow: 0px 0px 5px 1px #1f71a2, inset 0 0 5px 0 #0776b9;
      box-shadow: 0px 0px 5px 1px #1f71a2, inset 0 0 5px 0 #0776b9;
      text-shadow: -2px 0px 5px rgb(24 151 227 / 98%), 2px 3px 5px #1baaff,
        3px 0px 5px #1baaff, -3px -2px 5px #1baaff;
      border-color: #7dc4c8;
    }
    50% {
      -ms-box-shadow: 0px 0px 5px 1px #3c813f, inset 0 0 5px 0 #3f9e42;
      box-shadow: 0px 0px 5px 1px #3c813f, inset 0 0 5px 0 #3f9e42;
      text-shadow: -2px 0px 5px rgb(50 153 54), 2px 3px 5px #22c629,
        3px 0px 5px #25d92c, -3px -2px 5px #07ea10;
      border-color: #74a53c;
    }
    100% {
      -ms-box-shadow: 0px 0px 5px 1px #aa3e36, inset 0 0 5px 0 #aa4038;
      box-shadow: 0px 0px 5px 1px #aa3e36, inset 0 0 5px 0 #aa4038;
      text-shadow: -2px 0px 5px rgb(208 66 56), 2px 3px 5px #da271a,
        3px 0px 5px #e11c0e, -3px -2px 5px #fc1504;
      border-color: #f44109;
    }
  }
  @keyframes color-change {
    0% {
      box-shadow: 0px 0px 5px 1px #1f71a2, inset 0 0 5px 0 #0776b9;
      text-shadow: -2px 0px 5px rgb(24 151 227 / 98%), 2px 3px 5px #1baaff,
        3px 0px 5px #1baaff, -3px -2px 5px #1baaff;
      border-color: #7dc4c8;
    }
    50% {
      -webkit-box-shadow: 0px 0px 5px 1px #3c813f, inset 0 0 5px 0 #3f9e42;
      box-shadow: 0px 0px 5px 1px #3c813f, inset 0 0 5px 0 #3f9e42;
      text-shadow: -2px 0px 5px rgb(50 153 54), 2px 3px 5px #22c629,
        3px 0px 5px #25d92c, -3px -2px 5px #07ea10;
      border-color: #74a53c;
    }
    100% {
      -webkit-box-shadow: 0px 0px 5px 1px #aa3e36, inset 0 0 5px 0 #aa4038;
      box-shadow: 0px 0px 5px 1px #aa3e36, inset 0 0 5px 0 #aa4038;
      text-shadow: -2px 0px 5px rgb(208 66 56), 2px 3px 5px #da271a,
        3px 0px 5px #e11c0e, -3px -2px 5px #fc1504;
      border-color: #f44109;
    }
  }
  .fix_header {
    display: flex;
  }
  .fixing_items {
    background: #000;
    position: fixed;
    width: 100%;
    z-index: 1;
    max-height: 111px;
  }
  .fixing_items .\.logo_class {
    margin: 30px auto 19px 87px;
  }
  .fixing_items .menu-icon {
    display: block;
  }
  .fixing_items #quote {
    font-size: 4.5rem;
    margin-left: 60px;
  }
  .fixing_items .head-req {
    margin-top: 3.5%;
  }
  .fixing_items .phone-call {
    margin-top: 4%;
  }
  .menu-icon {
    position: absolute;
    top: 36%;
    right: 0%;
    padding: 12px 20px;
    display: none;
    cursor: pointer;
  }
  .buy_domain_mob {
    display: none;
  }
  /*navbar code starts*/
  .offcanvas-header {
    display: block;
  }
  .navbar-collapse {
    position: fixed;
    top: 106px;
    bottom: 0;
    left: 100%;
    width: 17%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: hidden;
    visibility: hidden;
    background-color: #000;
    transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .navbar-collapse.show {
    visibility: visible;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    z-index: 1;
    overflow: auto;
  }
  .navbar-nav {
    list-style: none;
  }
  .navbar-nav .nav-link {
    font-weight: bold;
    text-decoration: none;
    color: #ff0000;
  }
  .navbar-nav {
    overflow: visible;
  }
  .btn-outline-danger {
    color: #fff;
    border: none;
    margin: 25px auto;
    width: 40px;
    line-height: 50px;
    overflow: hidden;
    z-index: 999;
    cursor: pointer;
    background-color: #000;
    font-size: 54px;
    text-decoration: none;
    padding-left: 14px;
  }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #000;
    /* border-color: #0000ff; */
  }
  li.nav-item {
    margin-top: 45px;
  }
  a.nav-link:hover {
    color: #fff;
  }
  /*navbar code ends*/
  /* section starts */
  section#showcase {
    height: 531px;
  }
  .slideshowContainer {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 527px;
  }
  .imageSlides {
    position: absolute;
    left: 55%;
    top: 54%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1;
  }
  .web_bg_img {
    width: 70%;
    height: 70%;
  }
  .money_bg_img {
    width: 60%;
  }
  /* add 'visible' class via Javascript */
  .visible {
    opacity: 1;
  }
  .slideshowArrow {
    display: none;
    font-size: 7em;
    color: rgba(128, 128, 228, 0.5);
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
  }
  .slideshowArrow:hover {
    opacity: 0.75;
  }
  #leftArrow {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  #rightArrow {
    position: absolute;
    right: 4%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  .slideshowCircles {
    display: none;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    text-align: center;
  }
  .circle {
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: solid 2px rgba(255, 255, 255, 0.5);
    transition: 1s ease-in-out;
  }
  .dot {
    background-color: rgba(255, 255, 255, 0.7);
    border: solid 2px rgba(255, 255, 255, 0.5);
  }
  /* ................................................ */
  .minislide-box {
    position: absolute;
    top: 30%;
    left: 74%;
    /* overflow: hidden; */
    width: 18%;
    height: 65%;
  }
  /* add 'mini visible' class via Javascript */
  .minivisible {
    opacity: 1;
  }
  .minislideshowCircles {
    position: absolute;
    top: 41%;
    left: 20%;
    transform: translate(-11%, -46%);
    -webkit-transform: translate(-11%, -46%);
    -moz-transform: translate(-11%, -46%);
    -o-transform: translate(-11%, -46%);
    -ms-transform: translate(-11%, -46%);
    text-align: center;
    height: 100%;
    width: 100%;
  }
  .minicircle {
    display: block;
    transition: 1s ease-in-out;
    margin-bottom: 50px;
    margin-top: 50px;
    cursor: pointer;
  }
  .minicircle a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }
  .minidot {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
  .minidot a {
    color: #ff0000;
  }
  /* ............................................................ */
  .req-quote {
    position: absolute;
    top: 19%;
    right: 59%;
    background: transparent;
    padding: 50px;
    width: 33%;
    overflow: hidden;
    margin: 50px 0 75px;
  }
  .req_quote_div {
    position: absolute;
    top: 20%;
    right: 24%;
  }
  h1.req_quote_head {
    white-space: nowrap;
    font-size: 41px;
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .form_typing {
    width: 57ch;
    animation: typing 5s steps(57);
    white-space: nowrap;
    overflow: hidden;
    animation-iteration-count: infinite;
  }

  @keyframes typing {
    from {
      width: 0;
    }
  }

  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 110%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #000000;
    border: none;
    box-sizing: border-box;
    resize: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 20px;
    outline: none;
  }
  textarea#cneeds {
    height: 141px;
  }
  .req-quote ::placeholder {
    color: #fff;
    font-size: 16px;
  }
  /* ............................................................ */
  .container90 {
    width: 90%;
    margin: 56px auto auto auto;
    overflow: hidden;
  }
  .domain {
    width: 100%;
    height: 305px;
  }
  .hexa_domain {
    margin-left: 34%;
    margin-top: 10%;
  }
  .hexagon {
    color: #6c6;
    font-size: 135px;
    float: left;
    margin-left: 3px;
    margin-bottom: -26px;
  }
  .hex {
    float: left;
    margin-bottom: -26px;
    display: flex;
    flex-direction: column;
  }
  .hex .top {
    width: 0;
    border-bottom: 30px solid #6c6;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
  }
  .hex .middle {
    width: 104px;
    height: 60px;
    background: #6c6;
    text-align: center;
  }
  .hex .bottom {
    width: 0;
    border-top: 30px solid #6c6;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
  }
  .hex-row {
    clear: left;
  }
  .hex-row.even {
    margin-left: 53px;
  }
  .hex.hex1 {
    margin-left: -106px;
  }
  .hex.hex1 p {
    padding-left: 22px;
  }
  .hex.hex2 {
    margin-top: -1px;
    margin-left: -1px;
  }
  .hex.hex2 P {
    padding-left: 34px;
  }
  .hex.hex3 {
    margin-top: -5px;
    margin-left: -1px;
  }
  .hex.hex4 {
    margin-top: 26.8px;
    margin-left: 1px;
  }
  .buy_domain {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #fff;
    padding: 19px;
    animation: color-change 1s 2s infinite;
  }
  .hex.hex5 {
    margin-top: -4px;
    margin-left: 1px;
  }
  .hex.hex5 p {
    padding-left: 16px;
  }
  .hex.hex6 {
    margin-left: 357px;
    margin-top: -4px;
  }
  .hex.hex6 p {
    padding-left: 32px;
  }
  .hex.hex7 {
    margin-top: -4px;
    margin-left: 1px;
  }
  a.store_services {
    color: #f00;
    font-size: 22px;
    font-weight: bolder;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
  }
  section#wrap {
    margin-top: 51px;
  }
  .imagination_article {
    width: 590px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }

  .imagination_blockquote {
    width: 565px;
    font: 2.65em CallunaRegular;
    letter-spacing: 0.075em;
    float: left;
    padding: 45px 0 30px 25px;
    margin: 0;
    border-top: 2px dotted #858585;
    border-bottom: 2px dotted #858585;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  .imagination_article:before {
    content: "“";
    font-size: 13em;
    position: absolute;
    left: -100px;
    color: #666;
  }

  .imagination_article:after {
    content: "”";
    font-size: 13em;
    position: absolute;
    right: -100px;
    top: 150px;
    color: #666;
  }

  .imagination_blockquote:first-line {
    font: 1.85em "Sketch Block";
    color: #fff79e;
  }

  .imagination_blockquote:first-letter {
    font-size: 2.9em;
    text-transform: lowercase;
    float: left;
    line-height: 0.52em;
    margin-right: -18px;
    position: relative;
    z-index: 1;
  }

  .imagination_blockquote strong:first-child {
    margin-left: 8px;
    letter-spacing: 0;
  }

  .imagination_blockquote strong:last-child {
    font: 2em "Museo 700";
    text-transform: uppercase;
    letter-spacing: 0;
  }

  .imagination_blockquote em {
    border-bottom: 2px dotted #858585;
    padding-left: 5px;
  }

  @-moz-document url-prefix() {
    .imagination_blockquote:first-letter {
      margin-top: -29px;
    }
  }
  /* ............................................................ */
  .service_text {
    display: flex;
    justify-content: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    margin-top: 20vh;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    font-family: Lucida Handwriting, Brush Script MT, cursive, "Audiowide",
      Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
  }
  .service {
    text-align: center;
    font-size: 19px;
    filter: drop-shadow(2px 4px 6px black) opacity(0.7);
    text-transform: uppercase;
  }
  .service h4 {
    margin: 0;
  }
  .service_dis {
    text-align: center;
    font-size: 17px;
    font-family: "Montserrat", "Maitree", Lucida Handwriting, Brush Script MT,
      cursive, "Audiowide", Georgia, serif, Times New Roman, Arial, Helvetica;
    padding: 0 14px;
  }
  .service_text:hover span {
    color: #ccc;
  }
  .service_text:hover span:nth-child(odd) {
    transform: skewY(15deg);
    -webkit-transform: skewY(15deg);
    -moz-transform: skewY(15deg);
    -o-transform: skewY(15deg);
    -ms-transform: skewY(15deg);
  }
  .service_text:hover span:nth-child(even) {
    transform: skewY(-15deg);
    -webkit-transform: skewY(-15deg);
    -o-transform: skewY(-15deg);
    -moz-transform: skewY(-15deg);
    -ms-transform: skewY(-15deg);

    background: #795548;
    color: #a6a6a6;
  }
  .service_text > span {
    display: block;
    background-color: #28686a;
    width: 81px;
    height: 120px;
    line-height: 120px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out,
      background-color 0.3s ease-in-out;
    box-shadow: 0 40px 50px rgba(0, 0, 0, 0.1);
    font-size: 50px;
  }
  .service_text > span:first-child {
    border-radius: 5px 0 0 5px;
  }
  .service_text > span:last-child {
    border-radius: 0px 5px 5px 0px;
  }
  .box-set {
    display: flex;
    flex-wrap: wrap;
    line-height: 2em;
  }
  .box {
    flex: 20%;
    margin: 10px;
  }
  .box img {
    width: 126px;
    height: 80px;
  }
  /*left fancy animastion*/
  @-moz-keyframes left_animation {
    0% {
      opacity: 0;
      -moz-transform: rotate(180deg) translate3d(100%, 100%, 0);
    }
    75% {
      opacity: 0.8;
      -moz-transform: rotate(-40deg);
    }
    100% {
      opacity: 1;
      -moz-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @-webkit-keyframes left_animation {
    0% {
      opacity: 0;
      -webkit-transform: rotate(180deg) translate3d(100%, 100%, 0);
    }
    75% {
      opacity: 0.8;
      -webkit-transform: rotate(-40deg);
    }
    100% {
      opacity: 1;
      -webkit-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @-ms-keyframes left_animation {
    0% {
      opacity: 0;
      -ms-transform: rotate(180deg) translate3d(100%, 100%, 0);
    }
    75% {
      opacity: 0.8;
      -ms-transform: rotate(-40deg);
    }
    100% {
      opacity: 1;
      -ms-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @-o-keyframes left_animation {
    0% {
      opacity: 0;
      -o-transform: rotate(180deg) translate3d(100%, 100%, 0);
    }
    75% {
      opacity: 0.8;
      -o-transform: rotate(-40deg);
    }
    100% {
      opacity: 1;
      -o-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @keyframes left_animation {
    0% {
      opacity: 0;
      transform: rotate(180deg) translate3d(100%, 100%, 0);
    }
    75% {
      opacity: 0.8;
      transform: rotate(-40deg);
    }
    100% {
      opacity: 1;
      transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  /*right fancy animation*/
  @-moz-keyframes right_animation {
    0% {
      opacity: 0;
      -moz-transform: rotate(180deg) translate3d(-100%, -100%, 0);
    }
    75% {
      opacity: 0.8;
      -moz-transform: rotate(40deg);
    }
    100% {
      opacity: 1;
      -moz-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @-webkit-keyframes right_animation {
    0% {
      opacity: 0;
      -webkit-transform: rotate(180deg) translate3d(-100%, 100%, 0);
    }
    75% {
      opacity: 0.8;
      -webkit-transform: rotate(40deg);
    }
    100% {
      opacity: 1;
      -webkit-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @-ms-keyframes right_animation {
    0% {
      opacity: 0;
      -ms-transform: rotate(180deg) translate3d(-100%, -100%, 0);
    }
    75% {
      opacity: 0.8;
      -ms-transform: rotate(40deg);
    }
    100% {
      opacity: 1;
      -ms-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @-o-keyframes right_animation {
    0% {
      opacity: 0;
      -o-transform: rotate(180deg) translate3d(-100%, -100%, 0);
    }
    75% {
      opacity: 0.8;
      -o-transform: rotate(40deg);
    }
    100% {
      opacity: 1;
      -o-transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  @keyframes right_animation {
    0% {
      opacity: 0;
      transform: rotate(180deg) translate3d(-100%, -100%, 0);
    }
    75% {
      opacity: 0.8;
      transform: rotate(40deg);
    }
    100% {
      opacity: 1;
      transform: rotate(0deg) translate3d(0%, 0%, 0);
    }
  }

  .multi-step-left.in-view .gallery {
    -moz-animation: left_animation 1300ms ease-in both;
    -webkit-animation: left_animation 1300ms ease-in both;
    -ms-animation: left_animation 1300ms ease-in both;
    animation: left_animation 1300ms ease-in both;
    -o-animation: left_animation 1300ms ease-in both;
  }

  .multi-step-right.in-view .gallery {
    -moz-animation: right_animation 1300ms linear both;
    -webkit-animation: right_animation 1300ms linear both;
    animation: right_animation 1300ms linear both;
    -o-animation: right_animation 1300ms linear both;
    -ms-animation: right_animation 1300ms linear both;
  }
  .gallery {
    background: #fff;
    width: 100%;
    height: 100%;
    color: #000;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    border-radius: 9%;
    text-align: center;
  }
  .gallery:hover {
    background: -webkit-linear-gradient(left, #3931af, #00c6ff);
    background: -webkit-linear-gradient(left, #795548, #0e0d0d);
    color: #fff;
    font-weight: bold;
  }
  .gallery img {
    /* margin-left: 24%; */
    margin-top: 10%;
  }
  .video_tv {
    flex: 53%;
    height: 342px;
    align-self: center;
  }
  .wl_video_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1%;
  }
  .video_tv_tab {
    display: none;
  }
  /* ............................................................ */
  .personal_website {
    font-size: 36px;
    font-family: "Marvin Visions Variable", Brush Script MT, Lucida Handwriting,
      cursive, "Audiowide", Georgia, serif, sans-serif, Times New Roman, Arial,
      Helvetica;
  }
  /* ............................................................ */
  .about_website abbr {
    cursor: grab;
    text-decoration: none;
  }
  .about_website {
    font-family: "Montserrat", Brush Script MT, Lucida Handwriting, cursive,
      "Audiowide", Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
    background-color: transparent;
    border-radius: 3px;
    color: #fff;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 74%;
    height: 300px;
    transform-style: preserve-3d;
    perspective: 2000px;
    transition: 0.4s;
    text-align: center;
    margin-top: 247px;
    margin-right: auto;
  }
  .about_website:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-top: 20px solid #fff;
    border-left: 20px solid #fff;
    box-sizing: border-box;
  }
  .about_website:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 20px solid #fff;
    border-right: 20px solid #fff;
    box-sizing: border-box;
  }
  .about_website .fas {
    font-size: 25px;
    height: 50px;
    width: 50px;
    line-height: 50px !important;
    background-color: #fff;
    color: #2c3a47;
  }
  .about_website .fa2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .about_website .website_text {
    position: absolute;
    top: 30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% - 60px);
    background-color: #2c3a47;
    border-radius: 3px;
    transition: 0.4s;
  }
  .about_website .website_text .fa1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .about_website .website_text div {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);

    text-align: center;
    width: 100%;
    padding: 30px 60px;
    line-height: 1.5;
    box-sizing: border-box;
  }
  .about_website .website_text div h3 {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .about_website .website_text div p {
    font-size: 15px;
  }
  .about_website:hover {
    transform: translate(-50%, -50%) rotateY(-20deg) skewY(3deg);
    -webkit-transform: translate(-50%, -50%) rotateY(-20deg) skewY(3deg);
    -moz-transform: translate(-50%, -50%) rotateY(-20deg) skewY(3deg);
    -ms-transform: translate(-50%, -50%) rotateY(-20deg) skewY(3deg);
    -o-transform: translate(-50%, -50%) rotateY(-20deg) skewY(3deg);
  }
  .about_website:hover .website_text {
    transform: rotateY(20deg) skewY(-3deg);
    -webkit-transform: rotateY(20deg) skewY(-3deg);
    -moz-transform: rotateY(20deg) skewY(-3deg);
    -ms-transform: rotateY(20deg) skewY(-3deg);
    -o-transform: rotateY(20deg) skewY(-3deg);
  }
  /* ............................................................ */
  .dealings {
    font: 400 1em/1.5 "Neuton";
    text-transform: uppercase;
    letter-spacing: 0.5em;
    display: inline-block;
    border: 4px double rgba(255, 255, 255, 0.25);
    border-width: 4px 0;
    padding: 1.5em 0em;
    position: relative;
    top: 18%;
    left: 50%;
    width: 43em;
    margin: 0 0 0 -20em;
  }
  .dealings span {
    font: 700 4em/1 "Oswald", sans-serif;
    text-align: center;
    letter-spacing: 0;
    display: block;
    margin: 0 auto;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
    background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;

    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -moz-animation: aitf 80s linear infinite;
    -moz-transform: translate3d(0, 0, 0);
    -moz-backface-visibility: hidden;

    -ms-background-clip: text;
    -ms-text-fill-color: transparent;
    -ms-animation: aitf 80s linear infinite;
    -ms-transform: translate3d(0, 0, 0);
    -ms-backface-visibility: hidden;

    -o-background-clip: text;
    -o-text-fill-color: transparent;
    -o-animation: aitf 80s linear infinite;
    -o-transform: translate3d(0, 0, 0);
    -o-backface-visibility: hidden;

    background-clip: text;
    text-fill-color: transparent;
    animation: aitf 80s linear infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

  /* Animate Background Image */
  @-webkit-keyframes aitf {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  @-moz-keyframes aitf {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  @-ms-keyframes aitf {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  @-o-keyframes aitf {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  @-keyframes aitf {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  .deals_matter {
    display: block;
    text-align: center;
    font-size: 22px;
    margin: 25px auto;
  }
  .scheme {
    flex: 20%;
    margin: 10px;
    background: -webkit-linear-gradient(
      307deg,
      #cddc39 45%,
      #aaa 50%,
      #00bcd4 56%,
      #e91e63 80%
    );
    background: linear-gradient(
      143deg,
      #cddc39 45%,
      #aaa 50%,
      #00bcd4 56%,
      #e91e63 80%
    );
    background: -webkit-linear-gradient(
      307deg,
      #2a8ab7 45%,
      #009688 50%,
      #4caf50 56%,
      #cddc39 80%
    );
    background: linear-gradient(
      143deg,
      #2a8ab7 45%,
      #009688 50%,
      #4caf50 56%,
      #cddc39 80%
    );
  }
  .scheme h1,
  .scheme h3 {
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    font-family: cursive, Brush Script MT, Lucida Handwriting, "Audiowide",
      Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
    font-variant: petite-caps;
  }
  .primary_bg,
  .advanced_bg,
  .premium_bg {
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transition: all 2s ease-in;
  }
  .primary_bg {
    background-image: url(../images/rsz_12deals1.png);
    background-position: right 260px;
  }
  .advanced_bg {
    background-image: url(../images/rsz_22deals1.png);
    background-position: right 260px;
  }
  .premium_bg {
    background-image: url(../images/rsz_13deals1.png);
    background-position: right 260px;
  }

  .primary_bg:hover,
  .advanced_bg:hover {
    background-position: center 260px;
    transition: all 2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }
  .premium_bg:hover {
    background-position: 220px 260px;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }

  [class^="hvr-"] {
    margin: 0.4em;
    padding: 1em;
    cursor: pointer;
    background: #e1e1e1;
    text-decoration: none;
    color: #666;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
  }
  .hvr-curl-top-left:hover:before,
  .hvr-curl-top-left:focus:before,
  .hvr-curl-top-left:active:before {
    width: 55px;
    height: 55px;
  }
  .hvr-curl-top-left:before {
    background: linear-gradient(
      135deg,
      #0a0909 45%,
      #aaa 50%,
      #ccc 56%,
      white 80%
    );
  }
  /*animation element sliding left*/
  .animation-element.slide-left {
    opacity: 0;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    -moz-transform: translate3d(-100px, 0px, 0px);
    -webkit-transform: translate3d(-100px, 0px, 0px);
    -o-transform: translate(-100px, 0px);
    -ms-transform: translate(-100px, 0px);
    transform: translate3d(-100px, 0px, 0px);
  }
  .animation-element.slide-right {
    opacity: 0;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    -moz-transform: translate3d(100px, 0px, 0px);
    -webkit-transform: translate3d(100px, 0px, 0px);
    -o-transform: translate(100px, 0px);
    -ms-transform: translate(100px, 0px);
    transform: translate3d(100px, 0px, 0px);
  }
  /*bounce up animation for the subject*/
  .animation-element.slide-up {
    opacity: 0;
    -moz-transition: all 1500ms ease-out;
    -webkit-transition: all 1500ms ease-out;
    -o-transition: all 1500ms ease-out;
    transition: all 1500ms ease-out;
    -moz-transform: translate3d(0px, 200px, 0px);
    -webkit-transform: translate3d(0px, 200px, 0px);
    -o-transform: translate(0px, 200px);
    -ms-transform: translate(0px, 200px);
    transform: translate3d(0px, 200px, 0px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .animation-element.slide-left.in-view,
  .animation-element.slide-right.in-view,
  .animation-element.slide-up.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
  .slide-left,
  .slide-right,
  .slide-up {
    color: #000;
    line-height: 2.5em;
    font-weight: bold;
    border-radius: 25px;
  }
  /* ............................................................ */
  .ecommerce-heading {
    display: flex;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-left: 20%;
    /* width: 80%; */
    /* margin: auto; */
    font-size: 10px;
  }
  .ecom_head_1p {
    font-family: monospace, Brush Script MT, Lucida Handwriting, cursive,
      "Audiowide", Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
    font-size: 2em;
    text-shadow: -3px 6px 7px #009688;
  }
  .ecom_head_2p {
    width: 34ch;
    animation: typing_ecom 7s steps(34),
      blink_ecom 0.5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace, Brush Script MT, Lucida Handwriting, cursive,
      "Audiowide", Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
    font-size: 2em;
    animation-iteration-count: infinite;
    margin-left: 10px;
    text-decoration: underline;
  }

  @keyframes typing_ecom {
    from {
      width: 0;
    }
  }

  @keyframes blink_ecom {
    50% {
      border-color: transparent;
    }
  }
  @import url("https://fonts.googleapis.com/css?family=Sacramento&display=swap");
  @import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");
  @import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Oswald");

  .neon {
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500,
      0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    color: #fff6a9;
    font-family: "Sacramento", cursive, Brush Script MT, Lucida Handwriting,
      "Audiowide", Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
    text-align: center;
    animation: blink 12s infinite;
    -ms-animation: blink 12s infinite;
    -webkit-animation: blink 12s infinite;
    -moz-animation: blink 12s infinite;
    -o-animation: blink 12s infinite;
  }

  @-webkit-keyframes blink {
    20%,
    24%,
    55% {
      color: #111;
      text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
      text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500,
        0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
      color: #fff6a9;
    }
  }

  @keyframes blink {
    20%,
    24%,
    55% {
      color: #111;
      text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
      text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500,
        0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
      color: #fff6a9;
    }
  }

  .e-commerce {
    margin: 20px;
    text-align: center;
  }
  .box-ecommerce {
    display: flex;
    flex-wrap: wrap;
    line-height: 2em;
  }
  .ecom-layout {
    flex: 20%;
    margin: 15px;
    background: #fff;
    color: #000;
    border-radius: 16%;
    border-top-left-radius: 0;
    text-align: center;
  }
  .ecom-layout:hover {
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 16%;
    border-top-right-radius: 0;
  }
  .ecom-layout h5,
  .ecom-layout p {
    font-size: 17px;
    margin: 0;
    font-family: "Maitree", Lucida Handwriting, Brush Script MT, cursive,
      "Audiowide", Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
  }
  .ecom-layout p {
    padding: 0 22px 14px 22px;
  }
  .ecom-layout img {
    width: 67.5%;
    height: 80px;
    margin-top: 10%;
  }
  /* ........................................................................... */
  .wl_process_total {
    margin-top: 8%;
  }
  .wl_process_heading {
    display: flex;
    position: relative;
    padding: 0 0.0625em;
    transform-style: preserve-3d;
    font: 900 4vw "Montserrat", Georgia, serif, chilanka, segoe script, purisa,
      comic sans ms, cursive;
    margin: 0 0 0 13%;
    width: 66%;
    color: #04f1db;
  }
  .line_cross.wl_process_heading::after {
    position: absolute;
    top: calc(85% - 0.5 * 0.125em);
    left: 9px;
    width: calc(15% + 50vw);
    height: 0.125em;
    border-radius: 0.125em;
    background: crimson;
    animation: slide 7s ease-out;
    content: "";
  }

  @-webkit-keyframes slide {
    0% {
      -webkit-transform: translate(-100%);
    }
  }
  @-moz-keyframes slide {
    0% {
      -moz-transform: translate(-100%);
    }
  }
  @-ms-keyframes slide {
    0% {
      -ms-transform: translate(-100%);
    }
  }
  @-o-keyframes slide {
    0% {
      -o-transform: translate(-100%);
    }
  }
  @keyframes slide {
    0% {
      transform: translate(-100%);
    }
  }
  .letter {
    overflow: visible;
    white-space: pre;
    -webkit-transform: rotatey(2deg) scalex(1.00061);
    -o-transform: rotatey(2deg) scalex(1.00061);
    -ms-transform: rotatey(2deg) scalex(1.00061);
    -moz-transform: rotatey(2deg) scalex(1.00061);
    transform: rotatey(2deg) scalex(1.00061);
  }
  .rev {
    -webkit-transform: rotatey(-2deg) scalex(1.00061);
    -o-transform: rotatey(-2deg) scalex(1.00061);
    -ms-transform: rotatey(-2deg) scalex(1.00061);
    -moz-transform: rotatey(-2deg) scalex(1.00061);
    transform: rotatey(-2deg) scalex(1.00061);
  }
  span.letter.spl_rotate_e {
    -webkit-transform: rotateY(172deg);
    -o-transform: rotateY(172deg);
    -ms-transform: rotateY(172deg);
    -moz-transform: rotateY(172deg);
    transform: rotateY(172deg);
  }

  .wl_process_slideshowContainer {
    position: relative;
    overflow: hidden;
    margin: 50px 0 75px;
    width: 100%;
    height: 414px;
    color: #fff;
  }
  .wl_process_imageSlides {
    position: absolute;
    left: 50%;
    top: 72%;
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 25px;
    width: 90%;
    min-height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1;
    display: flex;
  }
  .wl_process_imageSlides br {
    display: none;
  }
  .wl_process_imageSlides img {
    width: 44%;
    height: 295px;
    border-radius: 15px;
  }
  /* add 'visible' class via Javascript */
  .wl_process_visible {
    opacity: 1;
  }
  .wl_process_slideshowArrow {
    font-size: 7em;
    color: rgba(128, 128, 228, 0.5);
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
  }
  .wl_process_slideshowArrow:hover {
    opacity: 0.75;
  }
  #wl_process_leftArrow {
    position: absolute;
    left: 2%;
    top: 61%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  #wl_process_rightArrow {
    position: absolute;
    right: 2%;
    top: 61%;
    -o-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  .wl_process_slideshowCircles {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    display: flex;
    font-family: chilanka, segoe script, purisa, comic sans ms, cursive, serif,
      sans-serif;
  }
  .wl_process_circle {
    display: inline-block;
    margin-right: 20px;
    margin-left: 20px;
    transition: 1s ease-in-out;
    -webkit-box-flex: 0;
    -ms-flex: 0 1;
    flex: 0 1;
    font-size: 28px;
    cursor: pointer;
    font-weight: 600;
  }
  .wl_process_dot {
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    font-weight: bolder;
  }
  .wl_process_matter {
    margin-left: 40px;
  }
  .wl_process_matter h1 {
    font-size: 41px;
    margin: 0;
    font-family: "Maitree", Brush Script MT, Lucida Handwriting, cursive,
      "Audiowide", Georgia, serif, sans-serif, Times New Roman, Arial, Helvetica;
    text-decoration-color: #ff0000;
    font-family: monospace, serif, sans-serif;
    font-weight: 100;
  }
  .wl_process_matter p::first-letter {
    font-size: 30px;
    font-weight: bold;
    color: #ff0000;
  }
  .wl_agency_mobile {
    display: none;
  }
  /* ............................................................................ */
  @import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Oswald");
  .yt_clients {
    margin-left: 26%;
    margin-top: 13%;
  }
  .wordCarousel {
    font-size: 35px;
    font-weight: 100;
    color: #f8df07;
    margin: 0;
    display: flex;
  }
  .wordCarousel div {
    overflow: hidden;
    position: relative;
    height: 65px;
    padding-top: 10px;
    margin-top: -10px;
    margin-left: -44px;
  }
  .wordCarousel div li {
    font-family: Serif, Brush Script MT, Lucida Handwriting, cursive,
      "Audiowide", Georgia, sans-serif, Times New Roman, Arial, Helvetica;
    color: #9c27b0;
    font-weight: 700;
    padding: 0 10px;
    height: 45px;
    margin-bottom: 45px;
    display: block;
  }

  .flip2 {
    -webkit-animation: flip2 3s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -ms-animation: flip2 3s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -moz-animation: flip2 3s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    animation: flip2 3s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -o-animation: flip2 3s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
  }

  .flip3 {
    -webkit-animation: flip3 4s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    animation: flip3 4s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -moz-animation: flip3 4s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -ms-animation: flip3 4s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -o-animation: flip3 4s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
  }

  .flip4 {
    -webkit-animation: flip4 5s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -o-animation: flip4 5s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -ms-animation: flip4 5s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    -moz-animation: flip4 5s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    animation: flip4 5s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
  }

  @-webkit-keyframes flip2 {
    0% {
      margin-top: -180px;
    }
    5% {
      margin-top: -90px;
    }
    50% {
      margin-top: -90px;
    }
    55% {
      margin-top: 0px;
    }
    99.99% {
      margin-top: 0px;
    }
    100% {
      margin-top: -270px;
    }
  }

  @keyframes flip2 {
    0% {
      margin-top: -180px;
    }
    5% {
      margin-top: -90px;
    }
    50% {
      margin-top: -90px;
    }
    55% {
      margin-top: 0px;
    }
    99.99% {
      margin-top: 0px;
    }
    100% {
      margin-top: -270px;
    }
  }
  @-webkit-keyframes flip3 {
    0% {
      margin-top: -270px;
    }
    5% {
      margin-top: -180px;
    }
    33% {
      margin-top: -180px;
    }
    38% {
      margin-top: -90px;
    }
    66% {
      margin-top: -90px;
    }
    71% {
      margin-top: 0px;
    }
    99.99% {
      margin-top: 0px;
    }
    100% {
      margin-top: -270px;
    }
  }
  @keyframes flip3 {
    0% {
      margin-top: -270px;
    }
    5% {
      margin-top: -180px;
    }
    33% {
      margin-top: -180px;
    }
    38% {
      margin-top: -90px;
    }
    66% {
      margin-top: -90px;
    }
    71% {
      margin-top: 0px;
    }
    99.99% {
      margin-top: 0px;
    }
    100% {
      margin-top: -270px;
    }
  }
  @-webkit-keyframes flip4 {
    0% {
      margin-top: -360px;
    }
    5% {
      margin-top: -270px;
    }
    25% {
      margin-top: -270px;
    }
    30% {
      margin-top: -180px;
    }
    50% {
      margin-top: -180px;
    }
    55% {
      margin-top: -90px;
    }
    75% {
      margin-top: -90px;
    }
    80% {
      margin-top: 0px;
    }
    99.99% {
      margin-top: 0px;
    }
    100% {
      margin-top: -270px;
    }
  }
  @keyframes flip4 {
    0% {
      margin-top: -360px;
    }
    5% {
      margin-top: -270px;
    }
    25% {
      margin-top: -270px;
    }
    30% {
      margin-top: -180px;
    }
    50% {
      margin-top: -180px;
    }
    55% {
      margin-top: -90px;
    }
    75% {
      margin-top: -90px;
    }
    80% {
      margin-top: 0px;
    }
    99.99% {
      margin-top: 0px;
    }
    100% {
      margin-top: -270px;
    }
  }
  iframe.yt_1,
  iframe.yt_2 {
    width: 46%;
    height: 309px;
  }
  .yt_2 {
    margin-left: 2%;
  }
  /* ............................................................................ */
  .about_weblaunch {
    text-align: center;
    margin-top: 67px;
  }
  .wl_head {
    list-style: none;
    border-bottom: 0;
  }

  .wl_head li {
    display: inline-block;
    font-weight: 700;
    font-size: 2em;
    color: #fff;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    max-width: 2em;
  }
  .wl_head.hidden li.spaced {
    padding-left: 0;
  }
  .wl_head li.spaced {
    padding-left: 0.5em;
  }

  .wl_head.hidden li.ghost {
    opacity: 0;
    max-width: 0;
  }
  .notepaper {
    font: 12px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
    position: relative;
    margin: 30px auto;
    padding: 29px 20px 20px 45px;
    width: 88%;
    line-height: 30px;
    color: #6a5f49;
    text-shadow: 0 1px 1px white;
    background-color: #f2f6c1;
    background-image: -webkit-radial-gradient(
        center,
        cover,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.1) 90%
      ),
      -webkit-repeating-linear-gradient(top, transparent 0%, transparent 29px, rgba(
              239,
              207,
              173,
              0.7
            )
            29px, rgba(239, 207, 173, 0.7) 30px);
    background-image: -moz-radial-gradient(
        center,
        cover,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.1) 90%
      ),
      -moz-repeating-linear-gradient(top, transparent 0%, transparent 29px, rgba(
              239,
              207,
              173,
              0.7
            )
            29px, rgba(239, 207, 173, 0.7) 30px);
    background-image: -o-radial-gradient(
        center,
        cover,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.1) 90%
      ),
      -o-repeating-linear-gradient(top, transparent 0%, transparent 29px, rgba(
              239,
              207,
              173,
              0.7
            )
            29px, rgba(239, 207, 173, 0.7) 30px);
    border: 1px solid #c3baaa;
    border-color: rgba(195, 186, 170, 0.9);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5),
      inset 0 0 5px #d8e071, 0 0 1px rgba(0, 0, 0, 0.1),
      0 2px rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), inset 0 0 5px #d8e071,
      0 0 1px rgba(0, 0, 0, 0.1), 0 2px rgba(0, 0, 0, 0.02);
  }

  .notepaper:before,
  .notepaper:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
  }

  .notepaper:before {
    left: 28px;
    width: 2px;
    border: solid #efcfad;
    border-color: rgba(239, 207, 173, 0.9);
    border-width: 0 1px;
  }

  .notepaper:after {
    z-index: -1;
    left: 0;
    right: 0;
    background: rgba(242, 246, 193, 0.9);
    border: 1px solid rgba(170, 157, 134, 0.7);
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    transform: rotate(2deg);
  }

  .wl_matter {
    font-family: Georgia, serif, Brush Script MT, Lucida Handwriting, cursive,
      "Audiowide", sans-serif, Times New Roman, Arial, Helvetica;
    font-size: 14px;
  }

  .curly-quotes:before,
  .curly-quotes:after {
    display: inline-block;
    vertical-align: top;
    height: 30px;
    line-height: 48px;
    font-size: 50px;
    opacity: 0.2;
  }

  .curly-quotes:before {
    content: "\201C";
    margin-right: 4px;
    margin-left: -8px;
  }

  .curly-quotes:after {
    content: "\201D";
    margin-left: 4px;
    margin-right: -8px;
  }

  .quote-by {
    display: block;
    padding-right: 10px;
    text-align: right;
    font-size: 13px;
    font-style: italic;
    color: #84775c;
  }
  /* ............................................................................ */
  /* .our-works{
  border: 2px solid #fff;
  height: 300px;
  margin: 10px;
}
.client img{
  width: 80px;
  height: 80px;
} */
  /* ............................................................................ */
  /* section ends */
  /*footer*/
  footer {
    width: 100vw;
    background: -webkit-linear-gradient(left, #3931af, #00c6ff);
    background: -webkit-linear-gradient(left, #040404, #374c56);
    height: 270px;
  }
  footer a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
  }
  footer a:focus {
    color: #fff;
    text-decoration: none;
  }
  footer a:hover {
    color: rgba(255, 0, 0, 1);
    font-weight: bold;
  }

  .contact {
    margin-top: 6%;
    float: left;
    width: 54%;
  }
  .networks {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .netbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #444;
    color: #444;
    font-size: 21px;
  }
  .netbox .icon {
    padding: 0.6rem 0.6rem;
    color: #fff;
    transition: color 140ms ease;
    margin: 0 0.4rem;
  }
  .netbox .icon:after {
    position: absolute;
    right: 0;
    bottom: 3.5rem;
    z-index: 20;
    content: attr(data-tip);
    display: block;
    width: auto;
    font-size: 0.6rem;
    color: #ef5350;
    background-color: #ffe082;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    -o-transform: translateY(1rem);
    transform: translateY(1rem);
    transition: all 300ms ease 200ms;
  }
  .netbox .icon:hover {
    color: #ffe082;
  }
  .netbox .icon:hover:after {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .netbox:before {
    position: absolute;
    top: -0.5rem;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffe082;
  }
  .netbox:after {
    position: absolute;
    top: -2.6rem;
    right: 0;
    content: "Find me on my networks!";
    font-size: 1rem;
    padding-left: 10px;
    background-color: #ef5350;
    background-color: #18bd1e;
    padding: 7px;
    color: #f0f2f3;
    border-radius: 5px;
  }
  .nav-set {
    text-align: center;
    margin-top: 16px;
  }
  .nav-option {
    margin: auto 10px;
  }
  .company {
    text-align: center;
    margin-top: 16px;
  }
  .privacy_link {
    margin-left: 15px;
  }
  .address {
    text-align: center;
    width: 18%;
    float: right;
    margin: 3% 23% 0 0;
  }
  .address h5 {
    margin: 0;
  }
  #clockContainer {
    position: relative;
    margin-left: 30%;
    height: 6vw;
    width: 23vw;
    background: url("../images/cloak_foot.png") no-repeat;
    /*setting our background image*/
    background-size: 16%;
    background-position: 4% 92.7%;
  }

  #hour,
  #minute,
  #second {
    position: absolute;
    background: #000;
    border-radius: 10px;
    transform-origin: bottom;
  }

  #hour {
    width: 0.8%;
    height: 12%;
    top: 54%;
    left: 11.3%;
    opacity: 0.8;
  }

  #minute {
    width: 0.6%;
    height: 17%;
    top: 49%;
    left: 11.3%;
    opacity: 0.8;
  }

  #second {
    width: 0.3%;
    height: 23%;
    top: 42%;
    left: 11.3%;
    opacity: 0.8;
  }
  /* footer animation */
  .social_media_right_side * {
    margin: 0;
    padding: 0;
  }
  .social_media_right_side {
    position: fixed;
    right: 0;
    -webkit-transform: translate(0%, 51%);
    -moz-transform: translate(0%, 51%);
    -ms-transform: translate(0%, 51%);
    -o-transform: translate(0%, 51%);
    transform: translate(0%, 51%);
  }

  .social_media_right_side ul {
    list-style: none;
  }

  .social_media_right_side ul li {
    width: 40px;
    height: 40px;
    position: relative;
    background: #e59500;
    cursor: pointer;
    border-radius: 50%;
    margin: 5px;
  }
  .social_media_right_side ul li .fa,
  .social_media_right_side ul li .fas {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
  }
  .social_media_right_side ul li.phone {
    background: #3b5998;
    background: #ff9800;
  }

  .social_media_right_side ul li.facebook {
    background: #3b5998;
  }

  .social_media_right_side ul li.twitter {
    background: #00aced;
  }

  .social_media_right_side ul li.instagram {
    background: #bc2a8d;
    background: radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%
    );
    /* box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25); */
  }

  .social_media_right_side ul li.google {
    background: #dd4b39;
  }

  .social_media_right_side ul li.whatsapp {
    background: #4dc247;
  }

  .social_media_right_side ul li.linkedin {
    background: #4dc247;
    background: #477ca6;
  }

  .social_media_right_side ul li.phone div.slider {
    background: #627aac;
    background: #3b5998;
    background: #ff9800;
  }

  .social_media_right_side ul li.facebook div.slider {
    background: #627aac;
    background: #3b5998;
  }

  .social_media_right_side ul li.twitter div.slider {
    background: #7fd5f6;
    background: #00aced;
  }

  .social_media_right_side ul li.instagram div.slider {
    background: #dd94c6;
    background: #bc2a8d;
  }

  .social_media_right_side ul li.google div.slider {
    background: #eea59c;
    background: #dd4b39;
  }

  .social_media_right_side ul li.whatsapp div.slider {
    background: #82d47e;
    background: #4dc247;
  }

  .social_media_right_side ul li.linkedin div.slider {
    background: #82d47e;
    background: #4dc247;
    background: #477ca6;
  }

  .social_media_right_side .slider {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 0px;
    height: 40px;
    background: #eebb5c;
    border-radius: 3px;
    transition: all 0.5s 0.3s ease;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }

  .social_media_right_side .slider p {
    font-family: Lucida Handwriting, arial, cursive, Georgia, serif,
      Brush Script MT, sans-serif, Times New Roman, Helvetica;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 40px;
    opacity: 0;
    transition: all 0.6s ease;
  }

  .social_media_right_side ul li:hover .slider {
    width: 180px;
    transition: all 0.5s ease;
  }

  .social_media_right_side ul li:hover .slider p {
    opacity: 1;
    transition: all 1s 0.2s ease;
  }
  #back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    top: 85%;
    right: 93%;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    font-size: 35px;
    text-decoration: none;
    padding-left: 14px;
    padding-bottom: 6px;
  }
  #back2Top:hover {
    background-color: #ddf;
    color: #000;
  }
  @media (min-width: 1097px) and (max-width: 1170px) {
    .wl_process_circle {
      font-size: 18px;
    }
  }
  @media (min-width: 1170px) and (max-width: 1290px) {
    .wl_process_circle {
      font-size: 20px;
    }
  }
  @media (min-width: 1290px) and (max-width: 1375px) {
    .wl_process_circle {
      font-size: 23px;
    }
  }
  @media (min-width: 1375px) and (max-width: 1500px) {
    .wl_process_circle {
      font-size: 25px;
    }
  }
  @media (min-width: 1297px) and (max-width: 1500px) {
    .phone-call {
      margin-right: 9%;
    }
  }
  @media (min-width: 993px) and (max-width: 1296px) {
    .menu-icon {
      top: 28%;
    }
    .navbar-collapse {
      width: 22%;
    }
    .head-req {
      margin-top: 6.5%;
    }
    .phone-call {
      margin-right: 10%;
      margin-top: 7.2%;
    }
    .phone-call .fas {
      font-size: 19px;
    }
    .req_quote_div {
      right: 18%;
    }
    h1.req_quote_head {
      font-size: 36px;
    }
    .box {
      flex: 32%;
    }
    .video_tv {
      display: none;
    }
    .box.cf.video_tv_tab {
      display: block;
      flex: 83%;
    }
    .ecom-layout {
      flex: 30%;
    }
    .scheme {
      flex: 35%;
    }
    .primary_bg {
      background-image: url(../images/rsz_12deals1.png);
      background-position: right;
    }
    .advanced_bg {
      background-image: url(../images/rsz_22deals1.png);
      background-position: right;
    }
    /* .premium_bg {background-image: url(../images/rsz_13deals1.png);background-position: right 260px;} */
    .wordCarousel {
      font-size: 32px;
    }
    .ecommerce-heading {
      width: 80%;
      margin: auto;
    }
    iframe.yt_1,
    iframe.yt_2 {
      height: 235px;
    }
    @media (min-width: 993px) and (max-width: 1178px) {
      .stage {
        left: 3%;
      }
      .cubespinner {
        -webkit-transform-origin: 40px 40px 0;
        -moz-transform-origin: 40px 40px 0;
        -ms-transform-origin: 60px 60px 0;
        transform-origin: 40px 40px 0;
        -o-transform-origin: 40px 40px 0;
      }
      .cubespinner div {
        width: 80px;
        height: 80px;
        line-height: 80px;
      }
      .logo {
        width: 80px;
        height: 80px;
      }
      .cubespinner .face1 {
        -webkit-transform: translateZ(40px);
        -moz-transform: translateZ(40px);
        -ms-transform: translateZ(40px);
        transform: translateZ(40px);
        -o-transform: translateZ(40px);
      }
      .cubespinner .face2 {
        -webkit-transform: rotateY(90deg) translateZ(40px);
        -moz-transform: rotateY(90deg) translateZ(40px);
        -ms-transform: rotateY(90deg) translateZ(40px);
        transform: rotateY(90deg) translateZ(40px);
        -o-transform: rotateY(90deg) translateZ(40px);
      }
      .cubespinner .face3 {
        -webkit-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
        -moz-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
        -ms-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
        transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
        -o-transform: rotateY(90deg) rotateX(90deg) translateZ(40px);
      }
      .cubespinner .face4 {
        -webkit-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
        -moz-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
        -ms-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
        transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
        -o-transform: rotateY(180deg) rotateZ(90deg) translateZ(40px);
      }
      .cubespinner .face5 {
        -webkit-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
        -moz-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
        -ms-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
        transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
        -o-transform: rotateY(-90deg) rotateZ(90deg) translateZ(40px);
      }
      .cubespinner .face6 {
        -webkit-transform: rotateX(-90deg) translateZ(40px);
        -moz-transform: rotateX(-90deg) translateZ(40px);
        -ms-transform: rotateX(-90deg) translateZ(40px);
        transform: rotateX(-90deg) translateZ(40px);
        -o-transform: rotateX(-90deg) translateZ(40px);
      }
      #quote {
        font-size: 4.5rem;
      }
      .req_quote_div {
        right: 11%;
      }
      h1.req_quote_head {
        font-size: 36px;
      }
      /* .box {
        flex: 22%;
      } */
      .head-req a {
        padding: 10px;
        font-size: 14px;
      }
      .menu-icon {
        top: 42px;
      }
      .fixing_items .phone-call {
        margin-top: 5.8%;
      }
      .fixing_items .head-req {
        margin-top: 4.9%;
      }
      h1.req_quote_head {
        font-size: 34px;
      }
      .phone-call .fas {
        font-size: 18px;
      }
      .ecommerce-heading {
        width: 90%;
      }
    }
  }

  @media (min-width: 993px) and (max-width: 1096px) {
    button {
      margin: 0;
      width: 45%;
    }
    .menu-icon {
      top: 36px;
    }
    .phone-call {
      margin-top: 7.5%;
    }
    .hexa_domain {
      margin-left: 27%;
    }
    .navbar-nav .nav-link {
      font-size: 15px;
    }
    .navbar-collapse {
      width: 24%;
    }
    .ecommerce-heading {
      width: 95%;
      margin: auto;
    }
    .wl_process_circle {
      margin-right: 18px;
      margin-left: 18px;
      font-size: 16px;
    }
  }
  @media (min-width: 993px) and (max-width: 1700px) {
    @media (min-height: 0px) and (max-height: 700px) {
      .navbar-collapse {
        top: 95px;
      }
    }
  }
  @media (min-height: 1000px) {
    .req_quote_div {
      top: 155px;
    }
    .imageSlides {
      top: 375px;
    }
    .minislide-box {
      top: 305px;
      left: 71%;
    }
    .req-quote {
      top: 205px;
    }
    button {
      margin: 0;
      width: 45%;
    }
    .hexa_domain {
      margin-top: 13%;
    }
    .service_text {
      margin-top: 135px;
    }
    @media (min-height: 1550px) {
      .minislide-box {
        top: 346px;
      }
    }
  }
  @media (min-height: 0px) and (max-height: 700px) {
    .fixing_items #quote {
      font-size: 3.5rem;
    }
    .req_quote_div {
      top: 132px;
    }
    .req-quote {
      top: 147px;
    }
    .minislide-box {
      top: 226px;
    }
    @media (min-height: 0px) and (max-height: 650px) {
      .social_media_right_side {
        display: none;
      }
      @media (min-height: 0px) and (max-height: 340px) {
        #back2Top {
          top: 75%;
        }
      }
    }
  }
}
