/* General Css */
html {
    scroll-behavior: smooth;
  }
  
  
  @font-face {
      font-family: nameFont;
      src: url(../fonts/Nobili.woff);
    }
  
  @font-face {
    font-family: paradise;
    src: url(../fonts/ParadiseLove.woff);
  }
  
.row{
    padding: 0 !important;
}
.col{
    padding: 0 !important;
}
.hero-img img{
    width: 100%;
}
.hero-name img{
    width: 100%;
}
.wed-2 img{
    width: 100%;
}
.wed-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.wed-1{
    padding: 50px;
    text-align: center;


}

.wed-1 div:first-child p{
    font-family: nameFont;
    font-size: 50px;
    color: #800000;
}
  

.story-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-story{
  text-align: center;
  padding: 50px;
}
.our-story p:first-child{
  font-family: nameFont;
  font-size: 50px;
  color: #800000;
}
/* Entourage css */


.entourage{
    background-color: #fff;
    padding: 30px;
    color: #800000;
    padding: 0 !important;
  }
  
  .entourage p{
    text-align: center;
    font-family: nameFont;
    font-size: 50px;
  }
  
  .entourage-image{
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
  }

  .front-image img{
    width: 100%;
  }
  /* End of Entourage css */
  /* Faqs Css */
.faqs{
  padding: 30px;
}

.faqs p{
  text-align: center;
  font-family: nameFont;
  font-size: 50px;
  color: #800000;
}

.acc-icon{
  width: 25px;
  margin-right: 15px;
}
.acc-btn{
  background-color: #800000 !important;
  height: 60px !important;
  color: #fff !important;
}
.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.timeline{
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
/* End of faqs */
  .savetd{
    padding: 0 !important;
  }
  .savethedate img{
    width: 100%;
  }
  .timer{
    margin: 0px auto;
    width: 75%;
    
  }

  .savethedatevideo{
    width: 100%;
  }

@media only screen and (max-width: 1400px) {
    .wed-1{
      padding: 10px;
    }
    .wed-1 div:first-child p{
        font-size: 35px;
      }
  }

@media only screen and (max-width: 991px) {

    .wed-1 {
      padding: 10px;
    }
    .our-story{
      padding: 10px;
    }
    .wed-1 div:first-child p{
        font-size: 30px;
      }
      .entourage p{
        font-size: 40px;
      }
      .entourage-image{
        width: 100%;
        margin-top: 10px;
      }
      .timer{
        width: 90%;
      }
      .faqs p{
        font-size: 40px;
      }
      .faqs-2{
        margin-top: .3px !important;
      }
}

/* Modal CSS opening image */

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }

    /* back to top btn */
    #myBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 30px;
        z-index: 99;
        font-size: 18px;
        border: none;
        outline: none;
        background-color: #800000;
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 4px;
        text-align: center;
      }