@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

/* Color variables */
:root {
    --white: #fff;
    --main-blue: #0C1E75;
}

body {
	font-family: "Plus Jakarta Sans" !important;
}
h2 {
	font-size: 40px !important;
	font-weight: 600;
}
section {
	padding: 70px 0;
}
.main {
	max-width: 100%;
	overflow: hidden;
}
.new-header {
	background: var(--main-blue);
	padding: 15px 0;
}
.ta-c {
	text-align: center;
}
img {
	display: block;
	max-width: 100%;
}
.container {
	max-width: 1170px;
	padding: 0 15px;
	margin: 0 auto;
}
.header-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.upload-btn {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 7px;
	color: #20242E;
	padding: 7px 10px;
	font-size: 14px;
	text-transform: uppercase;
	font-family: "Source Sans 3" !important;
}
.header-logo {
	max-width: 250px;
}
.eremote-banner-section {
	padding: 150px 0;
	background: url(../images/hero-banner.jpg) center center no-repeat;
	background-size: cover;
}
.eremote-banner-title {
	font-size: 56px;
}
.eremote-banner-subtitle {
	font-size: 16px;
	color: #20242E;
	margin-top: 20px;
	font-weight: 600;
}
.new-search-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    max-width: 700px;
    width: 100%;
    margin-top: 20px;
}
.new-search-submit {
	display: inline-block;
	padding: 12px;
	background: var(--main-blue);
	border-radius: 7px !important;
	line-height: 10px;
}
.new-search-submit svg path {
	fill: #fff;
}
.new-search-submit:hover svg path {
	fill: #B3C4FF;
}
.new-search-form label {
	color: #20242E;
}
.new-search-form input {
    border-radius: 7px;
    border: 1px solid #1434CB;
    padding: 9px 15px;
    display: block;
    line-height: 1.5;
    height: auto;
    font-size: 16px;
}
.input-holder.submit {
    flex-grow: 1;
}
.input-holder {
    flex-grow: 7;
}
.eremote-results-section {
	background: #F7F9FC;
}
.job-listings-title {
    font-size: 40px;
    text-align: center;
    font-family: "Plus Jakarta Sans" !important;
}
.job-listing-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    margin-top: 30px;
}
.job-listing-item {
    flex: 0 0 48.5%;
    border: 1px solid #B3C4FF;
    border-radius: 6px;
    margin-bottom: 3%;
    font-family: "Source Sans 3" !important;
}
.job-listing-item-inner {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.job-listing-item-location {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    flex-grow: 3;
}
.job-listing-item-company, .job-listing-item-city, .job-listing-item-posted, .job-listing-item-salary {
	display: flex;
	gap: 5px;
	align-items: center;
	color: #494E5B;
}
.job-listing-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.job-listing-item-apply, .insights-item-button {
    text-transform: uppercase;
    color: #fff;
    background: var(--main-blue);
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    font-family: "Source Sans 3" !important;
    outline: none;
}
.job-listing-item-apply:visited, .insights-item-button:visited {
	color: #fff;
}
.job-listing-item-apply span, .insights-item-button span {
	line-height: 20px;
}
.job-listing-item-apply svg path, .insights-item-button svg path {
	fill: #fff;
}
.job-listing-item-apply:hover span, .insights-item-button:hover span {
	color: #B3C4FF;
}
.job-listing-item-apply:hover svg path, .job-listing-item-apply.view-all:hover svg path, .insights-item-button:hover svg path {
	fill: #B3C4FF;
}
.job-listing-item-apply.view-all {
	color: var(--main-blue);
	background-color: transparent;
}
.job-listing-item-apply.view-all svg path {
	fill: var(--main-blue);
}
.view-all-holder {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 20px;
}
.ads-holder {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 30px;
}
.ads-item {
    font-size: 24px;
    flex: 0 0 25%;
}
.insights-section:not(.services) {
	background: #F7F9FC;
}
.insights-holder {
    display: flex;
    gap: 3%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 50px;
}
.insights-item {
    flex: 0 0 31.3%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #B3C4FF;
}
.insights-item-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.insights-item-info {
    padding: 20px;
}
.insights-item-title {
	font-size: 24px;
}
.insights-item-subtitle {
    color: #494E5B;
    font-size: 16px;
    line-height: 1.6;
}
.insights-item-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
footer {
	padding: 50px 0;
	background: #F7F9FC;
}
.footer-link {
	color: #1434CB;
	font-size: 16px;
	display: inline-block;
	margin-bottom: 15px;
}
.footer-link:hover {
	color: #1434CB;
	text-decoration: underline !important;
}
.footer-holder {
	display: flex;
	flex-wrap: wrap;
}
.footer-col {
	display: flex;
	flex-direction: column;
	flex: 0 0 25%;
}
.footer-bottom {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 30px;
}
.footer-bottom p {
	margin: 0;
	color: #20242E;
}
@media(max-width: 991px) {
	.eremote-banner-section {
		padding: 70px 0;
	}
	.insights-holder {
		gap: 3%;
		justify-content: flex-start;
	}
	.insights-item {
		flex: 0 0 48.5%;
		margin-bottom: 3%;
	}
}
@media(max-width: 767px) {
	section, footer {
		padding: 30px 0;
	}
	.new-header {
		padding: 25px 0;
	}
	h2 {
	    font-size: 36px !important;
	}
	.eremote-banner-section {
		padding: 30px 0;
	}
	.header-inner {
	    flex-direction: column;
	    gap: 30px;
	}
	.eremote-banner-title {
	    font-size: 45px;
	    line-height: 1.3;
	}
	.job-listing-holder {
	    flex-direction: column;
	}
	.insights-holder {
        gap: 20px;
        flex-direction: column;
        margin-top: 20px;
    }
    .insights-item-subtitle {
    	font-size: 14px;
    }
    .footer-holder {
    	justify-content: space-between;
    }
    .footer-col {
    	flex: 0 0 48%;
    }
}