
/* Content */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.content-wrapper img{
    width: 100%;
    border-radius: 10px;
}
.content-text {
    padding: 20px 0;
    width: 80%;
    font-size: 20px;
    margin:auto;

}
.content-text h3{
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 0.5s;
    transition-delay: 0.2s;
}
.content-text h3[data-scroll="in"]{
    transform: scaleY(1);
}


.content-detail {
    font-size: 18px;
    width:80%;
    margin: 10px auto 20px auto;
}



/* Breif */

.breif-img{
    width: 100%;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.5);
    animation: drop 1.5s ease;
}

/* Feature */
.feature {
    background-color: #7a7a7a;
    color:#fff;
}




/* sample video */

.sample-video {
    width:  100%;
}

.sample-video iframe {
    display:grid;
    width: 60%;
    height: 300px;
    margin: 10px auto 5px auto;
    
}

.sample-video .container iframe[data-scroll="in"] {
    animation: drop 1s ease;
}

/* Download */


.download .container {
    overflow: visible;
    
}
.download .container .content-text {
    grid-column: 1 / span 2;
    width: 100%;
    justify-content: left;
}
.download .container .content-text img {
    width:100px;
}
.download .container .card {
    background-color: var(--primary-color);
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.download .container .card:hover {
    background-color: #541CAA;
    /* animation: up 0.5s ease; */
    transform: translateY(-8px);
    transition: 0.5s;
    
}
.download .container a {
    text-decoration: none;
}
.download .container h3 {
    font-size: 50px;
}
.dowloadarea{
    display: grid;
    grid-column: 1 / span 4;
    
}
.download-wrap{
    display: inline-flex;
    justify-content: flex-end;
    align-items:center;
}
.download-wrap :is(i, p){
    padding: 0 5px;
    cursor: pointer;
}
.download-wrap p:hover{
    text-decoration: underline;
}
#d-i:hover + #d-p{
    text-decoration: underline;
}


@media only screen and (max-width: 750px) {

    .download .container {
        /* background-color: seagreen; */
        grid-template-columns: 1fr 1fr;
    }
    .download .container .content-text {
        grid-column: 1 / span 2fr;
    }
    .download .container h3 {
        font-size: 30px;
    }
    .dowloadarea{
        grid-column: 1 / span 2;
    }
  }

/* faq */
.faq .container {
    overflow:hidden;
    margin: auto;
}
.faq .container .content-text {
    justify-content: left;
}
.faq .container .content-text h3 {
    font-size: 40px;
    font-weight: 800;
}
.faq .container .faq-head :hover{
    color: #FFF160;
}
.faq-head{
    width: 80%;
    background-color: #5D5087;
    color:#fff;
    cursor: pointer;
    padding:8px;
}
.faq-head.flex {
    justify-content: left;
}

.faq-head img{
    width: 20px;
    transform: rotate(-90deg);
    transition: 0.5s;
}

.faq-detail{
    width: 80%;
    background: #DBD3F5;
    color: #795087;
    visibility: hidden;
    opacity: 0;
    height: 0px;
    transition: 0.5s;
    padding: 0;
    margin: 0 auto; 
}

@media only screen and (max-width: 750px) {

.faq-detail p{
    font-size:12px;
}
.faq-head.flex h3{
    font-size: 16px;
}
}
/* comment and section */
.question{
    color: black;

} 
.question .button{
    /* background-color: rgb(212, 212, 212); */
    color:white;
    background: #FF8008;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #FFC837, #FF8008);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #FFC837, #FF8008); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border:none;
    padding: 5px 10px;
    text-align: center;
    display: inline-block;
    width: 200px;
    border-radius: 5px;
    font-size: 18px;
    cursor:pointer;
}
.question .button:hover{
    /* background-color: #9D6EFA; */
    /* color:white; */
    font-weight:bold;
    cursor: pointer;
}
.question-main{
    width: 600px;
    border-width: 2px;
    border-color: black;
}
.question-main h3{
    margin-top: 30px;
}
.comment-box{
    /* margin: 20px 0 20px 0; */
    margin:auto;
    width:500px;
}
.comment-left{
    align-self: flex-start;
    justify-self: flex-start;
    display: inline-flex;
    width: 100px;
}
.comment-right{
    display: inline-flex;
    width: 380px;
}
.comment-right input{
    font-size: 18px;
    width: 100%;
}
.comment-right textarea{
    font-size: 18px;
}
.comment-center{
    width: 100%;
    /* border: 2px solid black; */
    padding-bottom:20px;
    display: inline-flex;
    justify-content: center;
    align-content: center;
}

#comment-card{
    width: 600px;
}
@media only screen and (max-width: 750px) {

    /* .paper-top{
       top: 30px;
   } */
   #comment-card{
       width: auto;
       padding:10px;
   }

}