







/* 1a. Containers */




/* 1b. Colors */




/* 1c. Typography */


























/* 1d. Buttons */

:root {
  
  /* Buttons */  
  
  --button-background-color: #F2663A;
  --button-background-hover-color: #F2663A;
  --button-text-color: #ffffff;
  --button-text-hover-color: #ffffff;
  --button-border-color: #F2663A;
  --button-border-hover-color: #F2663A;
  
  --button-secondary-background-color: #ffffff;
  --button-secondary-background-hover-color: #ffffff;
  --button-secondary-text-color: #F2663A;
  --button-secondary-text-hover-color: #F2663A;
  --button-secondary-border-color: #f2663a;
  --button-secondary-border-hover-color: #f2663a;
  
  --button-form-background-color: #F2663A;
  --button-form-background-hover-color: #F2663A;
  --button-form-text-color: #ffffff;
  --button-form-text-hover-color: #ffffff;
  --button-form-border-color: #F2663A;
  --button-form-border-hover-color: #F2663A;

  --button-border: 1px;
  --button-corner: 5px;
  --button-font-family: Roboto, Times New Roman, serif;
  --button-font-size: 18px;
  --button-letter-spacing: 0em;
  --button-text-transform: none;
  --button-padding: 12px 29px;

}



/* 1e. Forms */













/* 1f. Website header */




/* 1g. Website footer */








.content-wrapper {
  max-width: 1150px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 60px 1rem;
}

.dnd-section > .row-fluid {
  max-width: 1150px;
}

@media (min-width: 1450px) {
  .dnd-section > .row-fluid, .content-wrapper {
    max-width: 1425px;
  }
}





html {
  font-size: 16px;
}

body {
  font-family: Roboto, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #494A52;
  font-size: 16px;
}

/* Paragraphs */

p {
  font-family: Roboto, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Anchors */

a {
  font-weight: normal; text-decoration: none; font-family: Roboto, sans-serif; font-style: normal;
  color: #F2663A;
}

a:hover,
a:focus {
  font-weight: normal; text-decoration: none; font-family: Roboto, sans-serif; font-style: normal;
  color: #ca3e12;
}

a:active {
  font-weight: normal; text-decoration: none; font-family: Roboto, sans-serif; font-style: normal;
  color: #ff8e62;
}

/* Headings */

h1 {
  font-weight: 700; text-decoration: none; font-family: Roboto, serif; font-style: normal;
  color: #494A52;
  font-size: 50px;
  text-transform: none;
}

h2 {
  font-weight: 700; text-decoration: none; font-family: Roboto, serif; font-style: normal;
  color: #494A52;
  font-size: 38px;
  text-transform: none;
}

h3 {
  font-weight: 700; text-decoration: none; font-family: Roboto, serif; font-style: normal;
  color: #494A52;
  font-size: 30px;
  text-transform: none;
}

h4 {
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal;
  color: #494A52;
  font-size: 24px;
  text-transform: none;
}

h5 {
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal;
  color: #111111;
  font-size: 16px;
  text-transform: none;
}

h6 {
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal;
  color: #494A52;
  font-size: 14px;
  text-transform: none;
}

/* Blockquote */

blockquote {
  border-left-color: #F8FAFC;
}





.button,
.dd_cta_button .cta_button {
  border:var(--button-border) solid;
  display:inline-block;
  cursor:pointer;
  padding:var(--button-padding);
  border-radius:var(--button-corner);
  font-family:var(--button-font-family);
  font-size:var(--button-font-size);
  line-height:1;
  text-transform:var(--button-text-transform);
  letter-spacing:var(--button-letter-spacing);
  -webkit-transition:.2s;
  transition:.2s;
  white-space:normal;
  text-align:center;
  position:relative;
  border-color:var(--button-border-color,var(--button-background-color));
  background-color:var(--button-background-color);
  color:var(--button-text-color)!important;
  box-shadow:none;
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal
}

.button:hover,
.dd_cta_button .cta_button:hover {
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal
  border-color:var(--button-border-hover-color,var(--button-border-color,var(--button-background-hover-color,var(--button-background-color))));
  color:var(--button-text-hover-color,var(--button-text-color))!important;
  background-color:var(--button-background-hover-color,var(--button-background-color));
}

.button:focus,
.dd_cta_button .cta_button:focus {
  outline:0;
  -webkit-box-shadow:0 0 0 2px #fff,0 0 0 3px var(--button-border-color);
  box-shadow:0 0 0 2px #fff,0 0 0 3px var(--button-border-color);
}

.button:active,
.dd_cta_button .cta_button:active {
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal
}

.button[disabled]{opacity:.7}

.button--secondary,
.dd_cta_button--secondary .cta_button {
  border-color:var(--button-secondary-border-color,var(--button-secondary-background-color));
  background-color:var(--button-secondary-background-color);
  color:var(--button-secondary-text-color)!important;
}

.button--secondary:hover,
.dd_cta_button--secondary .cta_button:hover {
  border-color:var(--button-secondary-border-hover-color,var(--button-secondary-border-color,var(--button-secondary-background-hover-color,var(--button-secondary-background-color))));
  color:var(--button-secondary-text-hover-color,var(--button-secondary-text-color))!important;
  background-color:var(--button-secondary-background-hover-color,var(--button-secondary-background-color));
}

.button--secondary:focus,
.dd_cta_button--secondary .cta_button:focus {
  outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 3px var(--button-secondary-border-color);
  box-shadow:0 0 0 2px #fff,0 0 0 3px var(--button-secondary-border-color);
}






form,
.submitted-message {
  font-family: Roboto, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Form title */

.form-title {
  color: #1E2B33;
}

/* Labels */

form label {
  color: #1E2B33;
}

/* Help text */

form legend {
  color: #1E2B33;
  text-align: left;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  border: 2px solid #D1D6DC;

  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  color: #1E2B33;
  border-radius: 3px;
}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: #494A52;
}

::-moz-placeholder {
  color: #494A52;
}

:-ms-input-placeholder {
  color: #494A52;
}

::placeholder {
  color: #494A52;
}

/* Inputs - date picker */

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #494A52;
}

.fn-date-picker td.is-selected .pika-button {
  background: #494A52;
}

.fn-date-picker td .pika-button:hover {
  background-color: #494A52 !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #494A52;
}

/* Submit button */
form .hs-button{
  border:var(--button-border) solid;
  display:inline-block;
  cursor:pointer;
  padding:var(--button-padding);
  border-radius:var(--button-corner);
  font-family:var(--button-font-family);
  font-size:var(--button-font-size);
  line-height:1;
  text-transform:var(--button-text-transform);
  letter-spacing:var(--button-letter-spacing);
  -webkit-transition:.2s;
  transition:.2s;
  white-space:normal;
  text-align:center;
  position:relative;
  border-color:var(--button-form-border-color,var(--button-form-background-color));
  background-color:var(--button-form-background-color);
  color:var(--button-form-text-color)!important;
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal
}

form .hs-button:hover{
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal
  border-color:var(--button-form-border-hover-color,var(--button-form-border-color,var(--button-form-background-hover-color,var(--button-form-background-color))));
  color:var(--button-form-text-hover-color,var(--button-form-text-color))!important;
  background-color:var(--button-form-background-hover-color,var(--button-form-background-color));
}

form .hs-button:focus{
  outline:0;
  -webkit-box-shadow:0 0 0 2px #fff,0 0 0 3px var(--button-form-border-color);
  box-shadow:0 0 0 2px #fff,0 0 0 3px var(--button-form-border-color);
}

form .hs-button:active{
  font-weight: normal; text-decoration: none; font-family: Roboto, serif; font-style: normal
}

form .hs-button[disabled]{opacity:.7}

form .hs_submit {
  text-align: center;
}

/* popup form */
.popup_form__close_btn {
  background: #f2663a;
}





.header {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 0.0)

;
}
.header__container {
  padding: 49px 0px;
}





.footer {
  background-color: 

  
  
    
  


  rgba(248, 248, 248, 1.0)

;
}

.dd_footer {
  position: relative;
}

/* Footer content */

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: #494A52;
}

.footer p {
  margin-bottom: 20px;
  text-decoration: underline;
}
.dd_flex {
  text-align: center;
}
.footer a {
  color: #338FFF;
}
.footer_fixed_desk_img {display:none;}
.footer_fixed_mob_img img {width:100%;}
.footer_fixed_mob_img {
  margin-top:-20px;
  background-color: 

  
  
    
  


  rgba(248, 248, 248, 1.0)

;
}

@media (min-width: 780px) {
  .dd_flex {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .footer_fixed_desk_img img {
    max-width: 100%;
  }
  .footer_fixed_desk_img {
    display: block !important;
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 27%;
    line-height: 0;
  }
  .footer_fixed_mob_img {display:none;}
}

@media (min-width: 780px) and (max-width: 1250px) {
  .dd_flex {
    max-width: 400px;
    margin: auto;
  }
}










/* Responsive */
@media (max-width: 780px){
  div[class*="dnd_area-row-6-background"] {
    background-position: right !important;
  }
  div[class*="dnd_area-column-13-row-"]>div.row-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  div[class*="dnd_area-column-13-row-"] .span3 {
    max-width: 50%;
  }
  div[class*="dnd_area-column-13-row-"] .span3 img {
    max-width:100%;
    padding: 7px;
  }
}

.custom-video-player-poster{position:absolute;left:0;top:0;right:0;bottom:0;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center}.custom-video-player{position:relative}.custom-video-player-poster img{position:absolute;width:100%;height:100%;object-fit:cover}.custom-video-player-button{position:relative;border:0;border-radius:50%;width:16%;spect-ratio:1/1;padding:0;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;opacity:.8}.custom-video-player-poster:hover .custom-video-player-button{opacity:1}.custom-video-player-button svg{height:100%;width:100%;padding:20%}