/*!
Theme Name: Job Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: job-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Job Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--font-18: 18px;
	--font-16: 16px;
	--font-20: 20px;
	--font-24: 24px;
	--font-35: 35px;
	--font-48: 48px;
	--font-55: 55px;
	--font-72: 72px;
	--font-80: 80px;
	--font-family: "Manrope", sans-serif;
	--black: #000000;
	--dark: #002866;
	--dark-secondary: #002155;
	--dark-optional: #002866;
	--white: #ffffff;
	--white-secondary: #bed6dc;
	--white-secondary: #d8e3f0;
	--color-primary: #E13833;
	--color-secondary: #214BE0;
	--color-style-two: #fa4a4a;
	--color-style-three: #00e3ff;
	--color-heading: #0E313A;
	--color-paragraph: #666666;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #EFEFEF;
	--bg-gray-secondary: #e9edfc;
	--bg-gradient: linear-gradient(135deg, #E13833, #C62D28, #FF6B35);
	--bg-gradient-secondary: linear-gradient(90deg, var(--color-secondary)  0%, var(--color-style-three) 100%);
	--bg-gradient-minimal: linear-gradient(180deg, #f9e4e4 40%, #fffbfa 60%);
	--font-40: 40px;
	--font-36: 36px;
	--font-28: 28px;
	--font-22: 22px;
}

* {
	box-sizing: border-box;
}

body,
html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	overflow-x:hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	color: var(--color-paragraph);
	font-size: var(--font-16);
	font-weight: 500;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: var(--black);
	transition: 0.5s all;
}

a:hover {
	color: var(--color-primary);
}

ol,
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {font-family: var(--font-family);margin: 0;line-height: 1.2;font-weight: 800;letter-spacing: 0;color: var(--color-heading);}

.title {
	font-size: var(--font-72);
	color: var(--white);
}

.heading {font-size: var(--font-55);color: var(--color-heading);text-transform: capitalize;}

.small-heading {
	font-size: var(--font-16);
	color: var(--secondary-color);
	margin-bottom: 10px;
	text-transform: uppercase;
}

.button,
.button.white,
.header-whatsapp {
	display: inline-block;
	position: relative;
	font-family: var(--font-family);
	font-size: var(--font-16);
	line-height: 1.7;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	outline: none;
	border-radius: 30px;
	padding: 13px 40px;
	background-color: var(--color-primary);
	color: var(--white);
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	border: none;
	z-index: 1;
	overflow: hidden;
}

.button:after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--white);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}
.button:hover{
	color:var(--black);
}
.button:hover:after {
	background:var(--white);
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

img {
	max-width: 100%;
	display: block;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.wrapper {
	max-width: 1350px;
	margin: 0 auto;
	position: relative;
	padding: 0 15px;
}

section {
	padding: 120px 0;
	position: relative;
}

section.small-padding {
	padding: 50px 0;
}

section.pt-0 {
	padding-top: 0 !important;
}

section.pb-0 {
	padding-bottom: 0 !important;
}

section.p-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

p {
	margin: 0 0 20px 0;
}

p:last-child {
	margin: 0;
}

::placeholder {
	color: #857878;
}

input,
textarea,
select {font-family:var(--font-family);font-size: var(--font-16);font-weight: 400;color: #0f1113;line-height: 1.5;appearance: none;-moz-appearance: none;-ms-appearance: none;-o-appearance: none;width: 100%;min-height: 50px;padding: 6px 12px;border-radius: 10px;outline: 0;border: 1px solid var(--black-color);background: var(--white-color);display: block;background: transparent;border: none;border-bottom: 1px solid #cccccc;border-radius: 0;padding-left: 0;/* box-shadow: none !important; */}

select {background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23000000" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');background-size: 25px;background-repeat: no-repeat;background-position: center right 18px;/* padding: 6px; */}

textarea {
	max-height: 150px;
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #d9d9d9;
	opacity: 0.75;
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 7px;
	position: absolute;
	top: 50%;
	right: 0;
}

.form-btn {position: relative;width: fit-content;margin: 0 auto;}

input.wpcf7-submit {width: fit-content;margin-top: 20px;text-align: center;background: var(--color-primary);}

.wpcf7-spinner::before {
	top: 3px;
	left: 3px;
	width: 6px;
	height: 6px;
	transform-origin: 7px 7px;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.heading-group {
	margin-bottom: 20px;
}

.intro-description {margin-bottom: 50px;}

.d-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

a.scrolltotop {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	bottom: 10px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	height: 50px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 50px;
	transition: 0.5s all;
	z-index: 99;
}

a.whatsapp-link {
	background: #25d366;
	border-radius: 50%;
	bottom: 70px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 50px;
	z-index: 99;
	transition: 0.5s all;
	font-size: 30px;
	border: 1px solid transparent;
}

a.whatsapp-link:hover {
	color: #25d366;
	background: var(--white-color);
	border: 1px solid #25d366;
}

a.scrolltotop:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.mb-0 {
	margin-bottom: 0 !important;
}
/* HEADER */
.header-top {
	background: var(--dark);
	padding: 10px 0;
}

.header-top-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

ul.social-media-list {
	display: flex;
	align-items: center;
}

ul.social-media-list li:not(:last-child) {
	margin-right: 10px;
}

.header-top-row a {
	color: var(--white);
}
ul.social-media-list li a {
	display: flex;
	height: 40px;
	width: 40px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.top-left i {
	margin-right: 10px;
}

ul.social-media-list li a:hover {
	background: var(--white);
	color: var(--dark);
}
.header-row {
	display: flex;
	align-items: center;
	line-height: 1;
	justify-content: space-between;
}

.site-branding {
	width: fit-content;
	position: relative;
}

.site-branding img {
	max-width: 125px;
}

.site-branding:after {
	content: "";
	background: red;
/* 	width: 25vw; */
width: 480px;
	height: 100%;
	top: 0;
	left: -325px;
	position: absolute;
	z-index: -1;
	margin-left: 0;
	transform: skewX(-20deg);
}

.header-bottom {
	position: relative;
}

.menu {
	display: flex;
	align-items: center;
}

.menu li:not(:last-child) {
	margin-right: 30px;
}
.menu li{
	position:relative;
}
.menu li a {
	color: var(--color-heading);
	font-weight: 800;
	text-transform: uppercase;
}
.menu li a:hover{
	color:var(--color-primary);
}

.toggle {
	display: none;
    z-index: 9999;
    cursor: pointer;
}

.bar {
	width: 34px;
	height: 3px;
	background-color: var(--dark-secondary);
	margin: 3px 0;
	display: inline-block;
	margin-left: auto;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	cursor: pointer;
	z-index: 99;
}

.bar:first-child {
	width: 24px;
}

.bar:last-child {
	width: 17px;
}

span.bar.animate.bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

span.bar.animate.bar:nth-child(2) {
	opacity: 0;
}

span.bar.animate.bar:nth-child(3) {
	transform: rotate(45deg) translate(-7px, -8px);
	width: 24px;
}

.toggle.active .bar {
	margin-right: 20px;
}

.header-right a {
	font-size: var(--font-20);
	font-weight: 800;
}

.call-heading {
	margin-bottom: 5px;
}

.menu li.menu-item-has-children>a:after {
	content: " \f107";
	font-family: 'Font Awesome 6 Free';
	font-weight: 700;
	margin-top: 3px;
	margin-left: 5px;
}

.menu>li>ul.sub-menu {visibility: hidden;opacity: 0;position: absolute;z-index: 3;background: var(--white-color);transition: 0.5s all ease-in;transform: translateY(-10px);overflow: visible;top: 35px;transform-origin: 0% 0%;left: 0;box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2);/* width: max-content; */min-width: 300px;background: var(--white);padding: 20px;}

.menu>li:hover>ul.sub-menu {
	visibility: visible;
	opacity: 1;
	transition: transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
	transform: perspective(600px) rotateX(0deg);
	overflow: visible;
}

.menu>li>ul.sub-menu>li {
	display: block;
	position: relative;
	border: none;
	width: 100%;
}
.menu>li>ul.sub-menu>li>a {
	padding: 10px;
	display: block;
	width: 100%;
	text-transform: capitalize;
}

.current-menu-parent .current-menu-item a {
	background: var(--black-color);
	color: var(--white) !important;
}
/* BANNER */
.hero-banner {
	background: var(--dark);
	padding-top: 80px;
}

.banner-left-vector {
	position: absolute;
	z-index: 0;
	opacity: 0.8;
	width: 17%;
	right: 100%;
	top: 0;
	margin-right: -50px;
	margin-top: 30px;
}

.banner-left-vector img {
	width: 100%;
	height: 100%;
}

.banner-right-vector {
	position: absolute;
	left: 100%;
	top: 20%;
	z-index: 0;
	width: 80px;
	opacity: 0.8;
	animation: zoomUpDown 5s 
		linear infinite;
}

.banner-right-vector img {
	width: 100%;
	height: 100%;
}
/* Zoom Up Down */
@keyframes zoomUpDown {
	0%, 100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}

	50% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
}
.hero-banner:after {
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	height: 300px;
	width: 300px;
	background: linear-gradient(-90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	z-index: 0;
	filter: blur(120px);
	opacity: 0.8;
}

.banner-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.banner-content {
	width: 50%;
	padding-right: 15px;
}

.banner-image {
	width: 50%;
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 0 80px;
}
.banner-image:before {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	height: 100%;
	width: 80%;
	top: 40px;
	border-radius: 500px 500px 0 0;
	border: 2px solid var(--white-secondary);
	margin-left: 20px;
	z-index: 1;
}

.banner-image:after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	height: 100%;
	width: 80%;
	background: linear-gradient(135deg, #E13833, #33E1E1);
	z-index: 0;
	top: 60px;
	border-radius: 500px 500px 0 0;
}

.banner-image img {
	width: 100%;
	height: 100%;
	z-index: 2;
	position: relative;
}

.subheading {
	font-size: var(--font-20);
	color: var(--white);
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.title span {
	color: var(--color-primary);
	font-weight: 800;
	display: block;
}

.banner-content .intro-description p {
	font-weight: 800;
	color: var(--white);
}
/* ABOUT */
.about-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.about-left {
	width: 40%;
}

.about-right {
	width: 55%;
}

.about-image-block {
	position: relative;
	padding-top: 60px;
}

.about-bg img {width: 100%;}

.about-bg {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	max-width: 60%;
}

.about-left-img {
	width: 43%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.about-left-img img {
	width: 100%;
}

.counter-number {
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 10px;
	background: var(--bg-gradient);
	padding: 30px;
	max-width: 37%;
}

.about-right-image {
	width: 63%;
	margin-left: auto;
	border: 5px solid var(--white);
	border-right: none;
	border-bottom: none;
}

.counter {
	display: flex;
	color: var(--white);
	font-size: var(--font-80);
	line-height: 1;
	font-weight: 700;
	margin-bottom: 14px;
}

.counter-heading {
	font-size: var(--font-18);var(
	--font-18:);
	color: var(--white);
	font-weight: 800;
}
ul.about-list {
	padding: 30px;
	background: var(--white);
	box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
	display: flex;
	flex-wrap:wrap;
	border-radius: 10px;
	margin-top: 30px;
}

ul.about-list li {
	width: 50%;
	padding: 0 15px;
	/* margin: 15px 0; */
}

ul.about-list li > div {
	display: flex;
	align-items: center;
	height: 100%;
}

.about-icon {
	flex: 0 0 auto;
	width: 25%;
	margin-right: 25px;
}

.about-icon img {
	width: 100%;
	height: 100%;
}

.about-text {
	font-size: var(--font-18);
	color: var(--black);
}

.about-left-detail {
	position: relative;
	z-index: 1;
	padding-left: 20px;
	margin-top:30px;
}

.about-left-detail p{
	font-size: var(--font-20);
	color: var(--color-heading);
	font-style: italic;
}
.about-left-detail:after{
	position: absolute;
	left: 0;
	top: 5px;
	bottom: 5px;
	width: 3px;
	background: var(--color-primary);
	content: ""; 
}


.box-heading {
	text-transform: uppercase;
	color: var(--color-heading);
	font-weight: 700;
	display: inline-block;
	position: relative;
	z-index: 1;
	border: 1px solid #b3b1b1;
	padding: 7px 15px;
	font-size: var(--font-20);
	border-radius: 4px;
	margin-bottom: 20px;
}
/* COURSES */
.courses-row .box-heading {
	margin: auto auto;
	display: block;
	width: max-content;
	margin-bottom: 20px;
}

.courses-row .intro-description p {
	font-weight: 800;
	color: var(--color-heading);
	font-size: var(--font-24);
}

.courses-row {
	width: 70%;
	margin: 0 auto;
}
.team-top {
	width: 55%;
	margin: 0 auto;
}

.team-top .box-heading {
	width: max-content;
	margin: 0 auto;
	margin-bottom: 20px;
	display: block;
}
.team-top .intro-description p{
	font-weight:800;
}

/* .team {
background: url(https://staging-jobsafari.webyvibz.com/wp-content/uploads/2025/12/team-bg.png) center center no-repeat;
background-size: cover;
} */
.team-block {
	padding: 0 15px;
	height: 100%;
}

.team-inner {
	height: 100%;
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
}

.team-inner-top {
	position: relative;
}

.member-image {
	width: 100%;
}

.member-image img {
	width: 100%;
	height: 100%;
}

.shape {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin-bottom: 0;
	z-index: 1;
}

.member-icon {
	position: absolute;
	bottom: 0;
	margin-bottom: 20px;
	left: 50%;
	transform: translate(-50%,0);
	background: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	width: 80px;
	height: 80px;
	z-index: 1;
	border: 2px solid var(--white);
	transition:0.5s all;
}

.member-icon img {
	width: 50px;
}

.team-content {
	padding: 20px;
	padding-top: 10px;
	text-align: center;
}

.member-name {
	font-size: var(--font-24);
	margin-bottom: 10px;
}

.subject,.experience {
	margin-bottom: 5px;
	line-height: 1.2;
}
.team-bg {
	position: absolute;
	inset: 0;
	width: 100%;
}

.team-bg img {
	width: 100%;
	height: 100%;
}

.team-right {
	position: absolute;
	right: 0;
	top: 0;
	width: 8%;
	margin-top: -100px;
}

.team-right img {
	width: 100%;
	height: 100%;
	/* max-width: 120px; */
}

.team {
	background: var(--bg-gray);
}

.slick-list {
	height: 100%;
	display: flex;
}

.slick-track {
	height: auto;
	display: flex;
}

.slick-slide,.slick-slide > div {
	height: 100%;
}
.slick-slide.slick-current.slick-active .member-icon, .team-inner:hover .member-icon {
	background: var(--color-primary);
}
/* COURSE */
.course-list .slick-list {
	overflow: visible;
}

.course-block {border-radius: 20px;overflow: hidden;border: 1px solid var(--white);position: relative;}

.course-bottom {
	position: absolute;
	bottom: 0;
	left: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--dark);
	padding: 15px 30px;
	border-radius: 30px 30px 0 0;
	transition: all 0.25s ease-in-out;
	right: 50px;
}

.course-heading {
	font-size: var(--font-20);
	color: var(--white);
}

.course-icon {width: 70px;border-left: 1px solid rgba(255, 255, 255, 0.3);padding-left: 20px;}
.course-bottom:before{
	position: absolute;
	left: -20px;
	bottom: 0px;
	content: "";
	height: 40px;
	width: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0 20px 0 0 var(--dark);
}
.course-bottom:after{
	position: absolute;
	right: -20px;
	bottom: 0;
	content: "";
	height: 40px;
	width: 20px;
	border-bottom-left-radius: 20px;
	box-shadow: 0 20px 0 0 var(--dark);
}
/*  */
.footer-top {
	background: var(--dark-secondary);
	color: var(--white);
	padding: 30px 15px;
	position: relative;
}

.contact-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -15px;
	/* position: relative; */
}

.contact-block {
	max-width: 550px;
	margin: 15px 0;
	padding: 0 15px;
	display: flex;
	align-items: center;
	min-width: 300px;
	/* width: 25%; */
}

.icon {
	margin-right: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	flex: 0 0 auto;
	border: 1px dashed rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: #0a316c;
}

.icon i {
	font-size: var(--font-18);
}

.contact-details label {
	display: block;
	font-size: var(--font-20);
	margin-bottom: 5px;
	font-weight: 700;
}

.contact-details a {
	color: var(--white);
}
.footer-bg{
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
}
.footer-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-top-row {
	position: relative;
}

.footer-top-row .wrapper {
	max-width: 1600px;
}
.footer-bot-row {
	display: flex;
	flex-wrap: wrap;
	padding: 70px 0 110px 0;
	position: relative;
	justify-content: space-between;
}

.footer-bottom {
	background: var(--dark);
	color: var(--white);
	position: relative;
	z-index: 1;
}

.footer-bottom a {
	color: var(--white-secondary);
	font-weight: 400;
}

.footer-left .site-branding::after {
	content: none;
}

.footer-left .site-branding img {
	filter: invert(1) brightness(8);
}

.footer-description {
	margin: 30px 0;
}

.footer-left {
	width: 30%;
	position: relative;
	z-index: 1;
	padding-right: 50px;
	/* margin-right: 50px; */
}

.footer-right {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 66%;
}

.footer-block {
	max-width: 300px;
}

h2.footer-heading {
	margin-bottom: 30px;
	font-size: var(--font-24);
	color: var(--white);
}

ul.footer-menu li:not(:last-child) {
	margin-bottom: 15px;
}
.copyrigh-row {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 0;
	margin-left: 35%;
}

.copyright-text {
	margin-left: 50px;
	color: var(--white-secondary);
	font-weight: 500;
}

.footer-left:after {
	position: absolute;
	right: 0;
	top: -70px;
	height: 140%;
	content: "";
	width: 400%;
	background: #0a316c;
	z-index: -1;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-vector img:first-child {position: absolute;right: 50px;top: -50px;max-width: 200px;z-index: -1;}

.footer-vector img:last-child {
	position: absolute;
	z-index: 2;
	bottom: 50px;
	max-width: 200px;
	left: 0;
}
.footer-bottom a:hover {
	color: var(--white);
}

.footer-left ul.social-media-list li a {
	background: #22467b;
	border: none;
}

.footer-left ul.social-media-list li a:hover {
	background: var(--color-primary);
	color: var(--white);
}

.footer-left ul.social-media-list {
	display: inline-flex;
}
/*  */
section.inner-banner {
	background: var(--dark);
	padding: 150px 0;
	z-index:1;
}

.inner-banner-wrap .heading {
	color: var(--white);
}

.breadcrumbs {
	color: var(--white);
	font-size: var(--font-18);
}

.breadcrumbs a {
	color: var(--white);
}

.breadcrumbs a i {
	margin-right: 6px;
}

.breadcrumbs i:not(:first-child) {
	margin: 0 6px;
	font-size: var(--font-16);
}
section.inner-banner:after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: var(--black);
	mix-blend-mode: multiply;
	z-index: -1;
	opacity: 0.4;
}
/*  */
d {}

.contact-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.contact-detail-block {
	width: 58.33333333%;
	padding: 0 60px 0 15px;
}

.form-block {
	width: 41.66666667%;
	padding: 0 15px;
}

.contact-detail-block .heading {
	font-size: var(--font-40);
}

.contact-detail-block .contact-row {
	flex-direction: column;
}

.contact-detail-block .contact-block {
	max-width: unset;
	min-width: unset;
}

.contact-icon i {
	font-size: 24px;
	color: #6C2575;
}

.contact-icon {
	margin-right: 15px;
}

.contact-detail-block label {
	color: #0E313A;
}

.contact-detail-block .contact-details a {
	color: #000;
	font-weight: 800;
}

.contact-detail-block ul.social-media-list {
	margin-top: 50px;
}

.contact-detail-block ul.social-media-list li a {
	background: #fff;
	border: 1px solid #ccc;
}

.contact-detail-block ul.social-media-list li a:hover {
	color: red;
	background: var(--color-primary);
	color: var(--white);
	border: 1px solid transparent;
}

.form-block-inner {
	padding: 80px 50px;
	background: var(--white);
	box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
}

.form-block-inner .form-heading {
	font-size: var(--font-28);
}
.form-rows {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -10px;
}

.form-cols {
	width: 100%;
	margin: 10px 0;
	padding: 0 10px;
}

.form-cols:nth-child(-n+3) {
	width: 50%;
}

.form-cols:first-child {
	width: 100%;
}
.map-row {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.map-block {
	width: 50%;
	margin: 15px 0;
	padding: 0 15px;
}

.map-inner {
	padding: 40px;
	background: var(--dark-secondary);
	height: 100%;
	border-radius: 10px;
	color: var(--white);
}

	.address {
		margin-bottom: 20px;
	}

.address p {
	display: flex;
	align-items: center;
	font-size: var(--font-18);
}

.address i {
	font-size: var(--font-20);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 20px;
	flex: 0 0 auto;
}

.map {
	position: relative;
	padding-top: 50%;
}

.map iframe {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	border-radius: 10px;
}
select.wpcf7-form-control.wpcf7-select {
	color: #857878;
	padding:6px;
}
select.wpcf7-form-control.wpcf7-select option{
	color: #000;
}
/*  */
.country-flag {
	margin-bottom: 40px;
}

.country-flag img {
	height: auto;
	max-width: 100px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.country-heading {
	font-size: var(--font-36);
}

.single-country-wrap .heading-group {
	margin-bottom: 25px;
}

.single-country-wrap .intro-description {
	margin-bottom: 25px;
}

h3.country-title {
	margin-bottom: 25px;
	font-size: var(--font-28);
}

h4.country-subtitle {
	margin-bottom: 15px;
	font-size: var(--font-22);
}

.main-details {
	margin-bottom: 25px;
}

ul.country-details-row li {
	padding-left: 27px;
	position: relative;
}

ul.country-details-row li:not(:last-child) {
	margin-bottom: 7px;
}

ul.country-details-row li:after {
	position: absolute;
	left: 0;
	top: 50%;
	content: "";
	background-image: url(https://thejobsafari.com/wp-content/themes/job-theme/images/check-icon.png);
	z-index: -1;
	height: 16px;
	width: 16px;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(-50%);
}

.country-block:not(:last-child) {
	margin-bottom: 25px;
}
.sub-details {
    margin-top: 25px;
}
/*  */
/* .bg-inner {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}

.bg-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}


section.inner-banner.country::after {
    z-index: 1;
	opacity:0.6;
}

.inner-banner-wrap.text-center {
    position: relative;
    z-index: 999999;
} */
.country-single .inner-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bg-inner {
    width: 50%;
}

.country-single .heading-group {
    width: 50%;
}
/*  */
.bg-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: var(--dark-secondary);
}

.country-wrap {
    color: var(--white);
}

.country-wrap-top {
    text-align: center;
    margin: 0 auto;
    width: 50%;
    margin-bottom: 60px;
}

.country-wrap-top .box-heading {
    color: #fff;
}

.country-wrap-top .heading {
    color: #fff;
}
.visa-row {
        overflow: hidden;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
    gap: 30px;
}

.visa-block {
    cursor: grab;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    padding: 60px 37px;
    list-style: none;
    width: 30%;
    height: inherit;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid #dddddd;
    border-radius: 20px;
    min-height: 550px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    background: #002155;
}

.visa-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.country {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.visa-icon img {
    height: 80px;
	border-radius: 50%;
}

.content h5 {
    /* margin-bottom: 3px; */
    font-size: var(--font-28);
    writing-mode: vertical-lr;
    color: #fff;
}

.bottom {
    margin-top: -400px;
}

.bottom ul {
    position: relative;
    transition: all 0.15s ease-in-out;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50px);
}

.bottom ul li {
    position: relative;
    padding-left: 40px;
    margin-top: 5px;
    font-size: var(--font-22);
}


.bottom ul li::after {
    position: absolute;
    left: 0;
    top: 9px;
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    height: 22px;
    width: 22px;
    background: var(--color-primary);
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
    font-size: 22px;
    color: #ffffff;
    vertical-align: middle;
}

.bottom .button {
        transform: translateX(50px);
    opacity: 0;
    visibility: hidden;
margin-top:30px;
}
.visa-block.out {
    background: var(--dark);
    width: 100%;
}

.out .country {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
}

.out .content h5 {
    writing-mode: inherit;
}

.out .bottom ul {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.2s;
    transform: translateY(0);
}

.out .bottom .button {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    transition-delay: 0.3s;
}
.bottom ul li:first-child {
    margin: 0;
}
.country-section .wrapper {
    max-width: 1540px;
}
/* Courses */
.what-wrap {
    width: 61%;
    margin: 0 auto;
    text-align: center;
}
.what-wrap .heading {
    font-size: var(--font-36);
}
/* why-choose */
.why-slider {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    justify-content: space-between;
	padding-right:50px;
	margin-top: 20px;
}

.why-block {
    width: 25%;
    margin: 15px 0;
    padding: 0 15px;
}

.why-inner {
    padding: 40px 30px;
    background: var(--white);
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    border-radius: 10px;
    height: 100%;
}
.why-icon {
    background: linear-gradient(135deg, #E13833, #C62D28, #FF6B35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
    height: 60px;
    width: 60px;
    max-width: 60px;
    border-radius: 50%;
    margin-bottom: 30px;
    border: none;
}

.why-title {
    font-size: var(--font-18);
    margin-bottom: 16px;
}

.why-block:last-child .why-inner {
    background: linear-gradient(135deg, #E13833, #C62D28, #FF6B35);
}

.why-block:last-child .why-inner .why-icon {
    background: var(--white);
}

.why-block:last-child .why-inner .why-icon img {
    filter: brightness(0);
}

.why-block:last-child .why-inner .why-title {
    /* font-size: var(--font-20); */
    color: var(--white);
}

.call-card {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 25px;
    padding-top: 25px;
}

.call-card a {
    color: var(--white);
}

.content h6 {
    color: var(--white);
    font-size: var(--font-20);
}

.why-choose-wrap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.why-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    z-index: -1;
}

.why-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.why-content-block {
    width: 50%;
    flex: 0 0 auto;
}

section.why-choose-section::after {    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 500px;
    width: 500px;
    background: linear-gradient(0deg, #e13833 0%, #214be0 100%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

section.why-choose-section {
    overflow: hidden;
    z-index: 1;
    padding: 0;
}
.why-block:last-child .why-inner p{
	margin-bottom:10px;
}
/*  */
.testi-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}

.testi-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.test-wrap {
    position: relative;
/*     width: 66.66666667%;
    margin: 0 auto; */
}

.testimonial-one-shape img {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
z-index:1;
}
.testimonial-one-shape img:first-child {
	left: 20%;
	top: 30%;
}

.testimonial-one-shape img:nth-child(2) {
	right: 20%;
	top: 30%;
}

.testimonial-one-shape img:nth-child(3) {
	bottom: 0;
	left: 0;
}

.testimonial-one-shape img:nth-child(4) {
	right: 0;
	bottom: 0;
}
.testimonial-one-shape {
    display: none;
}

.tm-provider {
	height: 150px;
    width: 150px;
    border-radius: 50%;
    border-top: 10px solid #e13833;
    border-left: 10px solid #002866;
    border-right: 10px solid var(--dark);
    border-bottom: 10px solid var(--color-primary);
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel {
/* 	width: 60%;
    margin: 0 auto; */
    position: relative;
	overflow:hidden;
}

.tm-provider img {
	border: 3px solid var(--white);
    border-radius: 50%;
    width: 160px;
}

.reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 30px;
    margin-top: 80px;
}

.reviews i {
    display: flex;
    height: 25px;
    width: 25px;
    /* line-height: 25px; */
    background: var(--color-primary);
    color: var(--white);
    font-size: 14px;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
}

.testi-inner h3 {
    font-size: var(--font-35);
    margin-bottom: 25px;
}

.testi-inner p {
    font-size: var(--font-24);
/* 	padding: 0 5%; */
}

.tm-provider-detail h4 {
/*     margin-bottom: 10px; */
    font-size: var(--font-24);
}
.testi-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.services-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.service-block {
    width: 66.66666667%;
    padding-left: 50px;
}

.services-sidebar {
    width: 33.33333333%;
}

.courses-img img {
/*     margin-bottom: 40px; */
    border-radius: 10px;
}
.courses-img {
    position: relative;
    padding-top: 50%;
    margin-bottom: 40px;
}

.courses-img img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.service-block h2 {
    font-size: var(--font-36);
    margin-bottom: 25px;
}

.features-row {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.features-block:first-child {
    width: 41.66666667%;
}

.features-block:last-child {
    width: 58.33333333%;
    /* flex: 0 0 auto; */
}

.content h3 {
    font-size: var(--font-28);
    margin-bottom: 25px;
}
ul.list-style-four li {
	position: relative;
	z-index: 1;
	padding-left: 27px;
	margin-top: 7px;
	font-size: 16px;
	font-weight: 500;
}
ul.list-style-four li::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    background-image: url(https://thejobsafari.com/assets/img/icon/check-icon.png);
    z-index: -1;
    height: 16px;
    width: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.service-block h3 {
    margin-bottom: 25px;
    font-size: var(--font-28);
}
.card-style-three {
    display: flex;
	margin-top:40px;
}
.card-style-three .item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	border-right: 1px solid #e7e7e7;
	padding-right: 50px;
	margin-right: 30px;
}

.card-style-three .item .number {
	transform: rotate(-90deg);
	font-size: 80px;
	line-height: 1;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px #cccccc;
	margin-top: 5px;
	margin-left: -15px;
}

.info h4 {
    font-size: var(--font-24);
    margin-bottom: 20px;
}
.card-style-three .item:last-child {
    border: none;
    margin-right: 0;
    padding-right: 0;
}

.services-list-widget {
    padding: 50px;
    background: var(--bg-gray);
    border-radius: 7px;
}
.services-sidebar .single-widget .widget-title {
    display: block;
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-bottom: 15px;
    font-size:var(--font-24);
}

.services-sidebar .single-widget .widget-title::after {
	position: absolute;
	left: 10px;
	bottom: 0;
	content: "";
	height: 2px;
	width: 50px;
	border-bottom: 2px solid var(--color-primary);
}

.services-sidebar .single-widget .widget-title::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 2px;
	width: 5px;
	background: var(--color-primary);
}


.services-list-widget .current-item a {
	color: var(--white);
	background: var(--color-primary);
}

.services-list-widget li {
	margin-top: 10px;
}

.services-list-widget li:first-child {
	border: none;
	margin-top: 0;
}
.services-list-widget a {
	display: block;
	padding: 20px;
	font-weight: 700;
	position: relative;
	padding-right: 50px;
	font-size: 17px;
	background: var(--white);
	border-radius: 8px;
}
.services-list-widget a::after {
    position: absolute;
    right: 20px;
    top: 17px;
    content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 500;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    transform: rotate(-45deg);
    font-size: 20px;
    height: 32px;
    width: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    border-radius: 50%;
	font-weight:800;
}

.single-widget.course-info-widget {
    padding: 45px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid #e7e7e7;
    background-color: var(--bg-gray);
}

.single-widget:not(:last-child) {
    margin-bottom: 50px;
}

ul.course-info-list li strong {
	min-width: 120px;
	display: inline-block;
	color: var(--color-heading);
	font-weight: 600;
}

ul.course-info-list li {
	margin-top: 15px;
	font-size: 18px;
	color: var(--color-heading);
	font-weight: 600;
	display: flex;
}

ul.course-info-list li:first-child {
	margin-top: 0;
}

ul.course-info-list li i {
	display: inline-block;
	height: 35px;
	width: 35px;
	text-align: center;
	line-height: 35px;
	background: var(--color-primary);
	border-radius: 50%;
	margin-right: 8px;
	font-weight: 600;
	color: var(--white);
	font-size: 16px;
}
.widget-brochure ul li a {
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 15px;
	background: #ffffff;
	padding: 20px 25px;
	border-radius: 5px;
	color: var(--color-heading);
}

.widget-brochure ul li:nth-child(2) a {
	background: var(--dark);
	color: var(--white);
}

.widget-brochure ul li a:hover {
	color: var(--color-primary);
}

.widget-brochure ul li:first-child a {
	margin-top: 0;
}

.widget-brochure ul li:first-child a,
.widget-brochure ul li a:hover {
	background: var(--color-primary);
	border-color: transparent;
	color: var(--white);
}

.widget-brochure ul li i {
	font-size: 35px;
	margin-right: 16px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.widget-brochure ul li:hover i,
  .widget-brochure ul li:first-child i {
	color: var(--white);
}
.course-info-img img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}
.services-list-widget li.active a {
    color: var(--white);
    background: var(--color-primary);
}

.services-list-widget li.active a::after {
    opacity: 1;
}
/*  */
.course-overlay {
    position: absolute;
    left: 0;
    bottom: -80px;
    opacity: 0;
    background: var(--color-primary);
    transition: all 0.35s ease-in-out;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
}

.course-block:hover .course-overlay, .slick-current .course-overlay {
    opacity: 1;
	visibility: visible;
	bottom: 0;
}
.course-overlay img {
	width: 70px;
	margin-bottom: 25px;
}

.course-overlay .course-heading {
    margin-bottom: 15px;
}

.course-overlay p {
    margin: 0;
    color: var(--white);
    opacity: 0.9;
}
.course-block:hover .course-bottom {
    bottom: -100px;
    opacity: 0;
    visibility: hidden;
}
.course-block a {
    position: absolute;
    inset: 0;
  	height:100%;
    width: 100%;
    z-index: 1;
}
/*  */
.header-top-row a:hover, .contact-details a:hover {
  	color: var(--color-primary);
}
.course-image img {
    border-radius: 20px;
}
/*  */
.bg-inner-img {
    position: relative;
    padding-top: 50%;
}

.bg-inner-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}
/* about-team */
   
ul.about-team-list li {
    width: 95%;
}
ul.about-team-list li:not(:last-child) {
    margin-bottom: 35px;
}
ul.about-team-list li>div {
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: 0.5s all;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: var(--white);
}
ul.about-team-list li:nth-child(even)>div {
    flex-direction: row-reverse;
}

ul.about-team-list li:nth-child(odd)>div {
    background: var(--dark);
    /* border: 1px solid rgba(224, 228, 235, 0.5); */
}
ul.about-team-list li:nth-child(even)>div {
   background: var(--color-primary);
   /* border: 1px solid rgba(224, 228, 235, 0.5); */
}

ul.about-team-list li:nth-child(even) {
    margin-left: auto;
}

ul.about-team-list li .sub-heading {
    margin-bottom: 16px;
    color: var(--white);
    font-size: var(--font-28);
}

.about-list-img {
    width: 30%;
}
.about-list-content {
    width: 68%;
}
.about-list-img .image {
    position: relative;
    padding-top: 100%;
    border-radius: 16px;
}
.about-list-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    position:absolute;
    inset: 0;
    object-position: center;
}
section.about-team .wrapper {
    max-width: 1700px;
}
section.about-team .heading-group {
    margin-bottom: 50px;
}
.testi-inner h3, .tm-provider-detail span  {
    display: none;
}
