@font-face {
    font-family: "Poppins";
    src: url("./Poppins-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("./Poppins-Bold.ttf");
    font-weight: bold;
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
}

h2 {
    color: #BC8D3F;
    text-transform: uppercase;
    font-size: 2rem;
    margin: 0px;
    max-width: 650px;
}

h3 {
    color: #4EBBBC;
    text-transform: uppercase;
    font-size: 1.75rem;
}

.logo-image {
    width: 100%; 
    max-width: 300px; 
    height: auto;
}

.slogan-image {
    width: 100%; 
    max-width: 350px; 
    height: auto;
}

.hero {
    width: 100%;
    background-color: #49bcbb;
    background-image: url("../img/bg-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    width: 100%;
    padding: 32px 0;
    display: flex;
    flex-direction: row;
}

.hero-left {
    flex: 1;
}

.hero-left img {
    display: none;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
}

.hero-logo {
    display: contents;
    margin: 0;
}

.product {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-content {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.product-left {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: flex-start;
    padding: 32px 16px;
}

.product-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 16px;
}

.product-list {
    color: #4EBBBC;
}

.video {
    width: 100%;
    margin-bottom: -8px;
}

.video video {
    width: 100%;
}

.info {
    width: 100%;
    background-color: #f8f3ef;
    background-image: url("../img/bg-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-content {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.info-left {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: flex-start;
}

.info-left img {
    display: none;
}

.info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 16px;
}

.info-content article {
    max-width: 600px;
}

.info-list {
    list-style: none;
    color: #4EBBBC;
    padding: 0;
}

.info-list > li {
    margin: 16px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image: radial-gradient(white, transparent);
}

.info-list > li img {
    margin-right: 16px;
    width: 100%; 
    max-width: 120px; 
    height: auto;
}

.info h3, p {
    margin: 0;
}

.contact {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    width: 100%;
    max-width: 1280px;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
    margin: 16px;
}

.center {
    justify-content: center;
}

.start {
    align-items: start;
}

.stretch {
    flex: 1;
}

.contact-form {
    width: 100%;
    max-width: 960px;
    box-sizing: border-box;
    padding: 16px;
}

.contact-form label {
    color: #4EBBBC;
    margin-bottom: 8px;
}

.contact-form button {
    background-color: #4EBBBC;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 15px 64px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    margin: 8px;
}

.contact-form button:hover {
    cursor: pointer;
    background-color: #2d8a85;
}

input {
    height: 3rem;
}

input, textarea {
    background-color: #e2e2e2;
    border: none;
    border-radius: 12px;
    flex: 1;
    font-size: 1rem;
    padding: 8px;
}

@media(max-width: 980px) {
    .logo-image {
        max-width: 220px;
    }

    .slogan-image {
        max-width: 260px;
    }

    body {
        font-size: 1.2rem;
    }

    h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.55rem;
    }

    .info h3, p {
        text-align: center;
    }

    .hero {
        background-image: none;
    }

    .hero-content {
        padding: 0;
        flex-direction: column-reverse;
    }

    .product-content {
        flex-direction: column-reverse;
    }

    .product-left {
        overflow: hidden;
        justify-content: center;
    }

    .product-right {
        align-items: center;
    }

    .info {
        background: none;
    }
    
    .info-content {
        padding: 0;
        flex-direction: column-reverse;
    }

    .info-right {
        align-items: center;
    }

    .row {
        flex-direction: column;
    }

    .info-list > li {
        flex-direction: column;
    }

    .info-list > li img {
        margin-right: 0;
        max-width: 90px;
    }

    .hero-left img {
        display: block !important;
    }

    .info-left img {
        display: block !important;
    }
}