/*
	Get and Set font styles
*/

@Font-Face
{
	font-family: Lora;
	src: url(Scripts/Styles/fonts/Lora-Regular.ttf);
}

@Font-Face
{
	font-family: MrsSaintDelafield;
	src: url(Scripts/Styles/fonts/MrsSaintDelafield-Regular.ttf);
}

@Font-Face
{
	font-family: Playfair Display;
	src: url(Scripts/Styles/fonts/PlayfairDisplay-Regular.ttf);
}

body
{
	min-width: 300px;
}


/*	Div with social icons and links	*/

.socials
{
	background-color: #6b6977;
    width: 100%;
    height: 42px;
    display: inline-block;
}

.socials i
{
    color: #f0f5f1;
    float: left;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 18px;
    margin-bottom: 10px;
}

.socials i:hover
{
	color: #ffffff;
}

.socialscontent
{
	margin-left: 40px;
    height: 42px;
    width: auto;
}



/*	Navbar	*/

/* Change this breakpoint if you change the breakpoint of the navbar */

@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform:translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.navbar navbar-expand-lg navbar-light bg-light
{
	float: left;
    width: 50%;
}

.fiorelogo:hover
{
	opacity: 80%;
}

 /* Navbar container */
.navbarcontent 
{
  background-color: white;
  width: 100%;
}

/* Links inside the navbar */
.navbarcontent a 
{
  float: left;
  font-size: 16px;
  color: grey;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.fiorelogo
{
	max-width: 500px;
    max-height: auto;
    position: static;
    top: -200%;
    display: block;
  	margin-left: 10%;
 	margin-right: auto;
  	width: 50%;
    float: left;
}


/*	Right side of the nav with icons	*/

.rightcolumn
{
    float: right;
}

.rightcolumn a:hover
{
	color: black;
}

i
{
	list-style-type: none;
    font-size: 20px;
    color: rgba(0,0,0,.9);
    float: right;
}

.fa-svg {
    width: auto;
    height: 1.1rem;
    margin-bottom: 1rem;
}

/*
	Carousel with autozoom that slides from picture to picture	
*/

.carousel-fade .carousel-inner .item 
{
  opacity: 0;
  transition-property: opacity;
  overflow:hidden;
}

.item.active img 
{
    transition: transform 5000ms linear 0s;
    /* This should be based on your carousel setting. For bs, it should be 5second*/
    transform: scale(1.05, 1.05);
}

.carousel-fade .carousel-inner .active 
{
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right 
{
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right 
{
  opacity: 1;
}

.carousel-fade 
{
  z-index: 2;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

.img-responsive
{
	width: 100%;
}

ul
{
/*	list-style-type: none; */
}

/*	Button to go to store	*/

.btnStore
{
	background: rgba(209, 205, 205, 0.8);
    color: white;
    border-style: solid;
    border-width: 2px;
    border-color; white;
}


/*	Category pictures	*/

.StockPhotos
{
    transition: transform 500ms linear 0s;
    height: auto;
    width: 600px;
}

.StockPhotos:hover
{
	transform: scale(1.05, 1.05);
}

.StockPhotosAll img
{
	width: 100%;
}

#sPhoto1
{
	max-width: 600px;
    width: 100%;
    overflow: hidden;
}

#sPhoto2
{
	max-width: 600px;
    width: 100%;
    overflow: hidden;
}

#sPhoto3
{
	max-width: 600px;
    width: 100%;
    overflow: hidden;
}

#sPhoto4
{
	max-width: 600px;
    width: 100%;
    overflow: hidden;
}

.fCategory
{
	position: absolute;
    bottom: 20px;
    left: 40%;
    width: 100px;
    text-align: center;
    font-size: 16px;
    background-color: white;
    color: grey;
    box-shadow: 1px 1px 3px rgba(136,136,136,.19);
}


/*	About us container */
.containerAboutUs
{
	background-color: #6b6977;
    width: 100%;
//    height: 100px;
    color: white;
}

.contentAbousUs
{
    width: 25%;
    padding-left: 50px;
    padding-right: 50px;
}

.contentAboutUs i
{
	font-size: 40px;
}

.contentAboutUs p
{
	color: white;
}


/*	Div with white background to seperate content */
.containerSeperation
{
	width: 100%;
    background-color: white;
    heigth: 100px;
}


.categoryName
{
	color: rgba(37, 34, 34);
    text-decoration: none;
    text-align: left;
    font-size: 15px;
    font-family: Lora
    border-bottom: 1px solid rgba(0,0,0,.1);
	display: inline;
}

.categoryName:hover
{
	color: rgba(37, 34, 34);
    text-decoration: none;
}

.mDetailsBlog
{
	color: grey;
    text-decoration: none;
}

.mDetailsBlog:hover
{
	color: black;
    text-decoration: none;
}


#fBagsIntroText
{
	width: 60%;
    margin-left: 20%;
    font-family: 'Italian Didot';
}

.carouselButton:hover
{
	opacity: 80%;
}

.portfolio-item > img:hover
{
	opacity: 80%;
}

.btnCat:hover
{
	opacity: 80%;
}

.infoIcon > i
{
 	height: 100px;
}

.contentAboutUs
{
	padding: 10px;
}

/* Media Query Scaling  */

@media only screen and (max-width: 1600px)
{

.carouselBestseller, .carouselTitle
{
	font-size: 40px !important;
}

.carouselText , .carouselButton
{
	font-size: 17px !important;
}


}

@media only screen and (max-width: 1500px)
{

.carouselBestseller, .carouselTitle
{
	font-size: 46px !important;
}

.carouselText , .carouselButton
{
	font-size: 18px !important;
}
}

@media only screen and (max-width: 1380px)
{

.carousel-caption
{
	top: 30% !important;
}

}

@media only screen and (max-width: 1201px)
{

.contentAboutUs
{
	padding: 15px;
}

}


@media only screen and (max-width: 1190px)
{

.carousel-caption
{
	top: 20% !important;
}

}


@media only screen and (max-width: 1111px)
{

.contentAboutUs i
{
	font-size: 30px;
}

.contentAboutUs p
{
	font-size: 13px;
}
}

@media only screen and (max-width: 1080px)
{

.carouselText
{
	visibility: hidden;
    height: 0px;
}

.carousel-caption
{
	width: 40% !important;
}

}

@media only screen and (max-width: 926px)
{

.containerAboutUs
{
	height: 125px;
}

}


@media only screen and (max-width: 767px)
{

.containerAboutUs
{
	height: 200px;
}

.containerAboutUs > div > div
{
	width: 50%;
    height: 100px;
}

.infoIcon > i
{
 	height: 150px;
}

}

@media only screen and (max-width: 725px)
{

.carouselButton
{
	padding: 4px !important;
    font-size: 14px !important;
}

}

@media only screen and (max-width: 663px)
{
#fBagsIntroText
{
	width: 100%;
    margin-left: 0%;
}
}

@media only screen and (max-width: 549px)
{
.containerAboutUs > div > div
{
	width: 100%;
    height: 100px;
}

.containerAboutUs
{
	height: 375px;
}

.contentAboutUs
{
	padding: 0px;
}
}

@media only screen and (max-width: 475px)
{
.carousel-caption
{
	left: 5% !important;
}
}

@media only screen and (max-width: 350px)
{
.containerAboutUs
{
	height: 400px;
}
}