* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

body .container {
  height: 100vh;
  width: 100vw;
  overflow: scroll;
}

body .container .row {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url("vector_2.svg") no-repeat;
  background-position: 40% 10%;
  background-size: 250% 250%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1105px) {
  body .container .row {
    background-position: 40% 20%;
  }
}

body .container .row .column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 890px) {
  body .container .row .column {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

body .container .row .column .col1 {
  height: 100%;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 150px;
  padding-left: 30px;
}

@media screen and (max-width: 1105px) {
  body .container .row .column .col1 {
    padding-top: 50px;
    width: 80%;
  }
}

body .container .row .column .col1 h1 {
  color: #ffbd28;
  font-size: 3em;
  padding-bottom: 10px;
}

body .container .row .column .col1 h2 {
  color: #ffbd28;
  font-size: 2em;
  padding-bottom: 20px;
}

body .container .row .column .col1 h3 {
  color: #ffbd28;
  font-weight: 100;
  font-size: 1.2em;
}

body .container .row .column .col1 p {
  color: #fff;
  line-height: 1.2em;
}

@media screen and (max-width: 890px) {
  body .container .row .column .col1 p {
    color: #333;
  }
}

body .container .row .column .col1 .spacer {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .container .row .column .col1 .spacer img {
  width: 100%;
}

body .container .row .column .colsucc {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding: 4em 0 0 8em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

body .container .row .column .colsucc .spacer img {
  width: 100%;
  padding-left: 3em;
}

body .container .row .column .col2 {
  width: 100%;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -400px;
}

@media screen and (max-width: 1230px) {
  body .container .row .column .col2 {
    margin-top: -800px;
  }
}

body .container .row .column .col2 form {
  width: 70%;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

body .container .row .column .col2 form h2 {
  padding-bottom: 20px;
  text-align: center;
  color: #ffbd28;
}

body .container .row .column .col2 form .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
}

body .container .row .column .col2 form .form-field label {
  padding: 0 0 3px 5px;
}

body .container .row .column .col2 form .form-field input,
body .container .row .column .col2 form .form-field textarea {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}

body .container .row .column .col2 form .form-field input::-webkit-input-placeholder,
body .container .row .column .col2 form .form-field textarea::-webkit-input-placeholder {
  opacity: 0.4;
}

body .container .row .column .col2 form .form-field input:-ms-input-placeholder,
body .container .row .column .col2 form .form-field textarea:-ms-input-placeholder {
  opacity: 0.4;
}

body .container .row .column .col2 form .form-field input::-ms-input-placeholder,
body .container .row .column .col2 form .form-field textarea::-ms-input-placeholder {
  opacity: 0.4;
}

body .container .row .column .col2 form .form-field input::placeholder,
body .container .row .column .col2 form .form-field textarea::placeholder {
  opacity: 0.4;
}

body .container .row .column .col2 form .form-field input:focus,
body .container .row .column .col2 form .form-field textarea:focus {
  outline: 1px solid #ffbd28;
}

body .container .row .column .col2 form .form-field input::-webkit-outer-spin-button, body .container .row .column .col2 form .form-field input::-webkit-inner-spin-button,
body .container .row .column .col2 form .form-field textarea::-webkit-outer-spin-button,
body .container .row .column .col2 form .form-field textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body .container .row .column .col2 form .form-field input[type='number'],
body .container .row .column .col2 form .form-field textarea[type='number'] {
  -moz-appearance: textfield;
}

body .container .row .column .col2 form .form-field textarea {
  margin-bottom: 10px;
  resize: none;
}

body .container .row .column .col2 form button {
  width: 100%;
  padding: 5px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background-color: #f26444;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

body .container .row .column .col2 form button:hover {
  background-color: #d1563b;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

body .container .row .column .col2 form button .text {
  -webkit-box-flex: 19;
      -ms-flex: 19;
          flex: 19;
  padding-left: 30px;
}

body .container .row .column .col2 form button .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2em;
  padding-right: 3px;
}

body .container .row .column .col3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .container .row .column .col3 .col-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
}

@media screen and (max-width: 1230px) {
  body .container .row .column .col3 .col-con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body .container .row .column .col3 .col-con .col {
  height: 150px;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

body .container .row .column .col3 .col-con .col:first-of-type {
  margin-right: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

@media screen and (max-width: 1230px) {
  body .container .row .column .col3 .col-con .col:first-of-type {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body .container .row .column .col3 .col-con .col:first-of-type h3 {
  text-align: center;
  width: 100%;
  padding-bottom: 20px;
  color: #ffbd28;
}

body .container .row .column .col3 .col-con .col:first-of-type span {
  font-weight: 100;
  padding-left: 20px;
}

body .container .row .column .col3 .col-con .col:first-of-type span:first-of-type {
  padding-bottom: 15px;
  font-size: 1em;
}

@media screen and (max-width: 1361px) {
  body .container .row .column .col3 .col-con .col:first-of-type span {
    padding-left: 5px;
  }
}

body .container .row .column .col3 .col-con .col:first-of-type span i {
  margin-right: 20px;
  color: #f26444;
}

@media screen and (max-width: 1300px) {
  body .container .row .column .col3 .col-con .col:first-of-type span i {
    margin-right: 10px;
  }
}

body .container .row .column .col3 .col-con .col:last-of-type {
  margin-left: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body .container .row .column .col3 .col-con .col:last-of-type img {
  width: 70%;
}

@media screen and (max-width: 1230px) {
  body .container .row .column .col3 .col-con .col:last-of-type img {
    width: 20%;
  }
}

@media screen and (max-width: 1230px) {
  body .container .row .column .col3 .col-con .col:last-of-type {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 0;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */