.bg-theme {
    background: rgb(22,175,182);
    background: linear-gradient(90deg, rgba(22,175,182,1) 0%, rgba(56,180,157,1) 35%, rgba(87,186,118,1) 100%);
}

.text-theme {
    color: rgb(22,175,182);
    color: linear-gradient(90deg, rgba(22,175,182,1) 0%, rgba(56,180,157,1) 35%, rgba(87,186,118,1) 100%);
}

.content-padding-wp {
    margin-top: 15%;
}

.align-header {
    text-align: left;
}

.topic {
    font-size: 32px;
}

.subtopic {
    font-size: 24px;
}

.min-height-content {
    min-height: 800px;
}

.accordion-button:not(.collapsed) {
    color: #000 !important;
    background-color: #fff !important;
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
  
/* CSS */
.content-padding-wp {
    margin-top: 60%;
}

.align-header {
    text-align: center;
}

.topic {
    font-size: 32px;
}

.subtopic {
    font-size: 24px;
}

.min-height-content {
    min-height: 1000px;
}

}

/* 
##Device = Tablets, Ipads (landscape)
##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

/* CSS */
.content-padding-wp {
    margin-top: 60%;
}

.align-header {
    text-align: center;
}

.topic {
    font-size: 32px;
}

.subtopic {
    font-size: 24px;
}

.min-height-content {
    min-height: 1000px;
}

}

/* 
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {

/* CSS */
.content-padding-wp {
    margin-top: 60%;
}

.align-header {
    text-align: center;
}

.topic {
    font-size: 18px;
}

.subtopic {
    font-size: 14px;
}

.min-height-content {
    min-height: 800px;
}

}

/* 
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {

/* CSS */
.content-padding-wp {
    margin-top: 60%;
}

.align-header {
    text-align: center;
}

.topic {
    font-size: 18px;
}

.subtopic {
    font-size: 14px;
}

.min-height-content {
    min-height: 800px;
}

}