* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
a {
  color: white;
  text-decoration: none;
}
html {
  font-size: 0.833vw;
}

input[type="radio"] {
  accent-color: black;
}
.d-none {
  display: none;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.w-100 {
  width: 100%;
}
.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 99.75rem;
  margin-left: auto;
  margin-right: auto;
}

.marginY {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.showDesktop {
  display: block;
}

.showMobile {
  display: none;
}

.musicIcon {
  position: fixed;
  z-index: 999;
  bottom: 20px;
  right: 20px;
  width: 3.5rem;
  height: 3.5rem;
}

.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}
.date .date__title {
  text-align: center;
  color: #566d44;
  font-size: 2.5rem;
  font-weight: 400;
}

.dress-code {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
  background-color: #ffffff;
}
.dress-code__title {
  color: #566d44;
  font-size: 1.625rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.dress-code__palette {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}
.dress-code__item {
  width: 9.375rem;
  height: 13.4375rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 0.0625rem solid #d7d7d7;
  border-radius: 25rem 25rem 0 0;
  padding: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.dress-code__item:hover {
  -webkit-transform: translateY(-0.3125rem);
  transform: translateY(-0.3125rem);
  -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
}
.dress-code__color {
  width: 100%;
  height: 100%;
  border-radius: 25rem 25rem 0 0;
}
.dress-code__color--dark-olive {
  background-color: #566d44;
}
.dress-code__color--deep-brown {
  background-color: #462520;
}
.dress-code__color--sage-green {
  background-color: #7b9467;
}
.dress-code__color--muted-umber {
  background-color: #6e5345;
}
.dress-code__image {
  width: 38.25rem;
  height: 21.25rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  max-width: 99.75rem;
  margin-left: auto;
  margin-right: auto;
}


.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 38rem;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.calendar-grid__item {
  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;
  padding: 0.9375rem 0.625rem;
  border-right: 1px solid #e0e0e0;
}
.calendar-grid__item:last-child,
.calendar-grid__item:nth-child(3) {
  border-right: none;
}
.calendar-grid .day-name {
  color: rgba(86, 109, 68, 0.5607843137);
  font-weight: 400;
  font-size: 0.875rem;
  border-bottom: 1px solid #e0e0e0;
}
.calendar-grid .day-name.active {
  font-size: 1rem;
  color: #566d44;
}
.calendar-grid .date-num {
  font-size: 2.25rem;
  color: rgba(86, 109, 68, 0.5607843137);
  font-family: serif;
  padding: 1.25rem 0;
}
.calendar-grid .date-num.active {
  color: #566d44;
  font-size: 3rem;
}

.h-fit {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.main {
  position: relative;
  display: grid;
  height: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  min-height: 50rem;
}
.main .main__image {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.main .main__div {
  height: 100%;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  width: 100%;
  padding-top: 7.90625rem;
  padding-bottom: 7.90625rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6.25rem;
  background-color: rgba(0, 0, 0, 0.3019607843);
}
.main__div__logo img {
  width: 10rem;
  height: auto;
  object-fit: contain;
}
.main .main__div .main__div__divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.625rem;
}
.main .main__div .main__div__divider .main__div__divider__hr {
  width: 18.0625rem;
  height: 1px;
}
.main .main__div .main__div__divider .main__div__divider__image {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.main .main__div .main__div__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 38rem;
  font-size: 2.875rem;
  color: white;
  border-top: 1px solid white;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-weight: 400;
}
.main .main__div .main__div__title {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
}
.main .main__div .main__div__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.25rem;
  color: white;
}
.main .main__div .main__div__address .main__div__address__where {
  font-size: 1.25rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  grid-gap: 0.3rem;
  justify-content: center;
  display: flex;
  align-items: center;
  grid-gap: 0.3rem;
  justify-content: center;
}
.main
  .main__div
  .main__div__address
  .main__div__address__where
  .main__div__address__mapImg {
  width: 1rem;
  height: auto;
  object-fit: contain;
  margin-top: 0.2rem;
}
.main .main__div .main__div__address .main__div__address__time {
  font-size: 1.5rem;
  font-weight: 400;
}

.time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
}
.time .time__title {
  color: #566d44;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 400;
}
.time .time__remaining {
  font-size: 3rem;
  letter-spacing: 5%;
  color: rgba(86, 109, 68, 0.5607843137);
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.625rem;
}
.gallery .gallery__image {
  width: 12.5rem;
  height: 37.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 999rem;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}
.info .info__image {
  border-top-left-radius: 62.5rem;
  border-top-right-radius: 62.5rem;
  width: 100%;
  height: 45rem;
  max-width: 38.25rem;
}
.info .info__title {
  font-size: 1.5rem;
  color: #566d44;
}

.invitation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
}
.invitation .invitation__image {
  width: 100%;
  height: 13.75rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.invitation .invitation__div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 38.25rem;
}
.invitation .invitation__div .invitation__div__title {
  font-size: 2rem;
  color: #566d44;
  font-weight: 400;
}
.invitation .invitation__div .invitation__div__text {
  color: #566d44;
  font-weight: 400;
  text-align: center;
  font-size: 1.25rem;
}

.schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.schedule .schedule__bg {
  background-color: #566d44;
  max-width: 27rem;
  width: 100%;
  padding: 1.25rem;
  border-radius: 999rem;
}
.schedule .schedule__bg .schedule__bg__info {
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 999rem;
  padding: 8.625rem 2.5rem;
  gap: 1.5rem;
  text-align: center;
  color: white;
}
.schedule .schedule__bg .schedule__bg__info .schedule__bg__info__title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.schedule .schedule__bg .schedule__bg__info .schedule__item h3 {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.schedule .schedule__bg .schedule__bg__info .schedule__item p {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 300;
}
.schedule .schedule__bg .schedule__bg__info .schedule__star {
  width: 24px;
  height: auto;
  margin: 0.5rem 0;
}

.invite-form .invite-form__container {
  max-width: 38.25rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.invite-form__title {
  text-align: center;
  color: #566d44;
  font-size: 1.95rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 2rem;
}
.invite-form__subtitle {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.invite-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.invite-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}
.invite-form__radio input {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.invite-form__radio span {
  color: rgba(133, 133, 133, 0.8);
  cursor: pointer;
}
.invite-form__field {
  margin-bottom: 1.5rem;
  text-align: left;
}
.invite-form__label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  color: #222;
}
.invite-form__input {
  width: 100%;
  max-width: 38.25rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(133, 133, 133, 0.8);
  border-radius: 999px;
  background: transparent;
  color: #222;
  outline: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.invite-form__input::-webkit-input-placeholder {
  color: rgba(133, 133, 133, 0.8);
}
.invite-form__input::-moz-placeholder {
  color: rgba(133, 133, 133, 0.8);
}
.invite-form__input:-ms-input-placeholder {
  color: rgba(133, 133, 133, 0.8);
}
.invite-form__input::-ms-input-placeholder {
  color: rgba(133, 133, 133, 0.8);
}
.invite-form__input::placeholder {
  color: rgba(133, 133, 133, 0.8);
}
.invite-form__input:focus {
  border-color: #7a8b5b;
}
.invite-form__button {
  padding: 0.625rem 1.25rem;
  border: none;
  color: white;
  border-radius: 999px;
  background: #566d44;
  font-size: 1.25rem;
  cursor: pointer;
  max-width: 8.8125rem;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  margin-right: auto;
  margin-left: auto;
}
.invite-form__button:hover {
  opacity: 0.9;
}

/*footer*/
.footer {
  /* background-color: #09090B;
    padding: 4.6em 0 4.6em 0; */
  /* text-align: center;
    margin-bottom: 1rem; */
}
.footer {
  font-family: "ArmenianDecorativeU";
  background-color: #09090b;
  padding: 1em 0px 1em 0;
  text-align: center;
}

.footer .footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
  color: #f4f4f4;
  text-transform: capitalize;
  margin-bottom: 1.6em;
}

.footer .img-part {
  width: 2.5em;
}

.footer .grid-gap-part {
  grid-gap: 0 1em;
}

.footer .link-to-website {
  /* font-family: Bainsley; */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3em;
  color: #f4f4f4;
  text-decoration: underline;
}

.logo-div img {
  max-width: 25rem;
}

.coming_soon_tel_number {
  white-space: nowrap;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-center {
  justify-content: center !important;
}
.d-flex {
  display: flex !important;
}
.color-white {
  color: white;
}
.mt-5 {
  margin-top: 1rem !important;
}
.invito_logo {
  width: 100px;
}
/*footer*/
/* Audio part */
.audio-div {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 3;
  width: auto;
  height: 5rem;
  /* background-color: rgba(88, 56, 143, 0.08); */
  /* background-color: #00000082; */
  border-radius: 1.25rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.audio-z {
  z-index: 999;
}
.song {
  font-family: sans-serif;
  font-size: 1.3rem;
  color: white;
}
.song-name {
  color: white;
  font-size: 1.1rem;
}
.play {
  width: 2.75rem;
  height: 2.75rem;
}
.play button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 0px;
  /* background-color: rgba(88, 56, 143, 0.17); */
  outline: none;
  padding: 0;
}
.play-sm {
  width: 1.988rem;
  height: 1.988rem;
  border-radius: 50%;
  margin: auto;
  background-color: black;
  box-shadow: 13.78px 13.78px 20.67px 0px rgba(255, 255, 255, 0.4) inset;
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-sm img {
  height: 0.725rem;
  width: auto;
}
.close-arrow {
  transition: all 300ms ease-in-out;
  position: absolute;
  left: -1.725rem;
}
.close-arrow button {
  outline: none;
  background-color: white;
  border: 2px solid black;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transition: all 300ms ease-in-out;
  padding: 0;
}
.close-arrow button img {
  width: 0.875rem;
  height: 0.875rem;
  object-fit: cover;
}
.rotateTest {
  transform: rotate(-180deg);
  transition: all 300ms ease-in-out;
}
/* Audio part */

.gp-2 {
  grid-gap: 2rem;
}
/* Lang selector */

.languages-list {
  display: flex;
  position: fixed;
  top: 3rem;
  z-index: 9999;
  right: 3rem;
  padding: 0.5rem;
  /* background: #0000009c;
  border-radius: 15px; */
  /* grid-gap: 0.8rem; */
}
.languages-list a {
  text-decoration: none;
}

.languages-list .lang-item .lang-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  box-shadow: 0px 0px 14px #838383;
  border-radius: 50%;
}
.languages-list .lang-name {
  font-family: "NotoSansArmenia", sans-serif !important;
  font-size: 1.3rem;
  color: white;
  padding: 0 0.4rem;
}
.languages-list .lang-item .lang-name.selected {
  text-decoration: underline;
}

.languages-list .lang-item .lang-border {
  height: 0.5rem;
  width: 0.5rem;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}
.languages-list .lang-item:last-of-type .lang-border {
  display: none;
}

/* Lang selector */

.social-links img {
  width: 3.8em;
  height: 1.9em;
  object-fit: contain;
  cursor: pointer;
  clear: left;
}
