@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);





body {
  font-family: Poppins;
}

.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}

.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}

.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}

.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}

/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc(1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-2 {
    font-size: 1.2rem;
    font-size: calc(1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-4 {
    font-size: 0.7rem;
    font-size: calc(0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }

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

/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}

.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}

.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}

.bg-primary {
  background-color: #4284df !important;
}

.bg-success {
  background-color: #9473d2 !important;
}

.bg-info {
  background-color: #fcff50 !important;
}

.bg-warning {
  background-color: #b69e6e !important;
}

.bg-danger {
  background-color: #ffffff !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4284df !important;
  border-color: #4284df !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}

.btn-primary:before {
  background-color: #1f5eb6 !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f5eb6 !important;
  border-color: #1f5eb6 !important;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}

.btn-secondary:before {
  background-color: #eb3934 !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}

.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #fcff50 !important;
  border-color: #fcff50 !important;
  color: #4f5000 !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #4f5000 !important;
  background-color: #fcff50 !important;
  border-color: #fcff50 !important;
}

.btn-info:before {
  background-color: #fbff03 !important;
}

.btn-info.disabled,
.btn-info:disabled {
  color: #4f5000 !important;
  background-color: #fbff03 !important;
  border-color: #fbff03 !important;
}

.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}

.btn-success:before {
  background-color: #693cbc !important;
}

.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}

.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b69e6e !important;
  border-color: #b69e6e !important;
  color: #ffffff !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #b69e6e !important;
  border-color: #b69e6e !important;
}

.btn-warning:before {
  background-color: #8f7848 !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #8f7848 !important;
  border-color: #8f7848 !important;
}

.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-danger:before {
  background-color: #d9d9d9 !important;
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}

.btn-white {
  color: #333333 !important;
}

.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-white:before {
  background-color: #d9d9d9 !important;
}

.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}

.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-black:before {
  background-color: #0d0d0d !important;
}

.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}

.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1b53a0;
  color: #1b53a0;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #4284df;
}

.btn-primary-outline:before {
  background-color: #4284df;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}

.btn-secondary-outline:before {
  background-color: #f27d7a;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #e5e900;
  color: #e5e900;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #4f5000;
  border-color: #fcff50;
}

.btn-info-outline:before {
  background-color: #fcff50;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #fcff50 !important;
  border-color: #fcff50 !important;
}

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}

.btn-success-outline:before {
  background-color: #9473d2;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}

.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #7e6940;
  color: #7e6940;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #b69e6e;
}

.btn-warning-outline:before {
  background-color: #b69e6e;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b69e6e !important;
  border-color: #b69e6e !important;
}

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080;
  border-color: #ffffff;
}

.btn-danger-outline:before {
  background-color: #ffffff;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}

.btn-black-outline:before {
  background-color: #333333;
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}

.btn-white-outline: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);
}

.btn-bgr span {
  position: relative;
  z-index: 12;
}

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

.btn-bgr:hover:before {
  right: -2px;
}

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

.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4284df;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}

.btn-underline:hover:before {
  width: 100%;
}

.text-primary {
  color: #4284df !important;
}

.text-secondary {
  color: #f27d7a !important;
}

.text-success {
  color: #9473d2 !important;
}

.text-info {
  color: #fcff50 !important;
}

.text-warning {
  color: #b69e6e !important;
}

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

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

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

a.text-primary:hover,
a.text-primary:focus {
  color: #1b53a0 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #e5e900 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #7e6940 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}

a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}

a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}

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

.alert-info {
  background-color: #fcff50;
}

.alert-warning {
  background-color: #b69e6e;
}

.alert-danger {
  background-color: #ffffff;
}

.mbr-gallery-filter li.active .btn {
  background-color: #4284df;
  border-color: #4284df;
  color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}

a,
a:hover {
  color: #4284df;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f6fd;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e1d7c3;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}

/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}

blockquote {
  border-color: #4284df;
}

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

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

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

/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #4284df;
}

.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #4284df;
}

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

.display-2>.mbr-iconfont {
  font-size: 2.4rem;
}

.display-4>.mbr-iconfont {
  font-size: 1.4rem;
}

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

.display-7>.mbr-iconfont {
  font-size: 1.696rem;
}

.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4284df;
  color: #ffffff;
}

.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: #4284df;
  border-bottom-color: #4284df;
}

.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: #ffffff !important;
  background-color: #4284df !important;
  box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
  color: #000000 !important;
  background: #f27d7a !important;
  box-shadow: none !important;
}

.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%);
  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='%234284df' %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;
}

.cid-tqYXzR2Hwl .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}

@media (min-width: 992px) {
  .cid-tqYXzR2Hwl .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}

.cid-tqYXzR2Hwl .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}

.cid-tqYXzR2Hwl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tqYXzR2Hwl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tqYXzR2Hwl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tqYXzR2Hwl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tqYXzR2Hwl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tqYXzR2Hwl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tqYXzR2Hwl .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}

.cid-tqYXzR2Hwl a {
  font-style: normal;
}

.cid-tqYXzR2Hwl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}

.cid-tqYXzR2Hwl .nav-item a {
  padding: 0.4rem 0 !important;
}

.cid-tqYXzR2Hwl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-tqYXzR2Hwl .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}

.cid-tqYXzR2Hwl .content-text {
  margin-bottom: 0;
}

.cid-tqYXzR2Hwl .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 992px) {
  .cid-tqYXzR2Hwl .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }

  .cid-tqYXzR2Hwl .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }

  .cid-tqYXzR2Hwl .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}

@media (max-width: 991px) {
  .cid-tqYXzR2Hwl .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}

.cid-tqYXzR2Hwl .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}

.cid-tqYXzR2Hwl .display-4>.mbr-iconfont {
  font-size: 1.43em;
}

.cid-tqYXzR2Hwl .display-4>.btn>.mbr-iconfont {
  font-size: 1.43em;
}

.cid-tqYXzR2Hwl .nav-dropdown .dropdown-item {
  font-weight: 400;
}

.cid-tqYXzR2Hwl .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.cid-tqYXzR2Hwl .nav-dropdown .link {
  font-weight: 400;
}

.cid-tqYXzR2Hwl .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}

.cid-tqYXzR2Hwl .content-right-side {
  text-align: center;
}

@media (max-width: 575px) {
  .cid-tqYXzR2Hwl .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }

  .cid-tqYXzR2Hwl .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}

.cid-tqYXzR2Hwl .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}

.cid-tqYXzR2Hwl .menu-content-top.show {
  display: block;
}

.cid-tqYXzR2Hwl .content-right-side .content-link {
  margin-left: 1rem;
}

.cid-tqYXzR2Hwl .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}

@media (max-width: 991px) {
  .cid-tqYXzR2Hwl .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }

  .cid-tqYXzR2Hwl .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }

  .cid-tqYXzR2Hwl .dropdown-item:before {
    display: none;
  }

  .cid-tqYXzR2Hwl .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cid-tqYXzR2Hwl .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }

  .cid-tqYXzR2Hwl img {
    height: 3.8rem !important;
  }

  .cid-tqYXzR2Hwl .btn {
    display: flex;
  }

  .cid-tqYXzR2Hwl button.navbar-toggler {
    display: block;
  }

  .cid-tqYXzR2Hwl .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }

  .cid-tqYXzR2Hwl .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .cid-tqYXzR2Hwl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tqYXzR2Hwl .navbar-collapse.collapsing,
  .cid-tqYXzR2Hwl .navbar-collapse.show {
    display: block !important;
  }

  .cid-tqYXzR2Hwl .navbar-collapse.collapsing .navbar-nav,
  .cid-tqYXzR2Hwl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tqYXzR2Hwl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tqYXzR2Hwl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }

  .cid-tqYXzR2Hwl .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tqYXzR2Hwl .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tqYXzR2Hwl .navbar-collapse.collapsing .navbar-buttons,
  .cid-tqYXzR2Hwl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tqYXzR2Hwl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tqYXzR2Hwl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tqYXzR2Hwl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tqYXzR2Hwl .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tqYXzR2Hwl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tqYXzR2Hwl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 992px) {
  .cid-tqYXzR2Hwl .navbar .menu-content-top {
    display: block;
  }

  .cid-tqYXzR2Hwl .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .cid-tqYXzR2Hwl .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }

  .cid-tqYXzR2Hwl .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .cid-tqYXzR2Hwl .menu-bottom {
    display: flex;
  }

  .cid-tqYXzR2Hwl .navbar {
    display: block;
    padding: 0;
  }

  .cid-tqYXzR2Hwl .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .cid-tqYXzR2Hwl .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }

  .cid-tqYXzR2Hwl .navbar-toggler {
    display: none;
  }
}

.cid-tqYXzR2Hwl .navbar-short .menu-content-top {
  border: none;
}

.cid-tqYXzR2Hwl .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tqYXzR2Hwl .btn .mbr-iconfont {
  font-size: 1.2em;
}

.cid-tqYXzR2Hwl .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}

.cid-tqYXzR2Hwl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}

.cid-tqYXzR2Hwl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tqYXzR2Hwl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tqYXzR2Hwl .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

@media (max-width: 991px) {
  .cid-tqYXzR2Hwl .dropdown .dropdown-menu {
    overflow: hidden;
  }
}

.cid-tqYXzR2Hwl .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.cid-tqYXzR2Hwl .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}

.cid-tqYXzR2Hwl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.cid-tqYXzR2Hwl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}

.cid-tqYXzR2Hwl .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-tqYXzR2Hwl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tqYXzR2Hwl .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-tqYXzR2Hwl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}

.cid-tqYXzR2Hwl .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tqYXzR2Hwl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tqYXzR2Hwl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tqYXzR2Hwl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tqYXzR2Hwl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tqYXzR2Hwl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}

.cid-tqYXzR2Hwl button.navbar-toggler:focus {
  outline: none;
}

.cid-tqYXzR2Hwl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5c45b;
}

.cid-tqYXzR2Hwl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tqYXzR2Hwl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tqYXzR2Hwl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tqYXzR2Hwl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tqYXzR2Hwl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tqYXzR2Hwl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tqYXzR2Hwl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tqYXzR2Hwl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tqYXzR2Hwl .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}

.cid-tqYXzR2Hwl .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tqYXzR2Hwl .collapsed .menu-logo {
  margin-right: 0;
}

.cid-tqYXzR2Hwl .collapsed .btn {
  display: flex;
}

.cid-tqYXzR2Hwl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tqYXzR2Hwl .collapsed .navbar-collapse.collapsing,
.cid-tqYXzR2Hwl .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tqYXzR2Hwl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tqYXzR2Hwl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tqYXzR2Hwl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tqYXzR2Hwl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tqYXzR2Hwl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tqYXzR2Hwl .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tqYXzR2Hwl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tqYXzR2Hwl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tqYXzR2Hwl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tqYXzR2Hwl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .cid-tqYXzR2Hwl .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }

  .cid-tqYXzR2Hwl .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}

.cid-tqYXzR2Hwl .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}

.cid-tqYXzR2Hwl .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}

.cid-tqYXzR2Hwl .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}

.cid-tqYXzR2Hwl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}

.cid-tqYXzR2Hwl .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tqYXzR2Hwl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tqYXzR2Hwl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

.cid-tqYXzR2Hwl .collapsed .dropdown-item:before {
  display: none;
}

.cid-tqYXzR2Hwl .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.cid-tqYXzR2Hwl .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}

.cid-tqYXzR2Hwl .nav-link:focus {
  outline: none;
}

.cid-tqYXzR2Hwl .navbar-toggler {
  position: relative;
}

.cid-tqYXzR2Hwl .dropdown-item.active,
.cid-tqYXzR2Hwl .dropdown-item:active {
  background-color: #000000;
  color: auto;
}

.cid-tqYXzR2Hwl .nav-link:hover,
.cid-tqYXzR2Hwl .dropdown-item:hover {
  color: #e9ea88;
}

.cid-tqZ29UESgh {
  background-image: url("../../../assets/images/headerimg-2000x892.jpg");
}

.cid-tqZ29UESgh .mbr-text,
.cid-tqZ29UESgh .typed-text,
.cid-tqZ29UESgh .mbr-section-text {
  letter-spacing: 0.03rem;
}

.cid-tqZ29UESgh .btn {
  margin-left: 4px !important;
}

.cid-tqZ29UESgh .animated-element {
  color: #f5c45b;
}

.cid-tqZ29UESgh .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #f5c45b;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.cid-tqZ29UESgh .mbr-section-title {
  text-align: left;
}

.cid-tqZujXeb3O {
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}

.cid-tqZujXeb3O .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}

.cid-tqZujXeb3O .mbr-section-btn {
  margin-left: -0.8rem;
}

.cid-tqZujXeb3O .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}

.cid-tqZujXeb3O .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}

.cid-tqZujXeb3O .mbr-text,
.cid-tqZujXeb3O .mbr-section-btn {
  color: #000000;
}

.cid-tqZujXeb3O .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(180, 189, 146, 0.3);
  box-shadow: 0px 0px 30px rgba(180, 189, 146, 0.3);
  border-radius: .25rem;
}

.cid-tqZujXeb3O .counter-container {
  padding: 1rem 0;
  position: relative;
}

.cid-tqZujXeb3O .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.cid-tqZujXeb3O .counter-container ul li {
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .cid-tqZujXeb3O .main-row {
    margin: 0;
  }

  .cid-tqZujXeb3O .mbr-section-title,
  .cid-tqZujXeb3O .mbr-text,
  .cid-tqZujXeb3O .list,
  .cid-tqZujXeb3O .mbr-section-btn {
    text-align: left !important;
  }

  .cid-tqZujXeb3O .text-content {
    padding: 0;
  }
}

.cid-tqZujXeb3O H1 {
  color: #7b5a17;
}

.cid-tqYMkUGRNR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}

.cid-tqYMkUGRNR h4 {
  margin-bottom: 0;
}

.cid-tqYMkUGRNR .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(247, 170, 168, 0.35);
}

.cid-tqYMkUGRNR .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}

.cid-tqYMkUGRNR .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s !important;
}

.cid-tqYMkUGRNR .btn[class*="-outline"]:hover span {
  padding-left: 10px;
}

.cid-tqYMkUGRNR .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #4284df !important;
  box-shadow: none !important;
}

.cid-tqYMkUGRNR .btn[class*="-outline"]:active,
.cid-tqYMkUGRNR .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}

.cid-tqYMkUGRNR .card-box {
  padding-top: 2rem;
}

.cid-tqYMkUGRNR .card-wrapper {
  height: 100%;
}

.cid-tqYMkUGRNR .mbr-iconfont {
  padding-left: 0.4rem;
}

.cid-tqYMkUGRNR img {
  transition: all 0.3s;
  border-radius: 8px;
}

.cid-tqYMkUGRNR .card-title {
  color: #000000;
  text-align: left;
}

.cid-tqYMkUGRNR .main-title {
  color: #7b5a17;
}

.cid-tqYMkUGRNR .mbr-text,
.cid-tqYMkUGRNR .mbr-link-btn {
  color: #000000;
  text-align: left;
}

.cid-tqZB1pwVET {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}

.cid-tqZB1pwVET .mbr-text {
  line-height: 1.5;
  color: #333333;
}

.cid-tqZB1pwVET .mbr-section-title {
  text-align: left;
  color: #000000;
}

.cid-tqZB1pwVET img {
  width: 100%;
  padding-bottom: 1.5rem;
}

.cid-tqZB1pwVET .mbr-image-title {
  text-align: center;
  color: #656565;
}

.cid-tqZB1pwVET H1 {
  text-align: center;
  color: #7b5a17;
}

.cid-tqZB1pwVET H2 {
  color: #7b5a17;
}

.cid-tqYYUI86te {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #7b5a17);
}

.cid-tqYYUI86te .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}

.cid-tqYYUI86te h3 {
  color: #000000;
  font-weight: 300;
}

.cid-tqYYUI86te p {
  color: #464646;
}

.cid-tqYYUI86te h2 {
  color: #000000;
}

.cid-tqYYUI86te .counter-container {
  color: #767676;
}

.cid-tqYYUI86te .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}

.cid-tqYYUI86te .media-content {
  padding-right: 3rem;
  padding-left: 1.5rem;
}

@media (max-width: 991px) {
  .cid-tqYYUI86te .media-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.cid-tqYYUI86te .mbr-figure:last-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}

.cid-tqYYUI86te .list-counter {
  float: left;
  font-size: 2rem;
  margin-right: 1rem;
}

.cid-tqYYUI86te .half-list:nth-of-type(even) {
  display: inline-block;
  width: 48%;
  margin-left: 4%;
}

.cid-tqYYUI86te .half-list {
  text-align: left;
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin: 0;
}

@media (max-width: 767px) {
  .cid-tqYYUI86te .half-list {
    width: 100%;
    margin: 0;
  }

  .cid-tqYYUI86te .half-list:nth-of-type(even) {
    width: 100%;
    margin: 0;
  }
}

.cid-tqYYUI86te .mbr-figure {
  -ms-flex-item-align: initial;
  -ms-grid-row-align: initial;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 1rem;
  padding-left: 4rem;
}

@media (min-width: 992px) {
  .cid-tqYYUI86te .mbr-figure {
    padding-left: 1rem;
  }
}

@media (max-width: 991px) {
  .cid-tqYYUI86te .mbr-figure {
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.cid-tqYYUI86te .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .cid-tqYYUI86te .mbr-text {
    text-align: center;
  }
}

.cid-tqYYUI86te H4 {
  color: #7b5a17;
}

.cid-tqYYUI86te .content-list-title {
  color: #7b5a17;
}

.cid-tqYYUI86te P {
  color: #000000;
}

.cid-tqYYUI86te H2 {
  color: #7b5a17;
}

.cid-tqYYUI86te .mbr-section-subtitle {
  color: #432d06;
}

.cid-tqZECKfry4 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/footerbackground-1620x995.jpg");
}

.cid-tqZECKfry4 .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}

.cid-tqZECKfry4 h3 {
  color: #000000;
  font-weight: 300;
}

.cid-tqZECKfry4 p {
  color: #464646;
}

.cid-tqZECKfry4 h2 {
  color: #000000;
}

.cid-tqZECKfry4 .counter-container {
  color: #767676;
}

.cid-tqZECKfry4 .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}

.cid-tqZECKfry4 .media-content {
  padding-right: 3rem;
  padding-left: 1.5rem;
}

@media (max-width: 991px) {
  .cid-tqZECKfry4 .media-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.cid-tqZECKfry4 .mbr-figure:last-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}

.cid-tqZECKfry4 .list-counter {
  float: left;
  font-size: 2rem;
  margin-right: 1rem;
}

.cid-tqZECKfry4 .half-list:nth-of-type(even) {
  display: inline-block;
  width: 48%;
  margin-left: 4%;
}

.cid-tqZECKfry4 .half-list {
  text-align: left;
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin: 0;
}

@media (max-width: 767px) {
  .cid-tqZECKfry4 .half-list {
    width: 100%;
    margin: 0;
  }

  .cid-tqZECKfry4 .half-list:nth-of-type(even) {
    width: 100%;
    margin: 0;
  }
}

.cid-tqZECKfry4 .mbr-figure {
  -ms-flex-item-align: initial;
  -ms-grid-row-align: initial;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 1rem;
  padding-left: 4rem;
}

@media (min-width: 992px) {
  .cid-tqZECKfry4 .mbr-figure {
    padding-left: 1rem;
  }
}

@media (max-width: 991px) {
  .cid-tqZECKfry4 .mbr-figure {
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.cid-tqZECKfry4 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .cid-tqZECKfry4 .mbr-text {
    text-align: center;
  }
}

.cid-tqZECKfry4 H4 {
  color: #7b5a17;
}

.cid-tqZECKfry4 .content-list-title {
  color: #7b5a17;
}

.cid-tqZECKfry4 P {
  color: #000000;
}

.cid-tqZECKfry4 H2 {
  color: #7b5a17;
}

.cid-tqZECKfry4 .mbr-section-subtitle {
  color: #333333;
}

.cid-tr6Zh2EY9T {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #1b160e;
}

.cid-tr6Zh2EY9T .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}

.cid-tr6Zh2EY9T .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}

.cid-tr6Zh2EY9T .social-media ul li {
  padding: 4px;
  display: inline-block;
}

.cid-tr6Zh2EY9T .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}

.cid-tr6Zh2EY9T .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}

.cid-tr6Zh2EY9T .icon-transition span:hover {
  background-color: #efe4cd;
}

.cid-tr6Zh2EY9T .mbr-text {
  color: #f5c45b;
}

@media (max-width: 991px) {
  .cid-tr6Zh2EY9T .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 15px;
  }

  .cid-tr6Zh2EY9T .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 1.5rem;
  }

  .cid-tr6Zh2EY9T .mbr-text {
    margin-bottom: 1.5rem;
  }
}