@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;
    gap: 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: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background: #75CC20;
    color: #000000;
    padding: 10px 15px;
    border-radius: 10px;
    gap: 5px;
    transition: 0.3s ease-in-out;
}

.header-buttons-context {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header-buttons h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1em;
    text-align: center;
}

.header-buttons-context h1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-buttons-context h1 img {
    height: 18px;
    object-fit: cover;
}

.header-buttons:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}

.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: 16px;
    line-height: 1em;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.header-nav:hover {
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

/*.header-nav:hover svg {*/
/*    animation: moveDown 1s ease-in-out infinite;*/
/*}*/

/*@keyframes moveDown {*/
/*    0% {*/
/*        transform: translateY(0);*/
/*    }*/
/*    50% {*/
/*        transform: translateY(3px);*/
/*    }*/
/*    100% {*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

.dropdown-container {
    position: relative;
}

.dropdown-models-and-styles,
.dropdown-resources {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0A018C;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    min-width: 220px;
    z-index: 1000;
    margin-top: 10px;
    padding: 10px 0;
}

.dropdown-models-and-styles.active,
.dropdown-resources.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-trigger svg {
    transition: transform 0.3s;
}

.dropdown-trigger.active svg {
    transform: rotate(180deg);
}
    
.mobile-menu-btn {
    display: none;
}

.header-top-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    background: #75CC20;
}

.header-top-banner h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 22px;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    width: 90%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid #EEEEEE;
    width: 100%;
}

.footer-content-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.footer-content-socials a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer-content-socials a:hover {
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

.footer-content-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.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: 30px;
    gap: 10px;
}

.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.template {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 50%;
    background: url(../img/form-bg.png) no-repeat center center;
    background-size: cover;
    padding: 30px 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;
    position: relative;
}

.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%;
}

.our-top-models-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    gap: 40px;
}

.our-top-models-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.our-top-models-title h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 32px;
    line-height: 1em;
    text-align: center;
}

.our-top-models-title h2 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999999;
    font-size: 15px;
    letter-spacing: -0.01em;
    line-height: 1.3em;
    text-align: center;
}

.our-top-models-lists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px 10px;
}

.our-top-models {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 350px;
    text-decoration: none;
}

.our-top-models img {
    width: 100%;
    height: 227.5px;
    object-fit: cover;
    border-radius: 10px;
}

.our-top-models-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.our-top-models-info h3 {
    font-family: "Inter", sans-serif;
    font-weight: 550;
    color: #000000;
    font-size: 15px;
    letter-spacing: -0.01em;
    line-height: 1em;
    text-align: left;
}

.our-top-models-info h4 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999999;
    font-size: 15px;
    letter-spacing: -0.01em;
    line-height: 1em;
    text-align: left;
}

.featured-models-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;
}

.featured-models-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 25%;
}

.featured-models-info h1 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 22px;
    line-height: 1em;
    text-align: center;
}

.featured-models-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;
}

.featured-models {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 25%;
    overflow: hidden;
    gap: 20px;
}

.featured-models img {
    width: 100%;
    height: 353.5px;
    object-fit: cover;
    border-radius: 20px;
}

.featured-models-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.featured-models-label h1 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1em;
    text-align: left;
}

.featured-models-label h2 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #75CC20;
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    text-align: left;
    width: 80%;
}

.featured-models-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: url(../img/featured-model-banner-bg.png) no-repeat center center;
    background-size: cover;
    height: 500px;
    gap: 30px;
}

.featured-models-banner-context {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 20px;
    gap: 25px;
}

.featured-models-banner-context h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 32px;
    letter-spacing: -0.03em;
    line-height: 1em;
    text-align: center;
}

.featured-models-banner-context h2 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999999;
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 1.1em;
    text-align: center;
    width: 30%;
}

.featured-models-banner-context a {
    text-decoration: none;
    background: #75CC20;
    border-radius: 10px;
    padding: 15px 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    text-align: center;
}

.template-navigation-header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #F9F9F9;
    padding: 30px 100px 30px;
}

.template-navigation-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.template-nav,
.template-navigation-header h5 {
    text-decoration: none;
    color: #767676;
    transition: 0.3s ease;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.template-nav:hover {
    color: #555;
    transition: 0.3s ease;
}

.template-nav.active {
    color: #242424;
    font-weight: 600;
}

.product-category-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.product-container {
    display: flex;
    flex-direction: row;
    padding: 50px 0;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
    background: #75cc207a;
    width: 90%;
    border-radius: 50px;
}

.product-description {
    display: flex;
    flex-direction: column;
    width: 45%;
    gap: 20px;
}

.product-description h1 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-transform: capitalize;
}

.product-description h2 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
}

.product-image {
    display: flex;
    width: 45%;
    position: relative;
    height: 400px;
}

.product-description-call-now {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 20px 20px 15px;
    border: 2px solid #0A018C;
    border-radius: 20px;
}

.product-description-call-now h1 {
    font-family: "Poppins", sans-serif;
    color: #737a85;
    font-size: 20px;
    font-weight: 600;
}

.product-description-call-now h2 {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.product-description-call-now h2 a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #0A018C;
    font-size: 24px;
    font-weight: 600;
}

.product-image-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.product-image-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: absolute;
    background-color: #0A018C;
    padding: 10px 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    border-radius: 3px;
    bottom: -20px;
    right: 0;
}

.more-product-lists-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 100px;
}

.more-product-lists-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-transform: capitalize;
}

.more-product-lists-cat-temp-1 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 230px 50px;
    padding-bottom: 200px;
    width: 100%;
}

.new-style-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40%;
    position: relative;
}

.other-products-category-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 100px;
}

.other-products-category-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
}

.other-products-category-lists {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 170px 20px;
    padding: 140px 0 0;
}

.other-products-category-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 32%;
    position: relative;
    border: 1px solid #0A018C;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    border-radius: 20px;
    padding: 20px 0;
    height: 170px;
}

.other-products-category-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    text-decoration: none;
}

.other-products-category-card-image {
    display: flex;
    width: 90%;
    height: 250px;
    border-radius: 12px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.12);
    overflow: hidden;
    position: absolute;
    top: -140px;
}

.other-products-category-card-image img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.other-products-category-card h4 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: rgb(40, 40, 40);
    text-align: center;
    padding: 0 10px;
}

.bottom-page-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 50px;
}

.bottom-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 50px;
}

.bottom-page-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-align: center;
}

.bottom-page-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
    width: 80%;
}

.bottom-page-content h2 a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
}

.bottom-page-content h2 a:hover {
    text-decoration: underline;
}

.bottom-page-content-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap: 20px;
    width: 75%;
}

.bottom-page-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    line-height: 1;
}

.bottom-page-content p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
}

.bottom-page-content p a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
}

.bottom-page-content p a:hover {
    text-decoration: underline;
}

.bottom-page-content ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    list-style-position: inside;
}

.bottom-page-content ul li {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
}

.bottom-page-content ul li img {
    width: 15px;
    height: 15px;
    background: #8FC24D;
    padding: 5px;
    border-radius: 3px;
}

.bottom-page-content ul li strong {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
}

.bottom-page-hr {
    display: flex;
    width: 90%;
}

.single-shed-price-new-style {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.single-shed-price-new-style h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #242424;
    text-align: left;
    line-height: 1;
}

.single-shed-price-new-style h2 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0A018C;
    text-align: left;
    line-height: 1;
    padding: 0 20px;
}

.thank-you-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 50px;
    height: 100vh;
}

.thank-you-page img {
    width: 150px;
    background: #0A018C;
    border-radius: 8px;
    padding: 8px;
}

.thank-you-page p {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2em;
    text-align: center;
}

.home-button {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0A018C;
    color: #ffffff;
    padding: 12px 20px 12px 15px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    border-radius: 10px;
    cursor: pointer;
}

.home-button:hover {
    background: #0A018C96;
}

.meet-the-team-element-1 {
    display: block;
    width: 100%;
    background: none;
    position: absolute;
    bottom: 0;
}

.meet-the-team-element-1 svg {
    display: flex;
    transform: rotateX(0deg);
}

.elementor-shape-fill-meet-the-team {
    fill: #fff;
    transform-origin: center;
}

.the-elite-advantage-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
    gap: 50px;
}

.the-elite-advantage-context {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 35%;
}

.the-elite-advantage-context h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1em;
    text-align: left;
    color: #0A018C;
    text-transform: uppercase;
}

.the-elite-advantage-context ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    list-style: inside;
}

.the-elite-advantage-context ul li {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1em;
    text-align: left;
    color: #333333;
    padding-left: 10px;
}

.the-elite-advantage-context ul li strong {
    font-weight: 700;
}

.the-elite-advantage-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    width: 45%;
}

.the-elite-advantage-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.home-form-container.meet-the-team {
    gap: 50px;
}

@media (max-width: 1199px) {
    .home-info-container,
    .meet-the-team-info-container,
    .featured-models-info-container {
        width: 100%;
    }

    .home-sheds,
    .meet-the-team-sheds,
    .featured-models {
        width: 30%;
    }

    .featured-models img {
        height: 236.5px;
    }

    .featured-models-label h1 {
        font-size: 20px;
    }

    .featured-models-label h2 {
        font-size: 16px;
    }

    .featured-models-info h1 {
        font-size: 20px;
    }

    .our-top-models-container {
        padding: 80px 30px;
    }

    .our-top-models {
        width: 230px;
    }

    .our-top-models img {
        height: 153.5px;
    }

    .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.template {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        width: 100%;
        background: url(../img/form-bg.png) no-repeat center center;
        background-size: cover;
        padding: 30px 0 100px;
    }

    .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;
    }

    .featured-models-banner-context h2 {
        width: 40%;
        font-size: 20px;
    }

    .header-container {
        gap: 20px;
    }

    .product-container {
        padding: 100px 20px 50px;
    }

    .product-description-call-now h2,
    .product-description-call-now h2 a {
        font-size: 22px;
    }

    .new-style-cat-card {
        width: 45%;
    }

    .more-product-lists-container,
    .other-products-category-container {
        padding: 50px 20px;
    }

    .other-products-category-lists {
        gap: 130px 20px;
    }

    .other-products-category-card {
        height: 145px;
    }

    .other-products-category-card-image {
        height: 200px;
        top: -110px;
    }

    .bottom-page-content {
        padding: 0 30px;
    }

    .bottom-page-content h1 {
        width: 90%;
    }

    .bottom-page-content h2 {
        width: 85%;
    }

    .bottom-page-content-texts {
        width: 85%;
    }

    .single-shed-price-new-style h4 {
        font-size: 18px;
    }
    
    .single-shed-price-new-style h2 {
        font-size: 28px;
    }
    
    .header-top-banner h6 {
        font-size: 18px;
    }
    
    .the-elite-advantage-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .the-elite-advantage-context,
    .the-elite-advantage-image {
        width: 90%;
    }
}

@media (max-width: 809px) {
    .mobile-menu-btn {
        display: block;
        color: #FFFFFF;
        font-size: 30px;
    }

    .header-navigation {
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .header-navigation.open {
        max-height: 100vh;
        flex-direction: column;
        align-items: flex-end;
    }

    .header-navigation-container.gap-open {
        gap: 10px;
    }

    .header-upper-container {
        flex-direction: column;
        gap: 20px;
    }

    .header-buttons-container {
        gap: 20px;
    }

    .header-container {
        gap: 20px;
    }
    
    .dropdown-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .dropdown-models-and-styles,
    .dropdown-resources {
        position: static;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        background: transparent;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        transform: none;
        transition: max-height 0.3s ease-out;
    }

    .dropdown-models-and-styles.active,
    .dropdown-resources.active {
        max-height: 1000px;
        transition: max-height 0.4s ease-in;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .dropdown-models-and-styles a,
    .dropdown-resources a {
        padding-left: 30px;
    }

    .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,
    .featured-models-info {
        width: 100%;
        gap: 10px;
    }

    .home-info-container,
    .meet-the-team-info-container,
    .featured-models-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 50px;
    }

    .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;
    }

    .our-top-models-container {
        padding: 40px 20px;
    }

    .our-top-models-title {
        gap: 5px;
    }

    .our-top-models-title h1 {
        font-size: 24px;
        letter-spacing: -0.02em;
    }

    .our-top-models {
        width: 100%;
    }

    .our-top-models img {
        height: 221px;
    }

    .featured-models-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .featured-models {
        width: 100%;
    }

    .featured-models img {
        height: 350px;
    }

    .featured-models-label .blue {
        color: #0B028C;
    }
    
    .featured-models-banner-context {
        gap: 15px;
    }

    .featured-models-banner-context h1 {
        font-size: 24px;
        letter-spacing: -0.02em;
    }
    
    .featured-models-banner-context h2 {
        font-size: 20px;
        width: 90%;
    }

    .featured-models-banner-context a {
        padding: 15px 20px;
    }

    .template-navigation-header-container {
        padding: 30px;
    }

    .product-container {
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
    }

    .product-description {
        order: 2; /* Description in middle */
        width: 90%;
    }

    .product-image {
        width: 100%;
    }

    .product-description-call-now h1 {
        font-size: 16px;
    }

    .product-description-call-now h2,
    .product-description-call-now h2 a {
        font-size: 18px;
    }

    .new-style-cat-card {
        width: 95%;
    }

    .other-products-category-container h1,
    .locations-we-serve h1 {
        text-align: center;
    }

    .other-products-category-card {
        width: 50%;
    }

    .more-product-list-card,
    .other-products-category-card {
        width: 80%;
    }

    .bottom-page-content {
        padding: 0 20px;
    }

    .bottom-page-content h1 {
        width: 100%;
    }

    .bottom-page-content h2 {
        width: 90%;
    }

    .bottom-page-content-texts {
        width: 90%;
    }

    .single-shed-price-new-style h4 {
        font-size: 14px;
    }
    
    .single-shed-price-new-style h2 {
        font-size: 20px;
    }
    
    .header-top-banner h6 {
        font-size: 16px;
    }
    
    .the-elite-advantage-container {
        padding: 30px 0;
    }
    
    .the-elite-advantage-image img {
        height: 300px;
    }
}