@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

header {
    z-index: 999;
    position: fixed;
    top: 0;
    height: fit-content;
    width: 100%;
    background-color: #ffffff;
    transition: 0.5s ease;
    padding-top: 10px;
    padding-bottom: 10px;
}

header.sticky {
    padding-top: 0px;
    padding-bottom: 0px;
}

label.logo a img {
    height: 40px;
    line-height: 80px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 17px;
    margin-left: 100px;
}

label.logo {
    display: inline-flex;
    align-items: center;
}

header ul {
    float: right;
    margin-right: 20px;
}

header ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
    list-style-type: none;
}

header ul li a {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 3px;
    text-decoration: none;
}

header ul li a:hover {
    color: #EC1E79;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

.home {
    width: 100%;
    padding: 100px 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(160deg,#EC1E79 0%, #802950 100%);
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
}

.home .content h1 {
    font-size: 3.4em;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 65px;
    margin-bottom: 30px;
}

.home .content h1 span {
    font-size: 1em;
    font-weight: 600;
}

.home .content p {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 48px;
    letter-spacing: 1px;
    line-height: 34px;
}

.home .content a {
    background: #fff;
    padding: 15px 35px;
    color: #000;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: 0.4s ease;
    z-index: 555;
}

.home .content a:hover {
    opacity: 0.7;
}

.home img {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus {
    height: fit-content;
    width: 100%;
    background-color: #efefef;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 70px;
}

.aboutusTitle {
    height: fit-content;
    width: 100%;
    padding-top: 80px;
}

.aboutusTitle h1 {
    color: #000;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}

.aboutusTitle p {
    color: #000;
    font-size: 24px;
}

.aboutusContent {
    padding-top: 30px;
}

.aboutusContent p {
    line-height: 28px;
    font-size: 18px;
    font-weight: 400;
}

.servizi {
    height: fit-content;
    width: 100%;
    background-color: #fff;
    padding-left: 100px;
    padding-right: 100px;
}

.serviziTitle {
    height: fit-content;
    width: 100%;
    padding-top: 80px;
}

.serviziTitle h1 {
    color: #000;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}

.serviziTitle p {
    color: #000;
    font-size: 24px;
}

.servicesContent {
    padding-bottom: 100px;
}

.container {
    width: 100%;
    height: fit-content;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 30px;
    margin-top: 50px;
}

.service {
    text-align: center;
    padding: 35px 10px;
    border-radius: 5px;
    font-size: 14px;
    background-color: #efefef;
    height: fit-content;
    padding-bottom: 50px;
}

.service i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #000;
}

.service h2 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    padding: 10px;
}

.service p {
    color: #000;
    padding: 10px;
}

.contatti {
    height: fit-content;
    width: 100%;
    background-color: #efefef;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
}

.contattiTitle {
    height: fit-content;
    width: 100%;
    padding-top: 80px;
}

.contattiTitle h1 {
    color: #000;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}

.contattiTitle p {
    color: #000;
    font-size: 24px;
}

.social-links {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    width: 65px;
    height: 65px;
    color: #fff;
    background-color: #000;
    border: 2px solid transparent;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem;
    transition: all 0.4s ease;
    font-weight: bold;
    font-size: 20px;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer {
    height: fit-content;
    width: 100%;
    background-color: #1f1e1e;
    display: flex;
    flex-direction: column;
}

.info {
    height: fit-content;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.info a, .developer a {
    color: #fff;
    transition: 0.4s;
    width: fit-content;
}

.info a:hover, .developer a:hover {
    opacity: 0.6;
}

.developer {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
}

.developer p {
    color: #cfcdcd;
}

.developer span {
    font-weight: bold;
}





