@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    list-style: none;
    text-decoration: none;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(82, 82, 84);
    border-radius: 10px;
}

.container {
    max-width: 1068px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 4.5rem 0 3rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 8%;
    justify-content: space-between;
    /* box-shadow: -3px 0px 23px #44444436; */
    z-index: 666;
}

.dark {
    background-color: #18212D;
}

.dark .navbar {
    background-color: #18212D;
}

.navbar .logo img {
    width: 105px;
    cursor: pointer;
}

.btn {
    box-shadow: none;
    /* border: 2px solid #fff; */
    padding: 10px 15px;
    color: #fff;
    background-color: #f58220;
    border-radius: .5rem;
    font-size: 1.2rem;
    font-weight: 500;
    box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
    cursor: pointer;
    transition: .3s;
    display: inline-block;
}

.btn:hover {
    transform: scale(1.1);

}

.menu-menu {
    cursor: pointer;
}

.moon {
    display: none;
}

.sun {
    display: inline;
}

.dark .moon {
    display: inline;
}

.dark .sun {
    display: none;
}

.dark .home {
    border-color: #23364e;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
}

.dark .industria {
    border-color: #23364e;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
}

.home {
    margin-top: 5rem;
    background: linear-gradient(to bottom, transparent 0%, #00000070 50%), url(../image/UISANOVA369.png);
    /* filter: brightness(50%); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 340px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.514);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    /* box-shadow: 0 8px 23px hsla(0, 0%, 0%, 0.639); */
}

.home-text {
    padding-left: 35px;
}

.home-text h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* text-shadow: 
    -2px -2px 0px #F58220, 
    -2px 2px 0px #F58220,                    
     2px -2px 0px #F58220,                  
     2px 0px 0px #F58220; */
    /* border: #F58220 solid; */
    padding-bottom: 3rem;
}

.dark .home-text h1 {
    /* text-shadow: 
    -2px -2px 0px #1E2537, 
    -2px 2px 0px #1E2537,                    
     2px -2px 0px #1E2537,                  
     2px 0px 0px #1E2537; */
}

.industria {
    margin-top: 3rem;
    background: linear-gradient(to bottom, transparent 0%, #00000070 50%), url(../image/UISANOVA37.jpg);
    /* filter: brightness(50%); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 340px;
    border-radius: 1.5rem;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.514);
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    /* box-shadow: 0 12px 34px hsla(0, 0%, 0%, 0.639); */
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: hsla(0, 0%, 0%, 0.721);
    z-index: -1;
    opacity: 0;
}

.logo-forDark {
    display: none;
}

.dark .logo-forDark {
    display: block;
}

.dark .logo-forLight {
    display: none;
}

.transition {
    transition: 1s cubic-bezier(0.4, 0.1, 0.4, 1) !important;
}

.dark .btn {
    background: #1E2537;
}

@media (max-width: 1080px) {
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 450px) {
    .home-text h1 {
        font-size: 2rem;
    }

    .btn {
        font-size: 0.96rem;
    }
}