* {
  border: 0;
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  visibility: visible;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  -webkit-appearance: none;
  -moz-appearance: none;
}

html {
  font-size: 62.5%;
}

html,
body {
  min-height: 100%;
}

img,
picture {
  max-width: 100%;
}

body {
  max-width: 100vw;
  margin: 0;
  font-family: "Roboto", Arial;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  background-color: #fff;
  color: #88949d;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

input,
select {
  font-family: "Roboto", Arial;
  font-weight: 300;
}

input::-webkit-input-placeholder {
  color: #4e555a;
  font-weight: 300;
}

input::-moz-placeholder {
  color: #4e555a;
  font-weight: 300;
}

input:-moz-placeholder {
  color: #4e555a;
  font-weight: 300;
}

input:-ms-input-placeholder {
  color: #4e555a;
  font-weight: 300;
}

.row-fluid {
  display: flex;
  flex-wrap: wrap;
}

.col-md-6 {
  width: 100%;
}

.col-md-4 {
  width: 33.33%;
}

@media (min-width: 650px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (max-width: 649px) {
  .col-md-4 {
    width: 100%;
  }
}

@media (min-width: 651px) and (max-width: 750px) {
  .col-md-4 {
    width: 50%;
  }
}

.col-md-12 {
  width: 100%;
}

.umbraco-forms-field {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.umbraco-forms-field-wrapper {
  width: 100%;
}

label {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Roboto", Arial;
  color: #212223;
  margin-bottom: 1rem;
}

input[type="text"],
select {
  display: flex;
  align-items: center;
  height: 5rem;
  width: 100%;
  font-size: 1.6rem;
  padding: 0 2rem;
  font-weight: 400;
  font-family: "Roboto", Arial;
  color: #88949d;
  border: 1px solid #e7ecf2;
  transition: border-color 250ms, color 250ms;
}

input:focus,
select:focus {
  border-color: #ccc;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

textarea {
  display: flex;
  align-items: center;
  height: 15rem;
  width: 100%;
  font-size: 1.6rem;
  padding: 2rem;
  font-weight: 400;
  font-family: "Roboto", Arial;
  color: #88949d;
  border: 1px solid #e7ecf2;
  transition: border-color 250ms, color 250ms;
}

textarea:focus {
  border-color: #ccc;
}

.umbraco-forms-submitmessage {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  font-size: 2.5rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: auto 0 0;
  height: 5rem;
  padding: 0 8rem;
  color: #fff;
  background-color: #d61821;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 0;
  border: 1px solid #e2e6e9;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition-property: color, background-color, background, border, transform,
    opacity;
  transition-duration: 200ms;
  margin: 1.5rem;
}

.btn:hover {
  background-color: #c1151d;
}

.field-validation-error {
  display: inline-block;
  color: rgb(35, 178, 198);
  margin: 1rem;
}

/* ========================  Radio Buttons =============================*/
.radiobuttonlist [type="radio"]:not(:checked),
.radiobuttonlist [type="radio"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}

.radiobuttonlist [type="radio"]:not(:checked) + label,
.radiobuttonlist [type="radio"]:checked + label {
  position: relative;
  padding-left: 2.3em;
  font-size: 1.05em;
  line-height: 1.7;
  cursor: pointer;
}

.radiobuttonlist [type="radio"]:not(:checked) + label:before,
.radiobuttonlist [type="radio"]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #aaa;
  background: #eee;
  border-radius: 1em;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  transition: all 0.275s;
}

.radiobuttonlist [type="radio"]:not(:checked) + label:after,
.radiobuttonlist [type="radio"]:checked + label:after {
  top: 6px;
  left: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  content: "";
  background-color: rgb(35, 178, 198);
}

.radiobuttonlist [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0) rotate(45deg);
}

.radiobuttonlist [type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* ========================  END Radio Buttons =============================*/

/* ========================  Checkboxes =============================*/
.checkboxlist [type="checkbox"]:not(:checked),
.checkboxlist [type="checkbox"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}

.checkboxlist [type="checkbox"]:not(:checked) + label,
.checkboxlist [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 2.3em;
  font-size: 1.05em;
  line-height: 1.7;
  cursor: pointer;
}

.checkboxlist [type="checkbox"]:not(:checked) + label:before,
.checkboxlist [type="checkbox"]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #aaa;
  background: #eee;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  transition: all 0.275s;
}

.checkboxlist [type="checkbox"]:not(:checked) + label:after,
.checkboxlist [type="checkbox"]:checked + label:after {
  top: 6px;
  left: 6px;
  width: 13px;
  height: 13px;
  position: absolute;
  content: "";
  background-color: rgb(35, 178, 198);
}

.checkboxlist [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0) rotate(45deg);
}

.checkboxlist [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1) rotate(0);
}
/* ========================  END Checkboxes =============================*/

@font-face {
  font-family: "DINAlternate";
  src: url("/dist/fonts/DIN-Alternate-Regular.otf");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "DINAlternate-Cond";
  src: url("/dist/fonts/DINWeb-CondLight.ttf");
  font-weight: 100;
}

@font-face {
  font-family: "DINAlternate-Cond";
  src: url("/dist/fonts/DINWeb-Cond.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "DINAlternate-Cond";
  src: url("/dist/fonts/DINWeb-CondMedium.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "DINAlternate-Cond";
  src: url("/dist/fonts/DINWeb-CondBold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: "DINAlternate-Black";
  src: url("/dist/fonts/DIN Alternate Black.ttf");
  font-weight: 900;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu72xKOzY.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu5mxKOzY.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7mxKOzY.woff2)
      format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4WxKOzY.woff2)
      format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7WxKOzY.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKOzY.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxK.woff2)
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
