html {
    scroll-behavior: smooth;
  }

* {
    transition: .3s;
}

@font-face {
    font-family:'GOTHIC';
    font-style: normal;
    font-weight: normal;
    src:url(../fonts/GOTHIC.TTF) format('truetype');
	/* src:url(../fonts/Metropolis-Light.otf) format('opentype'); */
}

@font-face {
    font-family:'CenturySchoolbookBold';
    font-style: normal;
    font-weight: normal;
    src:url(../fonts/CenturySchoolbookBold.ttf) format('truetype');
	/* src:url(../fonts/Metropolis-Medium.otf) format('opentype'); */
}


body {
  font-family:'GOTHIC';
  color: #000;
  background-color: #ffffff;
}

h1 {
	font-family: 'CenturySchoolbookBold';
    text-align: center;
    font-size: 60px;
    color: #fff;
    letter-spacing: 15px;
}

p{  
	font-family: "GOTHIC";
	font-size: 18px;
	margin: 0 0;
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 1px 1px 0px #000;
}

img {
    width: 100%;
}

.slider{
    width: 100%;
    height: 100vh;
    min-height: 900px;
    background-size: cover;
    background-position: center;
    padding: 20px 0 30px;
    background-image: url(../img/fondo-header.jpg);
}

.logos-lp{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 150px 0 0;
}

.logos-lp img {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0px 6px 0px 0px #fff;
}

.logos-lp img:hover{
    transform: scale(0.9);
}

.titulo {
    display: flex;
    justify-content: center;
    align-items: center;
}

hr {
    border: 2px solid #fff;
}

.copy-footer p {
    position: relative;
    margin: auto;
    width: 100%;
}

.copy-footer img {
    width: 100px;
    margin: auto;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
}


@media (max-width: 1200px){
    h1 {
      
        font-size: 40px;
       
    }

    .logos-lp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 100px 0;
    }

    .copy-footer p {
        bottom: 0;
        position: relative;
        margin: auto;
        width: 100%;
    }

}

@media (max-width: 991px){
	
    h1 {
        font-size: 35px;
    }

    p {
        
        font-size: 16px;
        
    }

    .logos-lp img {
        width: 150px;
    }

}

@media (max-width: 767px){

	h1 {
        font-size: 25px;
        letter-spacing: 2px;
        margin-top: 10px;
    }

    p {
        font-size: 15px;
    }

    .logos-lp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 200px 0 20px;
    }
    
    
 }
