/*
Theme Name: Pintuco Landing Theme
Author: Jose
Description: Landing Pintuco.
Version: 1.0
*/


/* Estilos personalizados */
@font-face {
    font-family: 'Colour Sans';
    src: url('ColourSans.woff2') format('woff2'),
        url('ColourSans.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
*{
	text-decoration: none;
}
html{
    margin: 0 !important;
}

body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    color: #333333;
    background-color: #fff;
}
body{
	margin:0px;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
h1, .h1 {
    font-size: 36px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}
header,  .copyright-aksonobel, .shiftnav-main-toggle-content, .shiftnav-toggle-main-block, #shiftnav-toggle-main{
	display: none;
}


.new-home{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

.new-home .imagenes{
    width: 55%;
    background-image: url("https://pintuco.com/wp-content/uploads/2025/04/Intro-Pintuco_default-dekstop-2.png");
    background-size: 110%;
    background-position: center top;
    text-align: center;
    animation: alejarImagen 20s linear forwards;
}
.new-home .imagenes img{
    margin-top: 50px;
}
.new-home .imagenes h1{
    color: #012169;
    text-align: center;
    font-family: "Colour Sans";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 146.667%; 
    letter-spacing: -0.76px;
}
.new-home .content{
    width: 45%;
    height: 100%;
}
.new-home .content .paises{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.new-home .content .paises a.pais{
    display: flex;
    align-items: center;
}
.new-home .content .paises a.pais p{
    color: #012169;
    font-family: "Colour Sans" !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 0%; /* 0px */
    letter-spacing: 1.4px;
    padding-left: 15px;
    width: 200px;
}

footer{
	padding: 25px;
	text-align: center
}
footer img{
	display: inline-block;
	margin: auto
}
footer ul{
	display: flex;
	justify-content: center;
	list-style: none !important
}
footer li a{
	color: #777777 !important;
	padding: 0 10px;
	border-right: 0.1px solid #ddd3d3;
}
footer li:last-child  a{
	border: none
}
.page-content{
	    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
}

@keyframes alejarImagen {
    0% {
        background-size: 105% ;
    }
    100% {
        background-size: 100% ;
    }
}


@media screen and (max-width: 1024px){
    .new-home .imagenes{
        background-size: cover !important;
        animation: none !important;
    }
}

@media screen and (max-width: 768px){
    .new-home{
        flex-direction: column;
    }
    .new-home .imagenes{
        width: 100%;
        height: 45%;
        position: relative;
    }
    .new-home .content{
        width: 100%;
        height: 55%;
        overflow-y: auto;
    }
    .new-home .imagenes img {
        margin-top: 15px;
        scale: 0.7;
    }
    .new-home .imagenes h1{
        position: absolute;
        bottom: 15px;
        width: 100%;
        left: 0;
    }
    .new-home .content .paises{
        padding-bottom: 50px;
    }
}