body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 6rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #149dcc !important;
}
.bg-success {
  background-color: #ffda00 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #ffda00 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff99b3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe966 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  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: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !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='%23149dcc' %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-s00xNjcz6p {
  padding-top: 135px;
  padding-bottom: 120px;
  background-color: #efeeee;
}
.cid-s00xNjcz6p .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-s00xNjcz6p img {
  width: 100%;
}
.cid-s00xNjcz6p p {
  margin-top: 6rem;
}
.cid-s00xNjcz6p .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-s00xNjcz6p .content-wrapper {
  padding-top: 6rem;
}
.cid-s00xNjcz6p h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-s00xNjcz6p .content-wrapper {
    padding-top: 0rem;
  }
  .cid-s00xNjcz6p p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-s00xNjcz6p .back {
    width: 100%;
    height: 75%;
  }
  .cid-s00xNjcz6p .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-s00xNjcz6p p {
    margin-top: 4rem;
  }
}
.cid-s00xNjcz6p .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-s00xNjcz6p .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-s00xNjcz6p .content-wrapper {
    padding-right: 3rem;
  }
  .cid-s00xNjcz6p h4 {
    right: 2rem;
  }
}
.cid-s00MwqFsT8 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #282124;
}
.cid-s00MwqFsT8 .subicon-title {
  color: #cccccc;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s00MwqFsT8 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
  color: #ffffff;
}
.cid-s00MwqFsT8 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-s00MwqFsT8 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-s00MwqFsT8 .process-icon,
.cid-s00MwqFsT8 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-s00MwqFsT8 .wrapper,
.cid-s00MwqFsT8 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-s00MwqFsT8 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #ffda00;
  opacity: .4;
}
.cid-s00MwqFsT8 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-s00MwqFsT8 .icon-container a {
  display: inherit;
}
.cid-s00MwqFsT8 .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #82786e !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-s00MwqFsT8 .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-s00MwqFsT8 .icon-main:hover .icon-wrapper {
  background-color: #82786e !important;
}
.cid-s00MwqFsT8 .icon-main:hover .icon-number {
  background-color: #ffda00 !important;
  color: #000000 !important;
}
.cid-s00MwqFsT8 .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-s00MwqFsT8 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-s00MwqFsT8 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-s00MwqFsT8 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-s00MwqFsT8 .mbr-section-title {
  margin: 0;
}
.cid-s00MwqFsT8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-s00MwqFsT8 .mbr-section-title,
.cid-s00MwqFsT8 .underline {
  color: #ffffff;
}
.cid-rpRmAXo0RI {
  padding-top: 0px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/ara-yol-yardm-1920x861.jpg");
}
.cid-rpRmAXo0RI .row {
  justify-content: flex-end;
}
.cid-rpRmAXo0RI .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #82786e;
}
.cid-rpRmAXo0RI .block {
  background-color: #ffda00;
}
.cid-rpRmAXo0RI img {
  width: 100%;
}
.cid-rpRmAXo0RI .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-rpRmAXo0RI .content {
  max-width: 600px;
}
.cid-rpRmAXo0RI h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-rpRmAXo0RI .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-rpRmAXo0RI h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-rpRmAXo0RI .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-rpRmAXo0RI h4 {
    right: 2rem;
    bottom: 30%;
  }
  .cid-rpRmAXo0RI .content-wrapper {
    padding: 4rem 3rem 4rem 0rem;
  }
}
.cid-s05E72uIxr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s05E72uIxr .mbr-section-title,
.cid-s05E72uIxr .mbr-section-subtitle {
  color: #000000;
}
.cid-s05E72uIxr .mbr-section-text {
  color: #232323;
}
.cid-s05E72uIxr .mbr-text,
.cid-s05E72uIxr .typed-text,
.cid-s05E72uIxr .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s05E72uIxr .btn {
  margin-left: 4px !important;
}
.cid-s05E72uIxr .animated-element {
  color: #ffda00;
}
.cid-s05E72uIxr .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffda00;
}
.cid-s05E72uIxr .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-s05E72uIxr .typed-text,
  .cid-s05E72uIxr .mbr-section-subtitle,
  .cid-s05E72uIxr .mbr-section-text,
  .cid-s05E72uIxr .mbr-section-btn {
    text-align: center !important;
  }
}
@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-s05E72uIxr .mbr-section-subtitle,
.cid-s05E72uIxr .typed-text {
  color: #282124;
}
.cid-s05CFcJZva {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #82786e;
}
.cid-s05CFcJZva .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-s05CFcJZva img {
  width: 100%;
}
.cid-s05CFcJZva p {
  margin-top: 6rem;
}
.cid-s05CFcJZva .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-s05CFcJZva .content-wrapper {
  padding-top: 6rem;
}
.cid-s05CFcJZva h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-s05CFcJZva .content-wrapper {
    padding-top: 0rem;
  }
  .cid-s05CFcJZva p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-s05CFcJZva .back {
    width: 100%;
    height: 75%;
  }
  .cid-s05CFcJZva .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-s05CFcJZva p {
    margin-top: 4rem;
  }
}
.cid-s05CFcJZva .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-s05CFcJZva .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-s05CFcJZva .content-wrapper {
    padding-right: 3rem;
  }
  .cid-s05CFcJZva h4 {
    right: 2rem;
  }
}
.cid-s2yFqSHLGl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-s2yFqSHLGl .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-s2yFqSHLGl .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-s2yFqSHLGl .card-wrapper {
    margin: 0rem;
  }
}
.cid-s2yFqSHLGl .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-s2yFqSHLGl .row {
    padding: 0 4rem;
  }
}
.cid-s2yFqSHLGl .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #ffda00;
}
.cid-s2yFqSHLGl .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-s2yFqSHLGl .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-s2yFqSHLGl .card1 {
  background-color: #333333;
}
.cid-s2yFqSHLGl .card2 {
  background-color: #ffffff;
}
.cid-s2yFqSHLGl .card3 {
  background-color: #ffffff;
}
.cid-s2yFqSHLGl .card4 {
  background-color: #333333;
}
.cid-s2yFqSHLGl img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-s2yFqSHLGl .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-s2yFqSHLGl .container {
  max-width: 1500px;
}
.cid-s2yFqSHLGl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-s2yFqSHLGl .mbr-iconfont {
  font-size: 1.3rem;
  color: #333333;
  display: flex;
  justify-content: center;
}
.cid-s2yFqSHLGl P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-s2yFqSHLGl .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-s2yFqSHLGl .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-s2yFqSHLGl .col2,
  .cid-s2yFqSHLGl .col3,
  .cid-s2yFqSHLGl .col4 {
    margin-top: 0rem;
  }
  .cid-s2yFqSHLGl .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-s2yFqSHLGl .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-s2yFqSHLGl .number {
    margin: auto;
  }
}
.cid-s2yFqSHLGl .mbr-text {
  color: #cccccc;
}
.cid-s2yFqSHLGl .text2 {
  color: #333333;
  text-align: center;
}
.cid-s2yFqSHLGl .text3 {
  color: #333333;
}
.cid-s2yFqSHLGl .title2 {
  color: #282124;
}
.cid-s2yFqSHLGl .title1 {
  color: #c1c1c1;
}
.cid-s2yFqSHLGl .title3 {
  color: #232323;
}
.cid-s2yFqSHLGl .title4 {
  color: #c1c1c1;
}
.cid-s2yFqSHLGl .text4 {
  color: #efeeee;
}
.cid-s2yFqSHLGl .text1 {
  color: #efeeee;
}
.cid-s2yFqSHLGl .title3 B {
  color: #c1c1c1;
}
.cid-s2yFqSHLGl H1 {
  color: #333333;
}
.cid-s00ypYWjT6 {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s00ypYWjT6 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-s00ypYWjT6 .text-block {
  position: relative;
  z-index: 0;
}
.cid-s00ypYWjT6 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-s00ypYWjT6 .box {
  left: 20%;
}
.cid-s00ypYWjT6 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-s00ypYWjT6 .mbr-section-text,
.cid-s00ypYWjT6 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-s00ypYWjT6 .text-box {
    display: none;
  }
  .cid-s00ypYWjT6 .mbr-section-title,
  .cid-s00ypYWjT6 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-s00ypYWjT6 .box {
    display: none;
  }
  .cid-s00ypYWjT6 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-s00ypYWjT6 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s00ypYWjT6 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-s00ypYWjT6 .mbr-section-text {
  color: #767676;
  text-align: left;
}
.cid-tCIWzLAyPS {
  background-color: #efeeee;
}
.cid-tCIWzLAyPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIWzLAyPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIWzLAyPS .arrow {
  font-size: 3rem;
  color: #ae42c8;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-tCIWzLAyPS .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-tCIWzLAyPS .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tCIWzLAyPS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tCIWzLAyPS img {
  border-radius: 2rem;
}
.cid-tCIWzLAyPS .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tCIWzLAyPS .mbr-section-subtitle {
  text-align: center;
  color: #353535;
}
.cid-tCIWzLAyPS .mbr-text,
.cid-tCIWzLAyPS .mbr-section-btn {
  color: #000000;
  text-align: center;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-s2yMr23hqA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #879a9f;
}
.cid-s2yMr23hqA .mbr-section-title,
.cid-s2yMr23hqA .mbr-section-subtitle {
  color: #000000;
}
.cid-s2yMr23hqA .mbr-section-text {
  color: #232323;
}
.cid-s2yMr23hqA .mbr-text,
.cid-s2yMr23hqA .typed-text,
.cid-s2yMr23hqA .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s2yMr23hqA .btn {
  margin-left: 4px !important;
}
.cid-s2yMr23hqA .animated-element {
  color: #ffda00;
}
.cid-s2yMr23hqA .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffda00;
}
.cid-s2yMr23hqA .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-s2yMr23hqA .typed-text,
  .cid-s2yMr23hqA .mbr-section-subtitle,
  .cid-s2yMr23hqA .mbr-section-text,
  .cid-s2yMr23hqA .mbr-section-btn {
    text-align: center !important;
  }
}
@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-s2yMr23hqA .mbr-section-subtitle,
.cid-s2yMr23hqA .typed-text {
  color: #282124;
}
.cid-s12Ny9Z1VT {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #767676;
}
.cid-s12Ny9Z1VT .mbr-overlay {
  background-color: #232323;
  opacity: 0.4;
}
.cid-s12Ny9Z1VT H4 {
  color: #ffffff;
}
.cid-s12Ny9Z1VT H5 {
  color: #ffda00;
}
.cid-tAKR19KluH {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tAKR19KluH .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tAKR19KluH .input {
  margin-bottom: 15px;
}
.cid-tAKR19KluH .map {
  width: 100%;
  height: 30rem;
}
.cid-tAKR19KluH .map iframe {
  width: inherit;
  height: 100%;
}
.cid-tAKR19KluH .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tAKR19KluH .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tAKR19KluH .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-tAKR19KluH .mbr-text {
  color: #767676;
}
.cid-tAKR19KluH a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tAKR19KluH .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tAKR19KluH .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tAKR19KluH .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-tAKR19KluH .google-map {
  height: 25rem;
  position: relative;
}
.cid-tAKR19KluH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAKR19KluH .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAKR19KluH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAKR19KluH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tAKR19KluH h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tAKR19KluH .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-tAKR19KluH .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tAKR19KluH .google-map {
    padding-bottom: 2rem;
  }
}
.cid-tAKR19KluH H2 {
  text-align: left;
}
.cid-s12Ig3Uqnk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #5b686b;
}
.cid-s12Ig3Uqnk .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s12Ig3Uqnk .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-s12Ig3Uqnk .btn {
  margin-bottom: 2rem;
}
.cid-s12Ig3Uqnk .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-s12Ig3Uqnk .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s12Ig3Uqnk .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-s12Ig3Uqnk .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s12Ig3Uqnk .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s12Ig3Uqnk .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-s12Ig3Uqnk .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-s12Ig3Uqnk .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-s12Ig3Uqnk .links {
  color: #232323;
  text-align: center;
}
.cid-rpSfRqtWyh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #5b686b;
}
.cid-rpSfRqtWyh .media-container-row .mbr-text {
  color: #333333;
}
.cid-rwG46vRkNS .navbar {
  background: #cccccc;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rwG46vRkNS .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-rwG46vRkNS a {
  font-style: normal;
}
.cid-rwG46vRkNS .show {
  overflow: visible;
}
.cid-rwG46vRkNS .dropdown-menu {
  max-height: 400px;
}
.cid-rwG46vRkNS .dropdown-item:active {
  background-color: transparent;
}
.cid-rwG46vRkNS .nav-link {
  font-weight: 600!important;
}
.cid-rwG46vRkNS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwG46vRkNS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .nav-item:focus,
.cid-rwG46vRkNS .nav-link:focus {
  outline: none;
}
.cid-rwG46vRkNS .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwG46vRkNS .menu-logo {
  margin-right: auto;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwG46vRkNS .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-rwG46vRkNS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu {
  background: #efeeee;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #333333 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwG46vRkNS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwG46vRkNS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwG46vRkNS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwG46vRkNS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwG46vRkNS button.navbar-toggler:focus {
  outline: none;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwG46vRkNS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rwG46vRkNS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-rwG46vRkNS .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwG46vRkNS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rwG46vRkNS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rwG46vRkNS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rwG46vRkNS.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS img {
    height: 3.8rem !important;
  }
  .cid-rwG46vRkNS .btn {
    display: -webkit-flex;
  }
  .cid-rwG46vRkNS button.navbar-toggler {
    display: block;
  }
  .cid-rwG46vRkNS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing,
  .cid-rwG46vRkNS .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwG46vRkNS .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-rwG46vRkNS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-rwG46vRkNS .nav-link {
    justify-content: start!important;
  }
  .cid-rwG46vRkNS .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-rwG46vRkNS .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-rwG46vRkNS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rwG46vRkNS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwG46vRkNS .nav-link:hover,
.cid-rwG46vRkNS .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-rwG46vRkNS .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
