/* GENERAL */
body {
    background-color: #191c32;
}
    *{
       margin: 0;
       padding: 0;
        font-family: 'Roboto';
        box-sizing: border-box;
    }
    a{
        text-decoration: none;
        color: white;
    }
    
    
    /* MENU RESPONSIVE */
header{
    padding-top: 2vh;
    background-color: #191c32;
}
.menu__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
}

.menu__logo{
    font-family: "Roboto";
    
}

.menu__logo span{
    color: #c57e7a;
}

.menu__links{
    height: 100%;
    display:flex;
}

.menu__item{
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu__item:hover{
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.menu__link{
    color: white;
    text-decoration: none;
    padding: 0 30px;
    display: flex;
    height: 100%;
    align-items: center;
}

.menu__arrow{
    transform: var(--transform);
    transition: transform .3s;
    display: block;
    margin-left: 3px;
}

.menu__nesting{
    list-style: none;
    transition: clip-path .3s;
    clip-path: var(--clip);
    position: absolute;
    right: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: rgb(51, 51, 51);
}

.menu__link--inside{
    padding: 15px 35px 15px 8px;
}

.menu__link--inside:hover{
    background-color:#b5667baa ;
}

.menu__hamburguer{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
}

.menu__img{
    display: block;
    width: 36px;
}
.continuacion-menu{
    background: #191c32;
    height: 2vh;
    
}

@media (max-width:980px){
    .menu__hamburguer{
        display: flex;
    }
    .menu__item{
        --clip:0;
        overflow: hidden ;
    }
    .menu__item--active{
        --transform: rotate(0);
        --background:#b5667baa;
    }
    .menu__item--show{
        background-color: var(--background) ;
    }
    .menu__links{
        position: fixed;
        max-width: 400px;
        width: 100%;
        top: 70px;
        bottom: 0;
        right: 0;
        background-color:black;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform:translateX(100%);
        transition: transform 2s;
        
    }
    .menu__links--show{
        transform: unset;
    }

    .menu__link{
        padding: 25px 0;
        padding-left: 30px;
        height: auto;
    }
    .menu__arrow{
        margin-left: auto;
        margin-right: 20px;
    }
    .menu__nesting{
        display: grid;
        position: unset;
        width: 100%;
        transform: translateY(0);
        height: 0;
        transition: height .3s;
    }
    .menu__link--inside{
        width: 90%;
        margin-left: auto;
        border-left: 1px solid;
    }
}

/* PAGINA PRINCIPAL */

.main{
    background-color: #191c32;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
}
.main img{
    width: 500px;
    height:500px;
    margin-left: 200px;
    padding-top: 30px;
    
}
.info-content{
    width: 700px;
    height: 200px;
    margin-left: 200px;
}
.info-content span{
    padding-top: 2vh;
    color: #c57e7a;
    margin-left: 110px;
}
.info-content h1{
    font-size:3rem;
    color: white;
}
.info-content p{
    padding-top: 2vh;
    font-size:1.7rem;
    color:white;
    margin-left: 50px;
}
.cita-kurt p{
    font-size:1.3rem;
    margin-left:285px
}

.download-cv{
    margin-left:265px;
    padding: 10px 20px;
    background-color: #c57e7a;
    border: none;
    border-radius:20px;
    cursor: pointer;
}

.download-cv:hover{
    background-color:white;
    color: #c57e7a;
}
.final{
    padding: 4vh;
    background-color: #191c32;
}

@media (max-width:1710px){
    .info-content{
        margin-left: 100px;
    }

    .main img{
        width: 350px;
        height:350px;
        margin-left: 100px;
        padding-top: 30px;  
    }
}

@media (max-width:1317px){
    .info-content{
        margin-left: 50px;
    }

    .main img{
        width: 300px;
        height:300px;
        margin-left: 100px;
        padding-top: 30px;  
    }
}

@media (max-width:1207px){
    

    .main img{
        width: 250px;
        height:250px;
        margin-left: 200px;
        padding-top: 10px;  
    }

    .info-content{
        width: 500px;
        height: 200px;
        margin-left: 50px;
    }

    .info-content h1{
        font-size:2.2rem;
        color: white;
    }
    .info-content span{
        padding-top: 2vh;
        color: #c57e7a;
        margin-left: 80px;
    }

    .info-content p{
        padding-top: 1vh;
        font-size:1.4rem;
        color:white;
        margin-left: 0px;
    }
    .cita-kurt p{
        font-size:1rem;
        margin-left:200px
    }
    
    .download-cv{
        margin-left:170px;
        padding: 10px 20px;
        background-color: #c57e7a;
        border: none;
        border-radius:20px;
        cursor: pointer;
    }
}

@media (max-width:1012px){
    

    .main img{
        width: 250px;
        height:250px;
        margin-left: 120px;
        padding-top: 10px;  
    }
}

@media (max-width:930px){
    

    .main img{
        width: 200px;
        height:200px;
        margin-left: 120px;
        padding-top: 10px;  
    }

    .info-content{
        padding-top:1vh;
        width: 500px;
        height: 200px;
        margin-left: 20px;
    }
    .info-content h1{
        font-size:1.8rem;
        color: white;
    }
    .info-content span{
        padding-top: 2vh;
        color: #c57e7a;
        margin-left: 55px;
    }

    .info-content p{
        padding-top: 1vh;
        font-size:1.2rem;
        color:white;
        margin-left: 0px;
    }
    .cita-kurt p{
        font-size:1rem;
        margin-left:150px
    }
    
    .download-cv{
        margin-left:120px;
        padding: 10px 20px;
        background-color: #c57e7a;
        border: none;
        border-radius:20px;
        cursor: pointer;
    }
}

@media (max-width:850px){
    

    .main img{
        width: 200px;
        height:200px;
        margin-left: 50px;
        padding-top: 10px;  
    }

    .info-content{
        padding-top:1vh;
        width: 500px;
        height: 200px;
        margin-left: 20px;
    }
    .info-content h1{
        font-size:1.8rem;
        color: white;
    }
    .info-content span{
        padding-top: 2vh;
        color: #c57e7a;
        margin-left: 55px;
    }

    .info-content p{
        padding-top: 1vh;
        font-size:1.2rem;
        color:white;
        margin-left: 0px;
    }
    .cita-kurt p{
        font-size:1rem;
        margin-left:150px
    }
    
    .download-cv{
        margin-left:120px;
        padding: 10px 20px;
        background-color: #c57e7a;
        border: none;
        border-radius:20px;
        cursor: pointer;
    }
}

@media (max-width:850px){
    

    .main img{
        width: 200px;
        height:200px;
        margin-left: 0px;
        padding-top: 10px;  
    }

    .info-content{
        padding-top:1vh;
        width: 500px;
        height: 200px;
        margin-left: 10px;
    }
    .info-content h1{
        font-size:2rem;
        color: white;
    }
    .info-content span{
        padding-top: 2vh;
        color: #c57e7a;
        margin-left: 55px;
    }

    .info-content p{
        padding-top: 1vh;
        font-size:1.2rem;
        color:white;
        margin-left: 0px;
    }
    .cita-kurt p{
        font-size:1rem;
        margin-left:150px
    }
    
    .download-cv{
        margin-left:120px;
        padding: 10px 20px;
        background-color: #c57e7a;
        border: none;
        border-radius:20px;
        cursor: pointer;
    }
}

@media (max-width:770px){
    

    .main img{
        width: 200px;
        height:200px;
        margin-left: 0px;
        padding-top: 10px;  
    }

    .info-content{
        padding-top:1vh;
        width: 450px;
        height: 200px;
        margin-left: 10px;
    }
    .info-content h1{
        font-size:1.5rem;
        color: white;
    }
    .info-content span{
        padding-top: 2vh;
        color: #c57e7a;
        margin-left: 55px;
    }

    .info-content p{
        padding-top: 1vh;
        font-size:1rem;
        color:white;
        margin-left: 0px;
    }
    .cita-kurt p{
        font-size:1rem;
        margin-left:120px
    }
    
    .download-cv{
        margin-left:90px;
        padding: 10px 20px;
        background-color: #c57e7a;
        border: none;
        border-radius:20px;
        cursor: pointer;
    }
}

@media (max-width:700px){
    

    .main img{
        width: 200px;
        height:200px;
        padding-top: 10px;  
    }

    .info-content{
        padding-top:1vh;
        width: 300px;
        height: 200px;
        margin-left: 10px;
    }
    .info-content h1{
        font-size:1.2rem;
        color: white;
    }
    .info-content span{
        padding-top: 2vh;
        color: #c57e7a;
        margin-left: 35px;
    }

    .info-content p{
        padding-top: 1vh;
        font-size:0.8rem;
        color:white;
        margin-left: 0px;
    }
    .cita-kurt p{
        font-size:0.8rem;
        margin-left:90px
    }
    
    .download-cv{
        margin-left:60px;
        padding: 5px 10px;
        background-color: #c57e7a;
        border: none;
        border-radius:15px;
        cursor: pointer;
    }
}

@media (max-width:700px){
    

    .main img{
        width: 150px;
        height:150px;
        padding-top: 0px;  
    }

    .info-content{
        padding-top:2vh;
        width: 200px;
        height: 200px;
        margin-left: 10px;
    }
    .info-content h1{
        font-size:0.8rem;
        color: white;
    }
    .info-content span{
        padding-top: 2vh;
        color: #c57e7a;
        margin-left: 30px;
    }

    .info-content p{
        padding-top: 10px;
        font-size:0.5rem;
        color:white;
        margin-left: 0px;
    }
    .cita-kurt p{
        font-size:0.5rem;
        margin-left:70px
    }
    
    .download-cv{
        margin-left:35px;
        padding: 3px 7px;
        background-color: #c57e7a;
        border: none;
        border-radius:px;
        cursor: pointer;
    }
}


/* SEGUNDA PARTE*/
.segunda-parte{
    padding-top: 1vh;
    background-color: white;
}
.segunda-parte h1{
    color:#191c32;
    font-family: Nunito Sans; 
    font-size: 3rem;
}


hr{
margin: 0;
padding: 0;

}
.primera-seccion{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.primer-hr{
    margin-right: 10px;
    width: 100px;
    height: 5px;
    background-color: #191c32;
    border: none;
}
.segundo-hr{
    margin-left: 10px;
    width: 100px;
    height: 5px;
    background-color:#191c32;
    border: none;
}

.segunda-parte h2{
    padding-top: 4vh;
    color:#191c32; 
    text-align: center;
    font-size: 2rem;
}

.segunda-parte p{
    text-align: center;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 10vh;
    margin-inline-end: 10vh;
    font-size: 1.5rem;  
}


.segunda-seccion{
    padding-top:4vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.tercera-seccion{
    padding-top:4vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

 

@media (max-width:1760px){
    .segunda-parte p{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 8vh;
    margin-inline-end: 8vh;
    font-size: 1.5rem; 
    } 
}
 
@media (max-width:1350px){
    .segunda-parte p{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 7vh;
    margin-inline-end: 7vh;
    font-size: 1.5rem;
    } 
    .segunda-parte h2{
        padding-top: 3vh;
        color:#191c32; 
        text-align: center;
        font-size: 1.5rem;
    }
}


@media (max-width:1050px){
    .segunda-parte p{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 5vh;
    margin-inline-end: 5vh;
    font-size: 1.5rem;
    } 
    
}

@media (max-width:800px){
    .segunda-parte h1 {
        font-size:2.6rem;
    }
    .segunda-parte h2{
        padding-top: 3vh;
        color:#191c32; 
        text-align: center;
        font-size: 1.3rem;
    } 
    .primer-hr{
        margin-right: 10px;
        width: 70px;
        height: 5px;
        background-color: #191c32;
        border: none;
    }
    .segundo-hr{
        margin-left: 10px;
        width: 70px;
        height: 5px;
        background-color:#191c32;
        border: none;
    }
}


@media (max-width:660px){
   .segunda-parte h1 {
        font-size:2.3rem;
    }
    .segunda-parte h2{
        padding-top: 2vh;
        color:#191c32; 
        text-align: center;
        font-size: 1.3rem;
    } 
    .primer-hr{
        margin-right: 10px;
        width: 70px;
        height: 5px;
        background-color: #191c32;
        border: none;
    }
    .segundo-hr{
        margin-left: 10px;
        width: 70px;
        height: 5px;
        background-color:#191c32;
        border: none;
    }
}


@media (max-width:600px){
    .segunda-parte h1 {
        font-size:1.6rem;
    }
    .trajectoria h1{
        font-size:2rem;
    }
    .segunda-parte h2{
        padding-top: 1vh;
        color:#191c32; 
        text-align: center;
        font-size: 1rem;
    } 
    .primer-hr{
        margin-right: 10px;
        width: 50px;
        height: 5px;
        background-color: #191c32;
        border: none;
    }
    .segundo-hr{
        margin-left: 10px;
        width: 50px;
        height: 5px;
        background-color:#191c32;
        border: none;
    }
    .segunda-parte p{
        display: block;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 3vh;
        margin-inline-end: 3vh;
        font-size: 1.5rem;
        } 
    
}


@media (max-width:500px){
    .trajectoria h1{
        color:#191c32;
        font-family: Nunito Sans; 
        font-size: 1.4rem;
    }
    .segunda-parte h2{
        padding-top: 1vh;
        color:#191c32; 
        text-align: center;
        font-size: 0.8rem;
    } 
    .primer-hr{
        margin-right: 10px;
        width: 50px;
        height: 5px;
        background-color: #191c32;
        border: none;
    }
    .segundo-hr{
        margin-left: 10px;
        width: 50px;
        height: 5px;
        background-color:#191c32;
        border: none;
    }
    
}
/*

@media (max-width:454px){
    .segunda-parte h1{
        color:#191c32;
        font-family: Nunito Sans; 
        font-size: 1.4rem;
    }

    .segunda-parte h2{
        padding-top: 1vh;
        color:#191c32; 
        text-align: center;
        font-size: 0.7rem;
    } 
    
    .primer-hr{
        margin-right: 10px;
        width: 50px;
        height: 5px;
        background-color: #191c32;
        border: none;
    }
    .segundo-hr{
        margin-left: 10px;
        width: 50px;
        height: 5px;
        background-color:#191c32;
        border: none;
    }
    
}

@media (max-width:370px){
    .segunda-parte h1{
        color:#191c32;
        font-family: Nunito Sans; 
        font-size: 1rem;
    }

    .segunda-parte h2{
        padding-top: 1vh;
        color:#191c32; 
        text-align: center;
        font-size: 0.6rem;
    } 
    
    .primer-hr{
        margin-right: 10px;
        width: 50px;
        height: 5px;
        background-color: #191c32;
        border: none;
    }
    .segundo-hr{
        margin-left: 10px;
        width: 50px;
        height: 5px;
        background-color:#191c32;
        border: none;
    }
    
}  */







/* OPINIONES */
.opinions{
    background: #191c32;
}

.opiniones .caja-contenedor .caja{
    background: #191c32;
    margin: 1rem;
    padding: 1rem;
    text-align: center;
    position: relative;
    border: .1rem solid rgba(0,0,0,0.2);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.4);
    flex: 1 1 30rem;
    border-radius: .5rem;
}
.opiniones .caja-contenedor .caja .user img{
    border-radius: 50%;
    object-fit: cover;
    height: 8rem;
    width: 8rem;
    margin-top: 2rem;
}
.opiniones .caja-contenedor .caja .user h3{
    font-size: 2rem;
}

.opiniones h1{
    color: white;
    text-align: center;
    font-family: Nunito Sans; 
    font-size: 3rem;
}
.user{
    color: white;
}
.stars i{
    color: yellow;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.comentarios h4{
    text-align: center;
    padding-top: 2vh;
}

.opiniones .caja-contenedor .caja .comentarios{
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
}
.opiniones .caja-contenedor{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.hide{
    display: none;
}
.show {
    display: block;
}

.contenedor-boton{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2vh;
}

.readMore_btn{
    padding: 10px 20px;
    background-color: #c57e7a;
    border: none;
    border-radius:20px;
    cursor: pointer;
}
.readMore_btn:hover{
    background-color:white;
    color: #c57e7a;
}


/* CURSOS */
.contenedor-padre2{
    padding: 2vh;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    background: #191c32;
    flex-wrap: wrap;
    align-items: center;
    align-items: center;
}
.contenedores-hijo2{
    margin: 2vh;
    border-radius: 20px;
    width: 400px;
    height: 400px;
    background: white;
    box-shadow: 0 .5rem 1rem rgba(9,9,9,9.9);
}
.titulo-cards{
    font-size: 0.8rem;
    text-align: center;
    padding-top: 10px;
    color: black;
}
.precios-hr{
    margin-left: 10px;
    margin-right: 10px;
    height: 4px;
    background-color: #19637c;
    border: none;
}

.description-cards{
    text-align: center;
    padding-top: 1vh;
}
.description-cards-aleman{
    text-align: center;
    padding-top: 1vh;

}
.price{
    padding-top: 2vh;
    font-size:rem;
}
.price-aleman{
    padding-top: 1vh;
}
.price-aleman h1{
    font-size: 3rem;
}
.description-cards-rs{
    text-align: center;
    font-size: 0.9rem ;
    padding-top: 1vh;
}
.price h1{
    font-size: 2.7rem;
    
}
.description-cards1y2{
    text-align: center;
    font-size: 1.2rem ;
    padding-top: 1vh;
}
.description-cardselo{
    text-align: center;
    font-size: 1rem;
    padding-top: 1vh;
}
.adquiere{
    font-size: 2rem;
    padding: 10px 20px;
    background-color: #c57e7a;
    border: none;
    border-radius:30px;
    cursor: pointer;
    box-shadow: 0 .5rem 1rem rgba(9,9,9,9.9);
}

.contenedores-hijo{
    margin: 2vh;
    border-radius: 20px;
    width: 400px;
    height: 320px;
    background: white;
    box-shadow: 0 .5rem 1rem rgba(9,9,9,9.9);
}
/* IFRAMES */
iframe{
    height:800px;
    width:80%;
    margin: auto;
    display: block;
    border: none;}

    @media screen and (max-width:1500px) {
        iframe{
            height:700px
            
        }
    }

/* CONTENIDO GRATUITO */

.titulo-contenido-gratuito{
    text-align:center;
    color:white;
    padding-top:3vh;
    font-size:2rem;
}

.grupo-gratuito{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 3vh;
}

.contenido-gratuito img{
    width: 800px;
}
.contenido-gratuito img:hover{
    border: 3px solid #b37777;
}

@media screen and (max-width:1661px) {
    .contenido-gratuito img{
        width: 500px;
    }
    
}

@media screen and (max-width:1050px) {
    .contenido-gratuito img{
        width: 300px;
    }
    
}

@media screen and (max-width:631px) {
    .contenido-gratuito img{
        width: 300px;
        padding-bottom: 1vh;
        
    }
    .grupo-gratuito{
        text-align: center;
        flex-direction: column;
        padding-top: 3vh;
    }
    
}

















/* GALERIA */

.galeria{
    text-align: center;
    background-color: #191c32;
}
.galeria h1{
    color: white;
}

.slider{
    max-width: 73%;
    margin: auto;
    overflow: hidden;
}
.slider ul{
    padding: 0;
    display: flex;
    width: 800%;
    animation: cambio 40s infinite alternate;
}
.slider li{
    width: 100%;
    list-style: none;
}
.slider img{
    width: 100%;
}

@keyframes cambio {
    0% { margin-left: 0;}
    10% { margin-left: 0;}

    12% { margin-left:-100%;}
    22% { margin-left:-100%;}

    24% { margin-left:-200%;}
    34% { margin-left:-200%;}

    36% { margin-left:-300%;}
    46% { margin-left:-300%;}

    48% { margin-left:-400%;}
    58% { margin-left:-400%;}

    60% { margin-left:-500%;}
    70% { margin-left:-500%;}

    72% { margin-left:-600%;}
    82% { margin-left:-600%;}

    84% { margin-left:-700%;}
    100% { margin-left:-700%;}
} 

 /* CONTACTO */
    
 .titulo-formulario-contacto{
    color: white;
    text-align: center;
    }
    
    .form-contacto{
        width: 500px;
        margin: auto;
        background-color:rgba(0,0,0,0.5);
        padding: 10px 20px;
        box-sizing: border-box;
        margin-top: 20px;
        border-radius: 20px;
    }
    
    textarea{
        min-height: 100px;
        max-height: 200px;
        max-width: 100%;
    }
    
    #boton{
        color: #fff;
        padding: 20px;
    }
    
    #boton:hover{
        cursor: pointer;
    }
    
    .areas-de-texto{
        width: 100%;
        margin-bottom: 20px;
        padding: 5%;
        box-sizing: border-box;
    }
    
    .formulario-kenai{
        background-color:rgba(0,0,0,0.4);
    color: white;
    text-align: center;
    font-size: 2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 20px;
    padding: 10px 20px;
    box-sizing: border-box;
    }
    
    input#boton{
        padding: 5px 20px;
        
    }

    @media screen and (max-width:530px) {

        .form-contacto{
        width: 300px;
        margin: auto;
        background-color:rgba(0,0,0,0.5);
        padding: 10px 20px;
        box-sizing: border-box;
        margin-top: 20px;
        border-radius: 20px;
    }

    }

    /* FOOTERS */
    .final{
        padding: 2vh;
    }
    
    footer{
        max-width: 100%;
        background: #202020;
        color: white;
    }
    
    .container-footer-all{
       
        max-width: 1200px;
        margin: auto;
        padding: 40px;
    }
    
    .container-body{
        display: flex;
        justify-content: space-between;
    }
    
    .colum1{
        max-width: 400px;
    }
    
    .colum1 h1{
        font-size: 22px;
    }
    .colum1 p{
        font-size: 14px;
        color: #c7c7c7;
        margin-top: 20px;
    }
    
    .colum2{
        max-width: 400px;
    }
    .colum2 h1{
        font-size: 22px;
    }
    .row{
        margin-top: 20px;
        display: flex;
        text-align: center;
    }
    
    .row span{
        font-size: 20px;
        padding-right: 10px;
    }
    
    .row label{
        font-size:17px;
        color: #c7c7c7;
        cursor: pointer;
    }
    
    .colum3{
        max-width: 400px;
    }
    
    .colum3 h1{
        font-size: 22px;
    }
    
    .row2{
        margin-top: 20px;
        display: flex;
    }
    
    .row2 span{
        font-size: 20px;
        padding-right: 10px;
    }
    
    .row2 label{
        font-size:17px;
        color: #c7c7c7;
    }
    
    .container-footer{
        width: 100%;
        background: #101010;
    }
    
    .footer-info{
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        display: flex;
        justify-content: space-between;
    }
    
    .copyright a{
        font-family: 'Graduate';
    }
    
    .copyright a{
        text-decoration: none;
        color: #c7c7c7;
        font-weight: bold;
    }
    
    @media screen and (max-width:1100px) {
        .container-body{
            flex-wrap: wrap;
        }
        .colum2,
        .colum3{
            margin-top: 40px;
        }
    }

