@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  font-family: 'Roboto', sans-serif;
}

a {
  color: #4d5ea5;
}

a:hover {
  color: #4d5ea5;
  text-decoration: none;
}

.fw-500 {
  font-weight: 500;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/*
* NAVBAR
*/

.navbar-light .navbar-nav .nav-link, .dropdown-item, .dropdown-item:hover {
    font-weight: 500;
    color: #4d5ea5;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ff6633;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: #4d5ea5;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #ff6633;
}

.dropdown-item.active, .dropdown-item:active {
  text-decoration: none;
  background-color: #fff;
  color: #ff6633;
}

.dropdown-menu {
    border: 0;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
 }
.dropdown-item:hover {
    color: #ff695f;
    background: none;
}

.dropdown-toggle::after {
  border: none!important;
  font: normal normal normal 14px/1 'Material Icons';
  content: "\e5cf"!important; /* the desired FontAwesome icon */
  vertical-align: 0; /* to center vertically */
}

/* HOME SLIDER */

.main-banner:after {
    content: '';
    background-image: url('/assets/img/baner-dec-left.png');
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0px;
    width: 267px;
    height: 532px;
}

.main-banner:before {
    content: '';
    background-image: url('/assets/img/banner-right-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0px;
    width: 819px;
    height: 674px;
}

.main-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 0px 50px 0px;
    position: relative;
    /* overflow: hidden; */
    z-index: 1;
}

.home-description {
    font-size: 1.25em;
}

.image-shadow {
    -webkit-filter: drop-shadow(5px 15px 20px rgb(0 0 0 / 0.3));
    filter: drop-shadow(5px 15px 20px rgb(0 0 0 / 0.3));
}

/* BUTTONS */
  
  .main-blue-button {
    display: inline-block;
    background-color: #4d5ea5;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: none;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    transition: all .3s;
    position: relative;
    z-index: 99;
  }
  
  .main-blue-button:hover {
    background-color: #ff695f;
    text-decoration: none;
    color: #ffffff
  }

  .main-orange-button {
    display: inline-block;
    background-color: #ff695f;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: none;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    transition: all .3s;
    position: relative;
    z-index: 99;
  }
  
  .main-orange-button:hover {
    background-color: #4d5ea5;
    text-decoration: none;
    color: #ffffff
  }

  .outline-blue-button {
    display: inline-block;
    background: none;
    font-size: 15px;
    font-weight: 400;
    color: #4d5ea5;
    text-transform: none;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    transition: all .3s;
    position: relative;
    z-index: 99;
    border: 2px solid #4d5ea5;
  }
  
  .outline-blue-button:hover {
    background: none;
    text-decoration: none;
    color: #ff695f;
    border: 2px solid #ff695f;
  }

  .home-slogan, .scene-image {
    z-index: 99;
  }

.base-color {
    color:#4d5ea5;
}

.home-image-animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.section-title {
    padding-bottom: .85em;
}

.section-title::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #d0d0d0;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #4d5ea5;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title-left-orange {
  padding-bottom: .85em;
}

.section-title-left-orange::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #d0d0d0;
  bottom: 1px;
  left: 0;
}

.section-title-left-orange::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #ff695f;
  bottom: 0;
  left: 40px;
}

.section-title-left-blue {
  padding-bottom: .85em;
}

.section-title-left-blue::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #d0d0d0;
  bottom: 1px;
  left: 0;
}

.section-title-left-blue::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #4d5ea5;
  bottom: 0;
  left: 40px;
}

.section-title-orange {
  padding-bottom: .85em;
}

.section-title-orange::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #d0d0d0;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title-orange::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #ff695f;
  bottom: 0;
  left: calc(50% - 20px);
}

.orange-color {
  color: #ff695f;
}

.home-max-width {
    max-width: 400px;
    height: auto;
}

.bg-orange {
    background: linear-gradient(180deg, #FFFEFC -54.51%, #fff1ef 99.98%);
}

.link-footer {
  color: #5E6282 !important;
  text-decoration: none;
}

.link-footer:hover, .link-footer:focus {
  color: #ff695f !important;
  text-decoration: none;
}

.card {
  border: none;
  border-radius: 1.5em;
}

.card-img-top {
  border-radius: 1.5em 1.5em 0 0;
}

.w-100 {
  width: 100% !important;
}

.position-relative {
  position: relative;
}

.bg-holder {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

.rounded-1 {
  border-radius: 1.125rem !important;;
}

.rounded-2 {
  border-radius: 2.125rem !important;;
}

.rounded-3 {
  border-radius: 3.125rem !important;;
}

.z-index--1 {
  z-index: -1;
}

.bg-light-orange {
  background-color: #fff1ef;
}

.investment-icon {
  font-size: 5em
}

.va-middle {
  vertical-align: middle;
}
.va-top {
  vertical-align: top;
}

.is-10 {
  font-size: 10px!important;
}

.is-15 {
  font-size: 15px!important;
}

.is-24 {
  font-size: 24px!important;
}

.is-32 {
  font-size: 32px!important;
}

.is-64 {
  font-size: 64px!important;
}

.is-72 {
  font-size: 72px!important;
}
.is-86 {
  font-size: 86px!important;
}

.grey-color {
  color: grey
}

.text-muted-light {
  color: #bdbdbd;
}

.line-dec-blue {
  width: 50px;
  height: 5px;
  background-color: #4d5ea5;
}

.line-dec-orange {
  width: 50px;
  height: 5px;
  background-color: #ff695f;
}

/*
* CONTACT FORM
*/

.help-block.with-errors {
  color: #ff5050;
  margin-top: 5px;
  font-size: .85em;
}

.btn-close {
  float: right;
  font-size: 1em;
  font-weight: 700;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.form-group label {
  font-weight: 700;
}

/*
* PRICING TABLE
*/

.pricing-table {
	text-align: center;
}
.pricing-table .pricing-option {
  background: #fff1ef;
  text-align: center;
  transition: all 0.3s ease-in-out;
  padding: 1em;
  border-radius: 2em;
  margin: 1em;
}

.pricing-table .pricing-option:hover {
  cursor: pointer;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.04);
}
.pricing-table .pricing-option:hover i, .pricing-table .pricing-option:hover h1, .pricing-table .pricing-option:hover span, .pricing-table .pricing-option:hover b {
  color: #ff5050;
}
.pricing-table .pricing-option:hover .front {
  opacity: 0;
  visibility: hidden;
}
.pricing-table .pricing-option:hover .back {
  opacity: 1 !important;
  visibility: visible !important;
}
.pricing-table .pricing-option:hover .back a.button {
  transform: translateY(0px) !important;
}
.pricing-table .pricing-option hr {
  border: none;
  border-bottom: 1px solid #fff;
}
.pricing-table .pricing-option i {
  font-size: 3rem;
  /*color: #D8D8D8;*/
	color: #ff5050;
  transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option h1 {
  margin: 10px 0;
  color: #212121;
  transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option p {
  color: #999;
  padding: 0 10px;
  line-height: 1.3;
}
.pricing-table .pricing-option .price {
  position: relative;
}
.pricing-table .pricing-option .price .front span.price {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 20px;
  display: block;
  font-weight: 700;
  position: relative;
}
.pricing-table .pricing-option .price .front span.price b {
  position: absolute;
  font-size: 1rem;
  margin-left: 2px;
  font-weight: 700;
}
.pricing-table .pricing-option .price .back {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option .price .back a.button {
  background: #ff5050;
  padding: 15px 20px;
  display: inline-block;
  text-decoration: none;
  color: white;
  position: absolute;
  font-size: 13px;
  top: -5px;
  left: 0;
  right: 0;
  width: 250px;
  margin: auto;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  border-radius: 1em;
}
.pricing-table .pricing-option .price .back a.button:hover {
  background: #ff5050;
}

/*
* STEPS
*/

#conference-timeline {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
  display: table;
  font-size: 1em;
  font-weight: 700;
  text-transform: none;
  background: none;
  border: 1px solid #ff6633;
  padding: 15px 23px;
  color: #ff6633;
  width: 200px;
  text-align: center;
  margin: 0 auto;
}
#conference-timeline .conference-center-line {
  width: 3px;
  height: 100%;
  margin-left: 48px;
  background: #ff6633;
  z-index: -1;
}
#conference-timeline .conference-timeline-content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}
.timeline-article .content-left-container,
.timeline-article .content-right-container {  
  width: 100%;
}
.timeline-article .timeline-author {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  text-align: right;
}
.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
  padding: 27px 25px;
}
.timeline-article p {
  margin: 0 0 0 60px;
  padding: 0;
  font-weight: 400;
  color: #242424;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
.timeline-article p span.article-number {
  position: absolute;
  font-weight: 300;
  font-size: 44px;
  top: 10px;
  left: -60px;
  color: #ff6633;
}
.timeline-article .content-left-container {
  float: left;
}
.timeline-article .content-right-container {
  float: right;
}
.timeline-article .content-left:before,
.timeline-article .content-right:before{
  position: absolute;
  top: 20px;
  font-size: 23px;
  font-family: "FontAwesome";
  color: #fff;
}
.timeline-article .content-left:before {
  content: "\f0da";
  right: -8px;
}
.timeline-article .content-right:before {
  content: "\f0d9";
  left: -8px;
}
.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 50%;
  width: 62px;
  height: 62px;
  margin-left: -31px;
  color: #fff;
  border-radius: 100%;
  background: #ff6633;
}
.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
  display: block;
  text-align: center;
  font-weight: 900;
}
.timeline-article .meta-date .date {
  font-size: 30px;
  line-height: 40px;
}
.timeline-article .meta-date .month {
  font-size: 18px;
  line-height: 10px;
}
/*===== // Vertical Timeline =====*/

.top-menu {
  font-size: .8em;
  color: #777;
  padding: .5em 1em;
}
.top-menu a {
  color: #777;
  text-decoration: none;
}

.top-menu a:hover {
  color: #222;
  text-decoration: none;
}

thead tr td {
  padding: 1em!important;
}

/*
* REAL ESTATE
*/
.icon-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.icon-group .icon-item:not(:last-child) {
    margin-right: 1.8rem;
}

.icon-item {
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #080809;
    background-color: #eee;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    height: 2.5rem;
    width: 2.5rem;
    border: 0;
    font-size: .875rem;
}

/*
* WEDDING
*/
.wedding-bg-image {
  background: url(/assets/img/wedding-bg-002.jpg) no-repeat;
  background-size: 500px 550px;
  margin: 0 0 -180px 0;
  padding: 0 0 180px 0;
}

.flower-title {
  max-width: 250px;
  height: auto;
}
/*
* END - WEDDING
*/

.wow {
   visibility: hidden;
 }

@-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }

@media (min-width: 992px) {
    .text-xl {
        font-size: 3.3rem !important;
    }
    .text-l {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 1240px) {
    .main-banner::before {
      width: 640px;
      height: 526px;
    }
}

@media (max-width: 992px) {
    .main-banner::before {
      display: none;
    }
    .main-banner::after {
      display: none;
    }
    .main-banner .item {
      margin-right: 0px;
    }
}


@media (max-width: 575.98px) {


@media (max-width: 767.98px) {
  .wedding-bg-image {
    background: none;
  }
}