
@import url('https://fonts.googleapis.com/css?family=Patrick+Hand&display=swap');

*

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    vertical-align: baseline;
    letter-spacing: 1px;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    background: #8d92e0;
    line-height: 1;
    min-height: 100%;
    font-family: 'Patrick Hand', cursive;
    min-height: 100%;
}
html{
	overflow: scroll;
    overflow-x: hidden;
    height:100%;
}
ol, ul {
	list-style: none;
}

/* Grid Layout */

#site{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto max-content auto;
    grid-template-areas: 
    "page-topbar page-topbar"
    "page-header page-header"
    "page-navbar page-navbar"
	"page-main page-main"
    "page-footer page-footer";
    text-align: center;
    grid-gap: 5px;
}

.main{
	grid-area: page-main;
}

.home-page{
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
	"page-content page-content"
    "page-paging page-paging"
    "page-sidebar page-sidebar"
	"page-aboutUs page-aboutUs";
	text-align: center;
    grid-gap: 5px;
	
}


/* STYLING */

/* Topbar */
.topbar{
    grid-area: page-topbar;
    font-size: 13px;
    padding: 5px;
    color: #fff;
    background: #0a0b20;
    border-bottom: 1px solid #d146a0;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

/* Header */
.header{
    grid-area: page-header;
    background: #0a0b20;
    padding: 5px 0;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.logo{
    height: 80px;
}

.header-content{
    display: none;
}

.navbar-desktop ul{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
}

.navbar-desktop ul li a{
    color: #d146a0;
    text-decoration: none;
    font-size: 15px;
    transition: 0.5s;
}

.navbar-desktop ul li a:hover{
    color: #fff;
}

/* Nav bar */
.navbar{
    grid-area: page-navbar;
    font-size: 15px;
    color: #fff;
    background: #0a0b20;
    padding: 5px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.nav{
    display: flex;
    justify-content: space-between;
}

.filters{
    display: none;
}

.navbar-filters ul{
    display: inline-flex;
}

.navbar-filters ul li{
    padding: 10px;
}

.navbar-filters ul li a{
    padding: 10px;
    color: #d146a0;
    text-decoration: none;
    padding: 5px;
    transition: 0.5s;
    font-size: 13px;
}

.navbar-filters ul li a:hover{
    color: #fff;
}

.menu-box{
    text-align: left;
}

.menu-btn{
    color: #fff;
    padding: 6px 8px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    font-family: 'Patrick Hand', cursive;
}

.dropdown{
    display: none;
    position: absolute;
    background: #0a0b20;
    width: 100%;
    z-index: 1;
    left: 0;
}

.menu-grid{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
    "pages"
    "boxright"
    "menufooter"; 
    background: #151635;
    margin: 5px;
    border: 1px solid #d146a0;
}

.menu-pages{
    text-align: left;
    border-right: 1px solid #d146a0;
    background: #b73e8f;
    grid-area: pages;
}

.menu-box-right{
    grid-area: boxright;
}

.menu-footer{
    grid-area: menufooter;
}

.menu-content{
    border-bottom: 1px solid #d146a0;
}

.dropdown .menu-content h1{
    padding: 8px 10px;
    font-size: 13px;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
}

.dropdown .menu-content li{
    list-style-type: none;
    padding: 8px 10px;
    border-top: 1px solid #d146a0;
    background: #b73e8f;
}

.dropdown .menu-content li a{
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

.menu-box-right{

}

.menu-banner{
    position: relative;
}

.banner-text1{
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    font-size: 13px;
    padding: 8px 10px;
    background: rgba(209, 70, 160, 0.5);
}

.banner-text2{
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    font-size: 13px;
    padding: 4px 5px;
    background: rgba(209, 70, 160, 0.5);
}

.banner{
    width: 100%;
    opacity: 0.75;
}

.menu-info{
    text-align: left;
}

h2{
    padding: 8px 10px;
    font-size: 13px;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    border-top: 1px solid #d146a0;
    color: #fff;
}

h3{
    padding: 8px 0;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    border-top: 1px solid #d146a0;
    color: #fff;
}

h4{
    padding-bottom: 10px;
    font-style: italic;
    font-size: 16px;
    color: #d046a0;
    text-decoration: underline;
}

.filter-options{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}

.filter-options a{
    padding: 8px 10px;
    font-size: 13px;
    text-decoration: none;
    color: #fff;
    background: #b73e8f;
    border-top: 1px solid #d146a0;
}

.menu-footer p{
    padding: 8px 10px;
    border-top: 1px solid #d146a0;
    background: #b73e8f;
    font-size: 13px;
}

.search{
    display: flex;
    justify-content: flex-end;
}

.search-input{
    border: none;
    outline: none;
    width: 100%;
    color: #d146a0;
    padding-left: 5px;
}

.search-btn{
    padding: 6px 8px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    font-family: 'Patrick Hand', cursive;
}
.search-btn:hover{
    background: #8d6adf;
    background: -moz-linear-gradient(top, #8d6adf 0%, #712bff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8d6adf), color-stop(100%,#712bff ));
    background: -webkit-linear-gradient(top, #8d6adf 0%,#712bff 100%);
    background: -o-linear-gradient(top, #8d6adf 0%,#712bff 100%);
    background: -ms-linear-gradient(top, #8d6adf 0%,#712bff 100%);
    background: linear-gradient(top, #8d6adf 0%,#712bff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8d6adf', endColorstr='#712bff',GradientType=0 );
}

/* Content */

.title{
    font-size: 13px;
    color: #fff;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    padding: 10px 0;
    margin-bottom: 5px;
}

.content{
    grid-area: page-content;
    background: #0a0b20;
    padding: 5px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.models{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
}

.model{
    position: relative;
    border: 1px solid rgba(113, 43, 255, 0.5);
}

.model-thumb{
    width: 100%;
    object-fit: cover;
}

.live-model{
    position: absolute;
    top: 1%;
    left: 1%;
}

.model-grid-info{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
    "shemale-name shemale-name"
    "shemale-age shemale-cock";
    color: #fff;
    font-size: 11px;
    width: 100%;
    background: rgba(62, 27, 144, 0.5);
}

.model-name{
    grid-area: shemale-name;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    padding: 3px;
    overflow: hidden;
}

.model-age{
    grid-area: shemale-age;
    background: #b73e8f;
    text-align: left;
    padding: 3px;
}

.model-cock{
    grid-area: shemale-cock;
    background: #b73e8f;
    text-align: right;
    padding: 3px;
}

/* Paging */

.paging{
    grid-area: page-paging;
    padding: 5px;
    background: #0a0b20;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.paging-box{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    border: 1px solid rgba(113, 43, 255, 0.5);
}

.paging span{
    color: #fff;
    padding: 10px 15px;
    background: #d146a0;
    background: -moz-linear-gradient(bottom, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(bottom, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(bottom, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(bottom, #d74690 0%,#9f148e 100%);
    background: linear-gradient(bottom, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
}

.paging a{
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
}

.article{
	color:#fff;
	font-size:15px;
	line-height:20px;
	padding:20px;
	text-align:left;
}
/* Sidebar */

.sidebar{
    grid-area: page-sidebar;
    display: grid;
    /*grid-template-rows: 1fr auto;*/
    background: #0a0b20;
    padding: 5px;
    grid-gap: 5px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.shemale-model{
    position: relative;
}

.shemale-pic{
    width: 100%;
    border: 1px solid #d146a0;
}

.shemale-pic-text{
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    font-size: 15px;
    padding: 4px 5px;
    background: rgba(209, 70, 160, 0.5);
    color: #fff;
    border: 1px solid #d146a0;
    border-bottom: none;
}

.sites ul li{
    list-style-type: none;
    padding: 8px 10px;
    border-top: 1px solid #d146a0;
    background: #b73e8f;
}

.sites ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 13px;
}

/* About us */

.aboutUs{
    grid-area: page-aboutUs;
    display: grid;
    grid-template-rows: auto;
    padding: 5px;
    background: #0a0b20;
    color: #fff;
    line-height: 1.2;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    font-size: 15px;
}

.aboutUs div:nth-child(3){
    border-top: none;
}

.aboutUs div:nth-child(4){
    border-top: none;
}

.aboutUs-inside{
    padding: 10px;
    border: 1px solid #9f148e;
    font-size: 15px;
    text-align: justify;
}
.descrip{
    padding: 5px;
    background: #b73e8f;
    border: 1px solid #9f148e;
    border-top: none;
}

.aboutUs-inside ul li{
    padding: 5px;
}

.aboutUs-inside ul i{
    color: #d046a0;
}

.aboutUs-inside-pic p{
    background: #fff;
}

.shemale-aboutUs{
    width: 100%;
    border: 1px solid #9f148e;
    border-top: none;
}

.shemale-404{
    width: 100%;
    border: 1px solid #9f148e;
}

.aboutUs-inside p{
    padding: 5px;
}

/* Footer */

.footer{
    grid-area: page-footer;
    background: #0a0b20;
    color: #fff;
    border-top: 1px solid #d146a0;
    font-size: 15px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.footer-inside{
    padding: 5px;
}

.footer p{
    padding: 5px;
    color: #d046a0;
    text-decoration: underline;
}

.footer a{
    padding: 5px;
    margin-top: 5px;
    color: #fff;
    font-style: italic;
    background: #3e1b90;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(209, 70, 160, 0.5);
}

h6{
    padding: 5px;
}

.footer-copyright{
    color: #d146a0;
    padding: 5px;
}

/* Not Found */

.page-not-found{
    color: #fff;
    padding: 5px;
    background: #d146a0;
    font-size: 15px;
}

.page-not-found a{
    background: #3e1b90;
    color: #fff;
    text-decoration: none;
}

/* Chatroom */

.chatroom{
    grid-area: page-chatroom;
    padding: 5px;
    background: #0a0b20;
    padding-bottom: 2px;
}

.live-room{
    background: #b73e8f;
    position: relative;
}

.title_room{
    font-size: 13px;
    color: #fff;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
    padding: 10px 0;
    margin-bottom: 2px;
}

.offline{
    padding: 50px;
    color: #fff;
    font-size: 13px;
}

.unblocker{
	display: none;
    height: 10vh;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
    position: absolute;
    top: 25%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.room-info{
    grid-area: page-chatroom-info;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
    "buttons buttons buttons"
    "thumb nick years"
    "thumb body dick"
    "thumb language location"
    "bio bio bio";
    color: #fff;
    background: #0a0b20;
    padding: 5px;
    padding-top: 0;
    grid-gap: 2px;
    font-size: 13px;
    margin-bottom: 15px;
}

.room-buttons{
    grid-area: buttons;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2px;
    background: #0a0b20;
}

.room-btn{
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    background: #d146a0;
    background: -moz-linear-gradient(top, #d74690 0%, #9f148e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d74690), color-stop(100%,#9f148e ));
    background: -webkit-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -o-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: -ms-linear-gradient(top, #d74690 0%,#9f148e 100%);
    background: linear-gradient(top, #d74690 0%,#9f148e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d74690', endColorstr='#9f148e',GradientType=0 );
}

.room-thumb{
    grid-area: thumb;
    background: #b73e8f;
    position: relative;
}

.profile-pic{
    width: 100%;
    height: 100%;
    border: 1px solid #b73e8f;
}

.overlay-name{
    position: absolute;
    bottom: 0;
    padding: 5px 0;
    color: #fff;
    text-align: center;
    background: rgba(183, 62, 143, 0.5);
    width: 100%;
}

.logo-room img{
    position: absolute;
    top: 1%;
    left: 1%;
    width: 25%;
}

.model-nick{
    grid-area: nick;
    display: grid;
    align-items: center;
    background: #b73e8f;
    padding: 5px;
}

.model-years{
    grid-area: years;
    display: grid;
    align-items: center;
    background: #b73e8f;
    padding: 5px;
}

.model-dick{
    grid-area: dick;
    display: grid;
    align-items: center;
    background: #b73e8f;
    padding: 5px;
}

.model-body{
    grid-area: body;
    display: grid;
    align-items: center;
    background: #b73e8f;
    padding: 5px;
}

.model-language{
    grid-area: language;
    display: grid;
    align-items: center;
    background: #b73e8f;
    padding: 5px;
}

.model-location{
    grid-area: location;
    display: grid;
    align-items: center;
    background: #b73e8f;
    padding: 5px;
}

.model-bio{
    grid-area: bio;
    display: grid;
    align-items: center;
    background: #b73e8f;
    padding: 5px;
}

.shemale-bio{
    padding: 3px;
}

.shemale-bio-actual{
    padding: 3px;
}


/* Media Query */

@media screen and (min-width: 420px) {
    .sidebar {
        grid-template-columns: 1fr 1fr;
    }
    .shemale-model{
        display: none;
    }
    .about-wrap{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .aboutUs-middle{
        display: none;
    }
    .aboutUs-inside{
        border: none;
    }
    .menu-grid{
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
        "pages boxright"
        "pages boxright"
        "menufooter menufooter";
        grid-template-rows: auto;
    }
}

@media screen and (min-width: 568px){
    .models {
        grid-template-columns: repeat(3, 1fr);
    }
    .room-info{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 768px) {
    .models {
        grid-template-columns: repeat(4, 1fr);
    }
    .site-logo{
        padding: 0 5px;
    }
    .logo {
        width: 100%;
        height: auto!important;
    }
    .header-inside{
        display: grid;
        grid-template-columns: 150px 1fr;
    }
    .header-content{
        display: grid;
        align-items: center;
        padding-right: 5px;
    }
    .room-info{
        font-size: 15px;
    }
    .menu-btn{
        font-size: 15px;
        padding: 8px 10px;
    }
    .search-btn{
        font-size: 15px;
        padding: 8px 10px;
    }
    .title{
        font-size: 15px;
    }
    .title_room{
        font-size: 15px;
    }
    .shemale-bio{
        padding: 5px;
    }

    .shemale-bio-actual{
        padding: 5px;
    }
    .model-grid-info{
        font-size: 12px;
    }
    .model-name{
        padding: 5px;
    }
    .model-age{
        padding: 5px;
    }
    .model-cock{
        padding: 5px;
    }
    .overlay-name{
        padding: 10px 0;
    }
    .dropdown .menu-content h1{
        padding: 10px 12px;
        font-size: 15px;
    }
    .dropdown .menu-content li{
        padding: 10px 12px;
    }
    .dropdown .menu-content li a{
        font-size: 15px;
    }
    .banner-text1{
        font-size: 15px;
    }
    .banner-text2{
        font-size: 15px;
    }
    h2{
        padding: 10px 12px;
        font-size: 15px;
    }
    h3{
        padding: 10px 0;
    }
    .filter-options a{
        padding: 10px 12px;
        font-size: 15px; 
    }
    .menu-footer p{
        font-size: 15px; 
    }
    .sites ul li{
        padding: 10px 12px;
    }
    .sites ul li a{
        font-size: 15px;
    }
    .shemale-pic-text{
        padding: 10px;
    }
    .footer-inside{
        padding: 10px;
    }
    .footer-copyright{
        padding: 10px;
    }
    .aboutUs-inside{
        padding: 15px;
        line-height: 1.3;
    }
    .page-not-found {
        padding: 10px;
    }
    .menu-box{
        display: none;
    }
    .filters {
        display: flex;
        align-items: center;
    }
    .sidebar {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .shemale-model{
        display: block;
    }
    .room-info{
        grid-template-columns: 0.75fr 1fr 1fr;
    }
    .shemale-404 {
        width: 700px;
    }
}

@media screen and (min-width: 1024px) {
    .models {
        grid-template-columns: repeat(5, 1fr);
    }
    .home-page{
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
        "page-content page-content page-content"
        "page-paging page-paging page-paging"
        "page-sidebar page-aboutUs page-aboutUs"
        "page-sidebar page-aboutUs page-aboutUs";
    }
    .sidebar {
        grid-template-columns: 1fr;
    }
    .about-wrap {
        grid-template-columns: 1fr;
    }
    .room-info{
        grid-template-columns: 0.5fr 1fr 1fr;
    }
    .header-inside {
        grid-template-columns: 200px 1fr;
    }
}

@media screen and (min-width: 1280px) {
    .models {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media screen and (min-width: 1440px) {
    .aboutUs-inside {
        line-height: 2;
    }
}

@media screen and (min-width: 1520px) {
    .models {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media screen and (min-width: 1920px) {
    .models {
        grid-template-columns: repeat(8, 1fr);
    }
    .room-info{
        grid-template-columns: 0.25fr 1fr 1fr;
    }
}

@media screen and (min-width: 2250px) {
    .models {
        grid-template-columns: repeat(9, 1fr);
    }
}

@media screen and (min-width: 2560px) {
    .models {
        grid-template-columns: repeat(10, 1fr);
    }
    .home-page {
        grid-template-columns: 1fr 1fr 1fr 0.3fr;
        grid-template-areas:
            "page-content page-content page-content page-sidebar"
            "page-content page-content page-content page-sidebar"
            "page-paging page-paging page-paging page-sidebar"
            "page-aboutUs page-aboutUs page-aboutUs page-aboutUs";
    }
    .sidebar {
        align-self: flex-start;
    }
    .room-info{
        grid-template-columns: 0.20fr 1fr 1fr;
    }
    .header-inside {
        grid-template-columns: 250px 1fr;
    }
}
