@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nuosu+SIL&display=swap");
@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

video,
img,
canvas {
  display: block;
}

img {
  width: 100%;
}

input,
textarea {
  font-family: "Microsoft JhengHei";
}

.pc {
  display: block;
}
@media all and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.ph {
  display: none;
}
@media all and (max-width: 1024px) {
  .ph {
    display: block;
  }
}

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pause {
  animation-play-state: paused;
}

#footer {
  position: relative;
  width: 100%;
  background-color: #736357;
  letter-spacing: 0.2rem;
  font-size: 0.8vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
  font-weight: 300;
  margin-top: 8%;
}
#footer .flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  #footer .flex_box {
    flex-direction: column;
  }
}
#footer .flex_box span {
  color: #fff;
  font-family: "Microsoft JhengHei";
  text-decoration: none;
  pointer-events: none;
}
#footer .flex_box a {
  color: #fff;
  font-family: "Microsoft JhengHei";
  text-decoration: none;
  pointer-events: none;
}
#footer .a_box {
  text-align: center;
  margin-top: 10px;
  opacity: 0.5;
}
@media all and (max-width: 1024px) {
  #footer .a_box {
    margin-top: 0px;
  }
}
#footer .a_box a {
  color: #fff;
  font-family: "Microsoft JhengHei";
  text-decoration: none;
  font-size: 13px;
}
@media all and (max-width: 1024px) {
  #footer .a_box a {
    font-size: 12px;
  }
}
@media all and (max-width: 1600px) {
  #footer {
    margin-top: 5%;
  }
}
@media all and (max-width: 1024px) {
  #footer {
    font-size: 2vw;
    line-height: 2;
    padding-top: 2vw;
    padding-bottom: 2vw;
    margin-top: 15%;
  }
  #footer > :nth-child(1) {
    order: 3;
  }
  #footer > :nth-child(2) {
    order: 2;
  }
  #footer > :nth-child(3) {
    order: 1;
  }
}
@media all and (max-width: 500px) {
  #footer {
    font-size: 3vw;
    line-height: 2;
    padding-top: 3vw;
    padding-bottom: 3vw;
    margin-top: 15%;
  }
  #footer > :nth-child(1) {
    order: 3;
  }
  #footer > :nth-child(2) {
    order: 2;
  }
  #footer > :nth-child(3) {
    order: 1;
  }
}

#nav {
  position: fixed;
  z-index: 100;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.805) 0%, rgba(0, 0, 0, 0.629) 5%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1vw 3vw;
}
@media all and (max-width: 1024px) {
  #nav {
    background-image: none;
    padding: 2vw;
    padding-right: 6vw;
    padding-left: 6vw;
    background-color: #534741;
  }
  #nav .nav-icon {
    width: 15vw;
  }
}
@media all and (max-width: 500px) {
  #nav {
    background-image: none;
    padding: 4vw;
    padding-right: 7vw;
    padding-left: 7vw;
    background-color: #534741;
  }
  #nav .nav-icon {
    width: 30vw;
  }
}

.nav-icon {
  z-index: 99;
  position: relative;
}
.nav-icon > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.nav-icon img {
  width: 10vw;
}
@media all and (max-width: 1024px) {
  .nav-icon img {
    width: 100%;
  }
}

.nav-hamb-icon {
  display: none;
}

@media all and (max-width: 1024px) {
  .nav-hamb-icon {
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border: none;
    background-color: transparent;
    pointer-events: auto;
  }
  .nav-hamb-icon > span {
    width: 100%;
    height: 1px;
    background-color: white;
  }
}
@media all and (max-width: 500px) {
  .nav-hamb-icon {
    width: 5vw;
    height: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border: none;
    background-color: transparent;
    pointer-events: auto;
  }
  .nav-hamb-icon > span {
    width: 100%;
    height: 1px;
    background-color: white;
  }
}
.nav-list {
  display: flex;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .nav-list {
    width: 100%;
  }
}

.nav-list-show {
  display: flex;
}

.nav-list-ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-list-ul > div {
  display: flex;
  align-items: center;
}
.nav-list-ul a {
  color: white;
  text-decoration: none;
}
.nav-list-ul li {
  color: white;
  font-size: 0.9vw;
  font-family: "Noto Serif TC", serif;
  font-weight: 400;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  letter-spacing: 0.4rem;
  cursor: pointer;
  pointer-events: auto;
}
.nav-list-ul li:nth-child(1),
.nav-list-ul li:nth-child(2),
.nav-list-ul li:nth-child(3),
.nav-list-ul li:nth-child(4),
.nav-list-ul li:nth-child(5) {
  position: relative;
}
.nav-list-ul li:nth-child(1)::after,
.nav-list-ul li:nth-child(2)::after,
.nav-list-ul li:nth-child(3)::after,
.nav-list-ul li:nth-child(4)::after,
.nav-list-ul li:nth-child(5)::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 1px;
  height: 60%;
  bottom: 15%;
  right: 0;
}
@media all and (max-width: 1024px) {
  .nav-list-ul li:nth-child(1)::after,
  .nav-list-ul li:nth-child(2)::after,
  .nav-list-ul li:nth-child(3)::after,
  .nav-list-ul li:nth-child(4)::after,
  .nav-list-ul li:nth-child(5)::after {
    content: "";
    width: 0px;
  }
}
@media all and (max-width: 1024px) {
  .nav-list-ul {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    pointer-events: none;
  }
  .nav-list-ul li {
    font-size: 3vw;
    padding: 2.5rem;
  }
  .nav-list-ul > div {
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
}
@media all and (max-width: 500px) {
  .nav-list-ul {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    pointer-events: none;
  }
  .nav-list-ul li {
    font-size: 4vw;
    padding: 2.5rem;
  }
  .nav-list-ul > div {
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
}

.loading-page {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #534741;
  background-repeat: repeat;
  background-size: 100%;
  transition: opacity 0.6s;
  pointer-events: none;
  overflow: hidden;
}
.loading-page .box-para {
  font-size: 1.5vw;
  margin-top: 1vw;
}
@media all and (max-width: 1024px) {
  .loading-page .box-para {
    font-size: 6vw;
    margin-top: 3vw;
  }
}

.speaker {
  width: 1.5vw;
  position: fixed;
  right: 2vw;
  bottom: 1.5vw;
  cursor: pointer;
  z-index: 10;
}
@media all and (max-width: 1024px) {
  .speaker {
    width: 5vw;
    bottom: 2vw;
  }
}
@media all and (max-width: 500px) {
  .speaker {
    width: 6.5vw;
    right: 3vw;
    bottom: 3vw;
  }
}
.speaker img {
  display: none;
  width: 100%;
  pointer-events: none;
}
.speaker .active {
  display: block;
  width: 100%;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 5vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .box {
    width: 100%;
  }
}

@media all and (max-width: 1024px) {
  .box-img {
    width: 25vw;
  }
}
@media all and (max-width: 500px) {
  .box-img {
    width: 40vw;
  }
}

.box-para {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25vw;
  letter-spacing: 2px;
  color: #aa9784;
}
@media all and (max-width: 1024px) {
  .box-para {
    font-size: 6vw;
  }
}
@media all and (max-width: 500px) {
  .box-para {
    font-size: 8vw;
  }
}

.first-cut {
  clip-path: ellipse(61% 81% at 50% 19%);
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .first-cut {
    clip-path: ellipse(117% 55% at 50% 44%);
    height: 50vh;
  }
}

.first-cut-img-container {
  height: 100%;
}
.first-cut-img-container img {
  height: 100%;
  object-fit: cover;
  animation: zoom 15s linear infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.second-cut {
  margin-top: 2%;
}

.title {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 3px;
  color: #65534b;
  margin-top: 4vw;
}
@media all and (max-width: 1024px) {
  .title {
    margin-top: 5%;
  }
}

.base {
  font-family: "Cormorant Infant", serif;
  font-size: 9vw;
  opacity: 0.1;
  font-weight: 400;
}
@media all and (max-width: 1024px) {
  .base {
    font-size: 12vw;
  }
}
@media all and (max-width: 500px) {
  .base {
    font-size: 14vw;
  }
}

.content {
  position: absolute;
  text-align: center;
}
.content > h3 {
  font-weight: 600;
  font-size: 2.25vw;
  font-family: "Cormorant Infant", serif;
}
.content > h4 {
  font-size: 1.25vw;
  margin-top: 0.5vw;
  font-family: "Noto Serif TC", serif;
}
@media all and (max-width: 1024px) {
  .content > h3 {
    font-size: 5vw;
  }
  .content > h4 {
    font-size: 2.75vw;
    font-weight: 600;
    margin-top: 0;
  }
}
@media all and (max-width: 500px) {
  .content > h3 {
    font-size: 6vw;
  }
  .content > h4 {
    font-size: 3.75vw;
    font-weight: 600;
    margin-top: 0;
  }
}

.cut-2-main {
  display: flex;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .cut-2-main {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 8%;
  }
}

.cut-2-main-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 35vw;
  z-index: 5;
  padding-left: 5%;
  position: relative;
}
@media all and (max-width: 1024px) {
  .cut-2-main-left {
    display: none;
  }
}

.oval {
  position: absolute;
  left: -9%;
  top: 3%;
  width: 10vw;
}

.cut-2-main-left-h1 {
  color: #65534b;
  font-size: 6vw;
  font-weight: 400;
  font-family: "Cormorant Infant", serif;
  line-height: 0.9;
  margin-bottom: 2vw;
  width: 36vw;
}

.cut-2-main-left-small-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25vw;
}
.cut-2-main-left-small-title > h3 {
  color: #65534b;
  font-size: 1.25vw;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  margin-left: 0.5vw;
  margin-right: 0.5vw;
}
.cut-2-main-left-small-title > span {
  color: #736357;
  font-size: 0.8vw;
  font-family: "Microsoft JhengHei";
  letter-spacing: 1px;
  margin-left: 0.8vw;
  font-weight: 500;
}
@media all and (max-width: 1600px) {
  .cut-2-main-left-small-title > h3 {
    font-size: 1.4vw;
  }
  .cut-2-main-left-small-title > span {
    font-size: 1.1vw;
  }
}
@media all and (max-width: 1024px) {
  .cut-2-main-left-small-title {
    margin-bottom: 2vw;
  }
  .cut-2-main-left-small-title > h3 {
    font-size: 4vw;
    margin-left: 1.2vw;
    margin-right: 1.2vw;
    line-height: 1;
  }
  .cut-2-main-left-small-title span {
    font-size: 2.75vw;
    margin-left: 2vw;
  }
}
@media all and (max-width: 500px) {
  .cut-2-main-left-small-title {
    margin-bottom: 2vw;
  }
  .cut-2-main-left-small-title > h3 {
    font-size: 5vw;
    margin-left: 1.2vw;
    margin-right: 1.2vw;
    line-height: 1;
  }
  .cut-2-main-left-small-title span {
    font-size: 3.75vw;
    margin-left: 2vw;
  }
}

.main-left-p {
  color: #4d4d4d;
  font-family: "Microsoft JhengHei";
  font-size: 0.9vw;
  font-weight: 400;
  margin-bottom: 1.25vw;
  width: 63%;
  line-height: 2;
}
@media all and (max-width: 1600px) {
  .main-left-p {
    width: 90%;
  }
}
@media all and (max-width: 1024px) {
  .main-left-p {
    width: 100%;
    font-size: 2.75vw;
    margin-bottom: 3vw;
  }
}
@media all and (max-width: 500px) {
  .main-left-p {
    width: 100%;
    font-size: 3.75vw;
    margin-bottom: 4vw;
  }
}

.cut-2-main-left-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .cut-2-main-left-button {
    margin-bottom: 2vw;
    width: 100%;
    justify-content: space-between;
  }
}
@media all and (max-width: 500px) {
  .cut-2-main-left-button {
    margin-bottom: 5vw;
    width: 100%;
    justify-content: flex-start;
    gap: 3vw;
  }
}

.cut-2-left-line {
  height: 1vw;
  width: 1px;
  background-color: #65534b;
  opacity: 0.5;
}
@media all and (max-width: 1600px) {
  .cut-2-left-line {
    height: 1.4vw;
  }
}
@media all and (max-width: 1024px) {
  .cut-2-left-line {
    height: 4vw;
  }
}
@media all and (max-width: 1024px) {
  .cut-2-left-line {
    height: 5vw;
  }
}

.connect-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #65534b;
  border-radius: 30px;
  padding: 5px 10px;
  margin-right: 0.8vw;
  cursor: pointer;
}
.connect-button a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.connect-button span {
  color: #65534b;
  font-family: "Microsoft JhengHei";
  font-size: 0.9vw;
  margin-left: 0.4vw;
  font-weight: 400;
}
@media all and (max-width: 1600px) {
  .connect-button {
    padding: 5px 10px;
  }
  .connect-button span {
    font-size: 1vw;
  }
}
@media all and (max-width: 1024px) {
  .connect-button {
    margin-right: 0;
    padding: 1% 3%;
  }
  .connect-button span {
    font-size: 2.75vw;
    margin-left: 1.4vw;
  }
}
@media all and (max-width: 500px) {
  .connect-button {
    margin-right: 0;
    padding: 1% 2%;
  }
  .connect-button span {
    font-size: 3.75vw;
    margin-left: 1.4vw;
  }
}

.connect img {
  width: 0.8vw;
}
@media all and (max-width: 1024px) {
  .connect img {
    width: 2vw;
  }
}
@media all and (max-width: 500px) {
  .connect img {
    width: 3vw;
  }
}

.fb img {
  width: 0.39vw;
}
@media all and (max-width: 1600px) {
  .fb img {
    width: 0.45vw;
  }
}
@media all and (max-width: 1024px) {
  .fb img {
    width: 1.3vw;
  }
}
@media all and (max-width: 500px) {
  .fb img {
    width: 1.8vw;
  }
}

.mail img {
  width: 0.9vw;
}
@media all and (max-width: 1600px) {
  .mail img {
    width: 1vw;
  }
}
@media all and (max-width: 1024px) {
  .mail img {
    width: 3vw;
  }
}
@media all and (max-width: 500px) {
  .mail img {
    width: 3vw;
  }
}

.more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.more > p {
  color: #65534b;
  font-size: 0.9vw;
  font-family: "Microsoft JhengHei";
  margin-right: 0.5vw;
  line-height: 1;
}
@media all and (max-width: 1600px) {
  .more > p {
    font-size: 1vw;
  }
}
@media all and (max-width: 1024px) {
  .more > p {
    font-size: 2.75vw;
    margin-right: 2vw;
  }
}
@media all and (max-width: 500px) {
  .more > p {
    font-size: 3.75vw;
    margin-right: 2vw;
  }
}

.more-spot {
  width: 0.4vw;
  margin-right: 0.5vw;
}
@media all and (max-width: 1024px) {
  .more-spot {
    width: 1.25vw;
    margin-right: 2vw;
  }
}
@media all and (max-width: 500px) {
  .more-spot {
    width: 2.5vw;
    margin-right: 2vw;
  }
}

.more_txt {
  color: #736357;
  text-decoration: none;
  padding-right: 8px;
}

.more-arrow {
  background-image: url("../img/project/more-arrow.png");
  background-repeat: no-repeat;
  background-color: #736357;
  background-position: center;
  border-radius: 50%;
  background-size: 60%;
  width: 2vw;
  padding: 1vw;
}
@media all and (max-width: 1024px) {
  .more-arrow {
    width: 4vw;
    padding: 2.5vw;
  }
}
@media all and (max-width: 500px) {
  .more-arrow {
    width: 4vw;
    padding: 3vw;
  }
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.1;
}

.cut-2-main-right {
  overflow: hidden;
  width: 70vw;
}

.cut-2-carousel-swiper {
  position: relative;
  width: 55%;
}
@media all and (max-width: 1024px) {
  .cut-2-carousel-swiper {
    display: none;
  }
}

.swiper-slide {
  margin-top: 12%;
  margin-bottom: 13%;
  height: auto;
  position: relative;
  transition-timing-function: ease-in-out;
}
.swiper-slide a {
  pointer-events: none;
}
.swiper-slide > .swiper-img > .href-link {
  width: 100%;
}
@media all and (max-width: 1024px) {
  .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5%;
  }
}

.swiper-img-pc {
  overflow: hidden;
  border-radius: 260px 260px 0 0;
}

.swiper-slide-prev {
  opacity: 1 !important;
  transition-timing-function: ease-in-out;
}
.swiper-slide-prev a {
  pointer-events: none;
}

.swiper-slide-active {
  opacity: 1 !important;
  cursor: pointer;
  transition-timing-function: ease-in-out;
}
.swiper-slide-active a {
  pointer-events: all !important;
}

.swiper-slide-next {
  opacity: 1 !important;
  transition-timing-function: ease-in-out;
}
.swiper-slide-next a {
  pointer-events: none;
}

.swiper-creative .swiper-slide {
  overflow: visible !important;
}

.swiper-img {
  position: relative;
}
.swiper-img > a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.text-rotate {
  position: absolute;
  margin-top: -19%;
  left: -12%;
  width: 8vw;
  animation: textRotate 10s linear infinite;
  filter: brightness(0.5);
  z-index: 5;
}
@media all and (max-width: 1024px) {
  .text-rotate {
    margin-top: -19%;
    left: -13%;
    width: 17vw;
  }
}
@media all and (max-width: 500px) {
  .text-rotate {
    margin-top: -20%;
    left: -13%;
    width: 22vw;
  }
}

.phone-item-img-big {
  display: none;
}
@media all and (max-width: 1024px) {
  .phone-item-img-big {
    display: block;
    position: relative;
  }
}

@keyframes textRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper-page {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  right: -55%;
  bottom: 12%;
}

.swiper-page-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}

.swiper-page-top-active,
.swiper-pagination-bullet-active {
  font-size: 2.5vw;
  color: #65534b;
  font-family: "Cormorant Infant", serif;
}

.swiper-page-top-inactive,
.swiper-pagination-bullet {
  font-size: 1.5vw;
  color: #948175;
  font-family: "Cormorant Infant", serif;
}

.second {
  margin-left: -8%;
}

.swiper-page-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10%;
  user-select: none;
}

.swiper-page-line {
  width: 1px;
  height: 0.7vw;
  background-color: #65534b;
}

.swiper-button-prev {
  margin-right: 1.25vw;
}
.swiper-button-prev > img {
  margin-right: 15%;
  filter: brightness(0.5);
}

.swiper-button-next {
  margin-left: 1.25vw;
}
.swiper-button-next > img {
  margin-left: 15%;
  filter: brightness(0.5);
}

.swiper-button-prev,
.swiper-button-next {
  position: unset;
  left: 0;
  top: 0;
  right: 0;
  margin-top: 0;
  width: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  cursor: pointer;
}
.swiper-button-prev > span,
.swiper-button-next > span {
  color: #65534b;
  font-size: 1vw;
}
.swiper-button-prev > img,
.swiper-button-next > img {
  width: 0.8vw;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.cut-2-main-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.cut-2-phone-item {
  width: 75%;
  margin-top: 8%;
}
@media all and (max-width: 1024px) {
  .cut-2-phone-item {
    width: 60%;
  }
}
@media all and (max-width: 500px) {
  .cut-2-phone-item {
    width: 75%;
  }
}

.cut-2-phone-h1 {
  color: #65534b;
  font-weight: 400;
  font-family: "Cormorant Infant", serif;
  white-space: nowrap;
  line-height: 0.9;
}
@media all and (max-width: 1024px) {
  .cut-2-phone-h1 {
    font-size: 7vw;
  }
}
@media all and (max-width: 500px) {
  .cut-2-phone-h1 {
    font-size: 9vw;
  }
}

.cut-2-phone-item-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .cut-2-phone-item-content {
    margin-top: 13%;
  }
}

.cut-2-phone-item-img {
  position: relative;
}
.cut-2-phone-item-img > .href-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.phone-item-img-big-container {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 1024px) {
  .phone-item-img-big-container {
    border-radius: 260px 260px 0 0;
  }
}
@media all and (max-width: 500px) {
  .phone-item-img-big-container {
    border-radius: 190px 181px 0 0;
  }
}

.frame {
  position: absolute;
  top: -3%;
  right: -3%;
  z-index: -1;
}