main {
    display: block;
    width: 100%;
}

main .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 100%;
}

@media (min-width: 576px) {
    main .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    main .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    main .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    main .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    main .container {
        max-width: 1320px;
    }
}


/* .latest_article START */
.latest_article {
    padding: 60px 0;
}

.latest_article__wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.latest_article__item {
    max-width: 32%;
    flex: 32%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    border-radius: 3px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.latest_article__item p {
    font-size: 17px;
    margin-bottom: 0;
}

.latest_article__item:first-of-type {
    padding: 3em;
    gap: 20px;
    box-shadow: none;
}

.latest_article__label {
    color: #41a0f2;
    font-weight: 600;
    /*font-size: 17px;*/
}

.latest_article__title {
    font-size: 35px;
    color: #41a0f2;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
}

.clicky-btn {
    background-color: #fff;
    border-radius: 4px;
    color: #000;
    border: 2px solid #000;
    padding: 10px 30px;
    text-decoration: none;
    transition: all .3s ease;
}

.clicky-btn-orange {
    background-color: #ff5a0b;
    color: #fff;
    border: 2px solid #ff5a0b;
}

.clicky-btn-orange:hover {
    background-color: #fff;
    color: #ff5a0b;
    border-color: #ff5a0b !important;
}

.latest_article__item-img {
    display: inline-block;
    height: 236px;
}

.latest_article__item-img img {
    /*width: 100%;*/
    object-fit: cover;
    height: 100%;
}

.latest_article__item a {
    text-decoration: none;
}

.latest_article__excerpt {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 40%;
    padding: 35px 35px 35px 35px;
}

.latest_article__excerpt h3 {
    margin-bottom: 0;
    text-decoration: none;
    color: #122866;
    font-weight: 400;
    font-size: 18px;
}

.latest_article__excerpt p {
    margin-bottom: 0;
    text-decoration: none;
    font-size: 14px;
    line-height: 21px;
    color: #777777;
}

.latest_article__date {
    font-size: 12px;
    font-weight: 300;
    color: #adadad;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .latest_article__item {
        max-width: 31%;
        flex: 31%;
    }

    .latest_article__item:first-of-type {
        padding: 2em;
    }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .latest_article__item {
        max-width: 48%;
        flex: 48%;
    }

    .latest_article__item:first-of-type {
        padding: 3em;
    }
}

@media only screen and (min-width: 641px) and (max-width: 766px) {
    .latest_article__item {
        max-width: 48%;
        flex: 48%;
    }

    .latest_article__item:first-of-type {
        padding: 2em;
    }
}

@media only screen and  (max-width: 640px) {
    .latest_article__item {
        max-width: 100%;
        flex: 100%;
    }

    .latest_article__item:first-of-type {
        padding: 2em;
    }
}

/* .latest_article END */


/* .featured_listings START */
.featured_listings {
    padding: 60px 0;
}

.featured_listing__header {
    text-align: center;
    margin-bottom: 40px;
}

.featured_listings__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.featured_listings__item {
    width: 100%;
    max-width: 32%;
}

.cart-listing {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
}

.cart-listing img {
    height: 190px;
    object-fit: cover;
}

.cart-listing__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: baseline;
}

.cart-listing__title {
    font-size: 24px;
    margin-bottom: 0;
}

.cart-listing__link-title {
    text-decoration: none;
}

.cart-listing__link-title:hover .cart-listing__title {
    color: #022866;
}

.cart-listing__price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.cart-listing__specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cart-listing__specs i,
.cart-listing__specs span {
    color: gray;
}

.cart-listing .clicky-btn-orange {
    padding: 10px 30px;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

@media only screen and (min-width: 641px) and (max-width: 991px) {
    .featured_listings__item {
        max-width: 48%;
        flex: 48%;
    }

    .featured_listings__wrapper {
        gap: 20px;
        justify-content: center;
    }

    .cart-listing__specs {
        row-gap: 10px;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 640px) {
    .featured_listings__item {
        max-width: 100%;
        flex: 100%;
    }

    .featured_listings__wrapper {
        gap: 20px;
    }

    .cart-listing__specs {
        row-gap: 10px;
        justify-content: flex-start;
    }
}

/* .featured_listings END */

.ct-search {
    --bg: #fff;
    --fg: #1f2937;
    --muted: #6b7280;
    --accent: #111827;
    --light: #f3f4f6;
    --ring: #e5e7eb;
    font-family: inherit;
    color: var(--fg);
    background: var(--bg);
    border: 1px solid var(--ring);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.ct-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.ct-tab {
    appearance: none;
    border: 1px solid var(--ring);
    background: var(--light);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    color: var(--muted)
}

.ct-tab[aria-selected="true"] {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.ct-panel {
    display: none
}

.ct-panel.active {
    display: block
}

.ct-row {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 10px
}

.ct-field {
    grid-column: span 12
}

@media (min-width: 768px) {
    .ct-field.sm-6 {
        grid-column: span 6
    }

    .ct-field.sm-4 {
        grid-column: span 4
    }

    .ct-field.sm-3 {
        grid-column: span 3
    }

    .ct-field.sm-2 {
        grid-column: span 2
    }
}

.ct-field label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px
}

.ct-input, .ct-select {
    width: 100%;
    border: 1px solid var(--ring);
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff
}

.ct-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.ct-chip {
    border: 1px solid var(--ring);
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 13px
}

.ct-chip input {
    display: none
}

.ct-chip input:checked + span {
    font-weight: 700
}

.ct-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px
}

.ct-btn {
    appearance: none;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700
}

.ct-btn.secondary {
    background: #fff;
    color: var(--accent)
}

.ct-inline {
    display: flex;
    align-items: center;
    gap: 8px
}

.ct-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px
}

.ct-switch input[type="checkbox"] {
    width: 18px;
    height: 18px
}

details.ct-more {
    margin-top: 8px;
    border-top: 1px dashed var(--ring);
    padding-top: 10px
}

details.ct-more > summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700
}

details.ct-more > summary::-webkit-details-marker {
    display: none
}

.ct-help {
    font-size: 12px;
    color: var(--muted)
}

/* .search_small_section START */

/* .search_small_section END */