@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);
@primaryColor: #4284DF;
@secondaryColor: #F27D7A;
@successColor: #9473D2;
@infoColor: #7237A2;
@warningColor: #F8F9C4;
@dangerColor: #EFEFEF;
@mainFont: Poppins;
@display1Font: 'Poppins', sans-serif;
@display1Size: 4.25;
@display2Font: 'Poppins', sans-serif;
@display2Size: 3;
@display5Font: 'Poppins', sans-serif;
@display5Size: 1.5;
@display7Font: 'Roboto', sans-serif;
@display7Size: 1.06;
@display4Font: 'Poppins', sans-serif;
@display4Size: 0.875;
@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;
}

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

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

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

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

/* ---- 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,
    &.active {
        background-color: @background  !important;
        border-color: @border  !important;
        color: @color  !important;
    }

    &:hover,
    &:focus,
    &.focus {
        color: contrast(@background, darken(@background, 50%), #ffffff, 60%) !important;
        background-color: @background  !important;
        border-color: @background  !important;
    }

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

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

}

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

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

    &:hover,
    &:focus,
    &.focus {
        color: contrast(@color, darken(@color, 50%), #ffffff, 60%);
        border-color: @active-background;
        //background-color: @color;
    }

    &:before {
        background-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;
        border-color: #ffffff;
        //background-color: #ffffff;
    }

    &:before {
        background-color: #ffffff;
    }

}

.btn-bgr {
    position: relative;
    transition: border 0.3s ease-in-out, color 0.5s;
    -webkit-mask-image: -webkit-radial-gradient(circle, white, black);

    span {
        position: relative;
        z-index: 12;
    }

    &:before {
        content: ' ';
        position: absolute;
        top: -2px;
        left: -2px;
        right: 105%;
        bottom: -2px;
        transition: right 0.3s ease-in-out;
        z-index: -1;

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

    &:hover:before {
        right: -2px;
        //width: 100%;
    }
}

.btn-underline {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: color .2s ease-out;

    &:before {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: @primaryColor;
        -webkit-transition: width .2s ease-out;
        -moz-transition: width .2s ease-out;
        transition: width .2s ease-out;
    }

    &:hover {
        &:before {
            width: 100%;
        }
    }
}

.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) when(@isRoundedButtons) {
    border-radius: 100px;

    &:hover,
    &:focus {
        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;
}

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;
        }
    }
}

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

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

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

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

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

//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: 200px;
    height: 200px;
    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.5;
}@isPublish: true;

.cid-twiSDFYGO6 {
@logoSize: 3.8;
@iconsAmount: "1";
@showLogo: true;
@showBrand: true;
@showItems: true;
@showIcons: false;
@showButtons: false;
@sticky: true;
@collapsed: false;
@transparent: true;
@hamburgerColor: #ffffff;
@menuBgColor: #093309;

.dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.nav-item, .nav-link, .navbar-caption {
  font-weight: normal;
}
.nav-item:focus, .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  &::after {
    right: 1rem;
  }
  &:hover {
    .mbr-iconfont:before {
      -webkit-transform: scale(0, 1);
      transform: scale(0, 1);
    }
  }
  &.dropdown-toggle {
    &:before {
      display: none;
    }
  }
  .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
    &:before {
      display: inline-block;
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
    }
  }
}
.collapsed {
  .dropdown-menu .dropdown-item:before {
    display: none;
  }
  .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.navbar {
  min-height: 77px;
  transition: all .3s;
  background: @menuBgColor;
  & when (@transparent) {
    background: none;
  }
  &.opened {
    transition: all .3s;
    background: @menuBgColor !important;
  }
  .dropdown-item {
    padding: .235rem 2.5rem .235rem 1.5rem;
  }
  .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    z-index: 1;
    & when not (@showItems) {
      display: none !important;
    }
  }
  &.collapsed {
    .nav-item .nav-link::before {
      display: none;
    }
    &.opened {
      .dropdown-menu {
        top: 0;
      }
      @media (min-width: 992px) {
        &:not(.navbar-short) .navbar-collapse when (@showLogo) {
          max-height: ~"calc(100vh - @{logoSize}rem - 1rem)";
        }
      }
    }
    .dropdown-menu {
      background: transparent !important;
      .dropdown-submenu {
        left: 0 !important;
      }
      .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
      }
    }
    ul.navbar-nav {
      li {
        margin: auto;
      }
    }
    .dropdown-menu .dropdown-item {
      padding: .25rem 1.5rem;
      text-align: center;
      -webkit-justify-content: center;
      justify-content: center;
    }
    .icons-menu {
      padding-left: 0;
      padding-top: .5rem;
      padding-bottom: .5rem;
    }
  }
  @media (max-width: 991px) {
    .nav-item .nav-link::before {
      display: none;
    }
    &.opened {
      .dropdown-menu {
        top: 0;
      }
    }
    .dropdown-menu {
      background: transparent !important;
      .dropdown-submenu {
        left: 0 !important;
      }
      .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
      }
    }
    .navbar-logo {
      img {
        height: 3.8rem !important;
      }
    }
    ul.navbar-nav {
      li {
        margin: auto;
      }
    }
    .dropdown-menu .dropdown-item {
      padding: .25rem 1.5rem !important;
      text-align: center;
      -webkit-justify-content: center;
      justify-content: center;
    }
    .navbar-brand {
      -webkit-flex-shrink: initial;
      flex-shrink: initial;
      -webkit-flex-basis: auto;
      flex-basis: auto;
      word-break: break-word;
    }
    .navbar-toggler {
      -webkit-flex-basis: auto;
      flex-basis: auto;
    }
    .icons-menu {
      padding-left: 0;
      padding-top: .5rem;
      padding-bottom: .5rem;
    }
  }
  &.navbar-short {
    background: @menuBgColor !important;
    min-height: 60px;
    .navbar-logo {
      img {
        height: 3rem !important;
      }
    }
    .navbar-brand {
      padding: 0;
    }
  }
}
.navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  .navbar-caption {
    line-height: inherit !important;
  }
  .navbar-logo a {
    outline: none;
  }
}
.dropdown-item.active, .dropdown-item:active {
  background-color: transparent;
}
.nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  &[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
  }
}
.navbar.navbar-expand-lg .dropdown {
  .dropdown-menu {
    background: @menuBgColor;
    .dropdown-submenu {
      margin: 0;
      left: 100%;
    }
  }
}
.navbar .dropdown.open > .dropdown-menu {
  display: block;
}
ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.navbar-buttons {
  text-align: center;
}
button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
  .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: @hamburgerColor;
    &:nth-child(1) {
      top: 0;
      transition: all .2s;
    }
    &:nth-child(2) {
      top: 8px;
      transition: all .15s;
    }
    &:nth-child(3) {
      top: 8px;
      transition: all .15s;
    }
    &:nth-child(4) {
      top: 16px;
      transition: all .2s;
    }
  }
}
nav.opened .hamburger span {
  &:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
  }
  &:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
  }
  &:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
  }
  &:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
  }
}
.navbar-dropdown {
  padding: .5rem 1rem;
  & when (@sticky) {
    position: fixed;
  }
}
a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
  &:before {
    padding: .5rem;
    border: 2px solid;
    border-radius: 100px;
  }
}
.soc-item {
  margin: .5rem .3rem;
}
.icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none') {
  .navbar {
    height: 77px;
    &.opened {
      height: auto;
    }
  }
  .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% ~'+' 2rem);
    left: -1rem;
  }
}
}

.cid-twjbzNPu7D {
@fullScreen: true;
@paddingTop: 8;
@paddingBottom: 8;
@showArrow: false;
@showTitle: true;
@showSubtitle: false;
@showButtons: true;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/lid01-1-1931x1087.jpeg";
@uname__16: true;
@uname__17: #2bdc9d;
@bg-value: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/lid01-1-1931x1087.jpeg";
@bg-type: "image";
@bg-color-value: #2bdc9d;
@bg-parallax: true;
@bgColor2: #1dc9cb;
@overlay: true;
@overlayColor: #093309;
@gradientOverlay: true;
@overlayColor2: #056105;
@overlayOpacity: 0.7;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 15px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
& when (@bg-type = 'color') {
  background: linear-gradient(90deg, @bg-value, @bgColor2);
}
.mbr-overlay {
  background: @overlayColor;
  & when (@gradientOverlay) {
    background: linear-gradient(90deg, @overlayColor, @overlayColor2);
  }
}
.mbr-section-subtitle {
  color: #e3e3e3;
}
}

.cid-twjbDAcU04 {
@paddingTop: 2;
@paddingBottom: 2;
@bgColor: #093309;

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
background-color: @bgColor;
.block-title {
  color: #ffffff;
}
}

.cid-tSO5iqsKP8 {
@fullWidth: true;
@paddingTop: 4;
@paddingBottom: 4;
@showText: false;
@imageSize: 100;
@bgColor: #ffffff;
@gradientBg: false;
@color2: #149dcc;

background: @bgColor;
& when (@fullWidth = false) {
  padding-top: (@paddingTop * 15px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@gradientBg) {
  background: linear-gradient(45deg, @bgColor, @color2);
}
.image-block {
  margin: auto;
  & when (@fullWidth) {
    width: 100% !important;
  }
}
figcaption {
  position: relative;
  div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .image-block {
    width: 100% !important;
  }
}
}

.cid-tHLwuGxYNJ {
@fullWidth: true;
@paddingTop: 4;
@paddingBottom: 4;
@videoSize: 100;
@bgColor: #ffffff;
@gradientBg: false;
@color2: #6c9cdf;

background: @bgColor;
& when (@fullWidth = false) {
  padding-top: (@paddingTop * 15px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@gradientBg) {
  background: linear-gradient(45deg, @bgColor, @color2);
}
.video-block {
  margin: auto;
  & when (@fullWidth) {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .video-block {
    width: 100% !important;
  }
}
}

.cid-tHcZ1jt3UW {
@fullScreen: false;
@paddingTop: 2;
@paddingBottom: 2;
@mediaSize: 200;
@showTitle: false;
@showSubtitle: true;
@showText: false;
@showButtons: false;
@reverseContent: false;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/background4.jpg";
@uname__16: true;
@uname__17: #196435;
@bg-value: #196435;
@bg-type: "color";
@bg-color-value: #196435;
@bg-parallax: false;
@gradientBg: false;
@color2: #1ec5bf;
@overlay: true;
@overlayColor: #21b968;
@overlayColor2: #1ec5bf;
@overlayOpacity: 0.8;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 20px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(90deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.media-content .btn-bgr {
  z-index: 0;
}
.mbr-overlay {
  background: linear-gradient(90deg, @overlayColor, @overlayColor2);
}
h3 {
  color: #000000;
  font-weight: 300;
}
p {
  color: #464646;
}
h2 {
  color: #000000;
}
.media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  & when (@reverseContent) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
.mbr-section-btn {
  margin-left: -0.8rem;
}
.mbr-figure {
  padding-right: 1rem;
  & when (@reverseContent) {
    padding-right: 1rem;
    padding-left: 4rem;
  }
  @media (min-width: 500px) {
    padding-left: 2rem;
  }
  @media (max-width: 499px) {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  @media (max-width: 991px) {
    padding-left: 0;
    padding-right: 0;
  }
}
.media-container-row {
  & when (@reverseContent) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
}
.mbr-text {
  @media (max-width: 767px) {
    text-align: center;
  }
}
.mbr-section-subtitle {
  color: #ffffff;
}
}

.cid-uNLuwMGqov {
@paddingTop: 4;
@paddingBottom: 4;
@showTitle: true;
@showCounter: true;
@showSubtitle: true;
@showBorder: true;
@bgColor: #ffffff;

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
background-color: @bgColor;
h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.mbr-section-subtitle {
  color: #767676;
}
.article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  & when (@showBorder) {
    .article-right-border {
      border-right: 2px dotted #e2e2e2;
    }
  }
}
.mbr-text-left {
  text-align: left;
}
.article-title-left {
  text-align: left;
}
.article-counter-left {
  text-align: right;
}
.article-title-right {
  text-align: left;
}
.mbr-text-right {
  text-align: left;
}
}

.cid-uNLT6AJVPs {
@paddingTop: 3;
@paddingBottom: 3;
@fullWidth: false;
@contentWidth: 86;
@proportions: 229;
@showCaption: false;
@cpBg: #ffffff;
@bgColor: #ffffff;

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
background: @bgColor;
.images-container.container-fluid {
  padding: 0;
}
.media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
  .img-item {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 1;
    img {
      width: 100%;
    }
    .img-caption {
      background: @cpBg;
      z-index: 2;
      padding: 1rem 1rem;
      word-break: break-word;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      p {
        margin-bottom: 0;
      }
    }
    &.item1 {
      padding: 0 2rem 0 0;
      .img-caption {
        right: 2rem;
      }
    }
  }
  & when (@fullWidth) {
    width: 100% !important;
  }
}
@media (max-width: 992px) {
  .img-item {
    width: 100% !important;
    &.item1 {
      width: 100%;
      -webkit-flex-basis: initial !important;
      flex-basis: initial !important;
      padding: 0 0 2rem 0 !important;
    }
  }
}
@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none') {
  .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
}

.cid-uNLJmbNJE5 {

padding-top: (@paddingTop * 40px);
padding-bottom: (@paddingBottom * 15px);
background-color: @bgColor;
overflow: hidden;
box-sizing: border-box;
.mbr-slider .carousel-control {
  background: #1b1b1b;
}
.mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: @overlayColor;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  & when (@gradOverlay) {
    background: linear-gradient(to left, @overlayColor, @overlayColor2) !important;
  }
}
.mbr-gallery-item > div:hover {
  .mbr-gallery-title::before {
    background: transparent !important;
  }
  &:before {
    opacity: @overlayOpacity !important;
  }
}
.mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
  &:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: @overlayColor !important;
    opacity: @overlayOpacity;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
    & when (@gradOverlay) {
      background: linear-gradient(to left, @overlayColor, @overlayColor2) !important;
    }
  }
}
ul {
  font-size: 0;
}
.mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: @tagsColor;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px @tagsColor solid;
  border-radius: 0 !important;
}
.mbr-gallery-filter ul li {
  padding: 0;
}
H2 {
  text-align: center;
}
}

.cid-tHIUhqQDbX {
@fullScreen: false;
@paddingTop: 2;
@paddingBottom: 0;
@mediaSize: 95;
@showTitle: false;
@showSubtitle: false;
@showText: true;
@showButtons: false;
@reverseContent: true;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/collage-1384x779.jpeg";
@uname__16: true;
@uname__17: #165b16;
@bg-value: #165b16;
@bg-type: "color";
@bg-color-value: #165b16;
@bg-parallax: false;
@gradientBg: false;
@color2: #1ec5bf;
@overlay: true;
@overlayColor: #21b968;
@overlayColor2: #1ec5bf;
@overlayOpacity: 0.8;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 20px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(90deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.media-content .btn-bgr {
  z-index: 0;
}
.mbr-overlay {
  background: linear-gradient(90deg, @overlayColor, @overlayColor2);
}
h3 {
  color: #000000;
  font-weight: 300;
}
p {
  color: #464646;
}
h2 {
  color: #000000;
}
.media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  & when (@reverseContent) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
.mbr-section-btn {
  margin-left: -0.8rem;
}
.mbr-figure {
  padding-right: 1rem;
  & when (@reverseContent) {
    padding-right: 1rem;
    padding-left: 4rem;
  }
  @media (min-width: 500px) {
    padding-left: 2rem;
  }
  @media (max-width: 499px) {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  @media (max-width: 991px) {
    padding-left: 0;
    padding-right: 0;
  }
}
.media-container-row {
  & when (@reverseContent) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
}
.mbr-text {
  @media (max-width: 767px) {
    text-align: center;
  }
}
P {
  color: #ffffff;
}
}

.cid-tBTwRwUtsn {
@fullScreen: false;
@paddingTop: 2;
@paddingBottom: 0;
@mediaSize: 200;
@showTitle: false;
@showSubtitle: false;
@showText: true;
@showButtons: false;
@reverseContent: true;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/collage-1384x779.jpeg";
@uname__16: true;
@uname__17: #165b16;
@bg-value: #165b16;
@bg-type: "color";
@bg-color-value: #165b16;
@bg-parallax: false;
@gradientBg: false;
@color2: #1ec5bf;
@overlay: true;
@overlayColor: #21b968;
@overlayColor2: #1ec5bf;
@overlayOpacity: 0.8;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 20px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(90deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.media-content .btn-bgr {
  z-index: 0;
}
.mbr-overlay {
  background: linear-gradient(90deg, @overlayColor, @overlayColor2);
}
h3 {
  color: #000000;
  font-weight: 300;
}
p {
  color: #464646;
}
h2 {
  color: #000000;
}
.media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  & when (@reverseContent) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
.mbr-section-btn {
  margin-left: -0.8rem;
}
.mbr-figure {
  padding-right: 1rem;
  & when (@reverseContent) {
    padding-right: 1rem;
    padding-left: 4rem;
  }
  @media (min-width: 500px) {
    padding-left: 2rem;
  }
  @media (max-width: 499px) {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  @media (max-width: 991px) {
    padding-left: 0;
    padding-right: 0;
  }
}
.media-container-row {
  & when (@reverseContent) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
}
.mbr-text {
  @media (max-width: 767px) {
    text-align: center;
  }
}
P {
  color: #ffffff;
}
}

.cid-tzv4lbChBa {
@fullScreen: false;
@paddingTop: 2;
@paddingBottom: 2;
@mediaSize: 200;
@showTitle: false;
@showSubtitle: true;
@showText: false;
@showButtons: false;
@reverseContent: false;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/background4.jpg";
@uname__16: true;
@uname__17: #2e3d2a;
@bg-value: #2e3d2a;
@bg-type: "color";
@bg-color-value: #2e3d2a;
@bg-parallax: false;
@gradientBg: false;
@color2: #1ec5bf;
@overlay: true;
@overlayColor: #21b968;
@overlayColor2: #1ec5bf;
@overlayOpacity: 0.8;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 20px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(90deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.media-content .btn-bgr {
  z-index: 0;
}
.mbr-overlay {
  background: linear-gradient(90deg, @overlayColor, @overlayColor2);
}
h3 {
  color: #000000;
  font-weight: 300;
}
p {
  color: #464646;
}
h2 {
  color: #000000;
}
.media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  & when (@reverseContent) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
.mbr-section-btn {
  margin-left: -0.8rem;
}
.mbr-figure {
  padding-right: 1rem;
  & when (@reverseContent) {
    padding-right: 1rem;
    padding-left: 4rem;
  }
  @media (min-width: 500px) {
    padding-left: 2rem;
  }
  @media (max-width: 499px) {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  @media (max-width: 991px) {
    padding-left: 0;
    padding-right: 0;
  }
}
.media-container-row {
  & when (@reverseContent) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
}
.mbr-text {
  @media (max-width: 767px) {
    text-align: center;
  }
}
.mbr-section-subtitle {
  color: #ffffff;
}
}

.cid-tzf7mzRp4g {
@fullScreen: false;
@paddingTop: 2;
@paddingBottom: 2;
@mediaSize: 200;
@showTitle: false;
@showSubtitle: true;
@showText: false;
@showButtons: false;
@reverseContent: true;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/background4.jpg";
@uname__16: true;
@uname__17: #196435;
@bg-value: #196435;
@bg-type: "color";
@bg-color-value: #196435;
@bg-parallax: false;
@gradientBg: false;
@color2: #1ec5bf;
@overlay: true;
@overlayColor: #21b968;
@overlayColor2: #1ec5bf;
@overlayOpacity: 0.8;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 20px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(90deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.media-content .btn-bgr {
  z-index: 0;
}
.mbr-overlay {
  background: linear-gradient(90deg, @overlayColor, @overlayColor2);
}
h3 {
  color: #000000;
  font-weight: 300;
}
p {
  color: #464646;
}
h2 {
  color: #000000;
}
.media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  & when (@reverseContent) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
.mbr-section-btn {
  margin-left: -0.8rem;
}
.mbr-figure {
  padding-right: 1rem;
  & when (@reverseContent) {
    padding-right: 1rem;
    padding-left: 4rem;
  }
  @media (min-width: 500px) {
    padding-left: 2rem;
  }
  @media (max-width: 499px) {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  @media (max-width: 991px) {
    padding-left: 0;
    padding-right: 0;
  }
}
.media-container-row {
  & when (@reverseContent) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
}
.mbr-text {
  @media (max-width: 767px) {
    text-align: center;
  }
}
.mbr-section-subtitle {
  color: #ffffff;
}
}

.cid-txSKw4N5eF {
@fullScreen: false;
@paddingTop: 2;
@paddingBottom: 2;
@mediaSize: 200;
@showTitle: false;
@showSubtitle: true;
@showText: false;
@showButtons: false;
@reverseContent: false;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/background4.jpg";
@uname__16: true;
@uname__17: #2e3d2a;
@bg-value: #2e3d2a;
@bg-type: "color";
@bg-color-value: #2e3d2a;
@bg-parallax: false;
@gradientBg: false;
@color2: #1ec5bf;
@overlay: true;
@overlayColor: #21b968;
@overlayColor2: #1ec5bf;
@overlayOpacity: 0.8;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 20px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(90deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.media-content .btn-bgr {
  z-index: 0;
}
.mbr-overlay {
  background: linear-gradient(90deg, @overlayColor, @overlayColor2);
}
h3 {
  color: #000000;
  font-weight: 300;
}
p {
  color: #464646;
}
h2 {
  color: #000000;
}
.media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  & when (@reverseContent) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
.mbr-section-btn {
  margin-left: -0.8rem;
}
.mbr-figure {
  padding-right: 1rem;
  & when (@reverseContent) {
    padding-right: 1rem;
    padding-left: 4rem;
  }
  @media (min-width: 500px) {
    padding-left: 2rem;
  }
  @media (max-width: 499px) {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  @media (max-width: 991px) {
    padding-left: 0;
    padding-right: 0;
  }
}
.media-container-row {
  & when (@reverseContent) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
}
.mbr-text {
  @media (max-width: 767px) {
    text-align: center;
  }
}
.mbr-section-subtitle {
  color: #ffffff;
}
}

.cid-txAcxprGXL {
@fullScreen: false;
@paddingTop: 2;
@paddingBottom: 2;
@mediaSize: 200;
@showTitle: false;
@showSubtitle: true;
@showText: false;
@showButtons: false;
@reverseContent: true;
@uname__15: "file:///E:/AYUS/Projects/Websites/Negeriku.nl/1016/id/assets/images/background4.jpg";
@uname__16: true;
@uname__17: #056105;
@bg-value: #056105;
@bg-type: "color";
@bg-color-value: #056105;
@bg-parallax: false;
@gradientBg: false;
@color2: #1ec5bf;
@overlay: true;
@overlayColor: #21b968;
@overlayColor2: #1ec5bf;
@overlayOpacity: 0.8;

& when not (@fullScreen) {
  padding-top: (@paddingTop * 20px);
  padding-bottom: (@paddingBottom * 15px);
}
& when (@bg-type = 'color') {
  background-color: @bg-value;
  & when (@gradientBg) {
    background: linear-gradient(90deg, @bg-value, @color2);
  }
}
& when (@bg-type = 'image') {
  background-image: url(../../../@bg-value);
}
.media-content .btn-bgr {
  z-index: 0;
}
.mbr-overlay {
  background: linear-gradient(90deg, @overlayColor, @overlayColor2);
}
h3 {
  color: #000000;
  font-weight: 300;
}
p {
  color: #464646;
}
h2 {
  color: #000000;
}
.media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  & when (@reverseContent) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
.mbr-section-btn {
  margin-left: -0.8rem;
}
.mbr-figure {
  padding-right: 1rem;
  & when (@reverseContent) {
    padding-right: 1rem;
    padding-left: 4rem;
  }
  @media (min-width: 500px) {
    padding-left: 2rem;
  }
  @media (max-width: 499px) {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  @media (max-width: 991px) {
    padding-left: 0;
    padding-right: 0;
  }
}
.media-container-row {
  & when (@reverseContent) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
}
.mbr-text {
  @media (max-width: 767px) {
    text-align: center;
  }
}
.mbr-section-subtitle {
  color: #ffffff;
}
}

.cid-twkjXGYYrj {
@paddingTop: 1;
@paddingBottom: 1;
@bgColor: #165b16;

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
background-color: @bgColor;
.block-text {
  color: #ffffff;
}
}

.cid-twkh4tqdAX {
@fullWidth: true;
@paddingTop: 0;
@paddingBottom: 2;
@tagsColor: #4284df;
@overlayColor: #056105;
@gradOverlay: false;
@overlayColor2: #056105;
@overlayOpacity: 0.7;
@bgColor: #165b16;
@gallery__spacing: 1;
@gallery__showBullets: false;
@gallery__showText: false;
@gallery__filter: false;

padding-top: (@paddingTop * 15px);
padding-bottom: (@paddingBottom * 15px);
background-color: @bgColor;
overflow: hidden;
box-sizing: border-box;
.mbr-slider .carousel-control {
  background: #1b1b1b;
}
.mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: @overlayColor;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  & when (@gradOverlay) {
    background: linear-gradient(to left, @overlayColor, @overlayColor2) !important;
  }
}
.mbr-gallery-item > div:hover {
  .mbr-gallery-title::before {
    background: transparent !important;
  }
  &:before {
    opacity: @overlayOpacity !important;
  }
}
.mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
  &:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: @overlayColor !important;
    opacity: @overlayOpacity;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
    & when (@gradOverlay) {
      background: linear-gradient(to left, @overlayColor, @overlayColor2) !important;
    }
  }
}
ul {
  font-size: 0;
}
.mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: @tagsColor;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px @tagsColor solid;
  border-radius: 0 !important;
}
.mbr-gallery-filter ul li {
  padding: 0;
}
}

.cid-ttuBi2KULz {
@paddingTop: 1;
@paddingBottom: 1;
@showMenu: false;
@showCopyright: true;
@iconsColor: #ffffff;
@iconsCount: 0;
@uname__9: "file:///C:/Users/media/AppData/Local/Mobirise.com/Mobirise/mediaperkantas_0040gmail_002ecom/addons/agencym4/components/footer2/../_images/background1.jpg";
@uname__10: true;
@uname__11: #093309;
@bg-value: #093309;
@bg-type: "color";
@bg-color-value: #093309;
@bg-parallax: false;
@overlay: true;
@overlayColor: #7cd1f6;
@overlayOpacity: 0.5;

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);
}
p {
  text-align: center;
}
.mbr-iconfont-social {
  font-size: 1.5rem;
  color: @iconsColor;
}
.btn-underline:hover {
  color: #505050;
}
.btn-underline:before {
  background-color: #505050;
}
.social-list {
  a:focus {
    text-decoration: none;
  }
}
.text-copyright {
  width: 100%;
}
.img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.logo-footer {
  line-height: normal;
}
.copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.mbr-section-btn {
  font-size: 16px;
  a {
    margin: 0 1rem 0.5rem;
  }
}
}
.cid-twiUlcWThg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twiUlcWThg .nav-item,
.cid-twiUlcWThg .nav-link,
.cid-twiUlcWThg .navbar-caption {
  font-weight: normal;
}
.cid-twiUlcWThg .nav-item:focus,
.cid-twiUlcWThg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-twiUlcWThg .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-twiUlcWThg .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twiUlcWThg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-twiUlcWThg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-twiUlcWThg .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-twiUlcWThg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-twiUlcWThg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twiUlcWThg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twiUlcWThg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twiUlcWThg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #093309;
  background: none;
}
.cid-twiUlcWThg .navbar.opened {
  transition: all .3s;
  background: #093309 !important;
}
.cid-twiUlcWThg .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-twiUlcWThg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-twiUlcWThg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twiUlcWThg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twiUlcWThg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-twiUlcWThg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-twiUlcWThg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twiUlcWThg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-twiUlcWThg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twiUlcWThg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twiUlcWThg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-twiUlcWThg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twiUlcWThg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twiUlcWThg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-twiUlcWThg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twiUlcWThg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-twiUlcWThg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-twiUlcWThg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-twiUlcWThg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-twiUlcWThg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-twiUlcWThg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-twiUlcWThg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-twiUlcWThg .navbar.navbar-short {
  background: #093309 !important;
  min-height: 60px;
}
.cid-twiUlcWThg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-twiUlcWThg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-twiUlcWThg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twiUlcWThg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twiUlcWThg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twiUlcWThg .dropdown-item.active,
.cid-twiUlcWThg .dropdown-item:active {
  background-color: transparent;
}
.cid-twiUlcWThg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twiUlcWThg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twiUlcWThg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #093309;
}
.cid-twiUlcWThg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twiUlcWThg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twiUlcWThg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-twiUlcWThg .navbar-buttons {
  text-align: center;
}
.cid-twiUlcWThg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-twiUlcWThg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twiUlcWThg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-twiUlcWThg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-twiUlcWThg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-twiUlcWThg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-twiUlcWThg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twiUlcWThg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-twiUlcWThg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-twiUlcWThg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twiUlcWThg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-twiUlcWThg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-twiUlcWThg .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-twiUlcWThg .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-twiUlcWThg .soc-item {
  margin: .5rem .3rem;
}
.cid-twiUlcWThg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-twiUlcWThg .navbar {
    height: 77px;
  }
  .cid-twiUlcWThg .navbar.opened {
    height: auto;
  }
  .cid-twiUlcWThg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twiUldPTCU {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/lid01-1931x1087.jpg");
}
.cid-twiUldPTCU .mbr-overlay {
  background: linear-gradient(90deg, #2e3d2a, #056105);
}
.cid-twiUldPTCU h4,
.cid-twiUldPTCU h5 {
  text-align: center;
}
.cid-twiUldPTCU p {
  text-align: center;
}
.cid-twiUldPTCU .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-twiUldPTCU .card-img {
  font-size: 3rem;
}
.cid-twiUldPTCU .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-twiUldPTCU logo {
  margin-bottom: 35px;
}
.cid-twiXUv8Lia {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #165b16;
}
.cid-twiXUv8Lia .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  border-radius: 6px;
}
.cid-twiXUv8Lia .card-wrapper:hover .ico-wrap {
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}
.cid-twiXUv8Lia p {
  line-height: 1.6;
}
.cid-twiXUv8Lia .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-twiXUv8Lia .ico {
  height: 40px;
  width: 40px;
  background: #333333;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  margin: 0 3px;
  opacity: 0.9;
}
.cid-twiXUv8Lia .ico-wrap {
  position: absolute;
  left: 50%;
  display: flex;
  top: 50%;
  margin: auto;
  z-index: 100;
  transition: all 0.3s;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
}
.cid-twiXUv8Lia .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.cid-twiXUv8Lia .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 100%;
}
.cid-twiXUv8Lia img {
  transition: all 0.3s;
}
.cid-twiXUv8Lia .card-box {
  padding: 1rem;
}
.cid-twiXUv8Lia .mbr-section-title {
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}
.cid-twiXUv8Lia .card-box > p,
.cid-twiXUv8Lia .mbr-section-btn {
  color: #9e9e9e;
  text-align: center;
}
.cid-twiXUv8Lia .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
@media (max-width: 576px) {
  .cid-twiXUv8Lia .ico-wrap {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}
.cid-twiWYCal4y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #165b16;
}
.cid-twiWYCal4y .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  border-radius: 6px;
}
.cid-twiWYCal4y .card-wrapper:hover .ico-wrap {
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}
.cid-twiWYCal4y p {
  line-height: 1.6;
}
.cid-twiWYCal4y .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-twiWYCal4y .ico {
  height: 40px;
  width: 40px;
  background: #333333;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  margin: 0 3px;
  opacity: 0.9;
}
.cid-twiWYCal4y .ico-wrap {
  position: absolute;
  left: 50%;
  display: flex;
  top: 50%;
  margin: auto;
  z-index: 100;
  transition: all 0.3s;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
}
.cid-twiWYCal4y .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.cid-twiWYCal4y .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 100%;
}
.cid-twiWYCal4y img {
  transition: all 0.3s;
}
.cid-twiWYCal4y .card-box {
  padding: 1rem;
}
.cid-twiWYCal4y .mbr-section-title {
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}
.cid-twiWYCal4y .card-box > p,
.cid-twiWYCal4y .mbr-section-btn {
  color: #c1c1c1;
  text-align: center;
}
.cid-twiWYCal4y .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
@media (max-width: 576px) {
  .cid-twiWYCal4y .ico-wrap {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}
.cid-twiUleNujO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #093309;
}
.cid-twiUleNujO p {
  text-align: center;
}
.cid-twiUleNujO .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-twiUleNujO .btn-underline:hover {
  color: #505050;
}
.cid-twiUleNujO .btn-underline:before {
  background-color: #505050;
}
.cid-twiUleNujO .social-list a:focus {
  text-decoration: none;
}
.cid-twiUleNujO .text-copyright {
  width: 100%;
}
.cid-twiUleNujO .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-twiUleNujO .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-twiUleNujO .logo-footer {
  line-height: normal;
}
.cid-twiUleNujO .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-twiUleNujO .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twiUleNujO .mbr-section-btn {
  font-size: 16px;
}
.cid-twiUleNujO .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-twj0aDjgJa .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twj0aDjgJa .nav-item,
.cid-twj0aDjgJa .nav-link,
.cid-twj0aDjgJa .navbar-caption {
  font-weight: normal;
}
.cid-twj0aDjgJa .nav-item:focus,
.cid-twj0aDjgJa .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-twj0aDjgJa .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-twj0aDjgJa .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twj0aDjgJa .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-twj0aDjgJa .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-twj0aDjgJa .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-twj0aDjgJa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-twj0aDjgJa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twj0aDjgJa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twj0aDjgJa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twj0aDjgJa .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #093309;
  background: none;
}
.cid-twj0aDjgJa .navbar.opened {
  transition: all .3s;
  background: #093309 !important;
}
.cid-twj0aDjgJa .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-twj0aDjgJa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-twj0aDjgJa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twj0aDjgJa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twj0aDjgJa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-twj0aDjgJa .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-twj0aDjgJa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twj0aDjgJa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-twj0aDjgJa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twj0aDjgJa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twj0aDjgJa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-twj0aDjgJa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twj0aDjgJa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twj0aDjgJa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-twj0aDjgJa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twj0aDjgJa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-twj0aDjgJa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-twj0aDjgJa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-twj0aDjgJa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-twj0aDjgJa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-twj0aDjgJa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-twj0aDjgJa .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-twj0aDjgJa .navbar.navbar-short {
  background: #093309 !important;
  min-height: 60px;
}
.cid-twj0aDjgJa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-twj0aDjgJa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-twj0aDjgJa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twj0aDjgJa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twj0aDjgJa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twj0aDjgJa .dropdown-item.active,
.cid-twj0aDjgJa .dropdown-item:active {
  background-color: transparent;
}
.cid-twj0aDjgJa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twj0aDjgJa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twj0aDjgJa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #093309;
}
.cid-twj0aDjgJa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twj0aDjgJa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twj0aDjgJa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-twj0aDjgJa .navbar-buttons {
  text-align: center;
}
.cid-twj0aDjgJa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-twj0aDjgJa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twj0aDjgJa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-twj0aDjgJa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-twj0aDjgJa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-twj0aDjgJa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-twj0aDjgJa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twj0aDjgJa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-twj0aDjgJa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-twj0aDjgJa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twj0aDjgJa .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-twj0aDjgJa a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-twj0aDjgJa .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-twj0aDjgJa .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-twj0aDjgJa .soc-item {
  margin: .5rem .3rem;
}
.cid-twj0aDjgJa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-twj0aDjgJa .navbar {
    height: 77px;
  }
  .cid-twj0aDjgJa .navbar.opened {
    height: auto;
  }
  .cid-twj0aDjgJa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twj0aE6kUG {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/lid01-1931x1087.jpg");
}
.cid-twj0aE6kUG .mbr-overlay {
  background: linear-gradient(90deg, #2e3d2a, #056105);
}
.cid-twj0aE6kUG h4,
.cid-twj0aE6kUG h5 {
  text-align: center;
}
.cid-twj0aE6kUG p {
  text-align: center;
}
.cid-twj0aE6kUG .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-twj0aE6kUG .card-img {
  font-size: 3rem;
}
.cid-twj0aE6kUG .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-twj0aE6kUG logo {
  margin-bottom: 35px;
}
.cid-twj0aEXfBq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #093309;
}
.cid-twj0aEXfBq p {
  text-align: center;
}
.cid-twj0aEXfBq .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-twj0aEXfBq .btn-underline:hover {
  color: #505050;
}
.cid-twj0aEXfBq .btn-underline:before {
  background-color: #505050;
}
.cid-twj0aEXfBq .social-list a:focus {
  text-decoration: none;
}
.cid-twj0aEXfBq .text-copyright {
  width: 100%;
}
.cid-twj0aEXfBq .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-twj0aEXfBq .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-twj0aEXfBq .logo-footer {
  line-height: normal;
}
.cid-twj0aEXfBq .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-twj0aEXfBq .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twj0aEXfBq .mbr-section-btn {
  font-size: 16px;
}
.cid-twj0aEXfBq .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-twjP7SWPZM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twjP7SWPZM .nav-item,
.cid-twjP7SWPZM .nav-link,
.cid-twjP7SWPZM .navbar-caption {
  font-weight: normal;
}
.cid-twjP7SWPZM .nav-item:focus,
.cid-twjP7SWPZM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-twjP7SWPZM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-twjP7SWPZM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twjP7SWPZM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-twjP7SWPZM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-twjP7SWPZM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-twjP7SWPZM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-twjP7SWPZM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twjP7SWPZM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twjP7SWPZM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twjP7SWPZM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #093309;
  background: none;
}
.cid-twjP7SWPZM .navbar.opened {
  transition: all .3s;
  background: #093309 !important;
}
.cid-twjP7SWPZM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-twjP7SWPZM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-twjP7SWPZM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twjP7SWPZM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twjP7SWPZM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-twjP7SWPZM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-twjP7SWPZM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twjP7SWPZM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-twjP7SWPZM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twjP7SWPZM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twjP7SWPZM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-twjP7SWPZM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twjP7SWPZM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twjP7SWPZM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-twjP7SWPZM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twjP7SWPZM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-twjP7SWPZM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-twjP7SWPZM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-twjP7SWPZM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-twjP7SWPZM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-twjP7SWPZM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-twjP7SWPZM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-twjP7SWPZM .navbar.navbar-short {
  background: #093309 !important;
  min-height: 60px;
}
.cid-twjP7SWPZM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-twjP7SWPZM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-twjP7SWPZM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twjP7SWPZM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twjP7SWPZM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twjP7SWPZM .dropdown-item.active,
.cid-twjP7SWPZM .dropdown-item:active {
  background-color: transparent;
}
.cid-twjP7SWPZM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twjP7SWPZM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twjP7SWPZM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #093309;
}
.cid-twjP7SWPZM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twjP7SWPZM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twjP7SWPZM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-twjP7SWPZM .navbar-buttons {
  text-align: center;
}
.cid-twjP7SWPZM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-twjP7SWPZM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twjP7SWPZM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-twjP7SWPZM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-twjP7SWPZM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-twjP7SWPZM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-twjP7SWPZM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twjP7SWPZM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-twjP7SWPZM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-twjP7SWPZM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twjP7SWPZM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-twjP7SWPZM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-twjP7SWPZM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-twjP7SWPZM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-twjP7SWPZM .soc-item {
  margin: .5rem .3rem;
}
.cid-twjP7SWPZM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-twjP7SWPZM .navbar {
    height: 77px;
  }
  .cid-twjP7SWPZM .navbar.opened {
    height: auto;
  }
  .cid-twjP7SWPZM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twjP7Thf3l {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/lid01-1931x1087.jpg");
}
.cid-twjP7Thf3l .mbr-overlay {
  background: linear-gradient(90deg, #2e3d2a, #056105);
}
.cid-twjP7Thf3l h4,
.cid-twjP7Thf3l h5 {
  text-align: center;
}
.cid-twjP7Thf3l p {
  text-align: center;
}
.cid-twjP7Thf3l .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-twjP7Thf3l .card-img {
  font-size: 3rem;
}
.cid-twjP7Thf3l .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-twjP7Thf3l logo {
  margin-bottom: 35px;
}
.cid-twk5ZbAkNJ .modal-body .close {
  background: #1b1b1b;
}
.cid-twk5ZbAkNJ .modal-body .close span {
  font-style: normal;
}
.cid-twk5ZbAkNJ .carousel-inner > .active,
.cid-twk5ZbAkNJ .carousel-inner > .next,
.cid-twk5ZbAkNJ .carousel-inner > .prev {
  display: flex;
}
.cid-twk5ZbAkNJ .carousel-control .icon-next,
.cid-twk5ZbAkNJ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-twk5ZbAkNJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-twk5ZbAkNJ .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-twk5ZbAkNJ .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-twk5ZbAkNJ .boxed-slider > div {
  position: relative;
}
.cid-twk5ZbAkNJ .container img {
  width: 100%;
}
.cid-twk5ZbAkNJ .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-twk5ZbAkNJ .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-twk5ZbAkNJ .mbr-table-cell {
  padding: 0;
}
.cid-twk5ZbAkNJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-twk5ZbAkNJ .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-twk5ZbAkNJ .mbr-overlay {
  z-index: 1;
}
.cid-twk5ZbAkNJ .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-twk5ZbAkNJ .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-twk5ZbAkNJ .carousel-item.active.right,
.cid-twk5ZbAkNJ .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-twk5ZbAkNJ .carousel-item.active.left,
.cid-twk5ZbAkNJ .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-twk5ZbAkNJ .carousel-item.active,
.cid-twk5ZbAkNJ .carousel-item.next.left,
.cid-twk5ZbAkNJ .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-twk5ZbAkNJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-indicators li.active,
.cid-twk5ZbAkNJ .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-indicators li::after,
.cid-twk5ZbAkNJ .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-twk5ZbAkNJ .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-twk5ZbAkNJ .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-twk5ZbAkNJ .mbr-slider > .container img {
  width: 100%;
}
.cid-twk5ZbAkNJ .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-twk5ZbAkNJ .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-twk5ZbAkNJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-twk5ZbAkNJ .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-twk5ZbAkNJ .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-twk5ZbAkNJ .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-twk5ZbAkNJ .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-twk5ZbAkNJ .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-twk5ZbAkNJ .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-twk5ZbAkNJ .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-twk5ZbAkNJ .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-twk5ZbAkNJ .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-twk5ZbAkNJ .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-twjP7TMezZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #093309;
}
.cid-twjP7TMezZ p {
  text-align: center;
}
.cid-twjP7TMezZ .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-twjP7TMezZ .btn-underline:hover {
  color: #505050;
}
.cid-twjP7TMezZ .btn-underline:before {
  background-color: #505050;
}
.cid-twjP7TMezZ .social-list a:focus {
  text-decoration: none;
}
.cid-twjP7TMezZ .text-copyright {
  width: 100%;
}
.cid-twjP7TMezZ .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-twjP7TMezZ .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-twjP7TMezZ .logo-footer {
  line-height: normal;
}
.cid-twjP7TMezZ .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-twjP7TMezZ .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twjP7TMezZ .mbr-section-btn {
  font-size: 16px;
}
.cid-twjP7TMezZ .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
