/* Blog Listing page css start */

.news-wrapper {
    display: flex;
    gap: 70px;
}

.news-sidebar {
    width: 100%;
    max-width: 300px;
}

.news-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.news-card {
    width: calc(33.333% - 24px);
    position: relative;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #DDD6CC;
}

.news-card-thumb {
    width: 100%;
    background-color: #fff;
    border-radius: 12px 12px 0px 0px;
    line-height: 0px;
}

.news-card-thumb img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px 12px 0px 0px;
}
.news-card-content{
    padding: 30px;
}
.news-card-content h5 {
    font-size: 20px;
    color: #123A6C;
    margin-top: 0px;
    margin-bottom: 18px;
    line-height: normal;
}

.news-card-content p {
    margin-bottom: 20px;
    color: #333;
    line-height: normal;
    word-break: break-word;
}

.news-card .news-card-button {
    font-size: 16px;
    color: #003A70;
    display: flex;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    gap: 3px;
}

.news-card .news-card-button img {
    max-width: 10px;
    margin: 0px;
}

.news-sidebar h6 {
    font-size: 18px;
    color: #2E3F5C;
    font-weight: bold;
    margin-bottom: 18px;
    line-height: normal;
    font-family: 'Avenir', sans-serif;
}

.news-single-checkbox + h6 {margin-top:40px!important;}
.news-single-checkbox {
    margin: 0px 0px 15px 0px;
    display: inline-block;
    width: 100%;
}

.news-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #9E8E7E;
    position: relative;
    padding-left: 34px;
    user-select: none;
}

.news-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.news-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: -6px;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: 1.5px solid #C8C0B0;
    border-radius: 4px;
    transition: 0.3s ease;
}

.news-checkbox input:checked~.checkmark {
    background-color: #123A6C;
    border-color: #123A6C;
}

.news-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.news-checkbox input:checked~.checkmark:after {
    display: block;
}

.news-checkbox .checkmark:after {
    left: 8px;
    top: 1px;
    width: 7px;
    height: 14px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.news-sidebar .secondary-button {
    margin-top: 40px;
}

.news-pagination {
    margin-top: 40px;
    max-width: calc(100% - 300px - 72px);
    width: 100%;
    margin-left: auto;
}

.news-pagination ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.news-pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.70);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.news-pagination li a.active {
    color: rgba(0, 0, 0, 1);
}

.news-pagination li a:hover {
    color: rgba(0, 0, 0, 1);
}
/* Blog Deatil Page start */


.news-hero {
    position: relative;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.news-hero .container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0px 20px;
}

.news-hero-content {
    max-width: 940px;
}

.news-hero-content h1 {
    margin: 0;
    color: #123A6C;
    font-weight: 600;
    line-height: 1.1;
}

.news-section {
    padding: 100px 0px;
}

.news-section .container {
    max-width: 90%;
    margin: 0px auto;
    padding: 0px 20px;
}

.news-section-title {
    text-align: center;
    margin-bottom: 100px;
}

.news-section-title h2 {
    margin: 0px 0px 50px 0px;
}

.news-intro-area {
    background-color: #fff;
}
.news-from-area .news-section-title, .news-cta-area .news-section-title{
    margin-bottom: 0px;
}
.news-intro-area .news-section-title h2 {
    color: #123A6C;
}

.news-intro-area .news-intro-columns {
    display: flex;
    gap: 100px;
    align-items: center;
}

.news-intro-columns .news-intro-thumb {
    max-width: 50%;
    flex: 1;
}

.news-intro-columns .news-intro-content {
    max-width: 50%;
    flex: 1;
    color: #333;
}

.news-intro-content p + p {
    margin: 0px;
}

.news-intro-content ul {
    list-style: disc;
    padding-left: 20px;
}

.news-quote-area{
    background-color:#f5fbfb;
}

.news-quote-box{
	position: relative;
	z-index: 1;
	box-shadow: 8px 8px 20px 0px rgba(0, 58, 112, 0.03);
	border-radius: 15px;
	padding: 50px 100px;
	margin: 0px auto;
 }
 .news-quote-box .news-quote-inner-box::after {
	position: absolute !important;
	top: 0;
	left: 0;
	content: '' !important;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	z-index: -1 !important;
	display: block !important;
	background: linear-gradient(0deg, #F0F9F9 0%, #FFFFFF 100%) padding-box, linear-gradient( 0deg, rgba(255, 255, 255, 1) 0%, rgba(216, 234, 234, 0.5) 49%, rgba(255, 255, 255, 1) 74%) border-box;
	border: 3px solid #fff;
 }
 .news-quote-box .news-quote-inner-box::before {
	position: absolute !important;
	top: 0px;
	left: -14px;
	content: '' !important;
	width: 55px;
	height: 100%;
	border-radius: 15px;
	z-index: -1 !important;
	display: block !important;
	box-shadow: 8px 8px 20px 0px rgba(0, 58, 112, 0.03) !important;
 }
 .news-quote-box:nth-child(1) .news-quote-inner-box::before {
	background: linear-gradient(180deg, #96D7E6 51%, #43C1B7 100%);
 }
 .news-quote-box  .news-quote-inner-box{
    text-align: center;
 }
 .news-quote-inner-box .news-quote-text {
    font-size: 24px;
    margin: 0px;
 }
 .news-quote-inner-box .news-quote-author {
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
 }

 .news-from-area .news-section-title h2 {
    color: #123A6C;
 }

 .news-from-area .news-section-title p {
    width: 100%;
    max-width: 1290px;
    font-size: 22px;
    margin-left: auto;
    margin-right: auto;
    color: #123A6C;
 }

 .news-cta-area{
    background-color: #003A70;
 }

 .news-cta-area .news-section-title h2{
    color: #E2FDFD;
    max-width: 1447px;
    margin-left: auto;
    margin-right: auto;
 }

 .news-cta-area .news-section-title p {
    max-width: 1077px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    color: #E2FDFD;
 }

 .news-cta-area .secondary-button {
    text-align: center;
    margin-top: 50px;
 }
 
 @media screen and (min-width: 1680px) {
    .news-hero .container, .news-section .container{
        max-width: 1680px;
    }
 }
 @media screen and (max-width: 1536px) {
    .news-wrapper {
        gap: 55px;
    }

    .news-quote-inner-box .news-quote-text, .news-from-area .news-section-title p, .news-cta-area .news-section-title p{
        font-size: 20px;
    }
    .news-quote-inner-box .news-quote-author{
        font-size: 16px;
    }
    .news-intro-area .news-intro-columns{
        gap: 70px;
    }
    .news-quote-box{
        padding: 40px 80px;
    }
 }

 @media screen and (max-width: 1366px) {
    .news-card-content{
        padding: 20px;
    }
 }

 @media screen and (max-width: 1024px) {
    .news-wrapper {
        gap: 30px;
    }

    .news-card {
        width: calc(50% - 24px);
    }

    .news-quote-inner-box .news-quote-text, .news-from-area .news-section-title p, .news-cta-area .news-section-title p{
        font-size: 16px;
    }
   
    .news-intro-area .news-intro-columns{
        gap: 50px;
    }
    .news-quote-box{
        padding: 30px 50px;
    }
    .news-cta-area .secondary-button{
        margin-top: 30px;
    }
 }

 @media screen and (max-width: 992px) {
    .news-hero .container{
        max-width: 100%;
    }
    .news-hero{
        padding: 50px 0px;
    }
    .news-section{
        padding: 50px 0px;
    }

    .news-section-title{
        margin-bottom: 50px;
    }
    .news-section-title h2{
        margin-bottom: 20px;
    }
    .news-intro-area .news-intro-columns{
        flex-direction: column;
        gap: 30px;
    }
    .news-intro-columns .news-intro-thumb{
        max-width: 100%;
        width: 100%;
    }
    .news-intro-columns .news-intro-thumb img{
        width: 100%;
    }
    .news-intro-columns .news-intro-content{
        max-width: 100%;
    }
    .news-quote-box{
        padding: 20px 30px;
    }
 }

 @media screen and (max-width: 767px) {
    .news-sidebar {
        max-width: 100%;
    }

    .news-sidebar-inner {
        border-right: none !important;
        border-bottom: 1px solid #333;
		padding-bottom: 25px;
    }

    .news-wrapper {
        flex-direction: column;
    }

    .news-card {
        width: 100%;
    }

    .news-section .container{
        max-width: 100%;
    }
    .news-quote-area .container{
        max-width: 95%;
    }
    .news-section-title{
        margin-bottom: 30px;
    }
    .news-section-title h2{
        margin-bottom: 10px;
    }
    .news-quote-inner-box .news-quote-text, .news-from-area .news-section-title p, .news-cta-area .news-section-title p{
        font-size: 14px;
    }
    .news-quote-inner-box .news-quote-author{
        font-size: 12px;
    }
    .news-quote-box{
        padding: 10px 20px;
    }
    .news-cta-area .secondary-button{
        margin-top: 20px;
    }
    
 }
 