@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html{
    scroll-behavior: smooth;
    font-smooth: antialiased;
}

h1,h2,h3,h4,h5,h6, span, p, input, textarea, button{
    color: #FFFFFF;
    outline: none;
}
a,
button{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.container{
    width: 100%;
    max-width: 1440px;
}

.hero__section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url('./images/hero_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero__content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img{
    width: 250px;
    margin-top: 4rem;
}

.text-content-hero{
    width: 100%;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.main-title{
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.main-description{
    font-family: 'Roboto', sans-serif;
    width: 550px;
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 2rem;
}

.more-info{
    background-color: #FFFFFF00;
    padding: 1rem 2.5rem;
    color: #FFFFFF;    
    border: 1px solid #FFFFFF;  
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.solutions{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background-color: #181818;
    padding: 2rem 0;
}

.subtitle{
    padding: 2rem 0;
}

.subtitle h2 {
    color: #FFFFFF;    
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
	text-align: center;
}

.subtitle span {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
}

.subtitle p {
    color: #FFFFFF;    
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.products{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.products-item{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.header-item, 
.price-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-item p{
    color: #FFFFFF33;
    font-size: 5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.header-item span{
    text-align: center;
}

.type-service{
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.description-item {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 25%;
    left: 10%;
    color: #FFFFFF;
}

.description-item span{
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.price-item{
    color: #FFFFFF;
    font-size: 1.5rem;
    padding: 1rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}
.image-item{
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-item img{
    width: 100%;
	max-width: 150px !important;
}

.products-description{
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    padding: 5rem 0;
    text-align: center;
    font-size: 1.2rem;
}

.formulario{
    background-color: #8d8883;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5rem 0;
}

.form__content h2{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 1.8rem;
    font-size: 2rem;
}

.contact-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-form input, .contact-form textarea, .contact-form button{
    padding: 0.8rem;
    width: 100%;
    max-width: 500px;
    background-color: #FFFFFF00;
    border: 1px solid #FFFFFF;
    resize: none;
    color: #FFFFFF;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 3rem;
    background-color: #181818;
    padding: 5rem 0;
}

.links-sensa p {
    text-align: center;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.socials img{
    width: 30px;
    margin: 0.3rem;
}

.develop{
    font-family: 'Roboto', sans-serif;
	font-size: 0.8rem;
}
.develop a{
    text-decoration: none;
    color: #FFFFFF;
}


@media only screen and (max-width: 585px){
    .main-description{
        width: 100%;
    }
    
    .products{
        flex-direction: column;
    }

    .products-description{
        padding: 0 1.5rem;
    }

    .contact-form{
        padding: 1.5rem;
    }
}




<!--CSS SHOPIFY-->
#corporate #PageContainer > main > div, #tailor-made #PageContainer > main > div {
    max-width: 100% !important;
    padding: 0 !important;
} 

#corporate #PageContainer > main > div > div > div, #tailor-made #PageContainer > main > div > div > div {
    max-width: 100% !important;
    width: 100% !important;
    left: 0 !important;
}

#PageContainer > main > div > div > div > div > div {
    width: 100%;
    left: 0;
}

#PageContainer > main > div > div > div > div > div {
    width: 100% !important;
    left: 0 !important;
    max-width: 100% !important;
}

#PageContainer > main > div > div > div {
    width: 100%;
    left: 0;
    max-width: 100% !important;
}


.form-header-title, .form-header {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    text-align: center;
    padding: 1.8rem;
    font-size: 2rem !important;
}

div#pifyform-6136 {
    background: #8d8883;
    margin: 0 !important;
}

div#form-wrapper {
    border: 0 !important;
    box-shadow: none !important;
}

.powerby-txt {
    display: none !important;
}