*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* container style */

.container {
  max-width: 1280px;
  padding: 0 72px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

/* header style */

.header {
  position: sticky;
  top: 0;
  left: 0;
  background: var(--white);
  z-index: 10;
}

.header .container {
  max-width: 1220px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 63px;
}

.menu__link {
  color: var(--text-1);
  padding: 10px 0;
}

.menu__link:hover {
  color: var(--hover-link);
}

.menu__link--first {
  font-family: 'GFS Didot', serif;
  transition: all .3s ease;
}


.menu__link--mob,
.menu__link-drop--mob {
  display: none;
}

.menu-dropdawn {
  position: absolute;
  padding-top: 15px;
  top: 25px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.menu-dropdawn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  min-width: 200px;
  border-radius: 4px;
  background: var(--bg-2);
}

.menu__link-drop {
  position: relative;
  cursor: pointer;
}

.menu__link-drop-item {
  padding: 10px 0;
  transition: all .3s ease;
}

.menu__link-drop-item:hover {
  color: var(--hover-link);
}

.menu__link-drop-img {
  display: none;
}

.menu__link-drop--active .menu-dropdawn {
  visibility: visible;
  opacity: 1;
}

.menu__link-drop--active .menu__link-drop-item {
  color: var(--hover-link);
}

.menu-dropdawn__link {
  color: var(--black);
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.menu-dropdawn__link:hover,
.menu-dropdawn__link:active {
  background: var(--hover);
}

.logo {
  max-height: 150px;
  display: flex;
}

.logo__img {
  max-width: 100%;
  max-height: 100%;
}

.header-mobile {
  display: none;
}

@media (max-width: 1135px) {

  .header {
    padding-top: 8px;
  }

  .header__menu-right {
    display: none;
  }

  .header__inner {
    flex-direction: row-reverse;
  }

  .menu {
    gap: 40px;
  }

  .menu__link--mob,
  .menu__link-drop--mob {
    display: block;
  }

  .menu__link-drop-item:hover {
    color: var(--text-1);
  }

  .menu__link-drop--active .menu__link-drop-item {
    color: var(--hover-link);
  }

  .menu__link-drop-img {
    pointer-events: none;
    display: block;
    position: absolute;
    right: 0;
    width: 16px;
    height: 16px;
    transition: all .3s ease;
  }

  .menu__link-drop-img path {
    transition: all .3s ease;
  }

  .menu__link-drop-item {
    display: flex;
    align-items: center;
    padding-right: 24px;
  }

  .menu__link-drop--active .menu__link-drop-img {
    transform: rotate(180deg);
  }

  .menu__link-drop--active .menu__link-drop-img path {
    fill: var(--hover-link);
  }

  .menu-dropdawn {
    padding-top: 0;
    top: 46px;
  }

  .menu-dropdawn-1 {
    left: -64px;
  }

  .menu-dropdawn-2 {
    left: initial;
    right: 0;
  }

  .logo__img {
    height: 90px;
    width: auto;
  }
}

@media (max-width: 767px) {

  .header {
    padding: 7px 0;
  }

  .header__inner {
    display: none;
  }

  .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-mobile {
    display: flex;
  }

  .logo-mobile__img {
    max-width: 100%;
    max-height: 100%;
    height: 64px;
    width: auto;
  }

  .mobile-menu__wrapper {
    position: relative;
  }

  .mobile-menu__inner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 271px;
    width: 100%;
    border-radius: 16px;
    background: #FFF;
    filter: drop-shadow(0px 3px 14px rgba(0, 0, 0, 0.10));
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 48px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
  }

  .mobile-menu--active .mobile-menu__inner {
    opacity: 1;
    visibility: visible;
  }

  .burger {
    cursor: pointer;
    transition: all .3s ease;
  }

  .burger__img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu--active .burger {
    opacity: 0;
  }

  .mobile-menu {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-1);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
  }

  .burger-close {
    display: flex;
    align-self: flex-end;
    cursor: pointer;
  }

  .burger-close__img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu__accord {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-menu__accord-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'GFS Didot', serif;
    cursor: pointer;
    transition: all .3s ease;
  }

  .mobile-menu__accord-content {
    max-height: 0;
    overflow: hidden;
    transition: all .5s ease;
  }

  .mobile-menu__accord--active .mobile-menu__accord-top {
    color: var(--hover-link);
  }

  .mobile-menu__accord--active .menu__link-drop-img {
    transform: rotate(180deg);
  }

  .mobile-menu__accord--active .menu__link-drop-img path {
    fill: var(--hover-link);
  }

  .mobile-menu__accord--active .mobile-menu__accord-content {
    max-height: 400px;
  }

  .mobile-menu__drop {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .mobile-menu__drop-link {
    font-family: 'GFS Didot', serif;
    color: var(--text-1);
    padding: 10px 0;
    transition: all .3s ease;
  }

  .mobile-menu__link {
    font-family: 'GFS Didot', serif;
    padding: 10px 0;
    color: var(--text-1);
    transition: all .3s ease;
  }

  .mobile-menu__drop-link:hover,
  .mobile-menu__link:hover {
    color: var(--hover-link);
  }
}

/* page title style */

.page-title__wrapper {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .page-title__wrapper {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .page-title__wrapper {
    margin-top: 40px;
  }
}

/* scroll text */

.wedding-column--text__content {
  padding-top: 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: -webkit-fill-available;
}

.wedding-column__text {
  color: var(--text-2);
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-1);
}

.title-section__line {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1024px) {
  .wedding-column--text__content {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .wedding-column--text__content {
    border: 0;
    padding-top: 0;
    position: relative;
    gap: 40px;
  }

  .wedding-box__btn {
    max-width: 328px;
    width: 100%;
    justify-content: center;
  }
}

/* footer style */

.footer {
  padding-top: 54px;
  padding-bottom: 51px;
  background: #fff;
  position: relative;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 15px;
  border-top: 2px solid #D9D9D9;
}

.footer__left {
  max-width: 759px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo {
  max-width: 187px;
}

.footer-logo__img {
  height: 126px;
  width: auto;
}

.footer__text {
  max-width: 397px;
  color: var(--text-2);
}

.footer__right {
  max-width: 191px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social__link {
  display: flex;
}

.footer-social__img {
  width: 32px;
  height: 32px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-contact__link {
  color: var(--text-2);
  text-decoration-line: underline;
}

@media (max-width: 1135px) {
  .footer {
    margin-top: 8px;
    padding-top: 23px;
    padding-bottom: 16px;
  }

  .footer-logo__img {
    height: 56px;
    width: 85px;
  }

  .footer__text {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }

  .footer__left {
    max-width: 403px;
    gap: 16px;
  }


  .footer__inner {
    padding-top: 32px;
    align-items: flex-start;
  }

  .footer__right {
    flex-direction: column-reverse;
    gap: 26px;
  }

  .footer-contact {
    gap: 16px;
  }

  .footer-contact__link {
    font-size: 14px;
    line-height: 18px;
  }

  .footer-social__img {
    width: 24px;
    height: 24px;
  }

  .footer__right {
    padding-top: 3px;
    max-width: 167px;
  }

  .footer__left {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .footer {
    margin-top: 24px;
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .footer__inner {
    padding-top: 32px;
    flex-direction: column;
    gap: 24px;
  }

  .footer__left {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }

  .footer-logo__img {
    width: 150px;
    height: 103px;
  }

  .footer__text {
    text-align: center;
    max-width: 305px;
    font-size: 12px;
    line-height: 20px;
  }


  .footer__right {
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-social {
    gap: 24px;
  }
}