/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.archive-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.post-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: radial-gradient(at center center, #FFE595 0%, #FFD500 100%);
    padding: 20px;
    height: 100%; /* Ensure the entire card takes up the full height */
}

.post-inner-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Allow the inner content to stretch */
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-title a {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    font-family: 'PT Sans';
}

.card-title a:hover {
    color: #000000;
}

.card-excerpt {
    font-family: 'PT Sans';
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px; /* Maintain consistent spacing */
}

.read-more-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fff;
    color: #000000 !important;
    font-size: 18px;
    font-weight: 700;
    font-family: 'PT Sans';
    margin-top: auto; /* Pushes the button to the bottom */
    text-align: center;
	max-width: 160px;
    width: 100%;
}

/* press release arrow */
.press-release-slider .elementor-swiper-button {
    background-color: #FFD713;
    border-radius: 50%;
    padding: 7px;
}

/* Pagination styling */
.archive-pagination {
    margin-top: 50px;
    text-align: center;
}

.archive-pagination a {
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #ffc107;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
	font-size: 18px;
    font-weight: 500;
}

.archive-pagination a:hover{
	background-color: #e0a800;
    border-radius: 5px;
    color: #fff;
}

.archive-pagination .current {
    padding: 10px 15px;
    background-color: #e0a800;
    border-radius: 5px;
    color: #fff;
	font-size: 18px;
    font-weight: 500;
}
/* latest post */
.latest-posts-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Two columns: larger post on the left, smaller posts on the right */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Large post on the left */
.large-post {
    grid-column: 1 / 2; /* Spans the first column */
    position: relative;
}
.large-post .post-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}
.latest-posts-container .read-more-btn {
    background-color: #FED702;
}
.post-thumbnail {
    position: relative;
}
.large-post .post-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
}

.large-post .post-date {
    background-color: #ffcc00;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
}

.large-post .post-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.large-post .post-excerpt {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.large-post .read-more {
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

/* Small posts on the right */
.latest-posts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    font-family: Arial, sans-serif;
}
.left-large-post .post-thumbnail img {
    width: 100%;
    height: 420px;
	object-fit: cover;
    border-radius: 0px;
}

.left-large-post .post-date {
    background-color: #ffcc00;
    font-weight: 700;
    font-size: 25px;
    display: inline-block;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0px;
    text-align: center;
    color: #1C1E4D;
}

.left-large-post .post-title {
    font-size: 24px;
    font-weight: 700;
    color: #1C1E4D;
    margin-bottom: 10px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.left-large-post .post-excerpt {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #79797B;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.left-large-post .read-more {
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

.right-small-posts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-right-post {
    display: flex;
    gap: 20px;
}

.single-right-post .post-thumbnail {
   width:40%;
	position:relative;
}

.single-right-post .post-thumbnail img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.single-right-post .post-info {
   width:60%;
}

.single-right-post .post-date {
    background-color: #ffcc00;
    font-weight: 700;
    font-size: 18.5px;
    display: inline-block;
    width: 56px;
    height: 56px;
    position: absolute;
    right: 0px;
    text-align: center;
    color: #1C1E4D;
}

.single-right-post .post-title {
    font-size: 18px;
    font-weight: 700;
	margin:0px;
    margin-bottom: 5px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.single-right-post .post-excerpt {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #79797B;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.single-right-post .read-more {
   color: #1C1E4D;
   font-weight: 700;
   font-size: 18px;
}
.single-right-post .read-more:hover{
   color: #1C1E4D;
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .archive-cards {
        grid-template-columns: repeat(2, 1fr);
    }
	.testimonail-slides .swiper-navigation-button {
		top:22%;
	}
}

@media (max-width: 768px) {
	.testimonail-slides .swiper-navigation-button {
		top: -40%;
	}
	#testimonail-slides .swiper .swiper-navigation-button, #testimonail-slides.swiper-container .swiper-navigation-button{
		display:flex !important;
	}
    .archive-cards {
        grid-template-columns: 1fr;
    }
	.latest-posts-container {
		display: block;
	}
	.left-large-post {
		background-color: #FFFFFF;
		margin-bottom: 20px;
	}
	.left-large-post .post-info {
		padding: 20px;
	}
	.left-large-post {
		background-color: #FFFFFF;
		margin-bottom: 20px;
	}
	.left-large-post .post-info {
		padding: 20px;
	}
	.single-right-post {
		display: block;
		background-color: #fff;
	}
	.single-right-post .post-thumbnail {
		width: 100%;
	}
	.single-right-post .post-date {
		width: 64px;
		height: 64px;
		padding: 5px;
	}
	.left-large-post .post-date {
		font-size: 18px;
		padding: 5px;
		width: 64px;
		height: 64px;
	}
	.single-right-post .post-info {
		width: 100%;
		padding: 20px;
	}
	.single-right-post .post-thumbnail img {
		height: 240px;
	}
	.left-large-post .post-thumbnail img {
		height: 240px;
	}
	.single-right-post .read-more{
		color: #1C1E4D;
		font-weight: 700;
		font-size: 18px;
		display: inline-block;
		padding: 10px 15px;
		background-color: #ffcc00;
		font-size: 18px;
		font-weight: 700;
		margin-top: auto;
		text-align: center;
		max-width: 160px;
		width: 100%;
	}
}

#form-field-name::placeholder,
#form-field-name::-ms-input-placeholder{
	color:#1C1E4D;
}
.elementor.elementor-57.elementor-location-header .elementor-section.elementor-top-section{
    z-index: 9;
}
.ta_archive_fact .card-image img{
	width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 300px;
}
.ta_archive_fact .post-item {
    transition: box-shadow 0.1s ease;
}

.ta_archive_fact .post-item:hover {
    box-shadow: 2px 2px 25px rgb(36 36 36 / 10%);
}
.ta-footer-newsletter input:focus,
.ta-footer-newsletter input:focus-within,
.ta-footer-newsletter input:focus-visible{
	outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.ta-footer-newsletter input::-webkit-input-placeholder {
    color: #1C1E4D;
}
.ta-footer-newsletter input:-ms-input-placeholder {
    color: #1C1E4D;
}
.ta-footer-newsletter input::-ms-input-placeholder {
    color: #1C1E4D;
}
.ta-country-image img{
	width: 100%;
    max-height: 750px;
    object-fit: cover;
}
.page-content blockquote{
	margin:0;
}
strong {
    font-weight: 600;
}

.ta-para a{
    color:#1C1E4D;
}