/*~~~~~~~~~~============= Primary CSS Start Here =============~~~~~~~~~~ */
* {
	margin: 0;
	padding: 0px;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}

body,
html {
	margin: 0;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Neris'!important;
	background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
ol {
	margin: 0;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Neris'!important;
}

a,
button {
	text-decoration: none;
}

img {
	max-width: 100%;
}

a:hover,
a:focus,
button:focus,
button:hover,
input:focus,
input:hover,
textarea:focus,
textarea:hover {
	box-shadow: none;
	outline: none;
}

.container {
	max-width: 1330px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

/*~~~~~~~~~~============= Primary CSS End Here =============~~~~~~~~~~ */

/*~~~~~~~~~~============= Fonts webkit CSS Start Here =============~~~~~~~~~~ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
	font-family: 'Neris';
	src: url('../fonts/Neris-Black.eot');
	src: url('../fonts/Neris-Black.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Neris-Black.woff2') format('woff2'),
		url('../fonts/Neris-Black.woff') format('woff'),
		url('../fonts/Neris-Black.ttf') format('truetype'),
		url('../fonts/Neris-Black.svg#Neris-Black') format('svg');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Neris';
	src: url('../fonts/Neris-SemiBold.eot');
	src: url('../fonts/Neris-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Neris-SemiBold.woff2') format('woff2'),
		url('../fonts/Neris-SemiBold.woff') format('woff'),
		url('../fonts/Neris-SemiBold.ttf') format('truetype'),
		url('../fonts/Neris-SemiBold.svg#Neris-SemiBold') format('svg');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Neris';
	src: url('../fonts/Neris-Thin.eot');
	src: url('../fonts/Neris-Thin.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Neris-Thin.woff2') format('woff2'),
		url('../fonts/Neris-Thin.woff') format('woff'),
		url('../fonts/Neris-Thin.ttf') format('truetype'),
		url('../fonts/Neris-Thin.svg#Neris-Thin') format('svg');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Neris';
	src: url('../fonts/Neris-Light.eot');
	src: url('../fonts/Neris-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Neris-Light.woff2') format('woff2'),
		url('../fonts/Neris-Light.woff') format('woff'),
		url('../fonts/Neris-Light.ttf') format('truetype'),
		url('../fonts/Neris-Light.svg#Neris-Light') format('svg');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

/*~~~~~~~~~~============= Fonts Webkit CSS End Here =============~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~=============header css start here =============~~~~~~~~~~~~~~ */
.sidebar-open {
	overflow: hidden;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	z-index: 3
}

.sidebar-open .overlay {
	opacity: 1;
	visibility: visible;
}

.header {
	width: 100%;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	padding: 30px 0;
}

.header .row-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding: 0px 0;
}

.header .nav-list {
	display: flex;
	align-items: center;
	gap: 5px;
}

.header .nav-list li a {
	color: #000B0F;
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: 0.4s ease all;
	padding: 10px 30px 14px;
	border-radius: 50px;
}

.header .hamburger {
	display: none;
	z-index: 99;
}

.header .hamburger .line {
	width: 36px;
	height: 3px;
	background-color: #311432;
	display: block;
	margin: 8px 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header .hamburger .line:nth-child(2) {
	width: 36px;
}

.header .hamburger:hover {
	cursor: pointer;
}

.header .hamburger.is-active .line {
	background-color: #311432;
}

.header .hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}

.header .hamburger.is-active .line:nth-child(1) {
	-webkit-transform: translateY(6.5px) rotate(45deg);
	-ms-transform: translateY(6.5px) rotate(45deg);
	-o-transform: translateY(6.5px) rotate(45deg);
	transform: translateY(6.5px) rotate(45deg);
}

.header .hamburger.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-6.5px) rotate(-45deg);
	-ms-transform: translateY(-6.5px) rotate(-45deg);
	-o-transform: translateY(-6.5px) rotate(-45deg);
	transform: translateY(-6.5px) rotate(-45deg);
}

.header .logo-wrap a img {
	max-width: 160px;
}

.header .left-sideMenu li a:hover {
	background: #4B71F8;
	color: #fff;
	border-radius: 50px;
}

.header .nav-wrap {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 180px);
	flex-direction: row;
}

.header a.active {
	background: #4B71F8;
	padding: 10px 20px;
	border-radius: 20px;
	color: #fff !important;
	font-weight: 900;
}

.header a.find-but {
	background: #F3F7FF;
	padding: 10px 20px;
	border-radius: 20px;
	color: #0A75FC !important;
	font-weight: 900;
}

.header a.find-but:hover,
.header a.find-but.active {
	background: #0A75FC;
	color: #fff !important;
}

.header .right-sideMenu li a:hover {
	color: #0A75FC;
	border-radius: 50px;
}

.header .hamburger.is-active .line {
	background-color: #311432;
	height: 2px;
	margin: 5px;
}

@media (max-width:1200px) {
	.header .nav-list li a {
		font-size: 16px;
		line-height: 26px;
		padding: 10px 20px 14px;
	}
   
}

@media (max-width: 991px) {
	.header .nav-list {
		gap: 20px;
	}

	.header .hamburger {
		display: block;
	}

	.header .nav-wrap {
		position: fixed;
		top: unset;
		right: -100%;
		transform: translateX(100%);
		background-color: #ffffff;
		transition: all 0.5s linear;
		max-width: 100%;
		width: 100%;
		/* height: calc(100% - 84px); */
		height: calc(100% - 67px);
		box-shadow: none;
		opacity: 0;
		visibility: hidden;
		z-index: 0;
		bottom: 0;
	}

	.header .nav-wrap.is-open {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		right: 0;
		z-index: 9;
	}

	.header .nav-list {
		flex-direction: column;
		align-items: unset;
		opacity: 0;
		visibility: hidden;
		transition-delay: 0.5s;
		transition-duration: 1s;
		transition-property: all;
		padding: 0px;
	}

	.header .nav-wrap.is-open .nav-list {
		opacity: 1;
		visibility: visible;
	}

	.header .nav-list li {
		padding: 0;
	}

	.header .nav-list li a {
		text-align: left;
		display: inline-block;
	}

	.header .nav-list li a::after {
		background-color: #311432;
	}

	.header .nav-list li.with-submenu {
		display: block;
	}

	.header .nav-list li.with-submenu::after {
		border-color: #311432;
		right: 10px;
		top: 12px;
	}

	.header .nav-list li.with-submenu:hover::after {
		transform: rotate(45deg);
		margin-top: 0;
	}

	.header .nav-list li.with-submenu.is-open::after {
		transform: rotate(225deg);
		margin-top: 5px;
	}

	.header .nav-list li.with-submenu .submenu {
		position: static;
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		border-radius: 0;
		border-top: 1px solid #ccc;
		display: none;
		transition: auto;
		margin: 10px 0;
	}

	.header .nav-list li.with-submenu .submenu li {
		padding: 7px 10px;
	}

	.header .nav-list li.with-submenu .submenu li:hover a {
		background-color: transparent;
	}

	.header .nav-list li.with-submenu .submenu li a {
		display: inline-block;
		padding: 2px 0;
	}

	.header .nav-list li.with-submenu .submenu li a::after {
		display: block;
	}

	.header .logo-wrap {
		flex-grow: 1;
	}

	.nav-wrap {
		flex-direction: column !important;
		justify-content: unset !important;
	}

	.header ul.nav-list.right-sideMenu {
		padding-top: 0 !important;
	}

	.header ul.nav-list.left-sideMenu {
		padding: 0 !important;
	}

	.header .nav-list {
		gap: 0px;
	}

	.header a.active {
		padding: 0px !important;
	}

	.header .nav-wrap {
		gap: 0px;
	}

	.header a.find-but {
		padding: 8px 15px !important;
	}

	.header .nav-list li a {
		padding: 0 0px;
	}

	.header .nav-list li a {
		font-size: 18px;
		line-height: 24px;
		background: transparent;
		width: 100%;
		padding: 15px 15px 19px !important;
		border-bottom: 1px solid #00000014;
		border-radius: 0;
	}

	.header {
		width: 100%;
		padding: 20px 0;
		background: #f8f8f8;
		position: relative;
	}

	.header .row-wrap {
		padding: 0px 0;
	}

	.header .nav-list li a.active {
		color: #0A75FC !important;
	}

	.header a.find-but {
		color: #000B0F !important;
	}

	.header a.find-but:hover {
		color: #0A75FC !important;
		background: transparent;
	}

	.header .left-sideMenu li a:hover {
		background: transparent;
		color: #0A75FC;
		border-radius: 0;
	}

	.header .right-sideMenu li a:hover {
		color: #0A75FC;
		border-radius: 0;
	}
}

/* ~~~~~~~~~~~~~~=============header css end here =============~~~~~~~~~~~~~~ */
@media (min-width:1200px) and (max-width:1500px) {
	div.container {
		padding: 0 40px;
	}
}

/*~~~~~~~~~~============= Banner Section CSS Start Here =============~~~~~~~~~~ */
.casual-staffing-sec {
	background: url('../images/banner-bg.jpg') no-repeat;
	background-position: bottom center;
	background-size: cover;
	padding: 200px 0 100px;
	position: relative;
}

.side-lt-circle {
	position: absolute;
	top: 39%;
	transform: translateY(-50%);
	left: 0;
	z-index: 0;
}

.cs_lt-col h1 {
	font-size: 72px;
	line-height: 84px;
	color: #2C3B45;
	font-weight: 600;
	margin: 0 0 25px;
	padding: 0;
}

span.blue-title {
	color: #4B71F8;
	font-weight: 900;
}

.cs_wrapper-outer {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.cs_wrapper-outer .cs_lt-col {
	width: calc(50% - 25px);
}

.cs_wrapper-outer .cs_rt-col {
	width: calc(50% - 25px);
	position: relative;
	padding-left: 30px;
}

.cs_lt-col>p {
	font-size: 24px;
	line-height: 32px;
	margin: 0 0;
	padding: 0;
	font-weight: 600;
	color: #061257;
}

.find_educator-btns {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 15px;
	margin: 25px 0;
}

.find_educator-btns a {
	font-size: 20px;
	font-weight: 900;
	color: #fff;
	background: #4B71F8;
	padding: 0px 20px;
	min-width: 240px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 60px;
	border-radius: 50px;
	gap: 10px;
	transition: 0.4s ease all;
	line-height: 100%;
}

.find_educator-btns a img {
	width: 20px;
	margin-top: 4px;
}

.find_educator-btns a:hover {
	background: #061257;
}

.find_educator-btns a.find-work-btn {
	background: #061257;
}

.find_educator-btns a.find-work-btn:hover {
	background: #4B71F8;
}

.trsuted-by {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
	margin: 0 0 50px;
}

.trusted_flex-div {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.trusted_flex-div img {
	width: 40px;
}

.trusted_flex-div>p {
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: #061257;
	margin: 0px;
	width: calc(100% - 55px);
}

.play_store-div {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
}

.cs_rt-col>img {
	width: 100%;
}

.bannr_notification-outer {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px;
	position: absolute;
	/* bottom: 50px; */
	bottom: 20px;
	right: -30px;
	width: 350px;
}

.bannr_notification-outer .noti-ct-img2 {
	margin: 0 0 0 50px;
}

.bannr_notification-outer img {
	filter: drop-shadow(0px 1.73719px 3.38752px rgba(0, 0, 0, 0.25));
}

.bnnr_ranae-img {
	position: absolute;
	top: 0;
	left: -25px;
	/*-webkit-animation: mover 1s infinite  alternate; animation: mover 1s infinite  alternate;*/
}

/* .noti-ct-img1 { -webkit-animation: fadeInUp 1s; animation: fadeInUp 1s; }  */
/* .noti-ct-img2 { -webkit-animation: fadeInUp 2s; animation: fadeInUp 2s; } */
/*~~~~~~~~~~============= Banner Section CSS End Here =============~~~~~~~~~~ */

/*~~~~~~~~~~============= Client Logo Slider CSS Start Here =============~~~~~~~~~~ */
.as_featured-sec {
	padding: 70px 0 140px;
	background: #EDF7FC;
	position: relative;
}

.as_featured-sec .container {
	max-width: 1630px;
}

.af_bg-div {
	background: #061257;
	padding: 50px;
	border-radius: 30px;
}

.client_logoSlider {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0px !important;
}

.client_logo-slide {
	text-align: center;
	margin: 0 15px;
}

.client_logoSlider .slick-list {
	margin: 0 -15px;
}

.client_logo-slide img {
	margin: 0 auto;
	max-width: 100%;
}

/*~~~~~~~~~~============= Client Logo Slider CSS End Here =============~~~~~~~~~~ */

/*~~~~~~~~~~============= Post your first shift section CSS Start Here =============~~~~~~~~~~ */
.pyf_boxes-div .pyf_box .img_box {
	overflow: hidden;
	aspect-ratio: 1;
	border-radius: 16px;
	background: #5176FB;
	padding: 30px 30px 0;
	margin: 0 0 30px;
}

/* .pyf_boxes-div .pyf_box:nth-child(1) .img_box, .pyf_boxes-div .pyf_box:nth-child(2) .img_box { display: -webkit-flex; display: flex; -webkit-flex-direction: row; flex-direction: row; -webkit-flex-wrap: wrap; flex-wrap: wrap; } */
.pyf_boxes-div .pyf_box:nth-child(1) .img_box,
.pyf_boxes-div .pyf_box:nth-child(2) .img_box {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: stretch;
	justify-content: stretch;
	-webkit-align-content: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.pyf_boxes-div .pyf_box:nth-child(1) .img_box img,
.pyf_boxes-div .pyf_box:nth-child(2) .img_box img {
	object-position: bottom;
}

.pyf_boxes-div .pyf_box:nth-child(1) .img_box img {
	transform: scale(1.05);
	transform-origin: bottom;
}

.pyf_boxes-div .pyf_box:last-child .img_box {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.pyf_boxes-div .pyf_box .img_box img {
	border-radius: 20px 20px 0 0;
	object-fit: contain;
}

.pyf_section {
	padding: 50px 0 100px;
	position: relative;
	background: #fff;
}

.pyf_boxes-div {
	margin: 50px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.pyf_boxes-div .pyf_box {
	width: calc(33.33% - 20px);
}

.pyf_boxes-div .pyf_box>img {
	width: 100%;
	margin: 0px 0 30px;
	border-radius: 25px;
	vertical-align: top;
}

.pyf_box-title {
	display: flex;
	gap: 10px;
	align-items: center;
}

.pyf_box-title span {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #D5F3FF;
    border-radius: 10px;
    color: #4B71F8;
    font-weight: 900;
    font-size: 26px;
    line-height: 40px;
}

.pyf_box-title h6 {
	font-size: 24px;
	font-weight: 600;
	color: #2C3B45;
	line-height: 30px;
	margin: 0;
	padding: 0;
	width: calc(100% - 50px);
}

.pyf_boxes-div .pyf_box p {
	font-size: 22px;
	font-weight: 300;
	margin: 5px 0 0;
	padding-left: 50px;
	color: #2C3B45;
	line-height: 30px;
}

.hire_an-educatorBtn {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 70px 0 0;
}

.hire_an-educatorBtn a,
.hire_an-educatorBtn input,
.hire_an-educatorBtn button {
	font-size: 20px;
	font-weight: 900;
	color: #fff;
	background: #4B71F8;
	padding: 0px 40px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 60px;
	border-radius: 50px;
	transition: 0.4s ease all;
	line-height: 100%;
	border: 0;
}

.hire_an-educatorBtn a,
.hire_an-educatorBtn input,
.hire_an-educatorBtn button:hover {
	background: #061257;
}

.pyf_section::before {
	content: '';
	position: absolute;
	top: -70px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/ellipse-shape-updated.png') no-repeat;
	background-position: top center;
	background-size: cover;
	z-index: 0;
}

.pyf-outer-div {
	position: relative;
}

/*~~~~~~~~~~============= Post your first shift section CSS End Here =============~~~~~~~~~~ */

/*~~~~~~~~~~============= Be your own boss section CSS Start Here =============~~~~~~~~~~ */
.your-own-boss {
	position: relative;
	background: #fff;
	padding: 0 0 0px;
}

.your-own-boss .container {
	max-width: 1630px;
}

.own-boss-inner {
	background: #5176FB;
	border-radius: 50px;
	padding: 50px 100px 100px;
	display: flex;
	align-items: center;
	gap: 100px;
}

.own-boss-inner .own_lt-col {
	width: calc(55% - 50px);
}

.own-boss-inner .own_rt-col {
	width: calc(45% - 50px);
	position: relative;
	padding-right: 30px
}

.own-boss-inner .own_lt-col h2 {
	font-size: 60px;
	line-height: 70px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0;
	padding: 0;
}

.own-boss-inner .own_lt-col h2 span {
	color: #C3FFED;
	font-weight: 900;
}

.own-boss-inner .own_lt-col>p {
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	color: #fff;
	margin: 25px 0 35px;
}

.own-boss-inner .own_lt-col ul.ob_listing {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	max-width: 570px;
}

.own-boss-inner .own_lt-col ul.ob_listing li {
	list-style: none;
	font-size: 24px;
	line-height: 32px;
	color: #fff;
	font-weight: 300;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.own-boss-inner .own_lt-col ul.ob_listing li b {
	font-weight: 900;
}

.own-boss-inner .own_lt-col ul.ob_listing li img {
	width: 24px;
	margin: 8px 0 0;
}

.own-boss-inner .own_lt-col ul.ob_listing li p {
	width: calc(100% - 34px);
}

.find_work-btn {
	margin: 50px 0 0;
	display: flex;
}

.find_work-btn a {
	font-size: 20px;
	font-weight: 900;
	color: #5176FB;
	background: #fff;
	padding: 0px 60px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 60px;
	border-radius: 50px;
	transition: 0.4s ease all;
	line-height: 100%;
}

.find_work-btn a:hover {
	background: #061257;
	color: #fff;
}

.own_rt-col>img {
	width: 100%;
}

.new-shirt-alert {
	position: absolute;
	top: 100px;
	left: 50px;
	-webkit-animation: mover-left-right 1s infinite alternate;
	animation: mover-left-right 1s infinite alternate;
}

.new-shirt-alert img,
.payment-received img,
.total-earning img {
	width: 100%;
}

.payment-received {
	position: absolute;
	bottom: 50px;
	right: 0;
	/*-webkit-animation: mover-left-right 1s infinite  alternate; animation: mover-left-right 1s infinite  alternate;*/
}

.total-earning {
	position: absolute;
	bottom: -50px;
	left: -50px;
	/*-webkit-animation: mover 1s infinite  alternate; animation: mover 1s infinite  alternate; */
}

/*~~~~~~~~~~============= Be your own boss section CSS End Here =============~~~~~~~~~~ */

/*~~~~~~~~~~============= Testimonials section CSS Start Here =============~~~~~~~~~~ */
.rt_testimonials-sec {
	background: #fff;
	padding: 100px 0;
	position: relative;
}

.rt_testimonials-sec .container {
	max-width: 1630px;
}

.testi_title-col .hire_an-educatorBtn {
	margin: 0px 0 0;
	-webkit-box-pack: flex-start;
	-moz-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
}

.rt_tm-outer {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 100px;
	gap: 70px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.testi_title-col h2 {
	font-size: 60px;
	line-height: 70px;
	font-weight: 900;
	color: #4B71F8;
	margin: 0 0 0;
	padding: 0;
}

.testi_title-col {
	width: calc(35% - 35px);
}

.testi_title-col>p {
	font-size: 24px;
	line-height: 32px;
	padding: 0;
	font-weight: 600;
	color: #061257;
	margin: 25px 0 35px;
}

.tm_rt-col {
	width: calc(65% - 35px);
	background: #E7F0FF;
	border-radius: 30px;
	padding: 0 50px;
	height: 800px;
	overflow: hidden;
}

.tm_rt-col .tm_inner-scrollDiv {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
	height: 800px;
}

.tm_top-marquee,
.tm_btm-marquee {
	width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.client-review-main>img {
	width: 150px;
	height: 60px;
	text-align: left;
	object-fit: contain;
	object-position: left;
}

.client-review-main {
	border: 3px solid #4B71F8;
	border-radius: 20px;
	padding: 30px;
	background: #fff;
	box-sizing: border-box;
}

.tm_testi-flex-outer {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}

.cs_start-rating {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: flex-start;
	-moz-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	gap: 0;
	margin: 15px 0 15px;
}

.cs_start-rating img {
	width: 24px;
}

.client-review-main>p {
	font-size: 18px;
	font-weight: 600;
	margin: 5px 0 0;
	padding-left: 0;
	color: #2C3B45;
	line-height: 26px;
}

.review_author {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: flex-start;
	-moz-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	margin: 25px 0 0;
	gap: 10px;
}

.review_author .review_auth-img {
	width: 50px;
	display: none;
}

.review_author .review_auth-img img {
	width: 100%;
}

.review_author .auth_name-desti {
	width: calc(100% - 60px);
}

.review_author .auth_name-desti h5 {
	font-size: 18px;
	font-weight: 900;
	color: #000;
	margin: 0 0 2px;
	padding: 0;
}

.review_author .auth_name-desti span {
	font-size: 14px;
	line-height: 18px;
	font-weight: 600;
	display: inline-block;
}

.tm_top-marquee .tm_testi-flex-outer {
	animation: marquee-bottom-to-top 20s linear infinite;
	will-change: transform;
}

.tm_btm-marquee .tm_testi-flex-outer {
	animation: marquee-top-to-bottom 20s linear infinite;
	will-change: transform;
}

/* Keyframes for Bottom-to-Top Marquee */
@keyframes marquee-bottom-to-top {
	from {
		transform: translateY(0%);
	}

	to {
		transform: translateY(-100%);
	}
}

/* Keyframes for Top-to-Bottom Marquee */
@keyframes marquee-top-to-bottom {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0%);
	}
}

.tm_top-marquee.active .tm_testi-flex-outer,
.tm_btm-marquee.active  .tm_testi-flex-outer {
	-moz-animation-play-state: paused;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

.testi_shape-lt {
	position: absolute;
	top: 30%;
	transform: translateY(-50%);
	left: 0;
}

/*~~~~~~~~~~============= Testimonials section CSS End Here =============~~~~~~~~~~ */

/*~~~~~~~~~~============= OverPlay-Section css Start here =============~~~~~~~~~~*/
.form-overplay .klavio_form_wrapper form *, .form-overplay .klavio_form_wrapper form *::placeholder {
    font-family: 'Neris' !important;
}
.form-overplay .inpt_grp {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: flex-start;
	align-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	gap: 5px;
	margin: 0 0 0px;
}

.form-overplay .form_row:last-child .inpt_grp {
	margin: 0;
}

.form-overplay label {
	font-size: 16px;
	line-height: 24px;
	color: #2C3B45 !important;
	font-weight: 600 !important;
	width: 100%;
}

.form-overplay input {
	max-width: 100%;
	border-radius: 10px;
	border: 1px solid #696969;
	outline: none;
	padding: 15px;
	font-size: 14px !important;
	font-weight: 600  !important;
	line-height: 100%;
	color: #2C3B45;
	width: 100%;
	height: 48px !important;
}

.form-overplay {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: flex-start;
	align-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.form-overplay>div{
	width: 100%;
}

.form-overplay form {
	background: #ecf7fd !important;
	padding: 30px;
	border-radius: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap !important;
	gap: 15px !important;
}
.form-overplay input::placeholder {
    font-weight: 600 !important;
    font-size: 14px !important;
}

.form-overplay form .form_row {
	width: calc(50% - 7.5px);
}

.form-overplay form .form_row.shifts {
	width: 100%;
}
.form-overplay form [data-testid="form-row"]:last-child button {
    padding-inline: 40px !important;
	height: 50px !important;
    line-height: 50px !important;
	margin-top: 10px;
}

.phone-prefix {
	width: 100%;
	position: relative;
}

.form-overplay .phone-prefix input {
	padding-left: 55px;
}

.phone-prefix span.prefix {
	position: absolute;
	top: 50%;
	left: 1px;
	transform: translateY(-50%);
	background: #f1f1f1;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100% - 2px);
	border-radius: 10px 0 0 10px;
	font-size: 16px;
	line-height: 16px;
	color: #2C3B45;
	font-weight: 600;
}

.form-overplay form .form_row.submit_next {
	width: 100%;
}

section.overplay-section {
	padding: 100px 0;
	position: relative;
}

.img-leftOverplay {
	position: absolute;
	right: 0;
	bottom: 120px;
	transform: unset;
}

.img-leftOverplay img {
	width: 100%;
}

.img-rightOverplay {
	position: absolute;
	left: 0px;
	top: 0px;
	transform: unset;
}

.img-rightOverplay img {
	width: 680px;
}

.bg-clBlue {
	color: #4B71F8;
	font-weight: 900;
}

.main-divOverPlay {
	display: flex;
	gap: 100px;
	flex-wrap: wrap;
	align-items: center;
}

.img-divOverPlay {
	width: calc(50% - 50px);
	position: relative;
}

.main-divOverPlay .content-OverPlay {
	width: calc(50% - 50px);
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.main-divOverPlay .content-OverPlay h2 {
	font-size: 38px;
	line-height: 54px;
	font-weight: 600;
	color: #2C3B45;
	margin: 0 0 0;
	padding: 0;
}

.main-divOverPlay .content-OverPlay h2 span.bg-clBlue {
	font-size: 48px;
}

.hire_an-educatorBtn.overPlay-btn {
	display: inline-flex;
	margin: 0px;
	justify-content: flex-start;
}

.hire_an-educatorBtn a,
.hire_an-educatorBtn input,
.hire_an-educatorBtn button {
	font-size: 20px;
	font-weight: 900;
	color: #fff;
	background: #4B71F8;
	padding: 0px 40px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 60px;
	border-radius: 50px;
	transition: 0.4s ease all;
}

.hire_an-educatorBtn a,
.hire_an-educatorBtn input,
.hire_an-educatorBtn button:hover {
	background: #061257;
}

.main-divOverPlay .content-OverPlay p {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	color: #2C3B45;
	margin: 0;
	padding: 0;
}

.img-overPlaySecond {
	position: absolute;
	top: 0;
	left: -30px;
	/*-webkit-animation: mover 1s infinite  alternate; animation: mover 1s infinite  alternate; */
}

.shift-imgDiv {
	display: inline-flex;
	flex-direction: column;
	position: absolute;
	bottom: -15px;
	right: -30px;
	gap: 10px;
}

.overplay-three {
	margin-right: 60px;
	/*-webkit-animation: mover-left-right 1s infinite  alternate; animation: mover-left-right 1s infinite  alternate; */
}

.overplay-four {
	text-align: end;
	/*-webkit-animation: mover-right-left 1s infinite  alternate; animation: mover-right-left 1s infinite  alternate;*/
}

@-webkit-keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

@-webkit-keyframes mover-left-right {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10px);
	}
}

@keyframes mover-left-right {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10px);
	}
}

@-webkit-keyframes mover-right-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(10px);
	}
}

@keyframes mover-right-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(10px);
	}
}

/*~~~~~~~~~~============= OverPlay-Section css end here =============~~~~~~~~~~*/

/*~~~~~~~~~~============= Raw Talent Difference section CSS Start Here =============~~~~~~~~~~*/
.rt_difference-sec {
	position: relative;
	padding: 100px 0;
	background: url('../images/rt-difference-bg.jpg') no-repeat;
	background-position: top center;
	background-size: cover;
}

.rt_form-head {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.rt_form-head .rt_lt-data,
.rt_form-list .rt_lt-data {
	width: 45%;
}

.rt_form-head .rt_center-data,
.rt_form-head .rt_right-data,
.rt_form-list .rt_center-data,
.rt_form-list .rt_right-data {
	width: 27.5%;
	text-align: center;
}

.rt_inner-form {
	position: relative;
	max-width: 1100px;
	margin: 70px auto 0;
}

.rt_right-data h6 {
	font-size: 24px;
	color: #2C3B45;
	line-height: 30px;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.rt_form-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.rt_form-body {
	background: #fff;
	margin: 50px 0 0;
	border-radius: 30px;
	overflow: hidden;
}

.rt_form-list .rt_lt-data {
	padding: 40px;
	background: #4B71F8;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.rt_form-list .rt_lt-data .list-icon {
	width: 60px;
}

.rt_form-list .rt_lt-data .list-icon img {
	width: 100%;
}

.rt_form-list .rt_lt-data .list-icon-ct {
	width: calc(100% - 75px);
}

.rt_form-list .rt_lt-data .list-icon-ct h5 {
	font-size: 22px;
	font-weight: 900;
	margin: 0 0 5px;
	color: #A4F9FF;
	padding: 0;
}

.rt_form-list .rt_lt-data .list-icon-ct p {
	font-weight: 300;
	font-size: 20px;
	color: #fff;
	margin: 0;
	padding: 0;
	line-height: 26px;
}

.rt_form-list .rt_center-data img {
	width: 50px;
}

.rt_form-list .rt_right-data img {
	width: 40px;
}

.rt_form-head .rt_center-data img {
	width: 190px;
}

.rt_form-body .rt_form-list:nth-child(odd) {
	background: #F6F6F6;
}

.find_educator-btns.download-app {
	margin: 70px 0 0;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*~~~~~~~~~~============= Raw Talent Difference section CSS End Here =============~~~~~~~~~~ */

/*~~~~~~~~~~============= FAQ section CSS Start Here =============~~~~~~~~~~ */
.rt_faq-sec {
	background: #fff;
	padding: 100px 0 100px;
	position: relative;
}

.rt_faq-sec .container {
	max-width: 1630px;
}

.rt_faq-outer {
	background: #E7F0FF;
	padding: 70px 100px;
	border-radius: 50px;
}

.rt_faq-outer .collapsible-tabs-vertical {
	margin: 50px 0 0;
}

div#verticalTab,
div#verticalTab1 {
	display: flex !important;
	gap: 30px;
	margin: 50px 0 0 !important;
}

.rt_faq-outer ul.resp-tabs-list,
.resp-vtabs .resp-tabs-container {
	width: calc(50% - 15px);
}

.rt_faq-outer ul.resp-tabs-list li.resp-tab-item {
	background-color: #4B71F8;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	padding: 30px 90px 30px 30px !important;
	transition: all .3s ease-in-out;
	font-size: 22px;
	color: #fff;
	font-weight: 600;
	position: relative;
	line-height: 30px;
}

.rt_faq-outer ul.resp-tabs-list li {
	margin: 0 0 15px !important;
}

.rt_faq-outer ul.resp-tabs-list li:last-child {
	margin: 0px !important;
}

.rt_faq-outer ul.resp-tabs-list li.resp-tab-item span.radio_icon {
	background-color: #fff;
	border-radius: 50%;
	height: 44px;
	width: 44px;
	display: inline-block;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.rt_faq-outer ul.resp-tabs-list li.resp-tab-item.resp-tab-active span.radio_icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 25px;
	height: 25px;
	background: #4b71f8;
	transform: translateY(-50%);
	border-radius: 50%;
	margin: 0 auto;
}

.resp-vtabs .resp-tabs-container {
	background: #fff;
	border: none;
	border-radius: 20px;
}

.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content {
	height: 100%;
	padding: 50px;
}

.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content.resp-tab-content-active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content h3 {
	font-size: 26px;
	font-weight: 600;
	color: #2C3B45;
	margin: 0;
	padding: 0;
}

.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content p {
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
	color: #2C3B45;
	margin: 20px 0 0;
	padding: 0;
}

/*~~~~~~~~~~============= FAQ section CSS End Here =============~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~============= footer css start here =============~~~~~~~~~~~~~~ */
footer.rt_footer {
	background: #061257;
	padding: 70px 0 30px 0;
}

footer.rt_footer .container {
	max-width: 1630px;
}

.logo-footer a img {
	width: 200px;
}

.logo-footer a {
	display: inline-block;
}

.top-footerDiv {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.logo-contFooter {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.andorid-appleDiv {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.andorid-appleDiv a {
	display: inline-block;
}

.andorid-appleDiv img {
	width: 140px;
}

.all-listDivFoot {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 120px;
}

.all-listDivFoot ul li a {
	/* color: #fff; */
	color: #adadad;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	transition: 0.4s ease all;
}

.all-listDivFoot ul li a:hover {
	color: #4B71F8;
}

.all-listDivFoot ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 10px;
}

.Get-divFooter {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.Get-divFooter h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
	color: #fff;
}

.Get-divFooter ul {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.Get-divFooter ul li a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #fff;
	display: flex;
	gap: 10px;
}

.Get-divFooter ul li a img {
	width: 20px;
	height: 20px;
}

/* .Get-divFooter ul li a span { width: calc(100% - 25px); }  */
.bottom-footerDiv {
	padding-top: 30px;
	margin-top: 60px;
	border-top: 0.2px solid #4a4a4a;
}

.copy-listDiv ul li a {
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	font-weight: 600;
	transition: 0.4s ease all;
}

.copy-listDiv ul li a:hover {
	color: #4B71F8;
}

.copy-listDiv {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

ul.copyright-div {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

ul.social-divFooter {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

ul.social-divFooter li a {
	display: inline-block;
}

ul.social-divFooter li a img {
	max-width: 30px;
}

ul.social-divFooter li a i {
	font-size: 24px;
}

.p-copydiv {
	display: flex;
	gap: 50px;
}

.p-copydiv p {
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	transition: 0.4s ease all;
}

.p-copydiv p:hover {
	color: #4B71F8;
}

/* ~~~~~~~~~~~~~~============= footer css end here =============~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~============= Book-Educators-css =============~~~~~~~~~~~~~~ */
.casual-staffing-sec.book-casual-block-sec {
	padding: 120px 0 40px;
	background-image: unset;
	overflow: hidden;
}

.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer {
	gap: 70px;
}

.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_lt-col {
	width: calc(60% - 35px);
}

.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col {
	width: calc(40% - 35px);
	padding: 0;
}

.cs_wrapper-outer .cs_rt-col .top-ryt-asset {
	position: absolute;
	top: 12%;
	right: 25%;
}

.cs_wrapper-outer .cs_rt-col .top-ryt-asset img,
.cs_wrapper-outer .cs_rt-col .top-lft-asset img {
	animation: swing ease-in-out 3s infinite alternate;
}

@keyframes swing {
	0% {
		transform: rotate(5deg);
	}

	100% {
		transform: rotate(-5deg);
	}
}

.cs_wrapper-outer .cs_rt-col .top-lft-asset {
	position: absolute;
	top: 18%;
	left: 7%;
}

.dwnld-app-block {
	margin: 30px 0 15px;
}

.dwnld-app-block p.dwnld-app {
	font-size: 24px;
	line-height: 32px;
	margin: 0 0;
	padding: 0;
	font-weight: 600;
	color: #061257;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.dwnld-app-block p.dwnld-app span.dwn-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	background: #4B71F8;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.5s all;
	margin-left: 5px;
}

.dwnld-app-block p.dwnld-app:hover span.dwn-icon {
	background: #061257;
}

.dwnld-app-block p.dwnld-app span.dwn-icon svg {
	transition: 0.5s all;
	transform: translate(-1.5px, 1.5px);
}

.dwnld-app-block p.dwnld-app span.dwn-icon svg {
	transition: 0.5s all;
	transform: translate(0px, 0px);
}

.dwnld-app-block p.dwnld-app:hover span.dwn-icon svg {
	transform: translate(-2px, 2px);
}

.as-featured-trusted-sec .top-heading {
	margin: 20px 0 40px;
	text-align: center;
}

.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col .ryt-img-col {
	margin-bottom: -49px;
}

.as-featured-trusted-sec .af_bg-div {
	margin-bottom: 40px;
}

.own-boss-inner.raw-talent-inner-block {
	padding: 50px 70px 70px 50px;
	border-radius: 30px;
	z-index: 1;
	position: relative;
	gap: 60px;
}

.own-boss-inner.raw-talent-inner-block .own_rt-col {
	width: calc(50% - 30px);
	padding: 0;
	/* position: relative; */
}

.own_lt-col {
	position: relative;
}

.own-boss-inner.raw-talent-inner-block .own_lt-col {
	width: calc(50% - 30px);
	padding-left: 20px;
}

.own-boss-inner.raw-talent-inner-block .own_lt-col .find_work-btn {
	margin-top: 40px;
}

.own-boss-inner.raw-talent-inner-block .find_work-btn a {
	height: 48px;
	padding: 0 25px;
}

.raw-talent-inner-block .main-img img {
	width: auto;
	/* transform: scale(1.1); */
}

/* .raw-talent-inner-block .play_store-div { position: absolute; top: 13%; left:0; gap: 5px; } */
.raw-talent-inner-block .play_store-div {
	position: absolute;
	bottom: -50px;
	gap: 5px;
	left: 30px;
}

.raw-talent-inner-block .play_store-div img {
	max-width: 140px;
}

.raw-talent-inner-block .own_lt-col h2 {
	font-style: normal;
	font-weight: 600;
	font-size: 48px;
	line-height: 114.9%;
	color: #EDF7FC;
	margin-bottom: 30px;
}

.raw-talent-inner-block .own_lt-col ul.ob_listing {
	max-width: 528px;
}

section.raw-talent_section {
	position: relative;
	background: #fff;
	padding-top: 30px
}

section.raw-talent_section:before {
	content: '';
	position: absolute;
	top: -70px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/ellipse-shape-updated.png) no-repeat;
	background-position: top center;
	background-size: cover;
	z-index: 0;
}

.own-boss-inner.raw-talent-inner-block:before {
	content: '';
	position: absolute;
	background-image: url(../images/ellipse-shadow.png);
	background-position: top left;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	left: 0;
}

.raw-talent_section .stats-section {
	display: flex;
	text-align: center;
	padding: 120px 0;
	background: #fff;
	flex-wrap: wrap;
	gap: 60px;
	position: relative;
	z-index: 1;
	max-width: 1092px;
	margin: 0 auto;
}

.raw-talent_section .stats-section .stat-box {
	width: calc(25% - 180px/4);
}

.raw-talent_section .stat-box .value {
	font-weight: 900;
	font-size: 48px;
	line-height: 96.59%;
	text-align: center;
	color: #4B71F8;
}

.raw-talent_section .stat-box p {
	margin-top: 10px;
	font-family: 'Neris';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 143.4%;
	text-align: center;
	color: #2C3B45;
}

.choose-right-block-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
}

.choose-right-block-inner .left-content-col {
	width: 470px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.choose-right-block-inner .right-list-grid-col {
	width: calc(100% - 510px);
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
}

.choose-right-block-inner .left-content-col p:nth-of-type(1) {
	max-width: 432px;
}

.right-list-grid-col .list-grid-block {
	width: calc(33.33% - 44px/3);
}

section.choose-right-block-main {
	position: relative;
	z-index: 2;
	background: #EDF7FC;
	padding: 120px 0;
}

.list-grid-block .grid-col-inner .img-col-main {
	align-items: flex-end;
	justify-content: center;
	border-radius: 15px;
	background: #fff;
	display: flex;
	max-height: 240px;
}

.list-grid-block .grid-col-inner .img-col-main img {
	margin-top: -65px;
}

.list-grid-block .grid-col-inner .img-content-col {
	padding: 15px 0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.img-content-col .col-name h4 {
	font-style: normal;
	font-weight: 900;
	font-size: 25.1561px;
	line-height: 120.94%;
	text-align: center;
	color: #FFFFFF;
}

.img-content-col .tag-col p {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 4px 8px;
	gap: 2px;
	border-radius: 5px;
	background: #FFE8BD;
}

.img-content-col .tag-col p span {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	text-transform: capitalize;
	color: #000000;
	font-family: "Inter", sans-serif;
}

.right-list-grid-col .list-grid-block {
	border-radius: 24px;
	background: #5176FB;
	padding: 15px;
}

.right-list-grid-col .list-grid-block:nth-of-type(2) .img-content-col .tag-col p {
	background: #BAE6FF;
}

.choose-right-block-inner .left-content-col p {
	font-family: 'Neris';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 143.4%;
	color: #2C3B45;
}

.how-it-work-block .side-lt-circle.left {
	top: 30%;
}

.pyf_section.how-it-work-block {
	padding: 115px 0 120px;
}

.how-it-work-block .img-leftOverplay {
	bottom: 25%;
}

.how-it-work-block .pyf_boxes-div .pyf_box:nth-child(2) .img_box img {
	object-position: center;
}

.how-it-work-block .pyf_boxes-div .pyf_box:nth-child(1) .img_box img {
	position: relative;
	bottom: -1px;
}

.game-changing-section-block {
	padding: 120px 0;
	background: #EDF7FC;
	position: relative;
}

.game-changing-section-block:before {
	background-image: url(../images/grid-list-bg-layer.png);
	background-size: cover;
	background-repeat: no-repeat;
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.game-changing-sectio-inner .top-heading p {
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 143.4%;
	color: #2C3B45;
}

.game-changing-sectio-inner .top-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.featured-grids-col {
	display: flex;
	flex-wrap: wrap;
	gap: 35px 30px;
	margin-top: 60px;
}

.feature-grid-list .feature-grid-list-inner svg path {
	transition: 0.5s all;
}

.featured-grids-col .feature-grid-list:hover svg path {
	fill: #fff
}

.featured-grids-col .feature-grid-list {
	width: calc(33.33% - 60px/3);
	display: flex;
	align-items: center;
	text-align: center;
	padding: 50px 30px;
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 4px 0 0 #5176FB;
	transition: 0.5s all;
	cursor: pointer;
	justify-content: center;
}

.featured-grids-col .feature-grid-list:hover {
	background-color: #5176FB;
}

.feature-grid-list .feature-grid-list-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.feature-grid-list-inner .icon-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-grid-list-inner .icon-content h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 26px;
	line-height: 120.94%;
	text-align: center;
	color: #2C3B45;
	max-width: 300px;
	transition: 0.5s all;
	margin: 0 auto;
}

.feature-grid-list-inner .icon-content p {
	font-style: normal;
	font-weight: 300;
	font-size: 22px;
	line-height: 120.94%;
	transition: 0.5s all;
	text-align: center;
	color: #2C3B45;
}

.featured-grids-col .feature-grid-list:hover .icon-content h4,
.featured-grids-col .feature-grid-list:hover .icon-content p {
	color: #fff;
}

.your-own-boss.stop-spending-money {
	padding: 120px 0;
}

.your-own-boss.stop-spending-money .own-boss-inner {
	padding: 80px;
	gap: 85px;
}

.your-own-boss.stop-spending-money .own_lt-col {
	width: calc(50% - 42.5px);
}

.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col {
	width: calc(50% - 42.5px);
	padding: 0 0 0 0;
	border-left: 1px solid #FFFFFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.your-own-boss.stop-spending-money h2,
.your-own-boss.stop-spending-money p,
.your-own-boss.stop-spending-money ul li {
	color: #EDF7FC;
}

.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col .bottom-content p {
	font-size: 24px;
	line-height: 40px;
	font-weight: 600;
	color: #EDF7FC;
	max-width: 330px;
	margin: 0 auto;
	text-align: center;
}

.overpayying-gg-sec .img-rightOverplay img {
	width: auto;
}

.overpayying-gg-sec .img-rightOverplay {
	top: 50%;
	transform: translate(0, -50%);
}

.rt_testimonials-sec.gt-testi-col-block {
	padding: 120px 0;
	background: #EDF7FC;
}

.rt_testimonials-sec.gt-testi-col-block .testi_title-col p {
	max-width: 409px;
}

.rt_testimonials-sec.gt-testi-col-block .testi_title-col p br {
	display: none;
}

.rt_testimonials-sec.gt-testi-col-block .tm_rt-col {
	background: #fff;
}

.rt_faq-sec.be_faq-sec-col {
	padding: 120px 0;
}

.rt_faq-sec.be_faq-sec-col .rt_faq-outer {
	background: #EDF7FC;
}

.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content p strong {
	font-weight: 600;
}

.join-raw-talent-now-block {
	background-image: url('../images/raw-talent-bg-layer.png');
	background-size: cover;
	background-repeat: no-repeat;
	padding: 72px 0;
	overflow: hidden;
}

.join-raw-talentnow-block-inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 70px;
}

.join-raw-talentnow-block-inner .lft-col-talent {
	width: calc(45% - 35px);
}

.join-raw-talentnow-block-inner .ryt-col-talent {
	width: calc(55% - 35px);
}

.join-raw-talentnow-block-inner .lft-col-talent h2 {
	font-family: 'Neris';
	font-weight: 600;
	font-size: 58px;
	line-height: 120.94%;
	color: #EDF7FC;
}

.join-raw-talentnow-block-inner .lft-col-talent h2 span {
	color: #C3FFED;
	font-weight: 900;
}

.join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 32px;
	gap: 12px;
	margin: 54px 0 23px;
	background: #C3FFED;
	border-radius: 40px;
}

.booking-filled-block h3 {
	font-style: normal;
	font-weight: 900;
	font-size: 58px;
	line-height: 120.94%;
	text-align: center;
	color: #5176FB;
}

.booking-filled-block p {
	font-style: normal;
	font-weight: 600;
	font-size: 36px;
	line-height: 120.94%;
	text-align: center;
	color: #5176FB;
}

.lft-col-talent p.join-future-text {
	font-style: normal;
	font-weight: 600;
	font-size: 26px;
	line-height: 120.94%;
	color: #FFFFFF;
}

/* .join-raw-talentnow-block-inner .ryt-col-talent img { min-width: 905px; } */
.join-raw-talentnow-block-inner .ryt-col-talent img {
	min-width: 713px;
}

.client_logoSlider .slick-track {
	display: flex;
	align-items: center;
}

.overplay-section.overpayying-gg-sec {
	padding: 0 0 120px;
}

.children-eductor-sec .own-boss-inner.raw-talent-inner-block {
	padding: 50px 40px 70px 40px;
}

.stats-section.status-three-col {
	justify-content: center !important;
}

.pyf_section.how-it-work-block.find-block-it-work .pyf_boxes-div .pyf_box:nth-child(1) .img_box img {
	transform: unset;
}

.pyf_section.how-it-work-block.find-block-it-work .pyf_box .img_box {
	aspect-ratio: auto !important;
}

.game-changing-section-block-fd .game-changing-sectio-inner .top-heading p {
	max-width: 1000px;
}

.join-raw-new-col .lft-col-talent p.join-future-text {
	margin-top: 40px;
}

.join-raw-new-col .lft-col-talent p.join-future-text span.green-text {
	color: #C3FFED;
	font-weight: 700;
}

.banner-tag-fd p {
	display: inline-block;
	padding: 15px 24px;
	background: #FFFFFF;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
	border-radius: 10px 10px 10px 0px;
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 120.94%;
	color: #2C3B45;
}

.banner-tag-fd {
	position: absolute;
	top: 30%;
	right: -17%;
	-webkit-animation: mover-left-right 1s infinite alternate;
	animation: mover-left-right 1s infinite alternate;
}

.find-banner-block.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer {
	gap: 50px;
}

.find-banner-block.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_lt-col,
.find-banner-block.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col {
	width: calc(50% - 25px) !important;
}

.stats-section.status-three-col .stat-box {
	width: max-content;
}

.instant-booking {
	position: absolute;
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	box-shadow: 8px 8px 24px rgba(75, 113, 248, 0.33);
	border-radius: 10px;
	top: 30%;
	padding: 8px 16px 8px 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	/* left: 5%; */
	right: 5%;
}

.instant-booking span.text {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 120.94%;
	color: #000000;
}

.hire_an-educatorBtn button {
	height: 50px;
	line-height: 50px;
}

.staffing-sol-banner .ryt-img-col img {
	position: relative;
	right: -30%;
}

.stats-section.stats-section-ob {
	max-width: 1200px;
}

.price-match-guarantee-sec .own-boss-inner .own_lt-col h2,
.your-own-boss.stop-spending-money h2 {
	color: #EDF7FC !important;
}

.price-match-guarantee-sec .own-boss-inner .own_rt-col {
	border: 0 !important;
}

.price-match-guarantee-sec.your-own-boss.stop-spending-money .own-boss-inner {
	gap: 60px;
}

.price-match-guarantee-sec.your-own-boss.stop-spending-money .own-boss-inner .own_lt-col {
	width: calc(60% - 30px);
}

.price-match-guarantee-sec.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col {
	width: calc(40% - 30px);
}

.price-match-guarantee-sec.your-own-boss.stop-spending-money .own-boss-inner .own_lt-col ul.ob_listing {
	max-width: 600px;
}

.your-own-boss.stop-spending-money.price-match-guarantee-sec .container,
section.your-own-boss.stop-spending-money .container {
	max-width: 1330px;
}

.pyf-outer-div>h2.text-center,
.rt_faq-outer>h2.text-center,
.rtd_table-outer>h2.text-center,
.as-featured-trusted-sec .top-heading h3,
.choose-right-block-inner .left-content-col h3,
.game-changing-sectio-inner h2,
.price-match-guarantee-sec .own-boss-inner .own_lt-col h2,
.your-own-boss.stop-spending-money h2 {
	font-size: 48px;
	line-height: 54px;
	font-weight: 600;
	color: #2C3B45;
	margin: 0 0 0;
	padding: 0;
}

/*~~~~~~~~~~~~~~============= Manage Casual Pool Page CSS Start Here =============~~~~~~~~~~~~~~*/
.casual_pool-sec {
	background: #fff;
	padding: 140px 0 90px;
}

.casual_pool-sec .cs_wrapper-outer {
	gap: 30px;
}

.casual_pool-sec .cs_wrapper-outer .cs_lt-col {
	width: 650px;
}

.casual_pool-sec .cs_wrapper-outer .cs_rt-col {
	padding: 0;
	width: calc(100% - 680px);
}

.works-manage-p {
	background: #EDF7FC;
	padding: 120px 0;
}

.works-manage-p::before {
	content: unset;
}

.works-manage-p .pyf_boxes-div {
	gap: 20px;
	margin: 60px 0 0;
}

.works-manage-p .pyf_boxes-div .pyf_box {
	width: calc(25% - 15px);
}

.works-manage-p .pyf_boxes-div .pyf_box .img_box {
	border-radius: 30px;
	aspect-ratio: unset;
	padding: 47px 30px 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.works-manage-p .pyf_boxes-div .pyf_box p {
	margin: 0;
	padding: 0;
	width: calc(100% - 50px);
}

.works-manage-p .pyf_boxes-div .pyf_box .pyf_box-title {
	align-items: flex-start;
}

.works-manage-p .pyf-outer-div>h2 {
	font-weight: 900;
}

.made_easy-worksP {
	background: url('../images/me-bg-img.png') no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 120px 0 0;
}

.me_title-main h2 {
	font-size: 48px;
	line-height: 54px;
	font-weight: 900;
	color: #fff;
	margin: 0 0 0;
	padding: 0;
}

.me_title-main h2 span.cs_green {
	color: #C3FFED;
}

.me_flex-boxes {
	margin: 70px 0 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	background: #fff;
	border-radius: 40px 40px 0 0;
	overflow: hidden;
}

.me_flex-boxes .me-lt-col,
.me_flex-boxes .me-rt-col {
	width: 50%;
}

.me_flex-boxes .me-lt-col {
	background: #EDF7FC;
	padding: 98px 77px 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: flex-end;
	-moz-box-align: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
}

.me_flex-boxes .me-rt-col {
	padding: 120px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 60px;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.list_me-flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.list_me-flex>img {
	width: 70px;
}

.list_me-flex p {
	font-family: 'Neris';
	font-style: normal;
	font-weight: 300;
	font-size: 22px;
	line-height: 27px;
	color: #283C46;
	margin: 0;
	padding: 0;
	width: calc(100% - 100px);
}

/*~~~~~~~~~~~~~~============= Manage Casual Pool Page End Here =============~~~~~~~~~~~~~~*/

/*~~~~~~~~~~~~~~============= Contact us Page Start Here =============~~~~~~~~~~~~~~*/
.rt_faq-sec.cp_faq-educator {
	background: #ECF7FD;
	padding: 120px 0;
}

.rt_faq-sec.cp_faq-educator .rt_faq-outer {
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.rt_faq-sec.cp_faq-educator .container {
	max-width: 1250px;
}

.rt_faq-sec.cp_faq-educator ul.resp-tabs-list {
	width: 568px;
}

.rt_faq-sec.cp_faq-educator .resp-tabs-container {
	width: calc(100% - 588px);
	border-radius: 10px;
}

.rt_faq-sec.cp_faq-educator div#verticalTab,
.rt_faq-sec.cp_faq-educator div#verticalTab1 {
	gap: 20px;
	margin: 60px 0 0 !important;
}

.rt_faq-sec.cp_faq-educator .resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content.resp-tab-content-active {
	justify-content: flex-start;
	padding: 40px;
}

.rt_faq-sec.cp_faq-educator .rt_faq-outer ul.resp-tabs-list li.resp-tab-item {
	border-radius: 10px;
	padding: 20px 90px 20px 20px !important;
	font-size: 22px;
	line-height: 26px;
}

.rt_faq-sec.faq_for-centres {
	background: #5176FB;
	padding: 100px 0 120px;
}

.rt_faq-sec.faq_for-centres h2 {
	color: #fff;
}

.rt_faq-sec.faq_for-centres h2 span.blue-title {
	color: #C3FFED;
}

.rt_faq-sec.faq_for-centres .rt_faq-outer ul.resp-tabs-list li.resp-tab-item {
	background: #2B54E6;
}

.casual-staffing-sec.get_touch-p-sec {
	background: #fff;
	padding: 230px 0 120px;
}

.get_touch-p-sec h1 {
	font-weight: 900;
}

.get_touch-p-sec .cs_lt-col p {
	font-family: 'Neris';
	font-style: normal;
	font-weight: 300;
	font-size: 24px;
	line-height: 36px;
	color: #000000;
	margin: 0;
}

.get_touch-p-sec .cs_wrapper-outer .cs_rt-col {
	width: 725px;
	padding: 0;
}

.get_touch-p-sec .cs_wrapper-outer {
	gap: 40px;
}

.get_touch-p-sec .cs_wrapper-outer .cs_lt-col {
	width: calc(100% - 765px);
}

.get_touch-p-sec .form-overplay form {
	padding: 100px 38px !important;
	border-radius: 30px;
}

.get_touch-p-sec .form-overplay .inpt_grp {
	gap: 10px;
}

.get_touch-p-sec .form-overplay .form_row.form_textarea {
	width: 100%;
}

.get_touch-p-sec .form-overplay .form_row.form_textarea textarea {
	width: 100%;
	padding: 15px;
	height: 180px;
	resize: none;
	border-radius: 10px;
	background: #FFFFFF;
	border: 1px solid #7A878F;
	font-family: 'Neris';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 120.94%;
	color: #000;
}

.get_touch-p-sec .form-overplay .form_row.form_textarea textarea::placeholder {
	color: #778790;
}

.get_touch-p-sec .form-overplay .form_row input {
	font-family: 'Neris';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 120.94%;
	color: #778790;
	padding: 15px 20px;
	height: 52px;
	border-radius: 10px;
	background: #FFFFFF;
	border: 1px solid #7A878F;
	color: #000;
}

.get_touch-p-sec .form-overplay .form_row input::placeholder {
	color: #778790;
}

.get_touch-p-sec .form-overplay .phone-prefix input {
	padding-left: 60px !important;
}

.get_touch-p-sec ul.info_list-pa {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin: 30px 0 70px;
}

.get_touch-p-sec ul.info_list-pa li {
	margin: 0 20px 0 0;
	padding: 0 20px 0 0;
	position: relative;
	font-family: 'Neris';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 10px;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.get_touch-p-sec ul.info_list-pa li::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 19px;
	background: #000000;
	transform: translateY(-50%);
}

.get_touch-p-sec ul.info_list-pa li:last-child {
	margin: 0;
	padding: 0;
}

.get_touch-p-sec ul.info_list-pa li:last-child::after {
	content: unset;
}

.get_touch-p-sec ul.info_list-pa li img {
	width: 20px;
	height: 20px;
}

.get_touch-p-sec ul.info_list-pa li span {
	color: #000000;
	width: calc(100% - 28px);
}

.get_touch-p-sec ul.info_list-pa li a {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	transition: 0.4s ease all;
}

.get_touch-p-sec .form-overplay .form_row.submit_next {
	margin: 20px 0 0;
}

.get_touch-p-sec .form-overplay .form_row.submit_next .hire_an-educatorBtn button {
	padding: 0 30px;
}

.get_touch-p-sec ul.info_list-pa li a:hover span {
	color: #4577ff;
}

.ready_to-help {
	border-radius: 20px;
	background: #5176FB url('../images/shape_bg-cp.png');
	padding: 45px 45px 0 45px;
	min-height: 365px;
	position: relative;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.ready_to-help h2 {
	font-family: 'Neris';
	font-style: normal;
	font-weight: 900;
	font-size: 34px;
	line-height: 120.94%;
	color: #FFFFFF;
	width: 195px;
}

.ready_to-help h2 span {
	color: #C3FFED;
}

.ready_to-help img {
	position: absolute;
	bottom: 0;
	right: 20px;
	width: 323px;
}

/*~~~~~~~~~~~~~~============= Contact Us Page End Here =============~~~~~~~~~~~~~~*/

/* .client_logoSlider 
 img {
    aspect-ratio: 129 / 43;
    object-fit: contain;
    object-position: center;
} */

.form-overplay form [data-testid="form-row"]:last-child button:hover {
    background: #061257 !important;
}

.needsclick h1 span, .needsclick p span {
    font-family: 'Neris'!important;
}

.for-mob{
    display: none;
}
.own-boss-inner.raw-talent-inner-block .own_lt-col .play_store-div {
    position: unset;
    margin-top: 20px;
}
.overplay-section.overpayying-gg-sec ~ section.rt_testimonials-sec {
    padding: 0;
}












/* ~~~~~~~~~~~~~~============= Media Queries css Start here =============~~~~~~~~~~~~~~ */
@media (max-width:1600px) {
	.img-rightOverplay {
		top: 80px;
	}

	.img-rightOverplay img {
		width: 600px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css =============~~~~~~~~~~~~~~ */
	.own-boss-inner .own_lt-col h2 {
		font-size: 50px;
		line-height: 54px;
	}

	.list-grid-block .grid-col-inner .img-col-main img {
		height: 300px;
		object-fit: cover;
		border-radius: 15px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css-end =============~~~~~~~~~~~~~~ */
	.banner-tag-fd p {
		padding: 12px 18px;
		font-size: 18px;
	}

	.banner-tag-fd {
		right: -10%;
	}

	.staffing-sol-banner .ryt-img-col img {
		right: -10%;
	}

	.instant-booking {
		left: -15%;
	}
}

@media (max-width:1400px) {
	.bannr_notification-outer {
		right: 0;
	}

	.pyf_section::before {
		top: -40px;
	}

	.as_featured-sec {
		padding: 70px 0 110px;
	}

	.own-boss-inner {
		padding: 50px 50px 80px;
		gap: 50px;
	}

	.own-boss-inner .own_lt-col {
		width: calc(55% - 25px);
	}

	.own-boss-inner .own_rt-col {
		width: calc(45% - 25px);
		position: relative;
		padding-right: 30px;
	}

	.new-shirt-alert {
		top: 60px;
		left: 20px;
	}

	.total-earning {
		bottom: -30px;
		left: -30px;
	}

	.own-boss-inner .own_lt-col>p {
		font-size: 26px;
		line-height: 36px;
		font-weight: 600;
		color: #fff;
		margin: 15px 0 25px;
	}

	.own-boss-inner .own_lt-col ul.ob_listing li {
		list-style: none;
		font-size: 22px;
		line-height: 30px;
	}

	.rt_tm-outer {
		padding-left: 0;
		gap: 50px;
	}

	.testi_title-col {
		width: calc(35% - 25px);
	}

	.tm_rt-col {
		width: calc(65% - 25px);
		padding: 0 30px;
	}

	.testi_title-col>p br {
		display: none;
	}

	.img-overPlaySecond {
		left: 10px;
	}

	.img-rightOverplay img {
		width: 500px;
	}

	section.overplay-section {
		padding: 50px 0 100px;
		position: relative;
	}

	.img-rightOverplay {
		top: 50px;
	}

	.find_educator-btns.download-app {
		margin: 50px 0 0;
	}

	.rt_faq-outer {
		padding: 50px;
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content {
		height: 100%;
		padding: 30px;
	}

	.all-listDivFoot {
		gap: 30px;
	}

	.Get-divFooter {
		gap: 15px;
	}

	.Get-divFooter h2 {
		font-size: 28px;
		line-height: 38px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css =============~~~~~~~~~~~~~~ */
	.casual-staffing-sec.book-casual-block-sec {
		padding: 150px 0 40px;
	}

	.cs_lt-col h1 {
		font-size: 64px;
		line-height: 70px;
		margin: 0 0 20px;
	}

	.dwnld-app-block {
		margin: 25px 0 15px;
	}

	.own-boss-inner.raw-talent-inner-block {
		padding: 50px ;
	}

	.raw-talent_section .stats-section {
		padding: 80px 0;
	}

	.raw-talent_section .stat-box .value {
		font-size: 40px;
	}

	.raw-talent_section .stat-box p {
		line-height: 30px;
	}

	section.choose-right-block-main {
		padding: 100px 0;
	}

	.choose-right-block-inner .left-content-col {
		gap: 20px;
	}

	.img-content-col .col-name h4 {
		font-size: 20px;
		line-height: 24px;
	}

	.img-content-col .tag-col p span {
		font-size: 14px;
		line-height: 17px;
	}

	.right-list-grid-col .list-grid-block .grid-col-inner {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.list-grid-block .grid-col-inner .img-col-main img {
		height: 250px;
	}

	.pyf_section.how-it-work-block,
	.game-changing-section-block,
	.your-own-boss.stop-spending-money,
	.rt_testimonials-sec.gt-testi-col-block,
	.rt_faq-sec.be_faq-sec-col {
		padding: 100px 0;
	}

	.your-own-boss.stop-spending-money .own-boss-inner {
		padding: 60px;
		gap: 50px;
	}

	.your-own-boss.stop-spending-money .own_lt-col,
	.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col {
		width: calc(50% - 25px);
	}

	.join-raw-talentnow-block-inner .ryt-col-talent img {
		min-width: 705px;
	}

	.join-raw-talentnow-block-inner .lft-col-talent h2 {
		font-size: 48px;
	}

	.join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block {
		padding: 25px;
		margin: 44px 0 23px;
		border-radius: 30px;
	}

	.booking-filled-block h3 {
		font-size: 48px;
		line-height: 100%;
	}

	.booking-filled-block p {
		font-size: 30px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css-end =============~~~~~~~~~~~~~~ */
	.banner-tag-fd p {
		padding: 10px 15px;
		font-size: 16px;
	}

	.banner-tag-fd {
		right: -6%;
		top: 33%;
	}

	.feature-grid-list-inner .icon svg {
		width: 80px;
		height: 80px;
	}

	.instant-booking span.icon img {
		min-width: 25px;
	}

	.instant-booking span.text {
		font-size: 18px;
	}

	.instant-booking {
		padding: 8px 10px;
		left: -19%;
	}

	.raw-talent_section .stat-box p {
		font-size: 22px;
	}

	.rt_faq-sec.cp_faq-educator .resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content.resp-tab-content-active {
		justify-content: flex-start;
		padding: 30px;
	}

	.get_touch-p-sec .cs_wrapper-outer .cs_rt-col {
		width: 550px;
		padding: 0;
	}

	.get_touch-p-sec .cs_wrapper-outer {
		gap: 30px;
	}

	.get_touch-p-sec .cs_wrapper-outer .cs_lt-col {
		width: calc(45% - 15px);
	}

	.get_touch-p-sec .cs_wrapper-outer .cs_rt-col {
		width: calc(55% - 15px);
	}

	.casual-staffing-sec.get_touch-p-sec {
		background: #fff;
		padding: 180px 0 90px;
	}
}

@media (max-width:1300px) {

	.casual_pool-sec .cs_wrapper-outer .cs_lt-col,
	.casual_pool-sec .cs_wrapper-outer .cs_rt-col {
		width: calc(50% - 15px);
	}

	.me_flex-boxes .me-rt-col {
		padding: 50px;
		gap: 40px;
	}

	.me_flex-boxes .me-lt-col {
		padding: 50px 50px 0;
	}
}

@media (max-width:1200px) {
	.client_logoSlider {
		padding-bottom: 0px;
	}
    section.rt_faq-sec.be_faq-sec-col {
        padding-top: 0;
    }
	.client_logoSlider ul.slick-dots {
		bottom: 0;
	}

	.client_logoSlider ul.slick-dots li button {
		width: 10px;
		height: 10px;
		padding: 0;
		border-radius: 50%;
	}

	.client_logoSlider ul.slick-dots li {
		width: 10px;
		height: 10px;
		background: rgb(255 255 255 / 20%);
		border-radius: 50%;
	}

	.client_logoSlider ul.slick-dots li button:before {
		content: unset;
	}

	.client_logoSlider ul.slick-dots li.slick-active {
		background: #fff;
	}

	.cs_wrapper-outer .cs_lt-col {
		width: calc(55% - 15px);
	}

	.cs_wrapper-outer .cs_rt-col {
		width: calc(45% - 15px);
		padding: 0px;
	}

	.cs_wrapper-outer {
		gap: 30px;
	}

	.cs_lt-col h1 {
		font-size: 54px;
		line-height: 60px;
		margin: 0 0 20px;
	}

	.cs_lt-col>p {
		font-size: 20px;
		line-height: 28px;
	}

	.find_educator-btns a {
		font-size: 18px;
		padding: 0px 20px;
		min-width: 200px;
		height: 54px;
	}

	.trsuted-by {
		gap: 20px;
		margin: 0 0 30px;
	}

	.bnnr_ranae-img img,
	.total-earning img {
		width: 140px;
	}

	.bannr_notification-outer img,
	.payment-received img {
		width: 250px;
	}

	.new-shirt-alert img {
		width: 170px;
	}

	.new-shirt-alert {
		top: 80px;
		left: 40px;
	}

	.bannr_notification-outer {
		width: 300px;
	}

	.casual-staffing-sec {
		padding: 150px 0 70px;
	}

	.as_featured-sec {
		padding: 20px 0 80px;
	}

	.af_bg-div {
		padding: 30px 15px;
	}

	.client_logoSlider .slick-track {
		display: flex !important;
		align-items: center;
	}

	.client_logo-slide {
		height: inherit;
	}

	.client_logo-slide {
		text-align: center;
		margin: 0 10px;
	}

	.client_logoSlider .slick-list {
		margin: 0 -10px;
	}

	.pyf_section::before {
		top: -30px;
	}

	.pyf_section {
		padding: 20px 0 70px;
	}

	.pyf_boxes-div {
		margin: 30px 0 0;
		gap: 20px;
	}

	.pyf_boxes-div .pyf_box {
		width: calc(33.33% - 13.33px);
	}

	.hire_an-educatorBtn {
		margin: 50px 0 0;
	}

	.pyf_box-title h6 {
		font-size: 20px;
		line-height: 26px;
	}

	.pyf_boxes-div .pyf_box p {
		font-size: 18px;
		line-height: 26px;
	}

	.hire_an-educatorBtn a,
	.hire_an-educatorBtn input,
	.hire_an-educatorBtn button {
		font-size: 18px;
		padding: 0px 30px;
		height: 54px;
	}

	.own-boss-inner {
		padding: 50px 30px 80px;
		gap: 30px;
		border-radius: 30px;
	}

	.own-boss-inner .own_lt-col {
		width: calc(50% - 15px);
	}

	.own-boss-inner .own_rt-col {
		width: calc(50% - 15px);
		padding-right: 0;
	}

	.own-boss-inner .own_lt-col h2,
	.testi_title-col h2 {
		font-size: 44px;
		line-height: 50px;
	}

	.own-boss-inner .own_lt-col>p,
	.testi_title-col>p {
		font-size: 22px;
		line-height: 30px;
		margin: 15px 0 20px;
	}

	.main-divOverPlay .content-OverPlay p {
		font-size: 20px;
		line-height: 28px;
	}

	.own-boss-inner .own_lt-col ul.ob_listing li {
		list-style: none;
		font-size: 20px;
		line-height: 26px;
	}

	.own-boss-inner .own_lt-col ul.ob_listing {
		gap: 15px;
		max-width: 100%;
	}

	.find_work-btn {
		margin: 30px 0 0;
	}

	.find_work-btn a {
		font-size: 18px;
		line-height: 100%;
		padding: 0px 40px;
		height: 54px;
	}

	.rt_tm-outer {
		padding-left: 0;
		gap: 50px;
		flex-direction: column;
	}

	.testi_title-col {
		width: 100%;
		text-align: center;
	}

	.tm_rt-col {
		width: 100%;
		padding: 0 30px;
	}

	.testi_title-col .hire_an-educatorBtn {
		justify-content: center;
	}

	.rt_testimonials-sec {
		background: #fff;
		padding: 70px 0;
		position: relative;
	}

	.main-divOverPlay {
		gap: 50px;
	}

	.main-divOverPlay .content-OverPlay {
		width: calc(50% - 25px);
		gap: 20px;
	}

	.img-divOverPlay {
		width: calc(50% - 25px);
	}

	.img-rightOverplay img {
		width: 450px;
	}

	.hire_an-educatorBtn.overPlay-btn a {
		padding: 0 40px;
	}

	.img-overPlaySecond img {
		width: 140px;
	}

	section.overplay-section {
		padding: 0px 0 70px;
		position: relative;
	}

	.img-rightOverplay {
		top: 0;
	}

	.rt_difference-sec {
		padding: 70px 0;
	}

	.rt_inner-form {
		margin: 50px auto 0;
	}

	.rt_form-body {
		margin: 30px 0 0;
	}

	.rt_form-list .rt_lt-data {
		padding: 30px;
	}

	.rt_form-list .rt_right-data img {
		width: 35px;
	}

	.rt_form-list .rt_lt-data .list-icon {
		width: 50px;
	}

	.rt_form-list .rt_lt-data .list-icon-ct {
		width: calc(100% - 65px);
	}

	.rt_form-head .rt_center-data img {
		width: 170px;
	}

	.rt_right-data h6 {
		font-size: 22px;
		line-height: 28px;
	}

	.rt_faq-sec {
		padding: 70px 0;
	}

	.rt_faq-outer {
		padding: 50px 30px;
		border-radius: 30px;
	}

	div#verticalTab {
		gap: 20px;
		margin: 40px 0 0 !important;
	}

	.rt_faq-outer ul.resp-tabs-list,
	.resp-vtabs .resp-tabs-container {
		width: calc(50% - 10px);
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content h3 {
		font-size: 24px;
		line-height: 30px;
	}

	/* .resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content.resp-tab-content-active { gap: 10px; } */
	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content p {
		margin: 10px 0 0;
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content p {
		font-size: 18px;
		line-height: 26px;
	}

	.rt_faq-outer ul.resp-tabs-list li.resp-tab-item {
		padding: 20px 90px 20px 20px !important;
		font-size: 20px;
		line-height: 26px;
	}

	.rt_faq-outer ul.resp-tabs-list li.resp-tab-item span.radio_icon {
		height: 36px;
		width: 36px;
		right: 15px;
	}

	.rt_faq-outer ul.resp-tabs-list li.resp-tab-item.resp-tab-active span.radio_icon::after {
		width: 20px;
		height: 20px;
	}

	.Get-divFooter h2 {
		font-size: 24px;
		line-height: 34px;
	}

	.logo-contFooter {
		gap: 20px;
	}

	.all-listDivFoot {
		gap: 20px;
	}

	.Get-divFooter ul {
		flex-direction: column;
	}

	.top-footerDiv {
		gap: 20px;
	}

	.logo-footer a img {
		width: 180px;
	}

	.andorid-appleDiv img {
		width: 130px;
	}

	.bottom-footerDiv {
		padding-top: 15px;
		margin-top: 30px;
		border-top: 0.2px solid #4a4a4a;
	}

	footer.rt_footer {
		background: #2E2E2E;
		padding: 50px 0 15px 0;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css =============~~~~~~~~~~~~~~ */
	.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col .ryt-img-col {
		margin-bottom: -46px;
	}

	.dwnld-app-block p.dwnld-app {
		font-size: 22px;
		line-height: 30px;
	}

	.dwnld-app-block p.dwnld-app span.dwn-icon {
		width: 25px;
		height: 25px;
	}

	.dwnld-app-block p.dwnld-app span.dwn-icon svg {
		width: 10px;
		height: 11px;
	}

	section.raw-talent_section {
		padding-top: 0;
	}

	.own-boss-inner.raw-talent-inner-block:before {
		background-size: contain;
	}

	.own-boss-inner.raw-talent-inner-block {
		padding: 30px;
	}

	.raw-talent-inner-block .play_store-div img {
		max-width: 110px;
	}

	.raw-talent_section .stats-section {
		padding: 70px 0;
		gap: 30px;
	}

	.raw-talent_section .stats-section .stat-box {
		width: calc(25% - 90px/4);
	}

	.raw-talent_section .stat-box p {
		line-height: 30px;
		font-size: 20px;
	}

	.choose-right-block-inner {
		gap: 20px;
	}

	.choose-right-block-inner .left-content-col {
		gap: 20px;
		width: 350px;
	}

	.choose-right-block-inner .right-list-grid-col {
		width: calc(100% - 370px);
		gap: 20px;
	}

	.choose-right-block-inner .left-content-col p {
		font-size: 20px;
	}

	section.choose-right-block-main {
		padding: 70px 0;
	}

	.img-content-col .tag-col p span {
		font-size: 12px;
		line-height: 15px;
	}

	.img-content-col .col-name h4 {
		font-size: 18px;
		line-height: 20px;
	}

	.list-grid-block .grid-col-inner .img-col-main img {
		height: 220px;
	}

	.pyf_section.how-it-work-block,
	.game-changing-section-block,
	.your-own-boss.stop-spending-money,
	.rt_testimonials-sec.gt-testi-col-block,
	.rt_faq-sec.be_faq-sec-col {
		padding: 70px 0;
	}

	.featured-grids-col .feature-grid-list {
		padding: 30px 20px;
		border-radius: 20px;
		width: calc(33.33% - 50px / 3);
	}

	.featured-grids-col {
		gap: 25px;
		margin-top: 40px;
	}

	.game-changing-sectio-inner .top-heading {
		gap: 15px;
	}

	.feature-grid-list .feature-grid-list-inner {
		gap: 20px;
	}

	.feature-grid-list .feature-grid-list-inner .icon svg {
		width: 70px;
		height: 70px;
	}

	.feature-grid-list-inner .icon-content {
		gap: 15px;
	}

	.feature-grid-list-inner .icon-content h4 {
		font-size: 22px;
	}

	.feature-grid-list-inner .icon-content p {
		font-size: 20px;
	}

	.your-own-boss.stop-spending-money .own-boss-inner {
		padding: 40px;
		gap: 40px;
	}

	.your-own-boss.stop-spending-money .own_lt-col,
	.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col {
		width: calc(50% - 20px);
	}

	.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col .bottom-content p {
		font-size: 22px;
		line-height: 30px;
	}

	.best-price-batch img {
		max-width: 270px;
	}

	.overpayying-gg-sec .img-rightOverplay img {
		width: 240px;
	}

	.testi_title-col>p {
		margin: 15px auto 20px;
	}

	.join-raw-talentnow-block-inner .ryt-col-talent img {
		min-width: 540px;
	}

	.join-raw-talentnow-block-inner .lft-col-talent h2 {
		font-size: 42px;
	}

	.join-raw-talent-now-block {
		padding: 70px 0;
	}

	.join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block {
		margin: 30px 0 20px;
		border-radius: 20px;
		gap: 6px;
	}

	.booking-filled-block h3 {
		font-size: 40px;
	}

	.booking-filled-block p {
		font-size: 26px;
	}

	.lft-col-talent p.join-future-text {
		font-size: 22px;
	}

	.join-raw-talentnow-block-inner {
		gap: 50px;
	}

	.join-raw-talentnow-block-inner .lft-col-talent {
		width: calc(45% - 25px);
	}

	.join-raw-talentnow-block-inner .ryt-col-talent {
		width: calc(55% - 25px);
	}

	.game-changing-sectio-inner .top-heading p {
		font-size: 20px;
	}

	.pyf-outer-div>h2.text-center,
	.rt_faq-outer>h2.text-center,
	.rtd_table-outer>h2.text-center,
	.main-divOverPlay .content-OverPlay h2,
	.as-featured-trusted-sec .top-heading h3,
	.choose-right-block-inner .left-content-col h3,
	.game-changing-sectio-inner h2,
	.price-match-guarantee-sec .own-boss-inner .own_lt-col h2,
	.your-own-boss.stop-spending-money h2 {
		font-size: 40px;
		line-height: 48px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css-end =============~~~~~~~~~~~~~~ */
	.banner-tag-fd p {
		padding: 10px;
		font-size: 12px;
	}

	.banner-tag-fd {
		right: -2%;
	}

	.join-raw-new-col .lft-col-talent p.join-future-text {
		margin-top: 25px;
	}

	.instant-booking span.icon img {
		min-width: auto;
		width: 20px;
	}

	.instant-booking span.text {
		font-size: 16px;
	}

	.instant-booking {
		left: -70px;
	}

	.staffing-sol-banner .ryt-img-col img {
		right: 0;
	}

	.instant-booking span.text {
		font-size: 14px;
	}

	.casual_pool-sec .cs_lt-col h1 br {
		display: none;
	}

	.works-manage-p {
		padding: 70px 0;
	}

	.works-manage-p .pyf_boxes-div {
		gap: 20px;
		margin: 30px 0 0;
	}

	.made_easy-worksP {
		padding: 90px 0 0;
	}

	.me_flex-boxes {
		margin: 30px 0 0;
	}

	.list_me-flex p {
		font-size: 20px;
		line-height: 28px;
		width: calc(100% - 85px);
	}

	.list_me-flex {
		gap: 15px;
	}

	.me_title-main h2 {
		font-size: 40px;
		line-height: 48px;
	}

	.rt_faq-sec.cp_faq-educator ul.resp-tabs-list {
		width: calc(50% - 10px);
	}

	.rt_faq-sec.cp_faq-educator .resp-tabs-container {
		width: calc(50% - 10px);
		border-radius: 10px;
	}

	.rt_faq-sec.cp_faq-educator,
	.rt_faq-sec.faq_for-centres {
		padding: 70px 0;
	}

	.rt_faq-sec.cp_faq-educator div#verticalTab,
	.rt_faq-sec.cp_faq-educator div#verticalTab1 {
		margin: 40px 0 0 !important;
	}

	.ready_to-help img {
		position: absolute;
		bottom: 0;
		right: 10px;
		width: 250px;
	}

	.ready_to-help {
		padding: 30px 30px 0 30px;
		min-height: 280px;
	}

	.get_touch-p-sec .cs_lt-col p {
		font-size: 20px;
		line-height: 28px;
	}

	.get_touch-p-sec ul.info_list-pa {
		margin: 25px 0 40px;
	}

	.get_touch-p-sec .form-overplay form {
		padding: 40px 30px !important;
		border-radius: 30px;
	}

	.casual-staffing-sec.get_touch-p-sec {
		background: #fff;
		padding: 150px 0 70px;
	}
    section.game-changing-section-block.game-changing-section-block-fd ~ section.rt_faq-sec.be_faq-sec-col {
        padding-top: 70px;
    }
    .overplay-section.overpayying-gg-sec ~ section.rt_testimonials-sec {
        padding: 0 0 70px 0;
    }
    .overplay-section.overpayying-gg-sec {
        padding: 0 0 70px;
    }
    section.pyf_section.works-manage-p.faq-bg-clr {
        padding: 0 0 70px 0;
        margin-top: 60px;
    }
}

@media (max-width:1005px) {
	.staffing-sol-banner .ryt-img-col img {
		right: 0;
		bottom: -14px;
	}

	.instant-booking {
		top: 33%;
	}
}

@media (max-width:991px) {
	.main-divOverPlay .content-OverPlay label {
		text-align: left;
	}

	.cs_lt-col h1 br {
		display: none;
	}

	.cs_wrapper-outer {
		flex-direction: column;
	}

	.cs_wrapper-outer .cs_lt-col {
		width: 100%;
		text-align: center;
	}

	.find_educator-btns {
		justify-content: center;
	}

	.trsuted-by,
	.play_store-div {
		justify-content: center;
	}

	.trusted_flex-div>p {
		text-align: left;
	}

	.trsuted-by {
		max-width: 600px;
		justify-content: space-around;
		margin: 0 auto 30px;
	}

	.cs_wrapper-outer .cs_rt-col {
		width: 100%;
		max-width: 600px;
	}

	.casual-staffing-sec {
		padding: 70px 0 40px;
	}

	.hire_an-educatorBtn {
		margin: 30px 0 0;
	}

	.own-boss-inner {
		flex-direction: column;
	}

	.own-boss-inner .own_lt-col {
		width: 100%;
	}

	.own-boss-inner .own_rt-col {
		width: 100%;
		padding-right: 0;
		max-width: 600px;
	}

	.own-boss-inner .own_lt-col {
		width: 100%;
	}

	.find_work-btn {
		margin: 30px 0 0;
	}

	.own-boss-inner .own_lt-col ul.ob_listing li img {
		width: 24px;
		margin: 5px 0 0;
	}

	.own-boss-inner .own_lt-col h2,
	.testi_title-col h2 {
		font-size: 40px;
		line-height: 48px;
	}

	.client-review-main {
		border: 2px solid #4B71F8;
		border-radius: 10px;
		padding: 20px;
	}

	.tm_rt-col .tm_inner-scrollDiv {
		gap: 20px;
		height: 600px;
	}

	.tm_rt-col {
		height: 600px;
	}

	.tm_top-marquee,
	.tm_btm-marquee {
		width: calc(50% - 10px);
		gap: 20px;
	}

	.tm_testi-flex-outer {
		gap: 20px;
	}

	.client-review-main>img {
		width: 120px;
		height: 50px;
	}

	.cs_start-rating img {
		width: 20px;
	}

	.cs_start-rating {
		margin: 10px 0;
	}

	.client-review-main>p {
		font-size: 16px;
		line-height: 22px;
	}

	.review_author .auth_name-desti h5 {
		font-size: 16px;
		line-height: 18px;
	}

	.testi_title-col>p {
		font-size: 20px;
		line-height: 28px;
	}

	.main-divOverPlay {
		gap: 50px;
		flex-direction: column;
	}

	.img-divOverPlay {
		width: 100%;
		max-width: 600px;
	}

	.main-divOverPlay .content-OverPlay {
		width: 100%;
		gap: 15px;
		text-align: center;
	}

	.main-divOverPlay .content-OverPlay h2 br {
		display: none;
	}

	.form-overplay input {
		max-width: 100%;
		margin: 0 auto;
		width: 100%;
	}

	.form-overplay {
		-webkit-justify-content: center;
		justify-content: center;
	}

	.hire_an-educatorBtn.overPlay-btn {
		justify-content: center;
	}

	.rt_form-head .rt_center-data img {
		width: 150px;
	}

	.rt_right-data h6 {
		font-size: 20px;
		line-height: 26px;
	}

	.rt_form-list .rt_lt-data .list-icon-ct h5 {
		font-size: 20px;
		line-height: 26px;
	}

	.rt_form-list .rt_lt-data .list-icon-ct p {
		font-size: 18px;
		line-height: 22px;
	}

	.rt_form-list .rt_lt-data {
		padding: 20px;
		gap: 10px;
	}

	.rt_form-list .rt_lt-data .list-icon {
		width: 40px;
	}

	.rt_form-list .rt_lt-data .list-icon-ct {
		width: calc(100% - 50px);
	}

	.rt_form-list .rt_center-data img {
		width: 40px;
	}

	.rt_form-list .rt_right-data img {
		width: 30px;
	}

	.find_educator-btns.download-app {
		margin: 30px 0 0;
	}

	.rt_faq-outer ul.resp-tabs-list,
	.resp-vtabs .resp-tabs-container {
		width: 100%;
	}

	h2.resp-accordion {
		background-color: #4B71F8;
		border: none;
		border-radius: 20px;
		cursor: pointer;
		padding: 20px 60px 20px 20px !important;
		font-size: 20px;
		line-height: 26px;
		transition: all .3s ease-in-out;
		color: #fff;
		font-weight: 600;
		position: relative;
		margin: 0 0 10px 0;
	}

	span.resp-arrow {
		display: none;
	}

	h2.resp-accordion span.radio_icon {
		background-color: #fff;
		border-radius: 50%;
		height: 36px;
		width: 36px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}

	h2.resp-accordion.resp-tab-active span.radio_icon::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		width: 20px;
		height: 20px;
		background: #4b71f8;
		transform: translateY(-50%);
		border-radius: 50%;
		margin: 0 auto;
	}

	.resp-vtabs .resp-tabs-container {
		background: transparent;
		border: none;
		border-radius: 0;
	}

	div#verticalTab {
		gap: 20px;
		margin: 25px 0 0 !important;
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content {
		height: auto;
		padding: 20px;
		border: none;
		background: #fff;
		margin: 0 0 10px;
		border-radius: 0 0 20px 20px;
	}

	h2.resp-accordion.resp-tab-active {
		border-radius: 20px 20px 0 0;
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content h3 {
		font-size: 20px;
		line-height: 26px;
	}

	.logo-contFooter {
		width: 100%;
		align-items: center;
	}

	.all-listDivFoot {
		gap: 20px;
		width: calc(65% - 15px);
	}

	.Get-divFooter {
		width: calc(35% - 15px);
	}

	.top-footerDiv {
		gap: 30px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css =============~~~~~~~~~~~~~~ */
	.casual-staffing-sec.book-casual-block-sec {
		padding: 70px 0 40px;
	}

	.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer {
		gap: 30px;
	}

	.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_lt-col,
	.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col {
		width: 100%;
	}

	.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col .ryt-img-col {
		margin-bottom: -50px;
	}

	.as-featured-trusted-sec .top-heading {
		margin: 0px 0 30px;
	}

	.own-boss-inner.raw-talent-inner-block {
		padding: 50px 30px;
	}

	.own-boss-inner.raw-talent-inner-block .own_rt-col {
		width: 100%;
	}

	.raw-talent-inner-block .play_store-div img {
		max-width: 140px;
	}

	.own-boss-inner.raw-talent-inner-block .own_lt-col {
		width: 100%;
		padding-left: 0;
	}

	.raw-talent_section .stats-section {
		padding: 50px 0;
		gap: 20px;
	}

	.raw-talent_section .stats-section .stat-box {
		width: calc(25% - 60px/4);
	}

	.raw-talent_section .stat-box .value {
		font-size: 34px;
	}

	.raw-talent_section .stat-box p {
		line-height: 22px;
		font-size: 18px;
	}

	.choose-right-block-inner {
		gap: 80px;
	}

	.choose-right-block-inner .left-content-col {
		width: 100%;
	}

	.choose-right-block-inner .right-list-grid-col {
		width: 100%;
	}

	.list-grid-block .grid-col-inner .img-col-main img {
		height: 300px;
	}

	.featured-grids-col {
		gap: 15px;
		margin-top: 30px;
	}

	.featured-grids-col .feature-grid-list {
		padding: 20px 15px;
		width: calc(33.33% - 30px / 3);
	}

	.feature-grid-list-inner .icon-content p {
		font-size: 18px;
	}

	.feature-grid-list-inner .icon-content h4 {
		font-size: 20px;
	}

	.choose-right-block-inner .left-content-col p:nth-of-type(1) {
		max-width: 100%;
	}

	.overplay-section.overpayying-gg-sec {
		padding: 0 0 70px;
	}

	.rt_testimonials-sec.gt-testi-col-block .testi_title-col p {
		max-width: 100%;
	}

	.join-raw-talentnow-block-inner .ryt-col-talent img {
		min-width: 500px;
	}

	.join-raw-talentnow-block-inner .lft-col-talent h2 {
		font-size: 36px;
	}

	.your-own-boss.stop-spending-money .own_lt-col,
	.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col {
		width: 100%;
	}

	.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col {
		border-left: none;
		gap: 20px;
		max-width: 100%;
	}

	.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col .bottom-content p {
		font-size: 20px;
		line-height: 26px;
		max-width: 100%;
	}

	.as_featured-sec.as-featured-trusted-sec {
		padding: 50px 0 90px;
	}

	.pyf-outer-div>h2.text-center,
	.rt_faq-outer>h2.text-center,
	.rtd_table-outer>h2.text-center,
	.main-divOverPlay .content-OverPlay h2,
	.choose-right-block-inner .left-content-col h3,
	.game-changing-sectio-inner h2,
	.price-match-guarantee-sec .own-boss-inner .own_lt-col h2,
	.your-own-boss.stop-spending-money h2,
	.me_title-main h2 {
		font-size: 36px;
		line-height: 44px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css-end =============~~~~~~~~~~~~~~ */
	.find-banner-block.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_lt-col,
	.find-banner-block.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col {
		width: 100% !important;
	}

	.stats-section.status-three-col .stat-box {
		width: max-content !important;
	}

	.pyf_section.how-it-work-block.find-block-it-work .pyf_box .img_box {
		padding: 20px 20px 0;
	}

	.children-eductor-sec .own-boss-inner.raw-talent-inner-block {
		padding: 50px 30px;
	}

	.staffing-sol-banner .ryt-img-col img {
		bottom: 0;
	}

	.price-match-guarantee-sec.your-own-boss.stop-spending-money .own-boss-inner .own_lt-col,
	.price-match-guarantee-sec.your-own-boss.stop-spending-money .own-boss-inner .own_rt-col {
		width: 100%;
	}

	.staffing-sol-banner .ryt-img-col {
		display: flex;
		justify-content: center;
	}

	.instant-booking {
		left: -50px;
	}

	.casual_pool-sec {
		padding: 70px 0;
	}

	.casual_pool-sec .cs_wrapper-outer .cs_lt-col,
	.casual_pool-sec .cs_wrapper-outer .cs_rt-col {
		width: 100%;
	}

	.works-manage-p .pyf_boxes-div .pyf_box {
		width: calc(50% - 10px);
	}

	.me_flex-boxes .me-lt-col {
		padding: 30px 20px 0;
	}

	.me_flex-boxes .me-rt-col {
		padding: 30px 20px;
		gap: 30px;
	}

	.list_me-flex>img {
		width: 50px;
	}

	.list_me-flex p {
		font-size: 18px;
		line-height: 26px;
		width: calc(100% - 65px);
	}

	.made_easy-worksP {
		padding: 70px 0 0;
	}

	.rt_faq-sec.cp_faq-educator .resp-tabs-container {
		width: 100%;
		border-radius: 10px;
	}

	.rt_faq-sec.cp_faq-educator div#verticalTab1 h2.resp-accordion {
		background: #2B54E6;
	}

	.rt_faq-sec.cp_faq-educator div#verticalTab,
	.rt_faq-sec.cp_faq-educator div#verticalTab1 {
		margin: 25px 0 0 !important;
	}

	.rt_faq-sec.cp_faq-educator .resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content.resp-tab-content-active {
		padding: 20px;
	}

	.casual-staffing-sec.get_touch-p-sec {
		background: #fff;
		padding: 70px 0 50px;
	}

	.get_touch-p-sec .cs_wrapper-outer .cs_lt-col,
	.get_touch-p-sec .cs_wrapper-outer .cs_rt-col {
		width: 100%;
	}

	.get_touch-p-sec ul.info_list-pa {
		margin: 25px 0 50px;
		justify-content: center;
	}

	.get_touch-p-sec .cs_wrapper-outer .cs_rt-col {
		max-width: 100%;
	}

	.ready_to-help h2 {
		text-align: left;
		font-size: 30px;
		line-height: 36px;
	}

	.ready_to-help {
		padding: 30px 30px 0 30px;
		min-height: 280px;
		max-width: 450px;
		margin: 0 auto;
	}
}

@media (max-width:767px) {
	.pyf_boxes-div .pyf_box:nth-child(1) .img_box img {
		transform: none;
	}

	.cs_lt-col h1 {
		font-size: 44px;
		line-height: 48px;
		margin: 0 auto 15px;
        max-width: 350px;
	}

	.find_educator-btns a img {
		width: 18px;
		margin: 2px 0 0;
	}

	.find_educator-btns a {
		font-size: 16px;
		padding: 0px 20px;
		min-width: auto;
		height: 50px;
		line-height: 100%;
		gap: 5px;
	}

	.find_educator-btns {
		gap: 10px;
	}

	.cs_wrapper-outer .cs_rt-col {
		width: 100%;
		max-width: 100%;
	}

	.bnnr_ranae-img {
		left: 15px;
	}

	.trsuted-by {
		flex-wrap: wrap;
	}

	.bannr_notification-outer {
		bottom: 20px;
	}

	.af_bg-div {
		border-radius: 15px;
	}

	.as_featured-sec {
		padding: 0px 0 70px;
	}

	.pyf_boxes-div .pyf_box {
		width: calc(50% - 7.5px);
	}

	.pyf_section::before {
		height: 300px;
	}

	.pyf_boxes-div .pyf_box .img_box {
		margin: 0 0 30px;
		padding: 20px;
	}

	.pyf_boxes-div .pyf_box>img {
		margin: 0px 0 20px;
		border-radius: 15px;
	}

	.pyf_box-title h6 {
		font-size: 18px;
		line-height: 22px;
	}

	.pyf_boxes-div .pyf_box p {
		font-size: 16px;
		line-height: 22px;
	}

	.pyf_boxes-div {
		gap: 30px 15px;
		justify-content: center;
	}

	.hire_an-educatorBtn a,
	.hire_an-educatorBtn input,
	.hire_an-educatorBtn button {
		font-size: 16px;
		padding: 0px 30px;
		height: 50px;
	}

	.own-boss-inner .own_rt-col {
		width: 100%;
		padding-right: 0;
		max-width: 100%;
	}

	.find_work-btn a {
		font-size: 16px;
		line-height: 100%;
		padding: 0px 30px;
		height: 50px;
	}

	.own-boss-inner {
		padding: 30px 20px 60px;
		gap: 30px;
		border-radius: 15px;
	}

	.total-earning {
		bottom: -15px;
		left: -15px;
	}

	.new-shirt-alert {
		top: 80px;
		left: 70px;
	}

	.own-boss-inner .own_lt-col h2,
	.testi_title-col h2 {
		font-size: 36px;
		line-height: 40px;
	}

	.tm_rt-col {
		width: 100%;
		padding: 0 15px;
		border-radius: 15px;
	}

	.tm_rt-col .tm_inner-scrollDiv {
		gap: 10px;
	}

	.tm_top-marquee,
	.tm_btm-marquee {
		width: calc(50% - 5px);
		gap: 10px;
	}

	.tm_testi-flex-outer {
		gap: 10px;
	}

	.img-divOverPlay {
		width: 100%;
		max-width: 100%;
	}

	.shift-imgDiv {
		right: 0;
	}

	.rt_inner-form {
		overflow-x: scroll;
		padding-bottom: 10px;
		margin: 30px auto 0;
	}

	.rt_inner-form .rt_form-head {
		flex-wrap: nowrap;
	}

	.rt_form-head .rt_lt-data,
	.rt_form-list .rt_lt-data {
		min-width: 100%;
        width: 100%;
	}
    .rt_form-list .rt_center-data {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .rt_form-list .rt_center-data:before {
        content: '';
        background-image: url(../images/Rta-logo-table.png);
        background-size: 100%;
        background-repeat: no-repeat;
        width: 120px;
        height: 44px;
    }
    .rt_form-list .rt_right-data{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .rt_form-list .rt_right-data:before {
        content: 'Other Agencies';
        font-size: 20px;
        color: #2C3B45;
        line-height: 26px;
        font-weight: 600;
    }
    .rt_form-list .rt_lt-data .list-icon {
        display: none;
    }
    .rt_form-list .rt_lt-data .list-icon-ct {
        width: 100%;
        text-align: center;
    }
    .rt_form-list .rt_center-data img {
        width: 30px;
    }
    .rt_form-list .rt_right-data img {
        width: 22px;
    }

	.rt_form-head .rt_center-data,
	.rt_form-head .rt_right-data,
	.rt_form-list .rt_center-data,
	.rt_form-list .rt_right-data {
		min-width: 100%;
	}

	.rt_form-body {
		min-width: 100%;
	}

	.rt_inner-form .rt_form-body .rt_form-list {
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        background: #F6F6F6;
        border-radius: 10px;
    }

	.rt_form-body {
        margin: 0;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

	.find_educator-btns.download-app {
		margin: 20px 0 0;
	}

	.rt_faq-outer {
		padding: 40px 20px 30px;
		border-radius: 15px;
	}

	.logo-footer a img {
		width: 160px;
	}

	footer .copy-listDiv {
		justify-content: center;
		gap: 10px;
		row-gap: 10px;
		flex-direction: column;
		align-items: center;
	}

	footer ul.copyright-div {
		gap: 10px;
		;
	}

	footer.rt_footer {
		padding: 50px 0 20px 0;
	}

	ul.social-divFooter {
		gap: 15px;
	}

	footer .p-copydiv {
		gap: 10px;
	}

	.Get-divFooter ul {
		flex-direction: row;
		justify-content: center;
	}

	.Get-divFooter {
		width: 100%;
		align-items: center;
	}

	.top-footerDiv {
		gap: 30px;
	}

	.logo-contFooter {
		width: 100%;
	}

	.logo-contFooter {
		align-items: center;
	}

	.all-listDivFoot {
		justify-content: space-around;
		width: 100%;
	}

	.Get-divFooter ul li a span br {
		display: none;
	}

	.form-overplay form {
		padding: 20px;
	}

	.raw-talent_section .stat-box p {
		line-height: 20px;
		font-size: 16px;
	}

	.raw-talent_section .stat-box .value {
		font-size: 26px;
	}

	.raw-talent_section .stats-section .stat-box {
		width: calc(25% - 30px/4);
	}

	.raw-talent_section .stats-section {
		gap: 10px;
	}

	.choose-right-block-inner .right-list-grid-col {
		flex-wrap: wrap;
		row-gap: 70px;
        justify-content: center;
	}

	.right-list-grid-col .list-grid-block {
		width: calc(50% - 20px/2);
	}

	.featured-grids-col .feature-grid-list {
		padding: 20px 15px;
		width: calc(50% - 15px / 2);
	}

	/* .join-raw-talentnow-block-inner {
		gap: 30px;
		flex-direction: column-reverse;
	}

	.join-raw-talentnow-block-inner .ryt-col-talent {
		width: 100%;
	}

	.join-raw-talentnow-block-inner .lft-col-talent {
		width: 100%;
		text-align: center;
	}

	.join-raw-talentnow-block-inner .ryt-col-talent img {
		min-width: 100%;
		position: relative;
		right: -45px;
	} */

	.casual-staffing-sec.book-casual-block-sec .cs_wrapper-outer .cs_rt-col .ryt-img-col {
		margin-bottom: -50px;
		text-align: center;
	}

	.feature-grid-list-inner .icon-content p {
		font-size: 16px;
		line-height: 22px;
	}

	.feature-grid-list-inner .icon-content h4 {
		font-size: 18px;
		line-height: 22px;
	}

	.feature-grid-list .feature-grid-list-inner .icon svg {
		width: 60px;
		height: 60px;
	}

	.feature-grid-list .feature-grid-list-inner {
		gap: 10px;
	}

	.join-raw-talent-now-block {
		padding: 50px 0;
	}

	.cs_lt-col>p br,
	.cs_lt-col h1 br {
		display: none;
	}

	.best-price-batch img {
		max-width: 180px;
	}

	.pyf-outer-div>h2.text-center,
	.rt_faq-outer>h2.text-center,
	.rtd_table-outer>h2.text-center,
	.main-divOverPlay .content-OverPlay h2,
	.as-featured-trusted-sec .top-heading h3,
	.choose-right-block-inner .left-content-col h3,
	.game-changing-sectio-inner h2,
	.price-match-guarantee-sec .own-boss-inner .own_lt-col h2,
	.your-own-boss.stop-spending-money h2,
	.me_title-main h2 {
		font-size: 32px;
		line-height: 40px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css-end =============~~~~~~~~~~~~~~ */
	.join-raw-new-col .lft-col-talent p.join-future-text {
		margin-top: 20px;
	}

	.stats-section.status-three-col {
		justify-content: space-between !important;
	}

	.banner-tag-fd {
		right: 0;
	}

	.banner-tag-fd p {
		font-size: 14px;
	}

	.staffing-sol-banner .ryt-img-col img {
		right: -20px;
	}

	.instant-booking {
		left: 0px;
	}

	.casual_pool-sec .cs_wrapper-outer .cs_rt-col .ryt-img-col {
		text-align: center;
	}

	.casual_pool-sec {
		padding: 50px 0;
	}

	.works-manage-p .pyf_boxes-div .pyf_box .img_box {
		border-radius: 15px;
		aspect-ratio: unset;
		padding: 30px 30px 0;
		justify-content: center;
		margin: 0 0 20px;
		display: flex;
	}

	.me_flex-boxes .me-lt-col,
	.me_flex-boxes .me-rt-col {
		width: 100%;
	}

	.me_flex-boxes {
		flex-direction: column-reverse;
		border-radius: 20px 20px 0 0;
	}

	.me_flex-boxes .me-lt-col {
		padding: 30px 15px 0;
		justify-content: center;
	}

	.me_flex-boxes .me-lt-col img {
		width: 350px;
	}

	.me_flex-boxes .me-rt-col {
		padding: 30px 20px;
		gap: 30px 20px;
		flex-direction: unset;
		flex-wrap: wrap;
	}

	.list_me-flex {
		gap: 10px;
		width: calc(50% - 10px);
	}

	.list_me-flex p {
		font-size: 16px;
		line-height: 22px;
		width: calc(100% - 50px);
		word-wrap: break-word;
	}

	.list_me-flex>img {
		width: 40px;
	}

	.get_touch-p-sec .form-overplay form {
		padding: 20px 20px !important;
		border-radius: 10px;
	}

	.get_touch-p-sec .form-overplay .form_row input {
		font-size: 14px;
		padding: 15px;
		height: 48px;
	}

	.get_touch-p-sec .form-overplay .form_row.form_textarea textarea {
		padding: 15px;
		height: 120px;
		font-size: 14px;
	}

	.get_touch-p-sec .form-overplay .form_row.submit_next {
		margin: 10px 0 0;
	}

	.get_touch-p-sec .cs_lt-col p {
		font-size: 18px;
		line-height: 28px;
	}

	.ready_to-help {
		border-radius: 10px;
		padding: 20px 20px 0 20px;
	}
    .casual-staffing-sec {
        padding: 40px 0 40px;
    }
    .cs_wrapper-outer {
        gap: 40px;
    }
    .pyf_section {
        padding: 20px 0 50px;
    }
    .rt_testimonials-sec, .rt_difference-sec, .rt_faq-sec {
        padding: 50px 0;
    }
    .main-divOverPlay .content-OverPlay h2 span.bg-clBlue {
        font-size: 38px;
    }
    section.overplay-section {
        padding: 0px 0 50px;
    }
    section.casual-staffing-sec.book-casual-block-sec h1 {
        max-width: 450px;
    }
    .own-boss-inner.raw-talent-inner-block.switch-width {
        gap: 40px;
    }
    section.choose-right-block-main, .pyf_section.how-it-work-block, .game-changing-section-block, .your-own-boss.stop-spending-money, .rt_testimonials-sec.gt-testi-col-block, .rt_faq-sec.be_faq-sec-col {
        padding: 50px 0;
    }
    .cirle-mobile-img {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    .ctm-app-ply-wrp .play_store-div {
        display: none;
    }
    .ctm-app-ply-wrp .cirle-mobile-div img {
        min-width: 100%!important;
    }
    .overplay-section.overpayying-gg-sec {
        padding: 0 0 50px;
    }
    .overplay-section.overpayying-gg-sec ~ section.rt_testimonials-sec {
        padding-top: 0;
    }
    section.game-changing-section-block.game-changing-section-block-fd ~ section.rt_faq-sec.be_faq-sec-col {
        padding-top: 50px;
    }
    .as_featured-sec.as-featured-trusted-sec {
        padding: 50px 0 80px;
    }
    .overplay-section.overpayying-gg-sec ~ section.rt_testimonials-sec {
        padding: 0 0 50px 0!important;
    }
    .overplay-section.overpayying-gg-sec {
        padding: 0 0 50px!important;
    }
    section.pyf_section.works-manage-p.faq-bg-clr {
        padding: 0 0 50px 0;
        margin-top: 50px;
    }
    .rt_inner-form .rt_form-head {
        display: none;
    }
}

@media (max-width:575px) {
	.own-boss-inner .own_lt-col>p {
		font-size: 20px;
		line-height: 28px;
		margin: 10px 0 15px;
	}

	.own-boss-inner .own_lt-col ul.ob_listing li {
		list-style: none;
		font-size: 18px;
		line-height: 24px;
	}

	.own-boss-inner .own_lt-col ul.ob_listing li img {
		width: 20px;
		margin: 6px 0 0;
	}

	.bannr_notification-outer img,
	.payment-received img {
		width: 230px;
	}

	.client-review-main {
		border: 2px solid #4B71F8;
		border-radius: 10px;
		padding: 20px;
	}
    .tm_inner-scrollDiv-mob button.slick-prev.slick-arrow{
  left:-10px;
  background-image: url(../images/slider-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  transform: translate(0, -50%) rotate(180deg);
    }
    .tm_inner-scrollDiv-mob .slick-list.draggable {
        margin-left: -5px;
    }

    .tm_inner-scrollDiv-mob button.slick-arrow:before{
        content:none;
    }
    .tm_inner-scrollDiv-mob  button.slick-next.slick-arrow {
        right: -10px;
        background-image: url(../images/slider-arrow.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 8px;
    }
    .tm_inner-scrollDiv-mob button.slick-arrow {
        width: 30px;
        height: 30px;
        background: #5176fb;
        z-index: 2;
        border-radius: 30px;
    }

	.tm_testi-flex-outer {
		flex-direction: unset;
	}

	.tm_top-marquee,
	.tm_btm-marquee {
		width: 100%;
		gap: 10px;
		flex-wrap: nowrap;
        flex-direction: row;
	}

	.tm_top-marquee  .tm_testi-flex-outer{
		animation: marquee-left-to-right 20s linear infinite;
		will-change: transform;
	}

	.tm_btm-marquee .tm_testi-flex-outer {
		animation: marquee-right-to-left 20s linear infinite;
		will-change: transform;
	}

	@keyframes marquee-left-to-right {
		from {
			transform: translateX(0%);
		}

		to {
			transform: translateX(-100%);
		}
	}

	@keyframes marquee-right-to-left {
		from {
			transform: translateX(-100%);
		}

		to {
			transform: translateX(0%);
		}
	}

	.tm_rt-col .tm_inner-scrollDiv {
		gap: 10px;
		height: auto;
		flex-direction: column;
	}

	.tm_rt-col {
		width: 100%;
		padding: 20px 15px;
		border-radius: 15px;
		height: auto;
	}
    .tm_inner-scrollDiv-mob .slick-track {
        display: flex;
        gap: 10px;
    }

	.rt_tm-outer {
		gap: 30px;
	}

	.img-rightOverplay img {
		width: 350px;
	}

	.form-overplay input {
		width: 100%;
		max-width: 100%;
		padding: 10px 15px 12px;
	}

	h2.resp-accordion {
		border-radius: 10px;
		padding: 15px 60px 15px 15px !important;
		font-size: 18px;
		line-height: 24px;
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content {
		padding: 15px;
		border-radius: 0 0 10px 10px;
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content p {
		font-size: 17px;
		line-height: 24px;
	}

	.resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content h3 {
		font-size: 18px;
		line-height: 24px;
	}

	h2.resp-accordion span.radio_icon {
		height: 30px;
		width: 30px;
	}

	h2.resp-accordion.resp-tab-active span.radio_icon::after {
		width: 16px;
		height: 16px;
	}

	h2.resp-accordion.resp-tab-active {
		border-radius: 10px 10px 0 0;
	}

	.raw-talent_section .stats-section {
		gap: 30px;
	}

	.raw-talent_section .stats-section .stat-box {
		width: calc(50% - 30px/2);
	}

	.choose-right-block-inner .left-content-col p,
	.game-changing-sectio-inner .top-heading p,
	.main-divOverPlay .content-OverPlay p,
	.testi_title-col>p,
	.lft-col-talent p.join-future-text {
		font-size: 18px;
		line-height: 24px;
	}

	.join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block {
		margin: 15px 0 15px;
		border-radius: 20px;
		gap: 6px;
		width: 100%;
	}

	.booking-filled-block p {
		font-size: 22px;
	}

	.raw-talent-inner-block .play_store-div img {
		max-width: 160px;
	}
    .own-boss-inner.raw-talent-inner-block .own_lt-col .find_work-btn {
        margin-top: 0;
    }

	.banner-tag-fd p {
		font-size: 12px;
	}

	.stats-section.status-three-col {
		justify-content: center !important;
	}

	.stats-section.status-three-col .stat-box {
		width: calc(50% - 30px / 2) !important;
	}

	.pyf_section.how-it-work-block.find-block-it-work .pyf_box .img_box {
		padding: 15px 15px 0;
	}

	.instant-booking span.icon img {
		width: 16px;
	}

	.instant-booking {
		padding: 6px 8px;
		gap: 6px;
	}

	.rt_faq-sec.cp_faq-educator .resp-vtabs .resp-tabs-container .resp_ct.resp-tab-content.resp-tab-content-active {
		padding: 15px;
	}

	.get_touch-p-sec ul.info_list-pa {
		flex-wrap: wrap;
		gap: 10px;
	}

	.get_touch-p-sec ul.info_list-pa li {
		margin: 0;
		padding: 0;
		gap: 5px;
		font-size: 15px;
		line-height: 20px;
		text-align: left;
		justify-content: center;
	}

	.get_touch-p-sec ul.info_list-pa li:after {
		content: unset;
	}

	.get_touch-p-sec ul.info_list-pa li span {
		width: auto;
	}

	.ready_to-help h2 {
		text-align: left;
		font-size: 26px;
		line-height: 32px;
		width: 160px;
	}
    .af_bg-div {
        padding: 20px 15px;
    }
    .for-destop{
display: none!important;
    }
    .for-mob{
        display: block;
    }
    .join-raw-talentnow-block-inner {
        gap: 30px;
    }
    .join-raw-talentnow-block-inner .lft-col-talent {
        width: calc(50% - 15px);
    }
    .join-raw-talentnow-block-inner .ryt-col-talent {
        width: calc(50% - 15px);
    }
    .own-boss-inner.raw-talent-inner-block.switch-width {
        gap: 40px!important;
    }
    .own-boss-inner.raw-talent-inner-block .own_lt-col .play_store-div img {
        max-width: 130px;
    }
    .own-boss-inner.raw-talent-inner-block {
        padding: 40px 20px!important;
    }
    .made_easy-worksP {
        padding: 50px 0 0;
    }
    .your-own-boss.stop-spending-money .own-boss-inner {
        padding: 40px 20px!important;
    }
    .children-eductor-sec .own-boss-inner.raw-talent-inner-block {
        padding: 40px 20px!important;
    }
}

@media (max-width:480px) {
    .join-raw-talentnow-block-inner {
        gap: 20px;
    }
    .join-raw-talentnow-block-inner .lft-col-talent {
        width: calc(50% - 10px);
    }
    .join-raw-talentnow-block-inner .ryt-col-talent {
        width: calc(50% - 10px);
    }
    .booking-filled-block h3 {
        font-size: 30px;
        margin: 0;
    }
    .join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block {
        padding: 15px;
    }
    .booking-filled-block p {
        font-size: 18px;
    }
    .pyf-outer-div>h2.text-center {
        max-width: 260px;
        margin: 0 auto;
    }
	.cs_lt-col h1 {
        font-size: 40px;
        line-height: 48px;
        margin: 0 auto 15px;
        max-width: 300px;
    }

	.cs_lt-col>p {
		font-size: 18px;
		line-height: 26px;
	}

	.play_store-div img {
		width: 160px;
	}

	.play_store-div {
		gap: 5px;
	}

	.bannr_notification-outer .noti-ct-img2 {
		margin: 0 0 0 20px;
	}

	.bannr_notification-outer {
		width: 250px;
		gap: 5px;
	}

	.bnnr_ranae-img img,
	.total-earning img {
		width: 120px;
	}

    .form-overplay form {
        border-radius: 20px!important;
        padding: 20px!important;
    }
	.af_bg-div {
		padding: 20px 15px;
	}

	.pyf_boxes-div .pyf_box {
		width: 100%;
        position: relative;
	}
    .pyf_boxes-div {
        gap: 50px 15px;
    }
    .pyf_boxes-div .pyf_box:nth-of-type(2):before,     .pyf_boxes-div .pyf_box:nth-of-type(4):before {
        content: '';
        position: absolute;
        width: 100%;
        border: 1px dashed#5176fb;
        top: -25px;
    }

    .pyf_boxes-div .pyf_box:nth-of-type(2):after {
        content: '';
        position: absolute;
        width: 100%;
        border: 1px dashed#5176fb;
        bottom: -25px;
    }
	.pyf_box-title {
		flex-direction: column;
	} 
    .pyf_box-title span {
        min-width: 50px;
        height: 50px;
        width: 50px;
        font-size: 26px;
        line-height: 50px;
    }
	.pyf_box-title h6 {
		font-size: 18px;
		line-height: 22px;
		width: 100%;
		text-align: center;
		margin: 0 0 0px;
	}
	.pyf_boxes-div .pyf_box p {
		font-size: 16px;
		line-height: 22px;
		text-align: center;
		padding: 0;
	}
    .own-boss-inner {
        padding: 30px 20px 50px;
    }
    .main-divOverPlay .content-OverPlay h2 span.bg-clBlue {
        font-size: 32px;
    }
	.as_featured-sec {
		padding: 0px 0 70px;
	}
    .privacy-policy-section {
        padding: 20px 0;
    }
	.pyf_section {
		padding: 50px 0 50px;
	}
    .me_flex-boxes .me-lt-col img {
        width: 100%;
    }
	.new-shirt-alert {
		top: 40px;
		left: 0;
	}

	.new-shirt-alert img {
		width: 140px;
	}

	.payment-received img {
		width: 180px;
	}

	.payment-received {
		bottom: 20px;
		right: -10px;
	}

	.own-boss-inner .own_lt-col h2,
	.testi_title-col h2 {
		font-size: 32px;
		line-height: 36px;
	}

	.own-boss-inner .own_lt-col>p {
		font-size: 18px;
		line-height: 26px;
		margin: 10px 0 15px;
	}

	.total-earning img {
		width: 100px;
	}

	.own-boss-inner {
		gap: 20px;
	}

	.rt_testimonials-sec {
		padding: 50px 0;
	}

	.testi_title-col>p {
		font-size: 18px;
		line-height: 26px;
	}

	.img-overPlaySecond img {
		width: 100px;
	}

	.overplay-three img {
		width: 280px;
	}

	.overplay-four img {
		width: 190px;
	}

	.main-divOverPlay .content-OverPlay p {
		font-size: 18px;
		line-height: 26px;
	}

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

	.img-rightOverplay img {
		width: 250px;
	}

	.rt_difference-sec {
		padding: 50px 0;
	}

	.rt_faq-sec {
		padding: 50px 0;
	}

	.bottom-footerDiv {
		margin-top: 30px;
	}

	.form-overplay form .form_row {
		width: 100%;
	}

	footer .p-copydiv {
		gap: 10px;
		flex-direction: column;
		width: 100%;
		align-items: center;
	}

	footer .copy-listDiv {
		row-gap: 10px;
	}

	.all-listDivFoot {
		flex-direction: column;
		align-items: center;
	}

	.all-listDivFoot ul {
		align-items: center;
	}

	.top-footerDiv {
		gap: 20px;
	}

	.all-listDivFoot {
		gap: 10px;
	}

	.phone-prefix span.prefix {
		font-size: 14px;
		line-height: 14px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css =============~~~~~~~~~~~~~~ */
	/* .right-list-grid-col .list-grid-block {
		width: 100%;
	} */
    .list-grid-block .grid-col-inner .img-col-main img {
        height: 210px;
    }
    .right-list-grid-col .list-grid-block {
        padding: 10px;
        border-radius: 10px;
    }
    .list-grid-block .grid-col-inner .img-col-main {
        border-radius: 6px;
    }
	.choose-right-block-inner .left-content-col {
		text-align: center;
	}

	.featured-grids-col .feature-grid-list {
		width: 100%;
	}

	.join-raw-talentnow-block-inner .lft-col-talent h2 {
		font-size: 32px;
	}

	.as_featured-sec.as-featured-trusted-sec {
		padding: 50px 0 70px;
	}

	.pyf-outer-div>h2.text-center,
	.rt_faq-outer>h2.text-center,
	.rtd_table-outer>h2.text-center,
	.main-divOverPlay .content-OverPlay h2,
	.as-featured-trusted-sec .top-heading h3,
	.choose-right-block-inner .left-content-col h3,
	.game-changing-sectio-inner h2,
	.price-match-guarantee-sec .own-boss-inner .own_lt-col h2,
	.your-own-boss.stop-spending-money h2,
	.me_title-main h2 {
		font-size: 28px;
		line-height: 32px;
	}

	/* ~~~~~~~~~~~~~~============= Book-Educators-css-end =============~~~~~~~~~~~~~~ */
	.banner-tag-fd p {
		font-size: 10px;
	}

	.banner-tag-fd {
		right: -2%;
		top: 41%;
	}

	.raw-talent-inner-block .play_store-div img {
		max-width: 130px;
	}
    .join-raw-new-col .lft-col-talent p.join-future-text {
        margin-top: 15px;
    }
	.own-boss-inner.raw-talent-inner-block {
		gap: 50px;
	}

	.instant-booking span.text {
		font-size: 12px;
	}

	.works-manage-p .pyf_boxes-div .pyf_box {
		width: 100%;
	}

	.works-manage-p .pyf_boxes-div .pyf_box p {
		width: 100%;
	}

	.works-manage-p .pyf_boxes-div .pyf_box .pyf_box-title {
		align-items: center;
	}

	.works-manage-p .pyf_boxes-div {
		gap: 50px 30px;
		margin: 30px 0 0;
	}

	.works-manage-p {
		padding: 50px 0;
	}

	.made_easy-worksP {
		padding: 50px 0 0;
	}

	.list_me-flex {
		gap: 10px;
		width: 100%;
	}

	.me_flex-boxes .me-rt-col {
		gap: 20px;
	}

	.rt_faq-sec.cp_faq-educator,
	.rt_faq-sec.faq_for-centres {
		padding: 50px 0;
	}

	.rt_faq-sec.cp_faq-educator .rt_faq-outer h2 br {
		display: none;
	}

	.casual-staffing-sec.get_touch-p-sec {
		background: #fff;
		padding: 50px 0 50px;
	}
    .trsuted-by {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .trusted_flex-div {
        min-width: 90px;
        width: max-content;
        flex-direction: column;
        gap: 6px;
    }
    .trusted_flex-div>p {
        text-align: center;
        font-size: 16px;
        width: 100%!important;
    }
    .trusted_flex-div img {
        width: 35px;
        height: 35px;
        min-height: 35px;
    }
    .img-content-col .col-name h4 {
        margin: 0;
    }
    section.pyf_section.how-it-work-block .pyf-outer-div h2 {
        max-width: 320px;
    }
    .raw-talent-inner-block.fixed-width-switching .play_store-div {
        left: 50%!important;
        width:max-content;
        transform: translate(-50%, 0);
    }
    .own-boss-inner.raw-talent-inner-block.fixed-width-switching .play_store-div.custom-app-store {
        transform:unset;
    }
    .own-boss-inner.raw-talent-inner-block {
        border-radius: 20px;
        z-index: 1;
    }
    .casual-staffing-sec.book-casual-block-sec {
        padding: 50px 0 40px;
    }
    .rt_form-list .rt_center-data:before {
        width: 100px;
        height: 34px;
    }
    .rt_form-list .rt_lt-data {
        padding: 15px;
    }
    .rt_form-list .rt_center-data img {
        width: 26px;
    }
    .rt_form-list .rt_right-data img {
        width: 20px;
    }
    .rt_form-list .rt_right-data:before {
        font-size: 18px;
    }
}

@media (max-width:414px) {
	.Get-divFooter ul {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width:370px) {
    div.join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block.reduse-space {
        width: max-content;
    }
	.find_educator-btns {
		flex-direction: column;
	}
    .list-grid-block .grid-col-inner .img-col-main img {
        height: 190px;
    }
    .img-content-col .col-name h4 {
        font-size: 16px;
        line-height: 18px;
    }
    .list-grid-block .grid-col-inner .img-content-col {
        padding: 10px 0 0px;
        gap: 7px;
    }
    .img-content-col .tag-col p img {
        width: 10px;
    }
    .img-content-col .tag-col p span {
        font-size: 10px;
        line-height: 12px;
    }

	.find_educator-btns a {
		font-size: 16px;
		height: 46px;
		width: 100%;
	}

	.hire_an-educatorBtn a,
	.hire_an-educatorBtn input,
	.hire_an-educatorBtn button {
		padding: 0px 25px;
		height: 46px;
	}
    .trusted_flex-div {
        min-width: 90px;
    }
	/* .trusted_flex-div {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-moz-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 10px;
	}

	.trusted_flex-div {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        min-width: 100%;
    } */

	.play_store-div img {
		width: 140px;
	}

	.trsuted-by {
		margin: 0 auto 20px;
		gap: 10px;
		align-items: flex-start;
	}

	.bnnr_ranae-img img,
	.total-earning img {
		width: 80px;
	}

	.bannr_notification-outer img {
		width: 200px;
	}

	.trusted_flex-div>p {
		font-size: 15px;
		line-height: 18px;
		width: 100%;
		text-align: center;
	}

	.bannr_notification-outer {
		width: 220px;
		gap: 5px;
	}

	.trusted_flex-div img {
		width: 40px;
		height: 30px;
		object-fit: contain;
	}

	.cs_lt-col h1 {
		font-size: 34px;
		line-height: 40px;
		margin: 0 0 10px;
	}

	.cs_lt-col>p {
		font-size: 17px;
		line-height: 24px;
	}

	.bnnr_ranae-img {
		left: 8px;
	}

	.find_work-btn a {
		height: 46px;
	}

	.pyf_boxes-div .pyf_box p,
	.own-boss-inner .own_lt-col>p,
	.own-boss-inner .own_lt-col ul.ob_listing li {
		font-size: 17px;
		line-height: 24px;
	}

	.testi_title-col>p {
		font-size: 17px;
		line-height: 24px;
		margin: 10px 0 20px;
	}

	.client-review-main {
		border: 2px solid #4B71F8;
		border-radius: 10px;
		padding: 20px;
	}

	.find_educator-btns.download-app a {
		width: auto;
	}

	.instant-booking span.icon img {
		width: 13px;
		height: 15px;
	}

	.instant-booking span.icon {
		display: flex;
	}

	.instant-booking {
		border-radius: 6px;
		top: 36%;
	}

	.ready_to-help img {
		position: relative;
		bottom: 0;
		right: 0;
		width: 180px;
	}

	.ready_to-help h2 {
		width: 100%;
		text-align: center;
		margin: 0 0 15px;
	}

	.get_touch-p-sec ul.info_list-pa {
		margin: 20px 0 20px;
		justify-content: center;
	}

	.get_touch-p-sec .cs_lt-col p {
		font-size: 16px;
		line-height: 24px;
	}
    .booking-filled-block h3 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .booking-filled-block p {
        font-size: 17px;
    }
    .join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block {
        border-radius: 15px;
    }
}


@media(max-width:350px){
    .join-raw-talentnow-block-inner {
        flex-direction: column-reverse;
    }
    .join-raw-talentnow-block-inner .lft-col-talent {
        width: 100%;
    }
    .join-raw-talentnow-block-inner .ryt-col-talent {
        width: 60%;
    }
    .own-boss-inner.raw-talent-inner-block .own_lt-col .play_store-div img {
        max-width: 110px;
    }
    .raw-talent-inner-block .play_store-div img {
        max-width: 110px;
    }
}

/* ~~~~~~~~~~~~~~============= Media Queries css end here =============~~~~~~~~~~~~~~ */

/* ajay-css */
.banner-tag-fd {
	display: none;
}

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

.find_work-btn a {
	display: none;
}

.own-boss-inner.raw-talent-inner-block.switch-width .own_rt-col {
	max-width: 257px;
	width: 100%;
}

.own-boss-inner.raw-talent-inner-block.switch-width .own_lt-col {
	max-width: 636px;
	width: 100%;
}

.own-boss-inner.raw-talent-inner-block.switch-width {
	justify-content: center;
	gap: 74px;
}

.raw-talent-inner-block.fixed-width-switching .play_store-div {
	position: absolute;
	bottom: -70px;
	gap: 5px;
	left: 72px;
}
.own-boss-inner.raw-talent-inner-block.fixed-width-switching .play_store-div.custom-app-store {
    position: unset;
    margin-top: 20px;
    justify-content: center;
}
.own-boss-inner.raw-talent-inner-block.fixed-width-switching .own_lt-col {
	max-width: 726px;
	width: 100%;
}

.own-boss-inner.raw-talent-inner-block.fixed-width-switching .own_rt-col {
	max-width: 332px;
	width: 100%;
}

.own-boss-inner.raw-talent-inner-block.fixed-width-switching:before {
	content: '';
	position: absolute;
	background-image: url(../images/ellipse-shadow.png);
	background-position: top left;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	left: -90px;
}

.own-boss-inner.raw-talent-inner-block.fixed-width-switching {
	justify-content: center;
}

.join-raw-talentnow-block-inner .lft-col-talent {
	text-align: center;
}

ul.submenu-ul {
	position: absolute;
	top: 100%;
	background: #ebf7fd;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	box-shadow: -1px 0px 2px #ebf7fd;
	margin: 0;
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	width: 250px;
	right: 0;
}

.submenu-li {
	position: relative;
}

.submenu-li:hover .submenu-ul {
	opacity: 1;
	visibility: visible;
}

@media (max-width:991px) {

	.own-boss-inner.raw-talent-inner-block.fixed-width-switching {
		gap: 50px;
	}
	.header .nav-list li ul.submenu-ul li a {
		font-size: 16px;
		padding: 13px 20px !important;
		border: none;
	}

	ul.submenu-ul {
		position: relative;
		top: 0;
		padding: 10px;
		display: flex;
		flex-direction: column;
		gap: 0;
		box-shadow: none;
		background-color: transparent;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
	}
    .overplay-section.overpayying-gg-sec {
        padding: 0 0 70px;
    }
    .own-boss-inner.raw-talent-inner-block .own_lt-col .play_store-div {
        justify-content: flex-start;
    }
    .own-boss-inner.raw-talent-inner-block.switch-width.increase-wdh .own_rt-col {
        max-width: 100%;
    }
    .own-boss-inner.raw-talent-inner-block.switch-width .own_lt-col {
        max-width: 100%;
        width: 100%;
    }
    .own-boss-inner.raw-talent-inner-block {
        gap: 40px;
    }
    .own-boss-inner .own_lt-col ul.ob_listing ~ .find_work-btn {
        margin: 0!important;
    }
}

/* ajay-css * 

/* 22-05-2025 */

.raw-talent-inner-block .play_store-div.google-ply-store {
    justify-content: center;
    display: flex;
    align-items: flex-end;
    position: unset;
    margin-top: 20px;
}

/* 
@media (max-width:575px) {
	.raw-talent-inner-block .play_store-div.google-ply-store {
		margin-bottom: -41px;
	}
} */


.privacy-policy-section {
	padding: 105px 0;
}

.privacy-policy-section p {
	font-size: 18px;
	font-weight: 300;
	/* color: rgb(44, 59, 69); */
	color: #000;
	line-height: 30px;
	/* margin: 5px 0px 0px; */
	margin: 0px 0px 10px 0;
}

.privacy-policy-section .privacy_main li {
	list-style: disc;
	margin-left: 24px;
	font-size: 18px;
	position: relative;
}

/* .privacy-policy-section .privacy_main li:before {
    content: '.';
    font-size: 22px;
    position: relative;
    top: -4px;
    margin: 0 10px 0 0;
    font-weight: 800;
} */
.privacy_main h2,
h3,
h4 {
	color: #4b71f8;
	margin: 10px 0;
	padding: 0;
	font-size: 30px;
}

@media (max-width:992px) {
	.privacy-policy-section {
		padding: 10px 0;
	}
}

@media (max-width:575px) {

	.privacy_main h2,
	h3,
	h4 {
		font-size: 24px;
	}

	.privacy-policy-section p {
		font-size: 16px;
	}

	.privacy-policy-section .privacy_main li {
		font-size: 16px;
	}

	div.join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block.reduse-space {
		margin: 15px 0;
	}
}


.ctm-app-ply-wrp .cirle-mobile-div img {
	min-width: 282px;
}

.ctm-app-ply-wrp .play_store-div {
	max-width: 216px;
}

.ctm-app-ply-wrp .cirle-mobile-div .play_store-div img {
	min-width: 215px;
}

.ctm-app-ply-wrp .cirle-mobile-div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 20px;
}

.ctm-app-ply-wrp .cirle-mobile-div .bg-cicle {
	position: absolute;
	left: 25%;
	z-index: -1;
	top: auto;
}

.own-boss-inner.raw-talent-inner-block.switch-width.increase-wdh .own_rt-col {
	max-width: 460px;
}

.own-boss-inner.raw-talent-inner-block.fixed-width-switching .own_rt-col {
	max-width: 422px;
}

@media (max-width:991px) {
	.ctm-app-ply-wrp .cirle-mobile-div .play_store-div img {
		min-width: 116px;
	}

	.ctm-app-ply-wrp .cirle-mobile-div img {
		min-width: 220px;
	}
}

.footer-ul-menu h3 {
	font-weight: 600;
	font-size: 22px;
	line-height: 121%;
	color: #fff;
}

.technical-support-wrapper .accordion {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 900px;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
}

.technical-support-wrapper .accordion-item {
	background: #e7f1ff;
	border: none;
	border-radius: 10px;
}

.technical-support-wrappe .accordion-body {
	color: #000000;
}

.technical-support-wrapper button.accordion-button {
	font-size: 20px;
	font-weight: 600;
	border-radius: 10px;
}

.technical-support-wrapper .accordion-body {
	font-size: 18px;
}

.technical-support-wrapper button.accordion-button:focus {
	border: none;
	box-shadow: none;
}

.technical-support-wrapper .accordion-button:not(.collapsed) {
	box-shadow: none;
}

@media (max-width:480px) {
	.footer-ul-menu h3 {
		text-align: center;
	}
    .own-boss-inner.raw-talent-inner-block.fixed-width-switching {
        gap: 30px;
    }
    .own-boss-inner.raw-talent-inner-block.fixed-width-switching .play_store-div.custom-app-store {
        width: 100%;
    }
	.technical-support-wrapper .accordion-button {
		font-size: 18px;
	}

	.technical-support-wrapper .accordion-body {
		font-size: 16px;
	}

	.technical-support-wrapper .accordion-header {
		font-size: 18px;
	}
}

/* 22-05-2025 */


/* 23-05-2025 */

.technical-support-wrapper .accordion-item:first-of-type .accordion-button {
	border-radius: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.technical-support-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
	border-radius: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.privacy_main .privacy-policy-heading {
	color: #4b71f8;
	text-align: center;
	margin: 15px 0;
	font-weight: bold;
}


.contact_card_main {
	position: relative;
	/* background-color: #ecf7fd; */
	overflow: hidden;
	padding: 59px 20px;
	/* border-radius: 40px; */
	border-radius: 20px;
	transition: all .4s;
	width: calc((100% - (50px * 2))/3);
	text-align: center;
	border: 2px solid #EBEBEB
}

.card_link a {
	display: block;
	height: 100%;
	width: 100%;
}

.card_link {
	border-radius: 40px;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.general-enquri-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	/* padding-top: 60px; */
	padding: 60px 0;
}

.card_icon {
	align-items: center;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	/* margin: 0 auto; */
	max-width: 90px;
	transition: all .4s;
	width: 100%;
}

.card_icon img {
	display: block;
	aspect-ratio: 90/90;
	width: 100%;
	transform: scale(1.5);
}

.card_text h4 {
	font-size: 24px;
	font-weight: 600;
	padding: 0;
	margin: 0;
	color: #000;
	text-align: left;
}

.contact_card {
	display: flex;
	row-gap: 16px;
	align-items: center;
	column-gap: 35px;
	justify-content: flex-start;
	flex-direction: column;
}

.enquiry-text p {
	font-weight: 300;
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 0;
	text-align: center;
	color: #000;
}

.enquiry-text {
	max-width: 258px;
	width: 100%;
}

.contact_card_main:hover {
	background-color: #4b71f8;
	border: 2px solid #EBEBEB
}

.contact_card_main:hover .card_icon svg path {
	fill: #fff;
}

.contact_card_main:hover .card_text h4 {
	color: #fff;
}

.contact_card_main:hover .enquiry-text p {
	color: #fff;
}

@media (max-width:1366px) {
	.general-enquri-wrapper {
		gap: 30px;
	}

	.contact_card_main {
		padding: 40px 20px;
		width: calc((100% - (30px * 2))/3);
	}
}

@media (max-width:991px) {
	.contact_card_main {
		width: calc((100% - (30px * 2))/2);
	}



}

@media (max-width:640px) {
	.contact_card_main {
		width: 100%;
	}
}



section.pyf_section.works-manage-p.faq-bg-clr {
	background-color: #fff;
}

.faq-main-wrapper .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	background: #4B71F8;
	border-radius: 190px;
	color: #fff;
	padding: 10px 40px;
}

.faq-main-wrapper .nav-item button {
	background: #E7F2FF;
	border-radius: 190px;
	padding: 10px 40px;
	color: #4B71F8;
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0;
	text-transform: capitalize;
	margin-bottom: 0;


}

.faq-main-wrapper .nav.nav-tabs {
	justify-content: center;
	align-items: center;
	position: absolute;
	inset: 0;
	margin: -28px auto 0 auto;
	max-width: 475px;
	width: 100%;
	max-height: 86px;
	gap: 10px;
	background: #fff;
	border: 7px solid #EDF7FC;
	border-radius: 313px;
}

.pyf-outer-div.faq-main-wrapper {
	background: #EDF7FC;
	padding: 100px;
	border-radius: 60px;
	position: relative;
}

.faq-main-wrapper .accordion-header button {
	color: #000000;
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0;
	text-transform: capitalize;
	background-color: transparent;
	padding: 22px 40px;
}

.faq-main-wrapper .accordion-header button:focus {
	outline: none;
	border: none;
	box-shadow: none;
}

.faq-main-wrapper .accordion {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.faq-main-wrapper .accordion-item {
	border-radius: 20px;
	border: 1px solid #DDDDDD;
	box-shadow: 0px 4.4px 20px -1px #1310220D;
}

.faq-main-wrapper .accordion-button:not(.collapsed) {
	background: #4B71F8;
	color: #fff;
	border-radius: 20px;
}

.faq-main-wrapper .accordion-body {
	font-weight: 300;
	font-size: 20px;
	line-height: 36px;
	letter-spacing: 0;
	color: #2C3B45;
	padding: 30px 40px 40px 40px;
}

.accordion-item:first-of-type .accordion-button {
	border-radius: 20px;
}

.accordion-button:not(.collapsed)::after {
	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 492.004 492.004" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,0.00004577636715907829,492.00401306152344)"><path d="M382.678 226.804 163.73 7.86C158.666 2.792 151.906 0 144.698 0s-13.968 2.792-19.032 7.86l-16.124 16.12c-10.492 10.504-10.492 27.576 0 38.064L293.398 245.9l-184.06 184.06c-5.064 5.068-7.86 11.824-7.86 19.028 0 7.212 2.796 13.968 7.86 19.04l16.124 16.116c5.068 5.068 11.824 7.86 19.032 7.86s13.968-2.792 19.032-7.86L382.678 265c5.076-5.084 7.864-11.872 7.848-19.088.016-7.244-2.772-14.028-7.848-19.108z" fill="%23ffffff" opacity="1" data-original="%23000000" class=""></path></g></svg>')
}





section.casual-staffing-sec.get_touch-p-sec .cs_wrapper-outer {
	flex-direction: column;
}

.get_touch-p-sec .cs_wrapper-outer .cs_rt-col {
	width: 100%;
}

section.casual-staffing-sec.get_touch-p-sec .cs_lt-col h1 {
	text-align: center;
}


/* .works-manage-p{
	padding: 0 0 80px 0;
} */

.faq-bg-clr {
	padding: 0 0 80px 0;
}

.form-overplay form .form_row.submit_next {
	width: 100%;
	display: flex;
	justify-content: center;
}


@media (max-width:991px) {
	.pyf-outer-div.faq-main-wrapper {
		padding: 80px 20px 20px 20px;
		border-radius: 20px;
	}


}

@media (max-width:768px) {
	.faq-main-wrapper .nav-item button {
		font-size: 20px;
	}

	.faq-main-wrapper .accordion-body {
		font-size: 16px;
	}

	.faq-main-wrapper .accordion-header button {
		font-size: 20px;
	}

	.faq-main-wrapper .accordion-body {
		padding: 20px;
        line-height: 26px;
	}
    .faq-main-wrapper .accordion-header button {
        padding: 20px;
    }
	.faq-main-wrapper .accordion-item {
		border-radius: 10px;
	}

	.accordion-item:first-of-type .accordion-button {
		border-radius: 10px;
	}

	.faq-main-wrapper .accordion-button:not(.collapsed) {
		border-radius: 10px;
		padding: 20px;
	}

	.faq-main-wrapper .nav.nav-tabs {
		max-width: 432px;
		width: 100%;
		max-height: 75px;
		height: 100%;

	}

	.contact_card_main {
		border-radius: 10px;
		padding: 30px 15px;
	}

	.card_icon {
		max-width: 60px;
	}

	.contact_card {
		column-gap: 20px;
	}

	.card_text h4 {
		font-size: 22px;
	}

	.card_icon svg {
		width: 100%;
		height: auto;
	}

}

@media (max-width:480px) {
	.faq-main-wrapper .nav-item button {
		font-size: 16px;
	}

	.faq-main-wrapper .nav.nav-tabs {
		max-width: 300px;
	}

	.faq-main-wrapper .nav.nav-tabs {
		gap: 5px;
	}

	.faq-main-wrapper .accordion-header button {
		font-size: 16px;
		padding: 20px;
        gap:10px;
        line-height: 22px;
	}

	/* .accordion-item:first-of-type .accordion-button {
		padding: 20px;
	} */

	.faq-main-wrapper .accordion {
		row-gap: 10px;
	}

	.pyf-outer-div.faq-main-wrapper {
		padding: 60px 20px 20px 20px;
	}

	.faq-main-wrapper .nav.nav-tabs {
		border-radius: 30px;
	}

	.faq-main-wrapper .nav-item button {
		padding: 10px 20px;
	}

	.faq-main-wrapper .nav-tabs .nav-item.show .nav-link,
	.nav-tabs .nav-link.active {
		padding: 10px 20px;
	}

	.card_text h4 {
		font-size: 20px;
	}

	.general-enquri-wrapper {
		gap: 10px;
	}

	.contact_card_main {
		padding: 25px 15px;
	}

	.general-enquri-wrapper {
		padding: 20px 0 40px;
	}



}
 
/* 23-05-2025 */

/* 27-05-2025 */
strong.support-team-text {
	font-weight: 600;
}

.custom-next-page-link a {
	color: #4B71F8;
}

.join-raw-talentnow-block-inner .lft-col-talent .booking-filled-block.reduse-space {
	margin: 23px 0;
}

.privacy_main table tr td {
	font-size: 18px;
	line-height: 30px;
}

.privacy-policy-section .privacy_main h3,
.privacy-policy-section .privacy_main h2,
.privacy-policy-section .privacy_main h4,
.privacy-policy-section .privacy_main h5,
.privacy-policy-section .privacy_main h6 {
	font-weight: 600;
	margin: 20px 0 10px 0;
}

.privacy-policy-section .privacy_main ul {
	width: 100%;
	display: inline-block;
	margin: 0 0 10px 0;
	padding: 0;
}

@media(max-width:575px) {
	.privacy_main table tr td {
		font-size: 16px;
	}
}
@media(max-width:480px) {
	.form-overplay form>.needsclick.kl-private-reset-css-Xuajs1 {
    min-height: 0 !important;
}

.form-overplay form>.needsclick.kl-private-reset-css-Xuajs1>[data-testid="form-row"] {
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row !important;
    align-items: center !important;
}

.form-overplay form>.needsclick.kl-private-reset-css-Xuajs1>[data-testid="form-row"]>div {
    width: calc(100% - 20px);
    flex-basis: calc(100% - 20px)!important;
    padding: 5px !important;
}
}

/* 27-05-2025 */
