:root {
    --black: #081025;
    --white: #fdfbfd;
    --debu: red;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
    /* font-family: 'DM Sans', sans-serif; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--black);
}
header {
    /* outline: 1px solid red; */
    width: 100%;
    min-width: 320px;
    height: 80px;
    display: flex;
}
header nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
header ul {
    display: flex;
    list-style: none;
    gap: 10px;
    color: var(--black);
    font-size: 1.8rem;
}

header .big-logo {
    display: none;
}
header img {
    height: 38px;
}
.header--hero {
    width: 100%;
    min-width: 320px;
}
.header--hero img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.about--main {
    min-width: 320px;
    margin: 40px 0;
    padding: 0 30px;
    color: inherit;
    font-size: 1.8rem;
    line-height: 2.2rem;
}
.main--product-detail {
    background-color: var(--white);
    width: 100%;
    min-width: 320px;
    height: auto;
    padding: 20px 0 0;
    color: inherit;
}

.product-detail--title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    color: inherit;
}
.product-detail--title h2 {
    font-size: 2.8rem;
    color: inherit;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}
.product-detail--title p {
    font-size: 1.6rem;
    margin-bottom: 50px;
    text-align: center;
}

.product-detail--card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    min-width: 288px;
    max-width: 400px;
    height: 180px;
    margin: 15px auto;
    padding: 15px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
    color: inherit;
}
.product-detail--card img {
    width: 60px;
}
.product-detail--card h3 {
    margin-bottom: 10px;
}
.product-detail--card p {
    font-size: 1.4rem;
}
.contact--main {
    position: relative;
    width: 100%;
    height: 550px;
    margin-top: 80px;
}
.background-img--contact-main {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: 550px;
    background-image: url("../images/home-dots-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.suscription-area--contact-main {
    position: relative;
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    padding: 40px; 
    width: calc(100% - 65px);
    max-width: 500px;
    min-width: 150px;
    height: auto;
    background-color: black;
    top: calc(20%);
    margin: 0px auto;
    color: var(--white);
}
.suscription-area--contact-main h2 {
    width: auto;
    height: 42px;
    font-size: 1.6rem;
    border-bottom: 1px solid white;
}
.suscription-area--contact-main p {
    font-size: 1.2rem;
} 

.suscription-area--contact-main button {
    height: 40px;
    min-width: 220px;
    border: 1px solid white;
    background-color: black;

}
.suscription-area--contact-main a {
    color: white;
    text-decoration: none;
}
footer {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 160px;
    font-size: 1.4rem;
    text-decoration: none;
}
footer a {
    text-decoration: none;
    /* width: 80px; */
}
.social-icon {
    width: 20px;
    height: 20px;
}
.social--footer {
    display: flex;
    gap: 20px;
    list-style: none;
    text-decoration: none;
}
.icon-facebook {
    background: url(../images/facebook-icon.svg);
}
.icon-twitter {
    background: url(../images/twitter-icon.svg);
}
.icon-instagram {
    background: url(../images/instagram-icon.svg);
}
footer span {
    transform: rotate(-90deg);
    font-size: 1.8rem;
    font-weight: bolder;
}
 








