
		.job-popUp-main
		{
			width: 100%;
			height: 100vh;
			display: flex;
			justify-content: center;
			align-items: center;
			z-index: 10;
			position: fixed;
			top: 0;
			left: 0;
		}

		.fade
		{
			width: 100%;
			height: 100vh;
			position: fixed;
			top: 0;
			left: 0;
			background: rgba(35, 35, 35, 0.5);
			opacity: 0;
			/*z-index: 10;*/
		}

		.job-popup
		{
		    background: #fff;
		    width: 60%;
		    height: 60%;
		    padding: 0 30px;
		    border-radius: 8px;
		    display: none;
		    position: relative;
		}


		.job-popup button
		{
			background-color: transparent;
		    font-size: 30px;
		    color: black;
		    border: none;
		    outline: none;
		    cursor: pointer;
		    position: absolute;
		    top: 5px;
		    right: 5px;
		    z-index: 1;
		}

		.job-popup-content
		{
			width: 50%;
			height: 100%;
			text-align: left;
			padding: 10px 0;
			display: flex;
			flex-direction: column;
			justify-content: space-evenly;
			/*border: 1px solid black;*/
		}

		.job-popup-content h1
		{
			font-size: 46px;
		}

		.job-popup-content p
		{
		    font-size: 14px;
		}

		.popupBtn
		{
			width: 130px;
			padding: 8px 0;
			text-align: center;
		    background: transparent;
		    color: rgb(0, 0, 255);
		    text-decoration: none;
		    border-bottom: 1.5px solid rgb(0, 0, 255);
		    font-size: 14px;
		    font-weight: 600;
		}

		.job-popup-content span
		{
			width: 150px;
			text-align: center;
			padding: 8px 0;
			background: rgba(0, 0, 255, 0.6);
			color: white;
			border-radius: 35px;
			font-size: 12px;
			font-weight: 600;
		}

		.popupBtn i
		{
			margin-left: 5px;
		}

		.jobImg
		{
			position: absolute;
			bottom: 0;
			right: 0;
			width: 550px;
			height: auto;
		}


		/* Media Start */

		@media (max-width: 768px)
		{

			.job-popup
			{
			    width: 90%;
			    height: 80%;
			    padding: 0;
			    overflow: hidden;
			}

			.job-popup-content
			{
				width: 100%;
				height: auto;
				text-align: left;
				padding: 20px 10px;
			}

			.job-popup-content span
			{
				width: 120px;
				font-size: 10px;
				font-weight: 500;
			}

			.job-popup-content h1
			{
				font-size: 28px;
				margin: 10px 0;
			}

			.popupBtn
			{
				width: 110px;
				text-align: left;
			    margin-top: 10px;
			}

			.popupBtn i
			{
				margin-left: 5px;
			}

			.jobImg
			{
				position: absolute;
				bottom: 0;
				right: 0;
				width: 300px;
				height: auto;
			}
		}