/**
 * Default Variables.
 *
 * Modify this file to provide default Bootstrap Framework variables. The
 * Bootstrap Framework will not override any variables defined here because it
 * uses the `!default` flag which will only set their default if not already
 * defined here.
 *
 * You can copy existing variables directly from the following file:
 * ./THEMENAME/bootstrap/assets/stylesheets/bootstrap/_variables.scss
 */
@keyframes back-top {
  from {
    bottom: -212px;
  }
  to {
    bottom: 0;
  }
}
.page-wrapper {
  max-width: 100%;
}

.main-content {
  width: 100%;
}
.main-content .region--content {
  margin-bottom: 0;
}
.main-content .region > * {
  margin-bottom: 0;
}
.main-content .node__content {
  padding-bottom: 0;
}

.grid-full {
  grid-template-columns: auto;
}

.site-branding {
  margin: 0 !important;
  padding: 48px 0 0 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: auto;
}
@media (min-width: 768px) {
  .site-branding {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    transform: translate(-50%, 0);
  }
}
.site-branding .site-branding__inner {
  height: auto;
  padding: 0;
}

.text-content p {
  margin: 0;
}

.sv-container {
  width: 100%;
}
@media (min-width: 1280px) {
  .sv-container {
    width: 1280px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

a:focus {
  outline: none;
}

form {
  display: grid;
  grid-row-gap: 16px;
  grid-column-gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin: 0 auto;
  grid-auto-flow: column;
}
@media (min-width: 768px) {
  form {
    grid-row-gap: 32px;
  }
}
form label.form-item__label {
  letter-spacing: 0.5px;
  background: #FBFDFD;
  color: #72777E;
  font: 500 12px/16px "Raleway", sans-serif;
  padding: 0 4px !important;
  display: flex;
  flex-flow: row nowrap;
  position: absolute;
  top: -9px;
  left: 12px;
  z-index: 2;
  margin: 0;
  float: left;
  width: auto !important;
}
form label.form-item__label:after {
  background-size: contain;
  background-repeat: no-repeat;
  width: 7px;
  margin-left: 3px;
}
form textarea,
form input[type=email],
form input[type=tel],
form input[type=text] {
  border-radius: 8px;
  border: 1px solid #72777E;
  letter-spacing: 0.5px;
  background: #FBFDFD;
  font: 600 16px/24px "Raleway", sans-serif;
  color: #191C1D;
  max-width: 100%;
  width: 100%;
  height: auto;
  min-height: auto;
  -webkit-appearance: none;
  box-shadow: none;
  padding: 7px 8px 7px 52px;
}
form textarea:-webkit-autofill,
form input[type=email]:-webkit-autofill,
form input[type=tel]:-webkit-autofill,
form input[type=text]:-webkit-autofill {
  background: #FBFDFD;
  box-shadow: none;
  -webkit-box-shadow: 0 0 0 56px #FBFDFD inset;
  -webkit-text-fill-color: #191C1D;
}
form textarea:-webkit-autofill:active, form textarea:-webkit-autofill:hover,
form input[type=email]:-webkit-autofill:active,
form input[type=email]:-webkit-autofill:hover,
form input[type=tel]:-webkit-autofill:active,
form input[type=tel]:-webkit-autofill:hover,
form input[type=text]:-webkit-autofill:active,
form input[type=text]:-webkit-autofill:hover {
  background: #FBFDFD;
  box-shadow: none;
  border: 2px solid #72777E;
  -webkit-box-shadow: 0 0 0 56px #FBFDFD inset;
  padding: 6px 8px 6px 52px;
}
form textarea:-webkit-autofill:focus,
form input[type=email]:-webkit-autofill:focus,
form input[type=tel]:-webkit-autofill:focus,
form input[type=text]:-webkit-autofill:focus {
  outline: none;
  background: #FBFDFD;
  box-shadow: none;
  border: 2px solid #72777E;
  -webkit-box-shadow: 0 0 0 56px #FBFDFD inset;
  -webkit-text-fill-color: #191C1D;
  padding: 6px 8px 6px 52px;
}
form textarea::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=text]::-moz-placeholder {
  font: 600 16px/24px "Raleway", sans-serif;
  color: #191C1D;
}
form textarea::placeholder,
form input[type=email]::placeholder,
form input[type=tel]::placeholder,
form input[type=text]::placeholder {
  font: 600 16px/24px "Raleway", sans-serif;
  color: #191C1D;
}
form textarea:hover, form textarea:focus,
form input[type=email]:hover,
form input[type=email]:focus,
form input[type=tel]:hover,
form input[type=tel]:focus,
form input[type=text]:hover,
form input[type=text]:focus {
  background: #FBFDFD;
  box-shadow: none;
  border: 2px solid #72777E;
  padding: 6px 8px 6px 52px;
  outline: none;
}
form .form-actions {
  grid-column: 1/3;
  display: flex;
  justify-content: center;
  margin: 0;
}
form .form-actions button,
form .form-actions input[type=submit] {
  background: #6B8E23;
  font: 700 14px/20px "Raleway", sans-serif;
  color: #ffffff;
  padding: 10px 32px;
  letter-spacing: 0.1px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.4s linear;
  border: none;
  height: auto;
  margin: 0;
}
form .form-actions button:hover,
form .form-actions input[type=submit]:hover {
  color: #ffffff;
  text-decoration: none;
  border: none;
  background: #6B8E23;
}
form .form-actions button:active, form .form-actions button:focus,
form .form-actions input[type=submit]:active,
form .form-actions input[type=submit]:focus {
  color: #ffffff;
  border: none;
  background: #6B8E23;
}
form .form-item {
  grid-column: 1/3;
  margin: 0;
  position: relative;
}
@media (min-width: 768px) {
  form .form-item.form-type-tel, form .form-item.form-item-first-name {
    grid-column: 1/2;
  }
  form .form-item.form-item-company, form .form-item.form-item-last-name {
    grid-column: 2/3;
  }
}
form .form-item.webform-type-webform-email-confirm .fieldset__wrapper {
  display: grid;
  grid-row-gap: 16px;
}
@media (min-width: 768px) {
  form .form-item.webform-type-webform-email-confirm .fieldset__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
  }
  form .form-item.webform-type-webform-email-confirm .fieldset__wrapper .form-item-email-mail-1 {
    grid-column: 1/2;
  }
  form .form-item.webform-type-webform-email-confirm .fieldset__wrapper .form-item-email-mail-2 {
    grid-column: 2/3;
  }
}
form .form-item.form-type-textarea label {
  display: none;
}
form .form-item#edit-markup-01 {
  text-align: center;
  font: 32px/48px "DM Serif Display", serif;
  color: #191C1D;
}
form .form-item#edit-markup {
  text-align: center;
  font: 400 16px/24px "Raleway", sans-serif;
  letter-spacing: 0.5px;
  color: #191C1D;
}
form .captcha {
  grid-column: 1/3;
  display: flex;
}

.active-form {
  position: absolute;
  top: 2%;
  left: 50%;
  background: #ffffff;
  padding: 24px;
  z-index: 3;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  border-radius: 28px;
  transform: translate(-50%, 0);
  height: auto;
  width: 94%;
  max-width: 646px;
}
@media (min-width: 768px) {
  .active-form {
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

form .js-form-item-last-name,
form .js-form-item-first-name {
  position: relative;
}
form .js-form-item-last-name:before,
form .js-form-item-first-name:before {
  content: "";
  background: url("../svg/person_outline_24px.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 12px;
  height: 24px;
  width: 24px;
  transform: translate(0, -50%);
  display: flex;
  z-index: 1;
}
form .js-form-type-email {
  position: relative;
}
form .js-form-type-email:before {
  content: "";
  background: url("../svg/e-mail.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 12px;
  height: 24px;
  width: 24px;
  transform: translate(0, -50%);
  display: flex;
  z-index: 1;
}
form .js-form-item-company {
  position: relative;
}
form .js-form-item-company:before {
  content: "";
  background: url("../svg/flag.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 12px;
  height: 24px;
  width: 24px;
  transform: translate(0, -50%);
  display: flex;
  z-index: 1;
}
form .js-form-item-phone-number {
  position: relative;
}
form .js-form-item-phone-number:before {
  content: "";
  background: url("../svg/phone.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 12px;
  height: 24px;
  width: 24px;
  transform: translate(0, -50%);
  display: flex;
  z-index: 1;
}
form .js-form-item-phone-number:before {
  transform: translate(0, -40%);
}

.paragraph {
  position: relative;
}
.paragraph .field {
  margin-bottom: 0;
}
.paragraph .field--name-field-body {
  padding: 0 16px;
}
@media (min-width: 1280px) {
  .paragraph .field--name-field-body {
    padding: 0;
  }
}

.paragraph--type--container-with-webform {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-flow: column;
  min-height: 555px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.paragraph--type--container-with-webform .d-flex {
  background: #53372F;
  padding: 19px 26px;
  display: flex;
  justify-content: center;
  flex-flow: column;
  max-width: 476px;
  cursor: pointer;
  position: relative;
  transition: 0.5s;
}
@media (min-width: 768px) {
  .paragraph--type--container-with-webform .d-flex {
    border-radius: 16px;
    bottom: -212px;
  }
  .paragraph--type--container-with-webform .d-flex:hover {
    animation: back-top 0.5s linear;
    animation-fill-mode: forwards;
  }
}
.paragraph--type--container-with-webform .d-flex .flex-cba {
  position: relative;
}
.paragraph--type--container-with-webform .d-flex .flex-cba:before {
  content: "";
  background: #EABB67;
  height: calc(100% - 20px);
  width: 4px;
  position: absolute;
  left: 0;
  top: 20px;
  transform: translate(0, 0);
}
.paragraph--type--container-with-webform .d-flex .flex-cba:after {
  content: "";
  background: #EABB67;
  height: calc(100% - 20px);
  width: 4px;
  position: absolute;
  right: 0;
  top: 20px;
  transform: translate(0, 0);
}
.paragraph--type--container-with-webform .d-flex .cba-top {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.paragraph--type--container-with-webform .d-flex .cba-top:before {
  content: "";
  background: #EABB67;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.paragraph--type--container-with-webform .d-flex .cba-bot {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 53px 33px 60px 33px;
}
.paragraph--type--container-with-webform .d-flex .cba-bot:after {
  content: "";
  background: #EABB67;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(0, 0);
}
.paragraph--type--container-with-webform .d-flex .field--name-field-title {
  color: #53372F;
  font: 600 28px/40px "Montserrat", sans-serif;
  letter-spacing: 0.035em;
  background: linear-gradient(90deg, #D2A04E 0%, #EFC26E 29.67%, #CE9B4A 61.33%, #F3C875 89%);
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.paragraph--type--container-with-webform .d-flex .field--name-field-sub-title {
  color: #EABB67;
  font: 600 28px/40px "Montserrat", sans-serif;
  letter-spacing: 0.035em;
  text-align: center;
  display: flex;
  justify-content: center;
}
.paragraph--type--container-with-webform .active-form {
  display: none;
}

.paragraph--type--container-text {
  background: #191970;
  padding: 93px 0 74px 0;
}
.paragraph--type--container-text .paragraph-grid {
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 16px;
  justify-items: center;
  max-width: 883px;
  margin: 0 auto;
}
.paragraph--type--container-text .field--name-field-body {
  color: #ffffff;
  font: 500 18px/27px "Montserrat", sans-serif;
  letter-spacing: 0.035em;
  text-align: center;
}
.paragraph--type--container-text .field--name-field-body strong {
  font: 700 18px/27px "Montserrat", sans-serif;
}
@media (min-width: 768px) {
  .paragraph--type--container-text .field--name-field-body {
    font: 500 20px/30px "Montserrat", sans-serif;
  }
  .paragraph--type--container-text .field--name-field-body strong {
    font: 700 20px/30px "Montserrat", sans-serif;
  }
}

.paragraph--type--container-footer {
  background: #191970;
  padding: 37.5px 0;
}
.paragraph--type--container-footer .paragraph-grid {
  display: flex;
  flex-flow: column nowrap;
  padding: 0 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .paragraph--type--container-footer .paragraph-grid {
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .paragraph--type--container-footer .paragraph-grid {
    padding: 0;
  }
}
.paragraph--type--container-footer .d-flex {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 24px;
  margin-bottom: 16px;
  grid-row-gap: 16px;
  grid-auto-columns: auto auto;
}
@media (min-width: 768px) {
  .paragraph--type--container-footer .d-flex {
    margin-bottom: 0;
  }
}
.paragraph--type--container-footer .d-flex .field--name-field-title {
  font: 800 40px/48px "Montserrat", sans-serif;
  letter-spacing: 0.035em;
  color: #6B8E23;
  text-transform: uppercase;
}
.paragraph--type--container-footer .d-flex .field--name-field-title:first-letter {
  color: #E6EAF0;
}
.paragraph--type--container-footer .d-flex .field--name-field-body {
  font: 400 14px/21px "Roboto", sans-serif;
  color: #E0E3E3;
  display: flex;
  align-items: center;
}
.paragraph--type--container-footer .d-flex .field--name-field-body em {
  font-style: normal;
}
.paragraph--type--container-footer .d-flex .field--name-field-body strong {
  font-weight: 700;
}
.paragraph--type--container-footer .d-flex .field--name-field-link-to {
  display: flex;
  align-items: center;
  grid-row-start: 2;
  grid-column: 1/3;
  justify-content: center;
}
@media (min-width: 768px) {
  .paragraph--type--container-footer .d-flex .field--name-field-link-to {
    grid-row-start: 1;
    grid-column: unset;
  }
}
.paragraph--type--container-footer .d-flex .field--name-field-link-to a {
  font: 400 14px/21px "Roboto", sans-serif;
  color: #E0E3E3;
}
.paragraph--type--container-footer .d-flex .field--name-field-link-to a:hover {
  text-decoration: none;
}

.paragraph--type--container-text-with-picture .paragraph-grid {
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .paragraph--type--container-text-with-picture .paragraph-grid {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-column-gap: 115px;
    min-height: 549px;
    padding-bottom: 0;
  }
}
.paragraph--type--container-text-with-picture .field-sv-image:after {
  background: linear-gradient(359.91deg, #FFFFFF 0.08%, rgba(255, 255, 255, 0) 65.6%);
}
@media (min-width: 768px) {
  .paragraph--type--container-text-with-picture.paragraph-size .field-sv-image {
    left: 0;
  }
  .paragraph--type--container-text-with-picture.paragraph-size .field-sv-image:after {
    background: linear-gradient(269.64deg, #FFFFFF 5.01%, rgba(255, 255, 255, 0) 67.17%);
  }
  .paragraph--type--container-text-with-picture.paragraph-size .field--name-field-body {
    grid-column-start: 2;
  }
}
@media (min-width: 768px) {
  .paragraph--type--container-text-with-picture .field-sv-image {
    right: 0;
  }
  .paragraph--type--container-text-with-picture .field-sv-image:after {
    background: linear-gradient(269.31deg, rgba(255, 255, 255, 0) 39.09%, #FFFFFF 92.09%);
  }
  .paragraph--type--container-text-with-picture .field--name-field-body {
    grid-column-start: 1;
  }
}
.paragraph--type--container-text-with-picture .field--name-field-body {
  font: 500 18px/27px "Montserrat", sans-serif;
  color: #00244D;
  letter-spacing: 0.035em;
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .paragraph--type--container-text-with-picture .field--name-field-body {
    margin: 82px 0;
    max-width: 543px;
    font: 500 20px/30px "Montserrat", sans-serif;
  }
}
.paragraph--type--container-text-with-picture .field--name-field-body:before {
  content: "";
  height: 8px;
  width: 113px;
  background: #6B8E23;
  display: flex;
}
.paragraph--type--container-text-with-picture .field-sv-image {
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 364px;
}
@media (min-width: 768px) {
  .paragraph--type--container-text-with-picture .field-sv-image {
    height: 100%;
    position: absolute;
    width: 50%;
    min-height: auto;
  }
}
.paragraph--type--container-text-with-picture .field-sv-image:after {
  content: "";
  height: 100%;
  width: 100%;
}

.field--name-field-social-links {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 16px;
  align-content: start;
  justify-content: start;
}
/*# sourceMappingURL=base.css.map */
