section.contact .outer {
  /*background: #f7f8fa;*/
  background-position: right top;
  background-repeat: no-repeat;
  padding: 100px 130px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  /*box-shadow: 10px -11px 85px 0 rgba(0, 133, 255, 0.2);*/
  background: linear-gradient(128deg, #0068c8 0%, #001427 100%), radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, #000 100%);
}

section.contact .layer {
  position: absolute;
  left: 0;
  top: 0;
  /*! background: red; */
  z-index: 2;
  /*background: linear-gradient(90deg, #f7f8fa 0%, #f7f8fa 50%,transparent 70%, transparent 100%);*/
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

section.contact form {
  position: relative;
  z-index: 2;
}

section.contact h2 {
  margin-bottom: 18px;
}

section.contact .text {
  max-width: 600px;
}

section.contact .option {
  margin-top: 48px;
  margin-bottom: 40px;
}

section.contact .option .label {
  display: inline-block;
  vertical-align: middle;
  margin-right: 37px;
}

section.contact .option .item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 31px;
  font-size: 16px;
  position: relative;
}

section.contact .option .item label {
  cursor: pointer;
}

section.contact .option .item .ticker {
  position: absolute;
  width: 13px;
  height: 13px;
  background: white;
  border-radius: 100%;
  top: 7px;
  left: 0px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

section.contact .option .item .ticker.active {
  background: #0074DF;
}

section.contact .option .item input {
  margin-right: 10px;
  opacity: 0;
}

section.contact .form {
  width: 672px;
}

section.contact .form .double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

section.contact .form input[type=text],
section.contact .form input[type=email] {
  border: 1px solid rgba(0, 0, 0, 0.3);
  line-height: 54px;
  border-radius: 36px;
  font-family: var(--font);
  font-size: 16px;
  width: 100%;
  margin-bottom: 18px;
  padding: 0 45px;
}

section.contact .bottom {
  display: grid;
  grid-template-columns: 1fr 200px;
  width: 672px;
  padding-top: 15px;
}

section.contact .agree {
  font-size: 14px;
  padding-top: 20px;
}

section.contact .agree label {
  cursor: pointer;
  position: relative;
}

section.contact .agree label .ticker {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  top: 2px;
  left: 6px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
}

section.contact .agree label .ticker.active {
  background: #0074DF;
}

section.contact .agree input {
  margin-right: 18px;
  opacity: 0;
}

section.contact .agree a {
  border-bottom: 1px solid var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

section.contact .agree a:hover {
  border-bottom: 1px solid var(--color2);
  color: var(--color2);
}

section.contact .button {
  text-align: right;
  position: relative;
}

section.contact .notvalid:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #bb0c32;
  position: absolute;
  display: block;
  bottom: 40px;
  right: 60px;
}

section.contact .notvalid {
  background-color: #bb0c32;
  display: block;
  display: none;
  color: white;
  font-size: 13px;
  border-radius: 26px;
  white-space: nowrap;
  padding: 10px 20px;
  margin-top: 10px;
  z-index: 3;
  position: relative;
}

/* [l] */
@media all and (max-width: 1200px) {

  section.contact .outer {

    padding: 50px;
  }

  section.contact .layer {


    background: #F7F8FA;
  }


  section.contact .form {

    width: 100%;
  }

  section.contact .bottom {

    width: 100%;
  }



}

/* [m] */
@media all and (max-width: 992px) {

  section.contact .bottom {

    grid-template-columns: 1fr;
    grid-gap: 30px;
  }


}

/* [s] */
@media all and (max-width: 768px) {

  section.contact .option .label {

    margin-right: 10px;
  }


}

/* [xs] */
@media all and (max-width: 576px) {
  section.contact .agree label {}

  section.contact .outer {

    padding: 45px 20px;
  }


  section.contact h2 {

    font-size: 43px;
  }


  section.contact .option {

    margin-top: 20px;
    margin-bottom: 20px;
  }

  section.contact .option .label {

    display: block;
    margin-bottom: 5px;
  }

  section.contact .option .item {

    margin-right: 15px;
  }



  section.contact .form input[type=text],
  section.contact .form input[type=email] {

    padding: 0 20px;
    font-size: 14px;
  }


  section.contact .agree {
    font-size: 12px;
    padding-top: 0;
  }


  section.contact .button {

    text-align: right;
  }

  section.contact .notvalid:before {

    left: 0;
    right: 0;
    margin: auto;
  }



}