@media only screen and (min-width: 1600px) {

}


.cd-main-content {
    padding: 0 0 3rem;
    height: auto;
    gap: 2rem;
}

.main-boxes, .vertical-boxes {
    max-width: 1200px;
    width: 90vw;
    margin: 0 auto;
    max-height: none;
}

header {
  padding: 2rem;
}

.box-text, .box-title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
}

.box {
  gap: 3rem;
}

.box-content {
    display: flex;
    flex-direction: column;
    padding: 0 2rem 2rem;
    gap: 2rem;
}

.box-text {
    text-align: left;
    line-height: 1.3em;
}

.box-title {
    top: 30px;
}

nav {
    position: relative;
    width: 100%;
    z-index: 10;
    right: 0;
    top: 0;
}

.back-btn {
	float: left;
	color: #ffffff;
	z-index: 10;
	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	background-color: #826A95;
  	padding: 10px 15px;
  	border-radius: 30px;
  	cursor: pointer;
}

.back-btn:hover {
  	background-color: #826A95;
 }

 .back-btn a {
  	color: #ffffff;
 }

.social {
	float: right;
}

.box-image, .box-image img {
	width: 100%;
  height: 20vh;
}

.three-boxes {
  width: 100%;
}

.three-boxes img {
  width: 32%;
}

.three-boxes .mid-fix {
  margin: 0 2%;
}

.quote .text {
  font-style: italic;
}

/*Scrollbar Custom*/

html::-webkit-scrollbar
{
	border-radius: 99px;
	background-color: transparent;
  padding-bottom: 20px
}

html::-webkit-scrollbar
{
	width: 8px;
	background-color: transparent;
}

html::-webkit-scrollbar
{
	border-radius: 99px;
	background-color: #826A95;
}

/*Scrollbar Custom END*/

@media only screen and (min-width: 960px) {
  body {
    overflow: auto;
  }
  .cd-main-content {
      display: flex;
      flex-direction: column;
  }
  .main-boxes, .vertical-boxes {
    width: 85vw;
  }
  .box-content {
    padding: 0 4rem 4rem;
  }
  .back-btn {
    background-color: transparent;
  }
  .box-image {
    height: 35vh;
  }
}


@media only screen and (max-width: 600px) {
  .three-boxes img {
  width: 47%;
}
.three-boxes-hide {
  display: none;
}
.main-boxes, .vertical-boxes {
  width: 94vw;
}
}

/* Quote box */

.card{
  height: auto;
  width: 100%;
  background-color: rgb(130,106,149,0.2);
  position: relative;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
  text-align: left;  
  border-radius: 2rem;
  transition: transform 1s ease-out;
}
.yt {
    justify-content: left;
    cursor: pointer;
}
.yt-icon{
  float: right;
    position: relative;
    width: 100px;
    margin: 0 auto;
    top: 5%;
    bottom: 5%;
    text-align: right;
}
.yt .text {
  width: 85%;
}
.card .fa{
  color: rgba(130,106,149,0.3);
  position: absolute;
  font-size: 90px;
}
.fa-youtube-box {
  font-size: 60px!important;
  position: relative!important;
}
.card .fa-quote-right{
  float: right;
  bottom: 20px;
  right: 20px;
  padding: 0 10px 0 0;
}
.text{
  font-size: 1em;
  position: relative;
  color: rgba(255,255,255,0.5);
  line-height: 1.3em;
  font-family: 'Work Sans',sans-serif;
  padding: 0 0 0 10px;
}
.author{
  position: relative;
  float: left;
  width: 100%;
  padding: 15px 0 0;
  font-size: 1em;
  font-family: 'Rubik',sans-serif;
  color: rgba(255,255,255,1);
}
.card:hover{
  box-shadow: 5px 5px 15px 2px rgba(0,0,0,0.1);
}
.card:hover .fa1{
  background: #826A95;
  -webkit-text-fill-color:transparent;
  -webkit-background-clip:text;
}
.card:hover .text{
  color: #ffffff;
}
.card:hover .a1{
  color: #ffffff;
}

/* Quote box END */