@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Exo+2: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=Oswald:200,300,400,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.32rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.4rem;
}
/* ---- 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 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.8 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn-secondary {
  color: black!important;
}
.btn-secondary:hover,
.btn-secondary:active {
  color: black!important;
  background: #32348f !important;
  border-color: #32348f !important;
}
.btn-primary {
  color: white!important;
}
.btn-primary:hover {
  background: #3f42b5 !important;
  border-color: #3f42b5 !important;
}
.btn-info {
  color: white!important;
}
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #e7272d !important;
}
.bg-success {
  background-color: #89b758 !important;
}
.bg-info {
  background-color: #29361a !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e7272d !important;
  border-color: #e7272d !important;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff;
  background-color: #e7272d;
  border-color: #e7272d;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff;
  background-color: #e7272d !important;
  border-color: #e7272d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3f42b5 !important;
  border-color: #3f42b5 !important;
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff;
  background-color: #3f42b5;
  border-color: #3f42b5;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff;
  background-color: #3f42b5 !important;
  border-color: #3f42b5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #29361a !important;
  border-color: #29361a !important;
  color: #ffffff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success,
.btn-success:active {
  background-color: #89b758 !important;
  border-color: #89b758 !important;
  color: #ffffff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #971115;
  color: #971115;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #e7272d;
  border-color: #e7272d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e7272d !important;
  border-color: #e7272d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #252669;
  color: #252669;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #3f42b5;
  border-color: #3f42b5;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3f42b5 !important;
  border-color: #3f42b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #567633;
  color: #567633;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !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: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #e7272d !important;
}
.text-secondary {
  color: #3f42b5 !important;
}
.text-success {
  color: #89b758 !important;
}
.text-info {
  color: #29361a !important;
}
.text-warning {
  color: #808080 !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: #f18386 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8587d5 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #bbd69f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5d7b3b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !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: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #29361a;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e7272d;
  border-color: #e7272d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e7272d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbdfe0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c8ddb1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbe78;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
}
.form-control > .mbr-iconfont {
  font-size: 2.4rem;
}
blockquote {
  border-color: #e7272d;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e7272d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e7272d;
  border-bottom-color: #e7272d;
}
.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: #e7272d !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: #3f42b5 !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%;
  width: 100%;
  height: auto;
}
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='%23e7272d' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-rQ2CfFCKe9 {
  background-image: url("../../../assets/images/dreambig-2000x1333.jpg");
}
.cid-rQ2CfFCKe9 H2 {
  color: #89b758;
}
.cid-rQ2CfFCKe9 .mbr-text,
.cid-rQ2CfFCKe9 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-rQ2CfFCKe9 img {
  max-width: 500px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-rQ2CfFCKe9 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-rQ2CfFCKe9 H1 {
  color: #fbbe36;
  text-align: left;
}
.cid-rQ2CfFCKe9 .responsive2 {
  width: 100%;
  height: auto;
}
.cid-rQ2CfGedf2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/coffeegirl-2000x1333.jpg");
}
.cid-rQ2CfGedf2 .card-subtitle {
  margin: 0;
}
.cid-rQ2CfGedf2 .item {
  margin-bottom: 2rem;
}
.cid-rQ2CfGedf2 .card1 {
  background: #fe7a15;
}
.cid-rQ2CfGedf2 .card2 {
  background: #515dbc;
}
.cid-rQ2CfGedf2 .item-wrapper {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  transition: all 0.6s;
  overflow: hidden;
  position: relative;
}
.cid-rQ2CfGedf2 .item-wrapper:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-rQ2CfGedf2 .item-wrapper:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-rQ2CfGedf2 .item-wrapper:hover:before {
  opacity: 0.3;
  width: 0;
}
.cid-rQ2CfGedf2 .item-wrapper:hover:after {
  opacity: 0.3;
  height: 0;
}
.cid-rQ2CfGedf2 .item-wrapper img {
  width: 180px;
  transition: all 0.6s;
  border-radius: 9px;
}
.cid-rQ2CfGedf2 .item-wrapper .card-box {
  padding: 1rem;
}
.cid-rQ2CfGedf2 .item-wrapper .link {
  transition: all 0.3s;
  text-decoration: underline;
}
.cid-rQ2CfGedf2 .item-wrapper .link-inline {
  display: inline-block;
  width: fit-content;
}
.cid-rQ2CfGedf2 .item-wrapper .mbr-section-btn span {
  order: 2;
  padding: 0;
  margin-left: 1rem;
}
.cid-rQ2CfGedf2 .item-wrapper .mbr-section-btn .btn {
  border: 0px;
}
.cid-rQ2CfGedf2 .item-wrapper .mbr-section-btn .btn:hover {
  background: inherit!important;
  color: inherit!important;
}
.cid-rQ2CfGedf2 .item-wrapper h4,
.cid-rQ2CfGedf2 .item-wrapper h6,
.cid-rQ2CfGedf2 .item-wrapper h5 {
  margin: 0;
}
.cid-rQ2CfGedf2 .item-wrapper .link-wrap {
  display: flex;
  width: fit-content;
  align-items: center;
}
.cid-rQ2CfGedf2 .item-wrapper .link-wrap span {
  margin-left: 0.6rem;
  transition: all 0.3s;
}
.cid-rQ2CfGedf2 .item-wrapper .link-wrap:hover span {
  transform: translateX(5px);
}
.cid-rQ2CfGedf2 .item-wrapper .card {
  cursor: pointer;
  margin-bottom: 2rem;
  height: fit-content;
}
.cid-rQ2CfGedf2 .item-wrapper .card .item-wrapper {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}
.cid-rQ2CfGedf2 .card-img {
  justify-content: center;
  align-items: center;
  display: flex;
}
.cid-rQ2CfGedf2 .row {
  justify-content: center;
}
.cid-rQ2CfGedf2 .location,
.cid-rQ2CfGedf2 .icon-wrap {
  color: #e7272d;
}
.cid-rQ2CfGedf2 .link,
.cid-rQ2CfGedf2 .link-wrap,
.cid-rQ2CfGedf2 .link-align {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rQ2CfGedf2 .wrapper {
    flex-direction: column;
  }
  .cid-rQ2CfGedf2 .icon-padding {
    padding-left: 0rem;
  }
  .cid-rQ2CfGedf2 .card-box {
    padding: 0;
  }
}
.cid-rQ2CfGedf2 H2 {
  color: #e7272d;
}
@media (max-width: 767px) {
  .cid-rQ2CfGedf2 .item-wrapper {
    flex-direction: column;
  }
}
.cid-rQ2CfGedf2 H1 {
  color: #ffffff;
}
.cid-rQ2ClGJE7v {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1f297c;
}
.cid-rQ2ClGJE7v .title-align {
  width: 100%;
}
.cid-rQ2ClGJE7v .pricetitle {
  margin: 0;
  text-align: left;
}
.cid-rQ2ClGJE7v .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-rQ2ClGJE7v .img-col img {
  z-index: 2;
  position: relative;
}
.cid-rQ2ClGJE7v .pricebox {
  position: absolute;
  z-index: 1;
  top: -5rem;
  left: 2rem;
  width: 180px;
  height: 180px;
  background: #fbbe36;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-rQ2ClGJE7v H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
  text-align: left;
}
.cid-rQ2ClGJE7v H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-rQ2ClGJE7v img {
  max-width: 2000px;
  margin: auto;
}
.cid-rQ2ClGJE7v .mbr-section-subtitle,
.cid-rQ2ClGJE7v .title-align {
  color: #fbbe36;
}
.cid-rQ2ClGJE7v .price {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-rQ2ClGJE7v .pricebox {
    top: -2rem;
    right: 2rem;
    left: auto;
  }
}
@media (max-width: 767px) {
  .cid-rQ2ClGJE7v .pricebox {
    width: 100px;
    height: 100px;
    top: 0rem;
    right: 2rem;
    left: auto;
  }
  .cid-rQ2ClGJE7v H2:before {
    width: 70px;
    right: -90px;
  }
  .cid-rQ2ClGJE7v .img-col {
    padding-top: 4rem;
  }
}
.cid-rQ2CfGLDpU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
.cid-rQ2CfGLDpU .title-align {
  width: 100%;
}
.cid-rQ2CfGLDpU .pricetitle {
  margin: 0;
  text-align: left;
}
.cid-rQ2CfGLDpU .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-rQ2CfGLDpU .img-col img {
  z-index: 2;
  position: relative;
}
.cid-rQ2CfGLDpU .pricebox {
  position: absolute;
  z-index: 1;
  top: -5rem;
  left: 2rem;
  width: 180px;
  height: 180px;
  background: #fbbe36;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-rQ2CfGLDpU H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
  text-align: left;
}
.cid-rQ2CfGLDpU H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-rQ2CfGLDpU img {
  max-width: 2000px;
  margin: auto;
}
.cid-rQ2CfGLDpU .mbr-section-subtitle,
.cid-rQ2CfGLDpU .title-align {
  color: #fbbe36;
}
.cid-rQ2CfGLDpU .price {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-rQ2CfGLDpU .pricebox {
    top: -2rem;
    right: 2rem;
    left: auto;
  }
}
@media (max-width: 767px) {
  .cid-rQ2CfGLDpU .pricebox {
    width: 100px;
    height: 100px;
    top: 0rem;
    right: 2rem;
    left: auto;
  }
  .cid-rQ2CfGLDpU H2:before {
    width: 70px;
    right: -90px;
  }
  .cid-rQ2CfGLDpU .img-col {
    padding-top: 4rem;
  }
}
.cid-rQ2D82Qo0S {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/shutterstock-757889659-2000x1333.jpg");
}
.cid-rQ2D82Qo0S .title-align {
  width: 100%;
}
.cid-rQ2D82Qo0S .pricetitle {
  margin: 0;
  text-align: left;
}
.cid-rQ2D82Qo0S .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-rQ2D82Qo0S .img-col img {
  z-index: 2;
  position: relative;
}
.cid-rQ2D82Qo0S .pricebox {
  position: absolute;
  z-index: 1;
  top: -5rem;
  left: 2rem;
  width: 180px;
  height: 180px;
  background: #fbbe36;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-rQ2D82Qo0S H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
  text-align: left;
}
.cid-rQ2D82Qo0S H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-rQ2D82Qo0S img {
  max-width: 2000px;
  margin: auto;
}
.cid-rQ2D82Qo0S .mbr-section-subtitle,
.cid-rQ2D82Qo0S .title-align {
  color: #fbbe36;
}
.cid-rQ2D82Qo0S .price {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-rQ2D82Qo0S .pricebox {
    top: -2rem;
    right: 2rem;
    left: auto;
  }
}
@media (max-width: 767px) {
  .cid-rQ2D82Qo0S .pricebox {
    width: 100px;
    height: 100px;
    top: 0rem;
    right: 2rem;
    left: auto;
  }
  .cid-rQ2D82Qo0S H2:before {
    width: 70px;
    right: -90px;
  }
  .cid-rQ2D82Qo0S .img-col {
    padding-top: 4rem;
  }
}
.cid-rQ2D82Qo0S H1 {
  color: #ffffff;
}
.cid-rQ7rgHnvkE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/pexels-photo-925786-2000x1333.jpg");
}
.cid-rQ7rgHnvkE .title-align {
  width: 100%;
}
.cid-rQ7rgHnvkE .pricetitle {
  margin: 0;
  text-align: left;
}
.cid-rQ7rgHnvkE .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-rQ7rgHnvkE .img-col img {
  z-index: 2;
  position: relative;
}
.cid-rQ7rgHnvkE .pricebox {
  position: absolute;
  z-index: 1;
  top: -5rem;
  left: 2rem;
  width: 180px;
  height: 180px;
  background: #fbbe36;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-rQ7rgHnvkE H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
  text-align: left;
}
.cid-rQ7rgHnvkE H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-rQ7rgHnvkE img {
  max-width: 2000px;
  margin: auto;
}
.cid-rQ7rgHnvkE .mbr-section-subtitle,
.cid-rQ7rgHnvkE .title-align {
  color: #fbbe36;
}
.cid-rQ7rgHnvkE .price {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-rQ7rgHnvkE .pricebox {
    top: -2rem;
    right: 2rem;
    left: auto;
  }
}
@media (max-width: 767px) {
  .cid-rQ7rgHnvkE .pricebox {
    width: 100px;
    height: 100px;
    top: 0rem;
    right: 2rem;
    left: auto;
  }
  .cid-rQ7rgHnvkE H2:before {
    width: 70px;
    right: -90px;
  }
  .cid-rQ7rgHnvkE .img-col {
    padding-top: 4rem;
  }
}
.cid-rQ7rgHnvkE H1 {
  color: #ffffff;
}
.cid-rQ3otuARhP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/lady-2000x1331.jpg");
}
.cid-rQ3otuARhP .card-subtitle {
  margin: 0;
}
.cid-rQ3otuARhP .card1 {
  background: #6a6dec;
}
.cid-rQ3otuARhP .card2 {
  background: #ff7409;
}
.cid-rQ3otuARhP .card3 {
  background: #fbbe36;
}
.cid-rQ3otuARhP .item {
  margin-bottom: 2rem;
}
.cid-rQ3otuARhP .item-wrapper {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  transition: all 0.6s;
  overflow: hidden;
  position: relative;
}
.cid-rQ3otuARhP .item-wrapper:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-rQ3otuARhP .item-wrapper:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-rQ3otuARhP .item-wrapper:hover:before {
  opacity: 0.3;
  width: 0;
}
.cid-rQ3otuARhP .item-wrapper:hover:after {
  opacity: 0.3;
  height: 0;
}
.cid-rQ3otuARhP .item-wrapper img {
  width: 130px;
  transition: all 0.6s;
  border-radius: 9px;
}
.cid-rQ3otuARhP .item-wrapper .card-box {
  padding: 1rem;
}
.cid-rQ3otuARhP .item-wrapper .link {
  transition: all 0.3s;
  text-decoration: underline;
}
.cid-rQ3otuARhP .item-wrapper .link-inline {
  display: inline-block;
  width: fit-content;
}
.cid-rQ3otuARhP .item-wrapper .mbr-section-btn span {
  order: 2;
  padding: 0;
  margin-left: 1rem;
}
.cid-rQ3otuARhP .item-wrapper .mbr-section-btn .btn {
  border: 0px;
}
.cid-rQ3otuARhP .item-wrapper .mbr-section-btn .btn:hover {
  background: inherit!important;
  color: inherit!important;
}
.cid-rQ3otuARhP .item-wrapper h4,
.cid-rQ3otuARhP .item-wrapper h6,
.cid-rQ3otuARhP .item-wrapper h5 {
  margin: 0;
}
.cid-rQ3otuARhP .item-wrapper .link-wrap {
  display: flex;
  width: fit-content;
  align-items: center;
}
.cid-rQ3otuARhP .item-wrapper .link-wrap span {
  margin-left: 0.6rem;
  transition: all 0.3s;
}
.cid-rQ3otuARhP .item-wrapper .link-wrap:hover span {
  transform: translateX(5px);
}
.cid-rQ3otuARhP .item-wrapper .card {
  cursor: pointer;
  height: fit-content;
}
.cid-rQ3otuARhP .item-wrapper .card .item-wrapper {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}
.cid-rQ3otuARhP .card-img {
  justify-content: center;
  align-items: center;
  display: flex;
}
.cid-rQ3otuARhP .row {
  justify-content: center;
}
.cid-rQ3otuARhP .location,
.cid-rQ3otuARhP .icon-wrap {
  color: #e7272d;
}
.cid-rQ3otuARhP .link,
.cid-rQ3otuARhP .link-wrap,
.cid-rQ3otuARhP .link-align {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rQ3otuARhP .wrapper {
    flex-direction: column;
  }
  .cid-rQ3otuARhP .icon-padding {
    padding-left: 0rem;
  }
  .cid-rQ3otuARhP .card-box {
    padding: 0;
  }
}
.cid-rQ3otuARhP H2 {
  color: #e7272d;
}
@media (max-width: 767px) {
  .cid-rQ3otuARhP .item-wrapper {
    flex-direction: column;
  }
}
.cid-rQ3otuARhP H1 {
  color: #050751;
}
.cid-rQNxu8tQJD {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #2c31d7, #7a7cd1);
}
.cid-rQNxu8tQJD .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rQNxu8tQJD .carousel-item.active,
.cid-rQNxu8tQJD .carousel-item-next,
.cid-rQNxu8tQJD .carousel-item-prev {
  display: flex;
}
.cid-rQNxu8tQJD .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
  width: 20%;
}
.cid-rQNxu8tQJD .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 1.2rem;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: .9;
}
.cid-rQNxu8tQJD .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rQNxu8tQJD .user_image {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 1rem auto 1rem auto;
  display: flex;
}
.cid-rQNxu8tQJD .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rQNxu8tQJD .mbr-iconfont {
  font-size: 3rem;
  position: absolute;
  opacity: 0.7;
  color: #ff7f9f;
}
.cid-rQNxu8tQJD .mbr-iconfont.left-top {
  top: 0;
  left: 0;
}
.cid-rQNxu8tQJD .mbr-iconfont.right-bottom {
  bottom: 1rem;
  right: 0;
}
.cid-rQNxu8tQJD .user_text {
  position: relative;
}
@media (min-width: 768px) {
  .cid-rQNxu8tQJD .user_text p {
    padding: 1rem 4rem;
  }
}
@media (max-width: 230px) {
  .cid-rQNxu8tQJD .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-rQ3r507kll {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fcfcfc;
}
.cid-rQ3r507kll .card-subtitle {
  margin: 0;
}
.cid-rQ3r507kll .card-img {
  z-index: 2;
  position: relative;
  width: 100%;
  transition: all 0.3s;
  padding-top: 2rem;
}
.cid-rQ3r507kll .card-img img {
  max-width: 200px;
}
.cid-rQ3r507kll .card-box {
  margin-top: 10rem;
  background: #5862ab;
  padding: 2rem 1rem;
  z-index: 1;
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  position: relative;
  margin-bottom: -5rem;
}
.cid-rQ3r507kll .card1 {
  background-image: url("../../../assets/images/monster2-360x400.png");
  background-size: cover;
}
.cid-rQ3r507kll .card2 {
  background-image: url("../../../assets/images/startup-1-512x512.png");
  background-size: cover;
}
.cid-rQ3r507kll .card3 {
  background-image: url("../../../assets/images/email-2-512x512.png");
  background-size: cover;
}
.cid-rQ3r507kll .icon {
  width: 60px;
  height: 60px;
  background: #ff7409;
  font-size: 1.2rem;
  margin: auto;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #ffffff !important;
}
.cid-rQ3r507kll .item-wrapper {
  position: relative;
  padding: 2rem;
  border-radius: 9px;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-rQ3r507kll h4,
.cid-rQ3r507kll h6,
.cid-rQ3r507kll h5 {
  margin: 0;
}
.cid-rQ3r507kll .mbr-text {
  transition: all 0.3s;
}
.cid-rQ3r507kll .price {
  color: #ffffff;
  transition: all 0.3s;
}
.cid-rQ3r507kll img {
  transition: all 0.3s;
  width: 170px;
  height: 170px;
  object-fit: cover;
}
.cid-rQ3r507kll .card {
  cursor: pointer;
  transition: all .3s;
  margin-bottom: 6rem;
}
.cid-rQ3r507kll .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-rQ3r507kll .wrapper {
    flex-direction: column;
  }
  .cid-rQ3r507kll .icon-padding {
    padding-left: 0rem;
  }
  .cid-rQ3r507kll .item-wrapper {
    padding: 1rem;
  }
}
.cid-rQ3r507kll .mbr-text,
.cid-rQ3r507kll .mbr-section-btn,
.cid-rQ3r507kll .card-img {
  color: #808080;
}
.cid-rQ3r507kll H2 {
  color: #89b758;
}
.cid-rQ3r507kll H1 {
  color: #474ac1;
}
.cid-rQ3r507kll .card-title,
.cid-rQ3r507kll .card-img {
  color: #ffffff;
}
.cid-rQ3vWPKdXr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #3f42b5;
}
.cid-rQ3vWPKdXr .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rQ3vWPKdXr .form-control,
.cid-rQ3vWPKdXr .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #0e0e0e;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rQ3vWPKdXr .form-control::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .field-input::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .form-control::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .field-input::-webkit-input-placeholder {
  color: #808080;
}
.cid-rQ3vWPKdXr .form-control:-moz-placeholder,
.cid-rQ3vWPKdXr .field-input:-moz-placeholder,
.cid-rQ3vWPKdXr .form-control:-moz-placeholder,
.cid-rQ3vWPKdXr .field-input:-moz-placeholder {
  color: #808080;
}
.cid-rQ3vWPKdXr .form-control:hover,
.cid-rQ3vWPKdXr .field-input:hover,
.cid-rQ3vWPKdXr .form-control:focus,
.cid-rQ3vWPKdXr .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #0e0e0e;
  box-shadow: none;
  outline: none;
}
.cid-rQ3vWPKdXr .form-control:hover::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .field-input:hover::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .form-control:focus::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .field-input:focus::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .form-control:hover::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .field-input:hover::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .form-control:focus::-webkit-input-placeholder,
.cid-rQ3vWPKdXr .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-rQ3vWPKdXr .form-control:hover:-moz-placeholder,
.cid-rQ3vWPKdXr .field-input:hover:-moz-placeholder,
.cid-rQ3vWPKdXr .form-control:focus:-moz-placeholder,
.cid-rQ3vWPKdXr .field-input:focus:-moz-placeholder,
.cid-rQ3vWPKdXr .form-control:hover:-moz-placeholder,
.cid-rQ3vWPKdXr .field-input:hover:-moz-placeholder,
.cid-rQ3vWPKdXr .form-control:focus:-moz-placeholder,
.cid-rQ3vWPKdXr .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-rQ3vWPKdXr .jq-number__spin:hover,
.cid-rQ3vWPKdXr .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rQ3vWPKdXr .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #0e0e0e;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rQ3vWPKdXr .jq-selectbox li,
.cid-rQ3vWPKdXr .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rQ3vWPKdXr .jq-selectbox li:hover,
.cid-rQ3vWPKdXr .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-rQ3vWPKdXr .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rQ3vWPKdXr .jq-number__spin.minus:hover:after,
.cid-rQ3vWPKdXr .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rQ3vWPKdXr .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rQ3vWPKdXr .jq-number__spin.minus:after,
.cid-rQ3vWPKdXr .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-rQ3vWPKdXr input::-webkit-clear-button {
  display: none;
}
.cid-rQ3vWPKdXr input::-webkit-inner-spin-button {
  display: none;
}
.cid-rQ3vWPKdXr input::-webkit-outer-spin-button {
  display: none;
}
.cid-rQ3vWPKdXr input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rQ3vWPKdXr H4 {
  color: #ffffff;
}
.cid-rQ3vWPKdXr H5 {
  color: #ff7f9f;
  text-align: left;
}
.cid-rQ3vWPKdXr LABEL {
  color: #ffffff;
  text-align: left;
}
.cid-rQ3Q6AwPJl {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-rQ3Q6AwPJl .row-links {
  width: 100%;
}
.cid-rQ3Q6AwPJl .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-rQ3Q6AwPJl .col-lg-6 {
  height: fit-content;
}
.cid-rQ3Q6AwPJl .soc-item {
  background: #e7272d;
  width: 45px;
  cursor: pointer;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-rQ3Q6AwPJl .soc-item:hover {
  transform: scale(1.1);
}
.cid-rQ3Q6AwPJl .row {
  align-items: center;
}
.cid-rQ3Q6AwPJl .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-rQ3Q6AwPJl .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-rQ3Q6AwPJl .row .foot-menu li:hover {
  color: #e7272d;
}
.cid-rQ3Q6AwPJl .row .foot-menu li p {
  margin: 0;
}
.cid-rQ3Q6AwPJl .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rQ3Q6AwPJl .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-rQ3Q6AwPJl .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-rQ3Q6AwPJl .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rQ3Q6AwPJl .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rQ3Q6AwPJl .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rQ3Q6AwPJl .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-rQ3Q6AwPJl .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rQ3Q6AwPJl .row-links {
    justify-content: center;
  }
  .cid-rQ3Q6AwPJl .foot-menu {
    justify-content: center;
  }
  .cid-rQ3Q6AwPJl .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-rQ3Q6AwPJl .social-row {
    justify-content: center;
  }
  .cid-rQ3Q6AwPJl .mbr-text {
    text-align: center;
  }
  .cid-rQ3Q6AwPJl li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-rQ3Q6AwPJl .foot-menu {
    flex-direction: column;
  }
}
.cid-rQ3Q6AwPJl .media-container-row .mbr-text {
  text-align: center;
}
.cid-rQ25rEXFRp {
  background-color: #35312e;
}
.cid-rQ25rEXFRp H2 {
  color: #89b758;
}
.cid-rQ25rEXFRp .mbr-text,
.cid-rQ25rEXFRp .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-rQ25rEXFRp img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-rQ25rEXFRp img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-rQ25rEXFRp H1 {
  color: #ffffff;
  text-align: left;
}
.cid-rQ25rEXFRp HTML CSSResult EDIT ON html,
.cid-rQ25rEXFRp body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #000;
}
.cid-rQ25rEXFRp .glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}
.cid-rQ25rEXFRp .glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(104%);
  height: calc(104%);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}
.cid-rQ25rEXFRp .glow-on-hover:active {
  color: #000000;
}
.cid-rQ25rEXFRp .glow-on-hover:active:after {
  background: transparent;
}
.cid-rQ25rEXFRp .glow-on-hover:hover:before {
  opacity: 1;
}
.cid-rQ25rEXFRp .glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.cid-rQ25rEXFRp HTML CSSResult EDIT ON body {
  font-family: 'Lato', sans-serif;
}
.cid-rQ25rEXFRp .wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-rQ25rEXFRp .link_wrapper {
  position: relative;
}
.cid-rQ25rEXFRp a {
  display: block;
  width: 250px;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  text-decoration: none;
  background: #333;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #333;
  transition: all .35s;
}
.cid-rQ25rEXFRp .icon {
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  z-index: -1;
  transition: all .35s;
}
.cid-rQ25rEXFRp .icon svg {
  width: 30px;
  position: absolute;
  top: calc(35%);
  left: calc(35%);
  transform: rotate(-45deg);
  fill: #2ecc71;
  transition: all .35s;
}
.cid-rQ25rEXFRp a:hover {
  width: 200px;
  border: 3px solid #2ecc71;
  background: transparent;
  color: #2ecc71;
}
.cid-rQ25rEXFRp a:hover + .icon {
  border: 3px solid #2ecc71;
  right: -25%;
}
.cid-rQ4COwtDOB .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-rQ4COwtDOB .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-rQ4COwtDOB .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-rQ4COwtDOB .dropdown-item {
  color: #000000 !important;
}
.cid-rQ4COwtDOB .dropdown-item:hover {
  color: #000000 !important;
}
.cid-rQ4COwtDOB .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-rQ4COwtDOB .nav-link:hover {
  color: #89b758 !important;
}
.cid-rQ4COwtDOB .nav-link:hover:before {
  opacity: 1;
}
.cid-rQ4COwtDOB .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #89b758;
}
.cid-rQ4COwtDOB .btn-white {
  color: #e7272d !important;
}
.cid-rQ4COwtDOB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-rQ4COwtDOB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rQ4COwtDOB .container {
  display: flex;
  margin: auto;
}
.cid-rQ4COwtDOB .navbar-caption {
  padding-right: 3rem;
}
.cid-rQ4COwtDOB .navbar.opened {
  background: #cebfaf !important;
}
.cid-rQ4COwtDOB .nav-item:focus,
.cid-rQ4COwtDOB .nav-link:focus {
  outline: none;
}
.cid-rQ4COwtDOB .dropdown .dropdown-menu .dropdown-item {
  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-rQ4COwtDOB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQ4COwtDOB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rQ4COwtDOB .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-rQ4COwtDOB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rQ4COwtDOB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rQ4COwtDOB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #cebfaf;
}
.cid-rQ4COwtDOB .navbar.opened {
  transition: all .3s;
}
.cid-rQ4COwtDOB .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-rQ4COwtDOB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rQ4COwtDOB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rQ4COwtDOB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rQ4COwtDOB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rQ4COwtDOB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rQ4COwtDOB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rQ4COwtDOB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rQ4COwtDOB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rQ4COwtDOB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rQ4COwtDOB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rQ4COwtDOB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rQ4COwtDOB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rQ4COwtDOB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rQ4COwtDOB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rQ4COwtDOB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rQ4COwtDOB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rQ4COwtDOB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rQ4COwtDOB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rQ4COwtDOB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rQ4COwtDOB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rQ4COwtDOB .navbar.navbar-short {
  background: #cebfaf !important;
  min-height: 60px;
}
.cid-rQ4COwtDOB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rQ4COwtDOB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rQ4COwtDOB .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-rQ4COwtDOB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rQ4COwtDOB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rQ4COwtDOB .dropdown-item.active,
.cid-rQ4COwtDOB .dropdown-item:active {
  background-color: transparent;
}
.cid-rQ4COwtDOB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rQ4COwtDOB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rQ4COwtDOB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rQ4COwtDOB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cebfaf;
}
.cid-rQ4COwtDOB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rQ4COwtDOB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQ4COwtDOB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rQ4COwtDOB .navbar-buttons {
  text-align: center;
}
.cid-rQ4COwtDOB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQ4COwtDOB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-rQ4COwtDOB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQ4COwtDOB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQ4COwtDOB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQ4COwtDOB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQ4COwtDOB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQ4COwtDOB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQ4COwtDOB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQ4COwtDOB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQ4COwtDOB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rQ4COwtDOB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rQ4COwtDOB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rQ4COwtDOB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rQ4COwtDOB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rQ4COwtDOB .navbar {
    height: 77px;
  }
  .cid-rQ4COwtDOB .navbar.opened {
    height: auto;
  }
  .cid-rQ4COwtDOB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rQfYh9gWMS {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #3f42b5;
}
.cid-rQfYh9gWMS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rQfYh9gWMS .form-control,
.cid-rQfYh9gWMS .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #0e0e0e;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rQfYh9gWMS .form-control::-webkit-input-placeholder,
.cid-rQfYh9gWMS .field-input::-webkit-input-placeholder,
.cid-rQfYh9gWMS .form-control::-webkit-input-placeholder,
.cid-rQfYh9gWMS .field-input::-webkit-input-placeholder {
  color: #808080;
}
.cid-rQfYh9gWMS .form-control:-moz-placeholder,
.cid-rQfYh9gWMS .field-input:-moz-placeholder,
.cid-rQfYh9gWMS .form-control:-moz-placeholder,
.cid-rQfYh9gWMS .field-input:-moz-placeholder {
  color: #808080;
}
.cid-rQfYh9gWMS .form-control:hover,
.cid-rQfYh9gWMS .field-input:hover,
.cid-rQfYh9gWMS .form-control:focus,
.cid-rQfYh9gWMS .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #0e0e0e;
  box-shadow: none;
  outline: none;
}
.cid-rQfYh9gWMS .form-control:hover::-webkit-input-placeholder,
.cid-rQfYh9gWMS .field-input:hover::-webkit-input-placeholder,
.cid-rQfYh9gWMS .form-control:focus::-webkit-input-placeholder,
.cid-rQfYh9gWMS .field-input:focus::-webkit-input-placeholder,
.cid-rQfYh9gWMS .form-control:hover::-webkit-input-placeholder,
.cid-rQfYh9gWMS .field-input:hover::-webkit-input-placeholder,
.cid-rQfYh9gWMS .form-control:focus::-webkit-input-placeholder,
.cid-rQfYh9gWMS .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-rQfYh9gWMS .form-control:hover:-moz-placeholder,
.cid-rQfYh9gWMS .field-input:hover:-moz-placeholder,
.cid-rQfYh9gWMS .form-control:focus:-moz-placeholder,
.cid-rQfYh9gWMS .field-input:focus:-moz-placeholder,
.cid-rQfYh9gWMS .form-control:hover:-moz-placeholder,
.cid-rQfYh9gWMS .field-input:hover:-moz-placeholder,
.cid-rQfYh9gWMS .form-control:focus:-moz-placeholder,
.cid-rQfYh9gWMS .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-rQfYh9gWMS .jq-number__spin:hover,
.cid-rQfYh9gWMS .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rQfYh9gWMS .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #0e0e0e;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rQfYh9gWMS .jq-selectbox li,
.cid-rQfYh9gWMS .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rQfYh9gWMS .jq-selectbox li:hover,
.cid-rQfYh9gWMS .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-rQfYh9gWMS .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rQfYh9gWMS .jq-number__spin.minus:hover:after,
.cid-rQfYh9gWMS .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rQfYh9gWMS .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rQfYh9gWMS .jq-number__spin.minus:after,
.cid-rQfYh9gWMS .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-rQfYh9gWMS input::-webkit-clear-button {
  display: none;
}
.cid-rQfYh9gWMS input::-webkit-inner-spin-button {
  display: none;
}
.cid-rQfYh9gWMS input::-webkit-outer-spin-button {
  display: none;
}
.cid-rQfYh9gWMS input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rQfYh9gWMS H4 {
  color: #ffffff;
}
.cid-rQfYh9gWMS H5 {
  color: #ff7f9f;
  text-align: left;
}
.cid-rQfYh9gWMS LABEL {
  color: #ffffff;
  text-align: left;
}
.cid-rQfYh9GddI {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-rQfYh9GddI .row-links {
  width: 100%;
}
.cid-rQfYh9GddI .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-rQfYh9GddI .col-lg-6 {
  height: fit-content;
}
.cid-rQfYh9GddI .soc-item {
  background: #e7272d;
  width: 45px;
  cursor: pointer;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-rQfYh9GddI .soc-item:hover {
  transform: scale(1.1);
}
.cid-rQfYh9GddI .row {
  align-items: center;
}
.cid-rQfYh9GddI .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-rQfYh9GddI .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-rQfYh9GddI .row .foot-menu li:hover {
  color: #e7272d;
}
.cid-rQfYh9GddI .row .foot-menu li p {
  margin: 0;
}
.cid-rQfYh9GddI .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rQfYh9GddI .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-rQfYh9GddI .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-rQfYh9GddI .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rQfYh9GddI .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rQfYh9GddI .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rQfYh9GddI .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-rQfYh9GddI .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rQfYh9GddI .row-links {
    justify-content: center;
  }
  .cid-rQfYh9GddI .foot-menu {
    justify-content: center;
  }
  .cid-rQfYh9GddI .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-rQfYh9GddI .social-row {
    justify-content: center;
  }
  .cid-rQfYh9GddI .mbr-text {
    text-align: center;
  }
  .cid-rQfYh9GddI li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-rQfYh9GddI .foot-menu {
    flex-direction: column;
  }
}
.cid-rQfYh9GddI .media-container-row .mbr-text {
  text-align: center;
}
