@charset "utf-8";
/* CSS Document */
footer {
    background-color: #1A1C1E;
    font-family: Montserrat, "sans-serif";
    padding: 85px 0 100px 0;
	   margin-top: auto;
}


.footer-inner {
    display: grid;
    grid-template-columns: minmax(40%, auto) minmax(20%, auto) minmax(20%, auto) minmax(150px, auto);
    column-gap: 24px;
    row-gap: 2%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    max-width: 1170px;
    position: relative;
}

.end-footer {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 24px;
    row-gap: 2%;
    width: 90%;
	font-size:12px;
    margin-left: auto;
    margin-right: auto;
	padding-top:50px;
    color:white;
    max-width: 1170px;
    position: relative;
	border-top: 1px solid #333;
}
section .left {
text-align:left;
}

section .center {
text-align:center;
}

section .right {
text-align:right;
}
.footer-item .logo {
-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}


.footer-item:nth-of-type(7) {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
}

.footer-button {
    color: white;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    transition: 1s;
    transition-delay: .2s;
    padding: 14px;
}
  
.footer-button:after {
    content: "";
    position: absolute;
    top: 45px;
    right: 13px;
    background-color: white;
    height: 1px;
    width: 86px;
    transition: .6s;
}
  
.footer-button:hover {
    color: black;
    background-color: white;
}
  
.footer-button:hover:after {
    width: 112px;
    right: 0px;
}

footer .end-footer i {
    
    color: white;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0 4px;
    
}

footer .end-footer i:hover {
    
    color: #2CA4DD;
    
    
}
footer h1 {
    font-weight: 900;
    color: white;
    font-size: 24px;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 10px;
}
  
footer h2 {
    font-weight: 300;
    line-height: 1.8;
    font-size: 13px;
    color: #d1d1d1;
    letter-spacing: 0.03em;
   margin-top:0px;
}

footer p{
    font-weight: 300;
    line-height: 1.8;
    font-size: 11px;
    color: #d1d1d1;
    
   
}
  footer section .buttons {
  text-align:left;
	
}
.color {
    color: white;
    font-weight: 400;
}
  
footer h3 {
    font-weight: 400;
    font-size: 13px;
    color: white;
    margin: 0;
    padding-bottom: 9px;
    letter-spacing: 0.03em;
}
  
footer ul {
    line-height: 1.8;
    list-style-type: none;
    padding: 0;
}
  
footer li {
    font-weight: 300;
    font-size: 13px;
    color: #d1d1d1;
    letter-spacing: 0.03em;
  margin-bottom:5px;
}
  

  
footer a {
    text-decoration: none;
    color: #d1d1d1;
}
  
footer a:hover {
    color: #2CA4DD;
}
  
.desktop {
    display: auto;
}
  
.mobile {
    display: none;
}


footer .button-num {
  box-sizing:border-box;
	z-index: 1;
  position: relative;
  color: #2CA4DD;
	font-size: 0.9rem;
  padding: 0.5em;
  outline: none;
  border: 2px solid #2CA4DD;
	border-radius:6px;
	width:140px;
	height:40px;
  background-color: #1A1C1E;
	
}

footer .button-num::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	border-radius:2px;
  background-color:#2CA4DD;
	color:white;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}

footer .button-num:hover {
  cursor: pointer;
	color:white;
	
}

footer .button-num:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
	
}

footer .button-connexion{
	
  z-index: 1;
  position: relative;
  font-size: 0.9rem;
  margin-bottom:20px;
	
  color: white;
  padding: 0.5em 1em;
  outline: none;
  border: 2px solid #2CA4DD;
	border-radius:6px;
	width:140px;
	height:40px;
  background-color: #2CA4DD;
	
}

footer .button-connexion::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	border-radius:4px;
  background-color:#1A1C1E;
	color:white;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}

footer .button-connexion:hover {
  cursor: pointer;
	color:#2CA4DD;
}

footer .button-connexion:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
	
}

@media (max-width: 1024px) {
  
footer {
    padding: 50px 0 60px 0 !important;
}
footer .button-connexion{
	
  margin-right:20px;
	
}
.footer-inner {
    grid-template-areas:
        "logo logo"
        "explore explore"
        "visit visit"
        "follow follow";
    grid-template-columns: minmax(15%, auto) minmax(15%, auto);
    row-gap: 10%;
    
    padding-bottom: 100px;
    margin-bottom: 50px;
}

.footer-item:nth-of-type(1) {
    grid-area: logo;
    
    padding-bottom: 33px;
}

.footer-item:nth-of-type(2) {
    grid-area: explore;
}

.footer-item:nth-of-type(3) {
    grid-area: visit;
}

.footer-item:nth-of-type(4) {
    grid-area: follow;
}



.end-footer {
    grid-template-areas:
        "logo logo "
        "explore explore "
        "visit visit";
    grid-template-columns: minmax(15%, auto) minmax(15%, auto);
    row-gap: 10%;
    border-top: 1px solid #333;
    margin-bottom: 50px;
}

.end-footer:nth-of-type(1) {
    grid-area: logo;
    padding-top: 33px;
	border-bottom: none;
}

.end-footer:nth-of-type(2) {
    grid-area: explore;
}

.end-footer:nth-of-type(3) {
    grid-area: visit;
}

section .left {
text-align:center;
}

section .center {
text-align:center;
}

section .right {
text-align:center;
}
.desktop {
    display: none;
}
      
.mobile {
    display: block !important;
}

.footer-inner:after {
    top: 745px;
}
}
