* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserratarm", sans-serif;
  font-weight: 400;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #fffcfa;
  overflow-x: hidden;
}

img {
  user-select: none;
}

.container {
  max-width: 37.5rem;
}

.section-y {
  margin: 2.5rem auto 5rem auto;
}

.section-title {
  font-size: 4rem;
  text-align: center;
  line-height: 4.375rem;
}

.font-abrilfatface {
  font-family: "AbrilFatface", sans-serif;
}

.font-armeniandecorativeu {
  font-family: "ArmenianDecorativeU", sans-serif;
}

.font-dzeragir {
  font-family: "Dzeragir", sans-serif;
}

.font-sloopscriptmediumone {
  font-family: "SloopScriptMediumOne", sans-serif;
}

.font-yesevaone {
  font-family: "YesevaOne", sans-serif;
}

/* Section1 start */
.section1 {
  position: relative;
  width: 100%;
  /* height: 43.75rem; */
  height: 100vh;
  color: white;
}

.section1::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(360deg, #000000 9.93%, rgba(0, 0, 0, 0) 38.12%); */
  background: linear-gradient(180deg, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 20%) 35%, rgb(0 0 0 / 20%) 65%, rgba(0, 0, 0, 0.8) 100%)
}

.section1__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.section1__header {
  width: 100%;
  position: absolute;
  top: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section1__title {
  font-size: 3rem;
  text-align: center;
  line-height: 1.25;
}

.section1__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.section1__divider-line {
  width: 3.75rem;
  height: 1px;
  background-color: #f9ecec66;
}

.section1__divider-heart {
  width: 1.25rem;
  height: 1.125rem;
}

.section1__divider-heart-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section1__footer {
  position: absolute;
  bottom: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section1__text {
  font-size: 4rem;
  text-align: center;
  line-height: 4.375rem;
}

.section1__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

.section1__month,
.section1__year {
  width: 8.75rem;
  padding: 0.3125rem 0;
  border-top: 1px solid #f9ecec66;
  border-bottom: 1px solid #f9ecec66;
}

.section1__month p,
.section1__year p {
  font-size: 2.25rem;
  text-align: center;
  line-height: 3rem;
}

.section1__day {
  font-size: 5rem;
  line-height: 5rem;
}

/* Section1 end */

/* Section2 start */
.section2 {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.section2__text {
  font-size: 1rem;
  color: #747474;
  text-align: center;
  line-height: 1.5;
}

/* Section2 end */

/* Section3 start */
.section3 {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.section3__countDown {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section3__countDown-number,
.section3__countDown-colon {
  color: #74222f;
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 25%;
}

/* Section3 end */

/* Section4 start */
.section4 {
  display: flex;
  justify-content: center;
}

.section4__image {
  width: 25rem;
  height: 25rem;
  object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
}

/* Section4 end */

/* Section5 start */
.section5 {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.section5__calendar {
  width: 24.25rem;
  margin: 0 auto;
}

.section5__calendar .days-header,
.section5__calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  color: #747474;
  text-align: center;
  line-height: 1.5;
}

.section5__calendar .days .day {
  padding: 0.75rem;
  font-size: 0.875rem;
}

.section5__calendar .selected {
  position: relative;
  z-index: 1;
  color: #74222f;
  font-weight: 600;
}

.section5__calendar .selected::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 2.625rem;
  height: 2.5rem;
  background-image: url("../images/heart2.svg?1");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Section5 end */

/* Section6 start */
.section6 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 6.25rem;
}

.section6__left,
.section6__right {
  width: 12rem;
  height: 24.5rem;
  overflow: hidden;
}

.section6__left {
  border-radius: 12rem 0 0 12rem;
}

.section6__right {
  border-radius: 0 12rem 12rem 0;
}

.section6__left img,
.section6__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section6 end */

/* Section7 start */
.section7 {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;

}

.section7__timelineBlock {
  position: relative;
  display: grid;
  padding: 8rem 0;
}

.section7__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  width: 50%;
  height: 16.875rem;
  display: flex;
  align-items: center;
}

.timeline-item.right {
  margin-left: auto;
  text-align: right;
}

.content {
  max-width: 13.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
}

.right .content {
  margin-left: auto;
}

.content-image {
  width: auto;
  height: 8.125rem;
  object-fit: contain;
}

.content-name {
  font-size: 3rem;
  color: #74222f;
}

.content-address {
  font-size: 1rem;
  color: #747474;
}

.content-time {
  font-size: 1.25rem;
  color: #747474;
}

/* Section7 end */

/* Section8 start */
.section8 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 6.25rem;
}

.section8__left,
.section8__right {
  width: 12rem;
  height: 24.5rem;
  overflow: hidden;
}

.section8__left {
  border-radius: 12rem 0 0 12rem;
}

.section8__right {
  border-radius: 0 12rem 12rem 0;
}

.section8__left img,
.section8__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section8 end */

/* Section9 start */
.section9 {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.section9__colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

.section9__colors-color {
  width: 4.25rem;
  height: 7.125rem;
  border: 1px solid #8f8f8f;
  border-radius: 4.375rem;
}

/* Section9 end */

/* Section10 start */
.section10__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section10__question {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: black;
}

.section10__label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #979797;
  cursor: pointer;
}

.section10__label input {
  accent-color: black;
  cursor: pointer;
}

.section10__form input:not([type="radio"]) {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border: 1px solid #979797;
  border-radius: 2.25rem;
  outline: none;
}

.section10__form button {
  margin: 0 auto;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 2.25rem;
  cursor: pointer;
}

/* Section10 end */

/* Section11 start */
.section11 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Section11 end */


/* Registration box */
.registration-container {
  font-family: "Montserratarm", sans-serif !important;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 5rem;
  margin-top: 4rem;
}

.registration-box {
  text-align: center;
}

.registration-box h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 5rem;
  color: black;
}

.registration-box .question-p {
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
  text-align: start;
  font-weight: 600;
  color: #74222f;
}

.registration-box .radio-group {
  text-align: left;
  margin-bottom: 0.938rem;
}

.registration-box .radio-group label {
  display: block;
  margin-bottom: 0.625rem;
  color: #767676;
}

.registration-box .input-field {
  width: 100%;
  padding: 0.625rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 1.25rem;
  font-size: 0.875rem;
}

.registration-box .btn-submit {
  padding: 0.625rem 2rem;
  background-color: #74222f;
  color: white;
  border: none;
  border-radius: 1.25rem;
  font-size: 1rem;
  cursor: pointer;
}

.registration-box .btn-submit:hover {
  background-color: #333;
}

.registration-box .inputs-div {
  margin: 1.5rem 0 1rem 0;
  display: flex;
  grid-gap: 1rem;
}

.registration-box input[type="radio"] {
  accent-color: black;
  width: 1rem;
  height: 1rem;
}

.registration-box .radio-group label {
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
}

input[type="radio"] {
  accent-color: black;
}

.d-none {
  display: none;
}

/* Registration box */
/*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*/

.addressesImg {
  width: 100%;
  height: auto;
}

/* 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 */
.image-banner img {
  height: 64rem;
  width: 100%;
  object-fit: cover;
}

.gp-2 {
  grid-gap: 2rem;
}

.calendar .days {
  margin-top: 1rem;
}

/* 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;
}

/* Countdown Section */
.text-time-part p {
  margin-bottom: 0;
}

.countdown-number p {
  color: black;
  font-size: 5rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.countdown-row {
  column-gap: 2.25rem;
}

.countdown-name p {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1rem;
}

/* Countdown Section */

/* Save the date */
.saveToDate {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.saveToDate .saveToDate__image {
  width: 100%;
  height: 100%;
}

.saveToDate .saveToDate__image img {
  width: 100%;
  /* height: 100%; */
  /* height: 44rem; */
  /* object-position: top; */
  height: 60rem;
  object-position: center;
  object-fit: cover;
}

.saveToDate .saveToDate__block {
  width: 100%;
  padding: 1rem;
  height: 100%;
  display: flex;
  gap: 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.saveToDate .saveToDate__title {
  font-size: 7rem;
  text-transform: uppercase;
  text-align: center;
  padding-right: 0.3em;
  line-height: 1;
  font-weight: 200;
}

.saveToDate .saveToDate__title span {
  display: block;
  text-align: end;
  font-size: 0.8em;
  margin-right: -0.3em;
  text-transform: capitalize;
  line-height: 1.5;
  transform: translateY(0.2em);
}

.saveToDate .saveToDate__description {
  font-size: 1.25rem;
  text-align: center;
}

.saveToDate .saveToDate__date {
  text-wrap: nowrap;
  font-size: 5rem;
  /* Name Case */
  /* font-size: 4rem;
  font-family: "ArmenianDecorativeU";  */
  /* Name Case */
  /* text-transform: uppercase; */
  text-align: center;
}

/* Save the date */

/* Additions */

.date-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.top-date-item {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 3px;
  font-family: "GHEAMariam";
}

.divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
}

/* Additions */

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.w-100 {
  width: 100%;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}