/*SLIDER*/
.my-slider {
	margin-top: 75px;
	overflow: hidden;
	position: relative;
}

.swiper-slide {
	border-radius: 20px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.swiper-slide img,
.swiper-slide video {
	background-color: white;
	width: 100%;
	height: 50vw;
	display: block;
	object-fit: cover;
}
@media (min-width: 768px) {
    .swiper-slide img,
	.swiper-slide video {
        height: 550px;
    }
}

.swiper-pagination {
	position: static;
}

.swiper-pagination-bullet {
	background-color: #d9d9d9;
	width: 7px;
	height: 7px;
	opacity: 100%;
}

.swiper-pagination-bullet-active {
	background-color: #004996;
	width: 9px;
	height: 9px;
	opacity: 100%;
}

/*SERVICES*/
.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); 
	gap: 1.5rem;
}
@media (min-width: 768px) {
    .services {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
    }
}

.service-item {
	position: relative;
	max-width: 100%;
	width: 100%;
	height: 300px;
	background-size: 100%;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	overflow: hidden;
	margin: 0 auto;
	background-position: center;
	transition: 0.3s all;
}
.service-item:hover {
	background-size: 105%;
}
@media (max-width: 768px) {
    .service-item {
	height: 50vw;
}
}
.title {
	position: absolute;
	font-size: 18px;
	font-weight: bold;
	color: white;
	bottom: 25px;
	text-align: left;
	width: calc(100% - 40px);
}
@media (min-width: 768px) {
    .title {
        font-size: 24px;
    }
}
.overlay {
	height: 150px;
    position: absolute;
    width: 100%;
    background: linear-gradient( rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    bottom: 0px;
    left: 0;
}
h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
    word-wrap: break-word;
}

.service-item h3 {
	text-transform: uppercase;
}

h3 img {
	width: 25px;
	height: 25px;
}

/*JOBS*/
.jobs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); 
	gap: 1.5rem;
}
@media (min-width: 768px) {
    .jobs {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
    }
}
.job {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #004996;
	border: 1px solid #004996;
	border-radius: 20px;
	height: 200px;
	padding-left: 30px;
	text-decoration: none;
	transition: 0.3s all;
}
.job:hover {
	transform: scale(1.03);
}
.job-arrow-wrap {
    position: absolute;
    bottom: 15px;
    right: 20px;
}
.heading-jobs {
	width: 100%;
	margin: 75px auto 30px auto;
    margin: 75px auto 30px auto;
}
.job h3 {
	font-size: 24px;
	margin-bottom: 15px;
	text-transform: uppercase;
}
@media (max-width: 768px) {
    .job h3 {
        font-size: 18px;
    }
}
.job p {
	text-align: left;
}
.heading-jobs p {
	margin-top: 10px;
	font-size: 22px;
}
.button {
	padding: 10px 13px;
	border: 1px solid #004996;
	width: fit-content;
	border-radius: 20px;
	margin: 40px auto 0px auto;
	cursor: pointer;
	transition: all 0.3s;
}
.button-center {
	width: fit-content;
	margin: 0 auto;
}
.button span {
	color: #004996;
	text-decoration: none;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	transition: all 0.3s;
}
.button:hover {
	background-color: #004996;
}
.button:hover span {
	color: white;
}
.icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.money {
	width: 29px;
	height: 29px;
}
.time {
	width: 21px;
	height: 21px;
}
.job-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 9px 0px;
}
.job-line p {
	font-size: 16px;
}
.job a {
	position: absolute;
	bottom: 20px;
	right: 20px;
}
#job-btn {
	text-decoration: none;
}

/*NEWS*/
.blog-posts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); 
	gap: 1.5rem;
    margin-top: 80px;
}
@media (min-width: 768px) {
    .blog-posts {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
    }
}

.blog-item {
	position: relative;
	max-width: 100%;
	width: 100%;
	height: 300px;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	overflow: hidden;
	margin: 0 auto;
	background-position: center;
	background-size: 100%;
	transition: 0.3s all;
}
.blog-item:hover {
	background-size: 105%;
}
@media (max-width: 768px) {
    .blog-item {
	height: 50vw;
}
}
.blog-title {
	position: absolute;
	font-size: 18px;
	font-weight: bold;
	color: white;
	bottom: 25px;
	text-align: left;
	width: calc(100% - 40px);
}
@media (min-width: 768px) {
    .blog-title {
        font-size: 24px;
    }
}
.blog-overlay {
	height: 150px;
    position: absolute;
    width: 100%;
    background: linear-gradient(rgba(0, 23, 48, 0) 0%, rgba(0, 73, 150, 0.8) 100%);
    bottom: 0px;
    left: 0;
}
h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
    word-wrap: break-word;
}

h3 img {
	width: 25px;
	height: 25px;
}