@import url("https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.d_flex_center {
  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;
}

.d_flex_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.d_flex_end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
input,
textarea,
button span {
  font-family: 'Playfair Display', serif;
}

body {
  margin: 0;
  padding: 0;
}

#header-bar {
  display: none;
}

input:focus,
button:focus,
textarea:focus {
  outline: none;
}

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 11;
  background: #fff;
}

#header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

#header .container .logo {
  width: 10%;
}

#header .container .logo a {
  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;
}

#header .container .logo a img {
  width: 100%;
}

#header .container .menu {
  width: 90%;
}

#header .container .menu ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .container .menu ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px;
}

#header .container .menu ul li a {
  color: #000;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 300;
}

.hero_video {
  position: relative;
  overflow: hidden;
  height: 80vh;
  width: 99%;
  margin: auto;
}

.hero_video video {
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  height: 100%;
}

.about .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about .container .left {
  width: 45%;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}

.about .container .left h4 {
  width: 100%;
  font-size: 30px;
  font-family: 'Beau Rivage', cursive;
  letter-spacing: 1px;
}

.about .container .left h4 span {
  color: #30336b;
  font-size: 35px !important;
  font-size: 4rem !important;
}

.about .container .left p {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 30px;
  counter-reset: #30336b;
}

.about .container .right {
  width: 50%;
}

.about .container .right img {
  width: 100%;
}

.common_button {
  display: inline-block;
  border: 2px solid #000;
  padding: 10px 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  font-family: 'Beau Rivage', cursive;
  font-size: 17px;
  letter-spacing: 2px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.contact_wrapper {
  position: relative;
  padding: 30px 0;
}

.contact_wrapper::after {
  content: '';
  position: absolute;
  width: 55%;
  z-index: -1;
  background: #fef8f8;
  left: 0;
  top: 0;
  height: 100%;
}

.contact_wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_wrapper .container .contact_left {
  width: 50%;
}

.contact_wrapper .container .contact_left form h4 {
  width: 100%;
  font-size: 30px;
  font-family: 'Beau Rivage', cursive;
  letter-spacing: 1px;
}

.contact_wrapper .container .contact_left form h4 span {
  color: #30336b;
  font-size: 35px !important;
  font-size: 4rem !important;
}

.contact_wrapper .container .contact_left form .form_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact_wrapper .container .contact_left form .form_wrapper .app_input {
  width: 49%;
  margin: 10px 0;
}

.contact_wrapper .container .contact_left form .form_wrapper .app_input input, .contact_wrapper .container .contact_left form .form_wrapper .app_input select, .contact_wrapper .container .contact_left form .form_wrapper .app_input textarea {
  width: 100%;
  height: 50px;
  border: 2px solid #000;
  letter-spacing: 1px;
  padding: 7px;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 2px;
  color: #000;
}

.contact_wrapper .container .contact_left form .form_wrapper .app_input textarea {
  height: 140px;
}

.contact_wrapper .container .contact_right {
  width: 50%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 200px;
}

.contact_wrapper .container .contact_right h4 {
  width: 100%;
  font-size: 30px;
  font-family: 'Beau Rivage', cursive;
  letter-spacing: 1px;
}

.contact_wrapper .container .contact_right h4 span {
  color: #30336b;
  font-size: 35px !important;
  font-size: 4rem !important;
}

.contact_wrapper .container .contact_right p {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
  color: #30336b;
  margin-bottom: 3px;
}

.contact_wrapper .container .contact_right ul {
  margin: 0;
  padding: 0;
}

.contact_wrapper .container .contact_right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
  color: #30336b;
  margin-bottom: 3px;
  position: relative;
}

.contact_wrapper .container .contact_right ul li span {
  margin: 0 10px;
}

.contact_wrapper .container .contact_right ul li:hover::after {
  width: 100%;
  left: -2px;
}

.contact_wrapper .container .contact_right ul li::after {
  content: '';
  position: absolute;
  width: 50%;
  background: #fcd1cc26;
  left: -10px;
  height: 27px;
  z-index: -1;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.contact_wrapper .container .contact_right ul li a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
  color: #30336b;
  margin-bottom: 3px;
}

.app_input .submit {
  background: #fff;
  color: #000;
}

.flower {
  position: relative;
}

.flower::after {
  content: '';
  background: url("../images/flowers2.gif");
  position: absolute;
  top: 10%;
  width: 300px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 36%;
}

.services {
  background: #fef8f8;
  padding: 50px 0;
}

.services .service_card_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.services .service_card_grid .service_list {
  width: 23%;
  background: #fff;
  padding: 10px;
  margin: 10px;
  text-align: center;
}

.services .service_card_grid .service_list img {
  width: 100%;
}

.services .service_card_grid .service_list h6 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 18px;
  opacity: .56;
}

.services .service_card_grid .service_list p {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 10px 0;
}

.common_heading {
  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;
  text-align: center;
  position: relative;
}

.common_heading::after {
  content: '';
  background: url("../images/flowers3.gif");
  position: absolute;
  top: -122px;
  width: 300px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 39%;
}

.common_heading h4 {
  width: 100%;
  font-size: 30px;
  font-family: 'Beau Rivage', cursive;
  letter-spacing: 1px;
}

.common_heading h4 span {
  color: #30336b;
  font-size: 35px !important;
  font-size: 4rem !important;
}

.feedback {
  padding: 140px 0 50px 0;
}

.feedback .common_heading {
  text-transform: capitalize;
}

.feedback .common_heading::after {
  top: -126px;
}

.feedback .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 10px;
  border: 1px solid #fef8f8;
  width: 75%;
  margin: 10px auto;
  border-radius: 10px;
  background: #fef8f8;
}

.feedback .item h4 {
  font-size: 30px;
  font-family: 'Beau Rivage', cursive;
  letter-spacing: 1px;
  margin: 10px 0;
}

.feedback .item p {
  font-size: 13px;
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 23px;
}

.feedback .owl-dots {
  display: none;
}

.feedback .owl-nav {
  position: absolute;
  top: 40%;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 4%;
}

.feedback .owl-nav button {
  width: 30px;
  height: 30px;
  background: #000 !important;
  color: #fff !important;
  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;
  font-size: 26px !important;
  border-radius: 50% !important;
}

.feedback .owl-nav button span {
  position: relative;
  top: -9px !important;
}

#footer ul {
  padding: 0;
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer ul li {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 2px solid #fcd1cc;
  min-height: 80px;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#footer ul li p, #footer ul li a {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
  color: #30336b;
  margin-bottom: 3px;
}

#footer ul li:nth-child(4) {
  border: none;
}

@media only screen and (max-width: 768px) {
  #contact .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .container .contact_left, #contact .container .contact_right {
    width: 100%;
    padding: 10px;
    height: auto;
  }
  #contact .flower::after {
    display: none;
  }
  .contact_wrapper::after {
    width: 100% !important;
  }
  .flower::after, .feedback .common_heading::after {
    left: 0 !important;
  }
  .services .service_card_grid, .services .container, .about .service_card_grid, .about .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services .service_card_grid .service_list, .services .service_card_grid .left, .services .service_card_grid .right, .services .container .service_list, .services .container .left, .services .container .right, .about .service_card_grid .service_list, .about .service_card_grid .left, .about .service_card_grid .right, .about .container .service_list, .about .container .left, .about .container .right {
    width: 100% !important;
    margin: 10px 0 !important;
    height: auto;
  }
  #services .common_heading::after {
    display: none;
  }
  #footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer ul li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #fcd1cc;
    padding: 0;
    min-height: 65px;
  }
  .hero_video {
    height: 35vh;
  }
  #header .container .logo {
    width: 30%;
  }
  #header .container .menu {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */