@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);
@primaryColor: #149dcc;
@secondaryColor: #cc2952;
@successColor: #F7ED4A;
@infoColor: #82786E;
@warningColor: #879A9F;
@dangerColor: #B1A374;
@mainFont: Rubik;
@display1Font: 'Open Sans', sans-serif;
@display1Size: 1.8;
@display2Font: 'Open Sans', sans-serif;
@display2Size: 1.2;
@display5Font: 'Open Sans', sans-serif;
@display5Size: 1;
@display7Font: 'Open Sans', sans-serif;
@display7Size: 0.8;
@display4Font: 'Open Sans', sans-serif;
@display4Size: 0.6;
@isRoundedButtons: true;
@isAnimatedOnScroll: true;
@isScrollToTopButton: false;
@btn-font-size: .8rem;
@btn-border-radius: 3px;
@btn-padding-y: 1rem;
@btn-padding-x: 3rem;
@btn-font-size-sm: .8rem;
@btn-border-radius-sm: 3px;
@btn-padding-y-sm: .6rem;
@btn-padding-x-sm: 1.5rem;
@btn-font-size-md: 1rem;
@btn-border-radius-md: 3px;
@btn-padding-y-md: 1rem;
@btn-padding-x-md: 3rem;
@btn-font-size-lg: 1.2rem;
@btn-border-radius-lg: 3px;
@btn-padding-y-lg: 1.2rem;
@btn-padding-x-lg: 3.2rem;

// FONTS

body {
    font-family: @mainFont;
}

.display-1 {
    font-family: @display1Font;
    font-size: @display1Size *1rem;
    font-display: swap;

    >.mbr-iconfont {
        font-size: @display1Size *1.6rem;
    }
}

.display-2 {
    font-family: @display2Font;
    font-size: @display2Size *1rem;
    font-display: swap;

    >.mbr-iconfont {
        font-size: @display2Size *1.6rem;
    }
}

.display-4 {
    font-family: @display4Font;
    font-size: @display4Size *1rem;
    font-display: swap;

    >.mbr-iconfont {
        font-size: @display4Size *1.6rem;
    }
}

.display-5 {
    font-family: @display5Font;
    font-size: @display5Size *1rem;
    font-display: swap;

    >.mbr-iconfont {
        font-size: @display5Size *1.6rem;
    }
}

.display-7 {
    font-family: @display7Font;
    font-size: @display7Size *1rem;
    font-display: swap;

    >.mbr-iconfont {
        font-size: @display7Size *1.6rem;
    }
}

/* ---- 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 {
        @display1Size-min: @display1Size - (@display1Size - 1) * 0.65;
        font-size: @display1Size * 0.8rem;
        font-size:~"calc( @{display1Size-min}rem + (@{display1Size} - @{display1Size-min}) * ((100vw - 20rem) / (48 - 20)))";
        line-height:~"calc( 1.4 * (@{display1Size-min}rem + (@{display1Size} - @{display1Size-min}) * ((100vw - 20rem) / (48 - 20))))";
    }

    .display-2 {
        @display2Size-min: @display2Size - (@display2Size - 1) * 0.65;
        font-size: @display2Size * 0.8rem;
        font-size:~"calc( @{display2Size-min}rem + (@{display2Size} - @{display2Size-min}) * ((100vw - 20rem) / (48 - 20)))";
        line-height:~"calc( 1.4 * (@{display2Size-min}rem + (@{display2Size} - @{display2Size-min}) * ((100vw - 20rem) / (48 - 20))))";
    }

    .display-4 {
        @display4Size-min: @display4Size - (@display4Size - 1) * 0.65;
        font-size: @display4Size * 0.8rem;
        font-size:~"calc( @{display4Size-min}rem + (@{display4Size} - @{display4Size-min}) * ((100vw - 20rem) / (48 - 20)))";
        line-height:~"calc( 1.4 * (@{display4Size-min}rem + (@{display4Size} - @{display4Size-min}) * ((100vw - 20rem) / (48 - 20))))";
    }

    .display-5 {
        @display5Size-min: @display5Size - (@display5Size - 1) * 0.65;
        font-size: @display5Size * 0.8rem;
        font-size:~"calc( @{display5Size-min}rem + (@{display5Size} - @{display5Size-min}) * ((100vw - 20rem) / (48 - 20)))";
        line-height:~"calc( 1.4 * (@{display5Size-min}rem + (@{display5Size} - @{display5Size-min}) * ((100vw - 20rem) / (48 - 20))))";
    }
}

/* Buttons */
.button-variant(@background) {
    @color: contrast(@background, darken(@background, 50%), #ffffff, 60%);
    @border: @background;
    @active-color: @color;
    @active-border: @active-background;

    @active-background: if(eq(@background, @color),
        #d4d4d4,
        darken(@background, 15%));

    &,
    &:active {
        background-color: @background  !important;
        border-color: @border  !important;
        color: @color  !important;
    }

    &:hover,
    &:focus,
    &.focus,
    &.active {
        color: @active-color  !important;
        background-color: @active-background  !important;
        border-color: @active-border  !important;
    }

    &.disabled,
    &:disabled {
        color: @active-color  !important;
        background-color: @active-background  !important;
        border-color: @active-border  !important;
    }

}

.button-outline-variant(@color) {
    @active-color: contrast(@color, darken(@color, 50%), #ffffff, 60%);
    @active-background: @color;
    @new-color: if(eq(@color, @active-color),
        #fff,
        darken(@color, 20%));

    &,
    &:active {
        background: none;
        border-color: @new-color;
        color: @new-color;
    }

    &:hover,
    &:focus,
    &.focus,
    &.active {
        color: @active-color;
        background-color: @active-background;
        border-color: @active-background;
    }

    &.disabled,
    &:disabled {
        color: @active-color  !important;
        background-color: @active-background  !important;
        border-color: @active-background  !important;
    }
}

.plan-variant(@className, @color) {
    &@{className} {

        .mbr-plan-subtitle,
        .mbr-plan-price-desc {
            @max: max(red(@color), green(@color), blue(@color));

            & when (@max > 200) {
                color: lighten(@color, 40%);
            }

            & when (@max > 85) and (@max <=200) {
                color: lighten(@color, 25%);
            }

            & when (@max > 50) and (@max <=85) {
                color: lighten(@color, 45%);
            }

            & when (@max <=50) {
                color: lighten(@color, 70%);
            }
        }
    }
}





.button-size(@btn-padding-y, @btn-padding-x, @btn-font-size, @btn-border-radius) {
    padding: @btn-padding-y @btn-padding-x;
    border-radius: @btn-border-radius;
}

.btn {
    .button-size(@btn-padding-y, @btn-padding-x, @btn-font-size, @btn-border-radius);
}

.btn-sm {
    .button-size(@btn-padding-y-sm, @btn-padding-x-sm, @btn-font-size-sm, @btn-border-radius-sm);
}

.btn-md {
    .button-size(@btn-padding-y-md, @btn-padding-x-md, @btn-font-size-md, @btn-border-radius-md);
}

.btn-lg {
    .button-size(@btn-padding-y-lg, @btn-padding-x-lg, @btn-font-size-lg, @btn-border-radius-lg);
}

.bg-primary {
    background-color: @primaryColor  !important;
}

.bg-success {
    background-color: @successColor  !important;
}

.bg-info {
    background-color: @infoColor  !important;
}

.bg-warning {
    background-color: @warningColor  !important;
}

.bg-danger {
    background-color: @dangerColor  !important;
}

.btn-primary {
    .button-variant(@primaryColor);
}

.btn-secondary {
    .button-variant(@secondaryColor);
}

.btn-info {
    .button-variant(@infoColor);
}

.btn-success {
    .button-variant(@successColor);
}

.btn-warning {
    .button-variant(@warningColor);
}

.btn-danger {
    .button-variant(@dangerColor);
}

.btn-white {
    .button-variant(#ffffff);
    color: #333333 !important;
}

.btn-black {
    .button-variant(#333333);
}

.btn-primary-outline {
    .button-outline-variant(@primaryColor);
}

.btn-secondary-outline {
    .button-outline-variant(@secondaryColor);
}

.btn-info-outline {
    .button-outline-variant(@infoColor);
}

.btn-success-outline {
    .button-outline-variant(@successColor);
}

.btn-warning-outline {
    .button-outline-variant(@warningColor);
}

.btn-danger-outline {
    .button-outline-variant(@dangerColor);
}

.btn-black-outline {
    .button-outline-variant(#333333);
}

.btn-white-outline {

    &,
    &:active,
    &.active {
        background: none;
        border-color: #ffffff;
        color: #ffffff;
    }

    &:hover,
    &:focus,
    &.focus {
        color: #333333;
        background-color: #ffffff;
        border-color: #ffffff;
    }

}

.text-primary {
    color: @primaryColor  !important;
}

.text-secondary {
    color: @secondaryColor  !important;
}

.text-success {
    color: @successColor  !important;
}

.text-info {
    color: @infoColor  !important;
}

.text-warning {
    color: @warningColor  !important;
}

.text-danger {
    color: @dangerColor  !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: darken(@primaryColor, 20%) !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: darken(@secondaryColor, 20%) !important;
}

a.text-success:hover,
a.text-success:focus {
    color: darken(@successColor, 20%) !important;
}

a.text-info:hover,
a.text-info:focus {
    color: darken(@infoColor, 20%) !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: darken(@warningColor, 20%) !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: darken(@dangerColor, 20%) !important;
}

a.text-white:hover,
a.text-white:focus {
    color: darken(#ffffff, 30%) !important;
}

a.text-black:hover,
a.text-black:focus {
    color: lighten(#000000, 30%) !important;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: @infoColor;
}

.alert-warning {
    background-color: @warningColor;
}

.alert-danger {
    background-color: @dangerColor;
}

.mbr-section-btn a.btn:not(.btn-form) {

    &:hover,
    &:focus {
        box-shadow: none !important;
    }

    & when (@isRoundedButtons) {
        border-radius: 100px;

        &:hover,
        &:focus {
            box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .2) !important;
            -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .2) !important;
        }
    }
}

.mbr-gallery-filter li a when(@isRoundedButtons) {
    border-radius: 100px !important;
}

.mbr-gallery-filter {
    li.active .btn {
        background-color: @primaryColor;
        border-color: @primaryColor;
        color: contrast(@primaryColor, darken(@primaryColor, 45%), #ffffff, 60%);

        &:focus {
            box-shadow: none;
        }
    }
}

.nav-tabs .nav-link when(@isRoundedButtons) {
    border-radius: 100px !important;
}

a,
a:hover {
    color: @primaryColor;
}

.mbr-plan-header {
    .plan-variant(~'.bg-primary', @primaryColor);
    .plan-variant(~'.bg-success', @successColor);
    .plan-variant(~'.bg-info', @infoColor);
    .plan-variant(~'.bg-warning', @warningColor);
    .plan-variant(~'.bg-danger', @dangerColor);
}

/* Scroll to top button*/
.scrollToTop_wraper when not(@isScrollToTopButton) {
    display: none;
}

#scrollToTop a when (@isScrollToTopButton) and (@isRoundedButtons) {
    border-radius: 100px;
}

.form-control {
    .display-7;
}

blockquote {
    border-color: @primaryColor;
}

/* Forms */
.mbr-form {
    .btn {
        margin: .4rem 0;
    }

    .input-group-btn a.btn when(@isRoundedButtons) {
        border-radius: 100px !important;

        // padding: 1rem 3rem;
        &:hover {
            box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .2);
        }
    }

    .input-group-btn button[type="submit"] when (@isRoundedButtons) {
        border-radius: 100px !important;
        padding: 1rem 3rem;

        &:hover {
            box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .2);
        }
    }
}

.form2 {
    .form-control {
        & when (@isRoundedButtons) {
            border-top-left-radius: 100px;
            border-bottom-left-radius: 100px;
        }
    }

    .input-group-btn a.btn when(@isRoundedButtons) {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .input-group-btn button[type="submit"] when(@isRoundedButtons) {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
}

.form3 {
    input[type="email"] when (@isRoundedButtons) {
        border-radius: 100px !important;
    }
}

@media (max-width: 349px) {
    .form2 {
        input[type="email"] when (@isRoundedButtons) {
            border-radius: 100px !important;
        }

        .input-group-btn a.btn when (@isRoundedButtons) {
            border-radius: 100px !important;
        }

        .input-group-btn button[type="submit"] when (@isRoundedButtons) {
            border-radius: 100px !important;
        }
    }
}

@media (max-width: 767px) {
    .btn {
        font-size: .75rem !important;

        .mbr-iconfont {
            font-size: 1rem !important;
        }
    }
}

/* Footer */
.mbr-footer-content,
.mbr-footer .mbr-contacts {
    li {
        &::before {
            background: @primaryColor;
        }

        a:hover {
            color: @primaryColor;
        }
    }
}

.footer3,
.footer4 {
    input[type="email"] when (@isRoundedButtons) {
        border-radius: 100px !important;
    }

    .input-group-btn a.btn when (@isRoundedButtons) {
        border-radius: 100px !important;
    }

    .input-group-btn button[type="submit"] when (@isRoundedButtons) {
        border-radius: 100px !important;
    }
}

/* Headers*/
.header13,
.header14 {
    .form-inline {
        input[type="email"] when (@isRoundedButtons) {
            border-radius: 100px;
        }

        input[type="text"] when (@isRoundedButtons) {
            border-radius: 100px;
        }

        input[type="tel"] when (@isRoundedButtons) {
            border-radius: 100px;
        }

        a.btn when (@isRoundedButtons) {
            border-radius: 100px;
        }

        button when (@isRoundedButtons) {
            border-radius: 100px !important;
        }
    }
}

@media screen and (~'-ms-high-contrast: active'),
(~'-ms-high-contrast: none') {
    .card-wrapper {
        flex: auto !important;
    }
}

//formstyler
.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: @primaryColor;
    color: contrast(@primaryColor, #000000, #ffffff, 60%)
}

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: @primaryColor;
    border-bottom-color: @primaryColor;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
    color: contrast(@primaryColor, #000, #fff, 30%) !important;
    background-color: @primaryColor !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    color: contrast(@secondaryColor, #000, #fff, 30%) !important;
    background: @secondaryColor  !important;
    box-shadow: none !important
}

//lazyload
.lazy-bg {
    background-image: none !important;
}

.lazy-placeholder:not(section),
.lazy-none {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
}

iframe.lazy-placeholder,
.lazy-placeholder:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: transparent no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    @fillSVG: replace("@{primaryColor}", "#", "%23");
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='@{fillSVG}' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
    opacity: 0.3;
}@isPublish: true;

.cid-slloTP6paK {

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
background-color: @bgColor;
.mbr-section {
  text-align: center;
  color: #fff;
}
}

.cid-sll9toKpUF {
@fullScreen: false;
@paddingTop: 6;
@paddingBottom: 6;
@showTitle: false;
@showSubTitle: true;
@showText: true;
@showButtons: true;
@uname__12: "file:///C:/Users/Bob/AppData/Local/Mobirise.com/Mobirise/projects/project-2021-01-13_225815/assets/images/2019-09-24-12-44.png";
@uname__13: true;
@uname__14: #7f1933;
@bg-value: "file:///C:/Users/Bob/AppData/Local/Mobirise.com/Mobirise/projects/project-2021-01-13_225815/assets/images/2019-09-24-12-44.png";
@bg-type: "image";
@bg-color-value: #7f1933;
@bg-parallax: true;
@overlay: true;
@overlayColor: #55b4d4;
@overlayOpacity: 0.4;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 15px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.mbr-text, .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
}

.cid-slll8SIB12 {
@paddingTop: 2;
@paddingBottom: 2;
@menuItems: 5;
@socialItems: 6;
@reveal: false;
@uname__7: "file:///C:/Users/Bob/AppData/Local/Mobirise.com/Mobirise/projects/project-2021-01-13_225815/assets/images/background5.jpg";
@uname__8: false;
@uname__9: #f16118;
@bg-value: #f16118;
@bg-type: "color";
@bg-color-value: #f16118;
@bg-parallax: false;
@overlay: true;
@overlayColor: #232323;
@overlayOpacity: 0.8;

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
}
.row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  .foot-menu {
    list-style: none;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    li {
      padding: 0 1rem 1rem 1rem;
      p {
        margin: 0;
      }
    }
  }
  .social-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    .mbr-iconfont-social {
      font-size: 1.5rem;
      color: #ffffff;
    }
    .soc-item {
      margin: 0 .5rem;
    }
    a {
      margin: 0;
      opacity: .5;
      -webkit-transition: .2s linear;
      transition: .2s linear;
      &:hover {
        opacity: 1;
      }
    }
    @media (max-width: 767px) {
      -webkit-justify-content: center;
      justify-content: center;
    }
  }
  .row-copirayt {
    word-break: break-word;
    width: 100%;
    p {
      width: 100%;
    }
  }
}
foot-menu-item {
  text-align: right;
}
.media-container-row .mbr-text {
  color: #55b4d4;
}
}
.cid-slldjhZNzY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f16118;
}
.cid-slldjhZNzY .mbr-section-subtitle {
  color: #767676;
}
.cid-slldjhZNzY DIV {
  text-align: center;
}
.cid-slld7xMfPe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slld7xMfPe .counter-container {
  color: #767676;
}
.cid-slld7xMfPe .counter-container ul {
  margin-bottom: 0;
}
.cid-slld7xMfPe .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-slld7xMfPe .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-slldiiVLwS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slldiiVLwS .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-slldiiVLwS .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sllff0ayPO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sllff0ayPO .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sllff0ayPO .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sllff0ayPO .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sllff0ayPO .mbr-figure,
  .cid-sllff0ayPO img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sllgkLxaeD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sllgkLxaeD .item {
  padding-bottom: 2rem;
}
.cid-sllgkLxaeD .item-wrapper {
  height: 100%;
}
.cid-sllgkLxaeD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sllgkLxaeD .carousel-control,
.cid-sllgkLxaeD .close {
  background: #1b1b1b;
}
.cid-sllgkLxaeD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sllgkLxaeD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sllgkLxaeD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sllgkLxaeD .close::before {
  content: '\e91a';
}
.cid-sllgkLxaeD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sllgkLxaeD .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sllgkLxaeD .carousel-inner > .active {
  display: block;
}
.cid-sllgkLxaeD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sllgkLxaeD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sllgkLxaeD .carousel-control .icon-next,
.cid-sllgkLxaeD .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sllgkLxaeD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sllgkLxaeD .carousel-control,
  .cid-sllgkLxaeD .carousel-indicators,
  .cid-sllgkLxaeD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sllgkLxaeD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sllgkLxaeD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sllgkLxaeD .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sllgkLxaeD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sllgkLxaeD .carousel-indicators {
    display: none;
  }
}
.cid-sllgkLxaeD .carousel-indicators .active,
.cid-sllgkLxaeD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sllgkLxaeD .carousel-indicators .active {
  background: #fff;
}
.cid-sllgkLxaeD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sllgkLxaeD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sllgkLxaeD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sllgkLxaeD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sllgkLxaeD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sllgkLxaeD .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sllgkLxaeD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sllgkLxaeD .carousel {
  width: 100%;
}
.cid-sllgkLxaeD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sllgkLxaeD .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sllgkLxaeD .modal.fade .modal-dialog,
.cid-sllgkLxaeD .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sllgkLxaeD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sllgkLxaeD a {
  display: block;
}
.cid-sllgkLxaeD a.img {
  pointer-events: none;
}
.cid-sllgPz5MuS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sllgPz5MuS .mbr-section-subtitle {
  color: #7f1933;
}
.cid-sllgPz5MuS H2 {
  color: #7f1933;
  text-align: center;
}
.cid-sllhb6ZYcG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sllhb6ZYcG .item {
  padding-bottom: 2rem;
}
.cid-sllhb6ZYcG .item-wrapper {
  height: 100%;
}
.cid-sllhb6ZYcG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sllhb6ZYcG .carousel-control,
.cid-sllhb6ZYcG .close {
  background: #1b1b1b;
}
.cid-sllhb6ZYcG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sllhb6ZYcG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sllhb6ZYcG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sllhb6ZYcG .close::before {
  content: '\e91a';
}
.cid-sllhb6ZYcG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sllhb6ZYcG .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sllhb6ZYcG .carousel-inner > .active {
  display: block;
}
.cid-sllhb6ZYcG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sllhb6ZYcG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sllhb6ZYcG .carousel-control .icon-next,
.cid-sllhb6ZYcG .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sllhb6ZYcG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sllhb6ZYcG .carousel-control,
  .cid-sllhb6ZYcG .carousel-indicators,
  .cid-sllhb6ZYcG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sllhb6ZYcG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sllhb6ZYcG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sllhb6ZYcG .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sllhb6ZYcG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sllhb6ZYcG .carousel-indicators {
    display: none;
  }
}
.cid-sllhb6ZYcG .carousel-indicators .active,
.cid-sllhb6ZYcG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sllhb6ZYcG .carousel-indicators .active {
  background: #fff;
}
.cid-sllhb6ZYcG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sllhb6ZYcG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sllhb6ZYcG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sllhb6ZYcG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sllhb6ZYcG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sllhb6ZYcG .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sllhb6ZYcG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sllhb6ZYcG .carousel {
  width: 100%;
}
.cid-sllhb6ZYcG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sllhb6ZYcG .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sllhb6ZYcG .modal.fade .modal-dialog,
.cid-sllhb6ZYcG .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sllhb6ZYcG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sllhb6ZYcG a {
  display: block;
}
.cid-sllhb6ZYcG a.img {
  pointer-events: none;
}
.cid-sllhEMFZ8R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #149dcc;
}
.cid-sllhEMFZ8R .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-sllhEMFZ8R .mbr-author-name {
  font-weight: bold;
}
.cid-sllhEMFZ8R .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-sllhEMFZ8R .mbr-figure,
  .cid-sllhEMFZ8R img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-sllhEMFZ8R .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-slll8SIB12 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f16118;
}
.cid-slll8SIB12 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-slll8SIB12 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-slll8SIB12 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-slll8SIB12 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-slll8SIB12 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-slll8SIB12 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-slll8SIB12 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-slll8SIB12 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-slll8SIB12 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slll8SIB12 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slll8SIB12 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slll8SIB12 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-slll8SIB12 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-slll8SIB12 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-slll8SIB12 foot-menu-item {
  text-align: right;
}
.cid-slll8SIB12 .media-container-row .mbr-text {
  color: #55b4d4;
}
.cid-sm0qN63b2F {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f16118;
}
.cid-sm0qN63b2F .mbr-section-subtitle {
  color: #767676;
}
.cid-sm0qN63b2F DIV {
  text-align: center;
}
.cid-sm0qN6Gw87 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sm0qN6Gw87 .counter-container {
  color: #767676;
}
.cid-sm0qN6Gw87 .counter-container ul {
  margin-bottom: 0;
}
.cid-sm0qN6Gw87 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sm0qN6Gw87 .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-sm0qN77KQm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sm0qN77KQm .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-sm0qN77KQm .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sm0qN7I9k6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sm0qN7I9k6 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sm0qN7I9k6 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sm0qN7I9k6 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sm0qN7I9k6 .mbr-figure,
  .cid-sm0qN7I9k6 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sm0qN8rfxV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sm0qN8rfxV .item {
  padding-bottom: 2rem;
}
.cid-sm0qN8rfxV .item-wrapper {
  height: 100%;
}
.cid-sm0qN8rfxV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sm0qN8rfxV .carousel-control,
.cid-sm0qN8rfxV .close {
  background: #1b1b1b;
}
.cid-sm0qN8rfxV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sm0qN8rfxV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sm0qN8rfxV .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sm0qN8rfxV .close::before {
  content: '\e91a';
}
.cid-sm0qN8rfxV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sm0qN8rfxV .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sm0qN8rfxV .carousel-inner > .active {
  display: block;
}
.cid-sm0qN8rfxV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sm0qN8rfxV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sm0qN8rfxV .carousel-control .icon-next,
.cid-sm0qN8rfxV .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sm0qN8rfxV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sm0qN8rfxV .carousel-control,
  .cid-sm0qN8rfxV .carousel-indicators,
  .cid-sm0qN8rfxV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sm0qN8rfxV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sm0qN8rfxV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sm0qN8rfxV .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sm0qN8rfxV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sm0qN8rfxV .carousel-indicators {
    display: none;
  }
}
.cid-sm0qN8rfxV .carousel-indicators .active,
.cid-sm0qN8rfxV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sm0qN8rfxV .carousel-indicators .active {
  background: #fff;
}
.cid-sm0qN8rfxV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sm0qN8rfxV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sm0qN8rfxV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sm0qN8rfxV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sm0qN8rfxV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sm0qN8rfxV .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sm0qN8rfxV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sm0qN8rfxV .carousel {
  width: 100%;
}
.cid-sm0qN8rfxV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sm0qN8rfxV .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sm0qN8rfxV .modal.fade .modal-dialog,
.cid-sm0qN8rfxV .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sm0qN8rfxV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sm0qN8rfxV a {
  display: block;
}
.cid-sm0qN8rfxV a.img {
  pointer-events: none;
}
.cid-sm0qN9uEHq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sm0qN9uEHq .mbr-section-subtitle {
  color: #7f1933;
}
.cid-sm0qN9uEHq H2 {
  color: #7f1933;
  text-align: center;
}
.cid-sm0qNa5G9V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sm0qNa5G9V .item {
  padding-bottom: 2rem;
}
.cid-sm0qNa5G9V .item-wrapper {
  height: 100%;
}
.cid-sm0qNa5G9V .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sm0qNa5G9V .carousel-control,
.cid-sm0qNa5G9V .close {
  background: #1b1b1b;
}
.cid-sm0qNa5G9V .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sm0qNa5G9V .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sm0qNa5G9V .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sm0qNa5G9V .close::before {
  content: '\e91a';
}
.cid-sm0qNa5G9V .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sm0qNa5G9V .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sm0qNa5G9V .carousel-inner > .active {
  display: block;
}
.cid-sm0qNa5G9V .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sm0qNa5G9V .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sm0qNa5G9V .carousel-control .icon-next,
.cid-sm0qNa5G9V .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sm0qNa5G9V .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sm0qNa5G9V .carousel-control,
  .cid-sm0qNa5G9V .carousel-indicators,
  .cid-sm0qNa5G9V .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sm0qNa5G9V .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sm0qNa5G9V .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sm0qNa5G9V .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sm0qNa5G9V .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sm0qNa5G9V .carousel-indicators {
    display: none;
  }
}
.cid-sm0qNa5G9V .carousel-indicators .active,
.cid-sm0qNa5G9V .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sm0qNa5G9V .carousel-indicators .active {
  background: #fff;
}
.cid-sm0qNa5G9V .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sm0qNa5G9V .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sm0qNa5G9V .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sm0qNa5G9V .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sm0qNa5G9V .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sm0qNa5G9V .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sm0qNa5G9V .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sm0qNa5G9V .carousel {
  width: 100%;
}
.cid-sm0qNa5G9V .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sm0qNa5G9V .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sm0qNa5G9V .modal.fade .modal-dialog,
.cid-sm0qNa5G9V .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sm0qNa5G9V .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sm0qNa5G9V a {
  display: block;
}
.cid-sm0qNa5G9V a.img {
  pointer-events: none;
}
.cid-sm0qNaYhtm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #149dcc;
}
.cid-sm0qNaYhtm .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-sm0qNaYhtm .mbr-author-name {
  font-weight: bold;
}
.cid-sm0qNaYhtm .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-sm0qNaYhtm .mbr-figure,
  .cid-sm0qNaYhtm img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-sm0qNaYhtm .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-sm0qNbEesa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f16118;
}
.cid-sm0qNbEesa .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sm0qNbEesa .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sm0qNbEesa .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm0qNbEesa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sm0qNbEesa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sm0qNbEesa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sm0qNbEesa .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sm0qNbEesa .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sm0qNbEesa .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sm0qNbEesa .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sm0qNbEesa .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sm0qNbEesa .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sm0qNbEesa .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sm0qNbEesa .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sm0qNbEesa foot-menu-item {
  text-align: right;
}
.cid-sm0qNbEesa .media-container-row .mbr-text {
  color: #55b4d4;
}
.cid-smz5dQ3Bbf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f16118;
}
.cid-smz5dQ3Bbf .mbr-section-subtitle {
  color: #767676;
}
.cid-smz5dQ3Bbf DIV {
  text-align: center;
}
.cid-smz5dQK0Ff {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smz5dQK0Ff .counter-container {
  color: #767676;
}
.cid-smz5dQK0Ff .counter-container ul {
  margin-bottom: 0;
}
.cid-smz5dQK0Ff .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-smz5dQK0Ff .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-smz5dRhZOJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smz5dRhZOJ .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-smz5dRhZOJ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-smz5dRQ0kU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-smz5dRQ0kU .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-smz5dRQ0kU .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-smz5dRQ0kU .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-smz5dRQ0kU .mbr-figure,
  .cid-smz5dRQ0kU img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-smz5dSOq4U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smz5dSOq4U .item {
  padding-bottom: 2rem;
}
.cid-smz5dSOq4U .item-wrapper {
  height: 100%;
}
.cid-smz5dSOq4U .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-smz5dSOq4U .carousel-control,
.cid-smz5dSOq4U .close {
  background: #1b1b1b;
}
.cid-smz5dSOq4U .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-smz5dSOq4U .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-smz5dSOq4U .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-smz5dSOq4U .close::before {
  content: '\e91a';
}
.cid-smz5dSOq4U .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-smz5dSOq4U .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-smz5dSOq4U .carousel-inner > .active {
  display: block;
}
.cid-smz5dSOq4U .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smz5dSOq4U .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smz5dSOq4U .carousel-control .icon-next,
.cid-smz5dSOq4U .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-smz5dSOq4U .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-smz5dSOq4U .carousel-control,
  .cid-smz5dSOq4U .carousel-indicators,
  .cid-smz5dSOq4U .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-smz5dSOq4U .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-smz5dSOq4U .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-smz5dSOq4U .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-smz5dSOq4U .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-smz5dSOq4U .carousel-indicators {
    display: none;
  }
}
.cid-smz5dSOq4U .carousel-indicators .active,
.cid-smz5dSOq4U .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-smz5dSOq4U .carousel-indicators .active {
  background: #fff;
}
.cid-smz5dSOq4U .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-smz5dSOq4U .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-smz5dSOq4U .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-smz5dSOq4U .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-smz5dSOq4U .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-smz5dSOq4U .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-smz5dSOq4U .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-smz5dSOq4U .carousel {
  width: 100%;
}
.cid-smz5dSOq4U .modal-backdrop.in {
  opacity: 0.8;
}
.cid-smz5dSOq4U .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-smz5dSOq4U .modal.fade .modal-dialog,
.cid-smz5dSOq4U .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-smz5dSOq4U .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-smz5dSOq4U a {
  display: block;
}
.cid-smz5dSOq4U a.img {
  pointer-events: none;
}
.cid-smz5dTXISJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smz5dTXISJ .mbr-section-subtitle {
  color: #7f1933;
}
.cid-smz5dTXISJ H2 {
  color: #7f1933;
  text-align: center;
}
.cid-smz5dUxV1q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smz5dUxV1q .item {
  padding-bottom: 2rem;
}
.cid-smz5dUxV1q .item-wrapper {
  height: 100%;
}
.cid-smz5dUxV1q .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-smz5dUxV1q .carousel-control,
.cid-smz5dUxV1q .close {
  background: #1b1b1b;
}
.cid-smz5dUxV1q .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-smz5dUxV1q .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-smz5dUxV1q .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-smz5dUxV1q .close::before {
  content: '\e91a';
}
.cid-smz5dUxV1q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-smz5dUxV1q .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-smz5dUxV1q .carousel-inner > .active {
  display: block;
}
.cid-smz5dUxV1q .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smz5dUxV1q .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smz5dUxV1q .carousel-control .icon-next,
.cid-smz5dUxV1q .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-smz5dUxV1q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-smz5dUxV1q .carousel-control,
  .cid-smz5dUxV1q .carousel-indicators,
  .cid-smz5dUxV1q .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-smz5dUxV1q .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-smz5dUxV1q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-smz5dUxV1q .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-smz5dUxV1q .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-smz5dUxV1q .carousel-indicators {
    display: none;
  }
}
.cid-smz5dUxV1q .carousel-indicators .active,
.cid-smz5dUxV1q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-smz5dUxV1q .carousel-indicators .active {
  background: #fff;
}
.cid-smz5dUxV1q .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-smz5dUxV1q .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-smz5dUxV1q .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-smz5dUxV1q .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-smz5dUxV1q .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-smz5dUxV1q .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-smz5dUxV1q .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-smz5dUxV1q .carousel {
  width: 100%;
}
.cid-smz5dUxV1q .modal-backdrop.in {
  opacity: 0.8;
}
.cid-smz5dUxV1q .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-smz5dUxV1q .modal.fade .modal-dialog,
.cid-smz5dUxV1q .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-smz5dUxV1q .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-smz5dUxV1q a {
  display: block;
}
.cid-smz5dUxV1q a.img {
  pointer-events: none;
}
.cid-smz5dVsc62 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #149dcc;
}
.cid-smz5dVsc62 .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-smz5dVsc62 .mbr-author-name {
  font-weight: bold;
}
.cid-smz5dVsc62 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-smz5dVsc62 .mbr-figure,
  .cid-smz5dVsc62 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-smz5dVsc62 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-smz5dWf6F8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f16118;
}
.cid-smz5dWf6F8 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-smz5dWf6F8 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-smz5dWf6F8 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-smz5dWf6F8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-smz5dWf6F8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-smz5dWf6F8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-smz5dWf6F8 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-smz5dWf6F8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-smz5dWf6F8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-smz5dWf6F8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-smz5dWf6F8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-smz5dWf6F8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-smz5dWf6F8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-smz5dWf6F8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-smz5dWf6F8 foot-menu-item {
  text-align: right;
}
.cid-smz5dWf6F8 .media-container-row .mbr-text {
  color: #55b4d4;
}
