@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Playfair+Display&family=Poppins:wght@600&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap");

@font-face {
  font-family: 'themify';
  src: url("../fonts/themify.eot");
  src: url("../fonts/themify.ttf");
  src: url("../fonts/themify.woff");
}
@font-face {font-family: "Flaticon";
  src: url("../fonts/1e46dc4b5a94ebe8b2ec353f92a1650f.eot"); /* IE9*/
  src: url("../fonts/1e46dc4b5a94ebe8b2ec353f92a1650f.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("../fonts/1e46dc4b5a94ebe8b2ec353f92a1650f.woff2") format("woff2"), /* chrome、firefox */
  url("../fonts/1e46dc4b5a94ebe8b2ec353f92a1650f.woff") format("woff"), /* chrome、firefox */
  url("../fonts/1e46dc4b5a94ebe8b2ec353f92a1650f.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("../fonts/1e46dc4b5a94ebe8b2ec353f92a1650f.svg") format("svg"); /* iOS 4.1- */
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    
}
html{
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body{
  font-family: 'Poppins', sans-serif;
}
/*.. .Window Loader ... */
.loader {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader > img {
  width: 60px;
}
.loader.hidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/*... Mobile-Navbar ....*/
header{
  width: 100%;
}
.navbar {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    /* padding: 27px; */
    z-index: 10;
    transition: height 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
  } 
.navbar-logo {
    position: absolute;
    left: 1.6rem;
}
.navbar-logo a {
    font-size: 2.2rem;
    color: #eee;
}
.navbar-logo img{
    /* max-height: 1.875rem; */
    vertical-align: middle;
}
.navbar-logo span {
    font-size: 3.5rem;
    font-weight: bold;
    color: #70A076;
    font-family: "MADE Soulmaze";
}
.menu {
    width: 1.4rem;
    height: 1.8rem;
    position: fixed;
    z-index: 500;
    top: 1rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    align-items: center;
}
.line {
    width: 100%;
    height: 0.2rem;
    background-color: #70A076;
    transition: transform 0.3s;
}
.nav-list-mobile {
    position: absolute;
    background-color: #70A076;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 7.6rem;
    z-index: 10;
    height: 0rem;
    transition: all 0.7s 0.5s;
    opacity: 1; 
    /* display: none; */
}
.nav-list-mobile.change{
    top: 7.6rem;
    height: 75%;
    width: 100%;
    visibility: visible;
    transition: all 1s 0.2s;
}
.nav-list-mobile{
  opacity: 0;
}
.nav-link, .main-nav-link {
    font-size: 1.4rem;
    color: #FFF;
    transition: color 0.4s;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    padding: 1rem 0;
}
.main-nav-link{
  border-bottom: none;
}
.main-nav-list span:before{
    content: "\f004";
    font: normal normal normal 7px/1 FontAwesome;
    display: inline-block;
    margin-right: 26px;
    color: #70A076;
}
.main-nav-list a:first-child span::before{
  content: none !important;
}
.nav-link span, .main-nav-link span{
    margin-left: 1rem;
}
.nav-link:nth-child(8){
    border: none;
}
.nav-link:hover {
    color: #dfeadf;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.flower-line-top, .flower-line-bottom{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-size: 4px;
  width: 12rem;
}
.flower-line-top{
  animation-name:  lineTopMove;
  animation-duration: 1.5s;
  animation-delay: 2.5s;
  transition: none 0s ease 0s;
  opacity: 0;
  animation: jump 4s ease-in alternate infinite;
  top: 42%;
}
.flower-line-bottom{
  animation-name:  lineBottomMove;
  animation-duration: 1.5s;
  animation-delay: 2.5s;
  opacity: 0;
  animation: jump 4s ease-in alternate infinite;
  top: 72%;
}
@keyframes lineTopMove {
  from {top: 50%; opacity: 0;}
  to {top: 42%; opacity: 1;}
}
@keyframes lineBottomMove {
  from {top: 60%; opacity: 0;}
  to {top: 72%; opacity: 1;}
}
.caption-first{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Alex Brush', sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 85px;
  animation-name:  captionFirstMove;
  animation-duration: 1.5s;
  animation-delay: 0.2s, 480ms;
  transition: none 0s ease 0s;
  margin-top: 1rem;
  top: 60%;
}
.caption-second{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-weight: 200;
  font-size: 24px;
  font-style: italic;
  z-index: 6;
  animation-name:  captionSecondMove;
  animation-duration: 1.5s;
  animation-delay: 1s, 480ms;
  visibility: inherit;
  transition: none 0s ease 0s;
}
@keyframes captionFirstMove {
  from {top: 30%;}
  to {top: 60%; opacity: 1;}
}
@keyframes captionSecondMove {
  from {top: 30%;}
  to {top: 50%; opacity: 1;}
}
.opacity{
  opacity: 0;
  animation: jump 4s ease-in alternate infinite;
}
@keyframes jump {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
/* .light_logo{
  display: none;
} */
/* .dark_logo{
  display: block;
  max-height: 3.75rem;
} */
/* ... Section - When & Where ... */
.when-where-section{
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  padding-bottom: 200px;
  /* margin-top: -100px; */
  margin-bottom: 0;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.whenwhere-title{
  font-family: 'Alex Brush', sans-serif;
  position: relative;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  line-height: 60px;
  padding: 0;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.whenwhere-description{
  color: #606060;
  font-size: 0.9rem;
  line-height: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.countdown-weddingTime{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 43%;
}
.day, .hour, .minute, .second{
  background-color: #fff;
  width: 8rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}
.countdown-hour, .countdown-minute, .countdown-second, .countdown-day{
  color: #70A076;
}
.countdown-period{
  color: #282828;
  font-size: 15px;
}
.Texture-bottom{
  position: relative;
  bottom: -100px;
}
/* ... S-Menue ... */
.S_Menue{
  display: flex;
  position: fixed;

  top: 30%;
  right: 0;
  z-index: 1000;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.S_Menue #container-rsvp{
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  background-color: #70A076;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  font-size: 14px;
  color: #EEE;
}
.sMenue-option{
  padding: 0.5rem 0 0.5rem 0.3rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.sMenue-option a{
  margin-top: 1rem;
  color: #2f2f2f;
  font-size: 14px;
  text-align:center;
}
.leadengine-tooltip{
  opacity: 1;
  position: absolute;
  background: #70A076;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1px;
  white-space: nowrap;
  padding: 12px 20px;
  line-height: 12px;
  border-radius: 4px;
  color: #fff;
  animation-name: moveInRight;
  animation-duration: 0.5s;
  display: none;
}
.container-tooltip {
  position: absolute;
  padding: 0px 30px 10px 0;
  background-color: #337ab7;
  background-color: transparent;
  display: none;
}
.container-tooltip :hover .tooltip_1{
  display: block;
}
.tooltipBack_1{
  right: 25px;
  top: 109px;
}
.tooltipBack_2{
  right: 25px;
  top: 144px;
}
.tooltipBack_3{
  right: 25px;
  top: 176px; 
}
.tooltipBack_4{
  right: 25px;
  top: 210px; 
}
.tooltipBack_5{
  right: 25px;
  top: 240px;  
}
.tooltip_1, .tooltip_2, .tooltip_3, .tooltip_4, .tooltip_5{ 
  position: relative;
  padding-right: 20px;
}
@keyframes moveInRight {
  0% {
      opacity: 0;
      transform: translateX(10px);
  }
  
  100% {
      opacity: 1;
      transform: translate(0px);
  }

}
.leadengine-tooltip em {
  border-left: 5px solid #70A076;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  position: absolute;
  right: -5px;
  top: 12px;
}
.sMenue-option a:hover .leadengine-tooltip, .container-tooltip {
  display: block;
  transition: all 0.5s;
}
/* ... Section-one ... */
.cata-effect-sparkle {
  background-image: url(../images/effect-sparkle1.png),url(../images/effect-sparkle2.png);
  -webkit-animation: cata-sparkle 60s linear infinite;
  animation: cata-sparkle 60s linear infinite;
}
.section-one figure{
  position: relative;
  overflow: hidden;
    margin: 0;
    padding: 0;
}
.cata-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
}
@keyframes cata-sparkle{
  0% {
    background-position: 0 0px,0 0px,0 0;
}

100% {
    background-position: -500px -1000px,-400px -400px,300px 300px;
}
}

@keyframes fadeInRight{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* ........section2 */
.cata-section.cata-parallax-bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    width: 100vw;

}
#title_yugoj span{
  font-family: 'Alex Brush', sans-serif;
  color: #1A1A1A;
}
.text_wrapper p{
  color: #808080;
}
.cata-column-wrapper{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.cata-column{
  width: 50%;
  margin-left: 4.5rem;
}
h3.heading-title {
  position: relative;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  line-height: 60px;
  padding: 0;
}
.cata-text-column p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-transform: none;
  letter-spacing: 0px;
  font-weight: 400;
  margin-bottom: 4rem;
}
#cata_button_yd41n2j9dm.cata-button .cata-btn {
  margin-top: 5rem;
  color: #282828;
  background-color: #ffffff;
  border-radius: 0.4rem;
}
.cata-row.cata-columns-gap-30 .cata-column {
  padding-left: 15px;
  padding-right: 15px;
}
#cata_button_yd41n2j9dm.cata-button .cata-btn:hover{
  background-color: #70A076;
}

.cata-button .cata-btn-size-nm {
  font-size: 13px;
  line-height: 12px;
  font-weight: 600;
  padding: 15px 40px;
  min-width: 140px;
}
/* ... Section Our-Story ... */
.section-ourStory{
  padding-top: 90px;
  width: 100%;
}
.ourStory-title{
  text-align: center;
  color: #1A1A1A;
  position: relative;
  font-family: 'Alex Brush', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  line-height: 60px;
}
/* timeLine */
.container-timeline {
  /* min-height: 100vh; */
  margin: 0 auto;
  width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  padding-bottom: 30px;
  margin: 0 auto;
}
.timeline {
  width: 100%;
  height: auto;
  /* max-width: 800px;
  max-width: 1200px; */
  margin: 0 auto;
  position: relative;
}
/* .timeline ol .timeline-content-right{
  display: flex; 
  align-items: center;
  justify-content: center; 
  margin-right: 11rem;
} */
.timeline ol .timeline-content-left{
  /* margin-left: 5.9rem;  */
  display: flex; 
  align-items: center;
  justify-content: center;
}
.timeline ul {
  list-style: none;
}
.timeline ul li {
  padding: 35px;
  /* padding-left: 0; */
  background-color: #1e1f22;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}
.timeline ul li:last-child {
  margin-bottom: 0;
}
.timeline-content h1 {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}
.timeline-content .date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 0;
  /* left: 50vw; */
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #f7f7f7;
}
.timeline ul li {
  /* width: 50vw; */
  width: 50%;
  position: relative;
  margin-bottom: 50px;
}
.timeline ul li:nth-child(odd) {
  float: left;
  clear: right;
  transform: translateX(-30px);
  border-radius: 20px 0px 20px 20px;
}
.timeline ul li:nth-child(even) {
  float: right;
  clear: left;
  transform: translateX(30px);
  border-radius: 0px 20px 20px 20px;
}
.timeline ul li::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  /* border-radius: 50%; */
  background-color: gray;
  top: 0px; 
}

.timeline ul li:nth-child(odd)::before {
  content: '';
  transform: translate(50%, -50%);
  right: -30px;
}
.timeline ul li:nth-child(even)::before {
  content: "";
  transform: translate(-50%, -50%);
  left: -30px;
  /* left: 7px; */
}
.timeline-content .date {
  position: absolute;
  top: -30px;
}
.timeline ul .love-icon_1::before{
  content: "";
  position: absolute;
  padding: 0.4rem;
  background-color: #fff;
  background-image: url('../images/photo-album.png');
  background-size: cover;
 }
 .timeline ul .love-icon_2::before{
  content: "";
  position: absolute;
  padding: 0.6rem;
  background-color: #f7f7f7;
  background-color: #fff;
  background-image: url('../images/photo-wedding.png');
  background-size: cover;
 }
 .timeline ul .love-icon_3::before{
  content: "";
  position: absolute;
  padding: 0.4rem;
  background-color: #fff;
  background-image: url('../images/photo-rings.png');
  background-size: cover;
 }
 .timeline ul .love-icon_4::before{
  content: "";
  position: absolute;
  padding: 0.5rem;
  background-color: #fff;
  background-image: url('../images/photo-dance.png');
  background-size: cover;
 }
@font-face {
  font-family: flaticon;
  src: url(flaticon.woff);
}
.cata-timeline.cata-style3 .cata-timeline-content .content-wrap {
  position: absolute;
  top: 50%;
  left: 140%;
  transform: translateY(-50%);
  width: 100%;
  padding-left: 40px;
  text-align: left;
}
.content-wrap h4{
  font-size: 42px;
  font-family: 'Alex Brush', sans-serif;
  font-weight: 200;
}
.content-wrap span{
  color: #70A076;
}
.content-wrap .cata-desc{
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-transform: none;
  letter-spacing: 0px;
  font-weight: 400;
  color: #808080;
  margin-top: 1rem;  
}
.cata-timeline .cata-timeline-content h4 {
  margin-bottom: -10px;
  text-transform: inherit;
  font-size: 40px;
  line-height: 50px;
}

/* ... section-bestMoments ... */
.section-bestMoments{
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  animation-duration: 700ms;
  margin-bottom: 0;
  background-attachment: fixed;
}
.section-bestMoments h1, .section-bestFriends h1, .footer-joinWhitUs h1{
  text-align: center;
  font-size: 48px;
  margin-bottom: 2rem;
  font-family: 'Alex Brush', sans-serif;
  font-weight: 200;
}

/* Slider-Best-Moments */
* {box-sizing: border-box;}
  body {font-family: Verdana, sans-serif;}
  .mySlides {display: none;}
  img {vertical-align: middle;
}
.slideshow-bestMoments{
  display: flex;
  justify-content: center;
  align-items: center;
  /* max-width: 400px; */
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.dot-bestMoments {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dot-bestMoments-container{
  /* margin-left: 50%; */
  width: 100%;
}
.active-bestMoments {
  background-color: #70A076;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
from {opacity: .4} 
to {opacity: 1}
}

/* ... section-bestFriends ... */
.section-bestFriends{
  padding-top: 80px;
  margin-bottom: 80px;
}
.container-form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.tabs{
  width: 90%;
  display: flex;
  align-self: center;
  justify-content: center;
  border-bottom: 1px solid #808080;;
}
.tab-center{
  display: flex;
  width: 26%;
  justify-content: space-evenly;
  line-height: 3rem;
}
.tab-center .groomsMen-tab{
  border-bottom: 4px solid #70A076;

  /* border-bottom: 4px solid #70A076; */
}
.tab-center .brideMaids-tab{
  border-bottom: 4px solid transparent;
}
.groomsMen-photos, .brideMaids-photos{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin: 2rem 0rem 0rem 0rem;
  padding: 0 4rem; 
}
.groomsMen-tab, .brideMaids-tab{
  margin: 0 auto;
  color: #808080;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 0.2rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}
.forms{
  display: flex;
  flex-direction: column;
}
.groomsMen-form, .brideMaids-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}
.brideMaids-form{
  display: none;
}
.friend-details{
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 25rem;
  cursor: pointer;
}
.friend-details:hover i{
opacity: 1;
transition: all 300ms ease-in-out;
}
.friend-details img{
  border-radius: 50%;

	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.friend-details:hover img{
  
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.friend-details h4{
  color: #444;
  cursor: pointer;
  text-transform: uppercase;
}
.friend-socialNetworks{
  display: flex;
  justify-content: space-evenly;
  width: 150px;
}
.friend-socialNetworks i{
  opacity: 0;
  color: #787878;
}
.friend-socialNetworks i:hover{
  color: #337ab7;
  cursor: pointer;
}
/* ... section- textSlider ... */
.section-textSlider{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  visibility: visible;
  
  animation-duration: 700ms;
  -webkit-transition: -webkit-transform .5s;
  transition: transform .5s;

}
.container-textSlider{
  animation-duration: 700ms;
  -webkit-transition: -webkit-transform .5s;
  transition: transform .5s;

}

@keyframes fadeInUp{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fadeInUp{
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.container-textSlider{
  width: 52%;
  transition: padding-bottom 0.6s forward;
}
.container-textSlider p{
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-family: 'Alex Brush', sans-serif;
  -webkit-font-smoothing: antialiased;

  transition: all 0.6s ease;

  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;


}
.slider-text a{
  margin-top: 1rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
.slider-text{
  display: none;
}

/* ...section-ourEvents... */
.section-ourEvents{
  width: 100%;
  padding-bottom: 100px;
}
.section-ourEvents h1{
  color: #1A1A1A;
  text-align: center;
  font-family: 'Alex Brush', sans-serif;
  font-size: 54px;
  font-weight: 200;
  padding-top: 100px;
}

/* video-play-icon......... */
.play-btn {
  width: 60px;
  height: 60px;
  background: radial-gradient( transparent 60%, rgba(255, 255, 255, 1) 66%);
  border-radius: 50%;
  position: relative;
  display: block;
  margin: 100px auto;
  box-shadow: 0px 0px 25px 3px #70A076;
}
/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -30%;
  left: -30%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}
.container_cards{
  margin: 0 auto;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  width: 90vw;
  justify-content: space-evenly;
}
.btn-viewAll{
  color: #1A1A1A;
  text-transform: capitalize;
  padding: 0.6rem 2rem;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.1);
  text-decoration: none;
  border-radius: 0.2rem;
  text-transform: uppercase;
  font-size: smaller;
  font-weight: 600;
}
.btn-viewAll:hover{
  color: #1A1A1A;
  background-color: #70A076;
}

/* ...Lista de Presentes... */
.gift-list-section{
  width: 100%;
  background: #eef5ef;
  border-top: 1px solid #d8e6d9;
  border-bottom: 1px solid #d8e6d9;
  padding: 80px 20px;
}
.gift-list-container{
  max-width: 1200px;
  margin: 0 auto;
}
.gift-list-container h2{
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #3f4d40;
  font-size: 1.7rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}
.gift-list-container > p{
  text-align: center;
  margin: 15px auto 40px;
  color: #596a5a;
  max-width: 740px;
  line-height: 1.5;
  font-size: 0.95rem;
}
.gift-submit-btn{
  border: none;
  background: #70A076;
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 14px;
  cursor: pointer;
}
.gift-submit-btn:hover{
  background: #70A076;
}
.gift-proof-form{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d8e6d9;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(63, 77, 64, 0.08);
  padding: 20px;
}
.gift-shop-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.gift-shop-card{
  background: #fff;
  border: 1px solid #d8e6d9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(63, 77, 64, 0.08);
}
.gift-shop-card img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.gift-shop-info{
  padding: 16px;
  text-align: center;
}
.gift-shop-info h3{
  color: #3f4d40;
  font-size: 1.05rem;
}
.gift-price{
  margin: 10px 0 14px;
  color: #70A076;
  font-weight: 700;
}
.gift-offer-btn{
  border: none;
  background: #70A076;
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
}
.gift-offer-btn:hover{
  filter: brightness(95%);
}
.gift-offer-btn--sent,
.gift-offer-btn--sent:hover{
  background: #9ca3af;
  color: #ffffff;
  cursor: not-allowed;
  filter: none;
}
.gift-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 5000;
}
.gift-modal-overlay.active{
  display: flex;
}
.gift-modal{
  width: min(560px, 100%);
  background: linear-gradient(180deg, #f6fbf6 0%, #ffffff 28%);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  border: 1px solid #d8e6d9;
  box-shadow: 0 25px 45px rgba(35, 47, 36, 0.25);
}
.gift-modal h3{
  color: #3f4d40;
  margin-bottom: 14px;
  font-size: 1.4rem;
  border-bottom: 1px solid #d8e6d9;
  padding-bottom: 10px;
}
.gift-modal-close{
  border: none;
  background: transparent;
  font-size: 1.8rem;
  position: absolute;
  right: 14px;
  top: 8px;
  cursor: pointer;
  color: #3f4d40;
}
.gift-modal-product{
  background: #f3f7f3;
  border: 1px solid #d8e6d9;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}
.gift-transfer-box{
  background: #f8faf8;
  border: 1px dashed #b9d0bb;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}
#gift-proof-feedback{
  color: #5f5655;
}
.gift-proof-form label{
  color: #5f5655;
  font-weight: 600;
  font-size: 0.9rem;
}
#sender-name,
#sender-message{
  border: 1px solid #c8d9c9;
  border-radius: 8px;
  padding: 10px;
  color: #5f5655;
  font-family: inherit;
}
#message-feedback{
  min-height: 18px;
  color: #5f5655;
}
@media (max-width: 992px){
  .gift-shop-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 16px;
  }
}
@media (max-width: 576px){
  .gift-list-section{
    padding: 60px 14px;
  }
  .gift-list-container h2{
    font-size: 1.45rem;
    letter-spacing: 0.12rem;
  }
  .gift-shop-grid{
    grid-template-columns: 1fr;
  }
  .gift-proof-form{
    padding: 16px;
  }
}
.container_cards{
  display: grid;
  grid-template-columns: auto auto auto;
}
.card{
  border: 1px solid #e8e8e8;
  height: fit-content;
}
.card-body{
  padding: 2rem;
}
/* ... EventSection-slider ... */
.ulElem {
  padding: 0;
  margin: 0;
}


.liElem , .liElem-event{
  list-style: none;
  display: none;
}
/* .liElem img {
  width: 100%;
} */
.liElem-event img{
  width: 100%;
}
#container, #container-event {
  height: 12px;
  width: 100%;
  z-index: 2;
  position: inherit;
  top: 270px;
  text-align: center;
  margin: auto;
  margin-top: 6px;
  /* direction: rtl; */
}
.circle, .circle-event {
  height: 9px;
  width: 9px;
  display: inline-block;
  margin-bottom: 2px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.6s ease;
}
/* ... footer_Join whit Us */
.footer-joinWhitUs{
    padding-top: 100px;
    padding-bottom: 60px;
    /* margin-bottom: -100px; */
    background-image: url('../images/background_13.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.container-rsvp{
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 10px -3px #d3d3d3;
  box-shadow: 0 2px 10px -3px #d3d3d3;
  box-shadow: 0 2px 10px -3px #d3d3d3;
  background-color: #fff;
  padding: 70px 70px 0px 70px;
  width: 54vw;
}
.Texture-bottom_form{
  bottom: -5.150rem;
  position: relative;
  /* text-align: center; */
}
.Texture-bottom_form_container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright{
  margin: 2rem 0;
  padding-top: 5rem;
}
.rsvp-titles{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rsvp-titles h5{
  color: #808080;
}
.form-rsvp{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  color: #808080;
  flex-direction: column;
}
.form-input-email, .form-input-name{
  border: none;
  border-bottom: 1px solid #eaeaea;
  height: 40px;
  padding: 7px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 2rem;
}
.form-textArea{
  border: none;
  border-bottom: 1px solid #eaeaea;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2rem;
}
.numberOfGuests-container select{
  border: none;
  border-bottom: 1px solid #eaeaea;
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  color: #808080;
  outline: none;
}
.numberOfGuests-container{
  display: flex;
  justify-content: space-evenly;
}
.form-submit-container{
  width: 100%;
  display: flex;
  justify-content: center;
}
.form-submit{
  border-radius: 0.3rem;
  padding: 8px 40px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  line-height: 24px;
  margin: 3rem auto 0rem auto;
  color: #333;
  background-color: #fff;
}
.form-submit:hover{
  background-color: #70A076;
}
.socialMedia-footer i{
  color: #fff;
  cursor: pointer;
  margin-left: 1.9rem;
}
.fa-heart{
  color: #70A076;
  font-size: 10px;
}

/* ... Section Music_Website*/
.music-icon{
  position: fixed;
  left: 1rem;
  top:91vh;
  padding: 1.4rem 1.4rem;
  background-color: #70A076;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3000;
}
.player{
  position: fixed;
  left: 0.6rem;
  top:65vh;
  cursor: pointer;
  z-index: 3000;
  background-size: cover;
  background-image: url(../images/Capture.JPG);
  background-position: center center;
  border-top: 5px solid #70A076;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  animation: fade;
  animation-duration: 0.6s;
}
.music-icon i{
  color: #fff;
  font-size: 1.2rem;
}
.bg-container img {
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  margin: auto; 
  min-width: 50%;
  min-height: 50%;
  filter: blur(15px);
  -webkit-filter: blur(50px);
  transform: scale(1.1); 
}
.player-container {
  height: 500px;
  width: 400px;
  background: #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 15px 30px 5px rgba(0, 0, 0, 0.3);
}

.img-container {
  width: 300px;
  height: 300px;
  position: relative;
  top: -50px;
  left: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-container img {
  height: 0;
  width: 0;
  opacity: 0;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 30px 5px rgba(0, 0, 0, 0.5);
  transition: .5s;
}
.img-container img.active {
  transition: .5s;
  opacity: 1;
  width: 100%;
  height: 100%;
}
.progress-container {
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin: 40px 20px;
  height: 4px;
  width: 90%;
}
.progress {
  background: #70A076;
  border-radius: 5px;
  height: 100%;
  width: 0%;
  transition: width 0.1s linear;
}

.duration-wrapper {
  position: relative;
  top: -25px;
  display: flex;
  z-index: 1000;
  justify-content: space-between;
  color: #e7e7e7;
  font-weight: 600;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
#play{
  color: #70A076;
}
.fas {
  font-size: 30px;
  color: rgb(129, 129, 129);
  margin-right: 30px;
  cursor: pointer;
  user-select: none;
}

.fas:hover {
  filter: brightness(80%);
}

.main-button {
  font-size: 40px;
  position: relative;
  top: 3px;
}
/* ... Section Back To Top - Icon */
.backtotop-container{
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 10000;
  -ms-transform: translateY(70px);
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 50%;
}
.backtotop-inner {
  transition: all 0.6s;
  display: block;
  margin: 3px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #FFF;
  -webkit-border-radius: 50%;
  -moz-box-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 20px #e2e2e2;
  -webkit-box-shadow: 0 0 20px #e2e2e2;
  box-shadow: 0 0 20px #e2e2e2;
}
.ti-facebook:hover{
  color: #3B5999;
}
.ti-twitter-alt:hover{
  color: #55ACEF;
}
.ti-google:hover{
  color: #DD4C3A;
}
.ti-instagram:hover{
  color: #262626;
}
.show {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* ... Responsive ... */

@media (max-width:576px) {   /*portrait phones */
  html{
    font-size: 10px;
  } 
  .S_Menue{
    display: none;
  }
  .navbar {
    background-color: #fff;
    padding: 4rem 0rem 3.6rem 0rem;
  }
  .line{
    height: 0.3rem;
  }
  .nav-list-mobile a{
    display: inline-flex; 
  }

  .menu {
    width: 2.2rem;
    height: 2.6rem;
    top: 2.6rem;
  }
  .navbar-logo img{
    max-height: 4.275rem;
    vertical-align: middle;
  }
  .light_logo{
    display: none;
  }       
  .main-nav-list{
    display: none;
  }
  .nav-list-mobile{
    display: block;
  }
  .when-where-section{
    width: 100%;
    height: 100vh;
    padding-top: 10rem;
    padding-bottom: 55rem;
    margin-bottom: 0;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .whenwhere-title{
    font-family: 'Alex Brush', sans-serif;
    position: relative;
    font-weight: 400;
    font-style: normal;
    font-size: 4.5rem;
    line-height: 60px;
    padding: 0;
    color: #1A1A1A;
    margin-bottom: 2rem;
  }
  .whenwhere-description{
    color: #606060;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .countdown-weddingTime{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 71%;
    padding: 2rem 0rem;
  }
  .day, .hour, .minute, .second{
    background-color: #fff;
    width: 12rem;
    height: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 37px;
  }
  .second{
    margin-top: 11px;
  }
  .Texture-bottom{
    bottom: -28px;
    max-width: 100%;
  }
  .countdown-weddingTime section{
    width: 100%;
    justify-content: space-evenly;
    display: flex;
    flex-direction: row;
  }
  .section-one {
    padding-top: 15.2rem;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  .section-one .image-name{
    margin: 5rem 0rem;
  }
  .section-one figure img{
    padding: 0rem;
  }
  .cata-column {
    width: 84%;
    margin: 0 auto;
  }
  .cata-button .cata-btn-size-nm {
    padding: 15px 28px;
  }
  h3.heading-title {
    font-size: 46px;
    text-align: center;
  }
  .groomsMen-photos, .brideMaids-photos{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .tab-center {
    display: flex;
    width: 98%;
    justify-content: space-evenly;
    /* line-height: 2.8rem; */
  }
  .groomsMen-tab, .brideMaids-tab {
    font-size: 1.4rem;
  }
  .friend-details{
    margin-top: 7rem;
  }
  .groomsMen-tab{
    color: #808080;
    color: #70A076;
  }

  .section-bestFriends {
    padding-top: 88px;
    margin-bottom: 80px;
  }
  .container_cards{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .container_cards .card {
    margin: 1rem 1rem;
  }
  .container-textSlider {
    width: 71%;
  }
  .container-textSlider p{
    font-size: 2.8rem;
  }
  .slideshow-bestMoments img{
    width: 100%;
    padding: 0 2rem;
    height: 156.672px;
    object-fit: cover;
    height: auto;
  }
  .dot-bestMoments{
    width: 10px;
    height: 10px;
  }
  .dot-bestMoments-container{
    margin-left: 0%;
  }
  .slideShow-container{
    margin-top: 7rem;
     height: calc(40vh - 7rem) !important;
  }
  .banner-slideShow-ul,
  .liElem{
    height: calc(40vh - 7rem);
  }
  .liElem{
    position: relative;
    overflow: hidden;
  }
  .banner_img{
    height: 100vh;
    object-fit: cover;
  }
  .banner_img--first{
    width: 100% !important;
    height: calc(40vh - 7rem) !important;
    object-fit: cover;
    object-position: center top;
  }
  .opacity{
    position: absolute;
    inset: 0;
  }
.banner_img--first{
    width: 100% !important;
    height: calc(40vh - 7rem) !important;
    object-fit: cover;
    object-position: center top;
  }
  .container-rsvp{
    width: 84vw;
  }
  .footer-joinWhitUs h1 {
    font-size: 50px;
    width: 200px;
  }
  .rsvp-titles h5 {
    color: #808080;
    font-size: 1.5rem;
    text-align: center;
    width: 170px;
    font-weight: 500;
  }
  .form-rsvp{
    align-items: center;
  }
  .form-input-name::placeholder, .form-input-email::placeholder{
    font-size: 1.4rem;
  }
  .numberOfGuests-container select{
    font-size: 1.5rem;
    margin-top: 2.6rem;
    outline: none;
    max-height: 240px;
    cursor: pointer;
  }
  .numberOfGuests-container select option{
    background-color: #f7f7f7;
    color: #898989;
    line-height: 0.5rem;
    outline: none;
  }
  .form-textArea::placeholder{
    font-size: 1.5rem;
  }
  .Texture-bottom_form_container{
    display: flex;
    justify-self: flex-start;
    align-self: flex-start;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Texture-bottom_form{
    object-fit: cover;
    width: 85vw;
    bottom: -4.15rem;
  }
  .caption-first{
    text-align: center;
    width: 100%;
    font-size: 45px;
      top: 70%;
  }
  .caption-second{
    font-size: 17px;
    text-align: center;
    width: 100%;
      top: 58%;
  }
  .flower-line-top, .flower-line-bottom{
    width: 15rem;
  }
  .section-ourEvents h1{
    font-size: 44px;
  }
  .player {
    top: 61vh;
    width: 284px;
  }
  .timeline:before{
    left: 0%;
  }
  .timeline ol .timeline-content-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 5.5rem;
    width: 325px;
  }
  .timeline ol .timeline-content-left{
    display: flex; 
    align-items:flex-start;
    justify-content: flex-start; 
    margin-left: 5.5rem;
  }
  .timeline ul li:nth-child(odd)::before {
    content: '';
    transform: translate(50%, -50%);
    left: 2px;
  }
  .timeline ul li:nth-child(even)::before {
    content: "";
    transform: translate(-50%, -50%);
    left: -30px;
  }
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #f7f7f7;
  }
  .container-timeline .timeline ul{
    display: flex;
    flex-direction: column;
  }
  .ourStory-title{
    font-size: 46px;
  }
  .timeline-content-image-right figure{
    display: flex;
    justify-content: center;
    width: 76vw;
    margin-left: revert;
  }
  .timeline-content-image-left figure{
    display: flex;
    justify-content: center;
    width: 76vw;
    /* margin-left: revert; */
  }
  .timeline {
    width: 85%;
  }
  .timeline ul li{
    padding-left: 0px;
  }
  .timeline .timeline-content-image-right img{
    vertical-align: middle;
    max-width: 76%;
    object-fit: cover;
    height: auto;
  }
  .timeline .timeline-content-image-left img{
    vertical-align: middle;
    max-width: 76%;
    object-fit: cover;
    height: auto;
    margin-left: -5rem;
  }
  .content-wrap h4 {
    font-size: 36px;
  }
  .content-wrap .cata-desc{
    font-size: 13px;
  }
  .section-bestMoments h1, .section-bestFriends h1, .footer-joinWhitUs h1 {
    font-size: 40px;
  }
  .nav-link, .main-nav-link{
    padding: 2rem 0rem;
  }
  .friend-socialNetworks i{
    opacity: 1;
  }
  .friend-socialNetworks {
    font-size: medium;
    padding-top: 0.6rem;
  }
  .friend-details h4 {
    font-size: small;
    margin: 0.7rem 0rem;
  }
}
@media (max-width: 520px){
  .numberOfGuests-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
}
@media (max-width: 460px){
  .content-wrap h4 {
    font-size: 36px;
  }
}
@media (max-width:423px){
  .Texture-bottom {
    bottom: -78px;
    width: 100%;
  }
  h3.heading-title {
    font-size: 41px;
    text-align: center;
  }
  .section-one figure img{
    padding: 0rem 2rem;
  }
  .when-where-section{
    padding-bottom: 69rem;
  }
  .footer-joinWhitUs{
    padding-top: 0rem;
  }
  .whenwhere-title {
    font-size: 3.6rem;
    margin: 0 auto;
    width: 200px;
    text-align: center;
  }
  .whenwhere-description {
    font-size: 1.4rem;
  }
  .countdown-weddingTime{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  .countdown-weddingTime section{
    display: flex;
    flex-direction: row;
    /* width: 100%; */
    width: 28rem;
    justify-content: space-evenly;
    margin-bottom: 14px;
  }
  .day, .hour, .minute, .second {
    font-size: 33px;
  }
  .second{
    margin-top: 14px;
  }
  .section-bestMoments h1, .section-bestFriends h1, .footer-joinWhitUs h1 {
    font-size: 38px;
  }
  .copyright{
    font-size: 1.4rem;
    animation-duration: 700ms;
    animation-delay: 200ms;
    color: #bbb;
    width: 85%;
    text-align: center;
    line-height: 2.5rem;
  }
  .socialMedia-footer{
    font-size: medium;
  }
  .timeline ol .timeline-content-right{
    display: flex; 
    align-items:flex-start;
    justify-content: flex-start; 
    margin-left: 4.9rem;
    width: 200px;
  }
}
@media (max-width: 376px) {      /* Media Query: iPhone (Vertical) */
  .player-container {
    width: 95vw;
  }
  .timeline .timeline-content-image-left img{
    margin-left: -3rem;
  }
  .img-container {
    left: 29px;
  }
  .player-container h2{
    font-size: 20px;
  }

  .player-container h3 {
    font-size: 15px;
  }
  .player-controls {
    top: -10px;
    left: 100px;
  }
  .player {
    top: 64vh;
  }
}
@media (max-width: 319px){
  * {
      display: none!important;
  }
}
@media (min-width:576px) {   /*landscape phones */
  html{
    font-size: 10px;
  } 
  .S_Menue{
    display: none;
  }
  .navbar {
    background-color: #fff;
    padding: 4rem 0rem 3.6rem 0rem;
  }
  .slideShow-container{
    margin-top: 7rem;
  }
  .line{
    height: 0.3rem;
  }
  .nav-list-mobile a{
    display: inline-flex; 
  }
  .menu {
    width: 2.2rem;
    height: 2.6rem;
    top: 2.6rem;
  }
  .navbar-logo img{
    max-height: 4.275rem;
    vertical-align: middle;
  }
  .light_logo{
    display: none;
  }       
  .main-nav-list{
    display: none;
  }
  .nav-list-mobile{
    display: block;
  }
  .when-where-section{
    width: 100%;
    height: 100vh;
    padding-bottom: 47rem;
    margin-bottom: 0;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .whenwhere-title{
    font-family: 'Alex Brush', sans-serif;
    position: relative;
    font-weight: 400;
    font-style: normal;
    font-size: 4.7rem;
    line-height: 60px;
    padding: 0;
    color: #1A1A1A;
    margin-bottom: 2rem;
  }
  .whenwhere-description{
    color: #606060;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .countdown-weddingTime{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 53rem;
    margin-top: 2rem;
  }
  .day, .hour, .minute, .second{
    background-color: #fff;
    width: 12rem;
    height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3.6rem;
  }
  .Texture-bottom{
    bottom: -43%;
  }
  .music-icon {
    top: 91vh;
    padding: 1.6rem 1.6rem;
  }
  .music-icon i {
    font-size: 1.2rem;
  }
.countdown-weddingTime section{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 25rem;
}
.when-where-section {
    padding-top: 18rem;
}
.navbar{
  padding:2.5rem 0rem 4.8rem 0rem;
}
.navbar-logo {
  top: 1.9rem;
}
.nav-list-mobile.change, .nav-list-mobile {
  top: 7.2rem;
}
.player {
  top: 64vh;
  width: 28rem;
}
.section-one {
  padding-bottom: 80px;
  padding-top: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.mikekate img{
  padding: 3rem 0rem;
}
.footer-joinWhitUs{
  padding-top: 0rem;
}
  .container_cards{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .container_cards .card {
    margin: 1rem 1rem;
  }
  .container-textSlider {
    width: 71%;
  }
  .container-textSlider p{
    font-size: 2.8rem;
  }
  .copyright{
    font-size: 1.4rem;
  }
  .slideshow-bestMoments img{
    width: 100%;
    padding: 0 2rem;
    height: 156.672px;
    object-fit: cover;
    height: auto;
  }
  .groomsMen-photos, .brideMaids-photos{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 2.7rem;
    grid-row-gap: 6rem;
  }
  .friend-socialNetworks {
    font-size: larger;
  }
  .groomsMen-form, .brideMaids-form{
    margin-top: 3rem;
  }
  .groomsMen-tab, .brideMaids-tab {
    font-size: 1.4rem;
  }
  .tab-center {
    width: 54%;
    line-height: 4rem;
  }
  .friend-details h4 {
    font-size: larger;
    padding: 1.3rem;
  }
  .socialMedia-footer{
    font-size: large;
  }
  .Texture-bottom_form_container{
    display: flex;
    justify-self: flex-start;
    align-self: flex-start;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Texture-bottom_form{
    object-fit: cover;
    width: 85vw;
    bottom: -4.15rem;
  }
  .container-rsvp{
    width: 89%;
  }
  .cata-column {
    width: 84%;
  }
  .caption-second{
    font-size: 16px;
  }
  .caption-first{
    width: 100%;
    font-size: 56px;
    text-align: center;
  }
  .timeline-firstTXT-right, .timeline-secondTXT-right{
    display: flex; 
    align-items:flex-start;
    justify-content: flex-start; 
    margin-left: 6.5rem;
  }
  .timeline ul li:nth-child(odd)::before {
    content: '';
    transform: translate(50%, -50%);
    left: 0px;
  }
  .timeline ul li:nth-child(even)::before {
    content: "";
    transform: translate(-50%, -50%);
    left: -30px;
  }
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #f7f7f7;
  }
  .container-timeline .timeline ul{
    display: flex;
    flex-direction: column;
  }
  .container-timeline .timeline ul{
    display: flex;
    flex-direction: column;
  }
  .content-wrap h4, .content-wrap p{
    text-align: initial;
    width: max-content;
  }
  /* khkh */
  .timeline-content-image-right figure{
    display: flex;
    justify-content: center;
    width: 86vw;
    margin-left: revert;
  }
  .timeline-content-image-left figure{
    display: flex;
    justify-content: center;
    width: 82vw;
    /* margin-left: revert; */
  }
  .timeline {
    width: 85%;
  }
  .timeline ul li{
    padding-left: 0px;
  }
  .timeline .timeline-content-image-right img{
    vertical-align: middle;
    max-width: 81%;
    object-fit: cover;
    height: auto;
  }
  .timeline .timeline-content-image-left img{
    vertical-align: middle;
    max-width: 81%;
    object-fit: cover;
    height: auto;
    margin-left: -5rem;
  }
}
@media (min-width:768px) {          /*tablets */
  html{
    font-size: 16px;
  }
  .player{
    width: 20rem;
    height: 10rem;
    top: 60vh;
  }
  .S_Menue{
    display: block;
  }
   .navbar{
    padding: 2rem 0rem 2.6rem 0rem;
  }
  .section-one{
    padding-top: 5rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    padding-bottom: 7rem;
  }
  .groomsMen-photos, .brideMaids-photos{
    display: grid;
    grid-template-columns: auto auto auto;
  }
  .day, .hour, .minute, .second {
    width: 8rem;
    height: 8rem;
    font-size: 2.2rem;
  }
  .countdown-weddingTime {
    width: 74%;
  }
  .countdown-weddingTime section {
    width: 16.7rem;
  }
  .when-where-section {
    padding-top: 7rem;
  }
  .whenwhere-title {
    font-size: 3rem;
  }
  .whenwhere-description {
    font-size: 0.9rem;
    line-height: 1.8rem;
  }
  .container_cards{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: auto auto;
  }
  .container_cards .card {
    margin: -2.1rem 1rem;
  }
  .line {
    height: 0.2rem;
  }
  .menu {
    width: 1.5rem;
    height: 1.9rem;
    top: 1.6rem;
  }
  .nav-list-mobile.change, .nav-list-mobile {
    top: 4.6rem;
  }
  .nav-link, .main-nav-link {
    font-size: 0.8rem;
  }
  .navbar-logo img {
    max-height: 2.7rem;
    vertical-align: middle;
  }
  .navbar-logo {
    top: 1rem;
  }
  .navbar {
    background-color: #fff;
  }
  .music-icon {
    top: 91vh;
    padding: 0.9rem 13.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0.5rem;
  }
  .music-icon i {
    font-size: 0.8rem;
  }
  .slideShow-container{
    margin-top: 4.6rem;
  }
  .caption-second{
    font-size: 15px;
  }
  .caption-first{
    font-size: 60px;
  }
  .flower-line-bottom{
    top: 73%;
  }
  .copyright {
    font-size: 0.9rem;
  }
  .container-textSlider p{
    font-size: 1.8rem;
  }
  .section-ourEvents h1 {
    font-size: 52px;
  }
  .footer-joinWhitUs {
    padding-top: 36px
  }
  .when-where-section{
    padding-bottom: 33rem;
  }
  .cata-column {
    width: 48%;
  }
  .friend-details h4 {
    font-size: smaller;
    padding: 0rem;
  }
  .friend-socialNetworks {
    font-size: smaller;
  }
  .friend-details {
    height: 20rem;
  }
  .groomsMen-photos, .brideMaids-photos {
    grid-gap: 0rem;
    grid-row-gap: 0rem;
    grid-column-gap: 2rem;
  }
  .groomsMen-tab, .brideMaids-tab {
    font-size: 1.1rem;
  }
  .tab-center {
    line-height: 2.6rem;
  }
  .timeline ul li:nth-child(odd)::before {
    content: '';
    transform: translate(50%, -50%);
    left: auto;
  }
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #f7f7f7;
  }
  .timeline-content-image-right{
    display: flex; 
    align-items: flex-end;
    justify-content: flex-end;
  }
  .container-timeline .timeline ul{
    display: inline;
  }
  .timeline img{
    vertical-align: middle;
    max-width: 100%;
  }
  .container-rsvp {
    width: 72%;
  }
  .timeline-content-image-left figure{
    display: flex;
    justify-content: center;
    width: auto;
    margin-left: revert;
  }
  timeline-content-image-left img{
    vertical-align: middle;
    object-fit: cover;
    height: auto;
    margin-left: -5rem;
  }
  .timeline .timeline-content-image-right img, .timeline .timeline-content-image-left img{
    max-width: 100%;
  }
  .timeline-firstTXT-right{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0rem 0rem 0rem;
  }
  .timeline-secondTXT-right{
    display: flex;
    justify-content: center;
    /* padding-top: 1.5rem;
    margin-left: 2rem; */
    justify-content: center;
    margin: 1.5rem 0rem 0rem 0rem;
  }
  .timeline-content-left{
    padding-top: 1.5rem;
  }
  .timeline {
    width: 100%;
  }
  .content-wrap h4 {
    font-size: 32px;
    font-weight: 100;
  }
  .content-wrap .cata-desc {
    font-size: 13px;
  }
  .floatRight{
    float: right;
    width: 50%;
    justify-content: center;
  }
}

@media (min-width:992px) {          /*desktops */
  .nav-list-mobile, .menu{
    display: none;
  }
  .navbar-logo img{
    max-height: 2.75rem;
    vertical-align: middle;
  } 
  .navbar {
    background-color: transparent;
    padding: 27px;
  }
  .dark_logo{
    max-height: 3.75rem;
  }
  .dark_logo{
    display: none;
  }
  .light_logo{
    display: block;
  }
  .main-nav-list{
    display: block;
  }
  .navbar{
    justify-content: flex-end;
    padding-right: 6rem; 
    padding-right: 3rem; 
  }
  .main-nav-list{
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    transition: all .4s ease;
    color: #EEE;
    letter-spacing: 0px;
    cursor: default;
  }
  .main-nav-list span{
    cursor: pointer;
  }
  /* .navbar-logo{
    margin-left: 4rem;
  } */
  .nav-link span, .main-nav-link span{
    margin-left: 0.7rem;
  }
  .when-where-section{
    width: 100%;
    height: 100vh;
    padding-top: 100px;
    margin-bottom: 0;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .whenwhere-title{
    font-family: 'Alex Brush', sans-serif;
    position: relative;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 60px;
    padding: 0;
    color: #1A1A1A;
    margin-bottom: 2rem;
  }
  .whenwhere-description{
    color: #606060;
    font-size: 0.9rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .countdown-weddingTime{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 43%;
  }
  .groomsMen-photos, .brideMaids-photos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin: 2rem 0rem 0rem 0rem;
    padding: 0 4rem;
  }
  .brideMaids-photos{
    padding: 0rem 6rem;
  }
  .footer-joinWhitUs {
    padding-top: 10px;
  }
  .caption-first{
    font-size: 85px;
  }
  .caption-second{
    font-size: 20px;
  }
  
  .container-rsvp {
    width: 50%;
  }
  .timeline-firstTXT-right{
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 0rem;
    margin-left: 0rem;
    height: 340px;
    width: 34%;
    padding-left: 4rem;
  }
  .timeline-content-left {
    padding-top: 5.5rem;
  }
  .timeline-secondTXT-right{
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 7.5rem;
    margin-left: 0rem;
    margin-left: 29rem;
    height: 340px;
    width: 40%;
  }
  .content-wrap h4 {
    font-size: 35px;
  } 
  
  .floatRight{
    display: unset;
    float: inherit;
    width: auto;
  }
  .brideMaids-photos img{
    width: 100%;
    height: auto;
  }
  .slideShow-container {
    margin-top: 0rem;
  }
  .timeline figure{
    overflow: hidden;
    height: 270px;
  }
  .timeline img{
      transition: 0.3s;
      transition: transform .5s ease;
      object-fit: cover;
  }
  .timeline img:hover{
    transform: scale(1.1);
    
  }
}
@media (min-width:1200px) {          /*large desktops */
  .slideshow-container {
    margin-top: 0rem;
  }
  .navbar{
    background:transparent;
    border-bottom: 1px solid #eee;
    border-color: rgba(222, 222, 222,0.15);
  }
  .slideShow-container{
    margin-top: 0rem;
  }
  .nav-link, .main-nav-link {
    font-size: 0.8rem;
  }
  .navbar-logo img {
    max-height: 4.875rem;
    vertical-align: middle;
  }
  .navbar-logo {
    top: 20%;
  }
  .nav-link span, .main-nav-link span {
    margin-left: 1.5rem;
  }
  .navbar {
    padding-top: 32px;
  }
  .music-icon {
    top: 92vh;
    padding: 0.9rem 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0.5rem;
  }
  .music-icon i {
    font-size: 0.8rem;
  }
  .container_cards {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: auto auto auto;
  }
  /* .timeline ul li{
    padding-left: 120px;
  } */
  .player{
    width: 20rem;
    height: 10rem;
    top: 65vh;
  }
  .timeline-firstTXT-right{
    padding-left: 0rem;
  }
  .timeline-secondTXT-right{
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 7.5rem;
    margin-left: 0rem;
    height: 340px;
    width: 34%;
  }
  .timeline-content-left{
    padding-top: 7rem;
    padding-left: 3rem;
  }
  .container-textSlider {
    width: 50%;
    line-height: 2.4rem;
  }
  .music-text-container{
    font-size: smaller;
  }
}
@media (min-width:1400px) {          /*larger desktops */
  
}

.sticky{
  top: 0;
  position: fixed;
  transition: all 0.5s;
  z-index: 100;
  background-color: #fff;
}
