@import url(https://fonts.googleapis.com/css?family=Pinyon+Script:400);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);
@import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,500,600,700,800,900,400i,500i,600i,700i,800i,900i);





body {
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Pinyon Script', handwriting;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Pinyon Script', handwriting;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Pinyon Script', handwriting;
  font-size: 2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: -webkit-inline-flex;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #17cc9c !important;
}
.bg-info {
  background-color: #0f8969 !important;
}
.bg-warning {
  background-color: #ff7f9f !important;
}
.bg-danger {
  background-color: #ba4d68 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c75252 !important;
  border-color: #c75252 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #9a3232 !important;
  border-color: #9a3232 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9a3232 !important;
  border-color: #9a3232 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0f8969 !important;
  border-color: #0f8969 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #074434 !important;
  border-color: #074434 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #074434 !important;
  border-color: #074434 !important;
}
.btn-success,
.btn-success:active {
  background-color: #17cc9c !important;
  border-color: #17cc9c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0f8767 !important;
  border-color: #0f8767 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0f8767 !important;
  border-color: #0f8767 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff7f9f !important;
  border-color: #ff7f9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff3266 !important;
  border-color: #ff3266 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff3266 !important;
  border-color: #ff3266 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ba4d68 !important;
  border-color: #ba4d68 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #863448 !important;
  border-color: #863448 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #863448 !important;
  border-color: #863448 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #872c2c;
  color: #872c2c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #c75252;
  border-color: #c75252;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c75252 !important;
  border-color: #c75252 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #052d23;
  color: #052d23;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #0f8969;
  border-color: #0f8969;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0f8969 !important;
  border-color: #0f8969 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #0d7056;
  color: #0d7056;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #17cc9c;
  border-color: #17cc9c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #17cc9c !important;
  border-color: #17cc9c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #ff1952;
  color: #ff1952;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #ff7f9f;
  border-color: #ff7f9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff7f9f !important;
  border-color: #ff7f9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #742d3f;
  color: #742d3f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ba4d68;
  border-color: #ba4d68;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ba4d68 !important;
  border-color: #ba4d68 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #c75252 !important;
}
.text-success {
  color: #17cc9c !important;
}
.text-info {
  color: #0f8969 !important;
}
.text-warning {
  color: #ff7f9f !important;
}
.text-danger {
  color: #ba4d68 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #872c2c !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0d7056 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #052d23 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ff1952 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #742d3f !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0f8969;
}
.alert-warning {
  background-color: #ff7f9f;
}
.alert-danger {
  background-color: #ba4d68;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b8f7e6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #2fe8b8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dea9b6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #149dcc;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
  -webkit-justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #149dcc;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #149dcc;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@media (min-width: 576px) {
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
.navbar-toggler {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  -webkit-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.navbar-toggler-left {
  position: absolute;
  left: 1rem;
}
.navbar-toggler-right {
  position: absolute;
  right: 1rem;
}
@media (max-width: 575px) {
  .navbar-toggleable .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-toggleable {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-sm > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-toggleable-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-sm > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-collapse {
    display: none;
    width: 100%;
  }
  .navbar-toggleable-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-md > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-toggleable-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-md > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navbar-toggleable-lg .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-lg > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-toggleable-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-lg > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-lg .navbar-toggler {
    display: none;
  }
}
.navbar-toggleable-xl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-toggleable-xl > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-toggleable-xl .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.navbar-toggleable-xl .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}
.navbar-toggleable-xl > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-collapse {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
}
.navbar-toggleable-xl .navbar-toggler {
  display: none;
}
.card-img {
  width: auto;
}
.menu .navbar.collapsed:not(.beta-menu) {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto!important;
  }
}
.cid-sdZrI1fpSd .navbar {
  background: #befad2;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sdZrI1fpSd .navbar-dropdown.bg-color.transparent.opened {
  background: #befad2;
}
.cid-sdZrI1fpSd a {
  font-style: normal;
}
.cid-sdZrI1fpSd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sdZrI1fpSd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sdZrI1fpSd .nav-item:focus,
.cid-sdZrI1fpSd .nav-link:focus {
  outline: none;
}
.cid-sdZrI1fpSd .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdZrI1fpSd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sdZrI1fpSd .menu-logo {
  margin-right: auto;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu {
  background: #befad2;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sdZrI1fpSd .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdZrI1fpSd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sdZrI1fpSd button.navbar-toggler:focus {
  outline: none;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff3366;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .btn {
  display: -webkit-flex;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdZrI1fpSd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sdZrI1fpSd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sdZrI1fpSd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd img {
    height: 3.8rem !important;
  }
  .cid-sdZrI1fpSd .btn {
    display: -webkit-flex;
  }
  .cid-sdZrI1fpSd button.navbar-toggler {
    display: block;
  }
  .cid-sdZrI1fpSd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sdZrI1fpSd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing,
  .cid-sdZrI1fpSd .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sdZrI1fpSd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sdZrI1fpSd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sdZrI1fpSd .nav-link:hover,
.cid-sdZrI1fpSd .dropdown-item:hover {
  color: #49edd0 !important;
}
.cid-tpHORU0GUx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpHORU0GUx .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpHORU0GUx H2 {
  color: #56320a;
}
.cid-uUHrE2PEdt {
  background-image: url("../../../assets/images/535272888-10239661528464224-8345376308649210874-n-2000x1289.jpg");
}
.cid-uUHFqLbHlp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-uUHFqLbHlp .mbr-section-subtitle {
  color: #56320a;
}
.cid-uUHFqLbHlp H2 {
  color: #56320a;
}
.cid-sePcyMnZ8t {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-sePcyMnZ8t .mbr-section-subtitle {
  color: #d6cabe;
}
.cid-sePcyMnZ8t H2 {
  color: #f5e0c7;
}
.cid-sePcyMnZ8t SPAN {
  color: #17cc9c;
}
.cid-uUHEXf4VP5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUHEXf4VP5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUHEXf4VP5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUHEXf4VP5 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUHEXf4VP5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUHEXf4VP5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUHEXf4VP5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUHEXf4VP5 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uUHEXf4VP5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUHEXf4VP5 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUHEXf4VP5 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUHEXf4VP5 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUHEXf4VP5 .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uUHEXf4VP5 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUHEXf4VP5 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sdZrI1fpSd .navbar {
  background: #befad2;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sdZrI1fpSd .navbar-dropdown.bg-color.transparent.opened {
  background: #befad2;
}
.cid-sdZrI1fpSd a {
  font-style: normal;
}
.cid-sdZrI1fpSd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sdZrI1fpSd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sdZrI1fpSd .nav-item:focus,
.cid-sdZrI1fpSd .nav-link:focus {
  outline: none;
}
.cid-sdZrI1fpSd .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdZrI1fpSd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sdZrI1fpSd .menu-logo {
  margin-right: auto;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu {
  background: #befad2;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sdZrI1fpSd .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdZrI1fpSd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sdZrI1fpSd button.navbar-toggler:focus {
  outline: none;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff3366;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .btn {
  display: -webkit-flex;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdZrI1fpSd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sdZrI1fpSd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sdZrI1fpSd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd img {
    height: 3.8rem !important;
  }
  .cid-sdZrI1fpSd .btn {
    display: -webkit-flex;
  }
  .cid-sdZrI1fpSd button.navbar-toggler {
    display: block;
  }
  .cid-sdZrI1fpSd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sdZrI1fpSd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing,
  .cid-sdZrI1fpSd .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sdZrI1fpSd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sdZrI1fpSd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sdZrI1fpSd .nav-link:hover,
.cid-sdZrI1fpSd .dropdown-item:hover {
  color: #49edd0 !important;
}
.cid-tpHORU0GUx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpHORU0GUx .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpHORU0GUx H2 {
  color: #56320a;
}
.cid-uUwOL0qwJO {
  background-image: url("../../../assets/images/438102228-10233575341593356-1499934914473036891-n-1229x680.jpg");
}
.cid-tpPaBUs6gf {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f8f2ea;
}
.cid-tpPaBUs6gf .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpPaBUs6gf H2 {
  color: #56320a;
}
.cid-sdNYBIY3RB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-sdNYBIY3RB .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-sdNYBIY3RB H2 {
  color: #56320a;
  text-align: center;
}
.cid-sdNYBIY3RB B {
  color: #ef8585;
}
.cid-tpFMpeEdBa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #faf4ed;
}
.cid-tpFMpeEdBa .line {
  background-color: #fffbf6;
  color: #fffbf6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tpFMpeEdBa .section-text {
  padding: 2rem 0;
  color: #31091b;
}
.cid-tpFMpeEdBa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tpFMpeEdBa .inner-container {
    width: 100% !important;
  }
}
.cid-tpFMpeEdBa .section-text DIV {
  color: #a9580c;
}
.cid-tpFMpeEdBa .section-text I {
  color: #69421d;
}
.cid-uMoa7ZZCbn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f3ece5;
}
.cid-uMoa7ZZCbn .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-uMoa7ZZCbn H2 {
  color: #56320a;
}
.cid-uMoa7ZZCbn B {
  color: #56320a;
}
.cid-uMoa7ZZCbn .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-uMoa7ZZCbn .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-urV8YI2cgO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-urV8YI2cgO .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-urV8YI2cgO H2 {
  color: #56320a;
}
.cid-urV8YI2cgO B {
  color: #ef8585;
}
.cid-urV8YI2cgO .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-urV8YI2cgO .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-uUwLStDFo7 {
  background: #faf4ed;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-uUwLStDFo7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uUwLStDFo7 .video-block {
    width: 100% !important;
  }
}
.cid-uOJavVw8Ce {
  background: #faf4ed;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-uOJavVw8Ce .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uOJavVw8Ce .video-block {
    width: 100% !important;
  }
}
.cid-uMo7bjVDUf {
  background: #faf4ed;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-uMo7bjVDUf .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uMo7bjVDUf .video-block {
    width: 100% !important;
  }
}
.cid-tlhUyiFiGb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tlhUyiFiGb .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tlhUyiFiGb H2 {
  color: #56320a;
}
.cid-tlhUyiFiGb B {
  color: #ef8585;
}
.cid-tlhUyiFiGb .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tlhUyiFiGb .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-uD3ZvvVXZv {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-uD3ZvvVXZv .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-uD3ZvvVXZv H2 {
  color: #56320a;
}
.cid-uD3ZvvVXZv B {
  color: #56320a;
}
.cid-uD3ZvvVXZv .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-uD3Zkdx7im {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #faf3eb;
}
.cid-uD3Zkdx7im .card-img {
  background-color: #fff;
}
.cid-uD3Zkdx7im .card-box {
  padding: 2rem;
}
.cid-uD3Zkdx7im h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uD3Zkdx7im p {
  text-align: left;
}
.cid-uD3Zkdx7im .mbr-text {
  color: #9f5b10;
  text-align: center;
}
.cid-uD3Zkdx7im .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uD3Zkdx7im .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uD3Zkdx7im .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uD3Zkdx7im .card-title {
  text-align: left;
}
.cid-uD3Zkdx7im .card-title B {
  color: #56320a;
}
.cid-uD3Zkdx7im .mbr-text B {
  color: #0f7699;
}
.cid-tllZiFohK7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #faf3eb;
}
.cid-tllZiFohK7 .card-img {
  background-color: #fff;
}
.cid-tllZiFohK7 .card-box {
  padding: 2rem;
}
.cid-tllZiFohK7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tllZiFohK7 p {
  text-align: left;
}
.cid-tllZiFohK7 .mbr-text {
  color: #9f5b10;
  text-align: center;
}
.cid-tllZiFohK7 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tllZiFohK7 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tllZiFohK7 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tllZiFohK7 .card-title {
  text-align: left;
}
.cid-tllZiFohK7 .card-title B {
  color: #56320a;
}
.cid-tllZiFohK7 .mbr-text B {
  color: #990e0e;
}
.cid-t3E46M0cuJ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-t3E46M0cuJ P {
  color: #767676;
}
.cid-tlhUX60fPy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tlhUX60fPy .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tlhUX60fPy H2 {
  color: #56320a;
}
.cid-tlhUX60fPy B {
  color: #ef8585;
}
.cid-tlhUX60fPy .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tlhUX60fPy .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-t3E3BU01Vc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #faf3eb;
}
.cid-t3E3BU01Vc .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-t3E3BU01Vc H2 {
  color: #56320a;
}
.cid-t3E3BU01Vc B {
  color: #56320a;
}
.cid-t3E3BU01Vc .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-uvNw8Cewnh {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-uvNw8Cewnh .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uvNw8Cewnh .video-block {
    width: 100% !important;
  }
}
.cid-urV4AYReVa {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-urV4AYReVa .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-urV4AYReVa .video-block {
    width: 100% !important;
  }
}
.cid-up9VgK15F8 {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-up9VgK15F8 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-up9VgK15F8 .video-block {
    width: 100% !important;
  }
}
.cid-urV8bDlAJZ {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-urV8bDlAJZ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-urV8bDlAJZ .video-block {
    width: 100% !important;
  }
}
.cid-urV8s87FmI {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-urV8s87FmI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-urV8s87FmI .video-block {
    width: 100% !important;
  }
}
.cid-up9q3vu7T4 {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-up9q3vu7T4 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-up9q3vu7T4 .video-block {
    width: 100% !important;
  }
}
.cid-tNHVhWtGxo {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-tNHVhWtGxo .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tNHVhWtGxo .video-block {
    width: 100% !important;
  }
}
.cid-tJfrE5ysSU {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tJfrE5ysSU .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tJfrE5ysSU .video-block {
    width: 100% !important;
  }
}
.cid-urVmpNczVH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urVmpNczVH .mbr-section-subtitle {
  color: #56320a;
}
.cid-urVmpNczVH H2 {
  color: #56320a;
}
.cid-urVmm2cgr1 {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-urVmm2cgr1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-urVmm2cgr1 .video-block {
    width: 100% !important;
  }
}
.cid-txffbh9nlb {
  background: #faf4ed;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-txffbh9nlb .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-txffbh9nlb .video-block {
    width: 100% !important;
  }
}
.cid-tmvGi4Lzl0 {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-tmvGi4Lzl0 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tmvGi4Lzl0 .video-block {
    width: 100% !important;
  }
}
.cid-tmvGqgoHWt {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tmvGqgoHWt .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tmvGqgoHWt .video-block {
    width: 100% !important;
  }
}
.cid-tpQEg7xYfE {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-tpQEg7xYfE P {
  color: #767676;
}
.cid-tlhXfXfr77 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tlhXfXfr77 .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tlhXfXfr77 H2 {
  color: #56320a;
}
.cid-tlhXfXfr77 B {
  color: #ef8585;
}
.cid-tlhXfXfr77 .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tlhXfXfr77 .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-trlVKIUWpj {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-trlVKIUWpj .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-trlVKIUWpj H2 {
  color: #56320a;
}
.cid-trlVKIUWpj B {
  color: #56320a;
}
.cid-trlVKIUWpj .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-ttReYIibry {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-ttReYIibry .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-ttReYIibry H2 {
  color: #56320a;
}
.cid-ttReYIibry B {
  color: #56320a;
}
.cid-ttReYIibry .mbr-section-subtitle I {
  color: #734d27;
}
.cid-ttReYIibry .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-urVsVpf7Gh {
  background-image: url("../../../assets/images/394071745-10232679735043752-8124489662704016156-n-2000x1006.jpg");
}
.cid-uD3Y298Eq0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fcfcfc;
}
.cid-uD3Y298Eq0 .mbr-section-subtitle {
  color: #56320a;
}
.cid-uD3Y298Eq0 H2 {
  color: #56320a;
}
.cid-u2JxueDhVM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-u2JxueDhVM .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-u2JxueDhVM H2 {
  color: #56320a;
}
.cid-u2JxueDhVM B {
  color: #56320a;
}
.cid-u2JxueDhVM .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-uD45ahlHMV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fcfcfc;
}
.cid-uD45ahlHMV .mbr-section-subtitle {
  color: #56320a;
}
.cid-uD45ahlHMV H2 {
  color: #56320a;
}
.cid-upafKSN05G {
  background-image: url("../../../assets/images/456208752-10234609373563509-2252746870070302098-n-2000x1228.jpg");
}
.cid-tYm2rI1Fs3 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tYm2rI1Fs3 .mbr-section-subtitle {
  color: #56320a;
}
.cid-tYm2rI1Fs3 H2 {
  color: #56320a;
}
.cid-tljPRXwF9k {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tljPRXwF9k .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tljPRXwF9k H2 {
  color: #56320a;
}
.cid-tljPRXwF9k B {
  color: #ef8585;
}
.cid-tljPRXwF9k .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tljPRXwF9k .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-up9Lh4xAUC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fcfcfc;
}
.cid-up9Lh4xAUC .mbr-section-subtitle {
  color: #56320a;
}
.cid-up9Lh4xAUC H2 {
  color: #56320a;
}
.cid-up9LeuLwY6 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-up9LeuLwY6 .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-up9LeuLwY6 H2 {
  color: #56320a;
}
.cid-up9LeuLwY6 B {
  color: #56320a;
}
.cid-up9LeuLwY6 .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-up9t91USlM {
  background: #faf4ed;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-up9t91USlM .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-up9t91USlM .video-block {
    width: 100% !important;
  }
}
.cid-utK9juHuip {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-utK9juHuip .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-utK9juHuip .video-block {
    width: 100% !important;
  }
}
.cid-up9LLSKjAM {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-up9LLSKjAM .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-up9LLSKjAM .video-block {
    width: 100% !important;
  }
}
.cid-up9wDhzRTg {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-up9wDhzRTg .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-up9wDhzRTg .video-block {
    width: 100% !important;
  }
}
.cid-up9U2U1Z0M {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-up9U2U1Z0M .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-up9U2U1Z0M .video-block {
    width: 100% !important;
  }
}
.cid-tNHLXlwWca {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-tNHLXlwWca .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tNHLXlwWca .video-block {
    width: 100% !important;
  }
}
.cid-tFmIOVVueR {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-tFmIOVVueR .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tFmIOVVueR .video-block {
    width: 100% !important;
  }
}
.cid-up9Rb7kC6H {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-up9Rb7kC6H .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-up9Rb7kC6H .video-block {
    width: 100% !important;
  }
}
.cid-tB7QlWF4Ff {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-tB7QlWF4Ff .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tB7QlWF4Ff .video-block {
    width: 100% !important;
  }
}
.cid-ttF4uQ3vZb {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-ttF4uQ3vZb .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-ttF4uQ3vZb .video-block {
    width: 100% !important;
  }
}
.cid-urVTz7NVNp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urVTz7NVNp .mbr-section-subtitle {
  color: #56320a;
}
.cid-urVTz7NVNp H2 {
  color: #56320a;
}
.cid-tp997tSdVn {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-tp997tSdVn .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tp997tSdVn .video-block {
    width: 100% !important;
  }
}
.cid-tp6uoAj84j {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-tp6uoAj84j .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tp6uoAj84j .video-block {
    width: 100% !important;
  }
}
.cid-upahE5d44Z {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-upahE5d44Z P {
  color: #767676;
}
.cid-urVs6xq3Nq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-urVs6xq3Nq .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-urVs6xq3Nq H2 {
  color: #56320a;
}
.cid-urVs6xq3Nq B {
  color: #ef8585;
}
.cid-urVs6xq3Nq .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-urVs6xq3Nq .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-urW0GPHmh3 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-urW0GPHmh3 .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-urW0GPHmh3 H2 {
  color: #56320a;
}
.cid-urW0GPHmh3 B {
  color: #56320a;
}
.cid-urW0GPHmh3 .mbr-section-subtitle I {
  color: #ef8585;
}
.cid-urVscfuEOc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f8f2ea;
}
.cid-urVscfuEOc .mbr-section-subtitle {
  color: #56320a;
}
.cid-urVscfuEOc H2 {
  color: #56320a;
}
.cid-urW6YPM4O4 {
  background-image: url("../../../assets/images/456210854-10234575080786211-4848334652823072737-n-2-1130x648.jpg");
}
.cid-urW74vqUuh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urW74vqUuh .mbr-section-subtitle {
  color: #56320a;
}
.cid-urW74vqUuh H2 {
  color: #56320a;
}
.cid-urW7acJs9w {
  background: #f8f2ea;
  background: linear-gradient(0deg, #f8f2ea, #f8f2ea);
}
.cid-urW7acJs9w .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-urW7acJs9w figcaption {
  position: relative;
}
.cid-urW7acJs9w figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-urW7acJs9w .image-block {
    width: 100% !important;
  }
}
.cid-urW7fzmh8t {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urW7fzmh8t .mbr-section-subtitle {
  color: #56320a;
}
.cid-urW7fzmh8t H2 {
  color: #56320a;
}
.cid-urVu3bToo8 {
  background-image: url("../../../assets/images/347407260-647424283499917-7343115317444513458-n-2000x966.jpg");
}
.cid-urWbXRQ8eh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urWbXRQ8eh .mbr-section-subtitle {
  color: #56320a;
}
.cid-urWbXRQ8eh H2 {
  color: #56320a;
}
.cid-urVM4AKAGC {
  background-image: url("../../../assets/images/369635001-10159771325803131-267431579560880673-n-2000x1087.jpg");
}
.cid-urW1R2xnbr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urW1R2xnbr .mbr-section-subtitle {
  color: #56320a;
}
.cid-urW1R2xnbr H2 {
  color: #56320a;
}
.cid-urVQItOpBC {
  background-image: url("../../../assets/images/332092384-848875682880038-4784908494768619027-n-1258x706.jpg");
}
.cid-urW3QkyKnp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urW3QkyKnp .mbr-section-subtitle {
  color: #56320a;
}
.cid-urW3QkyKnp H2 {
  color: #56320a;
}
.cid-urVNonX34S {
  background: #f8f2ea;
  background: linear-gradient(0deg, #f8f2ea, #f8f2ea);
}
.cid-urVNonX34S .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-urVNonX34S figcaption {
  position: relative;
}
.cid-urVNonX34S figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-urVNonX34S .image-block {
    width: 100% !important;
  }
}
.cid-urWdwWkdhB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urWdwWkdhB .mbr-section-subtitle {
  color: #56320a;
}
.cid-urWdwWkdhB H2 {
  color: #56320a;
}
.cid-urWdoGeqXU {
  background: #f8f2ea;
  background: linear-gradient(0deg, #f8f2ea, #f8f2ea);
}
.cid-urWdoGeqXU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-urWdoGeqXU figcaption {
  position: relative;
}
.cid-urWdoGeqXU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-urWdoGeqXU .image-block {
    width: 100% !important;
  }
}
.cid-urW4tAoc0A {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urW4tAoc0A .mbr-section-subtitle {
  color: #56320a;
}
.cid-urW4tAoc0A H2 {
  color: #56320a;
}
.cid-urVX9Jmot6 {
  background-image: url("../../../assets/images/326052639-515383220584626-6345383487863029419-n-1024x653.jpg");
}
.cid-urVXnY7p8X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urVXnY7p8X .mbr-section-subtitle {
  color: #56320a;
}
.cid-urVXnY7p8X H2 {
  color: #56320a;
}
.cid-urW04vWhiX {
  background-image: url("../../../assets/images/326139498-868458737765230-2385060143254361030-n-2000x1333.jpg");
}
.cid-urW0VAR0rk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urW0VAR0rk .mbr-section-subtitle {
  color: #56320a;
}
.cid-urW0VAR0rk H2 {
  color: #56320a;
}
.cid-urW21sGORV {
  background: #f8f2ea;
  background: linear-gradient(0deg, #f8f2ea, #f8f2ea);
}
.cid-urW21sGORV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-urW21sGORV figcaption {
  position: relative;
}
.cid-urW21sGORV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-urW21sGORV .image-block {
    width: 100% !important;
  }
}
.cid-urWeIvWjZ9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urWeIvWjZ9 .mbr-section-subtitle {
  color: #56320a;
}
.cid-urWeIvWjZ9 H2 {
  color: #56320a;
}
.cid-urWevXJLGb {
  background-image: url("../../../assets/images/299495643-10229503035908259-1295333271164057599-n-1024x683.jpg");
}
.cid-urW0Wzhs6I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urW0Wzhs6I .mbr-section-subtitle {
  color: #56320a;
}
.cid-urW0Wzhs6I H2 {
  color: #56320a;
}
.cid-tlhwCpBp1L {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tlhwCpBp1L .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tlhwCpBp1L H2 {
  color: #56320a;
}
.cid-tlhwCpBp1L B {
  color: #ef8585;
}
.cid-tlhwCpBp1L .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tlhwCpBp1L .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-tlk90nZNuz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f3eae5;
}
.cid-tlk90nZNuz .title {
  margin-bottom: 2rem;
}
.cid-tlk90nZNuz .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-tlk90nZNuz a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tlk90nZNuz a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tlk90nZNuz textarea.form-control {
  min-height: 188px;
}
.cid-tlk90nZNuz H2 {
  color: #4a3017;
}
.cid-tlk90nZNuz LABEL {
  color: #a77b52;
}
.cid-tlk90nZNuz DIV {
  text-align: center;
}
.cid-tlk90nZNuz .mbr-section-subtitle DIV {
  color: #734d27;
}
.cid-tlk90nZNuz .mbr-section-subtitle I {
  color: #734d27;
}
.cid-tljQD3kHrq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-tljQD3kHrq .mbr-section-subtitle {
  color: #56320a;
}
.cid-tljQD3kHrq H2 {
  color: #56320a;
}
.cid-tljF1TlLfC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tljF1TlLfC .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tljF1TlLfC H2 {
  color: #56320a;
}
.cid-tljF1TlLfC B {
  color: #ef8585;
}
.cid-tljF1TlLfC .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tljF1TlLfC .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-tljG51Cxhv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fbf5eb;
}
.cid-tljG51Cxhv .line {
  background-color: #fbf5eb;
  color: #fbf5eb;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tljG51Cxhv .section-text {
  padding: 2rem 0;
  color: #734d27;
}
.cid-tljG51Cxhv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tljG51Cxhv .inner-container {
    width: 100% !important;
  }
}
.cid-urWfBZdIzR {
  background: #faf4ed;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-urWfBZdIzR .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-urWfBZdIzR .video-block {
    width: 100% !important;
  }
}
.cid-urWfDUFasr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urWfDUFasr .mbr-section-subtitle {
  color: #56320a;
}
.cid-urWfDUFasr H2 {
  color: #56320a;
}
.cid-tliKvxjjQ0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tliKvxjjQ0 .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tliKvxjjQ0 H2 {
  color: #56320a;
}
.cid-tliKvxjjQ0 B {
  color: #ef8585;
}
.cid-tliKvxjjQ0 .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tliKvxjjQ0 .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-urWgcFeWFA {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-urWgcFeWFA .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-urWgcFeWFA H2 {
  color: #56320a;
}
.cid-urWgcFeWFA B {
  color: #56320a;
}
.cid-urWgcFeWFA .mbr-section-subtitle I {
  color: #ef8585;
}
.cid-urWmhhm9rJ {
  background-image: url("../../../assets/images/362177623-10231952521983880-7887904969486069721-n-2000x1154.jpg");
}
.cid-urWmmZ45FQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urWmmZ45FQ .mbr-section-subtitle {
  color: #56320a;
}
.cid-urWmmZ45FQ H2 {
  color: #56320a;
}
.cid-urVNGqCWUo {
  background-image: url("../../../assets/images/369696359-10232199146709344-5807818881124049508-n-1-2000x1558.jpg");
}
.cid-ubIn7Tl1e4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-ubIn7Tl1e4 .mbr-section-subtitle {
  color: #56320a;
}
.cid-ubIn7Tl1e4 H2 {
  color: #56320a;
}
.cid-urWg6zMjwt {
  background-image: url("../../../assets/images/349534272-638616398306781-4282665500688292750-n-2000x1721.jpg");
}
.cid-urVNzK38AO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urVNzK38AO .mbr-section-subtitle {
  color: #56320a;
}
.cid-urVNzK38AO H2 {
  color: #56320a;
}
.cid-urWfLAmvEn {
  background-image: url("../../../assets/images/348224493-1023800285670387-1289466680286837545-n-2000x1041.jpg");
}
.cid-urWiWN2vGm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-urWiWN2vGm .mbr-section-subtitle {
  color: #56320a;
}
.cid-urWiWN2vGm H2 {
  color: #56320a;
}
.cid-urWf7eQnTg {
  background-image: url("../../../assets/images/369737369-10232208379740164-4739495645488752267-n-2-2000x1860.jpg");
}
.cid-uMQMzrkYXV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-uMQMzrkYXV .mbr-section-subtitle {
  color: #56320a;
}
.cid-uMQMzrkYXV H2 {
  color: #56320a;
}
.cid-uMo9rnNMkp {
  background-image: url("../../../assets/images/371890902-10232262463492224-7639379935983453347-n-2000x1062.jpg");
}
.cid-uKleyNseWx {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #faf3eb;
}
.cid-uKleyNseWx .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uKleyNseWx H2 {
  color: #56320a;
  text-align: center;
}
.cid-uKleyNseWx B {
  color: #56320a;
}
.cid-uKleyNseWx .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uKleyNseWx .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tpFQzfjhzx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tpFQzfjhzx .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tpFQzfjhzx H2 {
  color: #56320a;
}
.cid-tpFQzfjhzx B {
  color: #ef8585;
}
.cid-tpFQzfjhzx .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tpFQzfjhzx .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-tpNOuh7Tsm {
  padding-top: 60px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #faf3eb, #faf4ed);
}
.cid-tpNOuh7Tsm H1 {
  color: #cc2952;
}
.cid-tpNOuh7Tsm B {
  color: #cc2952;
}
.cid-tpNOuh7Tsm .mbr-text,
.cid-tpNOuh7Tsm .mbr-section-btn {
  color: #734d27;
}
.cid-uvNx8a6H2a {
  background: #faf4ed;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-uvNx8a6H2a .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uvNx8a6H2a .video-block {
    width: 100% !important;
  }
}
.cid-tsMyTaVJLX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-tsMyTaVJLX .mbr-section-subtitle {
  color: #56320a;
}
.cid-tsMyTaVJLX H2 {
  color: #990e0e;
}
.cid-tljROo9fNJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tljROo9fNJ .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tljROo9fNJ H2 {
  color: #56320a;
}
.cid-tljROo9fNJ B {
  color: #ef8585;
}
.cid-tljROo9fNJ .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-tljROo9fNJ .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-tljRn4VrVI {
  padding-top: 60px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #faf3eb, #faf4ed);
}
.cid-tljRn4VrVI H1 {
  color: #cc2952;
}
.cid-tljRn4VrVI B {
  color: #cc2952;
}
.cid-tljRn4VrVI .mbr-text,
.cid-tljRn4VrVI .mbr-section-btn {
  color: #734d27;
}
.cid-uMo9IktKEX {
  background-image: url("../../../assets/images/492723304-10238422398646753-6913410140640550162-n-1239x574.jpg");
}
.cid-tpOrR75b0A {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-tpOrR75b0A .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpOrR75b0A H2 {
  color: #990e0e;
}
.cid-uDb7nJcCtK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-uDb7nJcCtK .mbr-section-subtitle {
  color: #d6cabe;
}
.cid-uDb7nJcCtK H2 {
  color: #f5e0c7;
}
.cid-uDb7nJcCtK SPAN {
  color: #ef8585;
}
.cid-tljTezOrEE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tljTezOrEE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tljTezOrEE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tljTezOrEE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tljTezOrEE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tljTezOrEE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tljTezOrEE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tljTezOrEE .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tljTezOrEE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tljTezOrEE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tljTezOrEE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tljTezOrEE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tljTezOrEE .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tljTezOrEE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tljTezOrEE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tn5lnyGDzx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-tn5lnyGDzx .mbr-section-subtitle {
  color: #56320a;
}
.cid-tn5lnyGDzx H2 {
  color: #56320a;
}
.cid-sdZrI1fpSd .navbar {
  background: #befad2;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sdZrI1fpSd .navbar-dropdown.bg-color.transparent.opened {
  background: #befad2;
}
.cid-sdZrI1fpSd a {
  font-style: normal;
}
.cid-sdZrI1fpSd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sdZrI1fpSd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sdZrI1fpSd .nav-item:focus,
.cid-sdZrI1fpSd .nav-link:focus {
  outline: none;
}
.cid-sdZrI1fpSd .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdZrI1fpSd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sdZrI1fpSd .menu-logo {
  margin-right: auto;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu {
  background: #befad2;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sdZrI1fpSd .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdZrI1fpSd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sdZrI1fpSd button.navbar-toggler:focus {
  outline: none;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff3366;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .btn {
  display: -webkit-flex;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdZrI1fpSd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sdZrI1fpSd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sdZrI1fpSd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd img {
    height: 3.8rem !important;
  }
  .cid-sdZrI1fpSd .btn {
    display: -webkit-flex;
  }
  .cid-sdZrI1fpSd button.navbar-toggler {
    display: block;
  }
  .cid-sdZrI1fpSd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sdZrI1fpSd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing,
  .cid-sdZrI1fpSd .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sdZrI1fpSd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sdZrI1fpSd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sdZrI1fpSd .nav-link:hover,
.cid-sdZrI1fpSd .dropdown-item:hover {
  color: #49edd0 !important;
}
.cid-tpHORU0GUx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpHORU0GUx .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpHORU0GUx H2 {
  color: #56320a;
}
.cid-uDaS5M2HuZ {
  background-image: url("../../../assets/images/534820897-10239648575100398-3398152515067538334-n-2000x1018.jpg");
}
.cid-twlWT4kuzm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-twlWT4kuzm .mbr-section-subtitle {
  color: #56320a;
}
.cid-twlWT4kuzm H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tq5h3OZGQc .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-tq5h3OZGQc H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc B {
  color: #cc2952;
}
.cid-uUGtGzOb0I {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uUGtGzOb0I .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-uUGtGzOb0I H2 {
  color: #56320a;
}
.cid-uUGtGzOb0I B {
  color: #56320a;
}
.cid-uUGtGzOb0I .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-uUGtGzOb0I .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-uUHG93h8MN {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-uUHG93h8MN .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uUHG93h8MN H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUHG93h8MN B {
  color: #56320a;
}
.cid-uUHG93h8MN .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUHG93h8MN .mbr-section-subtitle DIV {
  text-align: center;
  color: #734d27;
}
.cid-uUHGaXEs0l {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uUHGaXEs0l .mbr-section-subtitle {
  color: #56320a;
}
.cid-uUHGaXEs0l H2 {
  color: #56320a;
}
.cid-uUHy7WAC7I {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-uUHy7WAC7I .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uUHy7WAC7I H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUHy7WAC7I B {
  color: #56320a;
}
.cid-uUHy7WAC7I .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUHy7WAC7I .mbr-section-subtitle DIV {
  text-align: center;
  color: #734d27;
}
.cid-uUHPvAdjNb {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uUHPvAdjNb .mbr-section-subtitle {
  color: #56320a;
}
.cid-uUHPvAdjNb H2 {
  color: #56320a;
}
.cid-uUHT6ooMLb {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-uUHT6ooMLb .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uUHT6ooMLb H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUHT6ooMLb B {
  color: #56320a;
}
.cid-uUHT6ooMLb .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUHT6ooMLb .mbr-section-subtitle DIV {
  text-align: center;
  color: #734d27;
}
.cid-uUHT7E2tGR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uUHT7E2tGR .mbr-section-subtitle {
  color: #56320a;
}
.cid-uUHT7E2tGR H2 {
  color: #56320a;
}
.cid-uDb8kv9sE8 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-uDb8kv9sE8 .mbr-section-subtitle {
  color: #d6cabe;
}
.cid-uDb8kv9sE8 H2 {
  color: #f5e0c7;
}
.cid-uDb8kv9sE8 SPAN {
  color: #cc2952;
}
.cid-uUHF7IXum1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUHF7IXum1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUHF7IXum1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUHF7IXum1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUHF7IXum1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUHF7IXum1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUHF7IXum1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUHF7IXum1 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uUHF7IXum1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUHF7IXum1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUHF7IXum1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUHF7IXum1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUHF7IXum1 .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uUHF7IXum1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUHF7IXum1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sdZrI1fpSd .navbar {
  background: #befad2;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sdZrI1fpSd .navbar-dropdown.bg-color.transparent.opened {
  background: #befad2;
}
.cid-sdZrI1fpSd a {
  font-style: normal;
}
.cid-sdZrI1fpSd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sdZrI1fpSd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sdZrI1fpSd .nav-item:focus,
.cid-sdZrI1fpSd .nav-link:focus {
  outline: none;
}
.cid-sdZrI1fpSd .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdZrI1fpSd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sdZrI1fpSd .menu-logo {
  margin-right: auto;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu {
  background: #befad2;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sdZrI1fpSd .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdZrI1fpSd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sdZrI1fpSd button.navbar-toggler:focus {
  outline: none;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff3366;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .btn {
  display: -webkit-flex;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdZrI1fpSd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sdZrI1fpSd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sdZrI1fpSd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd img {
    height: 3.8rem !important;
  }
  .cid-sdZrI1fpSd .btn {
    display: -webkit-flex;
  }
  .cid-sdZrI1fpSd button.navbar-toggler {
    display: block;
  }
  .cid-sdZrI1fpSd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sdZrI1fpSd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing,
  .cid-sdZrI1fpSd .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sdZrI1fpSd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sdZrI1fpSd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sdZrI1fpSd .nav-link:hover,
.cid-sdZrI1fpSd .dropdown-item:hover {
  color: #49edd0 !important;
}
.cid-tpHORU0GUx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpHORU0GUx .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpHORU0GUx H2 {
  color: #56320a;
}
.cid-tq5UlVqnAX {
  background-image: url("../../../assets/images/437523321-10233554681516867-8662314808883914664-n-6-1052x1476.jpg");
}
.cid-tqpyMJdze1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-tqpyMJdze1 .mbr-section-subtitle {
  color: #56320a;
}
.cid-tqpyMJdze1 H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tq5h3OZGQc .mbr-section-subtitle {
  color: #734d27;
}
.cid-tq5h3OZGQc H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc B {
  color: #cc2952;
}
.cid-tq5h4xAzOk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-tq5h4xAzOk .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-tq5h4xAzOk H2 {
  color: #56320a;
}
.cid-tq5h4xAzOk B {
  color: #56320a;
}
.cid-tq5h4xAzOk .mbr-section-subtitle I {
  color: #734d27;
}
.cid-tq5h4xAzOk .mbr-section-subtitle DIV {
  text-align: center;
  color: #9f5b10;
}
.cid-tq8cQfR4rN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-tq8cQfR4rN .mbr-section-subtitle {
  color: #56320a;
}
.cid-tq8cQfR4rN H2 {
  color: #56320a;
}
.cid-uDIDTwreKN {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ede0cc;
}
.cid-uDIDTwreKN .mbr-section-subtitle {
  color: #c75252;
}
.cid-uDIDTwreKN H2 {
  color: #734d27;
}
.cid-uDIDTwreKN SPAN {
  color: #57bfac;
}
.cid-uDIDTwreKN .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUHBRCO9p4 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-uUHBRCO9p4 .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-uUHBRCO9p4 H2 {
  color: #56320a;
}
.cid-uUHBRCO9p4 B {
  color: #56320a;
}
.cid-uUHBRCO9p4 .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUHBRCO9p4 .mbr-section-subtitle DIV {
  text-align: center;
  color: #9f5b10;
}
.cid-tq5hqRt5B0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ede0cc;
}
.cid-tq5hqRt5B0 .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-tq5hqRt5B0 H2 {
  color: #56320a;
}
.cid-tq5hqRt5B0 B {
  color: #734d27;
}
.cid-tq5hqRt5B0 .mbr-section-subtitle I {
  color: #734d27;
}
.cid-tq5hqRt5B0 .mbr-section-subtitle DIV {
  text-align: center;
  color: #57bfac;
}
.cid-uUHB4zB1nW {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-uUHB4zB1nW .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-uUHB4zB1nW H2 {
  color: #56320a;
}
.cid-uUHB4zB1nW B {
  color: #56320a;
}
.cid-uUHB4zB1nW .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUHB4zB1nW .mbr-section-subtitle DIV {
  text-align: center;
  color: #9f5b10;
}
.cid-uDaq7eGNkv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ede0cc;
}
.cid-uDaq7eGNkv .mbr-section-subtitle {
  color: #9f5b10;
}
.cid-uDaq7eGNkv H2 {
  color: #56320a;
}
.cid-uDaq7eGNkv B {
  color: #734d27;
}
.cid-uDaq7eGNkv .mbr-section-subtitle I {
  color: #9f5b10;
}
.cid-uDaq7eGNkv .mbr-section-subtitle B {
  color: #9f5b10;
}
.cid-uDaq8g0llw {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-uDaq8g0llw .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-uDaq8g0llw H2 {
  color: #56320a;
}
.cid-uDaq8g0llw B {
  color: #56320a;
}
.cid-uDaq8g0llw .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uDaq8g0llw .mbr-section-subtitle DIV {
  text-align: center;
  color: #9f5b10;
}
.cid-sePcyMnZ8t {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-sePcyMnZ8t .mbr-section-subtitle {
  color: #d6cabe;
}
.cid-sePcyMnZ8t H2 {
  color: #f5e0c7;
}
.cid-sePcyMnZ8t SPAN {
  color: #cc2952;
}
.cid-uUHF4RafUV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUHF4RafUV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUHF4RafUV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUHF4RafUV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUHF4RafUV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUHF4RafUV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUHF4RafUV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUHF4RafUV .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uUHF4RafUV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUHF4RafUV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUHF4RafUV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUHF4RafUV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUHF4RafUV .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uUHF4RafUV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUHF4RafUV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sdZrI1fpSd .navbar {
  background: #befad2;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sdZrI1fpSd .navbar-dropdown.bg-color.transparent.opened {
  background: #befad2;
}
.cid-sdZrI1fpSd a {
  font-style: normal;
}
.cid-sdZrI1fpSd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sdZrI1fpSd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sdZrI1fpSd .nav-item:focus,
.cid-sdZrI1fpSd .nav-link:focus {
  outline: none;
}
.cid-sdZrI1fpSd .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdZrI1fpSd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sdZrI1fpSd .menu-logo {
  margin-right: auto;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu {
  background: #befad2;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sdZrI1fpSd .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdZrI1fpSd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sdZrI1fpSd button.navbar-toggler:focus {
  outline: none;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff3366;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .btn {
  display: -webkit-flex;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdZrI1fpSd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sdZrI1fpSd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sdZrI1fpSd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd img {
    height: 3.8rem !important;
  }
  .cid-sdZrI1fpSd .btn {
    display: -webkit-flex;
  }
  .cid-sdZrI1fpSd button.navbar-toggler {
    display: block;
  }
  .cid-sdZrI1fpSd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sdZrI1fpSd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing,
  .cid-sdZrI1fpSd .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sdZrI1fpSd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sdZrI1fpSd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sdZrI1fpSd .nav-link:hover,
.cid-sdZrI1fpSd .dropdown-item:hover {
  color: #49edd0 !important;
}
.cid-tpHORU0GUx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpHORU0GUx .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpHORU0GUx H2 {
  color: #56320a;
}
.cid-tq5UlVqnAX {
  background-image: url("../../../assets/images/505124686-10238586601031710-194351113874746177-n-2000x1176.jpg");
}
.cid-tqpyMJdze1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-tqpyMJdze1 .mbr-section-subtitle {
  color: #56320a;
}
.cid-tqpyMJdze1 H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tq5h3OZGQc .mbr-section-subtitle {
  color: #734d27;
}
.cid-tq5h3OZGQc H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc B {
  color: #cc2952;
}
.cid-tq5h4xAzOk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-tq5h4xAzOk .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-tq5h4xAzOk H2 {
  color: #56320a;
}
.cid-tq5h4xAzOk B {
  color: #56320a;
}
.cid-tq5h4xAzOk .mbr-section-subtitle I {
  color: #734d27;
}
.cid-tq5h4xAzOk .mbr-section-subtitle DIV {
  text-align: center;
  color: #9f5b10;
}
.cid-uUHx5y5g8C {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-uUHx5y5g8C .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uUHx5y5g8C H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUHx5y5g8C B {
  color: #56320a;
}
.cid-uUHx5y5g8C .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUHx5y5g8C .mbr-section-subtitle DIV {
  text-align: center;
  color: #734d27;
}
.cid-tq8cQfR4rN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #faf3eb;
}
.cid-tq8cQfR4rN .mbr-section-subtitle {
  color: #56320a;
}
.cid-tq8cQfR4rN H2 {
  color: #56320a;
}
.cid-uDIDTwreKN {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ede0cc;
}
.cid-uDIDTwreKN .mbr-section-subtitle {
  color: #c75252;
}
.cid-uDIDTwreKN H2 {
  color: #56320a;
}
.cid-uDIDTwreKN SPAN {
  color: #57bfac;
}
.cid-uUGBUkwb5M {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-uUGBUkwb5M .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-uUGBUkwb5M H2 {
  color: #56320a;
}
.cid-uUGBUkwb5M B {
  color: #56320a;
}
.cid-uUGBUkwb5M .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUGBUkwb5M .mbr-section-subtitle DIV {
  text-align: center;
  color: #9f5b10;
}
.cid-uUGBUkwb5M I {
  color: #56320a;
}
.cid-sePcyMnZ8t {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-sePcyMnZ8t .mbr-section-subtitle {
  color: #d6cabe;
}
.cid-sePcyMnZ8t H2 {
  color: #f5e0c7;
}
.cid-sePcyMnZ8t SPAN {
  color: #cc2952;
}
.cid-sdZrI1fpSd .navbar {
  background: #befad2;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sdZrI1fpSd .navbar-dropdown.bg-color.transparent.opened {
  background: #befad2;
}
.cid-sdZrI1fpSd a {
  font-style: normal;
}
.cid-sdZrI1fpSd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sdZrI1fpSd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sdZrI1fpSd .nav-item:focus,
.cid-sdZrI1fpSd .nav-link:focus {
  outline: none;
}
.cid-sdZrI1fpSd .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdZrI1fpSd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sdZrI1fpSd .menu-logo {
  margin-right: auto;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu {
  background: #befad2;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdZrI1fpSd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdZrI1fpSd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sdZrI1fpSd .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdZrI1fpSd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdZrI1fpSd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sdZrI1fpSd button.navbar-toggler:focus {
  outline: none;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff3366;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZrI1fpSd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sdZrI1fpSd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZrI1fpSd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .btn {
  display: -webkit-flex;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sdZrI1fpSd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdZrI1fpSd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sdZrI1fpSd .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdZrI1fpSd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sdZrI1fpSd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sdZrI1fpSd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdZrI1fpSd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sdZrI1fpSd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd img {
    height: 3.8rem !important;
  }
  .cid-sdZrI1fpSd .btn {
    display: -webkit-flex;
  }
  .cid-sdZrI1fpSd button.navbar-toggler {
    display: block;
  }
  .cid-sdZrI1fpSd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sdZrI1fpSd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sdZrI1fpSd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing,
  .cid-sdZrI1fpSd .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sdZrI1fpSd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdZrI1fpSd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sdZrI1fpSd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdZrI1fpSd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sdZrI1fpSd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sdZrI1fpSd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sdZrI1fpSd .nav-link:hover,
.cid-sdZrI1fpSd .dropdown-item:hover {
  color: #49edd0 !important;
}
.cid-tpHORU0GUx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpHORU0GUx .mbr-section-subtitle {
  color: #56320a;
}
.cid-tpHORU0GUx H2 {
  color: #56320a;
}
.cid-tq5UlVqnAX {
  background-image: url("../../../assets/images/498586968-10238257066593555-887398356580224774-n-1-2000x1146.jpg");
}
.cid-tqpyMJdze1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-tqpyMJdze1 .mbr-section-subtitle {
  color: #56320a;
}
.cid-tqpyMJdze1 H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-tq5h3OZGQc .mbr-section-subtitle {
  color: #734d27;
}
.cid-tq5h3OZGQc H2 {
  color: #56320a;
}
.cid-tq5h3OZGQc B {
  color: #cc2952;
}
.cid-tq5h4xAzOk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #faf3eb;
}
.cid-tq5h4xAzOk .mbr-section-subtitle {
  color: #9f5b10;
  text-align: center;
}
.cid-tq5h4xAzOk H2 {
  color: #56320a;
}
.cid-tq5h4xAzOk B {
  color: #56320a;
}
.cid-tq5h4xAzOk .mbr-section-subtitle I {
  color: #734d27;
}
.cid-tq5h4xAzOk .mbr-section-subtitle DIV {
  text-align: center;
  color: #9f5b10;
}
.cid-uUH4jhRRze {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ede0cc;
}
.cid-uUH4jhRRze .mbr-section-subtitle {
  color: #734d27;
}
.cid-uUH4jhRRze H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUH4jhRRze B {
  color: #734d27;
}
.cid-uUGYbs2J5x {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #faf3eb;
}
.cid-uUGYbs2J5x .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uUGYbs2J5x H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUGYbs2J5x B {
  color: #56320a;
}
.cid-uUGYbs2J5x .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUGYbs2J5x .mbr-section-subtitle DIV {
  text-align: center;
  color: #734d27;
}
.cid-uDIDTwreKN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ede0cc;
}
.cid-uDIDTwreKN .mbr-section-subtitle {
  color: #c75252;
}
.cid-uDIDTwreKN H2 {
  color: #734d27;
}
.cid-uDIDTwreKN SPAN {
  color: #57bfac;
}
.cid-uUGYxlAtS0 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-uUGYxlAtS0 .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uUGYxlAtS0 H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUGYxlAtS0 B {
  color: #56320a;
}
.cid-uUGYxlAtS0 .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUGYxlAtS0 .mbr-section-subtitle DIV {
  text-align: center;
  color: #734d27;
}
.cid-uUGYO4az0K {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ede0cc;
}
.cid-uUGYO4az0K .mbr-section-subtitle {
  color: #734d27;
}
.cid-uUGYO4az0K H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUGYO4az0K B {
  color: #734d27;
}
.cid-uUGWGv1947 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #faf3eb;
}
.cid-uUGWGv1947 .mbr-section-subtitle {
  color: #734d27;
  text-align: center;
}
.cid-uUGWGv1947 H2 {
  color: #56320a;
  text-align: center;
}
.cid-uUGWGv1947 B {
  color: #56320a;
}
.cid-uUGWGv1947 .mbr-section-subtitle I {
  color: #734d27;
}
.cid-uUGWGv1947 .mbr-section-subtitle DIV {
  text-align: center;
  color: #734d27;
}
.cid-sePcyMnZ8t {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #befad2;
}
.cid-sePcyMnZ8t .mbr-section-subtitle {
  color: #d6cabe;
}
.cid-sePcyMnZ8t H2 {
  color: #f5e0c7;
}
.cid-sePcyMnZ8t SPAN {
  color: #cc2952;
}
