
*{
    font-family: 'Roboto', sans-serif;
}

html {    
    margin: 0;
    scroll-behavior: smooth
}

body,
html {
    margin: 0;
    overflow-x: hidden;
    background: #00a6ff;
}



#app-holder{
    width: 500px;
    max-width: 90%;
    margin: auto;
    background: #f6f6f6;
    border: #00a6ff 10px solid;
    border-radius: 10px;
}
#app-holder-title{
    background: #710aad;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#app-holder-title>h2{
    font-size: 1.7rem;
    padding: 10px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    display: inline;
    width: 100%;
    text-align: center;
    transition: all 0.5s;
}

#app-holder-body{
    height: 130px;
    display: flex;
    align-items: center;
    padding: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;

}

.app-icon{
    display: block;
    width: 100px;
    cursor: pointer;
    transition: all 0.5s;
    text-decoration: none;
    margin: 0 5px;
}

.app-icon>div{
    width: 80px;
    height: 80px;
    /* border-radius: 50%; */
    margin: 5px auto;
    transition: all 0.5s;
}

.app-icon img{
    max-width: 100%;
    max-height: 100%;
}

.app-icon>p{
    padding: 0;
    margin: 0;
    transition: all 0.5s;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.app-icon:hover > div{
    transform: scale(1.2);
}


.app-more{

}

.app-more>img{
    height: 50px;
    /* border-radius: 50%; */
    margin: 5px;
    transition: all 0.5s;
}



.section{
    background: #fff;
    margin: 20px 0;
}

.section-title{
    background: #4ef5d3;
    text-decoration: none;
    height: 55px;
    align-content: center;
}

.section-title>h1, .section-title>h2{
    font-size: 1.7rem;
    padding: 10px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    display: inline;

    width: 100%;
    text-align: center;

    transition: all 0.5s;

}

.section-title>h2:hover{
    color: #000;
}

.section-body{
    background: #fff;
    min-height: 400px;
    padding: 20px;
    position: relative;
}

.section-body a{
    width: 100%;
    text-decoration: none;
    color: #000;
    text-align: center;
}

.section-body a img{
    transition: all 0.5s;
}

.section-body a:hover img{
    transform: scale(1.3);
}

.section-body a>div{
    overflow: hidden;
}


.section-body img{
    max-width: 100%;
    height: auto;
}

.section-body p{
    /* display:none; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.info-body{
    padding-bottom: 220px;
}

.info-body p, .info-body div{
    overflow: initial;
    text-overflow: initial;
    white-space: initial;
    margin-block-start: 0.6em;
    margin-block-end: 0.6em;

}

.section-mascot-bg{

    position: absolute;
    right: 0;
    bottom: 0;
    
    width: 0; 
    height: 0; 
    
    border-top: 100px solid transparent;
    border-right: 300px solid #4ef5d3;
}

.section-mascot{
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: auto;
    height: 230px;
}

.section-mascot>img{
    max-height: 100%;
}


.info{
    background: #fff;
    margin-bottom: 20px;
    padding: 20px 0;
    margin-top: 20px;
}


.tagcloud a {
	background-color: #ddd;
	border-radius: 3px;
	color: #000;
	display: inline-block;
	font-size: 16px !important;
	margin: 0 5px 5px 0;
	padding: 2px 5px;
	text-decoration: none;
}

.tagcloud a:hover {
	background-color: #666;
	color: #fff;
}

.newsletter-section a{
    margin-bottom: 5px;
}

.newsletter-section a{
    text-decoration: underline;
}

.newsletter-section a:hover{
    text-decoration: underline;
    color: #00aaff;
}



.little-scroll::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.little-scroll::-webkit-scrollbar
{
	width: 10px;
    height: 10px;
	background-color: #F5F5F5;
}

.little-scroll::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}






ol.gradient-list > li::before, ol.gradient-list > li {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}

/*** STYLE ***/
/* *,
*:before,
*:after {
  box-sizing: border-box;
} */



.newsletter-section {
  display: block;
  margin: 0 auto;
  /* max-width: 40rem; */
  padding: 1rem;
}

ol.gradient-list {
  counter-reset: gradient-counter;
  list-style: none;
  margin: 1.75rem 0;
  padding-left: 1rem;
}
ol.gradient-list > li {
  background: white;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  counter-increment: gradient-counter;
  margin-top: 1rem;
  min-height: 3rem;
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
}
ol.gradient-list > li::before, ol.gradient-list > li::after {
  background: #710aad;
  border-radius: 1rem 1rem 0 1rem;
  content: "";
  height: 3rem;
  left: -1rem;
  overflow: hidden;
  position: absolute;
  top: -1rem;
  width: 3rem;
}
ol.gradient-list > li::before {
  align-items: flex-end;
  content: counter(gradient-counter);
  color: #fff;
  display: flex;
  justify-content: flex-end;
  padding: 0.125em 0.25em;
  z-index: 1;
  font-size: 24px;
}

.new-badge{
    position: absolute;
    top: 0;
    right: 0;
    background: #00a6ff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0 0 0 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.new-badge > p{
    margin: 0;
    padding: 0;
}

/* ol.gradient-list > li {
  background: #00a6ff;
} */
/* ol.gradient-list > li:nth-child(10n+1):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+2):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.4) 0%, rgba(253, 220, 50, 0.4) 100%);
}
ol.gradient-list > li:nth-child(10n+3):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.6) 0%, rgba(253, 220, 50, 0.6) 100%);
}
ol.gradient-list > li:nth-child(10n+4):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.8) 0%, rgba(253, 220, 50, 0.8) 100%);
}
ol.gradient-list > li:nth-child(10n+5):before {
  background: linear-gradient(135deg, #a2ed56 0%, #fddc32 100%);
}
ol.gradient-list > li:nth-child(10n+6):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.8) 0%, rgba(253, 220, 50, 0.8) 100%);
}
ol.gradient-list > li:nth-child(10n+7):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.6) 0%, rgba(253, 220, 50, 0.6) 100%);
}
ol.gradient-list > li:nth-child(10n+8):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.4) 0%, rgba(253, 220, 50, 0.4) 100%);
}
ol.gradient-list > li:nth-child(10n+9):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+10):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0) 0%, rgba(253, 220, 50, 0) 100%);
} */
ol.gradient-list > li + li {
  margin-top: 2rem;
}
