/* ---------------------------------
1. PRIMARY STYLES
--------------------------------- */

html {
  font-size: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  touch-action: manipulation;
}

body {
  font-size: 16px;
  font-family: "Bitter", serif;
  width: 100%;
  height: 100%;
  margin: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
span,
li,
img,
inpot,
button {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: inherit;
}

h1,
h2,
h3 {
  font-family: "Dancing Script", cursive;
}
/*.title-count {
    font-size: 2em;
}*/

p {
  line-height: 1.6;
  font-size: 1.05em;
  font-weight: 400;
  color: #555;
}

h1 {
  font-size: 5em;
  line-height: 1;
}
h2 {
  font-size: 3.5em;
  line-height: 1.1;
}
h3 {
  font-size: 2.5em;
}
h4 {
  font-size: 1.8em;
}
h5 {
  font-size: 1.2em;
}
h6 {
  font-size: 0.9em;
  letter-spacing: 1px;
}

a,
button {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  line-height: 1;
}

a:focus,
a:active,
a:hover,
button:focus,
button:active,
button:hover,
a b.light-color:hover {
  text-decoration: none;
  color: #e45f74;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
}

li {
  list-style: none;
  display: inline-block;
}

span {
  display: inline-block;
}

button {
  outline: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

b.light-color {
  color: #444;
}

.icon {
  font-size: 1.1em;
  display: inline-block;
  line-height: inherit;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  line-height: inherit;
}

/* ---------------------------------
2. COMMONS FOR PAGE DESIGN
--------------------------------- */

.btn {
  padding: 15px 30px;
  border-radius: 1px;
  letter-spacing: 2px;
  border: 1px solid #e45f74;
  background: #e45f74;
  color: #fff;
}

.btn:hover {
  color: #e45f74;
  background: none;
}

.btn-2 {
  font-size: 0.9em;
  padding: 15px 30px;
  border-radius: 1px;
  letter-spacing: 2px;
  border: 1px solid #e45f74;
}

.btn-2:hover {
  background: #e45f74;
  color: #fff;
}

.border-btn {
  font-size: 0.9em;
  padding-bottom: 5px;
  background: none;
  color: inherit;
  border: 0;
  position: relative;
  overflow: hidden;
}

.border-btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: all 0.3s;
  background: #e45f74;
}

.border-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateX(-130%);
  transition: all 0.3s;
  background: #e45f74;
}

.border-btn:hover:after {
  transform: translateX(130%);
}

.border-btn:hover:before {
  transform: translateX(0%);
}

.section {
  padding: 100px 0 70px;
}

.section .heading {
  padding-bottom: 40px;
}

.section .heading .icon {
  font-size: 18px;
  margin-top: 20px;
  color: #e45f74;
}

.section .heading .icon.color-white {
  color: #fff;
}

.section .heading .heading-bottom {
  margin-top: 20px;
  display: inline-block;
  width: 160px;
  height: 20px;
  line-height: 20px;
  position: relative;
}

.section .heading .heading-bottom .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -9px 0 0 -9px;
}

.section .heading .heading-bottom:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5px;
  height: 1px;
  width: 60px;
  background: #aaa;
}

.section .heading .heading-bottom:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.5px;
  height: 1px;
  width: 60px;
  background: #aaa;
}

.section .margin-bottom {
  margin-bottom: 30px;
}

.center-text {
  text-align: center;
}

.color-white {
  color: #fff;
}

.display-table {
  display: table;
  height: 100%;
  width: 100%;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}

::-webkit-input-placeholder {
  font-size: 0.9em;
  letter-spacing: 1px;
}

::-moz-placeholder {
  font-size: 0.9em;
  letter-spacing: 1px;
}

:-ms-input-placeholder {
  font-size: 0.9em;
  letter-spacing: 1px;
}

:-moz-placeholder {
  font-size: 0.9em;
  letter-spacing: 1px;
}

/* JQUERY LIGHT BOX */

#flavorOverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: rgba(0, 0, 0, 0.8);
}

#flavorLightbox {
  display: none;
}

#flavorLightbox > img {
  max-width: 90%;
  max-height: 90%;
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

#flavorLightboxClose {
  font-size: 32px;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 666;
  color: #fff;
}

.thumbnails {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  z-index: 600;
  position: relative;
  cursor: pointer;
  position: absolute;
  bottom: 50px;
  width: 90%;
}

.thumbnails img {
  height: 50px;
  margin: 1px;
  transition: 0.3s;
}

.thumbnails img:hover {
  border: 2px solid #fff;
}

/* ---------------------------------
3. MENU
--------------------------------- */

header {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 1000;
  font-size: 0.95em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* MIDDLE AREA */

header .logo {
  margin: 5px 0 20px;
  height: 40px;
  width: 120px;
}

header .logo img {
  height: 100%;
  width: auto;
}

/* BOTTOM AREA */

header .main-menu {
  font-weight: 500;
  float: right;
  margin: 0px -15px;
  font-weight: bold;
}

header .main-menu > li > a {
  height: 50px;
  line-height: 46px;
  padding: 0 15px;
  border: 2px solid transparent;
  border-radius: 2px;
  background: transparent;
}

header .visible.main-menu {
  display: block;
}

/* DROPDOWN MENU STYLING */

header .main-menu li.drop-down {
  position: relative;
  text-align: left;
}

header .main-menu li.drop-down > ul.drop-down-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 200px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  background: #333;
}

header .main-menu li.drop-down > ul.drop-down-menu li {
  display: block;
  border-top: 1px solid #444;
}

header .main-menu li.drop-down > ul.drop-down-menu li > a {
  display: block;
  padding: 15px 20px;
}

header .main-menu li.drop-down > ul.drop-down-inner li:first-child {
  border-top: 0;
}

header .main-menu li i {
  margin-left: 10px;
}

/* DROPDOWN SUBMENU */

header .main-menu li.drop-down > ul.drop-down-inner {
  top: 0;
  left: auto;
  left: 100%;
}

/* DROPDOWN HOVER */

header .main-menu > li > a:hover,
header .main-menu li a.mouseover {
}

header .main-menu li.drop-down a.mouseover + ul.drop-down-menu {
  display: block;
  animation: full-opacity-anim 0.2s forwards;
}

@keyframes full-opacity-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* NAV ICON */

.menu-nav-icon {
  display: none;
  height: 60px;
  width: 50px;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  font-size: 1.8em;
}

/* ---------------------------------
4. SLIDER
--------------------------------- */
.main-slider {
  height: 100vh;
  position: relative;
  z-index: 1;
  background-image: url("../images/katarina-kristian.jpg");
  color: #fff;
  background-size: cover;
}

@media only screen and (max-width: 900px) {
  .main-slider {
    background-image: url("../images/katarina-kristian-m.jpg");
    width: 100%;
    height: 100%;
  }
}

.main-slider:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}

.slider-content .date {
  margin: 10px 0 0;
}

.slider-content i {
  line-height: 1;
}

.slider-content i.small-icon {
  font-size: 2.5em;
}

.slider-content .title i {
  transform: translateY(10px);
  font-size: 0.8em;
  color: #e45f74;
}

/* ---------------------------------
5. STORY AREA
--------------------------------- */

.story-area {
  position: relative;
  z-index: 1;
}

.story-area:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.8;
}

/* ---------------------------------
6. REMAINING TIME
--------------------------------- */

.counter-area {
  position: relative;
  z-index: 1;
  background-size: cover;
  color: #fff;
  background-image: url("../images/counter-1-1600x600.jpg");
}

.counter-area:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}

.remaining-time .time-sec {
  position: relative;
  display: inline-block;
  margin: 0 20px;
  margin-bottom: 30px;
  height: 120px;
  width: 120px;
  padding-top: 25px;
  border-radius: 100px;
  border: 1px solid #fff;
}

.remaining-time .time-sec .title {
  font-size: 3em;
  line-height: 1;
  display: block;
}

/* ---------------------------------
7. WEDDING DETAILS AREA
--------------------------------- */

.wedding-details {
  overflow: hidden;
  position: relative;
}

.wedding-details:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  background: #ccc;
}

.w-detail {
  width: 50%;
  padding: 0 50px;
  margin-bottom: 30px;
  position: relative;
  clear: both;
  margin-top: -40px;
}

.w-detail:first-child {
  margin-top: 0;
}

.w-detail:last-child {
  margin-bottom: 0;
}

.w-detail:after {
  content: "";
  position: absolute;
  top: 0;
  height: 18px;
  width: 18px;
  border-radius: 20px;
  z-index: 1;
  border: 1px solid #aaa;
  background: #fff;
}

.w-detail.right {
  text-align: left;
  float: right;
}

.w-detail.right:after {
  left: 0;
  margin-left: -9px;
}

.w-detail.left {
  text-align: right;
  float: left;
}

.w-detail.left:after {
  right: 0;
  margin-right: -9px;
}

.w-detail .title {
  margin: 10px 0;
}

.w-detail .icon {
  font-size: 3.5em;
  line-height: 1;
  color: #e45f74;
}

/* ---------------------------------
8. WEDDING CEREMONY
--------------------------------- */

.ceremony-area {
  position: relative;
  z-index: 1;
  opacity: 0.4;
  background-size: cover;
  color: #fff;
  background-color: #e45f74;
}

.ceremony-area:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}

.ceremony .desc {
  margin-bottom: 15px;
  color: #fff;
  font-size: 20px;
}

/* ---------------------------------
9. CONTACT AREA
--------------------------------- */

/* ---------------------------------
5. CONTACT AREA
--------------------------------- */

.contact-area {
  position: relative;
  z-index: 1;
}

.contact-area:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.5;
  background: url(../images/heart-pattern.jpg);
}

.contact-area .phone {
  margin: 10px 0;
  color: #e45f74;
}

.contact-area .email {
  margin: 10px 0;
}

.contact-area .contact-form {
  padding: 50px 40px;
  border-radius: 5px;
  box-shadow: 1px 15px 40px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.contact-form .pre-title {
  margin: 10px 0;
  color: #e45f74;
}

.contact-form input,
.contact-form select,
.contact-form label {
  display: block;
  width: 100%;
}

.contact-form .margin-bottom {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select {
  line-height: 45px;
  height: 45px;
  padding: 0 15px;
}

.contact-form .btn {
  padding: 0px 30px;
  line-height: 43px;
  height: 45px;
  margin-top: 10px;
  border-radius: 2px;
}

/* ---------------------------------
10. VIEW GALLERY
--------------------------------- */

.galery-area .gallery-btn {
  margin-top: 30px;
}

/* ---------------------------------
11. FOOTER
--------------------------------- */

footer {
  position: relative;
  z-index: 1;
  padding-top: 70px;
}

footer:after {
  content: "";
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.8;
}

footer ul > li > a {
  padding: 10px 15px;
}

footer .logo-wrapper .icon {
  color: #e45f74;
}

footer .logo {
  display: block;
  height: 50px;
}

footer .logo img {
  height: 100%;
  width: auto;
}

footer .newsletter {
  margin: 20px 0;
}

footer .newsletter .title {
  margin: 5px 0;
}

footer .newsletter .email-area {
  position: relative;
  width: 400px;
  height: 55px;
  margin: 20px auto;
}

footer .email-area .email-input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 100px;
  padding: 0 70px 0 25px;
  transition: all 0.2s;
  box-shadow: 1px 10px 30px rgba(0, 0, 0, 0.2) !important;
}

footer .email-area .email-input:focus {
  box-shadow: 1px 15px 30px rgba(0, 0, 0, 0.3) !important;
}

.message {
  height: 100px !important;
}

footer .email-area .submit-btn {
  position: absolute;
  right: 0;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 100px;
  background: #e55d73;
  color: #fff;
}

footer .email-area .submit-btn:hover {
  background: #000;
  color: #e55d73;
}

footer .copyright {
  padding: 20px 0 30px;
}

.hidden-tx:active,
.hidden-tx:focus {
  display: none !important;
  color: white !important;
}

.hidden-tx {
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  color: white !important;
}

.number-confirmation {
  font-size: 0.9em;
}
@media only screen and (max-width: 900px) {
  .number-confirmation {
    font-size: 1em;
  }
}
