/*  
@font-face {
  font-family: "dosis-bold";
  src: url("../assets/fonts/dosis-bold.woff2") format("woff2"), url("../assets/fonts/dosis-bold.ttf") format("ttf"),
	  url("../assets/fonts/dosis-extrabold.woff2") format("woff2"), url("../assets/fonts/dosis-extrabold.ttf") format("ttf"),
	  url("../assets/fonts/dosis-semibold.woff2") format("woff2"), url("../assets/fonts/dosis-semibold.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-stretch: normal;
} */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}
body {
    background: #fff;
    color: #444;
    font-family: 'Nunito Sans', sans-serif;
}

a {
    color: #1bb1dc;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #0a98c0;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
    font-family: 'Nunito Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    margin: 0 0 20px 0;
    padding: 0;
}

 main#main {
    padding-top: 80px;
}

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #1bb1dc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.topBar {
    background: #000;
    margin-bottom: 16px;
    padding: 3px 0px;
}

.topBar .topBar-text p {
    margin: 0;
    color: #fff;
    font-size: 14px;
	font-weight: 600;
}

.topBar .topBar-text p a {
    color: #fff;
}

.topBar-link ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topBar-link ul li {
    margin-right: 40px;
    font-size: 14px;
}

.topBar-link ul li a {
    color: #fff;
    display: flex;
    align-items: center;
	font-weight: 600;
	text-decoration: underline;
}
.topBar-link ul li a img {
    margin-right: 14px;
	width: 16px;
	height: 16px;
	object-fit: contain;
}
.topBar-link ul li:last-child {
    margin: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0px 17px 0;
    top: 0;
	width: 100%;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 30%);
}

#header.header-transparent {
    /* background: transparent; */
}
#header.header-scrolled h1.logo > a {
    color: #fff;
}

#header.header-scrolled .main-nav a {
    color: #333;
}

#header.header-scrolled .main-nav a:hover,
#header.header-scrolled .main-nav a.active {
    color: #ed123c;
}
#header.header-scrolled {
    top: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
    padding: 0px 0px 15px 0px;
}
#header.header-scrolled .topBar {
    margin-bottom: 14px;
}


#header .logo {
    font-size: 38px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 800;
    letter-spacing: unset;
    text-transform: uppercase;
    font-family: segoeui;
}
img.hover-icon {
    display: none;
}

/* .main-nav > ul > li:last-child a:hover .normal-icon {
    display: none;
}

.main-nav > ul > li:last-child a:hover img.hover-icon {
    display: block;
} */
#header .logo a {
    color: #fff;
}
img.img-fluid.small-logo {
    display: none;
}
#header .logo img {
    max-height: 60px;
}

@media (max-width: 992px) {
    #header {
        top: 0;
        padding: 15px 0 !important;
    }
    #header .logo {
        font-size: 28px;
    }
	
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
}

.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
    padding-left: 40px;
}

.main-nav a {
    display: block;
    position: relative;
    color: #000000;
    padding: 0px 0;
    transition: 0.3s;
    font-size: 16px;
    text-transform: unset;
    font-weight: 500;
    line-height: 44px;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a , .current-menu-item>a {
    color: #ed123c !important;
    text-decoration: none;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}

.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #065e77;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
    color: #1bb1dc;
}

.main-nav .drop-down > a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down > a {
    padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 81px;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    right: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgb(237 18 60);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav img.normal-icon {
    display: none;
}

.mobile-nav img.hover-icon {
    display: block;
    width: 21px;
    height: 21px;
    margin-right: 10px;
}
/* .mobile-nav li:last-child a {
    width: 140px;
    margin: auto;
    background: #fff;
    padding: 0;
    height: 40px;
    color: #ed123c !important;
    line-height: 40px;
    font-family: 'Nunito Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.mobile-nav a {
    display: block;
    position: relative;
    color: #fff !important;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #8dc2fa;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\f077";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
	left: auto;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
	display: block;
}

.mobile-nav-toggle i {
    margin: 29px 18px 0 0;
    color: #ed123c;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 81px;
    left: 0;
    position: fixed;
    /* background: rgb(237 18 60 / 38%); */
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    right: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #ed123c;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 606px;
    position: relative;
    background: #f9f7ef;
/* 	background: #ed133c; */
    background-size: cover;
/* 	padding-top: 100px; */
}
/* #hero .intro-image {
	height: 100%;
}
 */
@media (max-width: 767px) {
    #hero {
        height: auto;
        padding: 100px 0 60px 0;
    }
    #hero .container {
        height: auto !important;
        justify-content: center;
    }
    #hero .intro-img {
        width: 80%;
    }
}

@media (min-width: 992px) {
    #hero .intro-info {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    #hero .intro-info {
        text-align: center;
        padding-top: 0;
    }
}
/* @media (max-width: 575px) {
	#hero .intro-info .banner-box-content p {
		font-size: 42px;
	}
	#hero .intro-info .banner-box-content p span {
		font-size: 28px;
	}
	#hero .intro-info .banner-btn-box .banner-btn {
		margin-right: 8px;
	}
	#hero .intro-info .banner-btn-box .banner-btn a {
		font-size: 14px;
	}
	#hero .intro-info .banner-box-image {
		margin-bottom: 0;
	}
	#hero .intro-image {
		margin-top: 30px;
	}
} */
.form-box {
    display: flex;
    background: #fff;
    border-radius: 0;
    padding: 10px;
    height: 75px;
    max-width: 83%;
    position: relative;
}
.banner-box-image {
    height: 108px;
    width: auto;
    margin-bottom: 20px;
}

.banner-box-image img {height: 100%;/* width: 100%; *//* object-fit: contain; */}
.form-box .input-box {
    width: 100%;
    height: 100%;
}
.intro-image {
    height: 400px;
    width: 100%;
}
.banner-btn-box .banner-btn.border-btn a {
    background: transparent;
    color: #ed123c;

}
.banner-btn-box .banner-btn.border-btn a:hover{
    background: #ed123c;
    color: #ffffff;
}
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.form-box .input-box input.form-control {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 16px;
}
.form-box .input-box input.form-control:focus,
.submit-box button.btn-get-started.scrollto:focus {
    outline: none;
    box-shadow: none;
}

#hero .intro-info .form-box .submit-box button.btn-get-started.scrollto {
    position: absolute;
    right: 10px;
    bottom: 10px;
    top: 10px;
    font-weight: 400;
    border: none;
    width: 189px;
    background: #00c865 !important;
    padding: 0 !important;
    font-size: 15px;
    border-radius: 0;
}
#hero .intro-info span.form-text {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    display: block;
    font-family: segoeui;
}
#hero .intro-info h5 {
    color: #00c865;
    font-family: segoeui;
    font-size: 22px;
    font-weight: 800;
}
#hero .intro-info h2 {
    color: #ed123c;
    margin-bottom: 30px;
    font-size: 150px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 120px;
}
/* #hero .col-lg-7 {
	padding: 0;
} */
#hero .intro-info .banner-box-content p {
    color: #000;
    text-align: left;
    font-size: 18px;
    text-transform: unset;
    line-height: 27px;
    font-weight: 700;
	width: 80%;
}
/* #hero .intro-info .banner-box-image {
	height: auto;
} */
/* #hero .intro-info .banner-box-content p span {
	font-size: 34px;
} */
/* #hero .intro-info .banner-btn-box .banner-btn {
	width: auto;
	margin-right: 14px;
}
#hero .intro-info .banner-btn-box .banner-btn a,
#hero .intro-info .banner-btn-box .banner-btn.border-btn a {
	background: #ffffff;
	height: 100%;
	line-height: 1.5;
	color: #ed133c;
	border: none;
	font-weight: 900;
	padding: 10px 26px 9px;
    border-radius: 25px;
} */
#hero .intro-info p {
    font-size: 30px;
    color: #ed123c;
    margin-bottom: 30px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
}
#hero .intro-info h2 span {
    color: #1bb1dc;
}
.banner-bottom-link {
    position: absolute;
    bottom: 20px;
    left: 15px;
}

.banner-bottom-link a {
    font-size: 20px;
    color: #ed123c;
}

.banner-bottom-link img {
    height: 20px;
    object-fit: contain;
    width: auto;
    margin-right: 5px;
}
@media (max-width: 767px) {
    #hero .intro-info h2 {
        font-size: 80px;
        margin-bottom: 30px;
        line-height: 42px;
    }
}

#hero .intro-info .btn-get-started,
#hero .intro-info .btn-services {
    font-family: segoeui;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #1bb1dc;
    color: #fff;
}

#hero .intro-info .btn-get-started:hover,
#hero .intro-info .btn-services:hover {
    background: #0a98c0;
}
.theme-space {
    padding: 90px 0px;
}
.banner-btn-box {
    position: relative;
    justify-content: start;
    flex-wrap: wrap;
}

.banner-btn-box .banner-btn {
    width: 158px;
    position: relative;
    margin: 0;
    margin-right: 10px;
}

.banner-btn-box .banner-btn a {
    width: 100%;
    display: block;
    height: 58px;
    position: relative;
    z-index: 99;
    background: #ed123c;
    color: #fff;
    line-height: 58px;
    text-transform: uppercase;
    font-size: 14px;
    border: solid 1px #ed123c;
    border-radius: 3px;
    text-align: center;
    font-weight: 700;
}
.banner-btn-box .banner-btn:after {
    /* content: ""; */
    border: solid 1px #ed123c;
    height: 50px;
    width: 260px;
    position: absolute;
    top: 3px;
    left: -3px;
    z-index: 9;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: hidden;
}
.section-heading {
    position: relative;
    margin-bottom: 40px;
}

.section-heading h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
    font-family: 'Dosis', sans-serif;
}
 .section-heading p {
    margin: 0;
    font-size: 17px;
    margin-top: 10px;
}
.section-bg {
    background: #f2f2f2;
}

/* Info  Section
--------------------------------*/
.Info-section {
    position: relative;
}
.Info-section:after {
    content: "";
    background-image: url(../img/info/4.png);
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -60px;
    top: 50px;
    opacity: 20%;
}
.Info_content_box {
        padding: 35px 35px;
    box-shadow: 0px 0px 25px rgb(127 137 161 / 30%);
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	min-height:360px;
}
.industries-main-box .industries-item .industries-box {
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.Info_content_box:hover, .industries-main-box .industries-item .industries-box:hover {
    transform: scale(1.1);
}
.Info_content_box .Info_content_icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
}

.Info_content_box .Info_content_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Info_content_box h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Dosis', sans-serif;
}

.Info_content_box p {
    text-align: center;
    font-size: 16px;
    color: #000;
}

.Info_content_box .Info_content_link a {
    text-align: center;
    color: #ea2349;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}

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

.Info_content_box .Info_content_link a:hover {
    text-decoration: underline;
}

/* Info  Section End
--------------------------------*/

/* Home About  Section  
--------------------------------*/
.Home-about {
    height: 606px;
    background-size: cover;
    background-repeat: no-repeat;
	padding-top:80px;
	overflow:unset
}
.Home-about-box {
    background: #ea1a41;
    padding: 70px 60px;
    border-radius: 3px;
    position: relative;
    margin-bottom: 0;
}

.Home-about-box h4 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.Home-about-link {
    margin-top: 15px;
    position: relative;
}

.Home-about-link a {
    width: 133px;
    height: 49px;
    border: solid 1px #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.Home-about-link a:hover {
    background: #fff;
    color: #ed123c;
}
.Home-about-box h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 30px;
    font-family: 'Dosis', sans-serif;
    width: 90%;
}
.Home-about-box:after {
    content: "";
    background-image: url(../img/Shape.png);
    position: absolute;
    width: 84px;
    right: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 25px;
    height: 78px;
}
.Home-about-box p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
}
/* Home About  Section End
--------------------------------*/
 
 /* Testimonials */   
 .testimonials-section {
    background: #f9f7ef;
    position: relative;
}
.quote {
    background: #ed123c;
    padding: 15px 20px 5px 20px;
    border-radius: 5px;
    margin-bottom: 42px;
    margin-right: 30px;
    position: relative;
}
.quote p {
    font-size: 26px;
    margin-bottom: 0px;
    color: #fff;
    text-align: left;
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
}
.quote:after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 34px 21px 0 0px;
    border-color: #ed123c transparent transparent transparent;
    position: relative;
    top: 46px;
    left: 42px;
     /* IE 9 */
}
.student {
    display: flex;
    position: relative;
}
.student p {
  position: relative;
  top: 5px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  opacity: 70%;
}

.student h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
  color: #000;
  font-family: 'Dosis', sans-serif;
}
.student .photo {
    height: 72px;
    width: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.student:after {
    content: "";
    background: url(../img/icon_.png);
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    top: 0;
    width: 52px;
    height: 46px;
    right: 20%;
}
/* Testimonials End*/   
/* Client section*/  
.Our-clients-section {
    padding: 70px 0px;
} 
.client-logo {
    width: 110px;
    height: 50px;
    border-radius: 3px;
    overflow: hidden;
    padding: 0px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
	margin:auto;
}
.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} 
/* Client section End*/   
/* industries section*/  
.industries-section {
    padding: 100px 0px 50px 0px;
    position: relative;
}

.industries-main-box {
    display: flex;
    flex-wrap: wrap;
}

.industries-main-box .industries-item {
    width: 50%;
    text-align: center;
    padding: 0px 15px;
}

.industries-main-box .industries-item .industries-box {
    width: 100%;
    max-width: 364px;
    margin: auto;
    box-shadow: 0px 0px 25px rgb(127 137 161 / 30%);
    margin-bottom: 30px;
    background: #fff;
}
.industries-section:after {
    content: "";
    background-image: url(../img/Ellipse.png);
    position: absolute;
    width: 1224px;
    height: 1224px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    right: -498px;
    z-index: 0;
    opacity: 0.8;
}
.industries-section .container {
    position: relative;
    z-index: 9;
}
.industries-content-box {
    padding: 20px;
    text-align: left;
    border-bottom: solid 1px #eee;
}

.industries-content-box h3 {
    font-size: 22px;
    color: #000;
    font-family: 'Dosis', sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
}

.industries-content-box  p {
    margin: 0;
    font-size: 16px;
    color: #000;
    opacity: 60%;
}

.industries-pricing-box {
    padding: 20px;
    text-align: left;
    padding-bottom: 40px;
}

.industries-pricing-box ul {
    padding: 0;
    list-style: none;
}

.industries-pricing-box ul li {
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    opacity: 60%;
    font-weight: 400;
    line-height: 27px;
}

.industries-pricing-box ul li img {
    margin-right: 10px;
    opacity: 1;
}

.industries-btn-box a {
    width: 117px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ed123c;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border: solid 1px #ed123c;
}

.industries-btn-box a:hover {
    background-color: #fff;
    color: #ed123c;
}
.industries-image-box {
    width: 100%;
    height: 295px;
}

.industries-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industries-main-box .industries-item:nth-child(even) {
    padding-top: 50px;
}
/* industries section End*/  

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0;
    font-size: 14px;
    background: #fff;
	position:relative;
}
.back-top {
    position: absolute;
    top: -40px;
    left: 15px;
}
#footer .footer-top {
    padding: 70px 0 40px 0;
    background: #ed123c;
}
#footer .footer-top .footer-info img {
    height: 100%;
}

#footer .footer-top .footer-links li {
    color: #fff;
    font-size: 14px;
}
#footer .footer-top .footer-info {
    margin-bottom: 30px;
    margin-top: 0;
    height: 66px;
}
#footer .footer-top .footer-links ul a i {
    font-size: 11px;
    opacity: 0.9;
}

#footer .footer-top .social-links a {
    font-size: 16px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 0px 0;
    margin-right: 3px;
    border-radius: 0;
    text-align: center;
    width: 20px;
    height: 17px;
}

#footer .footer-top .social-links a:hover {
    opacity: 0.8;
}

@media (max-width: 574px) {
    #footer .footer-top .social-links a {
        margin-bottom: 25px;
    }
}

#footer .footer-top h4 {
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
    font-size: 18px;
    padding-bottom: 0;
    font-family: 'Dosis', sans-serif;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
.footer-links.footer-links-box {
    padding-left: 40px;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-top .footer-links.social-media-link ul li a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#footer .footer-top .footer-links.social-media-link ul li a img {
    width: 33px;
    height: 33px;
    margin-right: 10px;
}
#footer .footer-top .footer-links ul li {
    padding: 1px 0;
    position: relative;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    font-size: 14px;
    margin-bottom: 7px;
    color: #fff !important;
    display: block;
}

#footer .footer-top .footer-links ul a:hover {
    opacity: 0.8;
}

.copyright-box {
    background: #0a0a0a;
    padding: 34px 0px;
}
#footer .copyright {
    text-align: center;
    padding-top: 0;
    color: #fff;
    font-size: 14px;
    padding: 24px 0px;
    border-top: 1px solid rgb(255 255 255 / 33%);
    background: #eb143e;
}
#footer .footer-top .social-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
a.back-to-top:hover {
    border-color: #ed123c;
}
 /* contact Page */
.contact_details {
    margin-bottom: 60px;
}

.contact_details h2 {
    font-size: 32px;
    font-weight: 300;
    color: #454545;
	    font-family: 'Dosis', sans-serif;
}

.contact_details ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.contact_details ul li a, .contact_details ul li span {
    font-size: 18px;
    color: #454545;
    line-height: 26px;
    display: block;
	    font-family: 'Dosis', sans-serif;
}
.contact_us form{
    display: flex;
    flex-wrap: wrap;
    padding: 30px 30px;
	 background: #fff;
}
.cont_shadow {
    box-shadow: -1px 0 7px 0 #a0a0a033; 
}
.contact_add_bg {
/*     background-image: linear-gradient(rgb(0 0 0 / 60%),rgb(0 0 0 / 45%)),url(../img/contact.png); */
    padding:40px 60px;
    background-size: cover;
    background-position: center;
/*     box-shadow: 4px 4px 11px 0 #a0a0a0; */
    display: flex;
    flex-direction: column;
	height:100%;
    justify-content: center;
    align-items: center;
	background-color: #fff;
    border-left: 1px solid #ed123c;
}
.contact_add_bg .col-md-12:last-child p {
    margin: 0;
    padding-bottom: 0;
}

.contact_add h4 {
    color: #000;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact_us_page .home_contact .form-group .form-control {
    max-width: 100%;
    background: #f2f2f2;
    border: solid 1px #ddd;
}
.contact_add p {
    color: #000;
    padding-left: 15px; 
    padding-bottom: 30px;
}
.contact_add p a {
    color: #000;
}
.contact_add i {
    color: #000;
    padding-right: 15px;
}
/* contact Page End*/
/* who we are*/
.about_content.who-we-are h2 {
    text-align: right;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 85px;
}
.about_content.who-we-are hr {
    border: 5px solid #ed123c;
    position: absolute;
    right: 20px;
    top: -40px;
    width: 93px;
}
.nmPara.movingLing.wow.fadeInUp {
    position: relative;
}
.nmPara>p {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    padding: 25px 15px;
    word-spacing: unset;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}
.nmPara.movingLing>p {
    border-bottom: 1px solid hsla(0,0%,0%,0);
    border-top: 1px solid hsla(0,0%,0%,0);
}
.nmPara.movingLing p::before {
    border-top: 2px solid #ddd;
    content: "";
    height: 1px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 10px;
    width: 97%;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
}
.nmPara.movingLing p::after {
    border-bottom: 2px solid #ddd;
    content: "";
    height: 1px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 97%;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
}
.nmPara.movingLing:hover p::before {
    border-top: 1px solid #ed123c;
    width: 97%;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
}
.nmPara.movingLing:hover p::after {
    border-bottom: 1px solid #ed123c;
    width: 97%;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
}
.nmRight>p {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    margin-top: 15px;
    padding: 0 15px;
}
.nmRight-btn ul > li a {
    color: #000000;
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 800;
    margin-right: 30px;
}
.nmRight-btn ul > li a img {
    display: inline-block;
    margin: 0 0 0 5px;
    vertical-align: inherit;
}
.nmRight-btn>ul {
    display: flex;
    list-style: none;
    padding-left: 15px;
    flex-wrap: wrap;
    margin: 0;
}

.nmRight-btn>ul>li {
    margin-bottom: 10px;
}

.nmRight-btn ul > li a:hover {
    color: #ed123c;
}
/* who we are End*/
/* About Page*/
.about-bannner-image {
    overflow: hidden;
    width: 100%;
    height: 700px;
}

.about-bannner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
  
.about-page-content {
    width: 60%;
    margin: auto;
        font-family: 'Dosis', sans-serif;
    padding: 30px 0px;
}
 
.about-page-content h3 {
        font-family: 'Dosis', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
    color:#000000;
    position: relative;
    padding-bottom: 15px;
}

.about-page-content p {
    font-size: 15px;
    color:#000000;
    font-weight: 500;
    line-height: 24px;
}

.about-page-content p:last-child {
    margin: 0;
}
.about-bottom .about-bannner-image {
    overflow: hidden;
    width: 100%;
    height: 400px;
}

@media (max-width:992px) {
	.about-page-content {
    width: 80%;
	}
	.about-bannner-image {
    height: 500px;
}
}
@media (max-width:767px) {
	.order-box-1 {
    order: 1;
}

.order-box-2 {
    order: 2;
}
section.about-bannner.section-bg .about-page-content{
	 width: 90%;
	  padding: 30px 0px ;
}
section.about-bannner.section-bg {
    background: #fff;
}
.about-page-content {
    width: 100%;
}
.about-page-content { 
    padding: 30px 0px 0px 0px ;
}
section.about-bottom.section-bg.theme-space {
    padding-bottom: 0;
}
.banner-btn-box .banner-btn a {
    width: 100%;
    display: block;
    height: 40px;
    position: relative;
    z-index: 99;
    background: #ed123c;
    color: #fff;
    line-height: 40px;
    text-transform: uppercase;
    font-size: 16px;
}
#footer .footer-top .footer-info, #footer .footer-top .footer-links.social {
    /*display: none;*/
}


.banner-btn-box .banner-btn {
    width: 160px;
    position: relative;
    margin: 0px 5px;
}
.banner-btn-box .banner-btn:after{content:none;}
.about-page-content h3 {
        font-family: 'Dosis', sans-serif;
    font-size: 21px;
    margin-bottom: 25px;
    color: #000000;
}
.about-page-content p {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}
.about-bottom .about-bannner-image { 
    height: 250px;
}
.row.align-items-center.theme-space.pb-0 {
    padding: 0;
}
}
/* About Page End*/   
 
/* Team Page*/  
.inner-page-banner#hero {
    height: 500px;
}

.inner-page-banner#hero .intro-info h2 {
    font-size: 65px;
    text-transform: uppercase;
        font-family: 'Dosis', sans-serif;
    color: #ed123c;
    line-height: 80px;
	margin:0;
}
.mainBOXteam .imgBOXteam {
     height: 338px;
     width: 100%;
     overflow: hidden;
     background: #fff;
     border-radius: 3px;
}
.mainBOXteam .ContentBOXteam {
    height: 100%;
    background: #fff;
    padding: 40px 40px;
    border: solid 1px #ed123c;
    border-radius: 3px;
}

.mainBOXteam .ContentBOXteam h3 {
    color: #7f7f7f;
    font-size: 26px;
    margin-bottom: 8px;
}

.mainBOXteam .ContentBOXteam span {
    font-size: 14px;
    color: #ed123c;
    display: block;
    margin-bottom: 30px;
}

.mainBOXteam .ContentBOXteam p {
    font-size: 16px;
    color: #454545;
}
.mainBOXteam .imgBOXteam img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.socialBOXteam ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.socialBOXteam ul li {
    margin-left: 30px;
    width: 20px;
    height: 24px;
}

.socialBOXteam ul li:first-child {
    margin: 0;
}

.socialBOXteam ul li img {
    max-width: 100%;
}
.EmailBOXteam a {
    width: 120px;
    height: 40px;
    background: #ed123c;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: auto;
    border: solid 1px #ed123c;
}

.EmailBOXteam {
    text-align: right;
}

.EmailBOXteam a:hover, .EmailBOXteam a:focus {
    background: #fff;
    color: #ed123c;
}
.mainBOXteam {
    margin-bottom: 30px;
}
@media (max-width:992px) {
 .mainBOXteam .imgBOXteam {
    height: 220px; 
}
.inner-page-banner#hero .intro-info h2 {
font-size: 50px;
}

}

@media (max-width:767px) {
  .inner-page-banner#hero {
    height: 440px;
    padding: 100px 0px;
    display: flex;
}
.inner-page-banner#hero .intro-info h2 {
    font-size: 30px; 
}
 .mainBOXteam .imgBOXteam {
    height: 300px;
    display: none;
}
}
@media (max-width:600px) {
	.mainBOXteam .ContentBOXteam { 
    padding: 15px;
}
}
/* Team Page End*/  


/* Pricing Page*/  
section#hero.Pricing-banner {
    display: none;
}
.Pricing-page{
    /* background-image: url(../img/Pricing.jpg);
    min-height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px  !important; */
}
.PricingBOX {
    position: relative;
	margin-bottom: 50px;
}

.PricingBOX .PricingBOX_heading h3 {
    background: #ed123c;
    font-size: 22px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding: 17px 12px;
        font-family: 'Dosis', sans-serif;
    margin: 0;
}
 

.PricingBOX .PricingBOX_content {
    background: #ffffffa3;
    position: relative;
    padding: 0px 0px 60px 0px;
}

.PricingBOX .PricingBOX_content ul {
    padding: 0;
    margin: 0;
    text-align: center;
    list-style: none;
}
.PricingBOX .PricingBOX_content ul li img {
    width: 15px;
}
.PricingBOX .PricingBOX_content ul li {
    padding-top: 30px;
    font-size: 17px;
    color: #454545;
    /* min-height: 90px; */
        font-family: 'Dosis', sans-serif;
    cursor: pointer;
}
.PricingBOX .PricingBOX_content ul li:hover {
    color: #ed123c;
}
.PricingBOX_button .btn {
    width: 260px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed123c;
    border-radius: 0;
    color: #fff;
    font-size: 19px;
    border: solid 1px #ed123c;
    margin: auto;
    margin-top: -15px;
    z-index: 99;
    position: relative;
    border-radius: 3px;
}
.PricingbottomLink {
    text-align: right;
}

.PricingbottomLink a {
    font-size: 19px;
    color: #454545;
    text-decoration: underline;
}
.PricingBOX_button .btn:hover {
    background: white;
    color: #ed123c;
}
@media (max-width: 767px) {
	.PricingbottomLink {
    text-align: center;
}
	.Pricing-page{
    background: #f2f2f2 !important;
}
.PricingBOX {
    position: relative;
    margin-bottom: 50px;
}
section#hero.Pricing-banner {
    display: flex;
    height: 440px;
}
.PricingBOX .PricingBOX_content {
background: #fff;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
    border-bottom: solid 1px #ffffff70;
    padding-bottom: 30px;
}
}
/* Pricing Page End*/ 
  
/* how_it_work_page*/ 
.Pricing-page.how_it_work_page{
    background-image: none; 
}
  .how_workPricingBox {
    display: inline-block;
    position: relative;
    padding: 0;
    text-align: left;
    border-bottom: solid 1px rgb(229 26 67 / 26%);
}

.how_workPricingBox .PricingBoxNumber {
    width: 40px;
    height: 40px;
    background: #ed123c;
    float: left;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 20px;
}

.how_workPricingBox .how_workBoxContent {
    padding-left: 60px;
    position: relative;
}

.how_workPricingBox .how_workBoxContent h2 {
    font-size: 20px;
}

.how_workPricingBox .how_workBoxContent p {
    font-size: 15px;
}

.how_workPricingBox .PricingBoxNumber h3 {
    color: #fff;
    font-size: 20px;
    line-height: 38px;
}

.how_it_work_page  .PricingBOX .PricingBOX_content {
    padding: 30px 20px;
    border: solid 1px #eee;
    border-top: none;
}

.how_it_work_page .PricingBOX .PricingBOX_content li {
    padding: 0px 0px 30px 0px;
}
.how_it_work_page .PricingBOX .PricingBOX_content li:last-child .how_workPricingBox {
    border: none;
}

.how_it_work_page .PricingBOX .PricingBOX_content li:last-child {
    padding: 0;
}
.stripe-box {
    background: #635bff;
    padding: 30px;
}

.stripe-box .stripe-box-image {
    width: 150px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
}

.stripe-box .stripe-box-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stripe-box .stripe-box-content p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.stripe-box .stripe-box-content h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
}
.stripe-box-btn .btn {
    color: #635bff;
    background: #fff;
    width: 100%;
    border-radius: 50px;
    text-transform: uppercase;
    border: solid 1px #fff;
}

.stripe-box-btn .btn:hover {
    background: transparent;
    color: #fff;
}
.how_it_work_faq {
    /* padding: 30px 0px; */
}
.how_it_work_faq {
    padding: 60px 0px 30px 0px;
}

.faq_heading h3, .Reviews_heading h3 {
    font-size: 32px;
    color: #454545;
        font-family: 'Dosis', sans-serif;
    margin-bottom: 30px;
}
.FAQ_box .card a.card-link:hover{
	background: #ed123c !important;
    color: #fff !important;
}
.FAQ_box .card a.card-link {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
    margin: 0;
    border-color: #ddd;
    background: #fff;
    color: #000;
    position: relative;
}

.FAQ_box .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
    overflow: hidden;
    margin-bottom: 10px;
    color: #333;
    background-color: #fff;
    border: #ddd 1px solid;
}

.FAQ_box .card .card-header {
    padding: 0;
    border: none;
}
.FAQ_box .card a.card-link.collapsed:after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all .35s;
	-webkit-transform: rotate(
0deg
);
    transform: rotate(
0deg
);
}
.FAQ_box .card a.card-link:after {
	    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all .35s;
    -webkit-transform: rotate(
90deg
);
    transform: rotate(
90deg
);
}
.FAQ_box div#accordion {
    column-count: 1;
}

.FAQ_box h4 {
    font-size: 20px;
    color: #707070;
    margin-bottom: 20px;
}

.FAQ_box p {
    font-size: 14px;
    color: #7f7f7f;
    margin: 0;
}

.FAQ_box {
    position: relative;
    margin-bottom: 50px;
}
.Customer_Reviews_section{
	padding:30px 0px;
}
.Reviews-box {
    margin: 10px;
    background: #fff;
}

.Reviews-box .Reviews-image {
    overflow: hidden;
    height: 300px;
    width: 100%;
}

.Reviews-box .Reviews-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Reviews-box .Reviews-content {
    padding: 30px 20px;
    text-align: center;
}

.Reviews-box .Reviews-content h3 {
    font-size: 25px;
    color: #454545;
        font-family: 'Dosis', sans-serif;
    margin-bottom: 20px;
}
.Reviews-box .Reviews-content  p {
    font-size: 15px;
        font-family: 'Dosis', sans-serif;
    margin-bottom: 22px;
}


.Reviews-box .Reviews-content  h6 {
    font-size: 14px;
    margin: 0;
    color: #000;
    font-weight: 900;
}
/* how_it_work_page End*/   
/* Testimonials */   
.quote {
    background: #ed123c;
    padding: 15px 20px 5px 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    margin-right: 30px; 
    position: relative;
}
.quote p {
    /* font-size: 16px; */
    /* margin-bottom: 0px; */
    /* color: #fff; */
    /* text-align: left; */
}
.quote:after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 23px 0 2px;
    border-color: #ed123c transparent transparent transparent;
    position: relative;
    top: 45px;
    left: 24px;
}
.student {
    display: flex;
    position: relative;
}
.student p {
  position: relative;
  top: 5px;
  text-transform: capitalize;
}

.student h3 {
  font-size: 20px;
  /* font-weight: bold; */
  margin-bottom: 0;
  color: #000;
}
.student .photo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.student:after {
    /* content: ""; */
    /* background: url(../img/icon_.png); */
    /* background-repeat: no-repeat; */
    /* background-position: bottom; */
    /* position: absolute; */
    /* bottom: 6px; */
    /* width: 150px; */
    /* height: 150px; */
    /* left: 120px; */
}
/* Testimonials End*/ 


@media (min-width: 1020px) {
	.container-fluid{
		padding-right: 40px;
    padding-left: 40px;
	}
	.banner-bottom-link { 
    left: 40px;
}
.fixed-social-links { 
    right: 40px;
}
.back-top { 
    left: 40px;
}
}
@media (max-width: 991px) {
    .theme-space {
        padding: 40px 0px;
    }
	.fixed-social-links {
    position: absolute;
    top: 34%;
    right: 65px;
}
/*img.img-fluid.small-logo {*/
/*    display: block;*/
/*}*/
/*img.img-fluid.big-logo {*/
/*    display: none;*/
/*}*/
.FAQ_box div#accordion {
    column-count: 1;
}
}

@media (min-width: 992px) {
    nav.main-nav.d-none.d-lg-block.Sign-in-box {
        padding-left: 15%;
    }
    nav.main-nav.d-none.d-lg-block.Sign-in-box a {
        font-weight: 700;
    }
    header nav.main-nav.d-none.d-lg-block {
        display: flex !important;
        width: 100%;
        justify-content: flex-end;
        float: right;
        text-align: right;
        align-items: center;
    }

    header nav.main-nav.d-none.d-lg-block > ul {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
	
}
/* .main-nav > ul > li:last-child a {
    background: #ed123c;
    padding: 0px;
    height: 30px;
    width: 78px;
    text-align: center;
    color: #fff !important;
    line-height: 27px;
    border: solid 1px #ed123c;
    border-radius: 3px;
} */

@media (max-width: 767px) {
	.banner-btn-box .banner-btn {
    
    margin-bottom: 20px;
}
    .about-second-image {
        margin-top: 30px;
    }
    .footer-details ul li:after {
        content: none;
    }
    .after-price-image {
        width: 100%;
        height: auto;
        margin-top: 50px;
    }
    .form-box {
        max-width: 100%;
    }
    .section-header h3 {
        margin-bottom: 30px;
        font-size: 34px;
    }

    #hero .intro-info .form-box .submit-box button.btn-get-started.scrollto span {
        display: none;
    }
    #hero .intro-info .form-box .submit-box button.btn-get-started.scrollto {
        width: 80px;
    }
}
.footer-details ul li:last-child:after {
    content: none;
}
/* .main-nav > ul > li:last-child a:hover {
    background: transparent;
    color: #ed123c !important;
} */

.banner-btn-box .banner-btn a:hover {
    background: white;
    color: #ed123c;
}

.banner-btn-box .banner-btn:hover:after {
    left: 0;
    bottom: 0;
    top: 0;
}

.contact_us_page .home_contact .form-group {
    margin-bottom: 25px;
}

/*.client-logo {*/
/*    border-radius: 3px;*/
/*    width: 100%;*/
/*    height: 120px;*/
/*    overflow: hidden;*/
/*    padding: 10px;*/
/*    border: solid 1px #ed123c;*/
/*}*/

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} 

.column-item {
    padding: 0px 15px;
}

.contact-form  .form-control {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 25px;
    color: #727272!important;
    font-size: 16px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 5px;
    min-height: 52px;
    font-family:'Nunito Sans', sans-serif;
}
.wpcf7 .ajax-loader {
    display: none !important;
}
.contact-form .form-control:hover, .contact-form .form-control:focus {
    border-color: #ed123c;
    box-shadow: none;
}
.section-heading p {
    font-size: 16px;
    margin: 0;
}
.headerLine {
    width: 70px;
    height: 3px;
    display: inline-block;
    background: #ed123c;
    border-radius: 3px;
    margin: 15px 0px;
    margin-bottom: 10px;
}
@media (max-width: 991px) {
.contact_add_bg {
padding: 30px 30px;
}
}
section.about-bottom.section-bg.theme-space {
    padding: 40px 0px;
}
.section-heading:after {/* content: ""; */background: #ed123c;width: 70px;height: 3px;position: absolute;left: 0;right: 0;margin: auto;bottom: 0;}

.about-page-content h3:after {
    content: "";
    background: #ed123c;
    width: 70px;
    height: 3px;
    position: absolute;
    left: 0;
    margin: auto;
    bottom: 0;
}
.contact_title.section-heading.text-center:after {
    content: none;
}

.contact_title.section-heading.text-center {
    padding: 0;
}
.contact_us_page .home_contact .form-group .form-control:hover, .contact_us_page .home_contact .form-group .form-control:focus {
    border-color: #ed123c;
}
.contact_us .col-md-6.cont_shadow.wow.fadeInUp.animated {
    background: #fff;
}
@media (max-width: 1025px) {
	.main-nav > ul > li{
		padding-left: 25px;
	}
	.Home-about-box {
    background: #ea1a41;
    padding: 50px 50px;
	}
	#footer .footer-top .footer-links ul li br {
    display: none;
}
}
@media (min-width: 1020px) {
 
	.banner-bottom-link { 
    left: 40px;
}
 
}
@media (max-width: 991px) {
    .theme-space {
        padding: 40px 0px;
    }
	 .footer-links.footer-links-box {
    padding-left: 0;
}
.Home-about {
	padding: 80px 0px;
height: auto;
}
#hero {
    width: 100%;
    height: auto;
    position: relative;
/*     background: #f9f7ef; */
    background-size: cover;
    padding: 50px 0px;
}
#hero .intro-info .banner-box-content p { 
    width: 100%;
}
.intro-image {
    margin-top: 40px;
}
.student:after {
content: none;
}
img.img-fluid.small-logo {
    /* display: block; */
}
img.img-fluid.big-logo {
    /* display: none; */
}
 
}

@media (max-width: 993px) {
	.topBar{
		display:none;
	}
}
@media (min-width: 992px) {
    nav.main-nav.d-none.d-lg-block.Sign-in-box {
        padding-left: 15%;
    }
    nav.main-nav.d-none.d-lg-block.Sign-in-box a {
        font-weight: 700;
    }
    header nav.main-nav.d-none.d-lg-block {
        display: flex !important;
        width: 100%;
        justify-content: flex-end;
        float: right;
        text-align: right;
        align-items: center;
    }

    header nav.main-nav.d-none.d-lg-block > ul {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
	
}
/* .main-nav > ul > li:last-child a img {
    width: 21px;
    height: 21px;
    margin-right: 8px;
}
.main-nav > ul > li:last-child a:hover{background: transparent; color:#ed123c !important;}
.main-nav > ul > li:last-child a {
    background: #ed123c;
    padding: 0px;
    height: 44px;
    width: 116px;
    text-align: center;
    color: #fff !important;
    line-height: 44px;
    border: solid 1px #ed123c;
    border-radius: 3px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
} */


@media (max-width: 767px) {
    .quote {
        margin-right: 0;
    }
	.banner-btn-box .banner-btn {
    
    margin-bottom: 20px;
}
 .industries-main-box .industries-item .industries-box {
    width: 100%;
 max-width: 100%;
 }
    .footer-details ul li:after {
        content: none;
    }
  

    #hero .intro-info .form-box .submit-box button.btn-get-started.scrollto span {
        display: none;
    }
    #hero .intro-info .form-box .submit-box button.btn-get-started.scrollto {
        width: 80px;
    }
	 
#footer .footer-top .footer-links {
    margin-bottom: 30px;
    border-bottom: solid 1px #ffffff70;
    padding-bottom: 30px;
}
#footer .footer-top .footer-links.social-media-link {
    margin: 0;
    padding: 0;
    border: none;
}
.industries-main-box .industries-item {
width: 100%;
}
.industries-main-box .industries-item:nth-child(even) {
    padding-top: 0px;
}
}
 
 
 @media (max-width: 600px) {
.banner-btn-box .banner-btn {
width: 46%;
}
.intro-image {
    height: auto;
    width: 100%;
}
}
.home_contact .form-group .form-control {
    height: 52px;
    max-width: unset;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}
.home_contact .form-group textarea.form-control {
    max-width: 100%;
    height: auto;
}
.form-group.submit-button .btn {
    color: #ffffff;
    font-size: 18px;
    background: #ed123c;
    min-width: 130px;
    text-align: center;
    border: solid 1px #ed123c;
    border-radius: 3px;
    text-transform: uppercase;
}
.form-group.submit-button .btn:hover, .form-group.submit-button .btn:focus {
    background: #fefefe;
    color: #ed123c;
    box-shadow: none;
}
.contact_us_page .home_contact .form-group .form-control {
    max-width: 100%;
    background: #f2f2f2;
    border: solid 1px #ddd;
}
.wpcf7-not-valid-tip {
   color: #dc3232;
    font-size: 13px !important;
    font-weight: normal;
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    top: -17px;
    right: 0;
}
.wpcf7-form-control-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #eb133d;
    background: #ed123c;
    color: #fff;
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    background: #46b450;
    text-align: center;
    color: #fff;
}
.slick-slide .row {
    margin: 0;
}
dl.terms dt {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    text-decoration: underline;
}

dl.terms dd {
    padding-left: 20px;
}

dl.terms dd dl dt {
    font-size: 16px;
    margin: 0;
    text-decoration: unset;
}

dl.terms dd dd {
    padding-left: 20px;
}

section.about-bottom.section-bg.theme-space.pb-0.error-section {
    padding: 150px 0px !important;
    text-align: center;
}
section.about-bottom.section-bg.theme-space.pb-0.error-section .about-page-content h3:after {
    margin-left: auto;
    margin-right: auto;
    right: 0;
}

section.about-bottom.section-bg.theme-space.pb-0.error-section .about-page-content h3 {
    font-size: 60px;
}
 

section.about-bottom.section-bg.theme-space.pb-0.error-section .about-page-content {
    width: 100%;
}
dl.terms p {
    margin-bottom: 10px;
}
.topBar-link ul li a:hover, .topBar .topBar-text p a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.mainBOXteam .new-mainBOXteam .imgBOXteam {
    height: 300px;
    width: 100%;
    overflow: hidden;
    background: #fff;
       border-radius: 0;
    border-bottom: solid 1px #ed123c;
}


.new-mainBOXteam {
    margin-bottom: 30px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.new-mainBOXteam:hover{margin-top: -10px;}
.mainBOXteam .new-mainBOXteam .ContentBOXteam {
    height: 100%;
    background: #fff;
    padding: 20px;
    border: none;
    border-radius: 0;
    text-align: center;
}
.mainBOXteam .new-mainBOXteam .imgBOXteam img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mainBOXteam .new-mainBOXteam .ContentBOXteam span {
    font-size: 14px;
    color: #ed123c;
    display: block;
    margin-bottom: 8px;
}

.mainBOXteam .new-mainBOXteam .ContentBOXteam p {
    font-size: 16px;
    color: #454545;
    display: -webkit-box;
    max-width: 100%;
    height: 124px;
    margin: 0 auto;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#mainBOXteamModal  .new-mainBOXteam .ContentBOXteam p {
    font-size: 16px;
    color: #454545;
    display: unset;
    max-width: unset;
    height: unset;
    margin: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: unset;
    text-overflow: unset;
}
#mainBOXteamModal .new-mainBOXteam {
    margin: 0;
    width: 100%;
}
#mainBOXteamModal .mainBOXteam {
    margin-bottom: 0;
}

/*  Login and Register  */
.page-main {
	padding-top: 120px;
}
.login-wrapper {
	padding: 70px 0;
	position: relative;
}
.login-wrapper::after {
	content: "";
	position: absolute;
	top: -120px;
	right: 0;
	width: 363px;
	height: 666px;
	background-image: url('/wp-content/uploads/2023/03/right-ellipse.png');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}
.login-wrapper::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 347px;
	height: 411px;
	background-image: url('/wp-content/uploads/2023/03/left-ellipse.png');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}
.login-wrapper .login-register {
	max-width: 460px;
	margin: auto;
	background-color: #F9F7EF;
	border: 1px solid #E8E4E4;
	border-radius: 2px;
	padding: 40px;
}
.login-wrapper .login-register .sec-ttl {
	margin-bottom: 40px;
	text-transform: uppercase;
    color: #000000;
    font-family: 'Dosis', sans-serif;
}
.login-wrapper .login-register form .form-group {
	margin-bottom: 16px;
}
.login-wrapper .login-register form .form-group label {
	color: #000;
    line-height: 1.36;
    margin-bottom: 12px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.login-wrapper .login-register form .form-group label .pass-show {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	cursor: pointer;
}
.login-wrapper .login-register form .form-group label .pass-show img {
	width: 100%;
}
.login-wrapper .login-register form .form-group label .pass-show::before {
	content: "";
	position: absolute;
	top: calc(50% + 2px);
    left: -2px;
	width: 20px;
	height: 1px;
	background: #10100f;
	transform: rotate(-35deg);
	opacity: 0;
	visibility: hidden;
}
.login-wrapper .login-register form .form-group.password.active label .pass-show::before {
	opacity: 1;
	visibility: visible;
}
.login-wrapper .login-register form .form-group input {
	font-size: 14px;
    line-height: 1.2;
    padding: 14px 16px;
    height: auto;
	color: #000;
	border: 1px solid #E8E4E4;
}
.login-wrapper .login-register form .form-group input::placeholder {
	color: #BBBBBB;
}
.login-wrapper .login-register form .form-group label.error {
	color: #ed123c;
	padding-top: 5px;
}
.login-wrapper .login-register form .form-group div.reg-err {
	font-size: 14px;
    color: #ed123c;
    padding-top: 5px;
}
#payment-message {
	font-size: 14px;
    color: #ed123c;
}
.login-wrapper .login-register form .btn {
	background: #ed123c;
    padding: 14px 66px;
    text-align: center;
    color: #fff;
    border: solid 1px #ed123c;
    border-radius: 2px;
    font-size: 14px;
	line-height: 1.36;
    text-transform: uppercase;
	display: table;
    margin: 32px auto 0;
	transition: all 0.3s ease-in-out;
}
.login-wrapper .login-register form .btn:hover {
	background: transparent;
	color: #ed123c;
}
.login-wrapper .login-register .login-option .or-divider {
	text-align: center;
}
.login-wrapper .login-register .login-option .or-divider h6 {
	margin: 32px 0;
	font-size: 12px;
    color: #6C757D;
    font-weight: 500;
    line-height: 1.5;
	text-align: center;
	position: relative;
	display: inline-block;
}
.login-wrapper .login-register .login-option .or-divider h6::after,
.login-wrapper .login-register .login-option .or-divider h6::before {
	content: "";
	position: absolute;
	top: calc(50% + 1px);
	transform: translateY(-50%);
	width: 73px;
	height: 1px;
	background-color: #BBBBBB;
}
.login-wrapper .login-register .login-option .or-divider h6::before {
	left: calc(-100% - 3px);
}
.login-wrapper .login-register .login-option .or-divider h6::after {
	right: calc(-100% - 3px);
}
.login-wrapper .login-register .login-option .icon-login {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	margin-bottom: 16px;
	font-weight: 600;
    color: #0B0B0B;
    line-height: 1.36;
	padding: 14px 0 12px;
	width: 100%;
	border: none;
	transition: all 0.3s ease-in-out;
}
.login-wrapper .login-register .login-option .icon-login img {
	width: 20px;
	margin-right: 16px;
	margin-top: -4px;
	transition: all 0.3s ease-in-out;
}
.login-wrapper .login-register .login-option .icon-login:hover {
	background-color: #ed123c;
	color: #fff;
}
.login-wrapper .login-register .login-option .icon-login:hover img {
	filter: brightness(0) invert(1);
}
.login-wrapper .login-register .login-option .account-option {
	text-align: center;
	padding-top: 8px;
	margin-bottom: 0;
}
.login-wrapper .login-register .login-option .account-option a,
.login-wrapper .login-register .login-option p a {
	color: #5872CD;
	font-weight: 700;
}
.login-wrapper .login-register .login-option p {
	margin-bottom: 0;
	padding-top: 12px;
}

@media (max-width: 991px) {
	.page-main {
		padding-top: 100px;
	}
}

@media (max-width: 575px) {
	.page-main {
		padding-top: 90px;
	}
	.login-wrapper {
		padding: 50px 0;
	}
	.login-wrapper .login-register {
		max-width: 84%;
		padding: 25px;
	}
	.login-wrapper::after {
		top: -90px;
		width: 140px;
		height: 250px;
	}
	.login-wrapper::before {
		width: 130px;
		height: 150px;
	}
	.login-wrapper .login-register .sec-ttl {
		margin-bottom: 25px;
	}
	.login-wrapper .login-register form .form-group input {
		padding: 12px 12px 9px;
	}
	.login-wrapper .login-register form .btn {
		padding: 10px 45px 9px;
	}
	.login-wrapper .login-register .login-option .icon-login {
		font-size: 14px;
		padding: 12px 0;
	}
	.login-wrapper .login-register .login-option .icon-login img {
		width: 16px;
		margin-right: 10px;
		margin-top: -2px;
	}
	.login-wrapper .login-register .login-option .account-option {
		padding-top: 0;
	}
}

/*  Pricing-Packages  */
.pricing-packages-wrapper {
	padding: 62px 0;
}
.pricing-packages-wrapper .pricing-ttl h1 {
	font-family: 'Dosis';
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 1.26;
	margin-bottom: 8px;
}
.pricing-packages-wrapper .pricing-ttl p {
	font-size: 16px;
    line-height: 1.36;
    color: #000;
	margin-bottom: 0;
}
.pricing-packages-wrapper .pricing-cards {
	margin-top: 40px;
	gap: 32px;
}
.pricing-packages-wrapper .pricing-cards .card-item {
	width: calc(33.33% - 21.3px);
	border: 1px solid #E8E4E4;
	border-radius: 2px;
	padding: 24px;
	transition: all 0.45s ease-in-out;
}
.pricing-packages-wrapper .pricing-cards .card-item:hover {
	background: #F9F7EF;
	box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.14);
	border-color: transparent;

}
.pricing-packages-wrapper .pricing-cards .card-item .card-head .card-ttl {
	font-family: 'Dosis';
    font-weight: 600;
    color: #000;
    font-size: 22px;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-body {
	border-top: 1px solid #E8E4E4;
	border-bottom: 1px solid #E8E4E4;
	padding: 20px 6px;
	margin: 20px 0;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-body p {
	color: #000;
	font-size: 14px;
    line-height: 1.36;
	margin-bottom: 0;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-body .price {
	font-size: 24px;
    font-weight: 600;
    line-height: 1.36;
    color: #000;
	margin: 24px 0;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-body .price span {
	font-size: 16px;
    font-weight: 400;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-body .btn {
	background: #ed123c;
    padding: 14px 85px;
    color: #fff;
	border: solid 1px #ed123c;
    line-height: 1.36;
    border-radius: 2px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
	transition: all 0.3s ease-in-out;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-body .btn:hover {
	background: transparent;
	color: #ed123c;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-foot ul {
	margin-bottom: 0;
	list-style-type: none;
	padding-left: 26px;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-foot ul li {
	font-size: 14px;
    color: #0B0A0A;
    line-height: 1.36;
    padding: 8px 0;
	position: relative;
}
.pricing-packages-wrapper .pricing-cards .card-item .card-foot ul li::before {
	content: "";
	position: absolute;
	top: 8px;
    left: -26px;
	width: 18px;
	height: 18px;
	background-image: url("/wp-content/uploads/2023/03/check.png");
	background-size: cover;
}

@media (max-width: 991px) {
	.pricing-packages-wrapper .pricing-cards .card-item {
		width: calc(50% - 16px);
	}
}

@media (max-width: 767px) {
	.pricing-packages-wrapper .pricing-cards .card-item {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.pricing-packages-wrapper .pricing-cards .card-item {
		max-width: 320px;
		margin: auto;
	}
}

/*  create job  */
.create-job-wrapper {
	padding: 62px 0 90px;
}
.create-job-wrapper .create-job .job-contain {
	max-width: 310px;
	margin: auto;
}
.create-job-wrapper .create-job .job-contain .contain-item .contain-num {
	font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    color: #000;
	margin-bottom: 30px;
}
.create-job-wrapper .create-job .job-contain .contain-item h1 {
	font-size: 30px;
    text-transform: capitalize;
    color: #000;
    font-family: 'Dosis';
    font-weight: 700;
    line-height: 1.26;
    margin-bottom: 30px;
}
.create-job-wrapper .create-job .job-contain .contain-item p {
	font-size: 16px;
    color: #000;
    line-height: 1.36;
}
.create-job-wrapper .create-job .job-form {
	padding-left: 70px;
	margin-left: 30px;
	border-left: 1px solid #E8E4E4;
}
.create-job-wrapper .create-job .job-form fieldset:not(:nth-of-type(1)) {
	max-width: 480px;
	margin: auto;
}
.create-job-wrapper .create-job .job-form fieldset {
  display: none;
	position: relative;
}
.create-job-wrapper .create-job .job-form fieldset.visible {
  display: block;
}
.create-job-wrapper .create-job .job-contain .contain-item {
  display: none;
}
.create-job-wrapper .create-job .job-contain .contain-item.visible {
  display: block;
}
.create-job-wrapper .create-job .job-form fieldset .form-group {
	margin-bottom: 40px;
	position: relative;
}
.create-job-wrapper .create-job .job-form fieldset .form-group label {
	font: 700 24px/1.24 'Dosis';
    color: #000;
    text-transform: uppercase;
	cursor: pointer;
	margin-bottom: 0;
}
.create-job-wrapper .create-job .job-form fieldset .form-group label.error {
	position: absolute;
    top: calc(100% + 2px);
	display: block;
    font-size: 14px;
    color: #ed123c;
    margin-bottom: 3px;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .multiple-textbox:nth-of-type(2) .form-control {
	margin-top: 28px;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .form-group label.error {
	 bottom: -20px;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item label.error {
	position: absolute;
    padding: 0;
}
.create-job-wrapper .create-job .job-form fieldset .form-group small {
	font-size: 14px;
    color: #444444;
    line-height: 1.36;
	margin-top: 8px;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .form-control {
	margin-top: 16px;
	border: 1px solid #E8E4E4;
	font-size: 12px;
	line-height: 1.36;
	border-radius: 0;
	padding: 16px 16px 13px;
	box-shadow: none;
    color: #000;
	height: auto;
}
.create-job-wrapper .create-job .job-form fieldset .form-group select.form-control {
	appearance: none;
	background-image: url('/wp-content/uploads/2023/03/down.png');
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: 97% center;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .form-control::placeholder,
.create-job-wrapper .create-job .job-form fieldset .form-group select.form-control {
	color: #BBBBBB;
}
.create-job-wrapper .create-job .job-form fieldset .form-group select.form-control option[value=""][disabled] {
  display: none;
}
.create-job-wrapper .create-job .job-form fieldset .form-group select.form-control option {
	font-size: 16px;
	color: #000;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio {
	padding-left: 44px;
}
.create-job-wrapper .create-job .job-form fieldset span.error-text {
	display: block;
	color: #ed123c;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .multiple-textbox {
	gap: 0.8rem;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .multiple-textbox > div {
	width: 100%;
	position: relative;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .custom-control-label::before {
	border: 2px solid #BBBBBB;
	top: 7px;
	left: -44px;
    width: 20px;
    height: 20px;
    box-shadow: none;
	background: transparent;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .custom-control-input:checked~.custom-control-label::after {
	top: 7px;
	left: -44px;
	width: 20px;
    height: 20px;
    border: 6px solid #ed123c;
    border-radius: 100%;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets {
	gap: 32px;
	margin-top: 8px;
	display: none;
	position: relative;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .custom-control-input:checked~.past-templets {
	display: flex;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item {
	width: calc(50% - 16px);
	background: #FFFFFF;
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item label.templet-label {
	width: 100%;
    height: 100%;
	padding: 24px;
	margin-bottom: 0;
	border: 1px solid transparent;
	transition: all 0.3s ease-in-out;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item input {
	appearance: none;
	display: inline;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item h4 {
	font: 600 20px/1.25 'Dosis';
	margin-bottom: 2px;
	text-transform: initial;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item p {
	font: 600 14px/1.36 'Nunito Sans';
    text-transform: initial;
    color: #444444;
    margin-bottom: 0;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item h6 {
	font: 400 12px/1.33 'Nunito Sans';
    color: #6C757D;
    text-transform: initial;
    margin: 24px 0 0;
}
.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item input:checked~label.templet-label {
	background-color: #F9F7EF;
	border-color: #BBBBBB;
}
.create-job-wrapper .create-job .job-form fieldset .btn {
    line-height: 1.36;
    border-radius: 2px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
	padding: 14px 40px 12px;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}
.create-job-wrapper .create-job .job-form fieldset .buttons {
	margin-bottom: 0;
}
.create-job-wrapper .create-job .job-form fieldset .buttons .btn.btn-next {
	background: #ed123c;
	color: #fff;
	border: 1px solid #ed123c;
	
}
.create-job-wrapper .create-job .job-form fieldset .buttons .btn.btn-next:hover {
	background-color: transparent;
	color: #ed123c;
}
.create-job-wrapper .create-job .job-form fieldset.seven .buttons .btn {
	padding: 14px 24px 12px;
	margin-top: 32px;
}
.create-job-wrapper .create-job .job-form fieldset .buttons .btn.btn-prev {
	background: transparent;
	border: 1px solid #444444;
	color: #444444;
}
.create-job-wrapper .create-job .job-form fieldset .buttons .btn.btn-prev:hover {
	background: #444444;
	color: #fff;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .drag-file-area,
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area {
	border: 2px dashed #ED123C;
	border-radius: 2px;
	padding: 64px 0;
	text-align: center;
	margin-top: 32px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area {
	border-color: #444;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .drag-file-area .upload-icon,
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area .upload-icon {
	height: 72px;
	display: block;
	margin: auto;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .drag-file-area label.browse-files,
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area label.browse-files {
	font: initial;
	margin: 22px 0 9px;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .drag-file-area label.browse-files input,
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area label.browse-files input {
	display: none;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .drag-file-area span,
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area span {
	font: 600 16px/1.36 'Nunito Sans';
    color: #444444;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .drag-file-area label.browse-files span,
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area label.browse-files span{
	font-weight: 700;
    color: #7B78FB;
    text-decoration: underline;
    text-transform: initial;
}
.create-job-wrapper .create-job .job-form fieldset .form-group .drag-file-area h6,
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area h6 {
	font-size: 12px;
    font-weight: 600;
    color: #6C757D;
    line-height: 1.33;
	margin-bottom: 0;
}
.create-job-wrapper .create-job .job-form fieldset .total-amount {
	border: 1px solid #E8E4E4;
	padding: 26px 24px 22px;
	margin-bottom: 32px;
}
.create-job-wrapper .create-job .job-form fieldset .total-amount h5 {
	font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.36;
    margin-bottom: 0;
}
.create-job-wrapper .create-job .job-form fieldset .total-amount h4 {
	font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.36;
    margin-bottom: 0;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl {
	border: 1px solid #E8E4E4;
	border-radius: 2px;
	margin: 0;
	padding: 24px 14px 9px;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .form-group {
	margin-bottom: 15px;
	padding: 0 10px;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .form-group label {
	font: 400 14px/1.36 'Nunito Sans';
	text-transform: initial;
	margin-bottom: 0;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .form-group .form-control {
	margin-top: 12px;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .payment-mathod {
	margin-bottom: 9px;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .payment-mathod .custom-radio {
	display: inline-block;
	padding: 0 40px 0 30px;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .payment-mathod .custom-radio:last-child {
	padding-right: 0;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .payment-mathod .custom-radio .custom-control-label{
	font-size: 16px;
}
.create-job-wrapper .create-job .job-form fieldset .card-dtl .payment-mathod .custom-radio .custom-control-label::before,
.create-job-wrapper .create-job .job-form fieldset .card-dtl .payment-mathod .custom-radio .custom-control-input:checked~.custom-control-label::after {
	top: 2px;
    left: -30px;
	width: 16px;
	height: 16px;
}

@media (max-width: 991px) {
	.create-job-wrapper .create-job .job-form {
		padding-left: 35px;
    	margin-left: 0;
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets {
		gap: 20px;
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item {
		width: calc(50% - 10px);
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item label.templet-label {
		padding: 16px;
	}
}

@media (max-width: 767px) {
	.create-job-wrapper .create-job .job-contain,
	.create-job-wrapper .create-job .job-form fieldset:not(:first-child) {
		max-width: 100%;
	}
	.create-job-wrapper .create-job .job-form {
		padding-left: 0;
		border: none;
		padding-top: 20px;
	}
}

@media (max-width: 575px) {
	.create-job-wrapper {
		padding: 50px 0 60px;
	}
	.create-job-wrapper .create-job .job-contain .contain-item .contain-num {
		margin-bottom: 16px;
	}
	.create-job-wrapper .create-job .job-contain .contain-item h1 {
		font-size: 22px;
		margin-bottom: 16px;
	}
	.create-job-wrapper .create-job .job-contain .contain-item p {
		font-size: 15px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group {
		margin-bottom: 30px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group label {
		font-size: 20px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group small {
		margin-top: 4px;
		font-size: 13px;
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio {
		padding-left: 34px;
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .custom-control-label::before,
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .custom-control-input:checked~.custom-control-label::after {
		top: 3px;
		left: -34px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group .form-control {
		padding: 12px 14px 11px;
		margin-top: 10px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group textarea.form-control {
		height: 120px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group label.error {
		font-size: 13px;
		bottom: -22px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group select.form-control {
		background-size: 12px;
	}
	.create-job-wrapper .create-job .job-form fieldset .form-group .multiple-textbox {
		gap: 0.5rem;
	}
	.create-job-wrapper .create-job .job-form fieldset .btn {
		padding: 10px 26px 9px;
	}
	.create-job-wrapper .create-job .job-form fieldset .total-amount {
		padding: 22px 20px 20px;
	}
	.create-job-wrapper .create-job .job-form fieldset .total-amount h5 {
		font-size: 18px;
	}
	.create-job-wrapper .create-job .job-form fieldset .total-amount h4 {
		font-size: 22px;
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets {
		gap: 14px;
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item {
		width: calc(50% - 7px);
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item label.templet-label {
		padding: 12px;
	}
	.create-job-wrapper .create-job .job-form fieldset .custom-radio .past-templets .templet-item h4 {
		font-size: 18px;
	}
}

/*  Login  */
header .login-menu ul {
	list-style: none;
	margin-bottom: 0;
}
header .login-menu ul li .login-btn {
	background: #ed123c;
    padding: 0px;
    height: 44px;
    width: 116px;
    text-align: center;
    color: #fff;
    line-height: 44px;
    border: solid 1px #ed123c;
    border-radius: 3px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .login-menu ul li .login-btn img {
	height: 18px;
	filter: brightness(0) invert(1);
	margin-right: 7px;
	transition: 0.5s;
}
header .login-menu ul li .login-btn:hover {
	background: transparent; 
	color:#ed123c;
}
header .login-menu ul li .login-btn:hover img {
	filter: none;
}
header .login-menu .profile .profile-img {
/* 	width: 48px;
    height: 48px; */
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
}
header .login-menu .profile .profile-img .loggedin-name {
	font-weight: 700;
	color: #000;
}
header .login-menu .profile .profile-img img {
	width: 100%;
	height: 100%;
	border-radius: 100%;
}
header .login-menu .profile .profile-img:hover .loggedin-name {
	color: #f50f2b;
}
header .login-menu .profile .profile-img .profile-menu {
	position: absolute;
    top: calc(100% + 20px);
    right: 0;
    width: 220px;
    padding: 22px;
    background: #FFFFFF;
    box-shadow: 0px 4px 26px rgb(0 0 0 / 12%);
    border-radius: 2px;
	display: flex;
    flex-direction: column;
    gap: 28px;
	opacity: 0;
    visibility: hidden;
	transition: all 0.3s ease-in-out;
}
header .login-menu .profile .profile-img .profile-menu li a {
	font: 600 16px/1.38 'Nunito Sans';
	color: #000;
	position: relative;
	display: block;
	transition: all 0.3s ease-in-out;
}
header .login-menu .profile .profile-img .profile-menu li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url("/wp-content/uploads/2023/03/down.png");
	background-size: 15px;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(-90deg);
	transition: all 0.3s ease-in-out;
}
header .login-menu .profile .profile-img .profile-menu li a:hover {
	color: #ed123c;
}
header .login-menu .profile .profile-img .profile-menu li a:hover::after {
	filter: invert(19%) sepia(97%) saturate(6828%) hue-rotate(343deg) brightness(96%) contrast(93%);
}
header .login-menu .profile .profile-img:hover .profile-menu {
	opacity: 1;
	visibility: visible;
}
header .login-menu .profile .profile-img .profile-menu li:last-child a::after {
	display: none;
}
@media (max-width: 991px) {
	.mobile-nav-toggle {
/* 		margin-right: 16px; */
    	top: 35px;
	}
	.mobile-nav-toggle i {
		margin: 0;
	}
	header .login-menu .profile .profile-img {
		margin-right: 24px;
	}
	header .login-menu ul li .login-btn {
		margin-right: 15px;
	}
}
@media (max-width: 767px) {
	header .login-menu ul li .login-btn {
		margin-right: 38px;
	}
}
@media (max-width: 575px) {
	#header .logo img {
		max-height: 40px;
		margin: 10px 0;
	}
	header .login-menu ul {
		padding-left: 0;
	}
	header .login-menu .profile .profile-img {
		margin-right: 40px;
	}
	header .login-menu .profile .profile-img .profile-menu {
		width: 250px;
		gap: 24px;
	}
	header .login-menu ul li .login-btn {
		height: 38px;
    	width: 100px;
		font-size: 12px;
	}
	.mobile-nav-toggle {
		font-size: 21px;
	}
}

/*  Profile  */
.profile-wrapper {
	padding: 40px 0;
}
.profile-wrapper .profile {
	max-width: 670px;
	margin: auto;
	border: 1px solid #E8E4E4;
    border-radius: 2px;
    padding: 24px;
}
.profile-wrapper .profile hr {
	margin: 32px 0;
    border-color: #E8E4E4;
}
.profile-wrapper .profile .profile-name h4 {
	margin-bottom: 0;
	font: 600 24px/1.25 'Dosis';
    text-transform: uppercase;
    color: #000;
}
.profile-wrapper .profile .profile-name button,
.my-jobs-wrapper .my-jobs .job-head-item .btn,
.view-job-wrapper .view-job .tab-content .edit-profile .btn,
.profile-wrapper .profile .btn-download,
.sample-job-section .sample-job .find-jobs-btn {
	font-size: 14px;
    line-height: 1.36;
    font-weight: 600;
    background-color: #ed123c;
    color: #fff;
    padding: 13px 23px;
    border: 1px solid #ed123c;
    text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}
.profile-wrapper .profile .profile-name button:hover,
.my-jobs-wrapper .my-jobs .job-head-item .btn:hover,
.view-job-wrapper .view-job .tab-content .edit-profile .btn:hover,
.profile-wrapper .profile .btn-downloadm,
.sample-job-section .sample-job .find-jobs-btn {
	background-color: transparent;
	color: #ed123c;
}
.sample-job-section .sample-job .find-jobs-btn:hover {
	background-color: #ed123c;
    color: #fff;
}
.profile-wrapper .profile .profile-name button.save-btn,
.profile-wrapper .profile.edit .profile-name button.edit-btn {
	display: none;
}
.profile-wrapper .profile.edit .profile-name button.save-btn {
	display: block;
}
.profile-wrapper .profile .btn-download {
	margin: 24px auto 0;
    display: table;
}
.sample-job-section .sample-job .find-jobs-btn {
	display: table;
	padding: 12px 45px;
	margin: 48px auto 0;
}
.profile-wrapper .profile .field .form-item {
	position: relative;
}
.profile-wrapper .profile .field .form-item::before {
	content: "";
	position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.profile-wrapper .profile.edit .field .contact-num.form-item::before {
	display: none;
}
.profile-wrapper .profile .field .form-item label {
	display: block;
    font-size: 14px;
    line-height: 1.36;
    font-weight: 600;
    color: #6C757D;
    margin-bottom: 8px;
}
.profile-wrapper .profile .field .form-item input {
	font-size: 16px;
    line-height: 1.36;
    border: none;
    padding: 0;
    width: 100%;
}
.profile-wrapper .profile .field .form-item input:focus-visible {
	outline: none;
}
.profile-wrapper .profile .field .form-item {
	margin-bottom: 16px;
}
.profile-wrapper .profile .field .form-item:nth-last-of-type(1),
.profile-wrapper .profile .field .form-item:nth-last-of-type(2) {
	margin-bottom: 0;
}
.profile-wrapper .profile .ttl {
	font: 600 18px/1.26 'Dosis';
    color: #000;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.profile-wrapper .profile .cv-dtl .ttl p {
	line-height: 1.36;
    font-size: 14px;
	font-weight: 400;
    margin-top: 8px;
    margin-bottom: 0;
	text-transform: initial;
}
.profile-wrapper .profile .cv-dtl .drag-file-area {
	border: 1px dashed #ED123C;
	border-radius: 2px;
	padding: 32px;
}
.profile-wrapper .profile .cv-dtl .drag-file-area .upload-icon {
	height: 56px;
	margin-right: 22px;
}
.profile-wrapper .profile .cv-dtl .drag-file-area .browse-files {
	margin-bottom: 8px;
}
.profile-wrapper .profile .cv-dtl .drag-file-area .browse-files input {
	display: none;
}
.profile-wrapper .profile .deactivate-account .btn {
	line-height: 1.36;
    padding: 0;
    color: #7B78FB;
}
.profile-wrapper .profile .cv-dtl .drag-file-area span {
	font-size: 14px;
    line-height: 1.36;
    font-weight: 600;
}
.profile-wrapper .profile .cv-dtl .drag-file-area .browse-files span {
	color: #7B78FB;
    text-decoration: underline;
    font-weight: 700;
}
.profile-wrapper .profile .cv-dtl .drag-file-area h6 {
	margin-bottom: 0;
    font-size: 12px;
    color: #6C757D;
    font-weight: 600;
    line-height: 1.36;
}
@media (max-width: 767px) {
	.profile-wrapper .profile .field {
		margin: 0;
		gap: 20px;
	}
	.profile-wrapper .profile .field .form-item {
		padding: 0;
		margin-bottom: 0;
	} 
}
@media (max-width: 575px) {
	.profile-wrapper .profile {
		padding: 20px;
	}
	.profile-wrapper .profile .profile-name h4 {
		font-size: 20px;
	}
	.profile-wrapper .profile .profile-name button,
	.my-jobs-wrapper .my-jobs .job-head-item .btn,
	.profile-wrapper .profile .btn-download {
		font-size: 12px;
		padding: 9px 16px;
	}
	.profile-wrapper .profile .field .form-item label {
		margin-bottom: 4px;
	}
	.profile-wrapper .profile hr {
		margin: 24px 0;
	}
	.profile-wrapper .profile .ttl {
		margin-bottom: 18px;
	}
}

/* my jobs */
.my-jobs-wrapper {
	padding: 43px 0 56px;
}
.my-jobs-wrapper .my-jobs {
	max-width: 650px;
	margin: auto;
}
.my-jobs-wrapper .my-jobs .my-jobs-head {
	gap: 56px 0;
	margin-bottom: 56px;
}
.my-jobs-wrapper .my-jobs .my-jobs-head.post-btn {
	margin-bottom: 30px;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item h3 {
	font: 700 30px/1.26 'Dosis';
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .btn {
	padding: 14px 23px 12px;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .btn span {
	padding-right: 5px;
    font-size: 24px;
    font-weight: 100;
    line-height: 0;
    vertical-align: -2px;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .search-bar,
.view-job-wrapper .view-job .tab-content .proposal .search-bar {
	width: 100%;
	margin-bottom: 0;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .search-bar img,
.view-job-wrapper .view-job .tab-content .proposal .search-bar img {
	position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    width: 18px;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .search-bar input,
.view-job-wrapper .view-job .tab-content .proposal .search-bar input {
	width: 100%;
	border: 1px solid #BBBBBB;
	border-radius: 2px;
	font-size: 16px;
    line-height: 1.36;
    color: #000;
    padding: 13px 24px 11px 74px;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .search-bar input::placeholder,
.view-job-wrapper .view-job .tab-content .proposal .search-bar input::placeholder {
	color: #6C757D;
}
.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .search-bar input:focus-visible,
.view-job-wrapper .view-job .tab-content .proposal .search-bar input:focus-visible {
	outline: none;
}
.my-jobs-wrapper .my-jobs .my-jobs-body {
	position: relative;
	min-height: 140px;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item {
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	display: flex;
    align-items: center;
    padding: 24px;
	margin-bottom: 30px;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-img,
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .jobs-img {
	width: 68px;
	margin-right: 16px;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl {
	width: 60%;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl h5 {
	font: 600 24px/1.26 'Dosis';
    color: #000;
    margin-bottom: 2px;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl h6 {
	font: 600 14px/1.36 'Nunito Sans';
    margin-bottom: 2px;
    color: #000;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl p {
	font: 600 12px/1.36 'Nunito Sans';
    margin: 0;
	color: #444;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl p span {
	padding: 0 8px;
} 
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-proposals {
	font: 600 14px/1.36 'Nunito Sans';
	margin: 0 0 0 16px;
	color: #444;
}
.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-proposals span {
	color: #000;
	display: block;
    margin-bottom: 4px;
}
/* .my-jobs-wrapper .my-jobs .my-jobs-body  */
.pagination {
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding-top: 26px;
}
/* .my-jobs-wrapper .my-jobs .my-jobs-body  */
.pagination li {
	width: 32px;
    height: 32px;
    border: 1px solid #D7D7D7;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.36;
    color: #5F6368;
    font-weight: 400;
    padding-top: 1px;
    position: relative;
	cursor: pointer;
}
/* .my-jobs-wrapper .my-jobs .my-jobs-body  */
.pagination li:first-child,
.pagination li:last-child {
	margin: 0 8px;
}
/* .my-jobs-wrapper .my-jobs .my-jobs-body  */
.pagination li:first-child::before,
.pagination li:last-child::before {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url('/wp-content/uploads/2023/03/pagination.png');
	background-repeat: no-repeat;
	background-size: 12px;
	background-position: center;
}
/* .my-jobs-wrapper .my-jobs .my-jobs-body  */
.pagination li:first-child::before {
	transform: rotate(180deg);
}
/* .my-jobs-wrapper .my-jobs .my-jobs-body  */
.pagination li.inactive {
	cursor: initial;
}
/* .my-jobs-wrapper .my-jobs .my-jobs-body  */
.pagination li.selected {
	border-color: #5986F3;
	color: #5986F3;
}
.my-jobs-wrapper .my-jobs .my-jobs-no-found {
	padding: 70px 0;
}
.my-jobs-wrapper .my-jobs .my-jobs-no-found img {
	width: 150px;
}
.my-jobs-wrapper .my-jobs .my-jobs-no-found h3 {
	font: 700 30px/1.27 'Dosis';
    color: #000;
    margin-bottom: 12px;
}
.my-jobs-wrapper .my-jobs .my-jobs-no-found p {
	font-size: 20px;
    line-height: 1.35;
}
@media (max-width: 575px) {
	.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item h3 {
		font-size: 26px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .btn {
		padding: 12px 14px 11px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-head {
		gap: 26px 0;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .search-bar input,
	.view-job-wrapper .view-job .tab-content .proposal .search-bar input {
		padding: 11px 16px 9px 40px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-head .job-head-item .search-bar img,
	.view-job-wrapper .view-job .tab-content .proposal .search-bar img {
		left: 16px;
		width: 14px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item {
		padding: 12px;
    	margin-bottom: 20px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-img,
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .jobs-img {
		width: 54px;
    	margin-right: 12px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl h5 {
		font-size: 16px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl h6,
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-proposals {
		font-size: 12px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl p {
		font-size: 10px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-proposals span {
		margin-bottom: 0;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-dtl p span {
		padding: 0 4px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-body .jobs-item .job-proposals {
		margin-left: 12px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-no-found {
		padding: 40px 0;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-no-found img {
		width: 100px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-no-found h3 {
		font-size: 24px;
	}
	.my-jobs-wrapper .my-jobs .my-jobs-no-found p {
		font-size: 16px;
		margin-bottom: 0;
	}
}

/*  view job  */
.view-job-wrapper .view-job {
	max-width: 800px;
    margin: auto;
	padding: 43px 0 90px;
}
.view-job-wrapper .view-job .back-page {
	font-size: 18px;
    line-height: 1.39;
    color: #ED123C;
    padding-left: 42px;
	margin-bottom: 42px;
}
.view-job-wrapper .view-job .back-page img {
	position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 23px;
	transition: all 0.3s ease-in-out;
}
.view-job-wrapper .view-job .back-page:hover img {
	left: 0;
}
.view-job-wrapper .view-job ul.nav {
	gap: 33px;
	margin-bottom: 40px;
}
.view-job-wrapper .view-job ul.nav li a {
	font-size: 16px;
    line-height: 1.36;
    color: #444;
    font-weight: 600;
    border-radius: 0;
    padding: 12px 8px;
    border-bottom: 1px solid transparent;
	transition: all 0.3s ease-in-out;
}
.view-job-wrapper .view-job ul.nav li a.active {
	background-color: transparent;
	border-color: #000;
	color: #000;
}
.view-job-wrapper .view-job .tab-content #job-description,
.job-board-wrapper .job-board-dtl .board-item .job-contain {
	padding: 24px;
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
}
.view-job-wrapper .view-job .tab-content .job-ttl,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl {
	margin-bottom: 20px;
	position: relative;
}
.view-job-wrapper .view-job .tab-content .job-ttl h3,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl h3 {
	font: 600 24px/1.26 'Dosis';
    color: #000;
    margin-bottom: 2px;
}
.view-job-wrapper .view-job .tab-content .job-ttl h6,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl h6 {
	font-size: 14px;
    line-height: 1.36;
    font-weight: 600;
    margin-bottom: 0;
}
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl .job-save {
	position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    padding: 0;
	font-size: 12px;
	line-height: 1.33;
}
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl .job-save:focus {
	outline: none;
}
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl .job-save img {
	width: 18px;
	margin-right: 8px;
}
.view-job-wrapper .view-job .tab-content .job-dtl,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-dtl {
	margin-bottom: 24px;
}
.view-job-wrapper .view-job .tab-content .job-dtl p,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-dtl p {
	margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.36;
    color: #000;
}
.view-job-wrapper .view-job .tab-content .job-dtl p:last-child,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-dtl p:last-child {
	margin-bottom: 0;
}
.view-job-wrapper .view-job .tab-content .job-dtl p img,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-dtl p img {
	width: 16px;
    margin-right: 12px;
    margin-top: -2px;
}
.view-job-wrapper .view-job .tab-content .job-dtl p a,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-dtl p a{
	padding-right: 4px;
    color: initial;
    pointer-events: none;
}
.view-job-wrapper .view-job .tab-content .job-content,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-content {
	margin-bottom: 24px;
}
.view-job-wrapper .view-job .tab-content .job-content h4,
.view-job-wrapper .view-job .tab-content .job-like h4,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-content h4,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like h4 {
	font-size: 20px;
    font-weight: 600;
    font-family: 'Dosis';
    line-height: 1.26;
    margin-bottom: 20px;
    color: #000;
}
.view-job-wrapper .view-job .tab-content .job-content p,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-content p {
	margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.36;
    color: #000;
}
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like .job-like-dtl {
	display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item {
	width: calc(33.33% - 16px);
	padding: 14px;
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like .job-like-dtl .prop-item {
	width: calc(50% - 12px);
	padding: 14px;
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item .prop-img,
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item .job-img,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like .job-like-dtl .prop-item .prop-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
    float: left;
    margin-right: 12px;
}
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item .prop-dtl h4,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like .job-like-dtl .prop-item .prop-dtl h4 {
	font-size: 16px;
	line-height: 1;
	margin-bottom: 7px;
	margin-top: 6px;
}
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item .prop-dtl h6,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like .job-like-dtl .prop-item .prop-dtl h6 {
	font-size: 12px;
    font-weight: 600;
}
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item .prop-dtl .prop-desc p,
.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like .job-like-dtl .prop-item .prop-dtl .prop-desc p {
	font-size: 12px;
	margin-bottom: 0;
}
.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item .prop-dtl .prop-desc p {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.view-job-wrapper .view-job .tab-content .job-sponsor {
	margin-bottom: 24px;
}
.view-job-wrapper .view-job .tab-content .job-sponsor .sponsor-ttl {
	margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.36;
    color: #6C757D;
}
.view-job-wrapper .view-job .tab-content .job-sponsor .sponsor-img {
	width: 65px;
    height: 65px;
    margin-right: 16px;
}
.view-job-wrapper .view-job .tab-content .job-sponsor .sponsor-dtl {
	width: calc(100% - 81px);
}
.view-job-wrapper .view-job .tab-content .job-sponsor .sponsor-dtl h6 {
	font-size: 14px;
    font-weight: 600;
    line-height: 1.36;
    color: #000;
    margin-bottom: 4px;
}
.view-job-wrapper .view-job .tab-content .job-sponsor .sponsor-dtl a,
.view-job-wrapper .view-job .tab-content .job-sponsor .sponsor-dtl p {
	font-size: 12px;
    line-height: 1.33;
    font-weight: 600;
	margin: 2px 0 0 0;
}
.view-job-wrapper .view-job .tab-content .edit-profile {
	padding-top: 16px;
}
.view-job-wrapper .view-job .tab-content .edit-profile .btn {
	padding: 14px 50px 13px;
}
.view-job-wrapper .view-job .tab-content .edit-profile .btn img {
	width: 18px;
    margin-right: 8px;
    margin-top: -3px;
	transition: all 0.3s ease-in-out;
}
.view-job-wrapper .view-job .tab-content .edit-profile .btn:hover img {
	filter: invert(40%) sepia(70%) saturate(5581%) hue-rotate(341deg) brightness(93%) contrast(99%); 
}
.view-job-wrapper .view-job .tab-content .proposal .search-bar {
	max-width: 409px;
	margin-bottom: 40px;
}
.view-job-wrapper .view-job .tab-content .proposal .props {
	position: relative;
	min-height: 140px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item {
	display: flex;
/*     flex-wrap: wrap; */
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	padding: 24px;
	margin-bottom: 24px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-img {
	width: 72px;
    height: 72px;
    border-radius: 100%;
    margin-right: 24px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl {
	width: 302px;
	margin-right: 48px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl h4 {
	font: 600 24px/1.26 'Dosis';
    color: #000;
    margin-bottom: 10px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl h6,
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl p {
	font: 600 14px/1.1 'Nunito Sans';
	margin-bottom: 14px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl p {
	margin-bottom: 8px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl p a {
	color: #000;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl .prop-desc p {
	font-size: 14px;
    line-height: 1.36;
    margin-bottom: 0;
	position: relative;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl .prop-desc.show p {
	-webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl .prop-desc .read-more {
	position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    cursor: pointer;
	color: #7B78FB;
	display: none;
	padding-right: 18px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl .prop-desc.show .read-more {
	display: block;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl .prop-desc.active p {
	-webkit-line-clamp: initial;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf {
	display: flex;
    align-items: center;
    align-self: end;
    color: #000;
	margin-right: auto;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf img {
	width: 40px;
	margin-right: 12px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf .pdf-dtl h6 {
	font: 600 12px/1.36 'Nunito Sans';
	margin-bottom: 4px;
}
.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf .pdf-dtl p {
	font: 600 10px/1.36 'Nunito Sans';
    color: #444;
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item {
		padding: 16px;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-img,
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .job-img {
		width: 64px;
		height: 64px;
		margin-right: 16px;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl h4 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl h6 {
		font-size: 12px;
		margin-bottom: 8px;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl {
		margin-right: 30px;
		width: 280px;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf img {
		width: 30px;
		margin-right: 8px;
	}
}
@media (max-width: 767px) {
	.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item {
		width: 100%;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-dtl {
		margin-right: 20px;
		width: 210px;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf {
		display: block;
		text-align: center;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf img {
		margin-right: 0;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf .pdf-dtl h6 {
		font-size: 12px;
		margin: 5px 0 1px;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf .pdf-dtl p {
		font-size: 10px;
	}
}
@media (max-width: 575px) {
	.view-job-wrapper .view-job .tab-content .job-like .job-like-dtl .prop-item {
		flex-wrap: wrap;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf {
		margin-top: 15px;
		display: flex;
		text-align: start;
	}
	.view-job-wrapper .view-job .tab-content .proposal .props .prop-item .prop-pdf img {
		margin-right: 6px;
	}
	.view-job-wrapper .view-job .back-page {
		margin-bottom: 28px;
	}
	.view-job-wrapper .view-job ul.nav {
		gap: 22px;
    	margin-bottom: 30px;
	}
	.view-job-wrapper .view-job ul.nav li a {
		font-size: 14px;
		padding: 8px;
	}
	.view-job-wrapper .view-job .tab-content #job-description,
	.job-board-wrapper .job-board-dtl .board-item .job-contain {
		padding: 18px;
	}
	.view-job-wrapper .view-job .tab-content .job-ttl h3,
	.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl h3 {
		font-size: 20px;
	}
	.view-job-wrapper .view-job .tab-content .job-ttl h6, 
	.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl h6 {
		font-size: 13px;
	}
	.view-job-wrapper .view-job .tab-content .job-ttl, 
	.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl {
		margin-bottom: 16px;
	}
	.view-job-wrapper .view-job .tab-content .job-dtl p:last-child,
	.job-board-wrapper .job-board-dtl .board-item .job-contain .job-dtl p:last-child {
		margin-bottom: 12px;
	}
}

/*  thank you and logout  */
.thank-wrapper,
.logout-wrapper {
	padding: 120px 0;
}
.thank-wrapper .thank-you .thank-img {
	width: 120px;
    margin-bottom: 20px;
}
.thank-wrapper .thank-you h1,
.logout-wrapper h2{
	font: 700 40px/1.36 'Dosis';
    color: #000;
	margin-bottom: 20px;
}
.logout-wrapper p {
	margin-bottom: 0;
}
.thank-wrapper .thank-you p {
	font-weight: 600;
    margin-bottom: 0;
    font-size: 20px;
}
.thank-wrapper .thank-you p a {
	color: #ed123c;
}

/*  Landing Page  */
.sample-job-section {
	margin: 95px 0 43px;
	position: relative;
}
.sample-job-section::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 538px;
	height: 854px;
	background-image: url('../img/big-ellipse.png');
	background-repeat: no-repeat;
	background-size: 100%;
	z-index: -1;
}
.sample-job-section .sample-job .sample-jobs {
	gap: 38px 32px;
}
.sample-job-section .sample-job .sample-jobs .job-item,
.job-board-wrapper .job-filter .job-contain .job-item {
	width: calc(50% - 16px);
	padding: 24px;
	background: #FFFFFF;
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-head,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-head {
	gap: 16px;
	margin-bottom: 25px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-head .jobs-ttl h3,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-head .jobs-ttl h3 {
	font: 600 24px/1.26 'Dosis';
    color: #000;
    margin-bottom: 2px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-head .jobs-ttl h3 span,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-head .jobs-ttl h3 span,
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-content h5 span {
	font-size: 12px;
    color: #ed123c;
    vertical-align: super;
    background-color: #FFEBEF;
    padding: 5px 8px 2.7px;
    line-height: 1.36;
    font-family: 'nunito sans';
    margin-left: 12px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-head .jobs-ttl h3 span {
	vertical-align: 3px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-head .jobs-ttl h6,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-head .jobs-ttl h6 {
	font: 600 14px/1.36 'Nunito Sans';
    margin-bottom: 0;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-head .job-img,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-head .job-img {
	width: 52px;
	height: 52px;
    object-fit: cover;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl {
	margin-bottom: 16px;
	gap: 14px 50px;
	flex-wrap: wrap;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl p,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl p {
	font: 400 14px/1.36 'Nunito Sans';
	display: flex;
    align-items: center;
    color: #000;
	margin-bottom: 0;
	position: relative;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl p a,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl p a {
	color: initial;
    padding-right: 4px;
    pointer-events: none;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl p::after,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl p::after {
	content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -23px;
    width: 1px;
    height: 85%;
    background: #BBB;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl p:last-child::after,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl p:last-child::after {
	display: none;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl p img,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl p img {
	height: 16px;
    margin-right: 8px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc p,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc p,
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc *,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc * {
	font: 400 14px/1.36 'Nunito Sans';
	color: #000;
	margin-bottom: 0;
	position: relative;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc ul,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc ul {
	padding-left: 24px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc .read-more,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc .read-more {
	position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    cursor: pointer;
    color: #7B78FB;
    display: none;
	font: 400 14px/1.36 'Nunito Sans';
    padding-right: 18px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc {
	margin-bottom: 16px;
	position: relative;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc.show,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc.show {
/* 	display: -webkit-box;
	-webkit-line-clamp: 3; 
	-webkit-box-orient: vertical; */
	height: 58px;
	overflow: hidden;
}
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc.show {
/* 	-webkit-line-clamp: 2; */
	height: 38px;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc.active,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc.active {
/* 	-webkit-line-clamp: initial; */
	height: auto;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-desc.show .read-more,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-desc.show .read-more {
	display: block;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-save h6,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-save h6 {
	font: 400 12px/1.36 'Nunito Sans';
    color: #000;
	margin-bottom: 0;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-save button,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-save button {
	font: 400 12px/1.36 'Nunito Sans';
	border: none;
    background: transparent;
    padding: 0;
	display: flex;
    align-items: center;
}
.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .jobs-save button img,
.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .jobs-save button img {
	width: 18px;
	margin-right: 8px;
}
@media (max-width: 991px) {
	.sample-job-section {
		margin: 43px 0;
	}
	.sample-job-section .sample-job .sample-jobs {
		gap: 30px 26px;
	}
	.sample-job-section .sample-job .sample-jobs .job-item {
		width: calc(50% - 13px);
		padding: 20px;
	}
	.job-board-wrapper .job-filter .job-contain .job-item {
		padding: 20px;
	}
	.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl {
    	gap: 5px;
	}
	.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl {
		gap: 10px 40px;
	}
	.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl p::after, 
	.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl p::after {
		display: none;
	}
	.sample-job-section .sample-job .sample-jobs .job-item .jobs-head .jobs-ttl h3,
	.job-board-wrapper .job-filter .job-contain .job-item .jobs-head .jobs-ttl h3 {
		font-size: 20px;
	}
	.sample-job-section .sample-job .sample-jobs .job-item .jobs-head .job-img, 
	.job-board-wrapper .job-filter .job-contain .job-item .jobs-head .job-img {
		width: 46px;
    	height: 46px;
	}
	.sample-job-section .sample-job .sample-jobs .job-item .jobs-head,
	.job-board-wrapper .job-filter .job-contain .job-item .jobs-head {
		margin-bottom: 18px;
	}
	.sample-job-section .sample-job .sample-jobs .job-item .jobs-body .job-dtl p {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.sample-job-section .sample-job .sample-jobs .job-item {
		width: 100%;
	}
}
@media (max-width: 575px) {
	.sample-job-section::after {
		width: 338px;
    	height: 554px;
	}
	.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl {
    	gap: 5px;
	}
	.job-board-wrapper .job-filter .job-contain .job-item .jobs-body .job-dtl p {
		width: 100%;
	}
	.job-board-wrapper .job-search {
		gap: 12px;
	}
	.job-board-wrapper .job-search .search-input {
		padding: 8px 10px;
		gap: 8px;
	}
}

.about-warpper {
	position: relative;
	margin-bottom: 100px;
}
.about-warpper > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*  job board  */
.job-board-wrapper {
	padding: 32px 0 80px;
}
.job-board-wrapper .job-search {
	padding-bottom: 24px;
	gap: 24px;
}
.job-board-wrapper .job-search .search-input {
	border: 1px solid #BBBBBB;
	border-radius: 2px;
	padding: 12px 24px;
	width: 100%;
	gap: 64px;
}
.job-board-wrapper .job-search .search-input label {
	width: 100%;
	margin-bottom: 0;
	display: flex;
    align-items: center;
	position: relative;
}
.job-board-wrapper .job-search .search-input label:first-child::after {
	content: "";
	position: absolute;
	top: 0;
	right: -32px;
	width: 1px;
    height: 100%;
    background: #BBBBBB;
}
.job-board-wrapper .job-search .search-input label img {
	width: 18px;
	margin-right: 32px;
}
.job-board-wrapper .job-search .search-input label input {
	width: 100%;
    height: 100%;
	border: none;
	padding: 0;
}
.job-board-wrapper .job-search .search-input label input:focus-visible {
	outline: none;
}
.job-board-wrapper .job-search .btn {
	font: 600 14px/1.36 'Nunito Sans';
    color: #fff;
	border: 1px solid #444;
    background: #444444;
    width: 132px;
	flex-shrink: 0;
	transition: all 0.3s ease-in-out;
}
.job-board-wrapper .job-search .btn:hover {
	background: transparent;
	color: #444444;
}
.job-board-wrapper .job-filter {
	gap: 24px;
}
.job-board-wrapper .job-filter .filter-option {
	width: 300px;
	flex-shrink: 0;
	background: #FFFFFF;
	border: 1px solid #E8E4E4;
	border-radius: 2px;
	padding: 12px 24px;
}
.job-board-wrapper .job-filter .filter-option .filter-head {
	padding: 12px 0 18px;
	border-bottom: 1px solid #E8E4E4;
	margin-bottom: 18px;
}
.job-board-wrapper .job-filter .filter-option .filter-head h4 {
	font: 700 18px/1.26 'Dosis';
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0;
}
.job-board-wrapper .job-filter .filter-option .filter-head p {
	font: 400 14px/1.36 'Nunito Sans';
    color: #6C757D;
    margin-bottom: 0;
}
.job-board-wrapper .job-filter .filter-option .accordion .card {
	border: none;
	border-bottom: 1px solid #E8E4E4;
    padding-bottom: 6px;
    margin-bottom: 6px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card:last-child {
	border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-header {
	border: none;
	background: transparent;
	padding: 12px 0 11px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-header button {
	font: 700 18px/1.26 'Dosis';
    text-transform: uppercase;
    background: transparent;
	color: #000;
    border: none;
    width: 100%;
    text-align: left;
	padding: 0;
	position: relative;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-header > a {
	position: absolute;
    bottom: 5px;
    right: 0;
    font-size: 14px;
    color: #f50f2b;
    font-weight: 600;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-header button::after {
	content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    right: 0;
    width: 14px;
    height: 14px;
    background-image: url(../img/down.png);
    background-size: contain;
    background-repeat: no-repeat;
	transition: all 0.3s ease-in-out;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-header button.collapsed::after {
	transform: translateY(-50%) rotate(0deg);
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-header button:focus {
	outline: none;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body {
	padding: 14px 0 0 0;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item {
	display: flex;
    margin-bottom: 16px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item label {
    font: 400 14px/1.36 'Nunito Sans';
    color: #000;
	margin-bottom: 0;
    cursor: pointer;
	pointer-events: none;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item input {
	appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #BBBBBB;
    border-radius: 4px;
    margin-right: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item input:checked {
	background-color: #ED123C;
	border-color: #ED123C;
	background-image: url('../img/true.png');
	background-repeat: no-repeat;
	background-size: 9px;
    background-position: 30% 50%;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item input[type="radio"] {
	border-radius: 100%;
    width: 17px;
    height: 17px;
    margin-top: 0;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item input[type="radio"]:checked {
	background: #fff;
    border-width: 7px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .price-range {
	display: flex;
	align-items: center;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .price-range label {
	margin-bottom: 0;
	flex-shrink: 0;
	font-size: 14px;
    color: #000;
    padding-right: 5px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .price-range input {
	border: none;
    padding: 0;
	font-size: 14px;
    color: #ed123c;
    font-weight: 700;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .price-range input:focus-visible {
	outline: none;
}
.job-board-wrapper .job-filter .filter-option .accordion .card #salary_band .card-body {
	display: flex;
	gap: 20px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card #salary_band .card-body > div {
	width: 100%;
}
.job-board-wrapper .job-filter .filter-option .accordion .card #salary_band .card-body select {
	width: 100%;
    border: 1px solid #BBBBBB;
	margin-bottom: 10px;
	padding: 3px 5px 2px;
    border-radius: 6px;
    font-size: 14px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .cls-min select:focus-visible,
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .cls-max select:focus-visible{
	outline: none;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body #salary-range {
	border-color: #ed123c;
	height: 8px;
	margin: 20px 8px 14px;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body #salary-range .ui-slider-range {
	background-color: #d9425f;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body #salary-range .ui-slider-handle {
	width: 16px;
    height: 16px;
	border: 1px solid #ed123c;
    background: #ed123c;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body #salary-range .ui-slider-handle:hover {
	border: 1px solid #ed123c;
    background: #ed123c;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .view-more {
	font: 700 12px/1.36 'Nunito Sans';
    color: #7B78FB;
    cursor: pointer;
	margin-left: 34px;
	margin-bottom: 12px;
	display: none;
}
.job-board-wrapper .job-filter .filter-option .accordion .card .card-body.active .view-more {
	display: table;
}
.job-board-wrapper .job-filter .job-contain {
	width: 100%;
	position: relative;
	transition: all 0.3s ease-in-out;
}
.job-board-wrapper .job-filter .job-contain.loaded {
	height: 100vh;
    overflow: hidden;
}
.loaded::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}
.loaded::after {
	content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 1;
    background-image: url(/wp-content/uploads/2021/07/favicon.png);
    background-repeat: no-repeat;
    background-size: 100%;
	animation: loader 4s linear infinite;
}
@keyframes loader {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
.job-board-wrapper .job-filter .job-contain .job-item {
	width: 100%;
	margin-bottom: 24px;
}
@media (max-width: 991px) {
	.job-board-wrapper .job-search {
		gap: 16px;
	}
	.job-board-wrapper .job-search .search-input {
		padding: 10px 12px;
		gap: 18px;
	}
	.job-board-wrapper .job-search .search-input label img {
		width: 13px;
    	margin-right: 10px;
	}
	.job-board-wrapper .job-search .search-input label:first-child::after {
		right: -9px;
	}
	.job-board-wrapper .job-search .search-input label input {
		font-size: 14px;
	}
	.job-board-wrapper .job-search .btn {
		font-size: 12px;
		width: 100px;
	}
	.job-board-wrapper .job-filter .filter-option {
		width: 240px;
		padding: 8px 18px;
	}
	.job-board-wrapper .job-filter .filter-option .filter-head {
		margin-bottom: 10px;
	}
	.job-board-wrapper .job-filter .filter-option .filter-head h4 {
		font-size: 16px;
	}
	.job-board-wrapper .job-filter .filter-option .accordion .card .card-header button {
		font-size: 16px;
	}
	.job-board-wrapper .job-filter .filter-option .accordion .card .card-header button::after {
		width: 12px;
    	height: 12px;
	}
	.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item input {
		margin-right: 12px;
	}
	.job-board-wrapper .job-filter .filter-option .accordion .card .card-body {
		padding-top: 8px;
	}
	.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .card-item {
		margin-bottom: 12px;
	}
	.job-board-wrapper .job-filter .filter-option .accordion .card .card-body .view-more {
		margin-left: 28px;
	}
}
@media (max-width: 767px) {
	.job-board-wrapper .job-search .search-input {
		flex-wrap: wrap;
		gap: 8px;
	}
	.job-board-wrapper .job-search .search-input label:first-child::after {
		display: none;
	}
	.job-board-wrapper .job-filter {
		flex-wrap: wrap;
	}
	.job-board-wrapper .job-filter .filter-option {
		width: 100%;
	}
}
@media (max-width: 575px) {
	.job-board-wrapper .job-search .btn {
		width: 80px;
	}
}

/*  job details  */
.job-board-wrapper .job-board-dtl {
	gap: 24px;
}
.job-board-wrapper .job-board-dtl .board-item {
	width: 36%;
}
.job-board-wrapper .job-board-dtl .board-item:first-child {
	width: calc(64% - 24px);
}
.job-board-wrapper .job-board-dtl .board-item .job-apply,
.job-board-wrapper .job-board-dtl .board-item .like-jobs {
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	padding: 24px;
	margin-bottom: 21px;
}
.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-head,
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-head {
	border-bottom: 1px solid #E8E4E4;
    padding-bottom: 24px;
	margin-bottom: 24px;
}
.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-head h4,
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-head h4 {
	font: 600 24px/1.25 'Dosis';
    color: #000000;
    margin-bottom: 0;
}
.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-head a {
	font-weight: 600;
    font-size: 12px;
    line-height: 1.33;
    color: #7B78FB;
	text-decoration: underline;
	margin-bottom: -4px;
	white-space: nowrap;
}
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-head a {
	font-weight: 700;
    font-size: 14px;
    line-height: 1.33;
    color: #7B78FB;
	margin-bottom: -4px;
}
.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-body p {
	font-size: 14px;
    line-height: 1.36;
    margin-bottom: 8px;
}
.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-body .btn {
	font-size: 14px;
    line-height: 1.36;
    text-transform: uppercase;
    background-color: #ED123C;
    width: 100%;
    color: #fff;
    border-radius: 2px;
    padding: 14px 13px 13px;
}
.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-body .btn img {
	width: 18px;
    margin-right: 8px;
    margin-top: -3px;
}
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item {
	display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item:last-child {
	margin-bottom: 0;
}
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-img,
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .job-img {
	width: 86px;
    margin-right: 16px;
    flex-shrink: 0;
}
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-content h5 {
	font: 600 18px/1.1 'Dosis';
    color: #000;
    margin-bottom: 5px;
}
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-content h6 {
	font-size: 12px;
    line-height: 1.33;
    font-weight: 600;
    margin-bottom: 12px;
}
.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-content small {
	font-size: 12px;
    line-height: 1.33;
    color: #6C757D;
}
@media (max-width: 991px) {
	.job-board-wrapper .job-board-dtl .board-item,
	.job-board-wrapper .job-board-dtl .board-item:first-child {
		width: 100%;
	}
}
@media (max-width: 575px) {
	.job-board-wrapper .job-board-dtl .board-item .job-contain .job-ttl .job-save {
		font-size: 14px;
		top: 6px;
	}
	.job-board-wrapper .job-board-dtl .board-item .job-contain .job-like .job-like-dtl .prop-item {
		width: 100%;
	}
	.job-board-wrapper .job-board-dtl .board-item .job-apply, 
	.job-board-wrapper .job-board-dtl .board-item .like-jobs {
		padding: 18px;
	}
	.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-head, 
	.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-head {
		padding-bottom: 16px;
    	margin-bottom: 18px;
	}
	.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-head h4, 
	.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-head h4 {
		font-size: 20px;
	}
	.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-body .btn {
		font-size: 13px;
		padding: 13px 13px 9px;
	}
	.job-board-wrapper .job-board-dtl .board-item .job-apply .apply-body .btn img {
		width: 16px;
	}
	.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-img,
	.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .job-img {
		width: 66px;
		margin-right: 12px;
	}
	.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-content h5 {
		font-size: 16px;
		margin-bottom: 2px;
	}
	.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-content h6,
	.job-board-wrapper .job-board-dtl .board-item .like-jobs .like-body .like-item .like-content small {
		margin-bottom: 0;
		font-size: 11px;
	}
}

/*  job requirements  */
body {
	position: relative;
}
body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.4);
	z-index: 999;
	transition: all 0.3s ease-in-out;
}
body.active-popup::before {
	opacity: 1;
	visibility: visible;
}
.job-requir-wrapper {
	padding: 56px 0 145px;
}
.job-requir-wrapper .job-requir {
	max-width: 880px;
    margin: auto;
}
.job-requir-wrapper .job-requir .job-requir-head {
	margin-bottom: 37px;
}
.job-requir-wrapper .job-requir .job-requir-head .requir-head-item h5 {
	font: 600 24px/1.25 'Dosis';
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
}
.job-requir-wrapper .job-requir .job-requir-head .requir-head-item p {
	font-weight: 600;
    font-size: 14px;
    line-height: 1.36;
    margin-bottom: 0;
    margin-top: 8px;
}
.job-requir-wrapper .job-requir .job-requir-form {
	position: relative;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item {
	background: #F9F7EF;
	border-radius: 2px;
	padding: 24px;
    margin-bottom: 24px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-head {
	padding-bottom: 16px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-head h5 {
	font: 600 24px/1.25 'Dosis';
    color: #000;
    margin-bottom: 0;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-head .btn {
	background: #444444;
    border-radius: 2px;
    border: none;
    padding: 12px;
    font-size: 14px;
    line-height: 1.36;
    color: #fff;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-head .btn img {
	width: 18px;
    margin-right: 8px;
    margin-top: -2px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body {
	padding-bottom: 16px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body textarea {
	border: 1px solid #E8E4E4;
    border-radius: 2px;
    padding: 8px;
    font-size: 12px;
    line-height: 1.33;
    color: #000;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body .error {
	color: #ed123c;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body textarea:placeholder {
	color: #BBBBBB;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body .file-message {
	display: none;
	position: relative;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body .file-message .pdf-img {
	width: 42px;
    flex-shrink: 0;
    margin-right: 17px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body .file-message .close {
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	transform: translateY(-50%);
    opacity: 1;
	cursor: pointer;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body .file-message .file-name h6 {
	font: 600 16px/1.36 'Dosis';
    color: #000;
    margin-bottom: 4px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body .file-message .file-name p {
	font-size: 12px;
    line-height: 1.36;
    margin-bottom: 0;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-foot p {
	font-size: 14px;
    line-height: 1.33;
    margin-bottom: 0;
    font-weight: 600;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-foot p span {
	color: #000;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item.active-pdf textarea {
	display: none;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item.active-pdf .file-message {
	display: flex;
}
.job-requir-wrapper .job-requir .job-requir-form form .btn-submit,
.success-wrapper .success-dtl .btn {
	font-size: 14px;
    line-height: 1.36;
    color: #fff;
    background: #ED123C;
    border-radius: 2px;
    border: none;
    padding: 15px 24px 14px;
    text-transform: uppercase;
}
.job-requir-wrapper .job-requir .job-requir-form form .btn-submit img {
	width: 18px;
    margin-right: 8px;
    margin-top: -2px;
}

.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup {
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    max-width: 650px;
    width: calc(100% - 40px);
    padding: 40px;
    background: #fff;
    border-radius: 2px;
    z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup.active {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	visibility: visible;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head {
	margin-bottom: 40px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head h5 {
	font: 600 24px/1.26 'Dosis';
    color: #000;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head p {
	font-size: 14px;
    line-height: 1.36;
    margin-bottom: 0;
}
.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head .close {
	position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    cursor: pointer;
	opacity: 1;
}
.success-wrapper {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	max-width: 564px;
    width: calc(100% - 40px);
	background: #FFFFFF;
	border-radius: 2px;
	padding: 85px 40px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}
.success-wrapper.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}
.success-wrapper .success-img {
	width: 100px;
	margin-bottom: 40px;
}
.success-wrapper .success-dtl h5 {
	font: 700 18px/1.23 'Dosis';
	color: #000;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.success-wrapper .success-dtl p {
	font-size: 16px;
	line-height: 1.36;
	color: #000;
	margin-bottom: 18px;
}
@media (max-width: 575px) {
	.job-requir-wrapper {
		padding: 40px 0 60px;
	}
	.job-requir-wrapper .job-requir .job-requir-head {
		flex-wrap: wrap;
		margin-bottom: 26px;
	}
	.job-requir-wrapper .job-requir .job-requir-head .requir-head-item:first-child {
		margin-bottom: 14px;
	}
	.job-requir-wrapper .job-requir .job-requir-head .requir-head-item h5,
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-head h5 {
		font-size: 22px;
	}
	.job-requir-wrapper .job-requir .job-requir-head .requir-head-item p {
		font-size: 13px;
		margin-top: 4px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item {
		padding: 18px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-head .btn {
		padding: 10px 10px 9px;
    	font-size: 12px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-head .btn img {
		width: 14px;
    	margin-right: 6px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .requir-body textarea {
		max-height: 140px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .btn-submit {
		font-size: 12px;
		padding: 12px 16px 10px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .btn-submit img {
		width: 14px;
    	margin-right: 6px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup {
		padding: 20px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head {
		margin-bottom: 18px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head h5 {
		font-size: 20px;
		margin-bottom: 2px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head p,
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area h6 {
		font-size: 12px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .popup-head .close {
		top: -8px;
		right: -8px;
		width: 14px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area {
		margin-top: 0;
		padding: 44px 0;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area .upload-icon{
		height: 52px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area label.browse-files {
		margin: 15px 0 4px;
	}
	.job-requir-wrapper .job-requir .job-requir-form form .requir-item .upload-popup .drag-file-area span {
		font-size: 14px;
	}
	.success-wrapper {
		padding: 60px 20px;
	}
	.success-wrapper .success-img {
		width: 80px;
		margin-bottom: 28px;
	}
}
.req-error {
	color: #ed123c;
    padding-top: 5px;
    line-height: 1.36;
    margin-bottom: 12px;
    font-size: 14px;
}
.calendly-badge-widget {
	pointer-events: none;
}

/  pricing page banner  /
.pricing-packages-wrapper {
	padding-bottom: 10px;
}
.staff-wrapper {
	padding-top: 36px;
	padding-bottom: 10px;
}
.staff-wrapper .staff-ttl {
	font-family: 'Dosis';
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 1.26;
    margin-bottom: 24px;
}
.staff-wrapper .staff-banner .staff-content p {
	font-size: 20px;
	color: #000;
	margin-bottom: 10px;
}
.staff-wrapper .staff-banner .staff-content .btn {
	background: #000;
    border-radius: 0;
    font-size: 16px;
    text-decoration: underline;
    color: #fff;
    padding: 4px 12px;
	margin-top: 18px;
}
.staff-wrapper .staff-banner .staff-content .btn img {
	width: 16px;
    margin-right: 10px;
}
@media (max-width: 575px) {
	.staff-wrapper .staff-banner .staff-content p {
		font-size: 16px;
	}
}