.ytd_wrap {
    padding-top: 18px;
    padding-bottom: 40px;
}

.ytd_heading_info {
    margin-bottom: 42px;
}

.ytd_heading_info h2 {
    padding-bottom: 10px;
    color: #009FE3;
    line-height: 116.667%;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
}

.ytd_heading_info p {
    color: #002939;
    line-height: 24px;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 1px;
}

.ytd_widget>.vc_column-inner {
    padding-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-8 {
    gap: 8px !important;
}

.h-full {
    height: 100%;
}

.ytd_container {
    padding-bottom: 45px;
}

.ytd_container h2 {
    padding-bottom: 30px;
}

.ytd_plant_info {
    /*border: 1px solid #113140;*/
    /*padding: 12px;*/
    /*width: 316px;*/
    border-radius: 12px;
}

.ytd_plant_grid {
    display: grid;
    gap: 20px;

}

.ytd_info_flex,
.ytd_item_flex {
    display: flex;
    flex-direction: column;
}

.ytd_item_flex {
    row-gap: 20px;
}

.ytd_center {
    text-align: center;
}

.ytd_info_flex {
    row-gap: 14px;
}

.ytd_b_box {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 12px;
}

.ytd_static_head h4,
.ytd_info p,
.ytd_weather_val p,
.ytd_weather_c {
    margin: 0;
    color: #002939;
}

.ytd_static_head,
.ytd_weather_val {
    display: flex;
    align-items: center;
}

.ytd_static_head {
    gap: 4px;
    margin-bottom: 12px;
}

.ytd_weather_val {
    gap: 10px;
}

.ytd_static_icon {
    max-width: 18px;
    height: 18px;
}

.ytd_static_icon img,
.ytd_w_icon img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    vertical-align: baseline;
}

.ytd_static_head h4 {
    font-size: 18px;
    letter-spacing: 1px;
}

.ytd_i_title {
    font-size: 12px;
}

.ytd_caps {
    text-transform: uppercase;
}

.ytd_weather_val p,
.ytd_info strong {
    font-size: 18px;
}

.ytd_info strong {
    font-weight: 700;
}

.ytd_info strong span,
.ytd_info_item strong span,
.ytd_weather_c {
    font-weight: 300 !important;
    font-size: 12px;
}

.ytd_info p,
.ytd_info_item p,
.ytd_weather_val p {
    line-height: 23px;
}

.ytd_info p.ytd_i_title,
.ytd_info_item p.ytd_i_title,
.ytd_weather_c {
    line-height: 17px;
}

.ytd_b_box_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ytd_weather_val p {
    font-weight: 500;
}

.ytd_w_icon {
    width: 28px;
    height: 28px;
}

.ytd_box_flex_col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ytd_static_icon.icon_32 {
    width: 30px;
    height: 30px;
    max-width: 30px;
}

.ytd_plant_grid.grid_cols_1 {
    grid-template-columns: 1fr 1fr;
}

/* ytd_plant_grid styles */

/* Upto 1024px: 4 columns */
@media (min-width: 1024px) {
    .ytd_plant_grid {
        /*display: flex;*/
        grid-template-columns: repeat(2, 1fr);
    }

    .ytd_box_w {
        min-width: 264px;
    }
}

@media (max-width: 1023px) {

    .ytd_plant_grid {
        display: grid;
    }
}

/* Below 1024px (and above 768px): 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .ytd_plant_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024.99px) {
    .ytd_wrap {
        padding-top: 28px;
    }

    .ytd_wrap h2 {
        padding-bottom: 20px;
        font-size: 28px;
    }
}

@media (max-width: 991.99px) {
    .ytd_wrap {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .ytd_wrap h2 {
        padding-bottom: 14px;
        font-size: 24px;
    }
}

/* Below 768px: 1 column */
@media (max-width: 767px) {
    .ytd_plant_grid {
        grid-template-columns: 1fr;
    }

    .ytd_wrap h2 {
        font-size: 20px;
    }
}