@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

body{
	line-height: 1.5;
	font-family: montserrat;
	font-weight: 400;
}
body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
	padding: 0;
}

.container{
	/*
	max-width: 1170px;
	margin: 0px auto;
	*/
	
	max-width: 1224px;
	width: 90%;
	margin: auto;
	padding: 10px 0;
	
}


ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.header{
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 15px;
}
.header-main{
	background: rgba(0, 0, 0, 0.5); 
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
}
.header .logo{
	padding: 0 15px;
}

/*
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
*/


.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: goldenrod;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: goldenrod;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: deepskyblue;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: deepskyblue;
}

.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background: rgba(0, 0, 0, 0.5); 
	padding: 10px 0;
	border-top: 3px solid deepskyblue;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: goldenrod;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: goldenrod;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: goldenrod;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 18px;
	width: 18px;
	background-color: #000000;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 18px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}



/* Box Section */

.box {
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}



.box video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}



.box a.boxBtn {
	padding: 15px 35px;
	background: transparent;
	border-radius: 50px;
	color: #fff;
	text-transform: uppercase;
	border: 4px solid #fff;
	transition: all .5s;
	text-shadow: 1px 1px #000000;
}
.box a.boxBtn:hover {
	background-color:goldenrod;
	color: #000;
}

/* footer  */

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);  
  color: goldenrod;
  text-align: center;
font-family: montserrat;
	padding: 40px 40px;
	/* border-top-style: dotted;
	border-top-color: goldenrod; */
}



.welcome-text {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


.welcome-text h2 {
	font-size: 60px;
	margin: 0;
	font-family: Berkshire Swash;
	color: #cc9933;
	text-shadow: 2px 2px 8px #000000;
}
.welcome-text p {
	color: #cc9933;
	font-size: 20px;
	width: 80%;
	line-height: 1.8;
	margin: auto;
	text-shadow: 2px 2px 8px #000000;
	font-family: montserrat;
}


/* EVA ADDED */

.available-text {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 5%;
	left: 50%;
	transform: translate(-50%, -50%);	
}

.available-text p {
	color: #f4cd7e;
	font-size: 20px;
	width: 80%;
	line-height: 1.8;
	margin: auto;
	text-shadow: 2px 2px #000000;
	font-family: montserrat;
}



.aboutus-text {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);	
}

.aboutus-text h2 {
	font-size: 30px;
	margin: 0;
	font-family: Berkshire Swash;
	color: #cc9933;
	text-shadow: 2px 2px #000000;
}

.aboutus-text p {
	color: #f4cd7e;
	font-size: 20px;
	width: 80%;
	line-height: 1.8;
	margin: auto;
	text-shadow: 2px 2px #000000;
	font-family: montserrat;
	text-align: left;
}




.welcome-textCats {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 1%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.welcome-textCats h2 {
	font-size: 60px;
	margin: 0;
	font-family: Berkshire Swash;
	color: #cc9933;
	text-shadow: 2px 2px 8px #000000;
	backdrop-filter: 3;
}
.welcome-textCats p {
	color: #f4cd7e;
	font-size: 20px;
	width: 80%;
	line-height: 1.8;
	margin: auto;
	text-shadow: 2px 2px #000000;
}

/* EVA ADDED  ENDS */


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background: rgba(0, 0, 0, 0.7); 
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: goldenrod;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: goldenrod;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: deepskyblue;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}



/* EVA ADDED */

/*banner area*/

section {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 60px 50px;
	color: #000;
}
@media (max-width:1000px) {
	section {
		padding: 100px 50px;
	}
}
@media (max-width:600px) {
	section {
		padding: 125px 30px;
	}
}
section p {
	max-width: 800px;
	text-align: center;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 2;
}
.banner-area {
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.banner-area .banner-imgEvita {
	background-image: url('../images/queens/Evita/EvitaBW.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center left;
}
.banner-area .banner-imgEvita::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}


.banner-area .banner-imgOlivia {
	background-image: url('../images/queens/Olivia/OlikaBW.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center left;
}
.banner-area .banner-imgOlivia::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}

.banner-area .banner-imgZendy {
	background-image: url('../images/queens/Zendy/ZendayaBW.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center right;
}
.banner-area .banner-imgZendy::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}

.banner-area .banner-imgHallelujah {
	background-image: url('../images/queens/Hallelujah/HallelujahBW.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center right;
}
.banner-area .banner-imgHallelujah::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}

.banner-area .banner-imgCoccolino {
	background-image: url('../images/studs/Coccolino/CoccolinoBW.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center center;
}
.banner-area .banner-imgCoccolino::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}

.banner-area .banner-imgValentino {
	background-image: url('../images/studs/Valentino/ValentinoBW.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center left;
}
.banner-area .banner-imgValentino::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}


.banner-area .banner-imgAboutUs {
	background-image: url('../images/rainbow.png');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center center;
}
.banner-area .banner-imgAboutUs::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}

.banner-area .banner-imgCatArt {
	background-image: url('../images/CatArtDashaA.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: right right;
}
.banner-area .banner-imgCatArt::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}

.banner-area .banner-imgAvailableKittens {
	background-image: url('../images/kittens.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center center;
}
.banner-area .banner-imgAvailableKittens::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}




/* EVA - ORIGINAL CODE /*
.banner-area .banner-img {
	background-image: url('../images/Evita/EvitaBW.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: center left;
}
.banner-area .banner-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .05;
}


*/



.banner-area h1 {
	margin-bottom: 15px;
	font-size: 65px;
	text-transform: uppercase;
}
.banner-area h1 span {
	color: #bf0a30;
}
.banner-area h3 {
	font-size: 25px;
	font-weight: 100;
	text-transform: uppercase;
}
.banner-area a.banner-btn {
	padding: 15px 35px;
	background: #bf0a30;
	text-transform: uppercase;
}
@media (max-width:800px) {
	.banner-area {
		min-height: 600px;
	}
	.banner-area h1 {
		font-size: 27px;
	}
	.banner-area h3 {
		font-size: 20px;
	}
	.banner-area a.banner-btn {
		padding: 8px 20px;
	}
}

/*about area*/

/*
ul.about-content {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.about-content li {
	padding: 20px;
	height: 500px;
	background-clip: content-box;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}



.about-right {
	flex-basis: 70%;  
}

.about-right h2 {

	color: #f4cd7e;
	flex-basis: 70%;
}



.about-left {
	flex-basis: 30%;
	background-image:  url('../images/AboutPhoto01.jpg');
	border: dotted #DAA520;
}



.about-left h2 {
	font-size: 35px;
	color: #f4cd7e;
}



.about-leftAboutUs01 {
	flex-basis: 30%;
	background-image: url('../images/AboutPhoto02.jpg'); 
	border: dotted #DAA520;
}

.about-leftAboutUs02 {
	flex-basis: 30%;
	background-image: url('../images/AboutPhoto02.jpg'); 
	border:thin solid #DAA520;
}



.about-leftEvita {
	flex-basis: 30%;
	background-image: url('../images/queens/Evita/Evitanails.jpg'); 
	border: dotted #DAA520;
}

.about-leftOlivia {
	flex-basis: 30%;
	background-image: url('../images/queens/Olivia/OliviaDetails.jpg');
	border: dotted #DAA520;
	
}

.about-leftZendy {
	flex-basis: 30%;
	background-image: url('../images/queens/Zendy/ZendyIntro.jpg');
	border: dotted #DAA520;
}

.about-leftHallelujah {
	flex-basis: 30%;
	background-image: url('../images/queens/Hallelujah/HallelujahDetails.jpg');
	border: dotted #DAA520;
}

.about-leftCoccolino {
	flex-basis: 30%;
	background-image: url('../images/studs/Coccolino/CoccolinoDetails.jpg');
	border: dotted #DAA520;
}

.about-leftValentino {
	flex-basis: 30%;
	background-image: url('../images/studs/Valentino/ValentinoDetails.jpg');
	border: dotted #DAA520;
}

.about-leftDasha {
	flex-basis: 30%;
	background-image: url('../images/DashaInterview.jpg');
	border: dotted #DAA520;
}

.about-leftKitten01 {
	flex-basis: 30%;
	background-image: url('../images/available/kitte01/kitten01.jpg');
	border: dotted #DAA520;
}

.about-leftKitten02 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten02/kitten02.jpg');
	border: dotted #DAA520;
}

.about-leftKitten03 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten03/kitten03.jpg');
	border: dotted #DAA520;
}

.about-leftKitten04 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten04/kitten04.jpg');
	border: dotted #DAA520;
}

.about-leftKitten05 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten05/kitten05.jpg');
	border: dotted #DAA520;
}

.about-leftKitten06 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten06/kitten06.jpg');
	border: dotted #DAA520;
}

.about-leftContact {
	flex-basis: 30%;
	background-image: url('../images/AboutPhoto01.jpg');
	border: dotted #DAA520;
}


.about-area p {
	margin-bottom: 35px;  
	color: goldenrod;
	line-height: 1.5;
	text-align: left;
	padding-left: 8px;
}






.section-title {
	text-transform: uppercase;
	font-size: 50px;
	margin-bottom: 5%;
	color: goldenrod;
}
.section-title span {
	color: #bf0a30;
}




.about-btn {
	padding: 15px 35px;
	background: #bf0a30;
	border-radius: 50px;
	text-transform: uppercase;
	color: #fff;
}
@media (max-width: 1000px) {
	.section-title {
		font-size: 35px;
	}

	.about-leftEvita, .about-leftOlivia, .about-leftZendy, .about-leftHallelujah, .about-leftCoccolino, .about-leftValentino, .about-right, .about-leftContact, .about-leftAboutUs01, .about-leftAboutUs02, .about-left, .about-leftDasha, .about-leftKitten01, .about-leftKitten02, .about-leftKitten03, .about-leftKitten04, .about-leftKitten05, .about-leftKitten06 

	{
		flex-basis: 100%;
	}
	
	.about-content li {
		padding:8px;
	}
}

*/


/*about area*/

ul.about-content {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.about-content li {
	padding: 20px;
	height: 500px;
	background-clip: content-box;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
.about-left {
	flex-basis: 30%;
	background-image: url("../images/AboutPhoto01_small.jpg");
}
.about-right {
	flex-basis: 70%;
}

.about-rightAvailable {
	flex-basis: 100%;
}
.about-right h2 {
	font-size: 35px;
}
.about-area p {
	max-width: 800px;
	margin-bottom: 35px;
	line-height: 1.5;
	text-align: left;
	padding-left: 0;
	color: goldenrod;
}
.section-title {
	text-transform: uppercase;
	font-size: 50px;
	margin-bottom: 5%;
}
.section-title span {
	color: #bf0a30;
}
.about-right h2 {
	margin-bottom: 3%;
}

.about-leftDasha {
	flex-basis: 30%;
	background-image: url('../images/DashaInterview.jpg');
	border: dotted #DAA520;
}

.about-leftEvita {
	flex-basis: 30%;
	background-image: url('../images/queens/Evita/Evitanails.jpg'); 
	border: dotted #DAA520;
}

.about-leftOlivia {
	flex-basis: 30%;
	background-image: url('../images/queens/Olivia/OliviaDetails.jpg');
	border: dotted #DAA520;
	
}

.about-leftZendy {
	flex-basis: 30%;
	background-image: url('../images/queens/Zendy/ZendyIntro.jpg');
	border: dotted #DAA520;
}

.about-leftHallelujah {
	flex-basis: 30%;
	background-image: url('../images/queens/Hallelujah/HallelujahDetails.jpg');
	border: dotted #DAA520;
}

.about-leftCoccolino {
	flex-basis: 30%;
	background-image: url('../images/studs/Coccolino/CoccolinoDetails.jpg');
	border: dotted #DAA520;
}

.about-leftValentino {
	flex-basis: 30%;
	background-image: url('../images/studs/Valentino/ValentinoDetails.jpg');
	border: dotted #DAA520;
}


.about-leftKitten01 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten01/kitten01.jpg');
	border: dotted #DAA520;
}

.about-leftKitten02 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten02/kitten02.jpg');
	border: dotted #DAA520;
}

.about-leftKitten03 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten03/kitten03.jpg');
	border: dotted #DAA520;
}

.about-leftKitten04 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten04/kitten04.jpg');
	border: dotted #DAA520;
}

.about-leftKitten05 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten05/kitten05.jpg');
	border: dotted #DAA520;
}

.about-leftKitten06 {
	flex-basis: 30%;
	background-image: url('../images/available/kitten06/kitten06.jpg');
	border: dotted #DAA520;
}


.about-btn {
	padding: 15px 35px;
	background: #bf0a30;
	border-radius: 50px;
	text-transform: uppercase;
	color: #fff;
}
@media (max-width: 1000px) {
	.section-title {
		font-size: 35px;
	}
	.about-left, .about-right, .about-leftDasha, .about-leftEvita, .about-leftOlivia, .about-leftZendy, .about-leftHallelujah, .about-leftCoccolino, .about-leftValentino, .about-leftKitten02, .about-leftKitten03, .about-leftKitten04, .about-leftKitten05, .about-leftKitten06, .about-leftKitten01
	{
		flex-basis: 100%;
	}
	.about-content li {
		padding: 8px;
	}
}





/* EVA */

.title{
		margin-bottom: 2rem;	
}

.photo-gallery{
	display: flex;
	gap: 20px;
}

.column{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.photo img{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	object-fit: cover;
}

@media(max-width:768px){
	.photo-gallery{
		flex-direction: column;
	}
}






/* DOCUMENTATION FOR FUTURE ADDITIONS */

/*
When new cat is being added/removed,  code must be added/removed at the following locations:

1) .banner-area .banner-imgEvita
2) .about-leftEvita
*/

