@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary:#7DC246;
  --primary-light: #E8FFD6;
  --secondary: #180000;
  --border-color:#CECECE;
  --light-bg: #F3F3F3;
}

body, html {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary);
  background: #F9F9F9;
}

h1, h2, h3, h4, h5, h6, p, ul, li {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
}

p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

ul, li, ol {
  line-height: 24px;
}

button {
  outline: none;
  border: 0px;
}

::-moz-placeholder {
  color: #818181;
}

::placeholder {
  color: #818181;
}

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

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.mt-8 {
  margin-top: 80px !important;
}

.mt-10 {
  margin-top: 100px !important;
}

.bold {
  font-weight: 600;
}

.cs_top_form {
  padding: 60px 0px;
  background: var(--secondary);
  position: relative;
}
.cs_top_form:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: url("../images/right_line.png") left bottom no-repeat;
  bottom: 0px;
  background-size: contain;
  opacity: 0.1;
}

.cs_form .cs_field {
  position: relative;
}
.cs_form .cs_field textarea,
.cs_form .cs_field input,
.cs_form .cs_field select {
  height: 45px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  font-weight: 300;
  font-size: 14px;
  color: #818181;
  width: 100%;
  padding-left: 15px;
}
.cs_form .cs_field textarea.invalid,
.cs_form .cs_field input.invalid,
.cs_form .cs_field select.invalid {
  background: #FFCECE;
  border: solid 1px #DB0000;
}
.cs_form .cs_field textarea {
  height: 120px;
}
.cs_form.icon_left .icon {
  position: absolute;
  width: 45px;
  height: 45px;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_form.icon_left .icon span {
  color: #818181;
}
.cs_form.icon_left .cs_field textarea,
.cs_form.icon_left .cs_field input,
.cs_form.icon_left .cs_field select {
  padding-left: 45px;
}
.cs_form.icon_left .icon, .cs_form.icon_right .icon {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_form.icon_left .icon span, .cs_form.icon_right .icon span {
  color: #818181;
}
.cs_form.icon_left .icon {
  left: 0px;
}
.cs_form.icon_left .cs_field textarea,
.cs_form.icon_left .cs_field input,
.cs_form.icon_left .cs_field select {
  padding-left: 45px;
}
.cs_form.icon_right .icon {
  right: 0px;
}
.cs_form.icon_right .cs_field textarea,
.cs_form.icon_right .cs_field input,
.cs_form.icon_right .cs_field select {
  padding-right: 45px;
}

.cs_button button,
.cs_button input,
.cs_button a {
  width: 100%;
  height: 50px;
  background: var(--primary);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px;
  outline: none;
  white-space: nowrap;
}
.cs_button.round button,
.cs_button.round input,
.cs_button.round a {
  border-radius: 25px;
}

header {
  position: sticky;
  top: 0px;
  background: #fff;
  z-index: 99;
  border-bottom: solid 1px var(--secondary);
}
header .container-fluid {
  padding: 0px;
}
header .navbar-brand img {
  height: 50px;
}
header .navbar-toggler {
  background: var(--primary);
}
header .navbar-toggler span {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar-toggler span img {
  height: 20px;
}
header .navbar-collapse ul {
  margin: auto;
}
header .navbar-collapse ul li {
  padding: 0px 20px;
}
header .navbar-collapse ul li a {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  position: relative;
}
header .navbar-collapse ul li a:after {
  content: "";
  width: 0px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: -10px;
  bottom: 0px;
  transition: 0.3s linear;
}
header .navbar-collapse ul li.active a, header .navbar-collapse ul li:hover a {
  color: var(--primary);
}
header .navbar-collapse ul li.active a:after, header .navbar-collapse ul li:hover a:after {
  width: calc(100% + 20px);
}
header .navbar-collapse .signinboxright {
  display: flex;
  align-items: center;
}
header .navbar-collapse .signinboxright a {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin-right: 30px;
}
header .navbar-collapse .signinboxright .cs_btn {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  height: 50px;
  border-radius: 25px;
  background: var(--primary);
  display: flex;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 0;
}

.cs_heading h1, .cs_heading h2 {
  text-transform: uppercase;
  text-align: center;
}
.cs_heading h1 {
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 0.1em;
  color: var(--secondary);
}
.cs_heading h2 {
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.solution_wrraper {
  background: var(--secondary);
  padding: 60px 0px 120px;
}
.solution_wrraper .cs_heading h1 {
  color: #fff;
}
.solution_wrraper .cs_solutions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.solution_wrraper .cs_solutions figure {
  background: #fff;
  border-radius: 10px;
  margin: 0px;
  display: flex;
  align-items: center;
  padding: 15px;
  width: calc(25% - 20px);
  margin: 10px;
}
.solution_wrraper .cs_solutions figure .cs_icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.solution_wrraper .cs_solutions figure .cs_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution_wrraper .cs_solutions figure h2 {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}
.solution_wrraper .cs_solutions figure p {
  font-weight: 600;
  font-size: 14px;
  color: #818181;
}

.number_wrrapper {
  margin-top: -68px;
}
.number_wrrapper .cs_numberinfo {
  box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.number_wrrapper .cs_numberinfo figure {
  margin: 0px;
  display: flex;
  align-items: center;
  padding: 15px;
}
.number_wrrapper .cs_numberinfo figure .cs_icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.number_wrrapper .cs_numberinfo figure .cs_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.number_wrrapper .cs_numberinfo figure h2 {
  font-weight: 700;
  font-size: 36px;
  color: var(--secondary);
}
.number_wrrapper .cs_numberinfo figure p {
  font-weight: 400;
  font-size: 16px;
  color: var(--secondary);
}

.jobs_wrraper {
  margin-top: 80px;
}

.job_list {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.13);
  padding: 10px;
  margin-top: 60px;
}
.job_list .cs_top {
  margin-top: -40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.job_list .cs_top .cs_icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 1px solid #dadada;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.job_list .cs_top .cs_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.job_list .cs_top .cs_info {
  text-align: right;
}
.job_list .cs_top .cs_info h2 {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}
.job_list .cs_top .cs_info h2 span {
  color: var(--primary);
}
.job_list .cs_top .cs_info p {
  font-weight: 500;
  font-size: 10px;
  color: #818181;
}
.job_list .job_body {
  margin-top: 10px;
}
.job_list .job_body h1 {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}
.job_list .job_body h2 {
  font-weight: 500;
  font-size: 12px;
  color: #818181;
}
.job_list .job_body h3 {
  font-size: 14px;
  color: var(--primary);
  margin-top: 10px;
}
.job_list .job_body .cs_chips {
  display: flex;
  flex-wrap: wrap;
}
.job_list .job_body .cs_chips span {
  background: #C5FF97;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--secondary);
  display: flex;
  padding: 5px 10px;
  border-radius: 10px;
}
.job_list .job_body .cs_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.job_list .job_body .cs_bottom p {
  font-weight: 500;
  font-size: 12px;
  color: var(--secondary);
}
.job_list .job_body .cs_bottom a {
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  background: var(--primary);
  display: flex;
  padding: 5px 10px;
  border-radius: 10px;
}

.contactus {
  background: #F5F5F5 url("../images/contactimgleft.jpg") no-repeat left;
  background-size: contain;
}
.contactus .cs_form {
  background: #F5F5F5;
  padding: 40px;
  position: relative;
}
.contactus .cs_form .cs_field {
  margin-top: 30px;
}
.contactus .cs_form .cs_button {
  margin-top: 30px;
}
.contactus .cs_form .cs_button .sbm {
  position: absolute;
  bottom: 0px;
  height: 205px;
  margin: 0px 0px -40px 140px;
  transform: rotate(-16deg);
}
.contactus .cs_heading h2 {
  text-align: left;
}

.inner_top {
  background: var(--primary);
  position: relative;
  height: 260px;
}
.inner_top h1 {
  font-weight: 700;
  font-size: 46px;
  color: #fff;
  display: flex;
  align-items: center;
  height: 260px;
  z-index: 1;
  position: relative;
}
.inner_top img {
  height: 200px;
  position: absolute;
  right: 0px;
  top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #fff;
  border-radius: 100px 0px 0px 100px;
}
.inner_top.in_job {
  background: url("../images/banner/banner_1.png") no-repeat center;
  background-size: cover;
}
.inner_top.in_aboutus {
  background: url("../images/banner/banner_2.png") no-repeat center;
  background-size: cover;
}
.inner_top.in_contacts {
  background: url("../images/banner/banner_3.png") no-repeat center;
  background-size: cover;
}
.inner_top.in_login {
  background: url("../images/banner/banner_4.png") no-repeat center;
  background-size: cover;
}
.inner_top:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: url("../images/right_line.png") left bottom no-repeat;
  bottom: 0px;
  background-size: contain;
  opacity: 0.3;
}

.cs_breadcrumb {
  padding: 30px 0px;
  border-bottom: solid 1px #DFDFDF;
}
.cs_breadcrumb ul {
  display: flex;
}
.cs_breadcrumb ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs_breadcrumb ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #818181;
  padding-right: 20px;
  padding-left: 20px;
}
.cs_breadcrumb ul li span {
  font-size: 16px;
  color: #818181;
}
.cs_breadcrumb ul li.active a {
  color: #180000;
}
.cs_breadcrumb ul li:first-child a {
  padding-left: 0;
}

.list_container {
  margin-top: 40px;
}
.list_container .col-sm-3 .cs_form:nth-child(2) {
  margin-top: 30px;
}
.list_container .dt_section {
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  margin-top: 30px;
}
.list_container .dt_section h1 {
  background: var(--primary);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding: 15px;
}
.list_container .dt_section label {
  padding: 15px;
  display: flex;
  align-items: center;
}
.list_container .dt_section label input {
  color: var(--primary);
  margin-right: 10px;
}
.list_container .dt_section label span {
  font-weight: 400;
  font-size: 14px;
  color: #818181;
}
.list_container .jb_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list_container .jb_top h1 {
  font-weight: 500;
  font-size: 20px;
  color: var(--secondary);
}
.list_container .jb_top .cs_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list_container .jb_top .cs_form p {
  font-weight: 300;
  font-size: 14px;
  color: #818181;
}
.list_container .jb_top .cs_form .cs_field {
  min-width: 180px;
  margin-left: 15px;
}

.client_testimonial {
  padding: 80px 0px;
}
.client_testimonial .testimonial_block {
  display: flex;
  padding: 50px;
  padding-top: 30px;
}
.client_testimonial .testimonial_block .cs_figure {
  width: 50%;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #dfdfdf;
  padding: 10px;
  margin: 30px;
  position: relative;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner {
  width: 100%;
  border-radius: 10px;
  background: #f7f7f7 url("../images/quote.png") right 25px bottom 25px no-repeat;
  background-size: 50px;
  padding: 25px;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .star i {
  color: var(--primary);
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .cl_text {
  margin-top: 10px;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .cl_text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #64768f;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more .icon {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  /* background: url(...); */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more h1 {
  font-weight: 700;
  font-size: 20px;
  color: #0a264e;
}
.client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more p {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #64768f;
}
.client_testimonial .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.41);
}
.client_testimonial .carousel-indicators button.active {
  width: 32px;
  height: 12px;
  border-radius: 6px;
  background: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.41);
}

.cs_details {
  margin-top: 40px;
}
.cs_details .container {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.13);
  padding: 40px;
}
.cs_details .container .main_heading {
  font-weight: 500;
  font-size: 36px;
  color: var(--secondary);
}
.cs_details .container hr {
  margin-top: 40px;
}
.cs_details .container .job_left {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.cs_details .container .job_left .icon {
  width: 120px;
  min-width: 120px;
  height: 120px;
  border-radius: 16px;
  border: 1px solid #dadada;
  overflow: hidden;
  margin-right: 30px;
}
.cs_details .container .job_left .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_details .container .job_left h1 {
  font-weight: 500;
  font-size: 18px;
  color: var(--secondary);
}
.cs_details .container .job_left h2 {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  margin-top: 15px;
}
.cs_details .container .job_right {
  border-left: solid 1px #dadada;
  padding-left: 40px;
  margin-top: 25px;
}
.cs_details .container .job_right p {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.cs_details .container .job_right p span {
  margin-right: 15px;
}
.cs_details .container .job_right p:first-child {
  color: #FF8800;
  margin-top: 0;
}

.cs_content .logo {
  height: 70px;
  margin-top: 15px;
}
.cs_content h2 {
  font-weight: 600;
  font-size: 24px;
  color: var(--secondary);
}
.cs_content h1 {
  font-weight: 500;
  font-size: 28px;
  color: var(--secondary);
}
.cs_content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 36px;
  color: var(--secondary);
  margin-bottom: 30px;
}
.cs_content .cs_table .cs_tr {
  display: flex;
}
.cs_content .cs_table .cs_tr .cs_td {
  height: 60px;
  background: #fff;
  border: 1px solid #bebebe;
  display: flex;
  align-items: center;
  width: 100%;
}
.cs_content .cs_table .cs_tr .cs_td .cs_icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_content .cs_table .cs_tr .cs_td p {
  margin: 0px;
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
}
.cs_content .cs_table .cs_tr .cs_td p span {
  color: var(--primary);
}
.cs_content .cs_table .cs_tr.line_right .cs_td .cs_icon {
  border-right: solid 1px #bebebe;
  margin-right: 15px;
}
.cs_content .cs_table .cs_tr.line_right .cs_td .cs_icon img {
  width: 30px;
}
.cs_content table {
  width: 100%;
  margin-top: 20px;
}
.cs_content table tr th {
  font-weight: 500;
  width: 250px;
}
.cs_content table tr td {
  font-weight: 300;
}
.cs_content table tr th, .cs_content table tr td {
  color: var(--secondary);
  font-size: 16px;
  padding: 15px 20px;
  border: solid 1px #BEBEBE;
}

footer {
  background: var(--secondary);
  padding: 50px 0px;
  padding-bottom: 0;
  margin-top: 60px;
}
footer .fo_logo {
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 30px;
  display: inline-block;
}
footer .fo_logo img {
  height: 50px;
}
footer .f_cnt h2 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
footer .f_cnt p {
  color: #fff;
  display: flex;
  align-items: center;
}
footer .f_cnt p img {
  height: 20px;
  margin-right: 15px;
}
footer .f_cnt ul li a {
  color: #fff;
  padding: 10px 0px;
  display: block;
}
footer .social_net {
  margin-top: 60px;
}
footer .social_net a {
  margin-right: 50px;
  display: inline-block;
}
footer .social_net a img {
  height: 35px;
}
footer .cs_copyright {
  border-top: solid 1px #3B3B3B;
  background: var(--secondary);
  padding: 30px 0px;
  margin-top: 50px;
}
footer .cs_copyright p {
  color: #fff;
  text-align: center;
}

.cs_stepform .form_steps .step {
  border-radius: 6px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
}
.cs_stepform .form_steps .step.active, .cs_stepform .form_steps .step.finish {
  background: var(--primary);
  color: #fff;
}
.cs_stepform .form_steps .step.active:after {
  content: "";
  position: absolute;
  background: url("../images/ic_arrow_drop_down_24px.svg") center no-repeat;
  width: 16px;
  height: 52px;
  top: 0px;
  right: -12px;
}
.cs_stepform .cs_form {
  border-radius: 6px;
  background: #e9e9e9;
  padding: 20px;
}
.cs_stepform .cs_form .cs_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: dashed 1px #818181;
}
.cs_stepform .cs_form .cs_heading h2 {
  font-weight: 500;
  font-size: 20px;
  color: var(--secondary);
  text-transform: capitalize;
  letter-spacing: normal;
}
.cs_stepform .cs_form .cs_heading p {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}
.cs_stepform .cs_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs_stepform .cs_button #prevBtn {
  background: #ccc;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 25px;
}
.cs_stepform .cs_button button {
  width: 180px;
  border-radius: 6px;
}

.cs_login,
.cs_contactsus,
.cs_aboutus {
  margin-top: 60px;
}

.cs_contactsus .cs_form .cs_field {
  margin-top: 30px;
}
.cs_contactsus .cs_form .cs_button {
  margin-top: 60px;
}

@media (min-width: 320px) and (max-width: 667px) {
  .cs_top_form {
    padding: 12px 0px;
  }
  .cs_top_form .cs_button {
    margin-top: 15px;
  }
  .cs_heading h1 {
    font-size: 32px;
  }
  .cs_heading h2 {
    font-size: 22px;
  }
  .solution_wrraper {
    padding: 20px 0px 80px;
  }
  .solution_wrraper .cs_solutions {
    margin-top: 20px;
  }
  .solution_wrraper .cs_solutions figure {
    width: 100%;
  }
  .number_wrrapper .cs_numberinfo {
    padding: 0px;
  }
  .number_wrrapper .cs_numberinfo figure {
    padding: 10px;
    width: 50%;
  }
  .number_wrrapper .cs_numberinfo figure .cs_icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin-right: 10px;
  }
  .number_wrrapper .cs_numberinfo figure h2 {
    font-size: 26px;
  }
  .number_wrrapper .cs_numberinfo figure p {
    font-size: 12px;
    margin-top: -5px;
  }
  .jobs_wrraper {
    margin-top: 30px;
  }
  .jobs_wrraper .cs_heading {
    margin-bottom: -20px;
  }
  .client_testimonial {
    padding: 40px 0px;
  }
  .client_testimonial .testimonial_block {
    padding: 0px;
    margin-top: 20px;
  }
  .client_testimonial .testimonial_block .cs_figure {
    margin: 0px;
    width: 100%;
  }
  .client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more .icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  .client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more h1 {
    font-size: 16px;
  }
  .client_testimonial .testimonial_block .cs_figure .cs_inner .cs_more p {
    font-size: 12px;
  }
  .client_testimonial .testimonial_block .cs_figure:last-child {
    display: none;
  }
  .client_testimonial .carousel-indicators {
    bottom: -40px;
  }
  .client_testimonial .carousel-indicators button {
    width: 8px;
    height: 8px;
  }
  .client_testimonial .carousel-indicators button.active {
    width: 20px;
    height: 8px;
  }
  .contactus {
    background: #F5F5F5;
    padding-bottom: 15px;
  }
  .contactus .cs_form {
    padding: 10px;
    padding-top: 0;
  }
  .contactus .cs_form .cs_field {
    margin-top: 20px;
  }
  .contactus .cs_form .cs_heading {
    margin-bottom: 0px;
  }
  .contactus .cs_form .cs_button .sbm {
    display: none;
  }
  header .navbar-brand img {
    height: 45px;
  }
  header .navbar-collapse {
    background: var(--primary);
    margin: 0px -10px -10px -10px;
    padding: 10px;
  }
  header .navbar-collapse ul li {
    padding: 10px;
  }
  header .navbar-collapse ul li a {
    font-size: 14px;
    color: #fff;
  }
  header .navbar-collapse .signinboxright {
    background: #fff;
    justify-content: space-between;
    padding: 15px;
    border-radius: 5px;
    margin-top: 25px;
  }
  header .navbar-collapse .signinboxright a {
    font-size: 14px;
  }
  header .navbar-collapse .signinboxright .cs_btn {
    padding-left: 26px;
    padding-right: 26px;
    height: 45px;
    font-size: 14px;
  }
  .inner_top {
    height: auto;
    padding: 50px 5px;
  }
  .inner_top h1 {
    height: auto;
  }
  .inner_top img {
    display: none;
  }
  .inner_top:after {
    display: none;
  }
  .cs_login,
  .cs_contactsus,
  .cs_aboutus {
    margin-top: 30px;
  }
  .cs_breadcrumb {
    padding: 20px 0px;
  }
  .cs_breadcrumb ul li a {
    padding-right: 10px;
    padding-left: 10px;
  }
  .cs_content .cs_table .cs_tr {
    flex-direction: column;
  }
  .list_container {
    margin-top: 20px;
  }
  .list_container .dt_section,
  .list_container .col-sm-3 .cs_form:nth-child(2) {
    margin-top: 15px;
  }
  .list_container .jb_top {
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .list_container .jb_top .cs_form {
    flex-direction: column;
    width: 100%;
  }
  .list_container .jb_top .cs_form p {
    width: 100%;
    margin-top: 15px;
  }
  .list_container .jb_top .cs_form .cs_field {
    margin-left: 0;
    width: 100%;
    min-width: 100%;
  }
  .job_details {
    margin-top: 0;
  }
  .job_details .container {
    border-radius: 0px;
    background: #fff;
    border: 0px solid #f0f0f0;
    box-shadow: none;
    padding: 20px;
  }
  .job_details .container .main_heading {
    font-size: 26px;
  }
  .job_details .container .cs_button {
    margin-top: 20px;
  }
  .job_details .container .cs_button a {
    border-radius: 0px;
  }
  .job_details .container hr {
    margin-top: 20px;
  }
  .job_details .container .job_left {
    margin-top: 5px;
  }
  .job_details .container .job_left .icon {
    width: 65px;
    min-width: 65px;
    height: 65px;
    border-radius: 8px;
    margin-right: 15px;
  }
  .job_details .container .job_left h1 {
    font-size: 16px;
  }
  .job_details .container .job_left h2 {
    font-size: 14px;
  }
  .job_details .container .job_right {
    border-left: solid 0px #dadada;
    padding-left: 0px;
  }
  .job_details .container .job_right p {
    font-size: 14px;
  }
  .cs_content .cs_table .cs_tr .cs_td p {
    font-size: 14px;
    line-height: 20px;
  }
  .cs_contactsus .cs_form .cs_field {
    margin-top: 15px;
  }
  .cs_contactsus .cs_form .cs_button {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  footer {
    padding-top: 10px;
    margin-top: 0;
  }
  footer .fo_logo {
    margin-bottom: 0;
  }
  footer .f_cnt {
    margin-top: 20px;
    padding: 10px;
    padding-top: 0;
  }
  footer .f_cnt ul {
    padding: 15px;
    padding-top: 0;
  }
  footer .social_net {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  footer .social_net a {
    margin-right: 30px;
  }
  footer .social_net a img {
    height: 30px;
  }
  footer .cs_copyright {
    margin-top: 10px;
    padding: 15px 0px;
  }
  footer .cs_copyright .primg,
  footer .cs_copyright p {
    text-align: center;
  }
  footer .cs_copyright .primg {
    margin-bottom: 15px;
  }
  .cs_login .cs_heading {
    margin-top: 30px;
  }
  .cs_login .cs_button {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */