@charset "UTF-8";
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

/* @import 'abstracts/variables';
@import 'abstracts/mixins';
@import 'abstracts/fonts'; */
.page-open-mobile-menu i, .page-mobile-main-menu li.opened > a .toggle-sub-menu:after, .page-mobile-main-menu .toggle-sub-menu {
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* poppins-300 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins/poppins-v15-latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins/poppins-v15-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v15-latin-300.woff2") format("woff2"), url("../fonts/poppins/poppins-v15-latin-300.woff") format("woff"), url("../fonts/poppins/poppins-v15-latin-300.ttf") format("truetype"), url("../fonts/poppins/poppins-v15-latin-300.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins/poppins-v15-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins/poppins-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v15-latin-regular.woff2") format("woff2"), url("../fonts/poppins/poppins-v15-latin-regular.woff") format("woff"), url("../fonts/poppins/poppins-v15-latin-regular.ttf") format("truetype"), url("../fonts/poppins/poppins-v15-latin-regular.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins/poppins-v15-latin-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins/poppins-v15-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v15-latin-500.woff2") format("woff2"), url("../fonts/poppins/poppins-v15-latin-500.woff") format("woff"), url("../fonts/poppins/poppins-v15-latin-500.ttf") format("truetype"), url("../fonts/poppins/poppins-v15-latin-500.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-600 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins/poppins-v15-latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins/poppins-v15-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v15-latin-600.woff2") format("woff2"), url("../fonts/poppins/poppins-v15-latin-600.woff") format("woff"), url("../fonts/poppins/poppins-v15-latin-600.ttf") format("truetype"), url("../fonts/poppins/poppins-v15-latin-600.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins/poppins-v15-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins/poppins-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v15-latin-700.woff2") format("woff2"), url("../fonts/poppins/poppins-v15-latin-700.woff") format("woff"), url("../fonts/poppins/poppins-v15-latin-700.ttf") format("truetype"), url("../fonts/poppins/poppins-v15-latin-700.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-800 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/poppins/poppins-v15-latin-800.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins/poppins-v15-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v15-latin-800.woff2") format("woff2"), url("../fonts/poppins/poppins-v15-latin-800.woff") format("woff"), url("../fonts/poppins/poppins-v15-latin-800.ttf") format("truetype"), url("../fonts/poppins/poppins-v15-latin-800.svg#Poppins") format("svg");
  /* Legacy iOS */
}
html {
  font-size: 16px;
  overflow-x: hidden;
  box-shadow: none !important;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  background-color: #ffffff;
  color: #222222;
}

#site {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 3.75rem;
  line-height: 1.8;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #43b2ce;
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }
}

a {
  color: #833b7b;
  word-break: break-word;
  white-space: normal;
}
a.elementor-button-link {
  font-family: "Poppins", sans-serif;
}

a:hover {
  color: #222;
  text-decoration: none;
}

strong {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .elementor-section-full_width {
    /* padding-left: 30px !important;
    padding-right: 30px !important;*/
  }
}

.no-padd {
  padding: 0 !important;
}

.no-padd-y {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-padd-x {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.object-fit-image {
  height: 100%;
}
.object-fit-image > div {
  height: 100%;
}
.object-fit-image > div > div {
  height: 100%;
}
.object-fit-image > div > div > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fit-image > div {
  height: 100%;
}
.object-fit-image > div > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.list-gap-1 {
  margin-bottom: 1em;
}

.fnc-border :is(h1, h2, h3, h4, h5) {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}
.fnc-border :is(h1, h2, h3, h4, h5):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .mob-order-2 {
    order: 2;
  }
}

@media (max-width: 768px) {
  .mob-order-1 {
    order: 1;
  }
}

.sec-mr-auto > div {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.styled-heading:not(.none) :is(h1, h2, h3, h4, h5) {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.styled-heading:not(.none) :is(h1, h2, h3, h4, h5)::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 20px;
  height: 8px;
  border-radius: 20px;
  background-color: #43b2ce;
  box-shadow: 0px 0px 0px 5px #ffffff;
  z-index: 5;
}
.styled-heading:not(.none) :is(h1, h2, h3, h4, h5)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 112px;
  height: 1px;
  background: #0ecece;
  z-index: 4;
}
.styled-heading:not(.none).bg-grey :is(h1, h2, h3, h4, h5)::before {
  box-shadow: 0px 0px 0px 5px #f4f7f9;
}
.styled-heading:not(.none).bg-green :is(h1, h2, h3, h4, h5)::before {
  background-color: #ffffff;
  box-shadow: 0px 0px 0px 5px #43b2ce;
}
.styled-heading:not(.none).bg-green :is(h1, h2, h3, h4, h5)::after {
  background: #ffffff;
}
.styled-heading:not(.none).bg-pink :is(h1, h2, h3, h4, h5)::before {
  background-color: #ffffff;
  box-shadow: 0px 0px 0px 5px #df61ae;
}
.styled-heading:not(.none).bg-pink :is(h1, h2, h3, h4, h5)::after {
  background: #ffffff;
}
.styled-heading:not(.none).bg-purple :is(h1, h2, h3, h4, h5)::before {
  background-color: #ffffff;
  box-shadow: 0px 0px 0px 5px #6675b4;
}
.styled-heading:not(.none).bg-purple :is(h1, h2, h3, h4, h5)::after {
  background: #ffffff;
}
.styled-heading:not(.none).res-content-align-left :is(h1, h2, h3, h4, h5)::before {
  left: calc(56px - 10px);
}
.styled-heading:not(.none).res-content-align-left :is(h1, h2, h3, h4, h5)::after {
  left: 0;
}
@media (min-width: 1024px) {
  .styled-heading:not(.none).res-content-align-right :is(h1, h2, h3, h4, h5)::before {
    right: calc(56px - 10px);
    left: auto;
  }
  .styled-heading:not(.none).res-content-align-right :is(h1, h2, h3, h4, h5)::after {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1024px) {
  .styled-heading:not(.none).res-content-align-center :is(h1, h2, h3, h4, h5)::before {
    left: calc(50% - 10px);
  }
  .styled-heading:not(.none).res-content-align-center :is(h1, h2, h3, h4, h5)::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .styled-heading:not(.none).res-content-align--tabletleft :is(h1, h2, h3, h4, h5)::before {
    left: calc(56px - 10px);
  }
  .styled-heading:not(.none).res-content-align--tabletleft :is(h1, h2, h3, h4, h5)::after {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .styled-heading:not(.none).res-content-align--tabletright :is(h1, h2, h3, h4, h5)::before {
    right: calc(56px - 10px);
    left: auto;
  }
  .styled-heading:not(.none).res-content-align--tabletright :is(h1, h2, h3, h4, h5)::after {
    right: 0;
    left: auto;
  }
}
@media (max-width: 1024px) {
  .styled-heading:not(.none).res-content-align--tabletcenter :is(h1, h2, h3, h4, h5)::before {
    left: calc(50% - 10px);
  }
  .styled-heading:not(.none).res-content-align--tabletcenter :is(h1, h2, h3, h4, h5)::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .styled-heading:not(.none).res-content-align--mobileleft :is(h1, h2, h3, h4, h5)::before {
    left: calc(56px - 10px);
  }
  .styled-heading:not(.none).res-content-align--mobileleft :is(h1, h2, h3, h4, h5)::after {
    left: 0;
  }
}
@media (max-width: 767px) {
  .styled-heading:not(.none).res-content-align--mobilecenter :is(h1, h2, h3, h4, h5)::before {
    left: calc(50% - 10px);
  }
  .styled-heading:not(.none).res-content-align--mobilecenter :is(h1, h2, h3, h4, h5)::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .styled-heading:not(.none).res-content-align--mobileright :is(h1, h2, h3, h4, h5)::before {
    right: calc(56px - 10px);
    left: auto;
  }
  .styled-heading:not(.none).res-content-align--mobileright :is(h1, h2, h3, h4, h5)::after {
    right: 0;
    left: auto;
  }
}

.rotate {
  transform: rotate(-90deg);
}

@-webkit-keyframes growIt {
  0% {
    left: 0;
    right: 100%;
  }
  100% {
    right: -100%;
  }
}

@keyframes growIt {
  0% {
    left: 0;
    right: 100%;
  }
  100% {
    right: -100%;
  }
}
@-webkit-keyframes growIMenu {
  0% {
    left: 45px;
    right: 45px;
  }
  100% {
    left: 25px;
    right: 25px;
  }
}
@keyframes growIMenu {
  0% {
    left: 45px;
    right: 45px;
  }
  100% {
    left: 25px;
    right: 25px;
  }
}
/*Icons*/
[class*=cairsicon-] {
  display: inline-block;
}

[class*=cairsicon-]::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='facebook-f' class='svg-inline--fa fa-facebook-f fa-w-10' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffffff' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'%3E%3C/path%3E%3C/svg%3E");
}

.cairsicon-facebook {
  font-size: 100px;
  background: red;
  border-radius: 50%;
}

.a-min-w-190 a {
  min-width: 190px;
}
@media (max-width: 768px) {
  .a-min-w-190 a {
    min-width: 150px;
  }
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pagination {
  margin: 20px auto;
}

.sticky {
  position: relative;
  display: block;
}

.bypostauthor {
  font-size: inherit;
}

.gallery-caption {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  padding: 0.75rem;
}

.wp-caption {
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  margin: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eeeeee;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #333333;
  display: block;
  font-size: 1rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/**Comments**/
#comments .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9em;
}

#comments .comment,
#comments .pingback {
  position: relative;
}

#comments .comment .comment-body,
#comments .pingback .comment-body {
  display: flex;
  flex-direction: column;
  padding: 30px 0 30px 60px;
  border-bottom: 1px solid #cccccc;
}

body.rtl #comments .comment .comment-body, body.rtl #comments .pingback .comment-body {
  padding: 30px 60px 30px 0;
}

#comments .comment .avatar,
#comments .pingback .avatar {
  position: absolute;
  left: 0;
  border-radius: 50%;
  margin-right: 10px;
}

body.rtl #comments .comment .avatar, body.rtl #comments .pingback .avatar {
  left: auto;
  right: 0;
  margin-right: 0;
  margin-left: 10px;
}

#comments .comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

#comments .reply,
#comments .comment-metadata {
  font-size: 11px;
  line-height: 1;
}

#comments .children {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 30px;
}

body.rtl #comments .children {
  padding-left: 0;
  padding-right: 30px;
}

#comments .children li:last-child {
  padding-bottom: 0;
}

#comments ol.comment-list .children:before {
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  line-height: 100%;
  content: "↪";
  position: absolute;
  top: 45px;
  left: 0;
  width: auto;
}

body.rtl #comments ol.comment-list .children:before {
  content: "↩";
  left: auto;
  right: 0;
}

@media (min-width: 768px) {
  #comments .comment-author,
#comments .comment-metadata {
    line-height: 1;
  }
}
@media (max-width: 767px) {
  #comments .comment .comment-body {
    padding: 30px 0;
  }

  #comments .children {
    padding-left: 20px;
  }

  #comments .comment .avatar {
    position: inherit;
    float: left;
  }

  body.rtl #comments .comment .avatar {
    float: right;
  }
}
.header-area {
  padding: 20px 0 0px 0;
}
@media (max-width: 1200px) {
  .header-area {
    padding: 20px 0 20px 0;
  }
}
.header-area .header-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .header-area .header-top {
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 10px;
  }
}
.header-area > .container {
  position: relative;
}

.menu-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.extra-widgets {
  text-align: right;
}
@media (max-width: 480px) {
  .extra-widgets {
    text-align: center;
    margin-top: 0;
  }
}
.extra-widgets .custom-html-widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .extra-widgets .custom-html-widget {
    justify-content: center;
  }
}
.extra-widgets a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  color: #383838;
}
@media (max-width: 1024px) {
  .extra-widgets a {
    width: 100%;
    display: block;
  }
}
.extra-widgets a svg {
  width: 18px;
  height: 18px;
  color: #43b2ce;
  position: relative;
  margin-right: 10px;
}

.logo-info {
  text-align: center;
}
@media (min-width: 1200px) {
  .logo-info {
    position: relative;
    top: -20px;
  }
}
@media (max-width: 480px) {
  .logo-info {
    text-align: left;
  }
}
.logo-info__logo {
  max-width: 100%;
}
@media (max-width: 480px) {
  .logo-info__logo {
    max-width: 80%;
  }
}

.page-banner {
  z-index: 1;
  position: relative;
  width: 100%;
  min-height: 535px;
  text-align: center;
}
@media (max-width: 1100px) {
  .page-banner {
    min-height: 435px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    min-height: 335px;
  }
}
.page-banner figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.page-banner figure img {
  max-width: 100%;
  max-height: 100%;
  min-width: 0 !important;
  min-height: 0 !important;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-banner header {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 45px;
  padding-right: 45px;
}
@media (max-width: 480px) {
  .page-banner header {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-banner header h2 {
  display: inline-block;
  font-size: 3.5rem;
  line-height: 1.5;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 768px) {
  .page-banner header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .page-banner header h2 {
    font-size: 1.5rem;
  }
}
.page-banner header h1 {
  color: #125175;
}
.page-banner__btns {
  margin-top: 20px;
}
.page-banner__btns a {
  display: inline-block;
  min-width: 210px;
  margin-right: 15px;
  padding: 8px 25px;
  background-color: #833b7b;
  border-radius: 35px;
  color: white;
  text-align: center;
  font-size: 22px;
}
@media (max-width: 768px) {
  .page-banner__btns a {
    min-width: 150px;
    padding: 8px 25px;
  }
}
.page-banner__btns a:last-of-type {
  margin-right: 0;
}

.navbar-brand {
  margin-right: 0;
}

@media (min-width: 1200px) {
  .navbar {
    padding-right: 0;
  }
}
.navbar .navbar-nav {
  position: relative;
}
.navbar .navbar-nav::after {
  content: "";
  position: absolute;
  left: 0px;
  right: -100%;
  top: 0;
  height: 1px;
  background: #6675b4;
  -webkit-animation: growIt 1s ease-in;
          animation: growIt 1s ease-in;
}
.navbar li {
  padding: 25px 25px 10px 25px;
  position: relative;
}
.navbar li:first-of-type {
  padding-left: 0;
}
.navbar li:last-of-type {
  padding-right: 0;
}
.navbar li.active a {
  color: #df61ae;
  /* &::after {
    content: '';
    position: absolute;
    left: 25px;
    right: 25px;
    top: -1px;
    height: 3px;
    background: $color_green_1;
    z-index: 5;
     animation: growIMenu .5s ease-in;
  } */
}
.navbar li a {
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  padding: 0 !important;
}
.navbar li:first-of-type.active a::after {
  left: 0;
}
.navbar .dropdown.submneu .dropdown-toggle::after {
  display: none;
}
.navbar .dropdown-toggle {
  /* &::after {
    display: none;
  } */
}
.navbar .dropdown-toggle svg {
  transform: rotate(0deg);
  max-width: 22px;
  margin-left: 3px;
}

.menu > .nav-item.submenu .dropdown-menu {
  margin: 0px;
  border: 0px;
  border-radius: 0px;
  left: 0;
  right: auto;
  min-width: 250px;
  max-width: 250px;
  padding: 5px 0px 0 0;
  background: #fff;
  /*  box-shadow: -1px 2px 19px 3px rgba(14, 0, 40, 0.05); */
  box-shadow: 0px 30px 15px -26px rgba(0, 0, 0, 0.7);
  z-index: 9999;
  border-bottom: 3px solid #0ecece;
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu {
    transform: translateY(15px);
    transition: all 0.3s ease-in;
    opacity: 0;
    visibility: hidden;
    display: block;
  }
}
.menu > .nav-item.submenu .dropdown-menu .nav-item {
  display: block;
  width: 100%;
  margin-right: 0px;
  padding: 13px 30px;
  position: relative;
  /*  border-bottom: 1px solid $color_green_1; */
}
.menu > .nav-item.submenu .dropdown-menu .nav-item:last-child {
  border-bottom: none;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
  display: flex;
  padding: 0px;
  white-space: nowrap;
  font: 500 16px/20px "Poppins", sans-serif;
  color: #383838;
  transition: color 0.2s linear;
  white-space: normal;
  word-break: break-word;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:before {
  transform: scale(1);
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:after {
  display: none;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:hover {
  color: #833B7B;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link svg {
  margin-left: auto;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.menu > .nav-item.submenu .dropdown-menu .nav-item:hover .nav-link:before {
  transform: scale(1);
}
.menu > .nav-item.submenu .dropdown-menu .nav-item.active .nav-link {
  color: #833B7B;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
  transition: transform 0.3s ease-in;
  padding: 0px;
  border-bottom: 3px solid #833B7B;
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    opacity: 0;
    display: block;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in;
  }
}

@media (min-width: 992px) {
  .menu > .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(5px);
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .menu > .nav-item:hover .dropdown-menu > .nav-item:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
.page-open-mobile-menu {
  cursor: pointer;
}
.page-open-mobile-menu .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}
.page-open-mobile-menu .icon {
  position: relative;
  width: 24px;
  height: 18px;
}
.page-open-mobile-menu:hover i:before {
  width: 80%;
}
.page-open-mobile-menu:hover i:after {
  width: 65%;
}
.page-open-mobile-menu i {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.page-open-mobile-menu i:before, .page-open-mobile-menu i:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: "";
  transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-open-mobile-menu i:before {
  top: -8px;
}
.page-open-mobile-menu i:after {
  top: 8px;
}

.page-close-mobile-menu {
  font-size: 36px;
  cursor: pointer;
}
.page-close-mobile-menu svg {
  width: 24px;
  fill: #43b2ce;
}

.page-mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 0 30px;
  height: 80px;
  background: #ffffff;
  align-items: center;
}

.page-mobile-menu-logo {
  flex-grow: 1;
}
.page-mobile-menu-logo img {
  max-width: 105px;
}
@media (max-width: 1024px) {
  .page-mobile-menu-logo img {
    max-width: 30%;
  }
}
@media (max-width: 767px) {
  .page-mobile-menu-logo img {
    max-width: 85%;
  }
}

.page-mobile-menu-opened {
  overflow: hidden;
}

.page-mobile-main-menu {
  position: fixed;
  top: 0;
  right: 100%;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  background: #43b2ce;
  background: linear-gradient(149deg, #43b2ce 0%, #0ecece 82%);
  text-align: left;
  transition: all 0.3s;
  overflow-y: auto;
  padding-top: 80px;
}
.admin-bar .page-mobile-main-menu {
  top: 32px;
  height: calc(100% - 32px);
}
.page-mobile-menu-opened .page-mobile-main-menu {
  right: 0;
}
.page-mobile-main-menu .widgettitle {
  margin: 0 0 10px;
}
.page-mobile-main-menu .wpb_column + .wpb_column {
  margin-top: 35px;
}
.page-mobile-main-menu ul {
  margin: 0;
  padding: 0;
}
.page-mobile-main-menu li {
  display: block;
  list-style-type: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-mobile-main-menu li:last-of-type {
  border-bottom: none;
}
.page-mobile-main-menu li.opened > a {
  color: #fff;
}
.page-mobile-main-menu li.opened > a .toggle-sub-menu:after {
  transform: rotate(180deg);
}
.page-mobile-main-menu li.opened > a svg .vertical-line {
  transform: scaleY(0);
}
.page-mobile-main-menu .sub-menu {
  display: none;
  margin: 12px 0 14px 10px;
}
.page-mobile-main-menu .sub-menu a {
  padding: 8px 0;
  color: #fff;
}
.page-mobile-main-menu .page-mobile-menu-content > ul > li.page_item_has_children {
  padding-bottom: 18px;
}
.page-mobile-main-menu .children {
  margin-left: 20px;
}
.page-mobile-main-menu .children a {
  padding: 8px 0;
  color: #fff;
}
.page-mobile-main-menu .wpb_column.vc_column_container {
  width: 100% !important;
}
.page-mobile-main-menu .menu__container {
  padding: 0;
  margin: 14px 30px 30px;
}
.page-mobile-main-menu .menu__container > li > a {
  padding: 10px 0;
  border: 0;
  color: #fff;
  border-color: transparent;
}
.page-mobile-main-menu .menu__container > li + li > a {
  border-top: 1px solid transparent;
}
.page-mobile-main-menu .menu__container > li.opened > a {
  border-bottom: 1px solid transparent;
}
.page-mobile-main-menu .menu__container a {
  position: relative;
  display: block;
}
.page-mobile-main-menu .tm-list {
  margin-bottom: 16px;
}
.page-mobile-main-menu .mega-menu {
  margin-top: 20px;
}
.page-mobile-main-menu .wpb_button,
.page-mobile-main-menu .wpb_content_element,
.page-mobile-main-menu ul.wpb_thumbnails-fluid > li {
  margin-bottom: 30px;
}
.page-mobile-main-menu .widget_nav_menu li,
.page-mobile-main-menu .insight-core-bmw li {
  margin: 0;
  padding: 0;
  border: 0;
}
.page-mobile-main-menu .toggle-sub-menu {
  position: absolute;
  top: 50%;
  right: 0;
  width: 35px;
  height: 35px;
  color: #ffffff;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* &:after {
  	@extend %transit2;
  	display: block;
  	content: '';
  	width: 0;
  	height: 0;
  	border-top: 10px solid #fff;
  	border-left: 10px solid transparent;
  	border-right: 10px solid transparent;
  } */
  /* &:hover,
  &:active {
  	background: rgb(132,196,184);
  } */
}
.page-mobile-main-menu .toggle-sub-menu svg {
  max-width: 20px;
  fill: white;
}
.page-mobile-main-menu .toggle-sub-menu svg path {
  transition: all 800ms;
  transform: scaleY(1);
  transform-origin: 50% 50%;
}

.site-arrow {
  fill: red;
}

@media screen and (max-width: 782px) {
  .admin-bar .page-mobile-main-menu {
    top: 46px;
    height: calc(100% - 46px);
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .page-mobile-main-menu {
    top: 0;
    height: 100%;
  }
}
.desktop-menu .page-open-mobile-menu {
  display: none !important;
}

.navbar-toggler {
  margin-left: 20px;
  color: #FFFFFF;
  background-color: #833B7B;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: transparent;
  border-radius: 5px !important;
  padding: 0 5px !important;
  position: absolute;
  right: 25px;
  z-index: 8888;
  bottom: 5px;
}
@media (min-width: 1200px) {
  .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-toggler {
    bottom: 32px;
  }
}

.navbar-toggler:focus {
  outline: none;
}

.menu_toggle {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  display: block;
}

.menu_toggle .hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
}

.menu_toggle .hamburger span {
  width: 0%;
  height: 2px;
  position: relative;
  top: 5px;
  left: 0;
  margin: 4px 0;
  display: block;
  background: #fff;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
}

.menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0s;
}

.menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}

.menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.2s;
}

.menu_toggle .hamburger-cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
  display: block;
}

.menu_toggle .hamburger-cross span {
  display: block;
  background: #fff;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
}

.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 80%;
  width: 2px;
  position: absolute;
  top: 2px;
  left: 13px;
  transition-delay: 0.3s;
}

.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 80%;
  height: 2px;
  position: absolute;
  left: 2px;
  top: 14px;
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}

.collapsed .menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0.3s;
}

.collapsed .menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;
  transition-delay: 0s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  width: 0%;
  transition-delay: 0.2s;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #833b7b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 80%;
  max-width: 1000px;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.elementor-widget-cairs-modal-popup {
  margin-bottom: 0 !important;
}

.cairs-popup {
  /* max-width: 1000px;
  margin-left: auto;
  margin-right: auto; */
  background: white;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}
.cairs-popup .cairs-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.cairs-popup .cairs-popup-close svg {
  fill: #000;
}
.cairs-popup ul, .cairs-popup ol {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

.popup-modal {
  display: inline-block;
}
.popup-modal.button {
  background-color: #833b7b;
  color: #fff;
  font-family: "Noto Sans HK", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
  padding: 12px 35px 15px 35px;
  border-radius: 35px;
}

#footer-form .gfield {
  margin-bottom: 20px;
}
#footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 10px;
  letter-spacing: normal;
  background: transparent;
  border: none;
  border: 1px solid #6675b4;
  border-radius: 5px;
  box-shadow: none;
  color: #383838;
}
#footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus-visible {
  outline: none;
}
#footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).datepicker {
  width: 100%;
}
#footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b8b8b8;
}
#footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #b8b8b8;
}
#footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #b8b8b8;
}
#footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus:-moz-placeholder {
  /* Firefox 18- */
  color: #b8b8b8;
}
#footer-form .gchoice label {
  color: white;
}
#footer-form .gform_wrapper select {
  background: transparent;
  color: #383838;
  border: none;
  border: 1px solid #6675b4;
  border-radius: 5px;
  height: 49px;
  padding: 10px;
  /* option {
      color: #9B7CB3;
  } */
}
#footer-form .gform_wrapper select:focus-visible {
  outline: none;
}
#footer-form .gform_wrapper textarea {
  background: transparent;
  color: #383838;
  border: 1px solid #6675b4;
  padding: 10px;
  border-radius: 5px;
}
#footer-form .gform_wrapper textarea:focus-visible {
  outline: none;
}
#footer-form .gfield_label {
  color: #383838;
  font-weight: 400;
}
#footer-form .ginput_container_checkbox {
  margin-top: 0;
}
#footer-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #383838;
}
#footer-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #383838;
}
#footer-form :-ms-input-placeholder {
  /* IE 10+ */
  color: #383838;
}
#footer-form :-moz-placeholder {
  /* Firefox 18- */
  color: #383838;
}
#footer-form .gform_wrapper.gf_browser_chrome .gfield_checkbox li input, #footer-form .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], #footer-form .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
  margin-top: 0;
}
#footer-form .gform_wrapper .gform_footer input.button, #footer-form .gform_wrapper .gform_footer input[type=submit], #footer-form .gform_wrapper .gform_page_footer input.button, #footer-form .gform_wrapper .gform_page_footer input[type=submit] {
  background: #43b2ce;
  color: white;
  font-size: 20px;
  min-width: 195px;
  box-shadow: none;
  border: 1px solid #43b2ce;
  padding: 6px 35px 6px 35px;
  border-radius: 30px 30px 30px 30px;
}
@media only screen and (min-width: 641px) {
  #footer-form .gform_wrapper .top_label li.gfield.gf_left_half {
    padding-right: 30px;
  }
}
#footer-form .gform_validation_errors,
#footer-form .gform_wrapper .validation_message {
  display: none;
}
#footer-form .gform_wrapper .gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
#footer-form .gform_wrapper .gfield_error select,
#footer-form .gform_wrapper .gfield_error textarea {
  border: 1px solid #c02b0a;
  background: #e01515;
  background: linear-gradient(315deg, rgba(224, 21, 21, 0.2833508403) 15%, rgba(232, 18, 129, 0) 100%);
}
#footer-form .gform_footer {
  margin-top: 0;
  padding-top: 10px;
}

#getmore-form-ap .gfield, #checklist-form .gfield {
  margin-bottom: 20px;
}
#getmore-form-ap .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), #checklist-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-bottom: 1px solid #20648a;
  color: #030303;
}
#getmore-form-ap .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).datepicker, #checklist-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).datepicker {
  width: 100%;
}
#getmore-form-ap .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus::-webkit-input-placeholder, #checklist-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(3, 3, 3, 0.5);
}
#getmore-form-ap .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus::-moz-placeholder, #checklist-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(3, 3, 3, 0.5);
}
#getmore-form-ap .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus:-ms-input-placeholder, #checklist-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(3, 3, 3, 0.5);
}
#getmore-form-ap .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus:-moz-placeholder, #checklist-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(3, 3, 3, 0.5);
}
#getmore-form-ap .gchoice label, #checklist-form .gchoice label {
  color: #030303;
}
#getmore-form-ap .gform_wrapper select, #checklist-form .gform_wrapper select {
  background: transparent;
  color: #030303;
  border-bottom: 1px solid #20648a;
}
#getmore-form-ap .gform_wrapper select option, #checklist-form .gform_wrapper select option {
  color: #9B7CB3;
}
#getmore-form-ap .gform_wrapper select:focus-visible, #checklist-form .gform_wrapper select:focus-visible {
  outline: none;
}
#getmore-form-ap .gform_wrapper textarea, #checklist-form .gform_wrapper textarea {
  background: transparent;
  color: #303030;
  border: none;
  border-bottom: 1px solid #20648a;
}
#getmore-form-ap .gform_wrapper textarea:focus-visible, #checklist-form .gform_wrapper textarea:focus-visible {
  outline: none;
}
#getmore-form-ap .gfield_label, #checklist-form .gfield_label {
  color: #303030;
  font-weight: 400;
}
#getmore-form-ap .ginput_container_checkbox, #checklist-form .ginput_container_checkbox {
  margin-top: 0;
}
#getmore-form-ap ::-webkit-input-placeholder, #checklist-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #303030;
}
#getmore-form-ap ::-moz-placeholder, #checklist-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #303030;
}
#getmore-form-ap :-ms-input-placeholder, #checklist-form :-ms-input-placeholder {
  /* IE 10+ */
  color: #303030;
}
#getmore-form-ap :-moz-placeholder, #checklist-form :-moz-placeholder {
  /* Firefox 18- */
  color: #303030;
}

@media (min-width: 841px) {
  #checklist-form .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 45px;
  }
}
#checklist-form .gfield {
  margin-bottom: 30px;
}

.footer_area {
  padding: 50px 0 55px 0;
  background-color: #6675b4;
  color: white;
}
@media (max-width: 1500px) {
  .footer_area {
    padding: 25px 45px 35px 45px;
  }
}
@media (max-width: 768px) {
  .footer_area {
    padding: 25px 0px 35px 0px;
  }
}
.footer_area ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer_area a {
  color: white;
}
.footer_area__social-links {
  padding: 0;
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  list-style: none;
}
.footer_area__social-links li {
  margin-right: 10px;
}
.footer_area__social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #43b2ce;
}
.footer_area__social-links li svg {
  width: 18px;
  fill: #ffffff;
}
.footer_area .widget h3 {
  font-size: 28px;
  font-weight: 500;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1500px) {
  .footer_area .widget h3 {
    font-size: 25px;
  }
}
.footer_area .widget h3::before {
  content: "";
  position: absolute;
  left: 35%;
  bottom: -4px;
  width: 15px;
  height: 10px;
  border-radius: 20px;
  background-color: #43b2ce;
  box-shadow: 0px 0px 0px 5px #6675b4;
  z-index: 5;
}
.footer_area .widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 1px;
  background: #0ecece;
  z-index: 4;
}
.footer_area .widget .menu li {
  line-height: 2;
}

.footer_bottom {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #43b2ce;
  color: #ffffff;
}
.footer_bottom .footer_bottom_copyright {
  text-align: left;
}
@media (max-width: 768px) {
  .footer_bottom .footer_bottom_copyright {
    text-align: center;
  }
}
.footer_bottom .footer_bottom_copyright .copyright {
  margin-bottom: 0;
}
.footer_bottom .footer_bottom_nav {
  text-align: right;
}
@media (max-width: 768px) {
  .footer_bottom .footer_bottom_nav {
    text-align: center;
  }
}
.footer_bottom .footer_bottom_nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer_bottom .footer_bottom_nav li {
  display: inline-block;
  margin-right: 15px;
}
.footer_bottom .footer_bottom_nav li a {
  color: #ffffff;
}
.footer_bottom .footer_bottom_nav li:last-of-type {
  margin-right: 0;
}

.backtotop {
  position: fixed;
  bottom: -60px;
  right: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  font-size: 40px;
  background-color: #0ecece;
  color: #fff;
  cursor: pointer;
  visibility: hidden;
  z-index: 100;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  transition: all 300ms linear 0ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backtotop::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #0ecece;
}
.backtotop svg {
  fill: #ffffff;
  width: 25px;
  height: 25px;
}
.backtotop.on {
  visibility: visible;
  bottom: 20px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
.backtotop:hover {
  color: rgba(255, 255, 255, 0.5);
}
.backtotop:hover svg {
  -webkit-animation-name: shakeitY;
          animation-name: shakeitY;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes shakeitY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -2px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 2px, 0);
  }
}

@keyframes shakeitY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -2px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 2px, 0);
  }
}
/* .elementor .elementor-section-wrap{
    .elementor-top-section {
        &.elementor-section-boxed {
            @media(min-width: 1200px) {
                padding-left: 45px;
                padding-right: 45px;
            }
            @media(max-width: 1200px) {
                padding-left: 10px;
                padding-right: 10px;
            }
        }
    }
} */
/*
Default widget Alter
*/
.elementor-tab-content {
  border-top: 1px solid #d4d4d4;
}

.ico-mt-5 .elementor-accordion-icon {
  margin-top: 5px;
}

/*
Testimonial Swiper
*/
.testimonial-swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0 !important;
}
.testimonial-swiper.with-dot {
  padding-bottom: 75px;
}
.testimonial-swiper .swiper-slide {
  height: auto;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.testimonial-swiper .testimonial {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 0px 9px -4px rgba(0, 0, 0, 0.5);
}
.testimonial-swiper .testimonial p {
  font-size: 16px;
  line-height: 1.8;
}
.testimonial-swiper .testimonial__footer {
  display: flex;
  align-items: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ccc;
  position: relative;
}
.testimonial-swiper .testimonial__footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.testimonial-swiper .testimonial__img {
  width: 75px;
  height: 75px;
  margin-right: 15px !important;
}
.testimonial-swiper .testimonial__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial-swiper .testimonial__ico {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65px;
  height: 65px;
}
@media (max-width: 480px) {
  .testimonial-swiper .testimonial__ico {
    bottom: 28px;
    right: 0;
    width: 38px;
    height: 38px;
  }
}
.testimonial-swiper .testimonial__ico path {
  fill: #6675b4;
}
.testimonial-swiper .testimonial h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  color: #383838;
}
.testimonial-swiper .testimonial p {
  font-size: 18px;
}
.testimonial-swiper .testimonial .testimonial__author h2 {
  font-size: 22px;
}
.testimonial-swiper .testimonial .testimonial__author p {
  font-size: 16px;
  margin: 0;
}

.testimonial-wrap .swiper-pagination-bullets {
  position: absolute;
  text-align: center;
  bottom: 21px;
  z-index: 888;
  left: 0;
  right: 0;
}
.testimonial-wrap .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #43b2ce;
  margin: 0 5px;
}

.tswiper-arrows {
  margin-top: 45px;
  text-align: center;
  /*  .tswiper-button-next,
      .tswiper-button-prev {
          position: static;
          background-image: none;
          display: inline-block;
          width: 40px;
          height: auto;
          margin: 0 15px;
      } */
}
.tswiper-arrows .swiper-button {
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
  z-index: 9999;
}
.tswiper-arrows .swiper-button::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #0ecece;
}
.tswiper-arrows .swiper-button svg,
.tswiper-arrows .swiper-button path {
  color: #0ecece;
  fill: #0ecece;
}

/*Service Swiper*/
.service-swiper {
  width: 100%;
  height: 100%;
}
.service-swiper.with-nav {
  padding-top: 75px;
}
.service-swiper .swiper-slide {
  height: auto;
  text-align: center;
  font-size: 18px;
  padding: 0 15px;
  background: transparent;
  display: flex;
  flex-direction: column;
  /*  -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; */
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.service-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 10px;
}
.service-swiper .swiper-slide img {
  border-radius: 30px;
}
.service-swiper .swiper-slide .el-blog-desc {
  padding: 0 12px;
}
.service-swiper .swiper-slide h2 {
  line-height: 1.5;
}
.service-swiper .swiper-slide h2 a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #383838;
  margin: 15px 0;
}
.service-swiper .swiper-pagination-bullets {
  position: static;
}

.service-swiper-wrap .sswiper-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
}
.service-swiper-wrap .sswiper-arrows .sswiper-button-next,
.service-swiper-wrap .sswiper-arrows .sswiper-button-prev {
  position: absolute;
  display: flex;
  border: 1px solid #43b2ce;
  background-image: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.service-swiper-wrap .sswiper-arrows .sswiper-button-next svg,
.service-swiper-wrap .sswiper-arrows .sswiper-button-prev svg {
  fill: #43b2ce;
}
.service-swiper-wrap .sswiper-arrows .sswiper-button-next {
  right: -70px;
}
.service-swiper-wrap .sswiper-arrows .sswiper-button-prev {
  left: -70px;
}

/*blog Swiper*/
.blog-swiper {
  width: 100%;
  height: 100%;
}
.blog-swiper.with-nav {
  padding-top: 75px;
}
.blog-swiper.with-dot {
  padding-bottom: 75px;
}
.blog-swiper .swiper-slide {
  font-size: 18px;
  padding: 0 0 20px 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.blog-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 10px;
}
.blog-swiper .swiper-slide img {
  border-radius: 10px;
}
.blog-swiper .swiper-slide .el-blog-desc {
  padding: 25px 20px;
  margin: -50px 15px 0 15px;
  background: white;
  position: relative;
  z-index: 8;
  border-radius: 15px;
  box-shadow: 0px 5px 22px -15px rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
}
.blog-swiper .swiper-slide .el-blog-desc .date {
  color: #833b7b;
  font-size: 18px;
}
.blog-swiper .swiper-slide .el-blog-desc .read-more {
  padding-top: 12px;
  margin-top: 10px;
  position: relative;
  font-size: 16px;
}
.blog-swiper .swiper-slide .el-blog-desc .read-more::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: -4px;
  width: 20px;
  height: 8px;
  border-radius: 20px;
  background-color: #cecece;
  box-shadow: 0px 0px 0px 5px #ffffff;
  z-index: 5;
}
.blog-swiper .swiper-slide .el-blog-desc .read-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cecece;
  z-index: 4;
}
.blog-swiper .swiper-slide h2 a {
  display: block;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #383838;
  margin: 15px 0;
}
.blog-swiper .swiper-slide:hover .el-blog-desc {
  background-color: #6675b4;
  transition: all 0.2s;
}
.blog-swiper .swiper-slide:hover .el-blog-desc .date {
  color: white;
}
.blog-swiper .swiper-slide:hover .el-blog-desc a {
  color: white;
}
.blog-swiper .swiper-slide:hover .el-blog-desc .read-more::before {
  background-color: #fff;
  box-shadow: 0px 0px 0px 5px #6675b4;
  z-index: 5;
}
.blog-swiper .swiper-slide:hover .el-blog-desc .read-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 4;
}
.blog-swiper .swiper-pagination-bullets {
  position: absolute;
  text-align: center;
}
.blog-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #43b2ce;
}
.blog-swiper .bswiper-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  text-align: center;
  /*   .bswiper-button-next,
          .bswiper-button-prev  {
              position: static;
              display: inline-block;
              background-image: none;
                  width: 40px;
              height: auto;
              margin: 0 15px;
          } */
}
.blog-swiper .bswiper-arrows .swiper-button {
  width: 50px;
  height: 50px;
  border: 1px solid #43b2ce;
  border-radius: 50%;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}
.blog-swiper .bswiper-arrows .swiper-button::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
}
.blog-swiper .bswiper-arrows .swiper-button svg,
.blog-swiper .bswiper-arrows .swiper-button path {
  color: #43b2ce;
  fill: #43b2ce;
}

/*Process Swiper*/
.process-swiper {
  width: 100%;
  height: 100%;
  margin-left: 75px;
  margin-right: auto;
  position: relative;
}
.process-swiper .swiper-slide {
  text-align: left;
  font-size: 18px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.process-swiper .swiper-slide .pslide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 40px;
  justify-content: flex-end;
  transform: translateY(5%);
  transition: all 0.2s;
}
.process-swiper .swiper-slide .pslide-overlay a {
  color: #fff;
  /*  display: inline-flex;
      width: 50px;
      height: 50px;
      border: 1px solid #fff;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all .2s; */
}
.process-swiper .swiper-slide .pslide-overlay a svg {
  fill: #ffffff;
}
.process-swiper .swiper-slide .pslide-overlay .pslide__content {
  color: #ffffff;
  line-height: 1.5;
}
.process-swiper .swiper-slide .pslide-overlay .pslide__content,
.process-swiper .swiper-slide .pslide-overlay .pslide__content-more {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.process-swiper .swiper-slide .pslide-overlay .pslide__content-more a {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s;
}
.process-swiper .swiper-slide .pslide-overlay .pslide__content-more a svg {
  fill: #ffffff;
}
.process-swiper .swiper-slide:hover .pslide-overlay {
  background: #17bcbd;
  background: linear-gradient(0deg, rgba(23, 188, 189, 0.3869922969) 13%, rgba(153, 82, 152, 0.6418942577) 86%, rgba(232, 18, 129, 0.4514180672) 100%);
  transform: translateY(0);
  transition: all 0.2s;
}
.process-swiper .swiper-slide:hover .pslide-overlay a {
  opacity: 1;
  transition: all 0.2s;
}
.process-swiper .swiper-slide:hover .pslide-overlay .pslide__content,
.process-swiper .swiper-slide:hover .pslide-overlay .pslide__content-more {
  height: auto;
  overflow: hidden;
  opacity: 1;
  transition: all 0.2s;
}
.process-swiper .swiper-slide h2 {
  display: block;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin: 15px 0;
  max-width: 500px;
}
.process-swiper .swiper-slide p {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  color: #fff;
}
.process-swiper .swiper-slide h5 {
  font-size: 35px;
  line-height: 1;
  margin: 0;
  font-weight: 400;
  color: white;
}

.pswiper-arrows {
  position: absolute;
  left: -145px;
  bottom: 0;
}
@media (max-width: 480px) {
  .pswiper-arrows {
    left: 0;
    bottom: -80px;
  }
}
.pswiper-arrows .swiper-button {
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}
.pswiper-arrows .swiper-button::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
}
.pswiper-arrows .swiper-button svg,
.pswiper-arrows .swiper-button path {
  color: #ffffff;
  fill: #ffffff;
}

/*
Hero Slider
*/
.hero-slider {
  width: 100%;
  height: 70vh;
  background-color: white;
}
@media (max-width: 480px) {
  .hero-slider.with-nav {
    padding-bottom: 75px;
  }
}
.hero-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;
}
.hero-slider .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
@media (max-width: 1400px) {
  .hero-slider .swiper-slide img {
    -o-object-position: 67% 55%;
       object-position: 67% 55%;
  }
}
.hero-slider .hero-captions {
  max-width: 1140px;
  padding-left: 15px;
  padding-right: 15px;
  height: 100%;
  margin: 0 auto;
}
.hero-slider .hero-captions__content {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 999;
}
.hero-slider .hero-captions__content h2 {
  font-size: 3.75rem;
  line-height: 1.2;
  font-weight: 900;
  color: white;
  opacity: 0;
  transform: translateX(100%);
  transition: all ease 0.2s;
}
@media (max-width: 768px) {
  .hero-slider .hero-captions__content h2 {
    font-size: 3.25rem;
    line-height: 1.2;
  }
}
.hero-slider .hero-captions__content h5 {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
  color: white;
  opacity: 0;
  transform: translateX(110%);
  transition: all ease 0.2s;
}
@media (max-width: 768px) {
  .hero-slider .hero-captions__content h5 {
    font-size: 1.375rem;
    line-height: 1.2;
  }
}
.hero-slider .hero-captions__buttons {
  margin-top: 5px;
  transform: translateY(100%);
  transition: all ease 0.2s;
}
.hero-slider .hero-captions__buttons a {
  display: inline-block;
  background-color: #833b7b;
  padding: 5px 25px 5PX;
  border-radius: 35px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  min-width: 190px;
  text-align: center;
  margin: 5px 10px 5px 0;
}
.hero-slider .hero-captions__buttons a:last-of-type {
  margin-right: 0;
}
@media (max-width: 480px) {
  .hero-slider .hero-captions__buttons a {
    padding: 8px 28px 10PX;
    font-size: 16px;
    min-width: 150px;
  }
}
.hero-slider .swiper-lazy {
  opacity: 0;
  transition: opacity 700ms ease-in-out;
}
.hero-slider .swiper-lazy-loaded {
  opacity: 1 !important;
}
.hero-slider .swiper-slide-active .hero-captions__content h2 {
  transform: translateX(0);
  opacity: 1;
  transition: all ease 900ms;
}
.hero-slider .swiper-slide-active .hero-captions__content h5 {
  transform: translateX(0);
  opacity: 1;
  transition: all ease 1000ms;
}
.hero-slider .swiper-slide-active .hero-captions__buttons {
  transform: translateY(0);
  transition: all ease 1000ms;
}
.hero-slider .hero-swiper-pagination {
  position: absolute;
  z-index: 5;
  text-align: center;
}
.hero-slider .hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 10px;
}
.hero-slider .hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  transition: all ease 600ms;
}

.hswiper-arrows {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 6;
}
@media (max-width: 480px) {
  .hswiper-arrows {
    bottom: 3%;
    text-align: center;
  }
}
.hswiper-arrows .swiper-button {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}
@media (max-width: 480px) {
  .hswiper-arrows .swiper-button {
    border: 1px solid #0ecece;
    background-color: #0ecece;
  }
}
.hswiper-arrows .swiper-button::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media (max-width: 480px) {
  .hswiper-arrows .swiper-button::before {
    border: 1px solid #0ecece;
  }
}
.hswiper-arrows .swiper-button svg,
.hswiper-arrows .swiper-button path {
  color: #6675b4;
  fill: #6675b4;
}
@media (max-width: 480px) {
  .hswiper-arrows .swiper-button svg,
.hswiper-arrows .swiper-button path {
    color: #ffffff;
    fill: #ffffff;
  }
}

.el-blog-desc a {
  text-align: left;
}

.cairs-tabs-horizontal-boxed .cairs-tabs-content {
  max-width: 1400px;
  margin: 0 auto;
}

/**
Advanced Tabs
*/
.cairs-advance-tabs {
  display: block;
}

.cairs-advance-tabs .cairs-tabs-nav > ul {
  position: relative;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}

.cairs-advance-tabs .cairs-tabs-nav > ul li {
  position: relative;
  padding: 1em 1.5em;
  flex: 1 1 auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #1c508a;
  color: #fff;
}
.cairs-advance-tabs .cairs-tabs-nav > ul li:last-child {
  border-right: none !important;
}

.cairs-advance-tabs .cairs-tabs-nav > ul li:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  z-index: 1;
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #444;
  border-bottom: 0px;
  display: none;
}

.cairs-advance-tabs .cairs-tabs-nav > ul li:hover,
.cairs-advance-tabs .cairs-tabs-nav > ul li.active,
.cairs-advance-tabs .cairs-tabs-nav > ul li.active-default {
  background-color: #8c4469;
}

.cairs-advance-tabs.active-caret-on .cairs-tabs-nav > ul li.active:after,
.cairs-advance-tabs.active-caret-on .cairs-tabs-nav > ul li.active-default:after {
  display: none;
}

.cairs-advance-tabs .cairs-tabs-nav > ul li.active:after,
.cairs-advance-tabs .cairs-tabs-nav > ul li.active-default:after {
  display: none;
}

.cairs-tabs-content {
  display: flex;
  flex: 1 1 auto;
  overflow: hidden;
}

.cairs-advance-tabs .cairs-tabs-content > div {
  display: none;
  opacity: 0;
}

.cairs-advance-tabs .cairs-tabs-content > div.active,
.cairs-advance-tabs .cairs-tabs-content > div.active-default {
  display: block;
  width: 100%;
  padding: 1em;
  opacity: 1;
  -webkit-animation: fadeIn linear 0.3s;
  animation: fadeIn linear 0.3s;
}

/*--- Inline Icon ---*/
.cairs-tab-inline-icon li a .fa {
  margin-right: 10px;
  line-height: 1;
}

.cairs-tab-top-icon li {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.cairs-tab-top-icon li a {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.cairs-tab-top-icon li .fa,
.cairs-tab-top-icon li .cairs-tab-title {
  flex: 1 1 100%;
  line-height: 1;
}

.cairs-tab-top-icon li a .cairs-tab-title {
  margin-top: 10px;
}

/*--- Vertical Tabs ---*/
.cairs-advance-tabs.cairs-tabs-vertical {
  display: flex;
}

.cairs-advance-tabs.cairs-tabs-vertical > .cairs-tabs-nav {
  flex: 0 0 auto;
}

.cairs-advance-tabs.cairs-tabs-vertical > .cairs-tabs-nav > ul {
  flex-flow: column wrap;
}

.cairs-advance-tabs.cairs-tabs-vertical > .cairs-tabs-nav > ul > li {
  width: 100%;
  justify-content: start;
}

.cairs-advance-tabs.cairs-tabs-vertical > .cairs-tabs-nav > ul li::after {
  bottom: auto !important;
  right: -10px;
  top: calc(50% - 10px);
  left: auto !important;
  border-left: 10px solid #444;
  border-right: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@media only screen and (max-width: 767px) {
  .cairs-advance-tabs .cairs-tabs-nav > ul {
    flex-wrap: wrap;
    flex-flow: row wrap;
  }

  .cairs-advance-tabs .cairs-tabs-nav > ul li {
    flex: 1 1 auto;
  }

  .responsive-vertical-layout.cairs-advance-tabs .cairs-tabs-nav > ul li {
    flex: 1 1 100%;
  }

  .cairs-advance-tabs.cairs-tabs-vertical {
    flex-wrap: wrap;
  }

  .cairs-advance-tabs.cairs-tabs-vertical div.cairs-tabs-nav {
    flex: 1 100%;
  }

  .cairs-advance-tabs.cairs-tabs-vertical ul {
    flex: 1 100%;
  }

  .cairs-advance-tabs.cairs-tabs-vertical ul li {
    flex: 1 100%;
  }

  div.cairs-advance-tabs.cairs-tabs-vertical div.cairs-tabs-nav > ul li::after {
    border-left-color: transparent !important;
    bottom: -20px !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top-color: #444 !important;
  }
}
.rtl .cairs-advance-tabs.cairs-tabs-vertical > .cairs-tabs-nav > ul li::after {
  border-right: 10px solid #444;
  border-left: 0;
}

.text-left.elementor-widget-image-box .elementor-image-box-wrapper {
  text-align: left;
}
.text-left.elementor-widget-icon-box .elementor-icon-box-wrapper {
  text-align: left;
}

.imgboxY-100 .elementor-widget-image-box {
  height: 100%;
}
.imgboxY-100 .elementor-widget-image-box > div {
  height: 100%;
}

/**
Imagebox - Add SubtitleBox
**/
/* .imgbox_has_subtitle{

    .elementor-image-box-content {
        position: relative;
        &::before {
            content: attr(data-imgbox_subitle);
        }
    }

} */
.elementor-widget-cairs-image-box {
  /* height: 100%;
   > .elementor-widget-container {
      height: 100%;
  } */
}
.elementor-widget-cairs-image-box.elementor-vertical-align-top .elementor-image-box-wrapper {
  align-items: flex-start;
}
.elementor-widget-cairs-image-box .elementor-image-box-wrapper {
  text-align: center;
}
.elementor-widget-cairs-image-box .elementor-image-box-img {
  display: inline-block;
}
.elementor-widget-cairs-image-box .elementor-image-box-content {
  width: 100%;
}
.elementor-widget-cairs-image-box .elementor-image-box-title {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
  color: #383838;
}
.elementor-widget-cairs-image-box .elementor-image-box-title::after {
  content: "";
  width: 65px;
  height: 3px;
  background-color: #6675b4;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .elementor-widget-cairs-image-box .elementor-image-box-title::after {
    left: calc(50% - 32px);
  }
}
.elementor-widget-cairs-image-box .elementor-image-box-title a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.elementor-widget-cairs-image-box .elementor-image-box-description {
  margin: 0 0 15px 0;
}
.elementor-widget-cairs-image-box .img-box-more {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6675b4;
  border-radius: 50%;
}
@media (max-width: 480px) {
  .elementor-widget-cairs-image-box .img-box-more {
    margin: 0 auto;
  }
}
.elementor-widget-cairs-image-box .img-box-more svg {
  fill: #ffffff;
}
@media (min-width: 768px) {
  .elementor-widget-cairs-image-box.elementor-position-left .elementor-image-box-wrapper {
    display: flex;
    text-align: left;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .elementor-widget-cairs-image-box.elementor-position-left .elementor-image-box-wrapper {
    text-align: left;
    flex-direction: row;
  }
}
.elementor-widget-cairs-image-box.elementor-position-right .elementor-image-box-wrapper .elementor-image-box-title::after {
  left: auto;
  right: 0;
}
@media (max-width: 480px) {
  .elementor-widget-cairs-image-box.elementor-position-right .elementor-image-box-wrapper .elementor-image-box-title::after {
    right: calc(50% - 32px);
  }
}
.elementor-widget-cairs-image-box.elementor-position-right .elementor-image-box-wrapper .img-box-more {
  margin-left: auto;
}
@media (min-width: 768px) {
  .elementor-widget-cairs-image-box.elementor-position-right .elementor-image-box-wrapper {
    display: flex;
    text-align: right;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .elementor-widget-cairs-image-box.elementor-position-right .elementor-image-box-wrapper {
    text-align: right;
    flex-direction: row-reverse;
  }
}
.elementor-widget-cairs-image-box .cairs-image-box-subhead h5 {
  position: relative;
  text-transform: uppercase;
  z-index: 1;
  color: #833b7b;
}
.elementor-widget-cairs-image-box .cairs-image-box-subhead h5::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.elementor-widget-cairs-image-box .cairs-image-box-subhead h5 span {
  padding: 0 35px;
  background: white;
}

/*
Cairs Buttons
*/
.cairs-buttons-group {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
}
.cairs-buttons-group a,
.cairs-buttons-group a:hover {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.cairs-buttons-group .cairs-button {
  display: flex;
}
.cairs-buttons-group .cairs-button .cairs-button-content-wrapper .cairs-button-content-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .cairs-buttons-group */
.cairs-buttons-valign-top .cairs-buttons-group {
  align-items: flex-start;
}

.cairs-buttons-valign-middle .cairs-buttons-group {
  align-items: center;
}

.cairs-buttons-valign-bottom .cairs-buttons-group {
  align-items: flex-end;
}

.cairs-buttons-valign-stretch .cairs-buttons-group {
  align-items: stretch;
}

.cairs-buttons-valign-stretch .cairs-buttons-group .cairs-button-content-wrapper {
  align-items: center;
}

@media (min-width: 1025px) {
  .cairs-buttons-halign-left .cairs-buttons-group {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .cairs-buttons-halign-tablet-left .cairs-buttons-group {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .cairs-buttons-halign-mobile-left .cairs-buttons-group {
    justify-content: flex-start;
  }
}

@media (min-width: 1025px) {
  .cairs-buttons-halign-center .cairs-buttons-group {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .cairs-buttons-halign-tablet-center .cairs-buttons-group {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .cairs-buttons-halign-mobile-center .cairs-buttons-group {
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .cairs-buttons-halign-right .cairs-buttons-group {
    justify-content: flex-end;
  }
}

@media (max-width: 1024px) {
  .cairs-buttons-halign-tablet-right .cairs-buttons-group {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .cairs-buttons-halign-mobile-right .cairs-buttons-group {
    justify-content: flex-end;
  }
}

@media (min-width: 1025px) {
  .cairs-buttons-halign-stretch .cairs-buttons-group {
    justify-content: stretch;
  }
}

@media (max-width: 767px) {
  .cairs-buttons-halign-mobile-stretch .cairs-buttons-group {
    justify-content: stretch;
  }
}

@media (min-width: 1025px) {
  .cairs-buttons-halign-stretch .cairs-button {
    flex-grow: 1;
  }
}

@media (max-width: 767px) {
  .cairs-buttons-halign-mobile-stretch .cairs-button {
    flex-grow: 1;
  }
}

.cairs-buttons-stack-desktop .cairs-buttons-group {
  flex-direction: column;
}
.cairs-buttons-stack-desktop .cairs-button {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cairs-buttons-stack-desktop.cairs-buttons-halign-left .cairs-buttons-group {
  align-items: flex-start;
}
.cairs-buttons-stack-desktop.cairs-buttons-halign-center .cairs-buttons-group {
  align-items: center;
}
.cairs-buttons-stack-desktop.cairs-buttons-halign-right .cairs-buttons-group {
  align-items: flex-end;
}
.cairs-buttons-stack-desktop.cairs-buttons-halign-stretch .cairs-buttons-group {
  align-items: stretch;
}
.cairs-buttons-stack-desktop.cairs-buttons-halign-stretch .cairs-button {
  flex-grow: 1;
}

/*
Cairs Business Hours
*/
.cairs-business-hours {
  position: relative;
  min-height: 50px;
  width: 100%;
  background: transparent;
}
.cairs-business-hours .cairs-business-day,
.cairs-business-hours .cairs-business-timing {
  float: left;
  width: 50%;
}
.cairs-business-hours .cairs-business-timing {
  text-align: right;
}
.cairs-business-hours .day-wraps {
  background-color: transparent;
  transition: all 0.2s;
  background: #ffffff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}
.cairs-business-hours .day-wraps > div {
  display: none;
}
.cairs-business-hours .day-wraps > div.today {
  display: block;
  background: #ffffff;
}
.cairs-business-hours.opendays .day-wraps {
  background-color: #ffffff;
  /*  transform: translateY(-29%); */
  transition: all 0.2s;
}
.cairs-business-hours.opendays .day-wraps > div {
  display: block;
}
.cairs-business-hours.opendays .day-wraps .today {
  background: #43b2ce;
  color: #ffffff;
}

/*
Extending Default Widgets
*/
.skimgbox-style-one .elementor-image-box-content {
  background: #f4f7f9;
  padding: 50% 0 5% 0;
  margin-top: -48%;
  border-radius: 15px;
}
.skimgbox-style-one .elementor-image-box-content .elementor-image-box-title {
  font-size: 26px;
  font-weight: 600;
}

#map {
  min-height: 500px;
  height: 100%;
}

.cairs-map-widget {
  position: relative;
  overflow: hidden;
}

.map-container .elementor-widget-wrap > div,
.map-container .elementor-widget-wrap > div > div,
.map-container .elementor-widget-wrap > div > div > div,
.map-container .elementor-widget-wrap > div > div > div > iframe {
  height: 100%;
}

.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
}

.leaflet-popup-content {
  width: 250px;
  height: auto;
  color: #383838;
  font-size: 16px;
  line-height: 1.5;
}
.leaflet-popup-content svg {
  height: 20px;
  width: 20px;
  fill: #43b2ce;
  margin-right: 10px;
}
.leaflet-popup-content strong {
  font-size: 18px;
  color: #6675b4;
  margin-bottom: 10px;
}
.leaflet-popup-content p {
  color: #383838;
  margin: 6px 0 0 0 !important;
  font-size: 16px;
}
.leaflet-popup-content .map_address {
  display: flex;
  margin-top: 10px;
}
.leaflet-popup-content .map_address p {
  margin: 0 !important;
  font-size: 16px;
  line-height: 1.3;
}
.leaflet-popup-content .map_address svg {
  height: 33px;
  width: 23px;
  margin-right: 7px;
}

/*
History Time Line
*/
.cairs-process-steps__inner:last-child .cairs-process-steps__right {
  padding-bottom: 0;
}
.cairs-process-steps__inner:last-child .cairs-process-steps__right::after {
  height: 95.5%;
}
.cairs-process-steps__details h4 {
  font-size: 30px;
  line-height: 30px;
  color: #43B2CE;
  margin-bottom: 20px;
  margin-top: 10px;
}
.cairs-process-steps__details .label {
  display: inline-block;
  font-size: 26px;
  font-weight: 600;
  line-height: 46px;
  font-family: Maven Pro, sans-serif;
  position: relative;
  background: #DF61AE;
  padding: 0px 20px;
  color: #fff;
  margin-top: 0;
}
.cairs-process-steps__details .label::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #DF61AE;
}
@media (max-width: 768px) {
  .cairs-process-steps__details .label::after {
    display: block;
    margin-bottom: 15px;
    right: auto;
    left: -7px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: none;
    border-right: 7px solid #DF61AE;
  }
}
@media (max-width: 768px) {
  .cairs-process-steps__left .label {
    display: none;
  }
}
.cairs-process-steps__right {
  padding-bottom: 50px;
  padding-left: 70px;
}
@media (max-width: 768px) {
  .cairs-process-steps__right {
    padding-left: 30px;
  }
}
.cairs-process-steps__right::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 5px;
  z-index: 2;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-sizing: content-box;
  border: 3px solid #DF61AE;
}
.cairs-process-steps__right::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 12px;
  z-index: 1;
  width: 1px;
  height: 100%;
  background: #43B2CE;
}
@media (min-width: 768px) {
  .cairs-process-steps__right .label {
    display: none;
  }
}

#pf-badge-families .pf-item {
  padding: 7px 15px;
}
#pf-badge-families .pf-item .pf-item-title h5 {
  font-weight: 600;
  font-size: 18px;
}
#pf-badge-families .pf-item img.pf-item-img {
  border-radius: 5%;
}
#pf-badge-families .pf-item .pf-item-label {
  border-radius: 0 0 16px 12px;
}
#pf-badge-families .carouselItem .pf-item-inner {
  border-radius: 5%;
  border: 2px solid transparent;
  box-shadow: none;
}

.sp-play-icon .eicon-play {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(131, 59, 123, 0.5);
  font-size: inherit;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
.sp-play-icon .eicon-play::before {
  content: url(../img/play.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.sp-play-icon .eicon-play::after {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  bottom: -13px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.sp-play-icon .elementor-custom-embed-play::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.VueCarousel-navigation {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  text-align: center;
}
.VueCarousel-navigation .VueCarousel-navigation-button {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #43B2CE !important;
  line-height: 1;
  outline: none !important;
  font-size: 0;
}
.VueCarousel-navigation .VueCarousel-navigation-button:focus, .VueCarousel-navigation .VueCarousel-navigation-button:active, .VueCarousel-navigation .VueCarousel-navigation-button:visited {
  outline: none;
}
.VueCarousel-navigation .VueCarousel-navigation-button img.emoji {
  display: none !important;
}
.VueCarousel-navigation .VueCarousel-navigation-button.VueCarousel-navigation-prev {
  left: auto;
  transform: translateY(0%) translateX(-115%);
}
.VueCarousel-navigation .VueCarousel-navigation-button.VueCarousel-navigation-prev::before {
  content: url("../img/arrow-left-sw.svg");
}
.VueCarousel-navigation .VueCarousel-navigation-button.VueCarousel-navigation-next {
  right: auto;
  transform: translateY(0%) translateX(25%);
}
.VueCarousel-navigation .VueCarousel-navigation-button.VueCarousel-navigation-next::before {
  content: url("../img/arrow-right-sw.svg");
}

.surrogacy-cat-links .elementor-image-box-content {
  position: absolute;
  bottom: -18px;
  background: white;
  border-radius: 15px;
  left: 15px;
  right: 15px;
  width: auto !important;
  border: 1px solid #e0e0e0;
  padding: 15px 0;
}
.surrogacy-cat-links .elementor-image-box-content h3 {
  margin: 0;
}

#team-details {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #ffffff;
}
#team-details .container {
  position: relative;
}
@media (max-width: 768px) {
  #team-details {
    display: none;
  }
}
#team-details .tmswiper-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  text-align: center;
}
#team-details .tmswiper-arrows .tmswiper-button-next,
#team-details .tmswiper-arrows .tmswiper-button-prev {
  position: absolute;
  display: flex;
  border: 1px solid #0ecece;
  background-color: #0ecece;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#team-details .tmswiper-arrows .tmswiper-button-next::after,
#team-details .tmswiper-arrows .tmswiper-button-prev::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  z-index: -1;
  border: 1px solid #0ecece;
  border-radius: 50%;
}
#team-details .tmswiper-arrows .tmswiper-button-next svg,
#team-details .tmswiper-arrows .tmswiper-button-prev svg {
  fill: #ffffff;
}
#team-details .tmswiper-arrows .tmswiper-button-next.swiper-button-disabled,
#team-details .tmswiper-arrows .tmswiper-button-prev.swiper-button-disabled {
  border: 1px solid #4ff3f3;
  background-color: #4ff3f3;
}
#team-details .tmswiper-arrows .tmswiper-button-next.swiper-button-disabled::after,
#team-details .tmswiper-arrows .tmswiper-button-prev.swiper-button-disabled::after {
  border: 1px solid #4ff3f3;
}
#team-details .tmswiper-arrows .tmswiper-button-next {
  right: -55px;
}
@media (max-width: 1200px) {
  #team-details .tmswiper-arrows .tmswiper-button-next {
    right: 0;
  }
}
#team-details .tmswiper-arrows .tmswiper-button-prev {
  left: -70px;
}
@media (max-width: 1200px) {
  #team-details .tmswiper-arrows .tmswiper-button-prev {
    left: 0;
  }
}

.team-details {
  /* display: none; */
  height: 0;
}
.team-details__wrap {
  margin-bottom: 45px;
  padding-top: 35px;
  padding-bottom: 35px;
  /* border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; */
}
.team-details__block {
  box-sizing: border-box;
  position: relative;
  /*  display: none; */
}
.team-details__block > .row {
  margin-bottom: 45px;
}
.team-details__block figure {
  margin: 0;
}
.team-details__block img {
  width: auto;
  max-width: 100%;
  float: left;
  margin: 0 25px 25px 0;
  border-radius: 15px !important;
}
.team-details__info {
  padding: 60px 15px 15px 15px;
  position: relative;
  background: transparent;
}
.team-details__info > div:first-of-type {
  position: relative;
}
.team-details__info h2 {
  font-size: 30px;
  font-weight: 600;
}
.team-details__info h2 span {
  display: inline-block;
  position: relative;
  color: #0ecece;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.team-details__info h2 span::before {
  content: "";
  position: absolute;
  left: calc(56px - 10px);
  bottom: -4px;
  width: 20px;
  height: 8px;
  border-radius: 20px;
  background-color: #0ecece;
  box-shadow: 0px 0px 0px 5px #ffffff;
  z-index: 5;
}
.team-details__info h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 112px;
  height: 1px;
  background: #0ecece;
  z-index: 4;
}
.team-details__info p {
  margin-bottom: 15px;
}
.team-details__info p:last-of-type {
  margin-bottom: 0;
}
.team-details__info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #833b7b;
  display: inline-block;
  position: relative;
  margin-bottom: 25px;
}
.team-details__info h3::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 3px;
  bottom: -10px;
  left: 0;
  background-color: #833b7b;
}
.team-details__close-it {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 10px 15px !important;
  border: 1px solid #833b7b !important;
  border-radius: 0 !important;
  line-height: 1 !important;
  color: #833b7b !important;
  background: transparent !important;
  font-weight: 500 !important;
  font-size: 24px !important;
  outline: none;
}
.team-details__close-it:focus, .team-details__close-it:active {
  outline: none;
}
@media (max-width: 480px) {
  .team-details__close-it {
    top: -2px;
    right: 15px;
  }
}

.team-list {
  /*  > .row {
       margin-right: -26px;
       margin-left: -26px;
       @media(max-width: 1024px) {
           margin-right: -15px;
           margin-left: -15px;
       }
   } */
  /* [class^="col-"] {
      margin-bottom: 75px;
  } */
  /* .col-md-4 {
      padding-right: 26px;
      padding-left: 26px;
      @media(max-width: 1024px) {
          padding-right: 15px;
      padding-left: 15px;
      }
  } */
}
.team-list > .row {
  margin-bottom: 35px;
}

.team_item {
  cursor: pointer;
  transition: all 0.2s;
  background-color: transparent;
}
.team_item.swiper-slide-thumb-active {
  background-color: #ffffff;
  transition: background-color 0.2s;
}
.team_item.swiper-slide-thumb-active .team-wrap__info h2 {
  color: #6675b4 !important;
}

.team-wrap {
  padding: 15px 15px 0 15px;
}
.team-wrap a {
  display: block;
}
.team-wrap figure {
  margin-bottom: 0;
  position: relative;
}
.team-wrap figure img {
  width: 100%;
  display: block;
  max-height: 388px;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-wrap__showthis {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 22px 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transform: translate(-50%, 89%);
  opacity: 0;
  transition: all 0.5s;
}
.team-wrap__showthis svg {
  overflow: visible;
}
.team-wrap__showthis .svg-arrow-up {
  transform: translate(0px, 0px);
  transition: all 0.3s;
}
.team-wrap__showthis:hover .svg-arrow-up {
  transform: translate(5px, -5px);
  transition: all 0.3s;
}
.team-wrap__info {
  padding: 20px 20px 20px 20px;
  text-align: center;
  position: relative;
  background: transparent;
}
.team-wrap__info h2 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff !important;
}
.team-wrap__info h2 a {
  color: inherit;
}
.team-wrap__excerpt p {
  line-height: 1.3;
  color: #030303;
}
.team-wrap:hover .team-wrap__showthis {
  transform: translate(-50%, -20%);
  opacity: 1;
  transition: all 0.5s;
}

.team_item.active .team-wrap {
  background-color: white;
  color: #1e1e1e;
}
.team_item.active .team-wrap h2 {
  color: #1e1e1e !important;
}

.team-detail__block:not(.active) {
  display: none;
}

@media (min-width: 768px) {
  .team_item_row {
    display: none;
  }
}
.team_item_row:not(.active) {
  width: 100%;
  display: none;
  order: 6 !important;
}

.team-detail {
  /* display: none; */
}
.team-detail__wrap {
  margin-bottom: 45px;
  padding-top: 0;
  padding-bottom: 35px;
  /* border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; */
}
.team-detail__block {
  box-sizing: border-box;
  position: relative;
  /*  display: none; */
}
.team-detail__block > .row {
  margin-bottom: 45px;
}
.team-detail__block figure {
  margin: 0;
}
.team-detail__block img {
  width: auto;
  max-width: 100%;
  float: left;
  margin: 8px 25px 35px 0;
  border-radius: 15px !important;
}
.team-detail__info {
  padding: 60px 15px 15px 15px;
  position: relative;
  background: transparent;
}
.team-detail__info > div:first-of-type {
  position: relative;
}
.team-detail__info h2 {
  font-size: 30px;
  font-weight: 600;
}
.team-detail__info h2 span {
  display: inline-block;
  position: relative;
  color: #0ecece;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.team-detail__info h2 span::before {
  content: "";
  position: absolute;
  left: calc(56px - 10px);
  bottom: -4px;
  width: 20px;
  height: 8px;
  border-radius: 20px;
  background-color: #0ecece;
  box-shadow: 0px 0px 0px 5px #ffffff;
  z-index: 5;
}
.team-detail__info h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 112px;
  height: 1px;
  background: #0ecece;
  z-index: 4;
}
.team-detail__info p {
  margin-bottom: 15px;
}
.team-detail__info p:last-of-type {
  margin-bottom: 0;
}
.team-detail__info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #833b7b;
  display: inline-block;
  position: relative;
  margin-bottom: 25px;
}
.team-detail__info h3::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 3px;
  bottom: -10px;
  left: 0;
  background-color: #833b7b;
}
.team-detail__close-it {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 10px 15px !important;
  border: 1px solid #833b7b !important;
  border-radius: 0 !important;
  line-height: 1 !important;
  color: #833b7b !important;
  background: transparent !important;
  font-weight: 500 !important;
  font-size: 24px !important;
  outline: none;
}
.team-detail__close-it:focus, .team-detail__close-it:active {
  outline: none;
}
@media (max-width: 480px) {
  .team-detail__close-it {
    top: -2px;
    right: 15px;
  }
}

.team-detail__block {
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.65s ease;
}

.team-detail__block.active {
  transform: translateX(0px);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.team_item_row {
  margin: 0;
  padding: 20px 15px;
  background-color: white;
}
.team_item_row .team-detail__image {
  display: none;
}

.tab-faqs .elementor-accordion-item {
  margin-bottom: 25px;
}
.tab-faqs .elementor-accordion .elementor-tab-title,
.tab-faqs .elementor-toggle .elementor-tab-title {
  border: 1px solid #a9b0bb !important;
}
.tab-faqs .elementor-accordion .elementor-tab-title.elementor-active,
.tab-faqs .elementor-toggle .elementor-tab-title.elementor-active {
  background-color: #833b7b;
  color: #ffffff;
}
.tab-faqs .elementor-accordion .elementor-tab-content,
.tab-faqs .elementor-toggle .elementor-tab-content {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.tab-faqs .elementor-accordion .elementor-tab-content.elementor-active,
.tab-faqs .elementor-toggle .elementor-tab-content.elementor-active {
  border: 1px solid #a9b0bb !important;
  border-top: none !important;
  box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.5);
}

.reviews {
  margin: 90px 0;
}

.review-block {
  border: 1px solid #d1d1d1;
  padding: 45px 60px 45px 60px;
  margin-bottom: 50px;
  text-align: left;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .review-block {
    padding: 35px 20px;
  }
}
.review-block h5, .review-block h6 {
  font-size: 20px;
  margin: 0;
}
.review-block h6 {
  font-weight: 400;
}
.review-block:last-child {
  margin-bottom: 0;
}

.link-to-archive {
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-to-archive a {
  display: inline-block;
  min-width: 200px;
  margin-top: 10px;
  padding: 18px 30px 18px 30px;
  border-radius: 35px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: white;
  background-color: #43b2ce;
  transition: all 0.2s;
}

.review-block-wrap .review-block {
  margin-top: 50px;
}

.pagination {
  display: block;
  text-align: center;
  margin: 25px 0;
}
.pagination .nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .nav-links .page-numbers {
  padding: 10px 15px;
  border-radius: 5px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  border: 2px solid #0ecece;
  background: #0ecece;
}
.pagination .nav-links .page-numbers.current {
  color: #0ecece;
  border: 2px solid #0ecece;
  background: #ffffff;
}

.blog-section {
  padding: 90px 45px;
}
@media (max-width: 1200px) {
  .blog-section {
    padding: 50px 0;
  }
}

.blog-item {
  margin-bottom: 50px;
}
.blog-item:last-child {
  margin-bottom: 0;
}
.blog-item__featured {
  padding: 4rem 2.5rem;
  z-index: 1;
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  min-height: 390px;
}
.blog-item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.blog-item__image img {
  max-width: 100%;
  max-height: 100%;
  min-width: 0 !important;
  min-height: 0 !important;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  height: 100% !important;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px !important;
}
.blog-item__date {
  margin-right: 25px;
}
.blog-item__date svg {
  position: relative;
  top: -2px;
}
.blog-item__meta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  color: #34495e;
  font-weight: 500;
  margin-bottom: 15px;
}
.blog-item__meta svg {
  width: 16px;
  height: 16px;
}
.blog-item__meta a {
  color: inherit;
}
.blog-item__meta p {
  line-height: 1;
  padding: 0 10px;
  position: relative;
  margin-bottom: 0;
}
.blog-item__meta p:first-of-type {
  padding-left: 0;
}
.blog-item__meta p:last-of-type {
  padding-right: 0;
}
.blog-item__meta p::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: #464646;
}
.blog-item__meta p:last-of-type::after {
  display: none;
}
.blog-item__title {
  color: #23333f;
  margin-bottom: 10px;
}
.blog-item__title a {
  color: inherit;
  font-size: 30px;
  font-weight: 600;
}
.blog-item header {
  margin-bottom: 20px;
}
.blog-item__more-btn {
  display: inline-block;
  min-width: 200px;
  margin-top: 10px;
  padding: 18px 30px 18px 30px;
  border-radius: 35px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: white;
  background-color: #43b2ce;
  transition: all 0.2s;
  position: relative;
}
.blog-item__more-btn svg {
  max-width: 16px;
  margin-left: 10px;
  position: absolute;
  right: 29px;
  top: 50%;
  transform: translateY(-38%);
}
.blog-item__more-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.5px;
  transition: all 0.2s;
}
.blog-item blockquote {
  padding: 0 20px;
  border-left: 3px solid #43b2ce;
  font-style: italic;
}

.related-posts__sctiontitle {
  text-align: center;
  font-size: 30px;
}
.related-posts__content h2 {
  font-size: 25px;
  font-weight: 500;
}

.post-navigation {
  margin-top: 50px;
}
.post-navigation .nav-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.post-navigation .nav-links a {
  padding: 15px 35px;
  border: 1px solid #ccc;
  line-height: 1px;
}

[data-widget_type^=wp-widget] h5, [data-widget_type^=wp-widget] h3,
.widget-area h5,
.widget-area h3 {
  font-size: 24px;
  color: #23333f;
  position: relative;
}
[data-widget_type^=wp-widget] ul,
.widget-area ul {
  padding: 0;
  list-style: none;
}

.elementor-widget-wp-widget-categories a,
.widget_categories a {
  font-size: 18px;
  font-weight: 500;
  color: #23333f;
}
.elementor-widget-wp-widget-categories li,
.widget_categories li {
  margin-bottom: 10px;
}

.widget-area {
  padding-left: 45px;
}
@media (max-width: 1200px) {
  .widget-area {
    padding-left: 30px;
  }
}
@media (max-width: 480px) {
  .widget-area {
    margin-top: 55px;
  }
}
.widget-area .widget {
  margin-bottom: 50px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}

/**
Recent Posts Widget
**/
.recentposts-widget__item {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.recentposts-widget__item:first-child {
  padding-top: 0;
}
.recentposts-widget__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.recentposts-widget__item figure {
  margin: 0;
}
.recentposts-widget__item img {
  max-width: 80px !important;
  height: auto !important;
  border-radius: 10px !important;
}
.recentposts-widget__content.has-thumb {
  margin-left: 10px;
}
.recentposts-widget__content p {
  margin: 0;
}
.recentposts-widget__content p.title {
  font-size: 16px;
  /* color: #ffffff; */
  font-weight: 400;
}
.recentposts-widget__content p.title a {
  color: inherit;
}
.recentposts-widget__content p.date {
  font-size: 15px;
  font-weight: 300;
  /*  color: #ffffff; */
  margin-bottom: 5px;
}

/*
Commnets Section
*/
#respond p {
  display: flex;
  flex-direction: column;
}
#respond .form-submit #submit {
  width: auto;
  text-align: center;
  max-width: 200px;
  padding: 18px 30px 18px 30px;
  border: 1px solid #43b2ce;
  border-radius: 35px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: white;
  background-color: #43b2ce;
}
#respond h3 {
  margin-bottom: 25px;
}
#respond label {
  display: block;
}
#respond input[type=text], #respond input[type=email], #respond textarea {
  display: block;
  width: 100%;
  border: none;
  border: 1px solid #6675b4;
  height: 45px;
}
#respond textarea {
  height: 200px;
}
#respond .form-submit {
  margin-top: 25px;
}
#respond .comment-form-author,
#respond .comment-form-email {
  margin-bottom: 25px;
}

.comments-area {
  margin-bottom: 50px;
}

/**
Breadcrumb
**/
.breadcrumb-section {
  background: #efefef;
  padding: 10px 45px;
}
@media (max-width: 1024px) {
  .breadcrumb-section {
    padding: 10px 0;
  }
}

.breadcrumbs {
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumbs li {
  display: inline-block;
  padding: 10px;
}
@media (max-width: 768px) {
  .breadcrumbs li {
    padding: 2px;
    font-size: 16px;
  }
}
.breadcrumbs li:first-child {
  padding-left: 0;
}

.family-list__item {
  margin-bottom: 30px;
}
.family-list__featured {
  position: relative;
  overflow: hidden;
  z-index: 4;
  border-radius: 10px;
}
.family-list__featured figure img {
  border-radius: 10px;
}
.family-list__featured:hover .family-list__content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.2s;
}
.family-list__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 25px;
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background: #17bcbd;
  background: linear-gradient(0deg, rgba(23, 188, 189, 0.3225665266) 0%, rgba(153, 82, 152, 0.2637429972) 100%);
  opacity: 0;
  transform: translateY(12%);
  transition: all 0.2s;
}
.family-list__content h2 {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}
.family-list__content h2 a {
  color: inherit;
}
.family-list__read-more {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-bottom: 10px;
}
.family-list__read-more svg {
  fill: #ffffff;
}

.pf-badge-wrapper-carousel .pf-item-inner {
  position: relative;
  overflow: hidden;
}
.pf-badge-wrapper-carousel .pf-item-inner .pf-item-title {
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 25px;
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background: #17bcbd;
  background: linear-gradient(0deg, rgba(23, 188, 189, 0.4906337535) 0%, rgba(153, 82, 152, 0.4822303922) 100%);
  opacity: 0;
  transform: translateY(12%);
  transition: all 0.2s;
}
.pf-badge-wrapper-carousel .pf-item-inner .pf-item-title .pf-item-title-inner {
  flex: inherit;
  padding: 0;
  width: auto;
}
.pf-badge-wrapper-carousel .pf-item-inner .pf-item-title .pf-item-title-inner h5 {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}
.pf-badge-wrapper-carousel .pf-item-inner .pf-item-title .pf-item-title-inner h5::before {
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg data-name='Layer 2'%3E%3Cpath d='M1 16a15 15 0 1115 15A15 15 0 011 16zm28 0a13 13 0 10-13 13 13 13 0 0013-13z'/%3E%3Cpath d='M12.13 21.59L17.71 16l-5.58-5.59a1 1 0 010-1.41 1 1 0 011.41 0l6.36 6.36a.91.91 0 010 1.28L13.54 23a1 1 0 01-1.41 0 1 1 0 010-1.41z'/%3E%3C/g%3E%3C/svg%3E");
  width: 35px;
  height: 35px;
  position: absolute;
  top: -32px;
  left: 0;
}
.pf-badge-wrapper-carousel .pf-item-inner .pf-item-title .pf-item-title-inner h5 a {
  color: inherit;
}
.pf-badge-wrapper-carousel .pf-item-inner:hover .pf-item-title {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.2s;
}
.pf-badge-wrapper-carousel .VueCarousel-pagination {
  margin-top: 30px;
}
.pf-badge-wrapper-carousel .VueCarousel-pagination .VueCarousel-dot-container button {
  outline: none;
  width: 20px !important;
  height: 20px !important;
  margin: 0 5px;
  background-color: #43b2ce !important;
  padding: 0 !important;
  border: 1px solid #43b2ce;
}
.pf-badge-wrapper-carousel .VueCarousel-pagination .VueCarousel-dot-container button.VueCarousel-dot--active {
  background-color: rgba(67, 178, 206, 0.2) !important;
}

/*
* Theme Styles
*/
/*# sourceMappingURL=main.css.map */
