* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x:hidden !important;
}

a {
    text-decoration: none;
}

.btn-view-all {
    background: #3D93F2;
    height: 55px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
    text-transform: capitalize;
    border-radius: 80px;
    padding: 10px 30px 10px 30px;
    transition: 0.3s all ease-in-out;
}

.btn-view-all:hover {
    color: #000;
    background: transparent;
    border: 1px solid #3D93F2;
}


/*menu*/
#logo {
    color: #fff;
    text-transform: uppercase;
}

#logo .logo-img {
    width: 20%;
}

#menu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 25px 0;
    transition: all 0.4s linear;
}

.scrolled #menu {
    background: #2267c5;
    z-index: 999 !important;
}

#menu>.container>div {
    width: 50%;
    display: flex;
    /* gap: 15px; */
}

#menuStripes {
    flex-direction: row;
    justify-content: flex-end;
}

#menuStripes a {
    display: flex;
    align-items: center;
}

#menu .container {

    display: flex;
    flex-direction: row;

}

#menuPlate {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 0;
    background: #0e55a7;
    overflow: hidden;
    transition: 1s ease;
    z-index: 1;
}

#menuPlate:target {
    height: 100%;
}

#menuHidden {
    display: none;
}

#menuPlate:target #menuHidden {
    padding: 25px 0;
    display: flex;
    flex-direction: row;
    position: fixed;
    letter-spacing: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 60%;
}

#menuHidden>div {
    width: 50%;
}

#menuHidden .button {
    display: flex;
    justify-content: flex-end;
}

#menuPlate a {
    color: #fff;
    position: relative;
    font-weight: bold;
}

#menuPlate a i {
    font-size: 40px;
}

#menuPlate ul a::after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0%;
    height: 15px;
    background: #fe491a;
    transition: .2s linear;
    z-index: -2;
}

.menu-icons {
    margin-right: 25px;
}

#menuPlate ul a:hover::after {

    width: 100%;

}

.stripe {
    background: rgba(255, 255, 255, 1);
    position: absolute;
    height: 3px;
    transition: 0.2s linear;

}

.stripe:nth-of-type(1) {
    top: 0;
    right: 0px;
    width: 100%;
}

.stripe:nth-of-type(2) {
    top: 50%;
    right: 0;
    width: 66%;
}

.stripe:nth-of-type(3) {
    top: 100%;
    right: 0px;
    width: 33%;
}

#menu button {
    width: 27px;
    height: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    background: none;
}

#menu button:hover .stripe {
    width: 100%;
    background-color: #fff;
}

/*menuPlate links*/
#menuPlate ul a {
    text-decoration: none;
    font-size: 2.5rem;
    position: relative;
}

/* #menuPlate ul a::after {} */
#menuPlate ul {
    width: auto;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.openMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}




a#search-btn {
    padding: 0px 25px;
}
a#search-btn i {
    font-size: 17px;
    color: #ffffff;
    background: #3d93f2;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.morphsearch {
	width: 200px;
	min-height: 40px;
	background: #000000de;
	position: absolute;
	z-index: 10000;
	top: 0;
	right: 0;
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transition-property: min-height, width, center, center;
	transition-property: min-height, width, center, center;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	opacity: 0;
	display: flex;
	align-items: center;
}

.morphsearch.open {
	width: 100%;
	min-height: 100%;
	top: 0px;
	right: 0px;
	opacity: .93;
}

.morphsearch-form {
	width: 100%;
	height: 40px;
	margin: 0 auto;
	position: relative;
	-webkit-transition-property: width, height, -webkit-transform;
	transition-property: width, height, transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.morphsearch.open .morphsearch-form {
	width: 80%;
	height: 160px;
	-webkit-transform: translate3d(0,3em,0);
	transform: translate3d(0,3em,0);
}

.morphsearch-input {
	width: 100%;
	height: 100%;
	padding: 0 10% 0 10px;
	font-weight: 700;
	border: none;
	background: transparent;
	font-size: 0.8em;
	color: #FFF;
	-webkit-transition: font-size 0.5s cubic-bezier(0.7,0,0.3,1);
	transition: font-size 0.5s cubic-bezier(0.7,0,0.3,1);
}

.morphsearch-input::-ms-clear {
    display: none;
}

.morphsearch.hideInput .morphsearch-input {
	color: transparent;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.morphsearch.open .morphsearch-input {
	font-size: 9em;
	border-bottom: 1px solid;
	text-align: center;
}

/* placeholder */
.morphsearch-input::-webkit-input-placeholder {
	color: #FFF;
}

.morphsearch-input:-moz-placeholder {
	color: #FFF;
}

.morphsearch-input::-moz-placeholder {
	color: #FFF;
}

.morphsearch-input:-ms-input-placeholder {
	color: #FFF;
}

.gn-search:focus::-webkit-input-placeholder {
	color: transparent;
}

input[type="search"] {
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;	
}

.morphsearch-input:focus,
.morphsearch-submit:focus {
	outline: none;
}

.morphsearch-submit {
	position: absolute;
	width: 80px;
	height: 80px;
	text-indent: 100px;
	overflow: hidden;
	right: 0;
	top: 50%;
	background: transparent url(../img/magnifier.svg) no-repeat center center;
	background-size: 100%;
	border: none;
	pointer-events: none;
	transform-origin: 50% 50%;
	opacity: 0;
	-webkit-transform: translate3d(-30px,-50%,0) scale3d(0,0,1);
	transform: translate3d(-30px,-50%,0) scale3d(0,0,1);
}

.morphsearch.open .morphsearch-submit {
	pointer-events: auto;
	opacity: 1;
	-webkit-transform: translate3d(-30px,-50%,0) scale3d(1,1,1);
	transform: translate3d(-30px,-50%,0) scale3d(1,1,1);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.morphsearch-close {
	width: 36px;
	height: 36px;
	position: absolute;
	right: 12em;
	top: 34em;
	overflow: hidden;
	text-indent: 100%;
	cursor: pointer;
	pointer-events: none;
	opacity: 0;
	-webkit-transform: scale3d(0,0,1);
	transform: scale3d(0,0,1);
}

.morphsearch.open .morphsearch-close {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.morphsearch-close::before,
.morphsearch-close::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	border-radius: 3px;
	/* opacity: 0.5; */
	background: #FFF;
}

.morphsearch-close:hover.morphsearch-close::before,
.morphsearch-close:hover.morphsearch-close::after {
	opacity: .8;
}

.morphsearch-close::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.morphsearch-close::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.morphsearch-content {
	color: #FFF;
	margin-top: 4.5em;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding: 0 10.5%;
	background: #f1f1f1;
	position: absolute;
	pointer-events: none;
	opacity: 0;
}

.morphsearch.open .morphsearch-content {
	opacity: 1;
	height: auto;
	overflow: visible;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}

.dummy-column {
	width: 30%;
	padding: 0 0 6em;
	float: left;
	opacity: 0;
	-webkit-transform: translate3d(0,100px,0);
	transform: translateY(100px);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.morphsearch.open .dummy-column:first-child {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.morphsearch.open .dummy-column:nth-child(2) {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}

.morphsearch.open .dummy-column:nth-child(3) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.morphsearch.open .dummy-column {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.dummy-column:nth-child(2) {
	margin: 0 5%;
}

.dummy-column h2 {
	font-size: 1em;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 800;
	color: #c2c2c2;
	padding: 0.5em 0;
}

.round {
	border-radius: 50%;
}

.dummy-media-object {
	padding: 0.75em;
	display: block;
	margin: 0.3em 0;
	cursor: pointer;
	border-radius: 5px;
	background: rgba(118,117,128,0.05);
}

.dummy-media-object:hover,
.dummy-media-object:focus {
	background: rgba(118,117,128,0.1);
}

.dummy-media-object img {
	display: inline-block;
	width: 50px;	
	margin: 0 10px 0 0;
	vertical-align: middle;
}

.dummy-media-object h3 {
	vertical-align: middle;
	font-size: 0.85em;
	display: inline-block;
	font-weight: 700;
	margin: 0 0 0 0;
	width: calc(100% - 70px);
	color: rgba(145,145,145,0.7);
}

.dummy-media-object:hover h3 {
	color: rgba(236,90,98,1);
}

/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.morphsearch.open ~ .overlay {
	opacity: 0;
}

@media screen and (max-width: 53.125em) {
	.morphsearch-input {
		padding: 0 25% 0 10px;
	}
	.morphsearch.open .morphsearch-input {
		font-size: 2em;
	}
	.dummy-column {
		float: none;
		width: auto;
		padding: 0 0 2em;
	}
	.dummy-column:nth-child(2) {
		margin: 0;
	}
	.morphsearch.open .morphsearch-submit {
		-webkit-transform: translate3d(0,-50%,0) scale3d(0.5,0.5,1);
		transform: translate3d(0,-50%,0) scale3d(0.5,0.5,1);
	}
}

@media screen and (max-width: 60.625em) {
	.morphsearch {
		width: 80%;
		top: 10%;
		right: 10%;
	}
}



/* Hero Section */
.hero-section {
    background-image: url(../images/hero_section/hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-section .hero-content {
    padding: 290px 0px 214px 0px;
    width: 90%;
    margin: auto;
}

.hero-section .hero-content h1 {
    text-align: center;
    color: #FFF;
    font-size: 88px;
    line-height: 85px;
    text-transform: capitalize;
    font-weight: 800;
    width: 90%;
    margin: 20px auto;
}

.hero-content .form-group {
    display: flex;
}

.hero-content form {
    background: #fff;
    padding: 50px 111px;
    border-radius: 30px;
}

.hero-content form .col-6 {
    position: relative;
}

.hero-content form .form-select,
.hero-content form .form-control {
    border: 1px solid #aaa;
    padding: 15px 30px;
    border-radius: 50px;
    margin-left: 8px;
    color: #000;
    font-size: 16px;
}

.hero-content form .form-control::placeholder {
    color: #000;
}

.hero-content form div#flagContainer {
    position: absolute;
    top: 15px;
    right: 40px;
}

.hero-content form select#countrySelect {
    /* \: 60px; */
}

.hero-content form div#flagContainer img {
    width: 30px;
}

.hero-content form .form-control {
    /* background: transparent; */
    /* border: transparent; */
    /* padding: 10px 0px 10px 20px; */
}

.hero-section .hero-content .btn-search {
    background: #3D93F2;
    padding: 15px 45px 15px 45px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 25.6px;
    text-transform: capitalize;
    border-radius: 80px;
    transition: 0.3s linear;
}

.hero-section .hero-content .btn-search:hover {
    background: transparent;
    color: #000;
}

.role-box:hover {
    background-color: #d9d8d8;
    box-shadow: 0 0 10px #ccc;
    transition: 0.3s;
}


.modal-content {
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}

#signupForm label i {
    color: #3d93f2;
}

.modal-content h4 {
    font-size: 28px;
}

/* .modal-content h4::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
    margin: 10px 0px;
} */


/* Business Section Start */
.business {
    margin-top: 30px;
}

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

.business .business-heading h1 {
    color: #1E1E1E;
    text-align: center;
    font-size: 87px;
    font-weight: 600;
    line-height: 85px;
    letter-spacing: -2.635px;
}

.business .business-card {
    border-radius: 40px;
    border: 1px solid #A8A8A8;
    background: #F8F8F8;
}

.business .business-card img {
    display: block;
    margin: auto;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    height: 200px;
}

.business .business-card h3 {
    padding-top: 0px;
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 21px;
    /* 105% */
    text-transform: capitalize;
}

.business .business-card {
    padding: 20px;
    margin-bottom: 30px;
    height: 400px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.business .business-card p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    opacity: 0.6;
    margin-bottom:0px;
}

.business .business-card .card-buttons {
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-top: 15px;
}


.business .business-card .card-buttons .read-more {
    color: #000;
    text-decoration-line: underline;
    text-transform: capitalize;
}

.business .business-card .card-buttons img {
    border-radius: 9px;
    background: #308AF3;
    padding: 13px;
    transition: 0.2s linear;
    width: 39px;
    height: 39px;
}

.business .business-card .card-buttons img:hover {
    background: #000000;
}


/* Micro Jobs */
.micro-jobs {
    margin-top: 30px;
    background-image: url("../images/micro_jobs/micro-job-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.micro-jobs1 {
    background-image: url("../images/micro_jobs/micro-job-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.micro-jobs {
    padding: 113px 0;
}

.micro-jobs1 {
    padding: 113px 0;
}

.micro-heading {
    width: 69%;
    margin: auto;
}

.micro-heading h3 {
    color: #FFF;
    font-size: 80px;
    font-weight: 600;
    line-height: 85px;
    letter-spacing: -2.635px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.micro-heading h3:after {
    content: '';
    display: block;
    width: 743px;
    height: 1px;
    background: #fff;
    margin-left: 40px;
}
 .single-job h2 {
        font-size: 35px;
    }
    .single-job p {
    font-size: 16px;
    margin-bottom: 3px;
    }
    .single-job img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    margin-bottom: 6px;
}
.micro-jobs .testimonials-slider {
    padding-top: 50px;
}

.micro-jobs1 .testimonials-slider {
    padding-top: 50px;
}

.testimonials-slider .item {
    border-radius: 40px;
    border: 1px solid #A8A8A8;
    background: #F8F8F8;
    overflow: hidden;
    margin: 0 12px;
    transition: all 0.4s linear;
    height: 430px;
}

.testimonials-slider .item:hover {
    background: #001C3A;
    cursor: pointer;
}

.testimonials-slider .item:hover * {
    color: #fff !important;
}

.testimonials-slider .item h3 {
    color: #1E1E1E;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 900;
    line-height: 21px;
    text-transform: capitalize;
}

.testimonials-sec {
    margin: 12px 0px;
}
.testimonials-sec img.main-img {
    height: 230px;
    object-fit: cover;
}
.slick-initialized .slick-slide {
    margin: 0 12px;
}

.slick-slide .main-img {
    margin: auto;
    width: 100%;
    border-radius: 40px;
}

.testimonials-slider .item p {
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.6;
    margin-bottom: 15px;
}

.testimonials-sec .card-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.testimonials-sec .card-buttons .read-more {
    color: #000;
    text-decoration-line: underline;
    text-transform: capitalize;
}

.testimonials-sec .card-buttons img {
    border-radius: 9px;
    background: #308AF3;
    padding: 13px;
    transition: 0.2s all ease-in-out;
}

.testimonials-sec .card-buttons img:hover {
    background: #000000;
}


/* Pricing */
.pricing {
    padding: 100px 0 0px 0;
}

.pricing h2 {
    color: #1E1E1E;
    font-size: 87.847px;
    font-weight: 600;
    line-height: 85px;
    letter-spacing: -2.635px;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.con-items {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item {
    width: 360px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 40px;
    margin: 0px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .25s ease;
    position: relative;
}

.item:not(.color):hover {
    /*transform: scale(1.05);*/
}

.item:hover .con-img {
    transform: scale(1.15);
}

.item.color:hover {
    transform: scale(1.15);
}

.con-img {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.con-img img {
    width: 130px;
}

.item1 {
    padding-right: 45px;
}

.item2 {
    z-index: 100;
}

.item3 {
    padding-left: 45px;
}

.item.color {
    background: #2267c5;
    color: #fff;
    transform: scale(1.1);
}

.item.color li {
    color: rgba(255, 255, 255, .75);
}

.item.color li b {
    color: rgba(255, 255, 255, 1);
}

.item.color li i {
    color: rgba(255, 255, 255, 1);
}

.item header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.item header h3 {
    font-size: 2rem;
}

.item header p {
    font-size: 20px;
    text-align: center;
}

.item header p span {
    text-align: left !important;
    font-size: 16px;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    color: rgb(61, 203, 171);
    font-weight: bold;
    font-size: .85rem;
}

.item ul {
    padding: 20px 0px;
    width: 100%;
    overflow-y: scroll;
    height: 280px;
}

.item ul li {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: rgb(44 62 80 / 87%);
}

.item ul li b {
    color: rgb(var(--color), 1)
}

.item ul li i {
    font-size: 1.6rem;
    margin-right: 15px;
    color: rgb(var(--color), 1)
}

.item button {
    padding: 14px 20px;
    width: 100%;
    background: rgb(34 103 197);
    border: 3px solid transparent;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0px 10px 25px 0px rgba(61, 203, 171, .35);
    cursor: pointer;
    transition: all .25s ease;
}

.item button:not(.border):hover {
    transform: translate(0, 5px);
    box-shadow: 0px 0px 0px 0px rgba(61, 203, 171, .35);
}

.item button.border {
    border: 3px solid #fff;
}

.item button.border:hover {
    background: #fff;
    color: rgb(34 105 197);
}



/* Events */
.event {
    padding: 50px 0;
}

.event .event-heading {
    display: flex;
    justify-content: space-between;
}

.event-heading h3 {
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 87.847px;
    font-style: normal;
    font-weight: 600;
    line-height: 85px;
    /* 96.759% */
    letter-spacing: -2.635px;
    text-transform: capitalize;
}

.event .single-event {
    margin-top: 30px;
        text-align: center;
}

.event .single-event img {
    border-radius: 24px;
    margin-bottom: 30px;
    width: 100%;
    height:200px;
}

.event .single-event h3 {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

.event .single-event p {
    color: #000;
    font-weight: 400;
    opacity: 0.6;
}

.event-datetime {
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
    background: #E9E9E9;
    padding: 10px 18px;
    color: #474747;
    font-family: "Mulish", sans-serif;
    font-size: 12.004px;
    line-height: 22.408px;
}

.event-datetime .date i {
    margin-right: 8px;
}

.event-datetime .time i {
    margin-right: 8px;
}

/* Community Alert */
.community-alert {
    padding: 100px 0 113px 0;
    background-image: url("../images/community/community-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.community-alert .community-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 56px;
}

.community-alert .community-heading h3 {
    color: #FFF;
    font-size: 45px;
    font-weight: 600;
    line-height: 47.068px;
    text-transform: capitalize;
}

.btn-view-two {
    background: #FFF;
    height: 55px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
    text-transform: capitalize;
    border-radius: 80px;
    padding: 10px 30px 10px 30px;
    transition: 0.3s linear;
}

.btn-view-two:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.community {
    border-radius: 24px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
    padding: 13px;
    margin-bottom: 30px;
}

.community img {
    display: block;
    margin: auto;
    border-radius: 24px;
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.community h4 {
    margin-top: 19px;
    color: #300610;
    font-family: "Mulish", sans-serif;
    font-size: 12.004px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px;
    text-transform: capitalize;
}

.community h3 {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.community p {
    color: #000;
}

.community-datetime {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    background: #003571;
    padding: 10px 18px;
    color: #fff;
    font-family: "Mulish", sans-serif;
    font-size: 12.004px;
    line-height: 22.408px;
}

.community-datetime .date i {
    margin-right: 8px;
}

.community-datetime .time i {
    margin-right: 8px;
}


/* About Start */
.about {
    padding: 100px 0px;
}

.about .about-left img {
    margin: -70px -350px;
}

.about .about-content h3 {
    color: #000;
    font-size: 85px;
    font-weight: 600;
    line-height: 101.643px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.about .about-content p {
    color: #1E1E1E;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 30px;
}

.about .about-content h4 {
    color: #000;
    font-size: 35px;
    font-weight: 600;
    line-height: 44px;
    text-transform: capitalize;
    margin-bottom: 30px;
}


.job-container {
    max-width: 1200px;
    margin: 50px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}
section.job-details-page {
    padding: 80px 0 0;
}
.single-job {
    padding: 0;
}

.single-job img {
    width: 100%;
    /* height: 500px; */
    /* object-fit: contain; */
    margin-bottom: 0;
}

.single-job h2 {
    font-size: 50px;
    font-weight: 500;
    margin: 0;
}

.single-job p {
    font-size: 18px;
    text-transform: capitalize;
}


.wrap {
    max-width: 800px;
    margin:0 auto;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.wrap img {
    width: 100%;
    border-radius:10px;
    max-height:400px;
    object-fit:cover;
}


/* .job-header {
        display: flex;
        flex-wrap: wrap;
    }

    .job-header .job-image {
        flex: 1 1 40%;
        background-color: #eee;
    }

    .job-header .job-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .job-header .job-details {
        flex: 1 1 60%;
        padding: 40px;
    }

    .job-details h2 {
        font-weight: 700;
        font-size: 28px;
        color: #333;
    }

    .job-details .description {
        color: #555;
        font-size: 16px;
        margin: 20px 0;
        line-height: 1.6;
    }

    .requirements h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .requirements ul {
        padding-left: 0;
        list-style: none;
    }

    .requirements ul li {
        margin-bottom: 10px;
        color: #444;
    }

    .requirements ul li i {
        color: #28a745;
        margin-right: 8px;
    }

    .action-buttons {
        margin-top: 30px;
    }

    .action-buttons .btn {
        padding: 12px 30px;
        font-weight: 500;
        border-radius: 10px;
    }

    a.btn.btn-apply.me-2 {
        background-color: #3D93F2;
        color: white;
        border: none;
    }

    .btn-back {
        border: 2px solid #ccc;
        background: transparent;
        color: #555;
    }

    .more-details {
        padding: 30px 40px;
        border-top: 1px solid #eee;
    }

    .more-details h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
    } */



/* Footer Start */
.footer {
    border-radius: 29px;
    background: #000;
    width: 98%;
}

.footer .footer-logo img {
    width: 174px;
}

.footer .footer-logo {
    text-align: center;
    margin-top: 40px;
}

.footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 73px;
}

.footer ul li {
    margin-right: 47px;
}

.footer ul li a {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 25.6px;
    text-transform: capitalize;
}

.footer hr {
    opacity: 0.3;
    color: #FFF;
    width: 90%;
    margin: 40px auto;
    margin-bottom: 0;
}

.footer .calls-link {
    color: #FFF;
    font-weight: 400;
    line-height: 25px;
    display: flex;
    width: 70%;
    margin: auto;
    gap: 123px;
    padding: 60px 0 50px 0;
}

.footer .calls-link img {
    margin-right: 20px;
}

.footer .social-links a {
    margin-right: 16px;
}

.footer .social-links a img {
    height: 18px;
}

.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    top: 60px;
}

.copy-right {
    display: flex;
    justify-content: center;
    gap: 800px;
    padding-top: 20px;
}

.copy-right p {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 6.3px;
    text-transform: capitalize;
}
/* Single Business Css */
.single-business-sec {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
section.single-business-row {
    padding: 80px 0 0;
}
.business-name-box {
	display: flex;
	align-items: center;
	padding: 30px 0px 0px 30px;
}
.social-links ul {
    margin: 0;
    padding: 0;
}
.social-links ul li {
    display: inline-block;
    margin-right: 5px;
}
.social-links ul li i {
    background: #2463c2;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
}
.business-name-box img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 4px solid #2463c2;
    margin-right: 30px;
}
.business-name-box h1 {
    font-size: 28px;
}
.business-name-box p {
    margin: 0;
}
.profile-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 30px;
}
.detail {
  background: #f9fafc;
  border: 1px solid #e4e6eb;
  border-radius: 8px;
  padding: 15px;
}
.detail strong {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}
.status {
  display: inline-block;
  padding: 4px 10px;
  background: #ffca2c;
  color: #333;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 600;
}
.social {
  padding: 0 30px 30px;
}
.social h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.social-links a {
  display: block;
  color: #2d6cdf;
  text-decoration: none;
  margin-bottom: 5px;
}
.social-links a:hover {
  text-decoration: underline;
}
/* Alert Css */
section.alert-row {
    padding: 80px 0 0;
}
.alert-sec h2 {
    color: #1E1E1E;
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
    letter-spacing: -.635px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.alert-sec strong {
    background: #2463c2;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    display: inline-block;
}
.alert-sec p {
    margin-bottom: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.alert-sec img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}
.alert-sec p:last-child {
    margin: 30px 0 0;
}
.alert-sec a {
    background: #3D93F2;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
    text-transform: capitalize;
    border-radius: 80px;
    padding: 10px 30px;
    transition: 0.3s all ease-in-out;
    display: inline-block;
    border: 1px solid #3D93F2;
}
.alert-sec a:hover {
    color: #000;
    background: transparent;
}



.form-floating {
    text-align: left;
}
.form-floating span {
    margin-left: 10px;
}


.chat-container {
  width: 500px;
  margin: 50px auto;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.chat-container h2{
  text-align: center;
  color: #333;
}



.chat-container #chat-box {
  height: 400px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}
.chat-container .message {
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 80%;
}
.chat-container .user {
  background: #dcf8c6;
  margin-left: auto;
  text-align: right;
}
.chat-container .bot {
  background: #e5e5ea;
  color: #000;
}
.chat-container .input-area {
  display: flex;
  gap: 10px;
}
.chat-container input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.chat-container button {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
}
.chat-container button:hover {
  background: #0056b3;
}



/* Chat CSS */
.ai-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  font-family: "Inter", sans-serif;
  color: #1c1e21;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(145deg, #f3f4f6, #fff);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 30px;
  background: #f9fafb;
}

.search-bar button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}
.search-bar button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
/*.results-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));*/
/*  gap: 25px;*/
/*}*/
.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card h3 {
  margin-top: 0;
  font-size: 18px;
  color: #2563eb;
  margin-bottom: 10px;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card li {
  margin: 10px 0;
  line-height: 1.4;
}
.card a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
}
.card a:hover {
  text-decoration: underline;
  color: #2563eb;
}
.view-link {
  display: inline-block;
  margin-top: 15px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}


section.ads-sec {
    margin: 50px 0;
    position: relative;
}

#randomAd {
    margin: auto;
    position: relative;
}


#randomAd img {
    width: 100%;
    height: 270px;
    /* height:auto; */
    object-fit: scale-down;
}

#adBox {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 250px;
  background: #fff;
  border: 2px solid orange;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}


.ad1 img {
    display: block;
    margin: 0 auto;
    width: 60% !important;
}

.ad2 img {
    display: block;
    margin: 0 auto;
    width: 70% !important;
}

.ad3 img {
    display: block;
    margin: 0 auto;
    width: 50% !important;
}
.ad4 img {
    display: block;
    margin: 0 auto;
    width: 50% !important;
}
.ad5 img {
    display: block;
    margin: 0 auto;
    width: 50% !important;
}
.ad6 img {
    display: block;
    margin: 0 auto;
    width: 50% !important;
}
.ad7 img {
    display: block;
    margin: 0 auto;
    width: 50% !important;
}
.ad8 img {
    display: block;
    margin: 0 auto;
    width: 30% !important;
}
.verified-badge {
    width: 35px !important;       /* small and consistent */
    height: 35px !important;
    vertical-align: middle;
}

h2 {
    display: flex;
    align-items: center;
    gap: 6px;          /* space between title and tick */
}
       /* Shared pill button base */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-add {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-add:hover {
    background: #2563eb;
    color: #fff;
}
/* Micro Jobs â€“ white button for blue background */
.btn-add-microjobs {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #ffffff;
    height: 44px !important;
    font-size: 14px !important;
    padding: 0 22px !important;
}

/* Hover effect */
.btn-add-microjobs:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

