
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@font-face {font-family: "Turbinado Pro Regular";
    src: url("../fonts/4341c77b7f74e789b3913578ed8be061.eot"); /* IE9*/
    src: url("../fonts/4341c77b7f74e789b3913578ed8be061.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/4341c77b7f74e789b3913578ed8be061.woff2") format("woff2"), /* chrome、firefox */
    url("../fonts/4341c77b7f74e789b3913578ed8be061.woff") format("woff"), /* chrome、firefox */
    url("../fonts/4341c77b7f74e789b3913578ed8be061.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url("../fonts/4341c77b7f74e789b3913578ed8be061.svg#Turbinado Pro Regular") format("svg"); /* iOS 4.1- */
  }

body, html {
    font-family: 'Mulish', sans-serif;
    font-size: 100%;
    background-color: #ffed00;
    color: #000;
}

a {
    color: rgb(227 12 20);
}

.main--header {
    background-color: rgb(255, 255, 255);
    /* background: -moz-linear-gradient(180deg, rgba(255,237,0,1) 35%, rgba(255,237,0,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,237,0,1) 35%, rgba(255,237,0,0) 100%);
    background: linear-gradient(180deg, rgba(255,237,0,1) 35%, rgba(255,237,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffed00",endColorstr="#ffed00",GradientType=1); */
}

.main--header .custom-logo {
    height: 44px;
    width: auto;
}

.main--wrapper .hero--form {
    position: relative;
    min-height: calc(100vh - 6px);
    width: 100vw;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.main--wrapper .hero--form::before {
    /* content: "";
    display: block;
    background-color: #ffed00;
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    opacity: .85;
    z-index: 0; */
}

.main--wrapper .hero--form .container {
    position: relative;
    z-index: 1;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: green;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: green;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #fff;
    }
  }
.form-wrapper  {
    position: relative;
}
.proccess-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: #fff;
    display: none;
}
.proccess-message.active {
    display: flex;
}

  
.scroll-button {
    background-color:#fff;
    color:#000;
    position:absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width:40px;
    height: 40px;
    border-radius:20px 20px 0 0;
    margin-right:24px;
    z-index:1;
    display: inline-flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
  /* the inverted curve pieces */
.curve {
	width: 1em;
	height: 1em;
	position: absolute;
}
/* position the inverted curve pieces and give them a radial-gradient */
.curve.left {
	inset: calc(100% - 1em) calc(50% - 2.2em);
	background: radial-gradient(circle at 0 0, #0000 70%, #fff 70% 100%)
}
.curve.right {
	inset: calc(100% - 1em) calc(50% + 1.2em);
	background: radial-gradient(circle at 100% 0, #0000 70%, #fff 70% 100%)
}

@media (max-width: 767.98px) {
    .scroll-button {
        display: none;
    }
}

.grecaptcha-badge {
    display: none !important;
}