.story--image img {
    width: 100%;
    height: auto;
    position: relative;
}

.story--image__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18%;
    color: var(--color-white);
    left: 10%;
    line-height: 1.5;
}

.story--image__content h1 {
    font-size: 2.5vw;
}

.story--image__content h2 {
    font-size: 2vw;
}

.story--image__content span {
    font-size: 1.25vw;
}

/* ticket */
.ticket {
    position: relative;
}

.ticket--orange, .ticket--blue {
    position: absolute;
    left: 50%;
    top: -13px;
    transition: auto;
}
 
.ticket--orange {
    z-index: 4;
    transform: translate(-50%, -44%);
}

.ticket--blue {
    z-index: 5;
    transform: translate(-50%, -84%);
	cursor: pointer;
}

.ticket--orange__background, .ticket--blue__background {
    width: 5.5rem;
}

.ticket--border {
    width: 1rem;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}
 
.ticket--arrow {
    width: 0.65rem;
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}

.ticket--arrow-mobile{
	display: none;
}

.ticket--text {
    text-align: center;
    color: var(--color-navy-blue);
    font-size: 0.65rem;
    font-weight: bold;
    line-height: 1.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

/* ticket */

/* section:my--story */

.my--story__content {
    padding: 3rem 0;
    width: 100%;
    display: flex;
}

.my--story__text, .my--story__image {
    width: 50%;
}

.my--story__text {
    text-align: justify;
    color: var(--color-navy-blue);
}

.my--story__text p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.my--story__image {
    text-align: left;
}

.my--story__image img {
    width: 85%;
    height: auto;
    /* padding-right: 5rem; */
}

/* section:my--story */

/*section:  video-showcase */

.video--showcase {
    width: 100%;
    background-color: var(--background-color-navy-blue);
}

.video--showcase__full {
    display: flex;
    padding: 3rem 0;
}

.showcase {
    width: 40%;
}

.showcase--inner {
    width: 80%;
}

.showcase--inner h2 {
    color: var(--color-orange);
    padding: 1.5rem 0;
    font-size: 180%;
    font-size: 100;
}

.showcase--inner p {
    color: var(--color-gray);
    text-align: justify;
    font-size: 80%;
    margin-bottom: 1rem;
}

.video {
    width: 60%;
    position: relative;
	text-align:left;
}

.video h1 {
    position: absolute;
    color: var(--color-orange);
    top: 30%;
    left: 10%;
    z-index: 10000;
}

.video video {
    width: 100%;
    height: 100%;
}

/*section:  video-showcase */

/* section:quotation */

.quotation {
    background-color: var(--background-color-white);
}

.quotation--inner {
    display: flex;
}

.quotation--text {
    width: 70%;
    text-align: left;
    display: flex;
    align-items: center;
}

.quotation--text__inner {
    width: 80%;
    margin-left: auto;
    padding-right: 2rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.quotation--text__title {
    background-color: var(--background-color-orange);
    color: var(--color-navy-blue);
    padding: 0.75rem 1rem;
    text-align: center;
}

.quotation--text__title h2 {
    font-size: 1.5rem;
}

.quotation--text__content {
    padding: 3rem 0;
    display: flex;
	align-items: flex-start;
    justify-content: space-between;
    color: var(--color-navy-blue);
	flex-direction: row-reverse;
}

.quotation--text__content>div>div {
    padding: 0 2rem;
}

.quotation--text__content>div>div:first-child {
    text-align: center;
}

.quotation--text__content>div>div>p {
    font-size: 0.9rem;
}

.quotation--text__content>div>div>h4 {
    font-size: 1rem;
	width:70%;
	margin:0 auto;
	text-align: center;
}

.quotation--text__content>div>div>span {
    font-size: 0.6rem;
    text-align: left;
}

.quotation--text__content>img {
    width: 4rem;
}

.quotation--image {
    width: 30%;
}

.quotation--image img {
    width: 100%;
}

/* section:quotation */

/****************************************************** media-query ******************************************************/
@media (max-width: 1200px){
	.quotation--text__inner {
		width:100%;
/* 		padding-top:2rem; */
	}
}


@media (max-width: 992px) {
	.ticket--border, .ticket--arrow {
   display: none;
}
 
.ticket--arrow-mobile{
	display: block;
	width: 1.25rem;
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}

    .story--image__content {
        top: 35%;
        width: 25%;
    }
    .quotation {
        padding: 2rem 0;
    }
    .quotation--text__inner {
        width: 100%;
    }
    .quotation--text__content>img {
        width: 3rem;
    }
    .quotation--text__content>div>div {
        padding: 0 1rem;
    }
    .quotation--text__content>div>div>span {
        font-size: 0.6rem;
    }
	
	.quotation--text__title h2 {
		font-size: 1.25rem;
	}
  .quotation--text__content>div>div>p {
    font-size: 0.8rem;
  }
	.quotation--text__content>div>div>h4{
		font-size: 0.95rem;
	}
}

@media (max-width: 768px) {
    .ticket--orange__background, .ticket--blue__background {
        width: 5rem;
    }
    .ticket--text {
        font-size: 0.5rem;
    }
    .my--story__content {
        flex-direction: column-reverse;
    }
    .my--story__text, .my--story__image {
        width: 100%;
    }
    .my--story__image {
        text-align: center;
    }
    .my--story__image img {
        width: 90%;
    }
    .story--image__content {
        top: 30%;
        width: 30%;
    }
    .video--showcase__full {
        display: flex;
        flex-direction: column-reverse;
        padding: 3rem 0;
    }
    .showcase {
        width: 100%;
    }
    .showcase--inner {
        width: 100%;
    }
    .video {
        width: 100%;
        margin: 2rem auto 0 auto;
    }
    .quotation--text__title h2 {
        font-size: 1.05rem;
    }
    .quotation--text__inner {
        width: 100%;
    }
    .quotation--text__content>img {
        width: 2rem;
    }
    .quotation--text__content>div>div>h4 {
        font-size: 0.9rem;
		width: 100%
    }
}

@media (max-width: 576px) {
    .story--image__content {
        top: 20%;
        width: 35%;
    }
    .quotation--text__content>div>div {
        padding: 0 0.5rem;
    }
    .quotation--text__title h2 {
        font-size: 1rem;
    }
    .quotation--text__content>div>div>p {
        font-size: 0.7rem;
    }
}

@media (max-width: 425px) {
    .story--image__content {
        top: 15%;
    }
    .quotation--text {
        width: 100%;
    }
    .quotation--image {
        display: none;
    }
    .quotation--text__inner {
        padding: 0;
    }
}

/****************************************************** media-query ******************************************************/