@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext');

html {
  position: relative;
  overflow-x: hidden !important;
  align-items: center;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #324e63;
}

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

.gbg {
    background: linear-gradient(90deg, #FF0000, #FFFF00);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  /*background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);*/
  backdrop-filter: blur(10px);
}

.icon-bottom {
  font-size: 2.5em;
  color: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
}

.icon-color {
  background: -webkit-linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobileview {
  margin: 0 8%;
}

.frm_sbmt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.71429;
  font-size: 0.9375rem;
  text-transform: capitalize;
  font-family: "Public Sans", sans-serif;
  min-width: 64px;
  padding: 8px 22px;
  border-radius: 8px;
  color: #fff;
  /*background-color: #ffc107;*/
  width: 100%;
  box-shadow: rgba(32, 101, 209, 0.24) 0 8px 16px 0;
  height: 48px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.stroke-text{
  --stroke-color:white;
  --stroke-width:0.5px;
  color:#ff0000;
  text-shadow: var(--stroke-width)  0 0 var(--stroke-color),
    calc(var(--stroke-width) * -1) 0 0 var(--stroke-color),
    0 var(--stroke-width) 0 var(--stroke-color),
    0 calc(var(--stroke-width) * -1) 0 var(--stroke-color);
    transform: rotate(-53deg);
    width:100%;
    font-family:sans-serif;
}