
.flex-div{
    display: flex;
    align-items: center;
}

div.list-container{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 2rem;
    margin-top: 15px;
}
div.ve-list {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    background: white;
    transition: transform 0.3s ease-in-out;
    text-align: left;
}
div.ve-list .thumbnail{
    width: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    border-color: #aaa;
    height:200px;
}

div.ve-list:hover {
    transform: scale(1.05);
}

div.ve-list .flex-div{
    align-items: flex-start;
    margin-top: 7px;
}
div.ve-list .edesc {
	white-space: nowrap;
	overflow: hidden;
    margin-bottom: 0.4rem;
    text-overflow: ellipsis;
    color: #5a5a5a;
}
div.ve-list .details {
    padding: 1.5rem ;
}
div.details h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3a3a3a;
    font-weight: 600;
}
div.details:hover h4 {
    color: #f69400;
}
div.details h5 {
    margin-bottom: 0.8rem;
}
img.cth {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
}
a.elink {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #f69400;
    float: right;
    font-weight: 500;
}
button.elink {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #f69400;
    float: right;
    font-weight: 500;
    border: none;
    background: #fff;
}
button.elink:hover {
    color: #fff;
    background-color: #f69400;
    padding: 5px 10px;
    border-radius: 5px;
}
span.stats {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #5a5a5a;
}
span.stats img {
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
}
span.name {
    color: #5a5a5a;
}
div.heroContainer {
    background-image: url(/images/artegallery.jpg);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    min-height: 80vh;
    border-radius: 1rem;
    display: flex;
    align-items: center; 
    justify-content: center;
}
div.heroText {
    margin: auto;
    max-width: 52rem;
    vertical-align: middle;
    color: white;
    padding: 8rem 8rem;
}
div.heroText h1 {
    font-size : 4.5rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    max-width: 32rem;
    margin-bottom: 1.5rem;
}
div.heroText p {
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 42rem;
    text-align: center;
}
div.heroText h1 span{
    color: #f69400;
} 
div.heroOverlay {
    background-color: rgb(0 0 0 / 0.5);
    width: 100%;
    height: 80vh;
    border-radius: 1rem;
}
h2.list_header {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
}
div.category_header {
    padding: 1rem 0rem;
    color: white;
    background-image: linear-gradient(to right, #f69400, #04a2ff);
}
div.category_header h2 {
    padding: 1rem 0rem;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
}
div.list_header_container {
    padding-top: 3em;
    padding-bottom: 0.5em;
    display: flex;
    justify-content: space-between;
}
a.link {
    float: right;
    border: 0;
    background: transparent;
    color:#f69400;
    font-size: 1.125rem;
}
a.link img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(55%) saturate(4894%) hue-rotate(9deg) brightness(104%) contrast(109%);
    vertical-align: text-bottom;
}
a.link:hover {
    color: #fff;
    background-color: #f69400;
    border-radius: 5px;
    padding: 5px;
}
a.link:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(314deg) brightness(106%) contrast(101%);
}
section#hero {
    padding: 3% 1%;
    background: #fcfbf8;
}
section.bg {
    background-color: #fcfbf8;
}
div.paginate {
    margin-top: 2rem;
    text-align: center;
}
div.paginate ul {
    list-style-type: none;
    display: inline-flex;
}
div.paginate ul li {
    margin: 5px;
}
a.page_link_text {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    border: 0px solid gray;
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
    display: block;
}
a.page_link_text:hover {
    background-color: #f69400;
    border: 1px solid #f69400;
    color: #fff;
}
a.page_link_num {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
    display: block;
}
a.page_link_num:hover {
    background-color: #f69400;
    border: 1px solid #f69400;
    color: #fff;
}
a.link_dsbl {
    pointer-events: none;
    opacity: 0.5;
}

@media screen and (max-width: 700px) {
    div.list-container{
        grid-template-columns: repeat(1, minmax(0,1fr));
    }
    div.heroText {
        padding: 1rem;
    }
    div.heroText h1{
        font-size: 4rem;
    }
}
@media screen and (max-width: 1400px) and (min-width: 701px) {
    div.list-container{
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

*{
    margin: 0;
    padding: 0;
    font-family: Arial-fallback,Linux-fallback,Helvetica,Helvetica Neue,-apple-system,BlinkMacSystemFont,sans-serif;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #5a5a5a;
}
img{
    cursor: pointer;
}
nav{
    display: flex;
    padding: 10px 2%;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}
nav h1 {
	display: inline;
	color: #04a2ff;
	font-size: 3em;
	margin-left: 10px;
}
nav img.logo {
    width:  42px;
	vertical-align: text-bottom;
}
.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding:8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #f69400;
    text-decoration: none;
    font-size: 1.35em;
    font-weight: 600;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #04a2ff;
    display: block;
    margin: auto;
    transition: 0.56s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
button.menu-close {
    display: none;
}
button.menu-open {
    display: none;
}
div.container{
    padding-left: 2%;
    padding-right: 2%;
    padding-top:20px;
    padding-bottom: 20px;
    margin: auto;
    max-width: 80%;
}

@media (max-width: 700px) {
    div.container {
        max-width: 36rem;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #B0DEF5;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -400px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        display: none;
    }
    nav .fa{
        display: block;
        color: #f69400;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    button.menu-close {
        display: block;
        width: 32px;
        border: 0px;
        margin-left: 20px;
        margin-top: 20px;
        background: #B0DEF5;
    }
    button.menu-open {
        display: block;
        width: 32px;
        background-color: #fff;
        border: none;
    }
    nav img.logo {
        width : 42px;
    }
	nav h1 {
		font-size: 1.7em;
		display:block;
	}
    nav {
        padding: 2% 2%;
    }
}
@media screen 
    and (max-width: 1400px) 
    and (min-width: 701px) {
    div.container {
        max-width: 72rem;
    }
}
section.content {
    color : #3a3a3a;
    background-color: #fcfbf8;
}


.copyright {
margin: auto;
text-align: center;
}
ul.plist {
    list-style-type:  none;
}
ul.plist li {
    margin-bottom: 10px;
}
ul.plist li.top {
    font-weight: 600;
}
div.social {
    text-align: left;
}
div.social img {
width: 24px;
height: 24px;
}
img.playstore {
    width: 180px;
    margin-left: -10px;
    margin-right: 25px;
}
img.appstore {
width: 160px;
margin-right: 25px;
margin-bottom: 10px;

}
img.logo-small {
width: 64px;
}
footer {
    padding-top: 20px;
    padding-left: 3%;
    padding-right: 3%;
    margin-top: 10px;
    width: 100%;
    margin: auto;
    font-size: 1.1rem;
    color: #313131;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}
div.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 2rem;
    margin-top: 15px;
}
footer .store-btn {
  padding: 15px 30px; 
  font-size: 18px;
  color: white; 
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  background-image: linear-gradient(to right, #f69400, #04a2ff); 
  margin : 10px;
  display: block;
  font-weight:600;
  max-width: 250px;
}
footer ul.buttons {
    display: block;
	margin-bottom:2rem;
	margin-right: 1em;
	list-style-type:none;
}
footer a {
    text-decoration: none;
}
footer a:hover {
    color : #f69400;
}

