/*============================================================ Blogs CSS Start ============================================================*/
.blogs-wrap .blogs-filter {
    gap: 20px;
    align-items: center;
    display: flex;
}

.blogs-filter .select-filter {
    width: 276px;
    max-width: 100%;
}

.blogs-filter .select-filter .form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--primary-color);
    padding: 17px 55px 17px 18px;
    outline: none;
    box-shadow: none;
    transition: all 0.35s ease 0s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/icons/select-down-arrow.svg");
    background-repeat: no-repeat;
    background-position: center right 18px;
    cursor: pointer;
}

.select-filter .form-control option {
    background-color: var(--white);
    color: var(--teal-green);
}

.select-filter .form-control option:hover,
.select-filter .form-control option:checked {
    background-color: var(--teal-green);
    color: var(--white);
}

.blogs-filter .select-filter .form-control:focus {
    border-color: var(--primary-color);
}

.blogs-filter .search-filter {
    width: 530px;
    max-width: 100%;
    position: relative;
}

.blogs-filter .search-filter .search-btn {
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 24px;
    background: transparent;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    border-radius: 0;
}

.blogs-filter .search-filter .form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--primary-color);
    padding: 17px 55px 17px 18px;
    outline: none;
    box-shadow: none;
    transition: all 0.35s ease 0s;
    width: 100%;
}

.blogs-filter .search-filter .form-control:focus {
    border-color: var(--primary-color);
}

.blogs-filter .search-filter .form-control::-webkit-input-placeholder {
    color: var(--primary-color);
}

.blogs-filter .search-filter .form-control::-moz-placeholder {
    color: var(--primary-color);
}

.blogs-filter .search-filter .form-control:-ms-input-placeholder {
    color: var(--primary-color);
}

.blogs-filter .search-filter .form-control:-moz-placeholder {
    color: var(--primary-color);
}

.blogs-wrap .blogs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blogs-list .blog-item {
    width: calc(33.33% - 20px);
    position: relative;
}

.blog-item .blog-item-image {
    background: var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 60.385%;
    position: relative;
    margin-bottom: 20px;
}

.blog-item .blog-item-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    transition: all 0.35s ease 0s;
}

.blogs-list .blog-item:hover .blog-item-image img {
    transform: scale(1.025);
}

.blog-item h2 {
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: var(--primary-color);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
}

.blog-item h2 a {
    color: var(--primary-color);
    transition: all 0.35s ease 0s;
}

.blogs-list .blog-item:hover h2 a {
    color: var(--portland-orange);
}

.blog-item h2 a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 4px;
}

.blog-item .blog-desc {
    font-size: 1.125rem;
    line-height: 1.625rem;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item .blog-desc p {
    margin: 0;
}

/*Blogs Pagination*/
.blogs-pagination {
    margin: 40px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs-pagination ul {
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
}

.blogs-pagination ul li a, .blogs-pagination ul li span {
    min-width: 34px;
    height: 34px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.375rem;
    background: transparent;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0 4px;
    transition: all 0.35s ease 0s;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.blogs-pagination ul li span {
    cursor: default;
}

.blogs-pagination ul li a img {
    transition: all 0.35s ease 0s;
}

.blogs-pagination ul li a:hover img {
    filter: invert(1) brightness(11);
}

.blogs-pagination .more-pages {
    pointer-events: none;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    min-width: 14px;
}

.blogs-pagination ul li a:hover, .blogs-pagination ul li.active a, .blogs-pagination ul li.active span {
    background: var(--rich-black);
    color: var(--white);
    border-color: var(--rich-black);
}

.blogs-pagination ul li.disabled a {
    color: var(--primary-color);
    border-color: var(--border-color);
    background: var(--white);
    cursor: not-allowed;
    opacity: 0.6;
}

.blogs-pagination ul li.disabled a img {
    filter: none;
}

/*============================================================ Blogs CSS END ============================================================*/

/*============================================================ Blog Details CSS Start ============================================================*/
.blog-details-banner {
    padding-top: 147px;
    padding-bottom: 60px;
    background-image: url(../images/blog-details-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    color: var(--white);
    min-height: 100dvh;
    align-items: center;
    display: flex;
}

.blog-details-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 190px;
    left: 0;
    background-image: url(../images/blog-details-vector.webp);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    display: block;
    z-index: -1;
    pointer-events: none;
}

.blog-details-banner .page-title {
    /*max-width: 52.3%;*/
/* max-width: 47.3%; */
}

.blog-details-wrap {
    font-size: 1.125rem;
    line-height: 1.625rem;
    color: var(--primary-color);
    gap: 60px;
    align-items: flex-start;
    display: flex;
}

.blog-details-wrap .blog-detail-content {
    flex: 1;
}


.blog-details-wrap .blog-toc {
    width: 390px;
    min-width: 390px;
    position: sticky;
    top: 110px;
}

.blog-toc .blog-toc-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: rgba(var(--primary-rgb), 0.8);
    margin-bottom: 20px;
}

.blog-toc > ul {
    max-height: calc(100vh - 154px);
    overflow: auto;
}

.blog-toc ul li a, .blog-toc ul li span {
    display: inline-flex;
    padding: 7px 0 7px 20px;
    color: var(--primary-color);
    text-decoration: none;
    outline: none;
    border-left: 1px solid var(--border-color);
    position: relative;
	cursor: pointer;
    transition: all 0.35s ease 0s;
}

.blog-toc ul li ul li a, .blog-toc ul li ul li span {
    padding-left: 40px;
    font-size: 1rem;
    line-height: 1.5rem;
}

.blog-toc ul li > a:before, .blog-toc ul li > span:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.5px;
    width: 2px;
    height: 0;
    background: var(--portland-orange);
    opacity: 0;
    transition: all 0.25s ease 0s;
}

.blog-toc ul li.active > a.active:before, .blog-toc ul li > span.active:before {
    height: 100%;
    opacity: 1;
}

.blog-toc ul li > a.active, .blog-toc ul li > span.active {
    color: var(--portland-orange);
}

.blog-detail-content strong {
    font-weight: 700;
}

.blog-detail-content p {
    margin-bottom: 24px;
}

.blog-detail-content a {
    color: var(--turquoise);
    text-decoration: none;
    transition: all 0.35s ease 0s;
}

.blog-detail-content a:hover {
    color: var(--portland-orange);
}

.blog-detail-content p:last-child {
    margin-bottom: 0;
}

.blog-details-wrap .blog-detail-content .primary-btn {
    color: var(--white);
}

.blog-detail-content ul {
    margin: 0 0 24px;
    padding: 0 0 0 20px;
}

.blog-detail-content ul:last-child {
    margin-bottom: 0;
}

.blog-detail-content ul li {
    margin-bottom: 14px;
}

.blog-detail-content ul > li {
    padding-left: 30px;
    position: relative;
}

.blog-detail-content ul li:last-child {
    margin-bottom: 0;
}

.blog-detail-content ul > li:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 0;
    transform: rotate(45deg);
}

.blog-detail-content ol {
    margin: 0 0 24px;
    padding: 0 0 0 48px;
}

.blog-detail-content ol:last-child {
    margin-bottom: 0;
}

.blog-detail-content ol li {
    margin-bottom: 14px;
}

.blog-detail-content ol li:last-child {
    margin-bottom: 0;
}

.blog-detail-content ul ul, .blog-detail-content ol ul {
    margin-top: 10px;
    padding-left: 0;
}

.blog-detail-content ul ol, .blog-detail-content ol ol {
    margin-top: 10px;
    padding-left: 28px;
}

.blog-detail-content .blog-key-beats {
    margin: 30px 0 50px;
    color: var(--turquoise);
}

.blog-detail-content .blog-key-beats ul li:before {
    background: var(--turquoise);
}

.blog-full-image {
    margin: 0 0 60px;
    border-right: 4px;
}

.blog-full-image img {
    width: 100%;
    height: auto;
    border-right: 4px;
}

.blog-detail-content h2 {
    /*font-size: 4.875rem;*/
    /*line-height: 5.813rem;*/
    font-size: 2.25rem;
    line-height: 5rem;
    font-weight: 400;
    margin: 0px 0;
}

.blog-detail-content h3 {
    /*font-size: 2.5rem;*/
    /*line-height: 3.25rem;*/
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: 400;
    margin: 60px 0 24px;
}

.blog-detail-content h4 {
    font-size: 1.75rem;
    line-height: 2.5rem;
    font-weight: 400;
    margin: 60px 0 24px;
}

.blog-detail-content h5 {
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-weight: 400;
    margin: 60px 0 24px;
}

.blog-detail-content h2:first-child,
.blog-detail-content h3:first-child,
.blog-detail-content .cta-wrap:first-child {
    margin-top: 0;
}

.blog-detail-content h2:last-child,
.blog-detail-content h3:last-child,
.blog-detail-content .cta-wrap:last-child, .blog-full-image:last-child {
    margin-bottom: 0;
}

.blog-detail-content .cta-wrap {
    background: var(--persian-green);
    padding: 40px;
    color: var(--white);
    border-radius: 4px;
    gap: 40px;
    margin: 60px 0;
}

.blog-detail-content .cta-wrap:hover {
    color: var(--white);
}

.blog-detail-content .cta-wrap .section-title {
    /*font-size: 3.75rem;*/
    /*line-height: 4.5rem;*/
    font-size: 3.125rem;
    line-height: 3.875rem;
    margin: 0;
}

.blog-detail-content .cta-wrap .cta-btn img {
    filter: invert(1) grayscale(5) brightness(10);
}
.blog-detail-content table tr td,
.blog-detail-content table tr {
	border: none;
}
.blog-detail-content table tr:first-child {
  background-color: #004245;
  color: #fff;
}
.blog-detail-content table tr:nth-child(even) {
  background-color: #F3F8F8;
}

/*============================================================ Blog Details CSS END ============================================================*/

/*Blogs Responsive*/
@media screen and (min-width: 2242px) {
    .blog-details-banner {
        min-height: 900px;
    }
}

@media screen and (max-width: 1700px) {
    .blog-detail-content h2 {
        font-size: 3.75rem;
        line-height: 4.5rem;
    }

    .blog-detail-content .cta-wrap .section-title {
        font-size: 2.625rem;
        line-height: 3.375rem;
    }

    .blog-detail-content h3 {
        font-size: 1.875rem;
        line-height: 2.625rem;
    }

    .blog-detail-content h4 {
        font-size: 1.5rem;
        line-height: 2.125rem;
    }

    .blog-detail-content h5 {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }
}

@media screen and (max-width: 1600px) {
    .blog-details-wrap .blog-toc {
        width: 360px;
        min-width: 360px;
    }
}

@media screen and (max-width: 1440px) {
    .blogs-filter .select-filter .form-control,
    .blogs-filter .search-filter .form-control {
        padding: 13px 50px 13px 16px;
    }

    .blogs-filter .select-filter .form-control {
        background-size: 16px auto;
    }

    .blogs-filter .search-filter .search-btn {
        height: 22px;
        width: 22px;
    }

    .blogs-filter .search-filter {
        width: 400px;
    }

    .blog-item .blog-desc {
        font-size: 1.143rem;
        line-height: 1.571rem;
    }

    .blog-details-wrap {
        font-size: 1.143rem;
        line-height: 1.571rem;
        gap: 50px;
    }

    .blog-details-wrap .blog-toc {
        width: 300px;
        min-width: 300px;
    }

    .blog-toc ul li ul li a, .blog-toc ul li ul li span {
        font-size: 1rem;
        line-height: 1.429rem;
    }

    .blog-details-banner .page-title {
        max-width: 45.3%;
    }

    .blog-detail-content h2 {
        font-size: 3.571rem;
        line-height: 4.429rem;
        margin: 44px 0;
    }

    .blog-detail-content h3, .blog-detail-content h4, .blog-detail-content h5 {
        margin: 44px 0 20px;
    }

    .blog-detail-content .blog-key-beats {
        margin: 24px 0 44px;
    }

    .blog-full-image {
        margin-bottom: 44px;
    }

    .blog-detail-content .cta-wrap {
        padding: 30px;
        gap: 32px;
        margin: 44px 0;
    }

    .blog-detail-content .cta-wrap .section-title {
        font-size: 2.411rem;
        line-height: 3.161rem;
    }

    .blog-detail-content ul {
        padding-left: 16px;
    }

/*     .blog-detail-content ul li:before {
        top: 9px;
    } */

    .blog-detail-content ol {
        padding-left: 44px;
    }
}

@media screen and (max-width: 1280px) {
    .blog-details-banner .page-title {
        max-width: 51.6%;
    }
}

@media screen and (max-width: 1199px) {
    .blog-details-banner .page-title {
        max-width: 60%;
    }

    .blog-details-wrap .blog-toc {
        width: 260px;
        min-width: 260px;
    }
}

@media screen and (max-width: 991px) {
    .blogs-filter .search-filter {
        width: auto;
        flex: 1;
    }

    .blogs-wrap .blogs-list {
        gap: 24px;
    }

    .blogs-list .blog-item {
        width: calc(50% - 12px);
    }

    .blogs-pagination {
        margin: 34px 0 0;
    }

    .blog-details-banner {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: 500px;
    }

    .blog-details-banner:before {
        bottom: 0;
        left: 30%;
    }

    .blog-details-banner .page-title {
        max-width: 80%;
    }

    .blog-details-wrap {
        gap: 24px;
    }

    .blog-details-wrap .blog-toc {
        width: 220px;
        min-width: 220px;
        top: 75px;
    }

    .blog-toc ul li a, .blog-toc ul li span {
        padding: 7px 0 7px 16px;
    }

    .blog-toc ul li ul li a, .blog-toc ul li ul li span {
        padding-left: 32px;
    }

    .blog-detail-content h2 {
        font-size: 2.857rem;
        line-height: 3.571rem;
        margin: 34px 0;
    }

    .blog-detail-content h3 {
        font-size: 1.732rem;
        line-height: 2.286rem;
    }

    .blog-detail-content h4 {
        font-size: 1.357rem;
        line-height: 1.982rem;
    }

    .blog-detail-content h3, .blog-detail-content h4, .blog-detail-content h5 {
        margin: 34px 0 16px;
    }

    .blog-detail-content .blog-key-beats {
        margin: 20px 0 34px;
    }

    .blog-full-image {
        margin-bottom: 34px;
    }

    .blog-detail-content .cta-wrap {
        padding: 24px;
        gap: 24px;
        margin: 34px 0;
    }

    .blog-detail-content .cta-wrap .section-title {
        font-size: 1.697rem;
        line-height: 2.322rem;
    }

    .blog-detail-content p {
        margin-bottom: 20px;
    }

    .blog-detail-content ul {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .blog-detail-content ol {
        padding-left: 28px;
        margin-bottom: 20px;
    }

    .blog-detail-content ul li, .blog-detail-content ol li {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .blogs-filter .select-filter {
        width: 200px;
    }

    .blogs-filter .search-filter {
        width: auto;
        flex: 1;
    }

    .blog-item h2 {
        font-size: 1.143rem;
        line-height: 1.571rem;
        min-height: 44px;
    }

    .blog-item .blog-desc {
        font-size: 1rem;
        line-height: 1.429rem;
    }

    .blogs-pagination ul li a, .blogs-pagination ul li span {
        min-width: 32px;
        height: 32px;
    }

    .blog-item .blog-item-image {
        margin-bottom: 16px;
    }

    .blog-item h2 {
        margin-bottom: 14px;
    }

    .blog-details-banner {
        min-height: 100dvh;
    }

    .blog-details-banner .page-title {
        max-width: 100%;
    }

    .blog-details-wrap {
        gap: 32px;
        flex-direction: column-reverse;
    }

    .blog-details-wrap .blog-toc {
        width: 100%;
        min-width: 100%;
        top: auto;
        position: relative;
    }

    .blog-toc > ul {
        max-height: 200px;
    }

    .blog-toc ul li ul li a, .blog-toc ul li ul li span {
        font-size: 0.929rem;
        line-height: 1.357rem;
    }

    .blog-details-wrap {
        font-size: 1rem;
        line-height: 1.429rem;
    }

    .blog-detail-content p, .blog-detail-content ul, .blog-detail-content ol {
        margin-bottom: 18px;
    }

    .blog-detail-content h2 {
        font-size: 2.143rem;
        line-height: 2.857rem;
        margin: 30px 0;
    }

    .blog-detail-content h3 {
        font-size: 1.518rem;
        line-height: 2.072rem;
    }

    .blog-detail-content h3, .blog-detail-content h4, .blog-detail-content h5 {
        margin: 30px 0 16px;
    }

    .blog-detail-content .blog-key-beats {
        margin: 18px 0 30px;
    }

    .blog-full-image {
        margin-bottom: 30px;
    }

    .blog-detail-content .cta-wrap {
        padding: 20px;
        gap: 16px;
        margin: 30px 0;
    }

/*     .blog-detail-content ul li:before {
        top: 8px;
    } */
	.blog-detail-content ul > li {
    	padding-left: 24px;
	}
	.blog-detail-content ul > li:before {
		width: 10px;
    	height: 10px;
	}
}

@media screen and (max-width: 480px) {
    .blogs-wrap .blogs-filter {
        flex-direction: column;
    }

    .blogs-filter .select-filter {
        width: 100%;
    }

    .blogs-filter .search-filter {
        width: 100%;
    }

    .blogs-list .blog-item {
        width: 100%;
    }

    .blog-item h2 {
        min-height: initial;
    }

    .blog-details-banner {
        min-height: 458px;
    }

}