html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*FINE RESET*/
strong{
    font-weight: bold;
}

body{
    height: 100%;
    color: white;
    display: flex;
    font-family: 'Poppins', sans-serif;
    background-color: #0C57C2;
    /* background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    background-size: cover; */
}
a{
    text-decoration: none;
    color: white;
}

.container{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.sudhost-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sudhost-img-container{
    padding-bottom: 40px;
    width: 430px;
    height: 334px;
}
.sudhost-img-container img{
    width: 100%;
}
.sudhost-dominio{
    width: 50%;
    text-align: center;
}

.sudhost-dominio h2{
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 40px;
    word-wrap: break-word;
}
.sudhost-dominio h3{
    font-size: 30px;
    line-height: 40px;
}
.logo-holocron{
    width: 180px;
    padding-top: 18px;
}
.logo-holocron img{
    width: 100%;
}

.sudhost-center{
    padding-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.sudhost-center-title{
    text-align: center;
}

.sudhost-center-title h2{
    font-size: 40px;
    font-weight: 400;
}
.sudhost-services{
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    width: 80%;
    justify-content: space-evenly;
}

.hosting-service, .email-service, .domains-service, .vm-service{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hosting-service{
    align-items: baseline;
}
.sudhost-services h3{
    font-size: 40px;
    font-weight: bold;
}


.sudhost-services img{
    height: 180px;
}

.hosting-service img{
    transform: scaleX(-1);
}

.sudhost-webSolutions{
    padding-bottom: 61px;
    text-align: center;
}
.sudhost-webSolutions h3{
    font-size: 30px;
    line-height: 36px;
}

.sudhost-footer{
    padding-bottom: 32px;
    text-align: center;
}
.footer-mob{
    display: none;
}
.footer-desk{
    display: block;
}

.sudhost-footer h3{
    font-size: 18px;
}

.background-img{
    display: flex;
    width: 100%;
    position: fixed;
    z-index: -1;
}
.background-img .img-desk{
    width: 100%;
    height: 600px;
}
.background-img .img-mob{
    width: 100%;
    display: none;
}

@media screen and (max-width: 1020px){
    .sudhost-services{
        flex-wrap: wrap;
    }
    .hosting-service, .email-service, .domains-service, .vm-service{
        display: flex;
        width: 45%;
        flex-direction: column;
        padding-top: 1.5em;
        align-items: center;
    }
    .sudhost-services .vm-service h3 {
        text-align: center;
    }
    .background-img .img-desk{
        display: block;
        padding-top: 32%;
        height: 100%;
    }
    .background-img .img-mob{
        display: none;
    }
    .sudhost-dominio{
        width: 70%;
    }
}
@media screen and (max-width: 620px) {

    .sudhost-img-container{
        padding-bottom: 40px;
        width: 310px;
        height: 240px;
    }   
    .sudhost-dominio{
        width: 80%;
    }
    .sudhost-dominio h2{
        padding-bottom: 10px;
        font-weight: bold;
        font-size: 30px;
        word-wrap: break-word;
    }
    .sudhost-dominio h3{
        font-size: 25px;
        line-height: 40px;
    }
    .logo-holocron{
        width: 128px;
        padding-top: 18px;
    }

    .sudhost-services{
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .sudhost-center-title{
        width: 90%;
    }
    .sudhost-center-title h2{
        font-size: 25px;
        font-weight: 400;
    }

    .hosting-service, .email-service, .domains-service, .vm-service{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 60px;
        width: 100%;
        padding-top: 0;
    }
    .sudhost-services h3{
        font-size: 30px;
        font-weight: bold;
    }
    
    .sudhost-services img{
        height: 130px;
    }
    
    .hosting-service img{
        transform: scaleX(-1);
    }
    
    .sudhost-webSolutions{
        padding-bottom: 61px;
        text-align: center;
        width: 80%;
    }

    .sudhost-webSolutions h3{
        font-size: 25px;
    }
    
    .sudhost-footer{
        padding-bottom: 32px;
        text-align: center;
    }
    .footer-mob{
        display: block;
    }
    .footer-desk{
        display: none;
    }
    .sudhost-footer h3{
        font-size: 14px;
    }
    .background-img .img-mob{
        display: block;
        position: fixed;
    }

    .background-img .img-desk{
        display: none;
    }

}
