/*!
 * 	Google Fonts
 * ----------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap");

/*!
  * 	Theme Variables
  * ----------------------------------------------- */

 :root {
    --body-font-family: "Nunito Sans", sans-serif;
    --body-font-size: 18px;
    --body-font-weight: 400;
    --body-font-color: #23262e;
    --body-line-height: 1.6;
    --heading-font-family: "Nunito Sans", sans-serif;
    --heading-font-color: #d72f19;
    --heading-font-weight: 900;
    --link-font-color: #d72f19;
    --link-hover-font-color: #23262e;
    --button-font-size: 16px;
    --button-font-weight: 700;
}


/*!
  *	Common
  * ----------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

body {
    margin: 0;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--body-font-color);
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
    background-color: #fff;
    text-align: left;
}

img {
    max-width: 100%;
}

a {
    color: var(--link-font-color);
    text-decoration: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

a:hover {
    color: var(--link-hover-font-color);
}

p {
    margin-top: 0;
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 16px;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 16px;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 16px;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none !important;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

label.error,
span.error {
    font-size: 14px;
    color: #ff0000;
    font-weight: normal;
}

.section_form span.error {
    display: block;
}

#requestquoteform label.error {
    color: #fff;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

 ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 4px 8px;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 2px;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

#wrapper {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--heading-font-family);
    color: var(--heading-font-color);
    font-weight: var(--heading-font-weight);
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.25;
}

h1,
.h1 {
    font-size: 48px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 32px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
}


/*!
  *	Spacing
  * ----------------------------------------------- */

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}


/*!
  *	Grid System
  * ----------------------------------------------- */

.container,
.container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.container *,
.container-fluid * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.row,
.form-row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.form-row {
    margin-left: -10px;
    margin-right: -10px;
}

.row>[class*="col-"] {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.form-row>[class*="col-"] {
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.col-1 {
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
}

.col-2 {
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
}

.col-3 {
    max-width: 25%;
    flex: 0 0 25%;
}

.col-4 {
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
}

.col-5 {
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
}

.col-6 {
    max-width: 50%;
    flex: 0 0 50%;
}

.col-7 {
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
}

.col-8 {
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
}

.col-9 {
    max-width: 75%;
    flex: 0 0 75%;
}

.col-10 {
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
}

.col-11 {
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
}

.col-12 {
    max-width: 100%;
    flex: 0 0 100%;
}

.no-gutter {
    margin-right: 0;
    margin-left: 0;
}

.no-gutter>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.flex-reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.align-center {
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}

.text-center {
    text-align: center !important;
}

.text-dark {
    color: #23262e !important;
}

.link {
    font-weight: 900;
}


/*!
  *	Form Styling
  * ----------------------------------------------- */

.btn {
    display: inline-block;
    padding: 10px 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    font-family: var(--body-font-family);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1.25;
    text-align: center;
    border-radius: 30px 4px;
}

.btn--lg {
    padding: 16px 64px;
}

.btn--block {
    width: 100%;
}

.btn--red {
    background-color: #e33422;
    color: #fff;
    border-color: #e33422;
}

.btn--red:hover {
    background: #23262e;
    color: #fff;
    border-color: #23262e;
}

.btn--white {
    background-color: #fff;
    color: #d72f19;
    border-color: #fff;
}

.btn--white:hover {
    background-color: #23262e;
    color: #fff;
    border-color: #23262e;
}

.btn--white-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--white-outline:hover {
    background-color: #fff;
    color: #d72f19;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: 1px solid transparent;
    height: 40px;
    padding: 8px 16px;
    font-family: var(--body-font-family);
    font-size: 14px;
    color: var(--body-font-color);
    border-radius: 4px;
    background-color: #eee;
}

.form-control:focus {
    background-color: transparent;
    border-color: #eee;
}

textarea.form-control {
    height: auto;
}

select.form-control {
    background: #eee url(../images/icons/down-arrow-gray.png) center right 16px no-repeat;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-control-with-label {
    position: relative;
}

.form-control-with-label .form-control {
    padding-right: 56px;
}

.form-control-with-label .form-control-suffix {
    position: absolute;
    right: 16px;
    top: 18px;
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1;
}

.radio-label-group {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.radio-label-group .radio-label-group__item {
    flex-basis: 0;
    flex-grow: 1;
}

.radio-label-group .radio-label-group__item+.radio-label-group__item {
    margin-left: -1px;
}

.radio-label-group input {
    display: none;
}

.radio-label-group label {
    display: block;
    line-height: 1;
    padding: 12px 16px;
    font-family: var(--body-font-family);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: solid 1px #cfd2d3;
    text-align: center;
    margin-bottom: 0;
}

.radio-label-group input:checked+label {
    background-color: #d72f19;
    border-color: #d72f19;
    color: #fff;
}

.radio-label-group .radio-label-group__item:first-child label {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 30px;
}

.radio-label-group .radio-label-group__item:last-child label {
    border-bottom-right-radius: 30px;
    border-top-right-radius: 4px;
}

.radio-tag input {
    display: none;
}

.radio-tag label,
.checkbox-tag label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    line-height: 1.15;
    cursor: pointer;
    white-space: nowrap;
}

.radio-tag label {
    border: 1px solid transparent;
}

.radio-tag input:checked+label {
    border-color: #fff;
}

.checkbox-tag input {
    display: none;
}

.checkbox-tag label {
    position: relative;
    padding: 7px 16px 7px 30px;
}

.checkbox-tag label:before,
.checkbox-tag label:after {
    content: "";
    position: absolute;
}

.checkbox-tag label:before {
    left: 8px;
    top: 7px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
}

.checkbox-tag label:after {
    left: 15px;
    top: 11px;
    width: 3px;
    height: 6px;
    transform: rotate(-315deg);
    border-bottom: 1.5px solid transparent;
    border-right: 1.5px solid transparent;
}

.checkbox-tag input:checked+label {
    background: #fff;
    color: #d72f19;
}

.checkbox-tag input:checked+label:before {
    background: #d72f19;
    border-color: #d72f19;
}

.checkbox-tag input:checked+label:after {
    border-color: #fff;
}

.tag-list {
    margin: -4px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}

.tag-list .tag-list__item {
    padding: 4px;
}

.form-section select.form-control {
    background: rgba(255, 255, 255, 0.12) url(../images/icons/down-arrow-white.png) center right 16px no-repeat;
}

.form-section select.form-control option {
    color: #23262e;
}

.form-section .radio-label-group label {
    border-color: transparent;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 16px;
}

.form-section .radio-label-group input:checked+label {
    background-color: #fff;
    border-color: transparent;
    color: #d72f19;
}

.error-message {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
}


/*!
  *	Header
  * ----------------------------------------------- */

#header {
    padding-top: 16px;
    padding-bottom: 16px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background: none;
}

.header-container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}

#header .email {
    color: var(--link-hover-font-color);
    font-weight: 600;
}

#header .email:hover {
    color: var(--link-font-color);
}

.navbar {
    margin-left: auto;
}

.navbar>ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.navbar>ul>li+li {
    margin-left: 24px;
}

.navbar>ul>li>a {
    letter-spacing: 1px;
    font-size: 15px;
    display: inline-block;
}

#hamburger {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    position: relative;
    margin-left: 16px;
    width: 20px;
    height: 12px;
    cursor: pointer;
    padding: 0;
    display: none;
}

#hamburger span:before,
#hamburger span:after {
    content: "";
}

#hamburger span,
#hamburger span:before,
#hamburger span:after {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #1a1a1a;
    display: block;
}

#hamburger span {
    top: 0;
}

#hamburger span:before {
    top: 5px;
}

#hamburger span:after {
    top: 10px;
}

.brand {
    display: inline-block;
}

.hero-section {
    position: relative;
    padding-bottom: 40px;
}

.hero-section .hero-section__image {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero-section .hero-section__container {
    font-size: 24px;
    color: #23262e;
    font-weight: 700;
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-section .hero-section__title {
    color: #23262e;
}

.eq-form {
    border-radius: 12px;
    box-shadow: 0 15px 40px 4px rgba(0, 0, 0, 0.13);
    background-color: #fff;
    padding: 20px 30px;
    max-width: 420px;
    width: 100%;
    margin-left: auto;
    position: relative;
}

.eq-form .eq-form__title {
    color: #23262e;
    text-align: center;
}

.eq-form .eq-form__text {
    position: absolute;
    left: 0;
    bottom: -30px;
    margin-top: 16px;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    font-weight: bold;
    color: #23262e;
    opacity: 0.6;
}

#clients.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}

#clients.owl-carousel .owl-stage {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
}

#clients.owl-theme .owl-dots {
    margin-top: 32px;
}

#clients.owl-theme .owl-dots .owl-dot span {
    background-color: #ebeef5;
}

#clients.owl-theme .owl-dots .owl-dot.active span,
#clients.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #e6655f;
}

.section .section__head {
    margin-bottom: 48px;
}

.section .section__head.section__head--center {
    max-width: 640px;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section .section__head .title {
    margin-bottom: 16px;
}

.title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

.title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -19px;
    width: 38px;
    height: 7px;
    background: url(../images/shapes/title-red.png) no-repeat;
}

.title.title--left {
    text-align: left;
}

.title.title--left:after {
    left: 0;
    margin-left: 0;
}

.title.title--white {
    color: #fff;
}

.title.title--white:after {
    background: url(../images/shapes/title-white.png) no-repeat;
}

.collage .collage__card {
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 20px 1px rgba(32, 33, 39, 0.06);
    box-shadow: 0 10px 20px 1px rgba(32, 33, 39, 0.06);
    background-color: #ffffff;
    position: relative;
    margin: 12px;
}

.collage .collage__card .collage__card__image {
    border-radius: 12px;
    overflow: hidden;
}

.collage .collage__card .collage__card__content {
    padding: 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 16px;
}

.collage .collage__card .collage__card__content h5 {
    margin-bottom: 8px;
    color: #fff;
}

.collage .collage__card .collage__card__content p {
    margin-bottom: 0;
    max-height: 0;
    transition: max-height 0.5s ease-out;
    overflow: hidden;
}

.collage .collage__card:hover .collage__card__image {
    background-color: #d72f19;
}

.collage .collage__card:hover .collage__card__image img {
    visibility: hidden;
}

.collage .collage__card:hover .collage__card__content p {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.collage .collage__card:hover .collage__card__content a {
    color: #fff;
    font-weight: 800;
}

.section--curtain {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.section--curtain .section--curtain__hero {
    width: 100%;
    z-index: 2;
    position: relative;
}

.section--curtain .section--curtain__container {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
}

.section--curtain.section--curtain--explore {
    position: relative;
}

.section--curtain.section--curtain--explore:before,
.section--curtain.section--curtain--explore:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}

.section--curtain.section--curtain--explore:before {
    top: 0;
    background: #eeeff2;
}

.section--curtain.section--curtain--explore:after {
    bottom: 0;
    background: #d72f19;
}

.section--curtain .container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.section--curtain .section--curtain__title {
    color: #fff;
    margin-bottom: 0;
    flex-grow: 1;
    flex-basis: 0;
    margin-right: 64px;
}

.section--curtain .section--curtain__container .btn {
    flex-shrink: 0;
}

.content-list {
    margin-bottom: -30px;
}

.content-list .content-list__item {
    margin-bottom: 30px;
}

.content-list .content-list__item img {
    margin-bottom: 16px;
}

.content-list .content-list__item h6 {
    margin-bottom: 4px;
}

.section-shape img {
    width: 100%;
}

.section.section--case-study {
    padding-top: 0 !important;
    background: #eeeff2;
}

.case-study-left {
    padding-right: 80px;
    border-right: solid 2px #d6d6d6;
    height: 100%;
}

.case-study-right {
    padding-left: 80px;
    height: 100%;
}

.case-study-content+.case-study-content {
    margin-top: 48px;
}

.case-study-content h2 {
    margin-bottom: 4px;
}

.case-study-content .case-study-content__title {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.case-study-content.case-study-content--data {
    max-width: 220px;
}

.form-section .form-control {
    border: 1px solid transparent;
    height: 48px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.12);
}

.form-section .form-control:focus {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.12);
}

.form-section {
    background: #d72f19;
}

.form-section .form-section__container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}

.form-section .form-section__col {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
}

.form-section .form-section__col .form-section__col__head {
    min-height: 170px;
    margin-bottom: 32px;
}

.form-section .form-section__col .form-section__col__body {
    flex: 10;
}

.form-section .form-section__left {
    flex: 0 0 43%;
    max-width: 43%;
    padding-right: 54px;
    position: relative;
}

.form-section .form-section__left:after {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    right: -1px;
    width: 2px;
    background: #ee6b5a;
    opacity: 0.5;
}

.form-section .form-section__right {
    flex: 0 0 57%;
    max-width: 57%;
    padding-left: 54px;
}

.form-section .form-section__card {
    padding: 54px 40px;
    border-radius: 56px;
    background-color: #db3d29;
    color: #fff;
    font-weight: 600;
}

.form-section .form-section__card.form-section__card--selection {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    min-height: 460px;
}

.form-section .form-section__card.form-section__card--selection #form_content {
    flex: 1;
}

.form-section .form-section__card .form-section__card__title {
    display: block;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.form-section .form-section__card .form-section__card__number-list {
    margin: 0;
    list-style: decimal;
}

.form-section__left .form-section__col__body {
    min-height: 624px;
}

.form-section__btn-group {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.form-section__btn-group #step_next,
.form-section__btn-group #requestquotebtn {
    flex-grow: 1;
    flex-basis: 0;
}

.form-section__btn-group #step_prev {
    padding-left: 48px;
    padding-right: 48px;
    margin-right: 20px;
}

.form-step {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    max-width: 540px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.form-step .form-step__item {
    position: relative;
    flex: 0 0 25%;
    max-width: 25%;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.form-step .form-step__item:before,
.form-step .form-step__item:after {
    content: "";
    position: absolute;
    width: 50%;
    z-index: 1;
    height: 2px;
    top: 15px;
    background: #ee6b5a;
}

.form-item .form-control::-webkit-input-placeholder {
    color: #fff;
}

.form-item .form-control:-ms-input-placeholder {
    color: #fff;
}

.form-item .form-control::placeholder {
    color: #fff;
}

.form-step .form-step__item:before {
    left: 0;
}

.form-step .form-step__item:after {
    left: 50%;
}

.form-step .form-step__item:first-child:before,
.form-step .form-step__item:last-child:after {
    display: none;
}

.form-step .form-step__circle {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 32px;
    height: 32px;
    background: #e06050;
    border-radius: 50%;
    color: #fff;
    position: relative;
    outline: 10px solid #d72f19;
    position: relative;
    z-index: 2;
}

.form-step .form-step__circle:after {
    content: "";
    display: none;
    position: absolute;
    margin-top: -3px;
    padding: 2px 4px;
    border-bottom: 3px solid #d72f19;
    border-left: 3px solid #d72f19;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.form-step .form-step__number {
    opacity: 0.8;
    line-height: 1;
    padding-top: 2px;
}

.form-step .form-step__title {
    display: block;
    margin-top: 8px;
    opacity: 0.6;
}

.form-step .form-step__item.done .form-step__circle {
    background: #f9e0dc;
}

.form-step .form-step__item.done .form-step__number {
    display: none;
}

.form-step .form-step__item.done .form-step__circle:after {
    display: block;
}

.form-step .form-step__item.active .form-step__circle {
    background: #fff;
    color: #d72f19;
}

.form-step .form-step__item.active .form-step__title {
    opacity: 1;
}

#form_content .form-item,
#step_info .form-section__card {
    display: none;
}

#form_content .form-item.show,
#step_info .form-section__card.show {
    display: block;
}

.form-item p {
    margin-bottom: 8px;
}

#step_dots {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

#step_dots .step-dot {
    display: block;
    width: 8px;
    height: 8px;
    margin: 4px;
    background: #e78275;
    border-radius: 50%;
}

#step_dots .step-dot.active {
    background: #fff;
}

#form_content {
    font-size: 16px;
}

.collapse {
    padding-bottom: 16px;
}

.collapse:last-child {
    border-bottom: 1px solid #ee6b5a;
}

.collapse+.collapse {
    padding-top: 16px;
    border-top: 1px solid #ee6b5a;
}

.collapse .collapse__head {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-right: 24px;
}

.collapse .collapse__head:after {
    content: "+";
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    top: 2px;
    display: block;
    text-align: center;
    line-height: 20px;
    font-size: 20px;
}

.collapse .collapse__head.active:after {
    content: "-";
}

.collapse .collapse__body {
    display: none;
    margin-top: 8px;
}

#requestquotebtn,
#industrial_div {
    display: none;
}

.hero-section.hero-section--thank {
    height: 100vh;
}

.hero-section.hero-section--thank .hero-section__image {
    top: 0;
}

.hero-section.hero-section--thank .hero-section__container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.index-2 {
    position: relative;
    z-index: 2;
}

.section-shape.section-shape--footer {
    background: #d72f19;
}

#footer {
    background: #23262e;
    color: #fff;
    /* padding-bottom: 40px; */
    font-size: 12px;
    margin-top: -1px;
}

#footer .footer__content {
    margin-bottom: 40px;
}

#footer .footer__content p {
    opacity: 0.7;
}

#footer .footer__content .footer__content__title {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
}

#footer .footer__link {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

#footer .footer__link li+li {
    margin-left: 24px;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    color: #d72f19;
}

.last-footer {
    text-align: center;
    padding: 16px 0;
    background: #1e2128;
    font-size: 12px;
    color: #fff;
}

#footer .footer-content {
    font-size: 14px;
}

#footer .footer-content .footer-content__title {
    display: block;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

#footer .footer-content .footer-content__link,
#footer .footer-last .footer-last__link {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer .footer-content .footer-content__link li+li {
    margin-top: 8px;
}

#footer .footer-last {
    margin-top: 72px;
    padding-bottom: 16px;
    font-size: 12px;
}

#footer .footer-last,
#footer .footer-last .footer-last__link {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}

#footer .footer-last .footer-last__text {
    flex: 0 0 auto;
    width: 100%;
}

#footer .footer-last .footer-last__link li+li {
    margin-top: 0;
    margin-left: 16px;
}


/*!
  *	Responsive
  * ----------------------------------------------- */

@media (max-width: 1440px) {
    /* .hero-section { padding-bottom: 40px; } */
    .hero-section .hero-section__image {
        bottom: initial;
        top: 0;
    }
}

@media (max-width: 1200px) {
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mb-lg-40 {
        margin-bottom: 40px !important;
    }
    #footer {
        text-align: center;
    }
    #footer .footer__link {
        justify-content: center;
    }
    .form-step .form-step__title {
        font-size: 13px;
    }
    .radio-tag label,
    .checkbox-tag label {
        white-space: normal;
    }
}

@media (max-width: 992px) {
    h1,
    .h1 {
        font-size: 40px;
    }
    h2,
    .h2 {
        font-size: 32px;
    }
    h3,
    .h3 {
        font-size: 28px;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .mb-md-48 {
        margin-bottom: 48px;
    }
    .hero-section .hero-section__image,
    .section--curtain .section--curtain__hero,
    .section-shape img {
        width: fit-content;
        max-width: fit-content;
    }
    .hero-section .hero-section__content {
        text-align: center;
    }
    .hero-section .hero-section__container {
        padding-top: 180px;
        font-size: 20px;
    }
    .eq-form {
        margin-right: auto;
    }
    .section--curtain .section--curtain__title {
        font-size: 20px;
        margin-right: 32px;
    }
    .section--curtain .section--curtain__container {
        top: 60%;
    }
    .case-study-left {
        padding-right: 40px;
    }
    .case-study-right {
        padding-left: 40px;
    }
    .form-section .form-section__left,
    .form-section .form-section__right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .form-section .form-section__left {
        padding-bottom: 64px;
        margin-bottom: 64px;
    }
    .form-section .form-section__left:after {
        top: initial;
        right: 32px;
        left: 32px;
        bottom: 0;
        height: 2px;
        width: initial;
    }
    .form-section .form-section__col .form-section__col__head {
        min-height: initial;
    }
    #footer .footer-content {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section--curtain .container {
        display: block;
        text-align: center;
    }
    .section--curtain .section--curtain__title {
        margin-right: 0;
        margin-bottom: 40px;
    }
    #footer .footer__link li+li {
        margin-left: 16px;
    }
    #footer .footer-last .footer-last__copyright,
    #footer .footer-last .footer-last__link {
        flex: 0 0 auto;
        width: 100%;
    }
    #footer .footer-last .footer-last__link {
        justify-content: center;
        margin-top: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .case-study-left {
        padding-right: 0;
        padding-bottom: 40px;
        border-bottom: solid 2px #d6d6d6;
        border-right: none;
    }
    .case-study-right {
        padding-left: 0;
        margin-top: 40px;
    }
    .case-study-content+.case-study-content {
        margin-top: 32px;
    }
    .section.section--case-study {
        padding-bottom: 32px;
    }
    #footer .footer__link {
        display: block;
    }
    #footer .footer__link li+li {
        margin-left: 0;
        margin-top: 16px;
    }
    .form-step .form-step__title {
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    h1,
    .h1 {
        font-size: 32px;
    }
    h2,
    .h2 {
        font-size: 28px;
    }
    h3,
    .h3 {
        font-size: 24px;
    }
    .col-xxs-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #header .email {
        font-size: 16px;
    }
    .brand {
        max-width: 80px;
    }
    .hero-section .hero-section__container {
        padding-top: 140px;
        font-size: 18px;
    }
    .eq-form .eq-form__text {
        bottom: -64px;
    }
    .section--curtain .section--curtain__container {
        top: 62%;
    }
    .section--curtain .section--curtain__title {
        margin-bottom: 16px;
    }
    .form-section .form-section__card {
        padding: 32px;
    }
    .form-step .form-step__title {
        font-size: 10px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .form-section__btn-group #step_prev {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    #step_info .form-section__card {
        font-size: 16px;
    }
    #step_info .form-section__card .form-section__card__title {
        font-size: 20px
    }
    .form-section__left .form-section__col__body {
        min-height: 560px;
    }
}

@media (max-width: 379px) {
    .section--curtain .section--curtain__title {
        font-size: 16px;
    }
    #step_info .form-section__card {
        font-size: 14px;
    }
}