/* Box Model Hack */
* {
     box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

body {
     background: #32303e;
     font-family: 'Dancing Script','Great Vibes','cursive','Roboto', sans-serif;
     
}


/******************************************
/* LAYOUT
/*******************************************/

.header {
     display: flex;
     align-items: center;
     justify-content: space-around;
     
         
}

.itemNav ul li {
     display: inline flex;
     list-style: none;
     position: relative;
     margin-top: 10px;
     font-family: Arial, Helvetica, sans-serif;
     
}

.itemNav ul li a{
     text-decoration: none;
     color: rgb(181,141,65);
     text-transform: uppercase;
     padding: 20px;
}

.itemNav ul li ::after {
     content: '';
     height: 3px;
     width: 0;
     background: #aaa9ad;
     position:absolute;
     left: 0;
     bottom: -2px;
     transition: 0.5s;
     
}

.itemNav ul li :hover::after {
     width: 100%;
}

#main{    
     background-color: #2b2a34;
} 

.name{
     width: 100%;
     display: flex;
     color: #d4af37;
     text-align: center;
     font-size: 1.6rem;
     justify-content: center;
}
.mainSub{
     display: flex;
     justify-content: flex-start;
}

.description{
     text-align: center;
     color: #d4af37;
     font-size: 20px;
     width: 40%;
     padding: .6rem;
     
}


.logo{
     display: flex;
     height: 12rem;
     padding-left: 3.8rem;
     position: relative;
}


.ImgSlider{
     display: flex;
     align-items: center;
     justify-content: flex-end;
     background-color: #2b2a34;
     
     
    
}

.swiper{
     
     width: 80%;
     height: 400px;
     margin: 10px 0;
     border-radius: 10px;
}


.swiper-slide img {
     /* height: fit-content;
     width: 100%; */
     display: block;
     margin-left: auto;
     margin-right: auto;
     width: 50%;
     
}
     
.swiper .swiper-button-prev, .swiper .swiper-button-next{
     color:#aaa9ad;

}
.swiper .swiper-pagination-bullet-active{
     background-color: #d4af37;
}



/******************************************
/* ADDITIONAL STYLES
/*******************************************/
/* icons */


#footer{
     height: 180px;   
}

#footer section{
     display: flex;
     justify-content: center;     
     
}

#footer img{
     height: 180px;
     width: 200px;
     
     
}

.icons ul{
     list-style: none;
     padding: 0;
     margin: 0;
     display:block ruby;
}

#footer a{
     
     color: #DBAC45;
     font-size: 50px;
     text-decoration: none;
     padding: 20px;
}



