/*@font-face {
  font-family: 'Sunflower';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-06MfSroEC.ttf) format('truetype');
}
@font-face {
  font-family: 'Sunflower';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0sMbSroEC.ttf) format('truetype');
}
@font-face {
  font-family: 'Sunflower';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0-MDSroEC.ttf) format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
}
body {
  background: #1c1c1c;
} */
.custom-accordion {  
  color: #222222;
  /*font-family: 'Sunflower', sans-serif;*/
  padding-bottom: 2rem;
}
.custom-accordion > .item {
  padding: 1rem 2rem;
  margin: 0 auto;
  max-width: 30rem;  
}

.custom-accordion > .item:nth-child(1) {
	background-color: rgba(255, 189, 74, 0.5);
}
.custom-accordion > .item:nth-child(2) {
	background-color: rgba(255, 189, 74, 0.6);
}
.custom-accordion > .item:nth-child(3) {
	background-color: rgba(255, 189, 74, 0.7);
}
.custom-accordion > .item:nth-child(4) {
	background-color: rgba(255, 189, 74, 0.8);
}
.custom-accordion > .item:nth-child(5) {
	background-color: rgba(255, 189, 74, 0.9);
}





.custom-accordion > .item:last-of-type {
  background: #462521;
  text-align: left;
  border-radius: 0.5rem;
}
.custom-accordion > .item:last-of-type > .icon {  	
  color: #FFFFFF;
  background-color: #fff !important;
}
.custom-accordion > .item:nth-of-type(6) {
  padding-bottom: 2rem;
}
.custom-accordion > .item > .icon {
  color: #462521;
  font-size: 2rem;
}
.custom-accordion > .item > .title {
  font-size: 1.5rem;
}

.heart-icon {
  color: #CA2E55;
  font-size: 3rem;
  transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
}



@media screen and (min-width: 580px) and (min-height: 270px) {
  .custom-accordion {
    display: table;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    max-height: 510px;
    overflow: hidden;
    padding-bottom: 0;
  }
  .custom-accordion > .item {
    display: table-cell;
    position: relative;
    height: 100%;
    padding: 0.2rem 1rem;
    text-align: left;
    transform-origin: 0 50%;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  .custom-accordion > .item ul li {
	  list-style-type: disc;
	 padding:0 0 10px 6px;
	  margin:0 0 0 10px;
	  font-size:16px;
	  line-height:18px;
  }
  .custom-accordion > .item:hover:not(:last-of-type) {
    transform: scaleX(2) translateX(-1px);
    box-shadow: 0 0 3rem #301916;
    background-color: rgba(255, 189, 74, 1);
    border-color: transparent;
  }
  
  
  .custom-accordion > .item:nth-child(5):hover:not(:last-of-type) {
	box-shadow: 0 0 0rem #fff !important;  
  }
  
  
  .custom-accordion > .item:hover + .item {
    opacity: 0.1;
  }
  .custom-accordion > .item:hover + .item:last-of-type {
    opacity: 0.1;
    background: #fff;
  }
  .custom-accordion > .item:not(:last-of-type) {
    border-right: 1px solid #fff;
  }
  .custom-accordion > .item:last-of-type {
    background: #fff;
    width: 25%;
    border-radius: 0;
  }
  .custom-accordion > .item:last-of-type .heart-icon {
    font-size: 6rem;
  }
  .custom-accordion > .item:hover:last-of-type .heart-icon {
    transform: scale(2);
  }
  .custom-accordion > .item:last-of-type > .title {
    transform: rotate(0) translateX(-50%) translateY(-2.5rem);
    padding: 0;
    text-align: center;
  }
  .custom-accordion > .item:last-of-type > .content {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .icon {
    transform: scaleX(0.5);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title {
    transform: scaleX(0.5) translateX(-50%);
    background: #222;
	color:#fff;	
    text-align: center;
    padding: 0;
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title > .text {
    transform: translateX(-50%);
    left: 50%;	
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .content {
    opacity: 1;
  }
  .custom-accordion > .item > .icon {
    font-weight: 700;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    color: #FFFFFF;
	
	background-color:#FFBD4A;
	width:60px; height:60px;
	line-height:60px;
	border-radius:50%;
	text-align: center;
  }
  .custom-accordion > .item > .title {
    position: absolute;
    bottom: 0;	
    left: 50%;
    height: 40px;
	line-height:40px;
    width: 200%;
    text-align: left;
    transform-origin: 0 50%;
    transform: rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    font-size: 1.2rem;
  }
  .custom-accordion > .item > .title > .text {
    position: absolute;
    left: 2rem;
    bottom: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  .custom-accordion > .item > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scaleX(0.5);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    opacity: 0;
    padding: 1rem;
    pointer-events: none;
  }
}





@media screen and (max-width: 580px) and (min-height: 270px) {
  .custom-accordion {
    display: table;
    width: 96% !important;
    max-width: 1000px;
    margin: 0 auto;
    height: 420px;
    max-height: 430px;
    overflow: hidden;
    padding-bottom: 0;		
  }
  .custom-accordion > .item {
    display: table-cell;
    position: relative;
    height: 100%;
    padding: 10px;
    text-align: left;
    transform-origin: 0 50%;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  

  .custom-accordion > .item ul li {
	  list-style-type: disc;
	  padding:0 0 10px 6px;
	  margin:0 0 0 10px;
	  font-size:14px;
	  line-height:16px;
	  
	  
  }
  .custom-accordion > .item:hover:not(:last-of-type) {
    transform: scaleX(2) translateX(-1px);
    box-shadow: 0 0 3rem #301916;
    background-color: rgba(255, 189, 74, 1);
    border-color: transparent;
  }
  
  
  .custom-accordion > .item:nth-child(5):hover:not(:last-of-type) {
	box-shadow: 0 0 0rem #fff !important;  
  }
  
  
  .custom-accordion > .item:hover + .item {
    opacity: 0.1;
  }
  .custom-accordion > .item:hover + .item:last-of-type {
    opacity: 0.1;
    background: #fff;
  }
  .custom-accordion > .item:not(:last-of-type) {
    border-right: 1px solid #fff;
  }
  .custom-accordion > .item:last-of-type {
    background: #fff;
    width: 30%;
    border-radius: 0;
  }
  .custom-accordion > .item:last-of-type .heart-icon {
    font-size: 6rem;
  }
  .custom-accordion > .item:hover:last-of-type .heart-icon {
    transform: scale(2);
  }
  .custom-accordion > .item:last-of-type > .title {
    transform: rotate(0) translateX(-50%) translateY(-2.5rem);
    padding: 0;
    text-align: center;
  }
  .custom-accordion > .item:last-of-type > .content {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .icon {
    transform: scaleX(0.5);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title {
    transform: scaleX(0.5) translateX(-50%);
    background: #222;
	color:#fff;	
    text-align: center;
    padding: 0;
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title > .text {
    transform: translateX(-50%);
    left: 50%;	
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .content {
    opacity: 1;
  } 
  .custom-accordion > .item > .icon {
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    color: #FFFFFF;	
	background-color:#FFBD4A;
	width:48px; 
	height:48px;
	line-height:48px;
	border-radius:50%;
	text-align: center;
  }
  .custom-accordion > .item > .title {
    position: absolute;
    bottom: 0;	
    left: 50%;
    height: 40px;
	line-height:40px;
    width: 200%;
    text-align: left;
    transform-origin: 0 50%;
    transform: rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    font-size: 18px;	
  }
  .custom-accordion > .item > .title > .text {
    position: absolute;
    left: 1rem;
    bottom: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  .custom-accordion > .item > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scaleX(0.5);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    opacity: 0;
    padding: 1rem;
    pointer-events: none;
  }
}



@media screen and (max-width: 480px) and (min-height: 270px) {
  .custom-accordion {
    display: table;
    width: 96% !important;
    max-width: 1000px;
    margin: 0 auto;
    height: 380px;
    max-height: 390px;
    overflow: hidden;
    padding-bottom: 0;		
  }
  .custom-accordion > .item {
    display: table-cell;
    position: relative;
    height: 100%;
    padding: 0 8px;
    text-align: left;
    transform-origin: 0 50%;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  

  .custom-accordion > .item ul li {
	  list-style-type: disc;
	  padding:0 0 6px 6px;
	  margin:0 0 0 5px;
	  font-size:13px;
	  line-height:15px;
	  
	  
  }
  .custom-accordion > .item:hover:not(:last-of-type) {
    transform: scaleX(2) translateX(-1px);
    box-shadow: 0 0 3rem #301916;
    background-color: rgba(255, 189, 74, 1);
    border-color: transparent;
  }
  
  
  .custom-accordion > .item:nth-child(5):hover:not(:last-of-type) {
	box-shadow: 0 0 0rem #fff !important;  
  }
  
  
  .custom-accordion > .item:hover + .item {
    opacity: 0.1;
  }
  .custom-accordion > .item:hover + .item:last-of-type {
    opacity: 0.1;
    background: #fff;
  }
  .custom-accordion > .item:not(:last-of-type) {
    border-right: 1px solid #fff;
  }
  .custom-accordion > .item:last-of-type {
    background: #fff;
    width: 30%;
    border-radius: 0;
  }
  .custom-accordion > .item:last-of-type .heart-icon {
    font-size: 6rem;
  }
  .custom-accordion > .item:hover:last-of-type .heart-icon {
    transform: scale(2);
  }
  .custom-accordion > .item:last-of-type > .title {
    transform: rotate(0) translateX(-50%) translateY(-2.5rem);
    padding: 0;
    text-align: center;
  }
  .custom-accordion > .item:last-of-type > .content {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .icon {
    transform: scaleX(0.5);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title {
    transform: scaleX(0.5) translateX(-50%);
    background: #222;
	color:#fff;	
    text-align: center;
    padding: 0;
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title > .text {
    transform: translateX(-50%);
    left: 50%;	
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .content {
    opacity: 1;
  } 
  .custom-accordion > .item > .icon {
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    color: #FFFFFF;	
	background-color:#FFBD4A;
	width:42px; 
	height:42px;
	line-height:42px;
	border-radius:50%;
	text-align: center;
  }
  .custom-accordion > .item > .title {
    position: absolute;
    bottom: 0;	
    left: 50%;
    height: 40px;
	line-height:40px;
    width: 200%;
    text-align: left;
    transform-origin: 0 50%;
    transform: rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    font-size: 14px;	
  }
  .custom-accordion > .item > .title > .text {
    position: absolute;
    left: 1rem;
    bottom: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  .custom-accordion > .item > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scaleX(0.5);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    opacity: 0;
    padding: 1rem;
    pointer-events: none;
  }
}



@media screen and (max-width: 380px) and (min-height: 270px) {
	
  .custom-accordion {
    display: table;
    width: 98% !important;
    max-width: 1000px;
    margin: 0 0 0 -2px !important;
    height: 380px;
    max-height: 390px;
    overflow: hidden;
    padding-bottom: 0;		
  }
  .custom-accordion > .item {
    display: table-cell;
    position: relative;
    height: 100%;
    padding: 0 6px;
    text-align: left;
    transform-origin: 0 50%;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  

  .custom-accordion > .item ul li {
	  list-style-type: disc;
	  padding:0 0 6px 2px;
	  margin:0 0 0 2px;
	  font-size:13px;
	  line-height:15px;
	  
	  
  }
  .custom-accordion > .item:hover:not(:last-of-type) {
    transform: scaleX(2) translateX(-1px);
    box-shadow: 0 0 3rem #301916;
    background-color: rgba(255, 189, 74, 1);
    border-color: transparent;
  }
  
  
  .custom-accordion > .item:nth-child(5):hover:not(:last-of-type) {
	box-shadow: 0 0 0rem #fff !important;  
  }
  
  
  .custom-accordion > .item:hover + .item {
    opacity: 0.1;
  }
  .custom-accordion > .item:hover + .item:last-of-type {
    opacity: 0.1;
    background: #fff;
  }
  .custom-accordion > .item:not(:last-of-type) {
    border-right: 1px solid #fff;
  }
  .custom-accordion > .item:last-of-type {
    background: #fff;
    width: 30%;
    border-radius: 0;
  }
  .custom-accordion > .item:last-of-type .heart-icon {
    font-size: 6rem;
  }
  .custom-accordion > .item:hover:last-of-type .heart-icon {
    transform: scale(2);
  }
  .custom-accordion > .item:last-of-type > .title {
    transform: rotate(0) translateX(-50%) translateY(-2.5rem);
    padding: 0;
    text-align: center;
  }
  .custom-accordion > .item:last-of-type > .content {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .icon {
    transform: scaleX(0.5);
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title {
    transform: scaleX(0.5) translateX(-50%);
    background: #222;
	color:#fff;	
    text-align: center;
    padding: 0;
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .title > .text {
    transform: translateX(-50%);
    left: 50%;	
  }
  .custom-accordion > .item:hover:not(:last-of-type) > .content {
    opacity: 1;
  } 
  .custom-accordion > .item > .icon {
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    color: #FFFFFF;	
	background-color:#FFBD4A;
	width:42px; 
	height:42px;
	line-height:42px;
	border-radius:50%;
	text-align: center;
  }
  .custom-accordion > .item > .title {
    position: absolute;
    bottom: 0;	
    left: 50%;
    height: 40px;
	line-height:40px;
    width: 200%;
    text-align: left;
    transform-origin: 0 50%;
    transform: rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    font-size: 13px;	
  }
  .custom-accordion > .item > .title > .text {
    position: absolute;
    left: 1rem;
    bottom: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  .custom-accordion > .item > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scaleX(0.5);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    opacity: 0;
    padding: 1rem;
    pointer-events: none;
  }
}


