@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0A018C;
    padding: 20px;
}

.header-upper-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo {
    height: 82px;
    width: auto;
}

.header-buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.header-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background: #75CC20;
    color: #000000;
    padding: 10px 15px;
    border-radius: 10px;
}

.header-buttons h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1em;
    text-align: center;
}

.header-navigation-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}

.header-navigation {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.header-nav {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1em;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    background: #FFFFFF;
    padding: 100px 0;
    gap: 40px;
    border-top: 1px solid #EEEEEE;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 15%;
}

.footer-content h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 15px;
    line-height: 1em;
}

.footer-content h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #999999;
    font-size: 15px;
    line-height: 1em;
}

.home-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: url(../img/elite-banner.png) no-repeat center center;
    background-size: cover;
    height: 500px;
    gap: 30px;
}

.home-banner-context {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.64);
    width: 100%;
    padding: 20px;
}

.home-banner-context h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1em;
    text-align: center;
}

.home-banner-context h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #75CC20;
    font-size: 40px;
    line-height: 1em;
    text-align: center;
}

.home-banner-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-banner-button a {
    text-decoration: none;
    background: #0A018C;
    border-radius: 10px;
    padding: 13px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #75CC20;
    font-size: 14px;
    line-height: 1em;
    text-align: center;
}

.home-info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
    padding: 80px 0;
    margin: 0 auto;
    gap: 80px 0;
}

.home-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 25%;
}

.home-info h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    line-height: 1em;
    text-align: center;
}

.home-sheds-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: url(../img/home-2-bg.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 0 0 80px;
}

.home-sheds {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 25%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
}

.home-sheds img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-sheds-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px;
    border-radius: 19px;
    width: 90%;
    bottom: 40px;
}

.home-sheds-label h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #999999;
    font-size: 13px;
    line-height: 1.2em;
    text-align: center;
}

.home-sheds-label h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    line-height: 1em;
    text-align: center;
}

.why-choose-steel-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    width: 100%;
    gap: 10px;
    background: #0A018C;
}

.why-choose-steel-contexts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 40%;
}

.why-choose-steel-contexts h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1em;
    text-align: left;
}

.why-choose-steel-contexts h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.3em;
    text-align: left;
    width: 80%;
}

.why-choose-steel-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 474px;
    border-radius: 20px;
    overflow: hidden;
    height: 455px;
}

.why-choose-steel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-form-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    padding: 0 80px;
}

.home-form-contexts-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 40%;
}

.home-form-contexts-container h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    line-height: 1em;
    text-align: center;
}

.home-form-contexts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-form-contexts-container h2,
.home-form-contexts h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #777777;
    font-size: 15px;
    line-height: 1.3em;
    text-align: left;
    width: 80%;
}

.home-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 40%;
    background: url(../img/form-bg.png) no-repeat center center;
    background-size: cover;
    padding: 80px 0 100px;
}

.home-form-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-form-title h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 32px;
    line-height: 1em;
    text-align: center;
}

.home-form-title h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1em;
    text-align: center;
}

.home-form-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    padding: 0 80px;
}

.home-form-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
}

.home-form-col label {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1.2em;
}

.home-form-col input,
.home-form-col textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2em;
    color: #000000;
    background: #EEEEEE;
}

.home-form-col input::placeholder,
.home-form-col textarea::placeholder {
    color: #999999;
}

.home-form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #000000;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1em;
}

.meet-the-team-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: url(../img/meet-the-team-bg.png) no-repeat center center;
    background-size: cover;
    height: 500px;
    gap: 30px;
    padding: 0 50px;
}

.meet-the-team-banner-context {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 20px;
    border-radius: 20px;
}

.meet-the-team-banner-context h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #75CC20;
    font-size: 40px;
    line-height: 1em;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 0px 0px 40px;
}

.meet-the-team-banner-context h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1em;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 0px 0px 40px;
}

.meet-the-team-banner-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.meet-the-team-banner-button a {
    text-decoration: none;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 13px 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 14px;
    line-height: 1em;
    text-align: center;
}

.meet-the-team-sheds-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-size: cover;
    width: 100%;
    padding: 80px 0;
}

.meet-the-team-sheds {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 25%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
}

.meet-the-team-sheds img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meet-the-team-sheds-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px;
    border-radius: 19px;
    width: 90%;
    bottom: 40px;
}

.meet-the-team-sheds-label h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #999999;
    font-size: 13px;
    line-height: 1.2em;
    text-align: center;
}

.meet-the-team-sheds-label h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    line-height: 1em;
    text-align: center;
}

.meet-the-team-info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
    padding: 80px 0;
    margin: 0 auto;
    gap: 80px 0;
}

.meet-the-team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 25%;
}

.meet-the-team-info h1 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 22px;
    line-height: 1em;
    text-align: center;
}

.meet-the-team-members-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 80px 50px;
}

.meet-the-team-members {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 300px;
}

.meet-the-team-members img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.meet-the-team-member-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.meet-the-team-member-info h1 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 22px;
    line-height: 1em;
    text-align: left;
}

.meet-the-team-member-info a {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999999;
    font-size: 18px;
    line-height: 1.2em;
    text-align: left;
    width: 90%;
}

@media (max-width: 1199px) {
    .home-info-container,
    .meet-the-team-info-container {
        width: 100%;
    }

    .home-sheds,
    .meet-the-team-sheds {
        width: 30%;
    }

    .why-choose-steel-images {
        width: 45%;
    }

    .why-choose-steel-contexts h1 {
        font-size: 35px;
    }

    .why-choose-steel-contexts {
        width: 45%;
    }

    .why-choose-steel-contexts h2 {
        width: 90%;
    }

    .home-form-container {
        padding: 0;
    }

    .home-form-contexts-container,
    .home-form {
        width: 45%;
    }

    .home-form-form {
        padding: 0 40px;
    }

    .meet-the-team-members-container {
        padding: 80px 30px;
    }

    .meet-the-team-members img {
        height: 230px;
    }

    .meet-the-team-members h1 {
        font-size: 20px;
    }

    .meet-the-team-members a {
        font-size: 16px;
    }
}

@media (max-width: 809px) {
    .mobile-menu-btn {
        display: block;
        color: #FFFFFF;
        font-size: 30px;
    }

    .header-navigation {
        display: none;
    }

    .header-upper-container {
        flex-direction: column;
        gap: 20px;
    }

    .header-buttons-container {
        gap: 20px;
    }

    .header-container {
        gap: 20px;
    }

    .home-banner-context h1,
    .home-banner-context h2,
    .meet-the-team-banner-context h1,
    .meet-the-team-banner-context h2 {
        font-size: 30px;
    }

    .home-banner-container,
    .meet-the-team-banner-container {
        height: 339px;
    }

    .home-info {
        width: 40%;
        gap: 10px;
    }

    .meet-the-team-info {
        width: 100%;
        gap: 10px;
    }

    .home-info-container,
    .meet-the-team-info-container {
        gap: 40px 20px;
        padding: 40px 20px;
    }

    .home-sheds-container {
        flex-direction: column;
        padding: 0 0 40px;
    }

    .meet-the-team-sheds-container {
        flex-direction: column;
        padding: 40px 0;
    }

    .home-sheds,
    .meet-the-team-sheds {
        width: 80%;
        height: 400px;
    }

    .why-choose-steel-container {
        flex-direction: column;
    }

    .why-choose-steel-container {
        padding: 40px 0;
    }

    .why-choose-steel-contexts {
        width: 80%;
    }

    .why-choose-steel-images {
        width: 80%;
        height: 350px;
    }

    .why-choose-steel-container {
        gap: 50px;
    }

    .why-choose-steel-contexts h1 {
        font-size: 30px;
    }

    .home-form-container {
        flex-direction: column-reverse;
    }

    .home-form-contexts-container,
    .home-form {
        width: 80%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 100px;
    }

    .footer-content {
        width: 100%;
    }

    .meet-the-team-members-container {
        padding: 40px 20px;
    }

    .meet-the-team-members {
        width: 400px;
    }

    .meet-the-team-members img {
        height: 350px;
    }
}