@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
}

.header-banner-container {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(255, 0, 0, 1);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    /* height: 50px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.header-banner {
    display: flex;
    flex-direction: column;
}

.header-banner h2 {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.header-navigation-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #FFF;
    height: 52px;
}

.header-logo-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.header-logo-button img {
    width: 60%;
}

.design-price-button {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    font-weight: 600;
    right: 50px;
    background: #F74900;
    padding: 0 25px;
    color: #FFFFFF;
    height: 42px;
    font-size: 12px;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
    transition: 0.3s ease;
    width: 12%;
    margin-right: 30px;
    text-align: center;
}

.design-price-button:hover {
    background: #000000;
    transition: 0.3s ease;
}

.header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    position: relative;
}

.header-nav > a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 12px;
    font-family: "Lato", sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
}

.header-nav a i {
    color: rgba(82, 82, 82, .45);
    font-size: clamp(6px, 50%, 18px);
}

.header-nav a:hover {
    color: rgb(247,73,0);
    transition: 0.3s ease;
}

.header-nav a:hover svg path {
    stroke: rgb(247,73,0);
    transition: stroke 0.3s ease;
}

.header-nav-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #FFFFFF;
    top: 200%;
    left: 0;
    z-index: 999;
    padding: 10px 30px 15px 30px;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    gap: 20px;
    width: auto;
    min-width: 0;
}

/* .header-nav > a:hover + .header-nav-dropdown,
.header-nav-dropdown:hover {
    display: flex;
} */

.header-nav-dropdown-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.header-nav-dropdown-row a {
    padding: 8px 0;
    color: #838383;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    white-space: nowrap;
}

.header-nav-dropdown-row h1 a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 0;
    line-height: 1.3;
    font-family: "Roboto", sans-serif;
}

.header-nav-dropdown-row h1:hover {
    color: rgb(247,73,0);
    transition: 0.3s ease;
}

.header-nav-dropdown-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header-nav-dropdown-col-100 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header-nav > a.active + .header-nav-dropdown {
    display: flex;
}

.header-nav-dropdown:nth-child(2),
.header-nav-dropdown:nth-child(4),
.header-nav-dropdown:nth-child(6),
.header-nav-dropdown:nth-child(8),
.header-nav-dropdown:nth-child(10),
.header-nav-dropdown:nth-child(12),
.header-nav-dropdown:nth-child(14),
.header-nav-dropdown:nth-child(16),
.header-nav-dropdown:nth-child(18) {
    width: max-content;
}

.home-video-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #FFF;
    position: relative;
}

.video-banner,
.video-banner.state-landing-page {
    display: flex;
    width: 100%;
}

.video-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.video-banner video {
    width: 100%;
    height: 800.432px;
    object-fit: cover;
}

.video-banner.state-landing-page video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.video-banner-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    text-align: center;
    gap: 20px;
}

.video-banner-texts h1 {
    font-family: "Poppins", sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 65px;
}

.video-banner-texts h2 {
    font-family: "Poppins", sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 65px;
    width: 60%;
}

.video-banner-texts h3 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 45px;
}

.video-banner-texts p {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
    width: 60%;
    margin-bottom: 20px;
}

.view-all-buildings-button {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 15px 20px;
    margin-top: 50px;
    transition: 0.3s ease;
}

.view-all-buildings-button:hover {
    background: #000000;
    transition: 0.3s ease;
}

.dayton-barns-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #FFF;
    padding: 50px 0 0 0;
}

.db-team {
    display: flex;
    flex-direction: row;
    width: 85%;
    justify-content: center;
    gap: 10px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 25px;
}

.team h1 {
    font-size: 32px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.team h1 strong {
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    color: #ff0000;
    font-weight: 600;
}

.team-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    gap: 20px;
}

.team-card-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
}

.team-card-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.team-card-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.team-card-text h2 {
    font-size: 28px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    text-align: center;
    width: 90%;
}

.team-card-text p {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    width: 95%;
    text-align: center;
}

.team-card-text a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 15px 20px;
    transition: 0.3s ease;
    margin: 10px;
    text-align: center;
    line-height: 1;
}

.team-card-text a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.top-selling-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/DBMAIN-PhotoBackground.png) no-repeat center center;
    background-size: cover;
    position: relative;
}

.top-selling-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
}

.white-curve {
    display: flex;
    flex-direction: column;
}

.elementor-shape-top {
    top: -1px;
}

.elementor-shape {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.elementor-shape svg {
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: calc(100% + 1.3px);
}

.elementor-shape .elementor-shape-fill {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}

.top-selling {
    display: flex;
    flex-direction: row;
    margin-top: 200px;
    margin-bottom: 50px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.top-selling-contents {
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 40px;
    z-index: 9;
}

.top-selling-contents h1 {
    font-family: "Poppins", sans-serif;
    text-align: left;
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    line-height: 1.6;
}

.top-selling-contents h1 span {
    color: #f74900;
}

.top-selling-contents p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    width: 98%;
}

.top-selling-contents p a {
    color: #242424;
    font-weight: 600;
}

.top-selling-vid-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9;
    width: 40%;
}

.top-selling-vid-buttons video {
    width: 95%;
    height: auto;
}

.top-selling-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    justify-content: center;
}

.top-selling-buttons a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 15px 20px;
    transition: 0.3s ease;
    margin: 10px;
    text-align: center;
    line-height: 1;
    width: 85%;
}

.top-selling-buttons a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.dayton-barns-form-1-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.form-1-image {
    display: flex;
    width: 50%;
}

.form-1-image img {
    width: 100%;
    height: 850px;
    object-fit: cover;
}

.form-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 20px;
    padding: 30px;
}

.form-1 h3 {
    font-family: "Poppins", sans-serif;
    color: #000000;
    line-height: 1;
    font-weight: 600;
    font-size: 22px;
}

/*.form-1 form {*/
/*    box-shadow: 0 4px 18px 0 rgba(0,0,0,.3);*/
/*    border-radius: 10px;*/
/*    border-bottom: 5px solid rgba(0, 0, 0, 1);*/
/*    width: 90%;*/
/*}*/

.form-1-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 31px 5px;
    border-bottom: 1px solid rgba(82,92,105,0.11);
    text-align: center;
    gap: 10px;
}

.form-1-header h1 {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.form-1-header p {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 400;
    opacity: .8;
    margin: 0 0 15px 0;
}

.form-1-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 31px;
}

.form-1-contents input,
.form-1-contents textarea {
    width: 95%;
    padding: 15px 10px;
    border-radius: 5px;
    border: 1px solid rgba(82,92,105,0.11);
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    border: 1px solid rgba(0,0,0,.1);
    background-color: rgba(0, 0, 0, 0.04);
    font-size: 16px;
}

.form-1-contents input:focus,
.form-1-contents textarea:focus {
    background-color: rgba(242,88,48,0.08);
    border-color: rgba(242,88,48,0.25);
    outline: none;
}

.form-1-contents input[type="submit"] {
    padding: 15px 20px;
    width: 100%;
    min-height: 52px;
    background-color: rgba(0,0,0,1);
    color: #fff;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-1-contents input[type="submit"]:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #3E3E3E;
    transition: 0.3s ease;
}

.customize-building-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    background: url(../img/DaytonBarns_3d_Builder.png) no-repeat center -50px;
    background-size: 200%;
    width: 100%;
    background-color: #2f2f2f;
    position: relative;
    padding: 200px 0 250px;
}

.customize-building-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.customize-building-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 0;
    width: 50%;
}

.customize-building-texts h3 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    z-index: 9;
}

.customize-building-texts h1 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
    text-align: center;
    z-index: 9;
}

.elementor-shape[data-negative=false].elementor-shape-bottom {
    transform: rotate(180deg);
}

.elementor-shape-bottom {
    bottom: -1px;
}

.elementor-shape .elementor-shape-fill-black {
    fill: #000000;
    transform: rotateY(0deg);
    transform-origin: center;
}

.customize-building-texts a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 30px 20px;
    transition: 0.3s ease;
    margin: 10px;
    text-align: center;
    line-height: 1;
    width: 85%;
    z-index: 9;
}

.customize-building-texts a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.customize-wood-shed-container {
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    gap: 80px;
}

.wood-shed-banner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.wood-shed-banner img {
    width: 94%;
}

.customize-your-wood-shed {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 50px;
}

.wood-shed-image {
    display: flex;
    width: 45%;
}

.wood-shed-image img {
    width: 100%;
    border-radius: 10px;
}

.wood-shed-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 0;
    width: 45%;
}

.wood-shed-texts h3 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    z-index: 9;
}

.wood-shed-texts h1 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
    text-align: center;
    z-index: 9;
}

.wood-shed-texts h4 {
    font-family: "Roboto", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    text-align: center;
    z-index: 9;
}

.wood-shed-texts a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 30px 20px;
    transition: 0.3s ease;
    margin: 10px;
    margin-top: 30px;
    text-align: center;
    line-height: 1;
    width: 85%;
    z-index: 9;
}

.wood-shed-texts a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.best-sellers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background: #252525;
}

.best-sellers-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.best-sellers-texts h1 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 48px;
    line-height: 1;
}

.best-sellers-texts h2 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
}

.best-sellers-texts h3 {
    font-family: "Poppins", sans-serif;
    color: #F74900;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
}

.best-sellers-cards-container {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.best-sellers-card {
    display: flex;
    flex-direction: column;
    width: 43%;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    gap: 20px;
}

.best-sellers-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.best-sellers-card h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    text-align: left;
}

.best-sellers-card h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}

.best-sellers-card h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    text-align: center;
}

.best-sellers-card p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.best-sellers-card a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 12px 24px;
    transition: 0.3s ease;
    margin: 10px;
    margin-top: 30px;
    text-align: center;
    line-height: 1;
    width: 85%;
    z-index: 9;
}

.best-sellers-card a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.shed-products-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    background: #FFFFFF;
}

.shed-products-container-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    background: #F1F1F1;
}

.elementor-shape-bottom-1 {
    top: -8px;
}

.elementor-shape .elementor-shape-fill-gray {
    fill: #252525;
    transform: rotateY(180deg);
    transform-origin: center;
}

.shed-products {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 200px 0 50px;
    width: 100%;
    gap: 10px;
}

.shed-products-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 50px 0;
    width: 100%;
    gap: 10px;
}

.shed-products-lists {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 32.5%;
}

.shed-products-lists img {
    width: 100%;
    border-radius: 20px;
}

.shed-products-lists h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #F74900;
    line-height: 1;
    padding: 0 15px;
}

.shed-product {
    display: flex;
    flex-direction: column;
}

.shed-product h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    padding: 15px;
    line-height: 1;
    border-bottom: 1px solid #d5d8dc;
    font-weight: 600;
    cursor: pointer;
}

.shed-products-list-description {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.shed-products-list-description.show {
    max-height: 2000px;
}

.shed-products-list-description h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    border-bottom: 1px solid #d5d8dc;
    padding: 15px;
    font-weight: 400;
}

.fa-chevron-down,
.bi-chevron-down{
    transition: transform 0.3s ease;
}

.rotated {
    transform: rotate(180deg);
}

.youtube-channel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    gap: 30px;
}

.youtube-channel-container h1 {
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #F74900;
    text-transform: capitalize;
    line-height: 1;
    text-align: center;
    width: 80%;
}

.youtube-channel-container a {
    background: #F74900;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    border-radius: 3px;
    text-decoration: none;
    color: #FFFFFF;
    padding: 12px 24px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
    margin-bottom: 5px;
}

.youtube-channel-container a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.youtube-channel-container iframe {
    width: 100%;
    height: 671px;
}

.buying-a-metal-building-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
    background: #282828;
    height: 100%;
    position: relative;
}

.buying-a-metal-building-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 50px 0 0;
    gap: 30px;
    width: 50%;
}

.buying-a-metal-building-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 60%;
    padding-right: 30px;
}

.buying-a-metal-building-texts h1 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    text-align: left;
    width: 90%;
}

.buying-a-metal-building-texts h5 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
}

.buying-a-metal-building-texts h5 strong {
    font-weight: 600;
}

.buying-a-metal-building-lists {
    display: flex;
    flex-direction: column;
    width: 60%;
    padding-right: 30px;
}

.buying-a-metal-building-lists h2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    padding: 15px;
    line-height: 1;
    border-bottom: 1px solid #d5d8dc;
    font-weight: 600;
    cursor: pointer;
    color: #FFFFFF;
}

.buying-a-metal-building-list-description {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.buying-a-metal-building-list-description.show {
    max-height: 2000px;
}

.buying-a-metal-building-list-description h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    border-bottom: 1px solid #d5d8dc;
    padding: 15px;
    font-weight: 400;
    color: #FFFFFF;
}

.buying-a-metal-building-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    padding-right: 50px;
}

.buying-a-metal-building-button a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 30px 20px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
    width: 100%;
    z-index: 9;
}

.buying-a-metal-building-button a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.buying-a-metal-building-image {
    display: flex;
    width: 50%;
    height: 100%;
}

.buying-a-metal-building-image img {
    width: 50%;
    height: 100%;
    object-fit: cover; /* Changes from fill to cover to maintain aspect ratio while covering container */
    position: absolute; /* Makes image position absolute */
    top: 0;
    right: 0;
}

.commercial-agricultural-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../img/InstagramAd2.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    gap: 30px;
}

.commercial-agricultural-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.commercial-agricultural-container h4 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    z-index: 9;
}

.commercial-agricultural-contents {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 100px
}

.commercial-agricultural-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.commercial-agricultural-texts h1 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 70px;
    line-height: 1;
    text-align: center;
    z-index: 9;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.commercial-agricultural-texts p {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 19px;
    line-height: 1;
    text-align: center;
    z-index: 9;
}

.financing-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
    gap: 40px;
}

.financing-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 30px;
    margin: 0 0 0 135px;
}

.financing-contents h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    text-align: center;
}

.financing-contents ul {
    display: flex;
    flex-direction: column;
    width: 98%;
    gap: 20px;
    list-style: inside;
}

.financing-contents h5,
.financing-contents ul li {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
}

.financing-lists {
    display: flex;
    flex-direction: column;
}

.financing-lists h2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    padding: 15px;
    line-height: 1;
    border-bottom: 1px solid #d5d8dc;
    font-weight: 600;
    cursor: pointer;
}

.financing-list-description {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.financing-list-description.show {
    max-height: 2000px;
}

.financing-list-description h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    border-bottom: 1px solid #d5d8dc;
    padding: 15px;
    font-weight: 400;
}

.financing-quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 135px 0 0;
    gap: 20px;
}

.financing-quote-container img {
    width: 90%;
}

.financing-form {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    padding: 20px;
}

/*.financing-form form {*/
/*    border-bottom: 5px solid rgba(0, 0, 0, 1);*/
/*    box-shadow: 0 4px 18px 0 rgba(0,0,0,.3);*/
/*    border-radius: 10px;*/
/*}*/

.template-navigation-header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #F9F9F9;
    padding: 30px 100px 30px;
}

.template-navigation-header-container.single-shed {
    background: #FFF;
    border-top: 1px solid rgba(232, 232, 232, 1);
}

.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-container {
    display: flex;
    flex-direction: row;
    padding: 100px 100px 50px;
    gap: 50px;
    justify-content: center;
}

.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-description h2 strong {
    font-weight: 600;
}

.product-description h2 a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    line-height: 1.6;
}

.product-description.single-shed {
    align-items: center;
}

.product-description h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-align: center;
}

.product-description h3 a {
    color: #242424;
    text-decoration: none;
}

.product-description.single-shed h1 {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-align: center;
}

.product-description h4 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-align: center;
}

.product-description h4 span {
    color: rgb(247,73,0);
}

.product-description h5 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: rgb(247,73,0);
    text-align: center;
}

.product-description h6 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #BB3700;
    text-align: center;
    font-style: italic;
}

.product-image {
    display: flex;
    width: 45%;
    position: relative;
}

.product-image.single-shed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
    gap: 20px;
}

.product-image-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.product-image-img.single-shed {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-image-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.product-image-add-to-cart {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #FFF;
    background: #F74900;
    border-radius: 3px;
    padding: 12px 24px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.product-image-add-to-cart svg {
    fill: #FFFFFF;
    width: 20px;
    height: 20px;
}

.product-image-price-your-building {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #FFF;
    background: #000;
    border-radius: 3px;
    padding: 12px 24px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.product-image-price-your-building svg {
    fill: #FFFFFF;
    width: 20px;
    height: 20px;
}

.single-products-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 50px;
}

.single-products-texts h5 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    width: 85%;
    text-align: left;
}

.single-shed-related-buildings-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    background: #e7e7e7;
    padding: 50px 0;
}

.single-shed-related-buildings-container h1 {
    width: 85%;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin: 0 auto;
}

.single-shed-related-buildings-lists {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    width: 85%;
    margin: 0 auto;
    touch-action: pan-y; /* Allow vertical scrolling but handle horizontal gestures */
    transition: transform 0.2s ease; /* Smooth visual feedback */
}

.single-shed-related-buildings-lists:active {
    cursor: grabbing !important;
}

.single-shed-related-bldg-card {
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background: #FFF;
    padding: 20px;
    border-radius: 10px;   
    width: 30%;
    display: none;
}

.single-shed-related-bldg-card.active {
    display: flex;
}

.pagination-dots {
    text-align: center;
    /* margin-top: 20px; */
    margin: 20px auto;
}

.pagination-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.pagination-dots span.active {
    background-color: #333;
}

.single-shed-related-bldg-card img {
    width: 100%;
}

.single-shed-related-bldg-card h4 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #4E4E4E;
    text-align: center;
}

.single-shed-related-bldg-card h4 a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #4E4E4E;
    text-align: center;
}

.single-shed-title {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-align: center;
}

.single-shed-related-bldg-card h2 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
    text-align: center;
}

.single-shed-related-bldg-card h2 span {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: rgb(247,73,0);
    text-align: center;
}

.single-shed-list-call-btn {
    background: #F74900;
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 12px 24px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
    width: 90%;
    z-index: 9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.single-shed-list-call-btn i {
    font-size: 18px;
}

.single-shed-list-call-btn:hover {
    background: #000000;
    transition: 0.3s ease;
}

.product-image-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: absolute;
    background-color: #F74900;
    padding: 10px 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    border-radius: 3px;
    bottom: -20px;
    right: 0;
}

.rto-financing-container-single-shed {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #ACACAC;
    border-bottom: 1px solid #ACACAC;
    width: 100%;
    padding: 10px 0;
}

.rto-financing-single-shed {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.rto-financing-single-shed i {
    color: #61CE70;
}

.rto-financing-single-shed h4 {
    font-family: "Roboto", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #000;
}

.single-shed-call-now-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #F74900;
    padding: 2px;
    border-radius: 20px;
    width: 100%;
}

.single-shed-call-now-btn h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
    padding-left: 20px;
}

.single-shed-call-now-btn a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 60%;
    background: #FFFFFF;
    padding: 15px 0 15px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 600;
    gap: 20px;
}

.elementor-button-icon .e-font-icon-svg {
    height: 1.1em;
    display: flex;
    fill: #FFFFFF;
}

.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 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.more-product-list-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 47%;
    gap: 10px;
}

.more-product-image-button {
    display: flex;
    width: 100%;
}

.more-product-image-button img {
    width: 100%;
    object-fit: cover;
}

.more-product-title {
    text-decoration: none;
    color: #333333;
    transition: 0.25s ease;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.more-product-title:hover {
    color: rgb(51 51 51 / 65%);
    transition: 0.25s ease;
}

.more-product-list-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.more-product-category {
    text-decoration: none;
    color: #a5a5a5;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.25s ease;
}

.more-product-category:hover {
    color: #555;
    transition: 0.25s ease;
}

.more-product-list-card h4 {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: rgb(247,73,0);
}

.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-categories-title-btn {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #F74900;
    background: #F3F3F3;
    padding: 50px 0;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.other-products-category-lists {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.our-sizes-ranges-lists {
    justify-content: flex-start;
}

.other-products-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 32%;
}

.small-card {
    width: 23%;
}

.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: 100%;
    border-radius: 12px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.12);
    overflow: hidden;
}

.other-products-category-card-image img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.other-products-category-card-image:hover img {
    transform: scale(1.1);
    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;
}

.more-product-lists-header-filter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    padding: 0 100px;
}

.more-product-lists-header-filter button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

.more-product-lists-header-filter-left-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s ease;
}

.more-product-lists-header-filter-left-button i {
    font-size: 16px;
}

.more-product-lists-header-filter-left-button:hover {
    color: #767676;
    transition: 0.3s ease;
}

.more-product-lists-header-filter-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.filter-no-of-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filter-no-of-cards-choices {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.filter-no-of-cards h1 {
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.filter-no-of-cards-choices button {
    color: #767676;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.no-of-cards {
    color: #767676;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.no-of-cards.active {
    color: #333;
    font-weight: 600;
}

.no-of-cards:hover{
    color: #333;
}

.filter-no-of-cards-choices h5 {
    color: #767676;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.filter-style-of-tiles {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.style-of-tiles-button {
    color: #767676;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    transition: 0.3s ease;
    fill: #767676;
    transition: 0.3s ease;
    width: 30px;
    height: 30px;
}

.style-of-tiles-button:hover {
    fill: #333;
    color: #333;
    transition: 0.3s ease;
}

.three-rows {
    fill: none;
    stroke: #767676;
    stroke-width: 10px;
    transition: 0.3s ease;
}

.three-rows:hover {
    fill: none;
    stroke: #333;
    transition: 0.3s ease;
}

.two-column {
    fill: none;
    stroke: #767676;
    stroke-width: 8px;
    transition: 0.3s ease;
}

.two-column:hover {
    fill: none;
    stroke: #333;
    transition: 0.3s ease;
}

.filter-sorting {
    display: flex;
}

.filter-sorting select {
    border: none;
    outline: none;
    padding: 5px 20px 5px 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #242424;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.filter-sorting select:focus {
    border-bottom: 2px solid #F74900;
    transition: 0.3s ease;
}

.more-product-lists-header-filter-left-contents {
    display: none;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.105);
    border-bottom: 1px solid rgba(0,0,0,0.105);
    width: 95%;
    gap: 200px;
}

.more-product-lists-header-filter-left-contents.show {
    display: flex;
}

.filter-left-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.filter-left-contents h1 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #333;
}

.filter-left-contents-button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease;
}

.filter-left-contents-button:hover {
    color: #333;
    transition: 0.3s ease;
}

.filter-left-contents-button.active {
    color: #333;
    font-weight: 600;
}

.more-product-lists-cat-temp {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.more-product-list-card-cat-temp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 31%;
    gap: 10px;
}

.more-product-image-button-cat-temp {
    display: flex;
    width: 100%;
}

.more-product-image-button-cat-temp img {
    width: 100%;
    object-fit: cover;
}

.more-product-title-cat-temp {
    text-decoration: none;
    color: #333333;
    transition: 0.25s ease;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.more-product-title-cat-temp:hover {
    color: rgb(51 51 51 / 65%);
    transition: 0.25s ease;
}

.more-product-list-category-cat-temp {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.more-product-category-cat-temp {
    text-decoration: none;
    color: #a5a5a5;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.25s ease;
}

.more-product-category-cat-temp:hover {
    color: #555;
    transition: 0.25s ease;
}

.more-product-list-card-cat-temp h4 {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: rgb(247,73,0);
}

.more-product-list-pager {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.more-product-list-pager-number {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: auto;
}

.more-product-list-page-arrow {
    border: none;
    background: none;
    cursor: pointer;
    color: #242424;
    font-size: 14px;
    min-width: 34px;
    height: 34px;
    transition: 0.3s ease;
}

.more-product-list-page-arrow:hover {
    background: #f1f1f1;
    transition: 0.3s ease;
}

.more-product-list-page-number {
    border: none;
    background: none;
    cursor: pointer;
    color: #242424;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    min-width: 34px;
    height: 34px;
    transition: 0.3s ease;
}

.more-product-list-page-number:hover {
    background: #f1f1f1;
    transition: 0.3s ease;
}

.more-product-list-page-number.active {
    background: rgb(247, 73, 0);
    color: #FFFFFF;
    transition: 0.3s ease;
}

.locations-we-serve {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: #e7e7e7;
    padding: 100px;
}

.locations-we-serve h1 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
}

.locations-we-serve h2 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
}

.locations-we-serve-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 41px;
    width: 95%;
    padding: 40px 0 20px;
}

.locations-we-serve-list a {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #333333;
    transition: 0.3s ease;
}

.locations-we-serve-list a:hover {
    color: #FFA500;
    transition: 0.3s ease;
}





.our-service-areas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: url(../img/360_F_27599044_QXQKzVYRzzKBU36fGbkaPNcdY7xgdsmu-1.png) repeat center left;
    padding: 50px 0;
}

.our-service-areas-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: rgb(247,73,0);
    text-transform: capitalize;
    line-height: 1;
    text-align: center;
}

.service-areas-location {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.service-areas-location a {
    text-decoration: none;
    padding: 13px 20px;
    font-size: 16px;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    color: #000000;
    transition: 0.3s ease;
    border-bottom: 1px solid #ffa60000;
}

.service-areas-location a:hover {
    color: #FFA500;
    border-bottom: 1px solid #FFA500;
    transition: 0.3s ease;
}

.divider {
    background: #FFA500;
    width: 3px;
    color: #FFA500;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px;
    background: #282828;
    gap: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    gap: 20px;
}

.daytonbarns-footer-logo {
    width: 100%;
}

.footer-submit-review {
    width: 60%;
    margin-top: 20px;
}

.footer-bbba {
    width: 90%;
    margin-top: 20px;
}

.footer-logo h1 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    line-height: 1;
    font-weight: 600;
    font-size: 24px;
}

.footer-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-address h2 {
    font-family: "Poppins", sans-serif;
    color: #F74900;
    line-height: 1;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.footer-main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 25%;
    gap: 20px;
}

.footer-main-menu h1 {
    font-family: "Poppins", sans-serif;
    color: #F74900;
    line-height: 1;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.footer-main-menu img {
    width: 50%;
}

.footer-main-menu-lists {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* gap: 10px; */
    gap: 15px;
}

.footer-main-menu-lists span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    cursor: pointer;
    line-height: 10px;
}

.footer-main-menu-lists span h2,
.footer-main-menu-lists span h2 a {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
}

.footer-main-menu-lists span i {
    text-decoration: none;
    color: #FFFFFF;
    line-height: 10px;
}

.main-menu-contents {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.main-menu-contents.show {
    max-height: 2000px;
}

.main-menu-contents a {
    margin: 0 20px;
    padding: 13px 20px;
    background: #FFFFFF;
    color: #33373d;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: 0.3s ease;
}

.main-menu-contents a:hover {
    background: #33373d;
    color: #FFFFFF;
    transition: 0.3s ease;
}

.main-menu-contents ul {
    display: flex;
    flex-direction: column;
    list-style: inside;
}

.fa-caret-down {
    transition: transform 0.3s ease;
}

.footer-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    gap: 70px;
}

.footer-images-2 {
    width: 90%;
}

.footer-images-1 {
    width: 60%;
}

.new-footer-links {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 2px;
    transition: 0.3s ease;
}

.new-footer-links:hover {
    color: #FFA500;
    border-bottom: 1px solid #FFA500;
    transition: 0.3s ease;
}

.videos-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    gap: 50px;
}

.videos-page-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.videos-lists {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
}

.videos-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 30%;
    margin-top: 10px;
}

.videos-card iframe {
    width: 100%;
    height: 208px;
}

.videos-page-container h2 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    width: 95%;
}

.financing-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 0;
    background: #e7e7e7;
}

.financing-upper-page {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 0 50px 40px;
}

.financing-upper-page img {
    width: 45%;
}

.financing-upper-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 45%;
}

.financing-upper-contents-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.financing-upper-contents-header h1 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    line-height: 1;
    text-align: center;
}

.financing-upper-contents-header h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-align: left;
}

.financing-upper-contents ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    list-style-position: inside;
    gap: 10px;
}

.financing-upper-contents ul li {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-align: left;
}

.financing-upper-contents h2 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #F74900;
    text-align: left;
    font-style: italic;
}

.financing-upper-contents h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-align: left;
}

.financing-upper-contents a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 30px 20px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
    width: 90%;
    z-index: 9;
}

.financing-upper-contents a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.team-to-help-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: #fff;
    padding: 50px 0;
}

.team-to-help-you-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.team-to-help-you-header h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.team-to-help-you-header h3 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

.team-to-help-you {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    width: 100%;
}

.team-to-help-you-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background: #e7e7e7;
    padding: 40px;
    width: 15%;
}

.team-to-help-you-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.team-to-help-you-card h1 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.team-to-help-you-card h2 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.team-to-help-you-contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team-to-help-you-contact-details h3 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.team-to-help-you-contact-details a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #0000ff;
}

.shape-elementor {
    display: block;
    width: 100%;
    background: #e7e7e7;
}

.shape-elementor svg {
    display: flex;
    transform: rotateX(180deg);

}

.elementor-shape-fill-financing {
    fill: #fff;
    transform: rotateY(180deg);
    transform-origin: center;
}

/* Mobile navigation styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.close-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.review-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-us-upper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    background: #e7e7e7;
    padding: 100px 0 0;
}

.review-us-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 40%;
}

.review-us-img h1 {
    font-family: "Poppins", sans-serif;
    font-size: 72px;
    font-weight: 600;
    color: #F74900;
    line-height: 1;
    text-align: center;
}

.review-us-upper h2 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    text-align: left;
    width: 40%;
}

.review-us-elements {
    display: block;
    width: 100%;
    background: #e7e7e7;
}

.review-us-elements svg {
    display: flex;
    transform: rotateX(180deg);
}

.elementor-shape-fill-review-us {
    fill: #fff;
    transform: rotateY(180deg);
    transform-origin: center;
}

.what-customers-say-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.customer-say-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e7e7e7;
    padding: 50px;
    border-radius: 20px;
    width: 80%;
    font-family: "Roboto", sans-serif;
}

.meet-the-team-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 0 50px;
}

.meet-the-team-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/IMG_9410.png') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 100px 0 70px;
    gap: 70px;
}

.meet-the-team-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.meet-the-team-header h1 {
    font-family: "Poppins", sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.3em;
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
    width: 50%;
}

.meet-the-team-header h4 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
    width: 50%;
}

.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;
}

.who-we-are-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 200px;
    position: relative;
    width: 100%;
}

.who-are-we-contents {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.who-we-are-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 46%;
}

.who-we-are-texts h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    text-align: left;
}

.who-we-are-texts h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8em;
    text-align: left;
}

.who-we-are-texts h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5em;
    text-align: left;
    color: #040404;
}

.who-we-are-texts ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    list-style-position: inside;
}

.who-we-are-texts ul li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    text-align: left;
}

.who-we-are-texts ul li strong {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    text-align: left;
}

.who-we-are-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 45%;
}

.who-we-are-img {
    width: 100%;
}

.who-we-are-img-small {
    width: 65%;
}

.who-we-are-element {
    display: block;
    width: 100%;
    background: none;
    position: absolute;
    bottom: 0;
}

.who-we-are-element svg {
    display: flex;
    transform: rotateX(180deg);
}

.elementor-shape-fill-who-we-are {
    fill: #e7e7e7;
    transform: rotateY(180deg);
    transform-origin: center;
}

.set-dayton-barns-apart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 100px 0;
    background: #e7e7e7;
}

.set-dayton-barns-apart-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.set-dayton-barns-apart-lists {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
}

.set-dayton-barns-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    width: 23%;
}

.set-dayton-barns-card h2 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.set-dayton-barns-card h3 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    text-align: center;
}

.meet-the-team-element-2 {
    display: block;
    width: 100%;
    background: #282828;
    bottom: 0;
    padding-top: 100px;
}

.meet-the-team-element-2 svg {
    display: flex;
    transform: rotateX(0deg);
}

.elementor-shape-fill-meet-the-team-2 {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}

.corporate-team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.corporate-team-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.corporate-team-lists {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.corporate-team {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    width: 25%;
}

.corporate-team img {
    width: 100%;
}

.corporate-team h2 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.corporate-team h3 {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #767676;
}

.corporate-team a {
    background: #F74900;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-decoration: none;
    color: #FFFFFF;
    padding: 12px 24px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
}

.corporate-team a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.corporate-team-container h6 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    width: 85%;
    background: #f7f7f7;
    padding: 40px 0;
}

.single-team-page-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0;
    gap: 20px;
}

.single-team-page-container img {
    width: 25%;
    object-fit: cover;
    border-radius: 10px;
}

.single-team-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 25%;
}

.single-team-content-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.single-team-content-header h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.single-team-content-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.single-team-content-header h3 a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #F74900;
}

.single-team-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.single-team-buttons a {
    background: #F74900;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border-radius: 15px 0 15px 0;
    text-decoration: none;
    color: #FFFFFF;
    padding: 30px 20px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
    width: 28%;
}

.single-team-buttons a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.single-team-content p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
    text-align: left;
}

.financing-form-single-team {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    padding: 20px;
    width: 25%;
}

/*.financing-form-single-team form {*/
/*    border-bottom: 5px solid rgba(0, 0, 0, 1);*/
/*    box-shadow: 0 4px 18px 0 rgba(0,0,0,.3);*/
/*    border-radius: 10px;*/
/*}*/

.contact-us-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 50px 0;
}

.contact-us-upper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.contact-us-upper img {
    width: 35%;
}

.contact-us-upper-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 55%;
}

.contact-us-upper-contents.state-landing-page {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 45%;
}

.contact-us-upper-contents img {
    width: 25%;
}

.flag-img {
    width: 30%;
}

.contact-us-upper-contents h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.contact-us-upper-contents h2 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.contact-us-upper-contents h4 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5em;
}

.contact-us-upper-contents p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.contact-us-information {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.contact-us-information-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.info-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.info-1 i {
    font-size: 20px;
}

.info-1 h2 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.contact-us-information-1 h2 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.contact-us-information-1 h2 strong {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8em;
}

.locations-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.locations-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/image-asset28629.png') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 150px 0;
    gap: 20px;
}

.locations-page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.locations-page-header h1 {
    font-family: "Poppins", sans-serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.3em;
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
    width: 80%;
}

.locations-page-header h4 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
    width: 70%;
}

.locations-page-element-1 {
    display: block;
    width: 100%;
    background: none;
    position: absolute;
    bottom: 0;
}

.locations-page-element-1 svg {
    display: flex;
    transform: rotateX(0deg);
}

.elementor-shape-fill-locations-page {
    fill: #fff;
    transform-origin: center;
}

.locations-page-lists-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 50px 0 100px;
}

.locations-page-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 40%;
}

.location-details img {
    width: 100%;
}

.location-details h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.3em;
    text-align: center;
}

.locations-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 95%;
}

.location-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 45%;
}

.location-address h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1em;
    text-align: center;
    text-decoration: underline;
    color: #F74900;
}

.location-hours-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-hours-phone h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.location-hours-phone h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.location-hours-phone a {
    text-decoration: none;
    color: #ff0000;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.locations-page-button {
    background: #F74900;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-decoration: none;
    color: #FFFFFF;
    padding: 100px 20px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
    width: 40%;
}

.locations-page-button:hover {
    background: #000000;
    transition: 0.3s ease;
}

.location-map iframe {
    width: 550px;
    height: 700px;
}

.states-we-build-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #e7e7e7;
}

.states-we-build-upper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    padding: 50px 0;
}

.states-we-build {
    display: flex;
    flex-direction: column;
    width: 47%;
}

.states-we-build-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 47%;
    gap: 20px;
}

.states-we-build-contents h1 {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3em;
    text-align: left;
}

.states-we-build-contents h2 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
}

.states-we-build-lists {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 30px;
}

.states-we-build-lists h2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    padding: 15px;
    line-height: 1;
    border-bottom: 1px solid #d5d8dc;
    font-weight: 600;
    cursor: pointer;
    color: #000000;
}

.states-we-build-list-description {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-out;
}

.states-we-build-list-description.show {
    max-height: 2000px;
    transition: max-height 1s ease-in;
}

.states-we-build-list-description h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    border-bottom: 1px solid #d5d8dc;
    padding: 15px;
    font-weight: 400;
    color: #000000;
}

.states-we-build-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.states-we-build-button a {
    background: #F74900;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border-radius: 15px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    padding: 12px 24px;
    transition: 0.3s ease;
    text-align: center;
    line-height: 1;
    width: 100%;
    z-index: 9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.states-we-build-button a:hover {
    background: #000000;
    transition: 0.3s ease;
}

.states-we-build-element {
    display: block;
    width: 100%;
    background: #e7e7e7;
}

.states-we-build-element svg {
    display: flex;
    transform: rotateX(180deg);
}

.elementor-shape-fill-states-we-build {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}

.we-are-metal-building-experts-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.we-are-metal-building-experts-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 62px;
    font-weight: 500;
    line-height: 1.3em;
    width: 45%;
}

.we-are-metal-building-experts-container h2 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    width: 47%;
}

.locations-banner-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: url(../img/40x60x12VerticalRoofCommercialMetalBuildingBanner.png) no-repeat center center;
    background-size: cover;
    padding: 200px 0;
    position: relative;
}

.locations-banner-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.locations-banner-image-container h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 72px;
    line-height: 1.3em;
    color: #FFFFFF;
    width: 80%;
    z-index: 2;
}

.locations-banner-upper-element {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
}

.locations-banner-upper-element svg {
    display: flex;
    transform: rotateX(0deg);
}

.elementor-shape-fill-locations-banner-upper-element {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}

.locations-banner-lower-element {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.locations-banner-lower-element svg {
    display: flex;
    transform: rotateX(180deg);
}

.elementor-shape-fill-locations-banner-lower-element {
    fill: #e7e7e7;
    transform: rotateY(0deg);
    transform-origin: center;
}

.locations-contact-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 70px;
    background: #e7e7e7;
    width: 100%;
}

/*.locations-contact-form-container form {*/
/*    border-bottom: 5px solid rgba(0, 0, 0, 1);*/
/*    box-shadow: 0 4px 18px 0 rgba(0,0,0,.3);*/
/*    border-radius: 10px;*/
/*    background: #FFFFFF;*/
/*}*/

.locations-contact-us-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
    padding: 70px 0;
    width: 89%;
}

.locations-contact-us-upper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.locations-contact-us-upper img {
    width: 35%;
}

.locations-contact-us-upper-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 55%;
}

.locations-contact-us-upper-contents img {
    width: 25%;
}

.locations-contact-us-upper-contents h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.locations-contact-us-upper-contents h2 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.locations-contact-us-information {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 300px;
    padding: 0 50px;
}

.locations-contact-us-information-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.locations-contact-us-information-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.locations-info-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.locations-info-1 i {
    font-size: 20px;
}

.locations-info-1 h2 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.locations-contact-us-information-1 h2,
.locations-contact-us-information-2 h2 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.locations-contact-us-information-1 h2 strong,
.locations-contact-us-information-2 h2 strong {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8em;
}

.blog-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
}

.blog-page-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.blog-page-img-button {
    text-decoration: none;
    display: flex;
    width: 30%;
}

.blog-page-img-button img {
    width: 100%;
}

.blog-page-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 50%;
}

.blog-page-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-date-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: #242424;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.blog-page-title {
    text-decoration: none;
    color: #242424;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
}

.blog-page-read-more {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: #242424;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.blog-page-details p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #767676;
    line-height: 1.5em;
}

.author-page-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
}

.author-blog-lists {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.author-blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 28%;
    box-shadow: 0 0 9px rgba(0,0,0,0.2);
    padding-bottom: 25px;
    transition: 0.3s ease;
}

.author-blog-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.author-blog-img {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.author-blog:hover {
    box-shadow: 0 0 9px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.author-blog-img img {
    width: 100%;
    transition: 0.3s ease;
}

.author-blog:hover .author-blog-img img {
    scale: 1.1;
    overflow: hidden;
    transition: 0.3s ease;
}

.author-blog-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 8px 15px;
}

.author-blog-date h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 24px;
}

.author-blog-date h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 12px;
}

.author-blog-category-btn {
    position: absolute;
    bottom: -10px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #FFF;
    transition: 0.3s ease;
    background: rgb(247,73,0);
    padding: 5px 10px;
    z-index: 9;
}

.author-blog-category-btn:hover {
    color: rgba(255,255,255,0.8);
}

.author-blog-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #333333;
    text-decoration: none;
    text-align: center;
    width: 85%;
}

.author-blog-title:hover {
    color: rgb(51 51 51 / 65%);
}

.author-name-share {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.author-name-share h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #bbb;
}

.author-name-share i {
    color: #bbb;
}

.author-name {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #bbb;
    transition: 0.3s ease;
}

.author-name:hover {
    color: #242424;
    transition: 0.3s ease;
}

.author-blog-share-button img {
    width: 80%;
}

.author-blog p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    color: #767676;
    text-align: center;
    width: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.continue-reading-btn {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: rgb(247,73,0);
    text-decoration: none;
}

.blog-posts-page-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
}

.blog-posts-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 60%;
}

.blog-posts-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.blog-posts-header h1 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4em;
    text-align: center;
    color: #333333;
}

.blog-posts-category-btn {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #FFF;
    transition: 0.3s ease;
    background: rgb(247,73,0);
    padding: 5px 10px;
    display: flex;
}

.blog-posts-category-btn:hover {
    color: rgba(255,255,255,0.8);
}

.blog-content-img-header {
    width: 100%;
}

.blog-content-img {
    width: 50%;
}

.blog-posts-author-name-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-posts-author-name-date h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #a5a5a5;
}

.blog-posts-author-name-date i {
    color: #a5a5a5;
}

.blog-posts-author-name {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #a5a5a5;
    transition: 0.3s ease;
}

.blog-posts-author-name:hover {
    color: #767676;
    transition: 0.3s ease;
}

.blog-posts-content h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    line-height: 1.6em;
}

.blog-posts-content h5 strong {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #767676;
    line-height: 1.6em;
}

.blog-posts-content h5 a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #242424;
    line-height: 1.6em;
}

.blog-posts-content h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #242424;
    line-height: 1.4em;
}

.blog-posts-content ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    list-style-position: inside;
}

.blog-posts-content ul li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    line-height: 1.6em;
}

.blog-posts-content ul li strong {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #767676;
    line-height: 1.6em;
}

.blog-posts-content iframe {
    width: 500px;
    height: 281px;
}

.tag-socials-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.blog-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-tags a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border: 1px solid rgba(0,0,0,0.105);
    text-decoration: none;
    transition: 0.3s ease;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #242424;
}

.blog-tags a i {
    color: rgba(0,0,0,0.105);
    font-size: 6px;
    transition: 0.3s ease;
}

.blog-tags a:hover {
    border: 1px solid rgb(247,73,0);
    transition: 0.3s ease;
}

.blog-tags a:hover i {
    color: rgb(247,73,0);
    transition: 0.3s ease;
}

.blog-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.blog-socials a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
}

.blog-socials-fb {
    background: #365493;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-socials-x {
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-socials-pin {
    background: #cb2027;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-socials-in {
    background: #0274b3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-socials-tg {
    background: #37aee2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-posts-pages {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
}

.blog-posts-newer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    text-decoration: none;
    width: 45%;
}

.blog-posts-newer i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    /* width: 40px;
    height: 40px; */
    /*padding: 10px 15px;*/
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
}

.blog-posts-newer-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.blog-posts-newer-name h3 {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: #bbb;
    font-weight: 400;
}

.blog-posts-newer-name h4 {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-posts-newer:hover h4 {
    color: rgb(247,73,0);
    transition: 0.3s ease;
}

.blog-posts-older {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    text-decoration: none;
    width: 45%;
}

.blog-posts-older i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    /* width: 40px;
    height: 40px; */
    /*padding: 10px 15px;*/
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
}

.blog-posts-older-name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.blog-posts-older-name h3 {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: #bbb;
    font-weight: 400;
}

.blog-posts-older-name h4 {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #333;
    font-weight: 500;
    text-align: right;
    transition: 0.3s ease;
}

.blog-posts-older:hover h4 {
    color: rgb(247,73,0);
    transition: 0.3s ease;
}

.blog-posts-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-posts-back-btn .icon-grid {
    color: #bbb;
    transition: 0.3s ease;
}

.blog-posts-back-btn:hover .icon-grid {
    color: #242424;
    transition: 0.3s ease;
}

.blog-posts-right-corner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 20%;
}

.blog-post-categories {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.blog-post-categories h1 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-post-categories a {
    text-decoration: none;
    color: #767676;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease;
}

.blog-post-categories a:hover {
    color: #333;
    transition: 0.3s ease;
}

.blog-post-right-corner-hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e7e7e7;
}

.blog-post-recent-post-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.blog-post-recent-post-list h1 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-post-recent-post {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.blog-post-recent-post-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.blog-post-recent-post-details a {
    text-decoration: none;
    color: #333333;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.blog-post-recent-post-date-comments {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-post-recent-post-date-comments h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #a5a5a5;
}

.blog-post-recent-post-date-comments a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #a5a5a5;
}

.blog-post-recent-post-hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e7e7e7;
}

.blog-post-our-instagram {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 50px;
}

.blog-post-our-instagram h1 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-post-recent-comments {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 50px;
}

.blog-post-recent-comments h1 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

thead {
    background-color: none;
    /* font-weight: bold; */
}

th {
    padding: 5px 10px;
    border: 1px solid gray;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #767676;
    line-height: 1.6em;
}

td {
    padding: 5px 10px;
    border: 1px solid gray;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    line-height: 1.6em;
}

.bottom-page-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 100px;
}

.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%;
}

.new-categories {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: rgb(247,73,0);
    line-height: 1.6;
    border-bottom: 1px solid rgb(247,73,0);
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0 0;
}

.video {
    width: 80%;
}



@media screen and (max-width: 1366px) {
    /* Laptop size adjustments */
    .header-navigation-container {
        padding: 0;
    }

    .design-price-button {
        font-size: 10px;
        padding: 0 20px;
        height: 38px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .video-banner-texts h1 {
        font-size: 42px;
        line-height: 52px;
    }
    
    .team {
        width: 90%;
        margin: 0 auto;
    }
    
    .top-selling-contents h1 {
        font-size: 38px;
    }
    
    .best-sellers-cards-container {
        width: 90%;
    }
    
    .buying-a-metal-building-container {
        padding: 50px 0;
    }
}

@media screen and (max-width: 1200px) {
    /* Small laptop adjustments */
    .header-logo-button {
        width: 20%;
    }
    
    /* .header-nav {
        width: 60%;
    } */
    
    .design-price-button {
        width: 12%;
        margin: 0 20px 0 10px;
        text-align: center;
    }
    
    .video-banner video {
        height: 600px;
        object-fit: cover;
    }
    
    .db-team {
        width: 50%;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .team-card {
        flex-direction: column;
    }
    
    .team-card-image, .team-card-text {
        width: 100%;
    }

    .team-card-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .top-selling {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .top-selling-contents, .top-selling-vid-buttons {
        width: 80%;
    }
    
    .customize-building-texts {
        width: 80%;
    }
    
    .customize-your-wood-shed {
        gap: 30px;
        flex-direction: column;
    }
    
    .wood-shed-image, .wood-shed-texts {
        width: 48%;
    }
    
    .best-sellers-card {
        width: 48%;
    }
    
    .best-sellers-cards-container {
        flex-wrap: wrap;
        justify-content: space-between;
        justify-content: center;
    }
    
    .commercial-agricultural-texts h1 {
        font-size: 40px;
    }
    
    .financing-container {
        padding: 50px 0;
    }

    .financing-contents {
        margin: 0 0 0 80px;
    }

    .financing-quote-container {
        margin: 0 80px 0 0;
    }

    .footer-container {
        gap: 10px;
    }
}

@media screen and (max-width: 1024px) {
    /* iPad Pro / Small laptop adjustments */
    .header-navigation-container {
        justify-content: space-evenly;
        padding: 0;
    }
    
    .hamburger-menu {
        display: block;
        order: 1;
    }
    
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 85%;
        max-width: 350px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .header-nav.active {
        transform: translateX(0);
        display: flex;
    }
    
    .header-nav > a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
    }
    
    .close-menu {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        display: flex;
    }
    
    .header-nav-dropdown {
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 0 0 0 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .header-nav-dropdown.open {
        max-height: 200px;
        margin: 5px 0 10px;
        overflow: auto;
    }
    
    .header-nav-dropdown-row {
        flex-direction: column;
        gap: 0;
    }
    
    .header-nav-dropdown-col,
    .header-nav-dropdown-col-100 {
        width: 100%;
    }
    
    .header-nav > a:hover + .header-nav-dropdown,
    .header-nav-dropdown:hover {
        display: none;
    }
    
    .header-nav > a.active + .header-nav-dropdown {
        display: flex;
    }

    .header-logo-button img {
        width: 40%;
    }

    .design-price-button {
        margin-right: 0;
    }

    .buying-a-metal-building-texts,
    .buying-a-metal-building-lists {
        width: 80%;
    }

    .buying-a-metal-building-button {
        width: 70%;
    }
    
    .video-banner-texts {
        width: 80%;
    }
    
    .video-banner-texts h1 {
        font-size: 38px;
        line-height: 46px;
    }
    
    .team h1 {
        font-size: 32px;
    }
    
    .team-card-text h2 {
        font-size: 26px;
    }
    
    .top-selling-contents h1 {
        font-size: 34px;
    }
    
    .dayton-barns-form-1-container {
        flex-direction: row;
    }
    
    .form-1-image, .form-1 {
        width: 48%;
    }
    
    .customize-building-texts h1 {
        font-size: 38px;
    }
    
    .shed-products, .shed-products-1 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .shed-products-lists {
        width: 45%;
    }
    
    .buying-a-metal-building-contents {
        width: 40%;
    }
    
    .buying-a-metal-building-image {
        width: 40%;
    }
    
    .youtube-channel-container iframe {
        width: 80%;
        height: 400px;
    }
    
    .footer-container {
        flex-wrap: wrap;
    }
    
    .footer-logo {
        width: 32%;
    }
    
    .footer-main-menu {
        width: 32%;
    }
    
    .footer-images {
        width: 32%;
    }

    .product-container {
        padding: 100px 20px 50px;
    }

    .more-product-lists-container,
    .other-products-category-container {
        padding: 50px 20px;
    }

    .our-sizes-ranges-lists {
        width: 95%;
    }

    .locations-we-serve {
        padding: 100px 50px;
    }

    .more-product-lists-header-filter {
        padding: 0;
    }

    .videos-card {
        width: 40%;
    }

    .videos-lists {
        width: 100%;
    }

    .financing-upper-page {
        gap: 50px;
    }

    .financing-upper-contents {
        width: 50%;
    }

    .financing-upper-page img {
        width: 40%;
    }

    .team-to-help-you {
        width: 90%;
    }

    .team-to-help-you-card {
        width: 20%;
    }

    .review-us-upper {
        gap: 20px;
    }

    .review-us-img,
    .review-us-upper h2 {
        width: 45%;
    }

    .set-dayton-barns-card {
        width: 20%;
    }

    .single-team-page-container img,
    .single-team-content,
    .financing-form-single-team {
        width: 30%;
    }

    .we-are-metal-building-experts-container h1 {
        font-size: 50px;
    }

    .product-description.single-shed h1 {
        font-size: 36px;
    }

    .product-description h4,
    .single-shed-call-now-btn h3,
    .single-shed-call-now-btn a,
    .single-shed-title {
        font-size: 20px;
    }

    .product-description h5 {
        font-size: 18px;
    }

    .product-description h6 {
        font-size: 16px;
    }

    .rto-financing-single-shed h4,
    .single-shed-list-call-btn {
        font-size: 16px;
    }

    .single-shed-related-buildings-container h1 {
        font-size: 30px;
    }

    .single-shed-related-bldg-card h2 {
        font-size: 14px;
    }

    .single-shed-related-bldg-card h4 {
        font-size: 12px;
    }

    .product-container.single-shed {
        padding: 50px 20px;
    }
    
    .contact-us-upper.state-landing-page {
        flex-direction: column;
    }
    
    .contact-us-upper-contents.state-landing-page {
        width: 70%;
    }
}

@media screen and (max-width: 998px) {
    .header-navigation-container {
        justify-content: space-evenly;
    }
    
    .hamburger-menu {
        display: block;
        order: 1;
    }
    
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 85%;
        max-width: 350px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .header-nav.active {
        transform: translateX(0);
        display: flex;
    }
    
    .header-nav > a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
    }
    
    .close-menu {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        display: flex;
    }
    
    .header-nav-dropdown {
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 0 0 0 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .header-nav-dropdown.open {
        max-height: 200px;
        margin: 5px 0 10px;
        overflow: auto;
    }
    
    .header-nav-dropdown-row {
        flex-direction: column;
        gap: 0;
    }
    
    .header-nav-dropdown-col,
    .header-nav-dropdown-col-100 {
        width: 100%;
    }
    
    .header-nav > a:hover + .header-nav-dropdown,
    .header-nav-dropdown:hover {
        display: none;
    }
    
    .header-nav > a.active + .header-nav-dropdown {
        display: flex;
    }
    
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .overlay.active {
        display: block;
    }
    
    /* Additional adjustments for tablet landscape */
    .db-team {
        gap: 15px;
    }
    
    .top-selling-contents, .top-selling-vid-buttons {
        width: 90%;
    }
    
    .customize-your-wood-shed {
        padding: 0;
    }
    
    .wood-shed-image, .wood-shed-texts {
        width: 48%;
    }
    
    .best-sellers-cards-container {
        gap: 20px;
    }
    
    .commercial-agricultural-contents {
        padding: 0 20px;
    }
    
    .financing-contents, .financing-quote-container {
        width: 48%;
    }

    .more-product-lists-header-filter {
        padding: 0;
    }

    .single-team-page-container {
        flex-direction: column;
        align-items: center;
    }

    .single-team-page-container img,
    .single-team-content,
    .financing-form-single-team {
        width: 80%;
    }

    .locations-page-list {
        flex-direction: column;
        align-items: center;
    }

    .location-details {
        width: 60%;
    }
}

/* Tablet Portrait */
@media screen and (max-width: 834px) {
    .header-logo-button {
        width: 35%;
        text-align: center;
    }
    
    .design-price-button {
        width: 30%;
    }
    
    .video-banner-texts h1 {
        font-size: 34px;
        line-height: 42px;
    }
    
    .dayton-barns-form-1-container {
        flex-direction: column;
    }
    
    .form-1-image, .form-1 {
        width: 90%;
        margin: 0 auto;
    }
    
    .form-1-image img {
        height: 350px;
        object-fit: cover;
    }
    
    .customize-your-wood-shed {
        flex-direction: column;
        align-items: center;
    }
    
    .wood-shed-image, .wood-shed-texts {
        width: 90%;
    }
    
    .best-sellers-card {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .buying-a-metal-building-container {
        flex-direction: column;
    }
    
    .buying-a-metal-building-contents {
        width: 90%;
        margin: 0 auto;
    }
    
    .buying-a-metal-building-image {
        width: 90%;
        margin: 30px auto 0;
    }
    
    .commercial-agricultural-contents {
        flex-direction: column;
    }
    
    .commercial-agricultural-image, .commercial-agricultural-texts {
        width: 90%;
        margin: 0 auto;
    }
    
    .financing-container {
        flex-direction: column;
    }
    
    .financing-contents, .financing-quote-container {
        width: 90%;
        margin: 0 auto;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo, .footer-main-menu, .footer-images {
        width: 90%;
        margin: 0 auto;
    }

    .product-container {
        flex-direction: column;
        align-items: center;
        padding: 50px;
    }

    .product-description,
    .product-image {
        width: 100%;
    }

    .other-products-category-card {
        width: 50%;
    }

    .our-sizes-ranges-lists {
        justify-content: center;
    }

    .more-product-lists-header-filter {
        padding: 0;
    }

    .who-are-we-contents {
        flex-direction: column;
    }
    
    .who-we-are-texts {
        width: 80%;
    }

    .who-we-are-images {
        width: 80%;
    }

    .set-dayton-barns-apart-lists {
        flex-direction: column;
        align-items: center;
    }

    .set-dayton-barns-card {
        width: 50%;
    }

    .corporate-team-lists {
        width: 90%;
    }

    .corporate-team {
        width: 40%;
    }
}

@media screen and (max-width: 768px) {
    /* General adjustments */
    * {
        box-sizing: border-box;
    }

    /* Header Banner */
    .header-banner h2 {
        font-size: 14px;
        text-align: center;
    }

    /* Navigation */
    .header-navigation-container {
        flex-direction: row;
        height: auto;
        padding: 10px 0;
        align-items: center;
        justify-content: space-evenly;
    }

    .header-logo-button {
        width: 50%;
        order: 2;
    }

    .header-nav {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }

    .header-nav > a {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
    }

    .design-price-button {
        width: 30%;
        margin: 0;
        text-align: center;
        justify-content: center;
        order: 3;
    }

    /* Fix dropdown positioning for mobile */
    .header-nav-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
    }

    .header-nav-dropdown-row {
        flex-direction: column;
    }

    .header-nav-dropdown-col,
    .header-nav-dropdown-col-100 {
        width: 100%;
        padding: 0 15px;
    }

    /* Video Banner */
    .video-banner-texts h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .video-banner-texts p {
        font-size: 16px;
        line-height: 22px;
        width: 90%;
    }

    .video-banner video {
        width: 100%;
        height: 700px;
        object-fit: cover;
    }

    .view-all-buildings-button {
        font-size: 16px;
        padding: 12px 15px;
    }

    /* Team Section */
    .db-team {
        flex-direction: column;
        width: 95%;
    }

    .team {
        padding: 15px;
    }

    .team h1 {
        font-size: 28px;
        text-align: center;
    }

    .team-card-image img {
        width: 100%;
        height: auto;
    }

    .team-card-text h2 {
        font-size: 24px;
    }

    .team-card-text p {
        font-size: 16px;
    }

    .team-card-text a {
        font-size: 16px;
        padding: 12px 15px;
        width: 90%;
    }

    /* Top Selling Section */
    .top-selling {
        flex-direction: column;
        margin-top: 100px;
        gap: 30px;
    }

    .top-selling-contents {
        width: 90%;
        text-align: center;
        margin: 0 auto;
    }

    .top-selling-contents h1 {
        font-size: 32px;
        text-align: center;
    }

    .top-selling-contents p {
        font-size: 16px;
        width: 100%;
    }

    .top-selling-vid-buttons {
        width: 90%;
        margin: 0 auto;
    }

    .top-selling-vid-buttons video {
        width: 100%;
    }

    .top-selling-buttons a {
        width: 100%;
        font-size: 16px;
        margin: 0 auto;
    }

    /* Form Section */
    .dayton-barns-form-1-container {
        flex-direction: column;
    }

    .form-1-image, .form-1 {
        width: 100%;
    }

    .form-1-image img {
        height: 300px;
    }

    .form-1 form {
        width: 100%;
    }

    .form-1-header h1 {
        font-size: 23px;
    }

    /* Customize Building Section */
    .customize-building-container {
        padding: 0;
    }

    .customize-building-texts {
        width: 90%;
        margin: 0 auto;
    }

    .customize-building-texts h1 {
        font-size: 36px;
    }

    .customize-building-texts h3 {
        font-size: 24px;
    }

    .customize-building-texts a {
        width: 100%;
        padding: 20px 15px;
        font-size: 16px;
    }

    /* Wood Shed Section */
    .customize-your-wood-shed {
        flex-direction: column;
        gap: 30px;
    }

    .wood-shed-image, .wood-shed-texts {
        width: 90%;
    }

    .wood-shed-texts h1 {
        font-size: 36px;
    }

    .wood-shed-texts h3 {
        font-size: 24px;
    }

    .wood-shed-texts h4 {
        font-size: 18px;
    }

    .wood-shed-texts a {
        width: 100%;
        padding: 20px 15px;
        font-size: 16px;
    }

    /* Best Sellers Section */
    .best-sellers-texts h1 {
        font-size: 32px;
        text-align: center;
    }

    .best-sellers-texts h2, .best-sellers-texts h3 {
        font-size: 22px;
        text-align: center;
    }

    .best-sellers-cards-container {
        flex-direction: column;
        width: 95%;
    }

    .best-sellers-card {
        width: 100%;
    }

    .best-sellers-card img {
        height: auto;
    }

    .best-sellers-card a {
        width: 100%;
        font-size: 16px;
        margin: 0 auto;
    }

    /* Shed Products Section */
    .shed-products, .shed-products-1 {
        flex-direction: column;
        align-items: center;
        margin: 120px 0 30px;
    }

    .shed-products-lists {
        width: 90%;
    }

    /* Metal Building Section */
    .buying-a-metal-building-container {
        flex-direction: column;
        padding-bottom: 0;
    }

    .buying-a-metal-building-contents, 
    .buying-a-metal-building-texts,
    .buying-a-metal-building-lists,
    .buying-a-metal-building-button {
        width: 90%;
        padding-right: 0;
        margin: 0 auto;
    }

    .buying-a-metal-building-texts h1 {
        width: 100%;
        text-align: center;
    }

    .buying-a-metal-building-image {
        width: 100%;
        margin-top: 30px;
    }

    .buying-a-metal-building-image img {
        position: static;
        width: 100%;
        height: auto;
    }

    /* Youtube Channel */
    .youtube-channel-container iframe {
        width: 90%;
        height: 300px;
    }

    /* Commercial Agricultural Section */
    .commercial-agricultural-container h4 {
        text-align: center;
    }

    .commercial-agricultural-contents {
        flex-direction: column;
        gap: 30px;
    }

    .commercial-agricultural-texts h1 {
        font-size: 36px;
        flex-direction: row;
        gap: 5px;
    }

    .commercial-agricultural-texts p {
        font-size: 16px;
    }

    /* Financing Section */
    .financing-container {
        flex-direction: column;
        align-items: center;
    }

    .financing-contents, .financing-quote-container {
        width: 90%;
        margin: 0;
    }

    .financing-contents h1 {
        font-size: 24px;
    }

    .financing-contents h5, .financing-contents ul li {
        font-size: 16px;
    }

    /* Service Areas Section */
    .our-service-areas-container h1 {
        font-size: 28px;
    }

    .service-areas-location {
        width: 95%;
    }

    .service-areas-location a {
        font-size: 14px;
        padding: 10px;
    }

    /* Footer Section */
    .footer-container {
        flex-direction: column;
        padding: 30px 15px;
        gap: 50px;
    }

    .footer-logo, .footer-images {
        width: 100%;
    }

    .footer-main-menu {
        width: 80%;
        margin: 0 auto;
    }

    .daytonbarns-footer-logo {
        width: 50%;
    }

    .footer-submit-review,
    .footer-bbba {
        width: 40%;
    }

    .footer-images-1 {
        width: 30%;
    }

    .footer-images-2 {
        width: 40%;
    }

    .elementor-shape-bottom-1 {
        top: -1px;
    }

    .youtube-channel-container h1 {
        font-size: 33px;
    }

    .more-product-lists-header-filter {
        padding: 0;
    }

    .more-product-list-card-cat-temp {
        width: 45%;
    }

    .filter-no-of-cards,
    .filter-style-of-tiles {
        display: none;
    }

    .videos-card {
        width: 50%;
    }

    .videos-page-container h1 {
        font-size: 40px;
        width: 80%;
    }

    .financing-upper-page {
        flex-direction: column;
    }

    .financing-upper-page img {
        width: 80%;
    }

    .financing-upper-contents {
        width: 90%;
    }

    .team-to-help-you-card {
        width: 50%;
    }

    .review-us-upper {
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
    }

    .review-us-img,
    .review-us-upper h2 {
        width: 80%;
    }

    .review-us-img h1 {
        font-size: 60px;
    }

    .review-us-img img {
        width: 20%;
    }

    .elfsight-app-7531d0ff-2e11-4193-89e3-32a077924b5d {
        width: 100%;
    }

    .contact-us-upper {
        flex-direction: column;
    }

    .contact-us-upper img {
        width: 60%;
    }

    .contact-us-upper-contents {
        width: 80%;
    }

    .contact-us-upper-contents img {
        width: 25%;
    }

    .contact-us-information {
        width: 80%;
        gap: 50px;
    }

    .locations-contact-us-container {
        gap: 50px;
    }
    
    .locations-contact-us-upper {
        flex-direction: column;
    }

    .locations-contact-us-upper img {
        width: 60%;
    }

    .locations-contact-us-upper-contents {
        width: 80%;
    }

    .locations-contact-us-upper-contents img {
        width: 25%;
    }

    .locations-contact-us-information {
        width: 100%;
        gap: 50px;
        flex-direction: column;
    }

    .location-details {
        width: 80%;
    }

    .states-we-build-upper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .states-we-build,
    .states-we-build-contents {
        width: 80%;
    }

    .we-are-metal-building-experts-container {
        flex-direction: column;
        gap: 30px;
    }

    .we-are-metal-building-experts-container h1,
    .we-are-metal-building-experts-container h2 {
        width: 80%;
    }

    .locations-banner-image-container h1 {
        font-size: 60px;
    }

    .blog-page-details {
        gap: 20px;
    }

    .author-date-button {
        font-size: 12px;
    }

    .blog-page-title {
        font-size: 24px;
    }

    .blog-page-read-more {
        font-size: 16px;
    }

    .author-blog {
        width: 40%;
    }

    .author-blog-title {
        font-size: 20px;
    }

    .blog-posts-page-container {
        flex-direction: column;
        align-items: center;
    }

    .blog-posts-content,
    .blog-posts-right-corner {
        width: 80%;
    }

    .product-description.single-shed,
    .product-image.single-shed {
        width: 80%;
    }

    .single-shed-related-buildings-lists {
        width: 90%;
    }

    .single-shed-related-bldg-card {
        width: 35%;
    }

    .single-shed-related-buildings-container h1 {
        width: 90%;
    }
    
    .video-banner-texts {
        width: 80%;
    }
    
    .video-banner-texts h2 {
        width: 100%;
    }
    
    .video-banner-texts h3{
        text-align: center;
    }
    
    .bottom-page-content {
        padding: 0 30px;
    }
    
    .bottom-page-content h1 {
        width: 90%;
    }
    
    .bottom-page-content h2 {
        width: 85%;
    }
    
    .bottom-page-content-texts {
        width: 85%;
    }
    
    .bottom-page-hr {
        width: 95%;
    }

}

/* Additional adjustments for extra small screens */
@media screen and (max-width: 480px) {
    .video-banner-texts h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .team h1, .team h1 strong {
        font-size: 24px;
    }

    .customize-building-texts h1 {
        font-size: 32px;
    }

    .wood-shed-texts h1 {
        font-size: 32px;
    }

    .best-sellers-card h4 {
        font-size: 18px;
    }

    .commercial-agricultural-texts h1 {
        font-size: 32px;
    }

    .footer-logo h1 {
        font-size: 20px;
    }

    .footer-address h2 {
        font-size: 16px;
    }

    .customize-wood-shed-container {
        gap: 50px;
        padding-bottom: 0;
    }

    .template-navigation-header-container {
        padding: 30px;
    }

    .more-product-list-card,
    .other-products-category-card {
        width: 80%;
    }

    .other-products-category-container h1,
    .locations-we-serve h1 {
        text-align: center;
    }

    .locations-we-serve {
        padding: 50px 20px;
    }

    .locations-we-serve-list {
        gap: 25px;
    }

    .more-product-list-card-cat-temp,
    .more-product-lists-header-filter {
        width: 80%;
    }

    .videos-card {
        width: 80%;
    }

    .videos-page-container h1 {
        font-size: 36px;
        width: 80%;
    }

    .team-to-help-you-card {
        width: 70%;
    }

    .what-customers-say-container {
        width: 100%;
    }

    .customer-say-card {
        width: 80%;
    }

    .set-dayton-barns-card {
        width: 80%;
    }

    .corporate-team {
        width: 70%;
    }

    .single-team-buttons a {
        width: 50%;
    }

    .contact-us-upper img {
        width: 80%;
    }

    .contact-us-upper-contents img {
        width: 50%;
    }

    .contact-us-information {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .contact-us-page-container {
        gap: 50px;
    }
    
    .locations-contact-us-upper img {
        width: 80%;
    }

    .locations-contact-us-upper-contents img {
        width: 50%;
    }

    .locations-contact-us-information {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .locations-contact-us-page-container {
        gap: 50px;
    }

    .locations-info {
        flex-direction: column;
        gap: 30px;
    }

    .location-address,
    .locations-page-button {
        width: 80%;
    }

    .location-map iframe {
        width: 350px;
        height: 550px;
    }

    .locations-page-header h1 {
        font-size: 55px;
    }

    .locations-page-header h4 {
        font-size: 18px;
    }

    .locations-banner-image-container h1 {
        font-size: 55px;
    }

    .locations-banner-image-container {
        padding: 100px 0;
    }

    .locations-contact-form-container form {
        width: 90%;
    }

    .blog-page-list {
        flex-direction: column;
        gap: 15px;
    }

    .blog-page-img-button,
    .blog-page-details {
        width: 80%;
    }

    .blog-page-details {
        gap: 15px;
    }

    .blog-page-title {
        font-size: 20px;
    }

    .author-blog {
        width: 70%;
    }

    .blog-posts-content,
    .blog-posts-right-corner {
        width: 90%;
    }

    .blog-socials {
        gap: 5px;
    }

    .blog-socials a {
        font-size: 14px;
    }

    .blog-socials-fb,
    .blog-socials-x,
    .blog-socials-pin,
    .blog-socials-in,
    .blog-socials-tg {
        width: 30px;
        height: 30px;
    }

    .blog-posts-older,
    .blog-posts-newer {
        gap: 10px;
    }

    .blog-posts-older i,
    .blog-posts-newer i {
        /*padding: 8px 10px;*/
        padding: 8px;
        font-size: 12px;
    }

    .blog-posts-content iframe {
        width: 350px;
        height: 230px;
    }

    .blog-content-img {
        width: 70%;
    }
    
    .video-banner-texts h2 {
        width: 100%;
        font-size: 50px;
    }
    
    .video-banner-texts h3 {
        font-size: 30px;
    }
    
    .state-landing-page-form {
        display: flex;
        width: 90%;
    }
    
    .contact-us-upper-contents.state-landing-page {
        width: 90%;
    }
    
    .video-banner-texts {
        width: 90%;
    }
    
    .bottom-page-content {
        padding: 0 20px;
    }
    
    .bottom-page-content h1 {
        width: 100%;
    }
    
    .bottom-page-content h2 {
        width: 90%;
    }
    
    .bottom-page-content-texts {
        width: 90%;
    }
    
    .bottom-page-hr {
        width: 100%;
    }
    
    .bottom-page-content h1 {
        font-size: 28px;
    }
}