/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
 margin: 0;
 padding: 0; 
 box-sizing: border-box; 
 overflow-x: hidden;
}

body{
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);

}
:root{
    --light:#fff;
    --dark:#181b24;
    --grey:#899495;
    --red:#660000;
    --red2:#a80101;
    --SectionGrey:#f2f2f2;
    --SectionWhite:#fff;
    --pink:#fdf7f7;
    --black:#000;
    --gold:#ccae4c;
    --Yellow: #e0e405;
    --Yellowish: #e9e9d0;
    --btnblue:#3498db;
}

/* nav */
.nav{
    background: var(--black);
    }
    .nav__header{
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: .2rem solid var(--red2);
    }
    .nav__btn{
    padding-top: 1rem;
    font-size: 4rem;
    align-self: center;
    color: var(--SectionWhite);
    
    }
    .nav__links{
    list-style-type: none;
    background: transparent;
    }
    .nav__single-link{
        display: block;
        text-decoration: none;
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        text-transform: capitalize;
        color: var(--SectionWhite);
        transition: all 1s linear;
        font-weight: 300;
        
        
    
    }


    .nav__single-link::after{
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: var(--SectionWhite);
        transition: width .3s;
        }

    .nav__single-link:hover::after{
    width: 100%;
    transition: width .3s;
    color: var(--SectionWhite);
    }
    /* */
    .nav__links{
    height: 0;
    overflow: hidden; 
    transition: all .5s linear;
    
    }
    .show__links{
    height: 220px;
    /* old height 264/288*/
    }

    @media screen and (min-width:600px){
        /* 768px */
    
    .nav__single-link:hover::after{
        width: 30%;
        transition: width .3s;
        color: var(--SectionWhite);
        }
    }
    
    @media screen and (min-width:1150px){
    /* 768px */
    
    .nav{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 0.25rem solid var(--red);
    }
    
    .nav__header{
    border: none;
    }
    .nav__btn{
    display: none;
    }
    .nav__links{
      /* as a child */   
    background: transparent;
    height: auto;
    flex: 1 0 auto;
      /* as a parent */  
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-self: center;
    }
    .nav__single-link{
    background: transparent;
    flex: 1 0 100px; 
    }
    .nav__single-link:hover{
    padding-left: 1rem;
    color: var(--Yellow);
    
    }
    .nav__single-link:hover::after{
        width: 100%;
        transition: width .3s;
        color: var(--SectionWhite);
        }
    }
    
    

    
    
    
 



/* end of nav */



/* header
        .header{
            min-height: 100vh;
            display: flex;
            flex-direction: column;
}
*/

/*new slider*/


.home{
	position: relative;
	min-height: 50vh;
	flex-direction: column;
}

.slide{
	position: absolute;
	left:0;
	top: 0rem;
	width: 100%;
	height: 90%;
	background-size: cover;
	background-position: center;
	z-index:1; 
	display: none;
	padding: 0rem 1rem;
    animation: slide 2s ease;
    
}
.slide.active{
	display: flex;
}
@keyframes slide{
	0%{
		transform:scale(1.05);
	}
	100%{
		transform: scale(1);
	}
}
.container{
	max-width: 1170px;
	margin: auto;
	
}

.container{
	 flex-grow: 1;
}
.caption{
	width: 100%;
}
.caption h1{
/* as a flex child */
flex:1 0 auto;
/* as a parent  */
display: flex;
justify-content: left;
align-items: flex-end;
text-align: center;
padding-bottom: .5rem;
padding-left: 1rem;
font-weight: 700;
font-size: 3.5rem;
color: var(--red2);
	
}
.caption2 h1{
    /* as a flex child */
flex:1 0 auto;
/* as a parent  */
display: flex;
justify-content: left;
align-items: flex-end;
text-align: center;
padding-bottom: 17rem;
padding-left: 2rem;
font-weight: 500;
font-size: 3rem;
color: var(--SectionWhite);
}
.caption3 h1{
    /* as a flex child */
flex:1 0 auto;
/* as a parent  */
display: flex;
justify-content: left;
align-items: flex-end;
text-align: center;
padding-bottom: 17rem;
padding-left: 2rem;
font-weight: 400;
font-size: 3rem;
color: var(--red2); 
}
.slide.active .caption h1{
	opacity:0;
	animation: captionText .9s ease forwards;
	animation-delay: 2s;
}

.slide.active .caption2 h1{
	opacity:0;
	animation: captionText .9s ease forwards;
	animation-delay:1s;
}


.slide.active .caption2 h1{
	opacity:0;
	animation: captionText .9s ease forwards;
	animation-delay:1s;

}
.home .caption p{
	font-size: 18px;
	margin: 15px 0 30px;
	color: #222222;
}
.home .slide.active .caption p{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay: 1.2s;
}
.home .caption a{
	letter-spacing: 0.15rem;
	text-transform: capitalize;
	font-size: 1.5rem;
	color: var(--SectionWhite);
}

.home .slide.active .caption a{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.4s;
	margin-bottom: 1rem;
}

@keyframes captionText{
	0%{
		opacity:0; transform: translateX(-100px);
	}
	100%{
	 opacity:1; transform: translateX(0px);	
	}
}


/*responsive*/
@media(max-width: 767px){
	.controls{
		display: none;
	}
}

    /* End new slider*/


/* end of header*/



/* banner*/
.banner{
    /* as a flex child */
flex:1 0 auto;
    /* as a parent  */
display: flex;
justify-content: left;
align-items: flex-end;
color: var(--red2);
text-align: center;
padding-bottom: 27rem;
padding-left: 4rem;
font-weight: 700;
}
.banner__title{
font-size: 5rem;
letter-spacing: 0.15rem;
margin-bottom: 0.5rem;
font-style: italic;
text-transform: capitalize;
}
.banner__jobs{
letter-spacing: 0.15rem;
text-transform: capitalize;
font-size: 1.5rem;
color: var(--SectionWhite);
}


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

    .banner{
    padding-bottom: 2.2rem;
    padding-left: 1rem;
    }

}

.banner__title{
     font-size: 5rem;

        }
        .banner__jobs{
        font-size: 1.5rem;
        }
 
/* end of banner  */

/* about  */
.about{
padding: 2rem 0;
background: var(--black);
}
.about__center{
max-width: 90vw;
margin: 1rem auto;
}
.about-img{
margin:  1rem 0;
position: relative;
}
.about-img__photo{
display: block;
width: 90vw;
height: 80%;
position: relative;
}

.about-img__photo1{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    }

/*
.about-img:before{
content: "";
background: none;
width: 100%;
height: 100%;
position: absolute;
bottom: -10px;
left: -10px;
}
*/

.about-info{
text-align: center;
}
.about-info__title{
margin-top: .5rem;
font-size: 2.5rem;
text-transform: capitalize;
letter-spacing: 0.5rem;
background: url('http://dancetours.es/screen.jpg') center no-repeat;
padding-left: 3rem;
}
.about-info__title1{
    color: var(--dark);
    line-height: 2rem;
font-size: 1.2rem;
margin: 1rem 1rem;
padding-left: 1.5rem;
    text-align: left;
    }
.aboutul{
    color: var(--dark);
    line-height: 2rem;
font-size: 1.2rem;
margin: 1rem 1rem;
padding-left: 1.5rem;
    text-align: left;
}

.about-info__text{
color: var(--SectionWhite);
line-height: 1.5;
font-size: 1.2rem;
margin: 2rem .5rem;
text-align: left;
}
.about-info__single-link{
display: inline-block;
text-decoration: none;
padding: 0.5rem 1rem;
font-size: 1.5rem;
letter-spacing: 0.2rem;
text-transform: capitalize;
border: 3px solid var(--dark);
transition: all 1s linear;
margin-right: 1rem;
}
.dark-btn{
background: var(--Yellow);
color: var(--light);
}
.dark-btn:hover{
background: var(--red2);
color: var(--dark);
}
.light-btn{
background: var(--light);
}
.light-btn:hover{
background: var(--dark);
color: var(--light);
}
@media screen and (min-width:992px){
.about__center{
display: flex;
justify-content: space-between;
}
}
.about-info,.about-img{
flex: 0 0 calc(50% - 1rem)
}
.about-info{
display: flex;
align-items: flex-start;
}
/* end of about section */

    /* end of about section */
    @media screen and (min-width:550px){
        .about-img__photo{
            margin-left: 3rem;
        width: 80%;
        max-height: 350px;
      }
    }
    @media screen and (min-width:850px){
        .about-img__photo{
            margin-left: 3rem;
            width: 80%;
            max-height: 400px;
        }
    }
    @media screen and (min-width:1000px){
        .about-img__photo{
            width: 90%;
            margin: .2rem;
            max-height: 500px;
        }
    }
    @media screen and (min-width:1200px){
        .about-img__photo{
            width: 90%;
            max-height: 600px;
            margin: .2rem;
        }
    }
    
    /* end of about section */

    /* end of about section */
    @media screen and (min-width:550px){
        .about-img__photo1{
            width: 70%;
            float: left;
      }
    }
    @media screen and (min-width:850px){
        .about-img__photo1{
            width:70%;
           

        }
    }
    @media screen and (min-width:1000px){
        .about-img__photo1{
            width:50%;
           

        }
    }
    @media screen and (min-width:1200px){
        .about-img__photo1{
            width:50%;
          
            
        }
    }


/* service title */
.section-title{
    text-align: center;
    }
    .section-title__name{
    font-size: 4rem;
    letter-spacing: 0.5rem;
    text-transform: capitalize;
    font-weight: 700;
    font-style: italic;
    }
    .section-title__name2{
        color: var(--black);
    font-size: 4rem;
    letter-spacing: 0.5rem;
   /* background: url('http://dancetours.es/screen.jpg')center no-repeat;*/
    text-transform: capitalize;
    font-weight: 700;
    font-style: italic;
    }
    /* end of section title */
    /* services section */
    .services{
    background: var(--Yellow);
    padding: 2rem 0;
    }
    .services__center{
    max-width: 90vw;
    margin: 2rem auto;
    }
    .services__single-service{
    margin: 2rem auto;
    text-align: center;
    transition: all 0.5s ease-in;
    padding: 2rem 0;
    border-radius: 0.25rem;
    background: var(--SectionWhite);
    }
    .services__single-service:hover{
    background: var(--grey);
    box-shadow: 0 15px 20px rgba(0,0,0,0.1);
    }
    .services__single-service-icon{
    font-size: 3rem;
    }
    .services__single-service-title{
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
    }



.services__single-serviceul{
    color: var(--dark);
    line-height: 2rem;
font-size: 1.2rem;
margin: 1rem 1rem;
padding-left: 1.5rem;
    text-align: left;
}


.services__single-service-text{
    text-decoration: none;
    color: var(--dark);
    line-height: 2rem;
font-size: 1.2rem;
margin: 1rem 1rem;
padding-left: 1.5rem;
    text-align: left;
}


.services__single-serviceul{
    color: var(--dark);
    line-height: 2rem;
font-size: 1.2rem;
margin: 1rem 1rem;
padding-left: 1.5rem;
    text-align: left;
}

/* Start phonenumber  */
.phonenumber .services__single-serviceul1{
    text-decoration: none;
    color: var(--SectionWhite);
    width: 100%;
     font-size: 1.75rem;
     font-weight: 400;
     margin: .2rem auto ;
     text-align: left;
     line-height: 1;
     letter-spacing: 0.2rem; 
     padding: 1rem 0em 0em 1em;
   
}


.phonenumber .contact-link {
text-decoration: none;
color: var(--Yellow);
 width: 100%;
 font-size: 1.75rem;
 font-weight: 400;
 margin: 1rem auto;
 text-align: left;
 line-height: 1.5;
 letter-spacing: 0.2rem; 
 padding: .5rem;
}


@media screen and (min-width:600px){
    .phonenumber .services__single-serviceul1 {
        text-decoration: none;
    color: var(--SectionWhite);
    width: 100%;
     font-size: 2rem;
     font-weight: 400;
     margin: .2rem auto ;
     text-align: left;
     line-height: 1;
     letter-spacing: 0.2rem; 
     padding: 2rem;

    } 
    .phonenumber .contact-link {
        text-decoration: none;
        color: var(--Yellow);
        width: 100%;
        font-size: 2rem;
         font-weight: 400;
         margin: 1rem auto;
         text-align: left;
         line-height: 1.5;
         letter-spacing: 0.2rem; 
         padding: .5rem;
       } 

}

@media screen and (min-width:1000px){
    .phonenumber .services__single-serviceul1{
        text-decoration: none;
        color: var(--SectionWhite);
        width: 100%;
         font-size: 2rem;
         font-weight: 400;
         margin: .2rem auto ;
         text-align: left;
         line-height: 1;
         letter-spacing: 0.2rem; 
         padding: 1rem;
   
    }
    
    
    
    .phonenumber .contact-link {
    text-decoration: none;
    color: var(--Yellow);
    width: 100%;
     font-size: 2rem;
     font-weight: 400;
     margin: 1rem auto;
     text-align: left;
     line-height: 1.5;
     letter-spacing: 0.2rem; 
     padding: .5rem;
    }
    }
    
/*  End phonenumber  */



    @media screen and (min-width:768px){
    .services__center{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    }
    .services__single-service{
    flex: 0 0 calc(50% - 0.5rem);
    }
    @media screen and (min-width:992px){
    .services__single-service{
        flex: 0 0 calc(50% - 0.5rem);
    }
}
    
    /* end of services section  */
    


/* numbers section  */

.numbers{
padding: 7rem 0;
background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),url(http://dancetours.org/image/simhandy1.jpg)center/cover fixed no-repeat;
color: var(--light);
}
.section-title__name-numbers{
    color: var(--red2);  
    font-size: 4rem;
    letter-spacing: 0.5rem;
    background: none;
    text-transform: capitalize;
    font-weight: 700;
    font-style: italic;

}
.numbers__center{
max-width: 95vw;
margin: 2rem auto;
}
.numbers__single-number{
text-align: center;
margin: 2rem 0;
}
.numbers__single-number-icon{
font-size: 3rem;
}
.numbers__single-number-text{
font-size: 2rem;
letter-spacing: 0.5rem;
margin: 0.5rem 0;
}
.numbers__single-number-title{
text-transform: uppercase;
letter-spacing: 0.25rem;
}





@media screen and (min-width:576px){

.numbers__center{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.numbers__single-number{
flex: 0 0 calc(50% - 0.5rem);
}  
} 

@media screen and (min-width:992px){
.numbers__single-number{
flex: 0 0 calc(25% - 0.5rem);
}      
} 

    /* end of numbers section  */
    
    /* projects section  */

.projects{
padding: 3rem 0;
background: var(--light);
}
.projects__center{
display: none;
max-width: 90vw;
margin: 2rem auto;
}
.projects__single-project{
margin: 2rem auto;
position: relative;
}
.projects__single-project-img{
display: block;
width: 100%;
border-radius: 0.25rem;
}
.project-info__title{
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 1.5rem;
    margin-bottom: .2rem;
    letter-spacing: 0.2rem;
    margin-left: .5rem;
}
.projects__single-project::before{
content: '';
background: var(--dark);
width: 100%;
height: 100%;
position: absolute;
transform: scale(0);
transition: all 1s ease;
}
.projects__single-project:hover:before{
transform: scale(1);
opacity: 0.5;
}
.projects__single-project-icon{
color: var(--light);
position: absolute;
top: 50%; 
left: 50%;
font-size: 4rem;
transform: scale(0);
opacity: 0;
transition: all 1.3s ease;
}
.projects__single-project-icon:hover{
color: var(--grey);
}
.projects__single-project:hover .projects__single-project-icon{
opacity: 1;
transform: scale(1) translate(-50%,-50%);
}
@media screen and (min-width:768px){
.projects__center{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
} 
.projects__single-project{
flex: 0 0 calc(50% - 0.5rem);
}
.item{
    display: none;
}
}
@media screen and (min-width:992px){
.projects__single-project{
flex: 0 0 calc(25% - 0.5rem);

}
}



    /* end of projects section  */


    

/* contact  */
.contact{
background: var(--Yellowish);
padding: 3rem 0;
}  
.contact__center{
max-width: 80vw;
margin: 2rem auto;
}
.contact__header{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 2rem 0;
}
.contact__name, .contact__email, .contact__textarea{
background: transparent;
border: none;
border-bottom: 3px solid var(--dark);
padding: 0.25rem 0;
margin: 2rem 0;
font-size: 1.2rem;
}
.contact__name, .contact__email{
flex: 0 0 calc(50% - 1rem);
}
.contact__textarea{
width: 100%;
}
.contact__btn{
background: var(--Yellow);
color: var(--light);
display: block;
margin: 0 auto;
padding: 0.5rem 1rem;
margin-top: 2rem;
font-size: 1.5rem;
text-transform: uppercase;
letter-spacing: 0.5rem;
transition: all 0.5s linear; 
}
.contact__btn:hover{
background: var(--light);
color: var(--Yellow);
border-color: var(--Yellow);
}
.contact__icon{
margin-right: 0.5rem;
}

    /* end of contact section */ 
    


  /* ============    quality ballet ============== */



  .top-primary{
	margin-bottom: .5em;
  }
	
.top-primary .split {
	display: flex;
	flex-direction: column;
    margin-top: 1em;

  }
  
  .top-primary .split .split__title{
	  font-size: 30px;
	  font-weight: 400;
	  color: var(--SectionWhite);
      padding: 0em 0em;
     margin-right: .5em;
    
  }

  
  .top-primary .split .split__para{
	  font-size: 20px;
	  line-height: 25px;
	  color: var(--SectionWhite);
      padding: 0em 0em;
      font-family: 'Open Sans', sans-serif;
      margin-right: 1em;
     
  }
  
  .top-primary .split__img {
	  display: block;
      max-width: 100%;
      padding-top: .5em;
      margin-left: 1em;
      
	}

	.top-primary .split > * + * {
		margin-left: 0em;
      }
      
      @media (min-width: 500px) {
        
          .top-primary .split__img {
        width: 95%;
         justify-content: center;
         align-items: center;
         background-color: var(--SectionWhite);
        
            
          }
          .top-primary .split .split__title{
           margin: .7em;
        }
        
        .top-primary .split .split__para{
            margin: 1em;
          
           
        }
        }

        @media (min-width: 600px) {
        
            .top-primary .split__img {
          width: 70%;
  padding: 1em 0 ;
  margin: 0 15%;
             
          }
          }
  

      
  
  @media (min-width: 850px) {
	.top-primary .split{
	  flex-direction: row;
	}
  
	.top-primary .split > * {
	  flex-basis: 100%;
	}
  
	.top-primary .split > * + * {
	  margin-left: 2em;
    }

    .top-primary .split__img {
        width: 95%;
     margin-left: 2em;
     margin-top: 2em;
     padding: 4em 0;
     background-color: var(--SectionWhite);
        
      }

  }
  
/*end quality ballet*/



/* ============ Newsletter ============= */
.newsletter1 {
    background: var(--black);
    padding: 1.5rem 0rem;
    margin-top: 1.5rem;
    border-color: var(--black);
    border-width: .5px;
    border-style: solid;
  }


  .newsletter1 .primary__title h2{
    font-size: 2rem;
    font-weight: 600;
    color: var(--SectionWhite);
    padding: .2rem 1rem;
    text-align: left;
    margin: 0rem 1rem 0rem 0rem ;
    


}

  .newsletter1 .primary__title h3{
    font-size: 42em;
    font-weight: 500;
    color: var(--SectionWhite);
    padding: 1rem 0rem;
    text-align: center;

  }


  .newsletter1 p{
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    padding: .5rem 1rem;
    text-align: left;
    width: 90%;
  }

  .newsletter1__box{
    width: 90%;
  }
  
  .newsletter1__box form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
  }
  
  .newsletter1__box form input {
    width: 100%;
    padding: 1.5rem 0;
    text-indent: 1rem;
    border: 1px solid var(--grey);
    font-size: 1rem;
    background-color: var(--SectionWhite);
    font-family: var(--bernhard);

  }
  
  .newsletter1__box form button {
    min-width: 170px;
    padding: 1.17rem 1.5rem;
    background-color: var(--purplemonet);
    border: 1px solid var(--purplemonet);
    color: var(--SectionWhite);
    margin-left: -2rem;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: var(--bernhard);
    
  }
  
  .newsletter1__box form button:focus {
    outline: none;
    
  }
  
  @media only screen and (max-width: 1200px) {

    .newsletter1__container{
        width: 100%;
        
        }

        .newsletter1__box{
            width: 90%;
        
          }
          
          .newsletter1__box form {
            width: 100%;
          }

    .newsletter1__box form input {
      width: 80%;
      padding: 1.2rem 0;
    }
  
    .newsletter1__box form button {
      padding: .90rem 1rem;
      display: block;
      margin-left: 0rem;
      min-width: 180px;

    
    }

    .newsletter1 .primary__title h2{
        font-size: 2rem;
        font-weight: 500;
        color: var(--purplemonet);
        padding: .2rem 1rem;
        font-family: var(--bernhard);
        text-align: left;
        margin: 0rem 1rem 0rem 0rem ;
        width: 90%;
    
    
    }

    .start-today .content .box{
        padding:10px;
    }
    }
















    

      /* --------------- Start footer----------------------- */

footer.footer{
    height: 100%;
	background: var(--black);
    position: relative;
}

footer.footer .container{
    display: grid;
	grid-template-columns: repeat(4, 1fr);
	cursor: pointer;
}

footer.footer .container > div{
    flex-grow: 1;
    flex-basis: 0;
    padding: 3rem .9rem;
}

footer.footer .container h2{
    color: var(--SectionWhite);
    font-family: var(--bernhard);
	font-weight: 500;
}


/* about-us */
footer.footer .container .about-us a{
text-decoration: none;
color: var(--SectionWhite);
}

footer.footer .container .about-us p{
font-size: 25px;
    color: var(--Yellow);
    }

footer.footer .container .about-us p:hover{
    text-decoration: underline;
    color: var(--SectionWhite);
    color: var(--Yellow);
    }
    


footer.footer .container .about-us h2{
    text-decoration: none;
    cursor: text;
    color: var(--Yellow);
    font-size: 35px;
	}

	/* Getinfo */

	footer.footer .container .getinfo {
        background: var(--black);
        display: inline-block;
    }
    footer.footer .container .getinfo ul li a{
     font-size: 20px;
      
        
        }
    
    footer.footer .container .getinfo ul li a:hover{
        color: var(--Yellow);
        text-decoration: none;
      
        
        }
    
        footer.footer .container .getinfo ul li a:hover:after{
            color: var(--Yellow);
            text-decoration: none;
            width: 8em;
            }
    
    
    
    footer.footer .container .getinfo h2{
       cursor: text;
       
    }
    
    footer.footer .getinfo .form-element input{
        padding: .5rem .7rem;
        border: none;
        background: transparent;
        color: var(--SectionWhite);
        font-size: 1rem;
        width: 74%;
    }
    
    footer.footer .container .getinfo .form-element span{
        background: var(--purplemonet);
        padding: .5rem .7rem;
        cursor: pointer;
    }
    
    
    
    /* Instagrams  */
    
    
    /* Instagrams  */

/* Instagrams  */


footer.footer .instagram div > a img{
    display: inline-block;
    width: 25%;
    height: 50%;
	margin: .3rem .4rem;
	cursor: pointer;
}

footer.footer .instagram h2:hover{
    text-decoration: underline;
    color: yellow;
}




/* Social  */

.bloc .follow div > a {
    color: var(--SectionWhite);
	padding: 0 .6rem;
    font-size: 2rem;
    text-decoration: none;

}

.bloc .follow div a :hover{
    color: var(--Yellow);
	
   
}


.bloc .follow h2 {
    font-size: 25px;
	padding-bottom: 20px;
    color: var(--SectionWhite);
    cursor: text;
}

.bloc .follow p {
text-decoration: none;
color: var(--SectionWhite);
display: flex;
align-items: center;
font-size: 20px;
font-family: 'Open Sans', sans-serif;
}

/* Social  */

/* Copyright  */

footer.footer .rights{
    justify-content: center;
    text-align: center;
        width: 100%;

        

}

footer.footer .rights h4{
    font-size: 18px;
    padding-bottom: 20px;
    color: var(--SectionWhite);
text-align: center;
justify-content: center;
font-weight: 400;

    
}

footer.footer .move-up{
    position: absolute;
    right: 6%;
    top: 70%;
}

footer.footer .move-up span{
    color: var(--Yellow);
    background-color: var(--black);
}

/* Move-up */


footer.footer .move-up span:hover{
	color: var(--SectionWhite);
    cursor: pointer;
}

/* Footer large Screen  */

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


    footer.footer .container{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Footer Medium Screen  */
@media only screen and (max-width: 750px){


    footer.footer .container{
        grid-template-columns: repeat(1, 1fr);
    }

}

/* Footer Small Screen  */

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


    footer.footer .container > div{
        padding:  1rem .9rem !important;
    }


	
	footer.footer .follow div i{
	margin-bottom: 2rem;
		
	}

    nav .toggle-collapse{
        width: 80% !important;
    }

     .site-content .sidebar .popular-tags h2{
    padding: .5rem;

  }
  
  .site-content .sidebar .popular-tags .tags .tag{
    font-size: 2.5rem;
    margin: 2rem .5 0rem;
  }



}

/*End Footer*/