
/*LARGE ANIMATED GRID - 3-Columns*/

/* Hide the grid container by default */
.larger-animated-grid-container {
    display: none;
}

/* Show only the single image at max-width 768px */
.single-image {
    display: block;
    display: block;
	width: 70%;
	margin: 170px auto 70px auto;
}

/* Media query for larger screens (min-width 768px) */
@media (min-width: 768px) {

    .larger-animated-grid-container {
       width: calc(79% + .05vw);   
max-width: calc(1200px + 5vw);
height: auto;           
margin: auto;        
display: grid;
grid-template-columns: repeat(3, 1fr); 
grid-template-rows: repeat(1, 1fr);    
grid-column-gap: 7vw; 
grid-row-gap: 5vw; 
padding-top: calc(170px + 3vw);
padding-bottom: calc(50px + 5vw);
    }

    /* Hide the single image at larger sizes */
    .single-image {
        display: none;
    }
}

.larger-animated-grid-item {
    animation: grid-item-appear 1.8s ease forwards;
	   position: relative;
    display: inline-block;
}

@media only screen and (max-width: 768px) {	
.larger-animated-grid-item {
	padding: 23px;
    animation: grid-item-appear 1.8s ease forwards;
	   position: relative;
    display: inline-block;
}

}

.larger-animated-grid-item img {
    display: block;
	height: auto;
    width: 100%;
}

.larger-animated-grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    color: #ffffff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: calc(13px + .2vw);
	letter-spacing: 5px;
	font-weight: 100;
    text-align: center;
	
    transition: opacity 0.3s ease;
}

.larger-animated-grid-item:hover .overlay {
    opacity: 0.7;
}

@keyframes grid-item-appear {
    0% {
        opacity: 0;
        transform: translateX(-95%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    0% {
        opacity: 0;
        transform: translateY(-.5%);
    }
	
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.larger-animated-grid-item:nth-child(1) {
    animation-delay: 0.2s;
}

.larger-animated-grid-item:nth-child(2) {
    animation-delay: 0.4s;
}

.larger-animated-grid-item:nth-child(3) {
    animation-delay: 0.6s;
}

.larger-animated-grid-item:nth-child(4) {
    animation-delay: 0.8s;
}

.larger-animated-grid-item:nth-child(5) {
    animation-delay: 1s;
}

.larger-animated-grid-item:nth-child(6) {
    animation-delay: 1.2s;
}

.larger-animated-grid-item:nth-child(7) {
    animation-delay: 1.4s;
}

.larger-animated-grid-item:nth-child(8) {
    animation-delay: 1.6s;
}

.larger-animated-grid-item:nth-child(9) {
    animation-delay: 1.8s;
}

/*END - LARGE ANIMATED GRID - 3-Columns*/



/*LARGE ANIMATED GRID - 2-Columns*/

/* Hide the grid container by default */
.larger-animated-grid-container-2 {
    display: none;
}

/* Show only the single image at max-width 768px */
.single-image {
    display: block;
    display: block;
	width: 70%;
	margin: 170px auto 70px auto;
}

/* Media query for larger screens (min-width 768px) */
@media (min-width: 768px) {

    .larger-animated-grid-container-2 {
       width: calc(79% + .05vw);   
max-width: calc(1200px + 5vw);
height: auto;           
margin: auto;        
display: grid;
grid-template-columns: repeat(2, 1fr); 
grid-template-rows: repeat(1, 1fr);    
grid-column-gap: 7vw; 
grid-row-gap: 5vw; 
padding-top: calc(170px + 3vw);
padding-bottom: calc(50px + 5vw);
    }

    /* Hide the single image at larger sizes */
    .single-image {
        display: none;
    }
}

.larger-animated-grid-item-2 {
    animation: grid-item-appear 1.8s ease forwards;
	   position: relative;
    display: inline-block;
}

@media only screen and (max-width: 768px) {	
.larger-animated-grid-item-2 {
	padding: 23px;
    animation: grid-item-appear 1.8s ease forwards;
	   position: relative;
    display: inline-block;
}

}

.larger-animated-grid-item-2 img {
    display: block;
	height: auto;
    width: 100%;
}

.larger-animated-grid-item-2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    color: #ffffff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: calc(13px + .2vw);
	letter-spacing: 5px;
	font-weight: 100;
    text-align: center;
	
    transition: opacity 0.3s ease;
}

.larger-animated-grid-item-2:hover .overlay {
    opacity: 0.7;
}

@keyframes grid-item-appear {
    0% {
        opacity: 0;
        transform: translateX(-95%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    0% {
        opacity: 0;
        transform: translateY(-.5%);
    }
	
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.larger-animated-grid-item-2:nth-child(1) {
    animation-delay: 0.2s;
}

.larger-animated-grid-item-2:nth-child(2) {
    animation-delay: 0.4s;
}

.larger-animated-grid-item-2:nth-child(3) {
    animation-delay: 0.6s;
}

.larger-animated-grid-item-2:nth-child(4) {
    animation-delay: 0.8s;
}

.larger-animated-grid-item-2:nth-child(5) {
    animation-delay: 1s;
}

.larger-animated-grid-item-2:nth-child(6) {
    animation-delay: 1.2s;
}

.larger-animated-grid-item-2:nth-child(7) {
    animation-delay: 1.4s;
}

.larger-animated-grid-item-2:nth-child(8) {
    animation-delay: 1.6s;
}

.larger-animated-grid-item-2:nth-child(9) {
    animation-delay: 1.8s;
}

/*END - LARGE ANIMATED GRID - 2-Columns*/

/*ANIMATED GRID - 3 columns*/
.animated-grid-container {
padding-top: calc(29px + 3vw); 
width: calc(79% + .5vw);   
max-width: calc(1200px + 5vw);
height: auto;           
margin: auto;        
display: grid;
    grid-template-columns: repeat(3, 1fr);  
    grid-column-gap: 5vw; 
	   grid-row-gap: 4vw; 
	padding-bottom: calc(27px + 4vw);
}

@media only screen and (max-width: 900px) {	
    .animated-grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
		grid-row-gap: 7vw; 
        grid-column-gap: 7vw; 
		margin: auto;
    }
}

@media only screen and (max-width: 768px) {	
    .animated-grid-container {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
		grid-row-gap: 1vw; 
		margin: auto;
    }
}
	
.shop-grid-container {
width: calc(79% + .5vw);   
max-width: calc(1200px + 5vw);
height: auto;           
margin: auto;        
display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(1, 1fr);    
    grid-column-gap: 5vw; 
	   grid-row-gap: 4vw; 
	padding-bottom: calc(12px + 1vw);
}


@media only screen and (max-width: 599px) {	
    .shop-grid-container {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
		grid-row-gap: 1vw; 
		margin: auto;
    }
}
	

.animated-grid-item {
    animation: grid-item-appear 1.8s ease forwards;
}

@keyframes grid-item-appear {
    0% {
        opacity: 0;
        transform: translateX(-95%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    0% {
        opacity: 0;
        transform: translateY(-.5%);
    }
	
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.animated-grid-item:nth-child(1) {
    animation-delay: 0.2s;
}

.animated-grid-item:nth-child(2) {
    animation-delay: 0.4s;
}

.animated-grid-item:nth-child(3) {
    animation-delay: 0.6s;
}

.animated-grid-item:nth-child(4) {
    animation-delay: 0.8s;
}

.animated-grid-item:nth-child(5) {
    animation-delay: 1s;
}

.animated-grid-item:nth-child(6) {
    animation-delay: 1.2s;
}

.animated-grid-item:nth-child(7) {
    animation-delay: 1.4s;
}

.animated-grid-item:nth-child(8) {
    animation-delay: 1.6s;
}

.animated-grid-item:nth-child(9) {
    animation-delay: 1.8s;
}


/*END - ANIMATED GRID - 3 columns*/


/*ANIMATED GRID - 2 columns*/
.animated-grid-container-2 {
padding-top: calc(29px + 3vw); 
width: calc(79% + .5vw);   
max-width: calc(1200px + 5vw);
height: auto;           
margin: auto;        
display: grid;
    grid-template-columns: repeat(2, 1fr);  
    grid-column-gap: 5vw; 
	   grid-row-gap: 4vw; 
	padding-bottom: calc(27px + 4vw);
}


@media only screen and (max-width: 599px) {	
    .animated-grid-container-2 {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
		grid-row-gap: 1vw; 
		margin: auto;
    }
}
	


.animated-grid-item-2 {
    animation: grid-item-appear 1.8s ease forwards;
}

@keyframes grid-item-appear {
    0% {
        opacity: 0;
        transform: translateX(-95%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    0% {
        opacity: 0;
        transform: translateY(-.5%);
    }
	
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.animated-grid-item-2:nth-child(1) {
    animation-delay: 0.2s;
}

.animated-grid-item-2:nth-child(2) {
    animation-delay: 0.4s;
}

.animated-grid-item-2:nth-child(3) {
    animation-delay: 0.6s;
}

.animated-grid-item-2:nth-child(4) {
    animation-delay: 0.8s;
}

.animated-grid-item-2:nth-child(5) {
    animation-delay: 1s;
}

.animated-grid-item-2:nth-child(6) {
    animation-delay: 1.2s;
}

.animated-grid-item-2:nth-child(7) {
    animation-delay: 1.4s;
}

.animated-grid-item-2:nth-child(8) {
    animation-delay: 1.6s;
}

.animated-grid-item-2:nth-child(9) {
    animation-delay: 1.8s;
}


/*END - ANIMATED GRID - 3 columns*/

/*footer*/  

.footer-section {
  text-align: left;
font-family: 'Poppins', sans-serif;
font-color: #000;
font-size: calc(10px + .1vw);
line-height: calc(19px + .3vw);
color: #999;
letter-spacing: 1px;
}

.grid-container {
  display: grid;
   grid-template-columns: calc(20% + 5px) calc(47% - 20px) calc(30% + 10px);
  gap: 10px;
  background-color: #F4F3F0;
  padding: 20px;
}

.grid-container > div {
background-color: #F4F3F0;
padding: 20px 42px 0px 42px;
}

@media screen and (max-width: 924px){
.grid-container {
  grid-template-columns: auto;
}
}

@media screen and (max-width: 599px){	
.grid-container {
padding: 9px;
}
	
}

form {
}

.container {
  padding: 34px 47px 19px 47px;
  background-color: #fff;
font-size: calc(10px + .1vw);
line-height: calc(19px + .3vw);
  text-align: left;
font-family: 'Poppins', sans-serif;
font-color: #777;
color: #000;
letter-spacing: 2px;
}



.socialmedia {
display: block;
text-align: center;
margin-right: auto;
margin-left: auto;
}

.subscribe {
 font-size: calc(13px + .5vw);
line-height: calc(23px + .5vw);
text-align: left;
font-family: Oswald, sans-serif;
color: #777;
font-weight: 100;
letter-spacing: 5px;
}


input[type=text], input[type=submit] {
  width: 100%;
  padding: 9px;
  margin: 9px 0;
  display: inline-block;
  border: 1px solid #777;
  box-sizing: border-box;
text-transform: uppercase;
letter-spacing: 2px;
 font-size: calc(9px + .2vw);
}

input[type=checkbox] {
  margin-top: 16px;
}

input[type=submit] {
max-width: 200px;
  background-color: #F4F3F0;
  color: #777;
text-transform: uppercase;
	letter-spacing: 5px;
	border-radius: 5px;
  border: none;
}

input[type=submit]:hover {
  opacity: 0.5;
}



.SHOP {
text-align: left;
font-family: Oswald, sans-serif;
font-color: #999;
 font-size: calc(21px + .5vw);
line-height: calc(21px + .5vw);
font-weight: 400;
color: #777;
letter-spacing: 5px;
margin: 12px 0px 34px -7px;
padding-bottom: 33px;
border-bottom: 2px solid white;
}

.TOTALVIEW{
margin-left: -9px;
padding-bottom: 39px;
border-bottom: 2px solid white;
width: 70%;
}
@media (max-width: 1024px) {
.TOTALVIEW{
margin: 20px auto;
padding: 34px 20px;
text-align: center;
width: 79%;
border-bottom: none;
}
}

.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: calc(32px + .1vw);
height: calc(32px + .1vw);
color: #777;
font-size: calc(12.9px + .1vw);
border-radius: 12px;
border: 1px solid #777;
margin: 21px 0px;
}

/* footer social icons */

.socialicons_2columns { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
 grid-column-gap: 40px;
grid-row-gap: 10px;
animation: fade-in 1.2s linear 0s 1 normal none;
z-index: 1px;
	}

@media (max-width: 924px) {
.socialicons_2columns { 	
 display: grid; 
  grid-template-columns: 1fr 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
 grid-column-gap: 20px;
grid-row-gap: 10px;
animation: fade-in 1.2s linear 0s 1 normal none;
z-index: 1px;
	}
}
.bottomlinks {
margin-top: calc(9px + .02vw);
letter-spacing: 3px;
font-family: 'Poppins', sans-serif;
font-size: calc(10px + .1vw);
line-height: calc(19px + .3vw);
font-color: #777;
align-items: left;
}

/*end of footer*/ 
