@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Work Sans", system-ui !important;
  font-style: normal;
  font-weight: normal;
  font-size: var(--font17);
  color: #000;
  margin: 0;
  padding: 0;
  line-height: normal;
}

:root {
  --secondary-color: #363A3F;
  --orange-color: #EA5B0C;
  --light-color: #F5F5F5;
  --whtie-color: #ffffff;
  --dark-color: #222327;
  --lightgreen: #9FC13B;
  --darkgreen: #1D9C48;
  --font80: 80px;
  --font70: 70px;
  --font55: 55px;
  --font50: 50px;
  --font40: 40px;
  --font36: 36px;
  --font30: 30px;
  --font27: 27px;
  --font24: 24px;
  --font20: 20px;
  --font18: 18px;
  --font17: 17px;
  --font16: 16px;
  --font15: 15px;
  --font14: 14px;
  --font13: 13px;
}

.heading1 {
  color: #000;
  font-size: var(--font80);
  font-weight: 700;
  margin: 0;
  line-height: 100%;
}

@media only screen and (max-width: 1400px) {
  .heading1 {
    font-size: var(--font50);
  }
}

.heading2 {
  font-size: var(--font80);
  color: #000;
  font-weight: 700;
  margin: 0;
  line-height: 100%;
  text-align: center;
}

@media only screen and (max-width: 1400px) {
  .heading2 {
    font-size: var(--font50);
  }
}

.heading3 {
  font-size: var(--font30);
  color: var(--dark-color);
  font-weight: 700;
  margin: 0;
  line-height: 100%;
}

@media only screen and (max-width: 1400px) {
  .heading3 {
    font-size: var(--font24);
  }
}

.heading4 {
  font-size: var(--font36);
  font-weight: 600;
  color: #fff;
}

@media only screen and (max-width: 1400px) {
  .heading4 {
    font-size: var(--font24);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1650px;
    width: 100%;
  }
}

.btn-solid {
  background-color: var(--darkgreen);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  font-size: var(--font24);
  transition: all 0.3s ease-in-out 0s;
  line-height: 100%;
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  text-align: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .btn-solid {
    font-size: var(--font20);
    min-height: 45px;
    padding: 0 1.7rem;
  }
}

.btn-solid:hover {
  background-color: var(--lightgeeen);
}

.btn-solid.blue-btn {
  background-color: #19AFDF;
}

@media only screen and (max-width: 767px) {
  .btn-solid.blue-btn {
    font-size: var(--font16);
    min-height: 50px;
  }
}

.btn-solid.blue-btn:hover {
  background-color: var(--dark-color);
}

.btn-solid.btn-light {
  background-color: #fff;
  color: #000;
}

.btn-solid.btn-light:hover {
  background-color: var(--dark-color);
  color: #fff;
}

.btn-link {
  color: var(--darkgreen);
  position: relative;
  font-size: var(--font24);
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  padding: 0 0 7px 0;
  transition: all 0.3s ease-in-out 0s;
}

@media only screen and (max-width: 767px) {
  .btn-link {
    font-size: var(--font20);
  }
}

.btn-link:hover {
  color: var(--lightgeeen);
}

.btn-link:hover::after {
  background-color: var(--lightgeeen);
}

.btn-link::after {
  background-color: var(--darkgreen);
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
}

.box-card {
  background-color: var(--light-color);
  transition: all 0.3s ease-in-out 0s;
  padding: 1rem 1.5rem 2rem 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 65px;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .box-card {
    padding: 1rem 1rem 2rem 1rem;
  }
}

.box-card:hover {
  box-shadow: rgba(0, 0, 0, 0.17) 0 6px 24px;
}

.box-card .bottom {
  border-top: rgba(112, 112, 112, 0.43) dashed 2px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  line-height: normal;
  padding-top: 5px;
}

.box-card .bottom p {
  margin: 0;
  width: 100%;
  text-align: right;
  font-size: var(--font15);
  font-weight: 300;
}

.box-card .bottom .btn-solid {
  margin-top: 1rem;
}

.box-card .bottom .btn-link {
  margin-top: 8px;
}

.box-card .bottom .location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-color);
  font-weight: 700;
  font-size: var(--font20);
  align-self: flex-start;
}

.box-card .bottom .location::before {
  content: "";
  width: 22px;
  height: 28px;
  background-size: 22px;
  background: url(../image/location-map.svg) 0 0 no-repeat;
}

.box-card .bottom .date {
  align-self: flex-start;
  font-weight: 300;
  color: var(--dark-color);
}

.box-card .bottom .date strong {
  font-weight: 700;
}

.box-card .top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.box-card .top .title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.box-card .top .title .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}

.box-card .top .title .badge-cls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #F5ECE0;
  line-height: 100%;
  border-radius: 16px;
  padding: 0 1.1rem;
  font-size: var(--font16);
  font-weight: 600;
  color: var(--dark-color);
  min-height: 40px;
}

.box-card .top .title .badge-cls::before {
  content: "";
  background-color: #F49E2B;
  width: 12px;
  height: 12px;
  border-radius: 50px;
}

.box-card .top .title .badge-cls.blue {
  background-color: #DEEEF3;
}

.box-card .top .title .badge-cls.blue::before {
  background-color: #19AFDF;
}

.box-card .top .title .badge-cls.green {
  background-color: #ECF0E2;
}

1D9C48 .box-card .top .title .badge-cls.lightgreen {
  background-color: #9FC13B;
}

.box-card .top .title .badge-cls.darkgreen {
  background-color: #1D9C48;
}

.box-contentsec .darkgreen .heading3 {

  font-weight: 700;
  color: #1D9C48;
  margin-bottom: 2rem;
}

.box-contentsec .lightgreen .heading3 {
  font-weight: 700;
  color: #9FC13B;
  margin-bottom: 2rem;
}

.box-contentsec .darkgreen .left-box::before {
  background-color: #1D9C48;
  border-radius: 52px;
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  display: inline-block;
  position: absolute;
  right: -30px;
  bottom: -25px;
  z-index: -1;
}

.box-contentsec .lightgreen .left-box::before {
  background-color: #9FC13B;
  border-radius: 52px;
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  display: inline-block;
  position: absolute;
  right: -30px;
  bottom: -25px;
  z-index: -1;
}

.box-card .top .title .badge-cls.green::before {
  background-color: #9FC13B;
}

.box-card .top .title .img-box {
  min-width: 54px;
  display: inline-flex;
  background-color: #fff;
  padding: 5px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-right: -0.5rem;
}

.box-inner {
  border-radius: 52px;
  background-color: #9FC13B;
  padding-top: 2rem;
}

.box-inner.lightblue {
  background-color: #19AFDF;
}

.box-inner.lightblue img {
  margin-bottom: 0;
  right: -9rem;
}

@media only screen and (max-width: 1780px) {
  .box-inner.lightblue img {
    right: 0rem;
  }
}

.box-inner.bluecolor {
  background-color: #5B5099;
}

.box-inner.bluecolor .heading1 {
  color: #fff;
}

.box-inner.bluecolor p {
  color: #fff;
}

.box-inner.red {
  background-color: #B41E7E;
  padding-top: 0;
}

.box-inner.red img {
  margin-bottom: 0;
  right: -2.5rem;
}

@media only screen and (max-width: 1780px) {
  .box-inner.red img {
    right: 0rem;
  }
}

.box-inner.red .heading1 {
  color: #fff;
}

.box-inner.red p {
  color: #fff;
}

.box-inner.darkgreen {
  background-color: var(--darkgreen);
}

.box-inner.darkgreen .heading1 {
  color: #fff;
}

.box-inner.darkgreen p {
  color: #fff;
}

.box-inner.darkgreen img {
  margin-bottom: 0;
}

.box-inner .left-content {
  padding: 4rem 0 5rem 7rem;
}

@media only screen and (max-width: 1460px) {
  .box-inner .left-content {
    padding: 1.7rem 2.3rem;
  }
}

@media only screen and (max-width: 991px) {
  .box-inner .left-content {
    padding: 1.7rem 1.2rem;
  }
}

.box-inner .left-content p {
  font-size: var(--font30);
  font-weight: 300;
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  .box-inner .left-content p {
    font-size: var(--font24);
  }
}

.box-inner img {
  margin-bottom: -3rem;
  right: -4rem;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .box-inner img {
    right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .box-inner img {
    margin-bottom: 0;
  }
}

.navbar {
  padding: 1rem 0 2rem 0;
  transition: all 0.3s ease-in-out 0s;
  background-color: #fff;
}

@media only screen and (max-width: 991px) {
  .navbar {
    box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
    padding: 2rem 0 1rem 0;
  }
}

@media only screen and (max-width: 991px) {
  .navbar .container {
    align-items: flex-end;
  }
}

.navbar .navbar-brand {
  transition: all 0.3s ease-in-out 0s;
  padding: 0;
}

@media screen and (min-width: 1400px) {
  .navbar .navbar-brand {
    margin-left: 9rem;
  }
}

.navbar .navbar-brand img {
  transition: all 0.3s ease-in-out 0s;
}

@media only screen and (max-width: 1199px) {
  .navbar .navbar-brand img {
    max-width: 106px;
  }
}

.navbar .right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (max-width: 1199px) {
  .navbar .right {
    gap: 10px;
  }
}

.navbar .right .offerte {
  color: var(--darkgreen);
  font-size: var(--font13);
  font-weight: 500;
  border-bottom: var(--darkgreen) solid 2px;
  text-decoration: none;
}

.navbar .right .top {
  justify-content: flex-end;
}

.navbar .right .top li a {
  color: #888B8D;
  font-weight: 500;
  text-decoration: none;
  font-size: var(--font18);
}

.navbar .right .top li a:hover {
  color: var(--darkgreen);
}

.navbar .menu {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .navbar .offcanvas {
    top: 6.5rem;
    background: color(a98-rgb 1 1 1/0.97);
    border: 0;
    width: 100%;
  }
}

.navbar .navbar-nav li .nav-link {
  font-size: var(--font24);
  font-weight: 500;
  color: #888B8D;
  position: relative;
  padding: 0.5rem 0;
  line-height: 100%;
}

@media only screen and (max-width: 1199px) {
  .navbar .navbar-nav li .nav-link {
    font-size: var(--font20);
  }
}

@media only screen and (max-width: 991px) {
  .navbar .navbar-nav li .nav-link {
    font-weight: 700;
    color: #000;
  }
}

.navbar .navbar-nav li .nav-link:hover {

  border: 3px solid var(--darkgreen);
  color: var(--darkgreen) !important;

}

.navbar .navbar-nav li .nav-link:hover::after {
  width: 100%;
}

.navbar .navbar-nav li .nav-link::after {
  background-color: var(--darkgreen);
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: all 0.3s ease-in-out 0s;
}

.navbar .navbar-nav li .nav-link.active {
  color: var(--darkgreen);
}

.navbar .navbar-nav li .nav-link.active::after {
  width: 100%;
}

@media only screen and (min-width: 1400px) {
  .navbar .navbar-nav li.sei-azi {
    margin-left: 6rem;
  }
}

@media only screen and (min-width: 992px) {
  .navbar .navbar-nav li.sei-azi .nav-link {
    background-color: var(--darkgreen);
    padding: 1rem 2rem;
    font-size: var(--font24);
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .navbar .navbar-nav li.sei-azi .nav-link {
    font-size: var(--font20);
  }
}

.navbar .navbar-nav li.sei-azi .nav-link::after {
  content: none;
}

@media only screen and (min-width: 992px) {
  .navbar .navbar-nav li.sei-azi .nav-link:hover {
    background-color: var(--lightgeeen);
  }
}

.navbar.sticky-top1 {
  background-color: rgb(255, 255, 255);
  padding: 1rem 0 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.06) 0 5px 10px;
}

.navbar.sticky-top1 .navbar-brand {
  margin-left: 0;
}

@media only screen and (min-width: 1200px) {
  .navbar.sticky-top1 .navbar-brand img {
    max-width: 190px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar.sticky-top1 .offcanvas {
    top: 5.5rem;
  }
}

.offer-sec {
  overflow: hidden;
}

.offer-sec .heading2 {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 1199px) {
  .offer-sec .heading2 {
    margin-bottom: 2.5rem;
  }
}

.offer-sec .full-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 6rem;
  gap: 10px;
  justify-content: space-between;
  max-width: 90%;
  /* margin: 0 auto; */
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1199px) {
  .offer-sec .full-search {
    margin-bottom: 2rem;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}

.offer-sec .full-search .left {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 16px;
  flex: 1;
  border-radius: 50px;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .offer-sec .full-search .left {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    gap: 20px;
    overflow-x: hidden;
  }
}

.offer-sec .full-search .left>.col-auto {
  flex: 1;
}

.offer-sec .full-search .left .dropdown-toggle {
  background-color: transparent;
  border: 0;
  border-right: #707070 solid 1px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 1.4rem;
  text-align: left;
  font-size: var(--font20);
  font-weight: 700;
  gap: 1rem;
  min-height: 49px;
}

@media only screen and (max-width: 767px) {
  .offer-sec .full-search .left .dropdown-toggle {
    background-color: var(--light-color);
    border: #D1D1D1 solid 1px;
    box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
    border-radius: 50px;
    min-height: 54px;
    font-size: var(--font16);
  }
}

.offer-sec .full-search .left .dropdown-toggle::before {
  content: "";
  background: url(../image/sector-icon.svg) center center no-repeat;
  width: 28px;
  height: 29px;
  background-size: auto 27px;
}

.offer-sec .full-search .left .dropdown-toggle::after {
  margin-left: auto;
  background: url(../image/select-dropdown.svg) center center no-repeat;
  background-size: 18px;
  border: 0;
  width: 18px;
  height: 15px;
}

.offer-sec .full-search .left .dropdown-toggle.location::before {
  background-image: url(../image/location-map.svg);
}

.offer-sec .full-search .left .dropdown-toggle.contract {
  border: 0;
}

.offer-sec .full-search .left .dropdown-toggle.contract::before {
  background-image: url(../image/contract-icon.svg);
}

.offer-sec .full-search .search-icon {
  background-color: var(--darkgreen);
  border-radius: 100px;
  color: #fff;
  font-size: var(--font16);
  font-weight: 600;
  border: 0;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: normal;
  padding: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  text-align: center;
  justify-content: center;
  transition: all 0.3s ease-in-out 0s;
}

@media only screen and (max-width: 767px) {
  .offer-sec .full-search .search-icon {
    width: 54px;
    height: 54px;
  }
}

@media only screen and (max-width: 767px) {
  .offer-sec .full-search .search-icon img {
    max-width: 20px;
  }
}

.offer-sec .full-search .search-icon:hover {
  background-color: var(--lightgeeen);
}

.offer-sec .full-search .filter {
  background-color: var(--bluecolor);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.offer-sec .full-search .form-select,
.offer-sec .full-search .form-control {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  height: 50px;
  background-color: #F2F2F2;
  border: 1px solid #EDEDED;
  border-radius: 50px;
  line-height: normal;
  color: var(--graycolor);
  width: 100%;
}

@media only screen and (max-width: 767px) {

  .offer-sec .full-search .form-select,
  .offer-sec .full-search .form-control {
    height: 40px;
    padding: 5px 16px;
  }
}

.offer-sec .full-search .dropdown-menu {
  border: 0;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 16px;
  border-radius: 2rem;
  margin-top: 1rem !important;
}

@media only screen and (max-width: 767px) {
  .offer-sec .full-search .dropdown-menu {
    margin-top: 0rem !important;
    width: 94%;
    padding: 1rem;
  }
}

.offer-sec .full-search .dropdown-menu .form-check-input:checked {
  background-color: var(--darkgreen);
  border-color: var(--darkgreen);
}

.offer-sec .full-search .dropdown-menu .btn-solid {
  font-size: var(--font15);
  font-weight: 600;
  background-color: #DD1F29;
  min-height: 36px;
  padding: 0 1rem;
}

.offer-sec .full-search .dropdown-menu .list-check {
  -moz-column-count: 3;
  column-count: 3;
  margin-top: 2rem;
  gap: 55px;
  row-gap: 55px;
}

@media only screen and (max-width: 767px) {
  .offer-sec .full-search .dropdown-menu .list-check {
    -moz-column-count: 2;
    column-count: 2;
  }
}

.offer-sec .full-search .dropdown-menu .list-check .form-check {
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-size: var(--font20);
}

@media only screen and (max-width: 767px) {
  .offer-sec .full-search .dropdown-menu .list-check .form-check {
    font-size: var(--font18);
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
}

.offer-sec .bottom-space {
  margin-top: 6rem;
}

@media only screen and (max-width: 767px) {
  .offer-sec .bottom-space {
    margin-top: 3rem;
  }
}

.common-space {
  padding: 10rem 0;
}

@media only screen and (max-width: 1199px) {
  .common-space {
    padding: 3rem 0;
  }
}

.find-job .heading2 {
  text-align: left;
}

.find-job .des-text {
  font-size: var(--font30);
  font-weight: 300;
  margin: 2rem 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .find-job .des-text {
    font-size: var(--font24);
  }
}

.find-job .twocolumn {
  padding: 0 4rem;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 991px) {
  .find-job .twocolumn {
    padding: 0;
  }
}

.find-job .twocolumn .swiper-slide {
  height: auto;
}

.find-job .slide {
  position: relative;
  margin-top: 5rem;
}

@media only screen and (max-width: 1199px) {
  .find-job .slide {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 1199px) {

  .find-job .slide .swiper-prev,
  .find-job .slide .swiper-next {
    display: none;
  }
}

.swiper-next,
.swiper-prev,
.swiper-next1,
.swiper-prev1 {
  border: #183B56 solid 1px;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background: #fff url(../image/arrow-right.svg) center center no-repeat;
  background-size: 28px;
  right: -2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
}

@media only screen and (max-width: 1600px) {

  .swiper-next,
  .swiper-prev,
  .swiper-next1,
  .swiper-prev1 {
    right: 0rem;
  }
}

.swiper-next::after,
.swiper-prev::after,
.swiper-next1::after,
.swiper-prev1::after {
  content: none;
}

.swiper-prev,
.swiper-prev1 {
  transform: scaleX(-1) translateY(-50%);
  left: -2rem;
}

@media only screen and (max-width: 1600px) {

  .swiper-prev,
  .swiper-prev1 {
    left: 0rem;
  }
}

.logo-sec .heading2 {
  text-align: left;
  font-size: var(--font55);
  margin-bottom: 1rem;
}

@media only screen and (max-width: 991px) {
  .logo-sec .heading2 {
    margin-bottom: 0;
  }
}

.logo-sec .parent {
  position: relative;
}

.hero-sec {
  margin-bottom: 12rem;
}

@media only screen and (max-width: 1199px) {
  .hero-sec {
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 991px) {
  .hero-sec {
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 575px) {
  .hero-sec {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .container {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .container .row {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .container .box-inner .left-content {
    padding: 1.7rem 0.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .hero-sec .container .box-inner {
    border-radius: 0;
    padding-top: 0;
  }
}

.card-small {
  border-radius: 34px;
  background-color: #F49E2B;
  color: #fff;
  padding: 0rem 0 0 2rem;
  height: 100%;
}

.card-small .row {
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .card-small .row {
    flex-direction: column;
    gap: 50px;
  }
}

.card-small .left {
  position: absolute;
  padding-top: 2rem;
}

@media only screen and (max-width: 991px) {
  .card-small .left {
    position: relative;
    padding-left: 0;
  }
}

.card-small .left p {
  max-width: 65%;
}

@media only screen and (max-width: 991px) {
  .card-small .left p {
    max-width: 100%;
  }
}

.card-small .right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.card-small .right img {
  margin-right: -4rem;
}

@media only screen and (max-width: 991px) {
  .card-small .right img {
    margin-right: 0;
  }
}

.card-small .heading3 {
  color: #fff;
  font-weight: 800;
  font-size: var(--font55);
  margin-bottom: 1rem;
  line-height: 100%;
}

@media only screen and (max-width: 1199px) {
  .card-small .heading3 {
    font-size: var(--font40);
  }
}

.card-small p {
  font-weight: 500;
  font-size: var(--font30);
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  .card-small p {
    font-size: var(--font24);
  }
}

.card-small.green {
  background-color: #1D9C48
}

.card-small.lightgreen {
  background-color: #9FC13B
}

.card-small.red {
  background-color: #DD1F29;
}

.card-small.red .right img {
  max-width: 60%;
  margin-bottom: -2.3rem;
}

@media only screen and (max-width: 991px) {
  .card-small.red .right img {
    max-width: 100%;
    margin-bottom: -1.7rem;
  }
}

.email-icon {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  background-color: #F49E2B;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.17) 0 6px 24px;
  z-index: 1;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background-color: var(--darkgreen);
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.17) 0 6px 24px;
  z-index: 1;
}

.company-sec {
  overflow: hidden;
}

.company-sec .box-inner {
  background-color: var(--darkgreen);
}

@media only screen and (max-width: 1199px) {
  .company-sec .box-inner {
    padding-top: 1rem;
  }
}

.company-sec .box-inner.orange {
  background-color: #F49E2B;
}

.company-sec .box-inner.orange img {
  max-width: 100%;
  width: 100%;
  margin-bottom: -4.5rem;
}

@media only screen and (max-width: 1400px) {
  .company-sec .box-inner.orange img {
    margin-bottom: -2.6rem;
  }
}

@media only screen and (max-width: 991px) {
  .company-sec .box-inner.orange img {
    display: flex;
    margin: 0 auto -1.5rem;
    max-width: 261px;
  }
}

.company-sec .box-inner.orange .left-content .heading2 {
  color: #000;
}

.company-sec .box-inner.orange .left-content .heading4 {
  color: #000;
}

.company-sec .box-inner.orange .left-content p {
  color: #000;
}

.company-sec .box-inner .left-content {
  align-items: flex-start;
}

.company-sec .box-inner .heading2 {
  color: #fff;
  text-align: left;
}

.company-sec .box-inner p {
  color: #fff;
}

.company-sec .box-inner img {
  margin-bottom: 0;
  right: -3rem;
}

@media only screen and (max-width: 1600px) {
  .company-sec .box-inner img {
    right: 0rem;
  }
}

.why-riwork {
  background-color: #B41E7E;
}

@media only screen and (max-width: 991px) {
  .why-riwork {
    border-radius: 52px;
    margin: 0 0.8rem;
    margin-bottom: 3rem;
  }
}

.why-riwork .row {
  --bs-gutter-x: 7rem;
}

@media only screen and (max-width: 1600px) {
  .why-riwork .row {
    --bs-gutter-x: 0rem;
  }
}

.why-riwork .left-area {
  padding: 5rem 0;
  align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
  .why-riwork .left-area {
    padding: 2rem 0;
  }
}

.why-riwork .left-area .heading2 {
  text-align: left;
  color: #fff;
}

.why-riwork .left-area p {
  font-size: var(--font30);
  font-weight: 300;
  margin: 0;
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  .why-riwork .left-area p {
    font-size: var(--font24);
  }
}

@media only screen and (max-width: 991px) {
  .why-riwork .img-fluid {
    max-width: 80%;
    margin: auto;
    display: flex;
  }
}

footer {
  background-color: var(--light-color);
  padding: 6rem 0;
}

@media only screen and (max-width: 1199px) {
  footer {
    padding: 3rem 0;
  }
}

footer h3 {
  font-size: var(--font20);
  font-weight: 700;
  margin-bottom: 1rem;
}

footer ul li a {
  font-size: 19px;
  font-weight: 300;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-in-out 0s;
}

footer ul li a:hover {
  color: var(--darkgreen);
}

footer .logo {
  max-width: 220px;
}

footer p {
  font-size: var(--font18);
  font-weight: 300;
}

.swiper-pagination-bullet {
  border: #707070 solid 1px;
  background-color: transparent;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--lightgeeen);
}

.info-inner .container {
  max-width: 860px;
}

.info-inner .card-small {
  height: auto;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 1199px) {
  .info-inner .card-small {
    margin-bottom: 3rem;
  }
}

.info-inner .card-small .left {
  max-width: 670px;
}

@media only screen and (max-width: 991px) {
  .info-inner .card-small .right {
    justify-content: center;
  }
}

.info-inner .card-small.orange .right img {
  margin-top: -1rem;
}

@media only screen and (max-width: 767px) {
  .info-inner .card-small.orange .right img {
    margin-top: 0;
  }
}

.info-inner .card-small.red .right img {
  margin-top: 3rem;
}

@media only screen and (max-width: 767px) {
  .info-inner .card-small.red .right img {
    margin-top: 0;
  }
}

.info-inner .col-12 {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 1199px) {
  .info-inner .col-12 {
    margin-bottom: 2rem;
  }
}

.info-inner .col-12 p {
  font-size: var(--font27);
  font-weight: 300;
  line-height: 2.5rem;
}

@media only screen and (max-width: 1199px) {
  .info-inner .col-12 p {
    font-size: var(--font24);
  }
}

.box-contentsec .left-box {
  max-width: 520px;
  position: relative;
  padding: 2rem 0 0 2rem;
  margin: 0 auto;
}

.box-contentsec.sarch-sec .left-box {
  max-width: 100%;
  position: relative;
  padding: 2rem 0 0 2rem;
  margin: 0 auto;
  right: 70px;
}

@media only screen and (max-width: 991px) {
  .box-contentsec .left-box {
    margin-bottom: 2rem;
    padding: 1.5rem 0 0 1.5rem;
  }
}

.box-contentsec .left-box img {
  border-radius: 52px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}



.box-contentsec .left-box.left-box-svg img {
  border-radius: 0px !important;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  top: 50px;
  right: -55px;
}

@media only screen and (max-width: 767px) {
  .box-contentsec .left-box img {
    border-radius: 30px;
  }

  .box-contentsec .left-box.left-box-svg img {
    border-radius: 0px !important;
  }
}

/*
.box-contentsec .left-box::before {
  background-color: #5B5099;
  border-radius: 52px;
  content: "";
  width: calc(100% - 100px);
  height: calc(100% - 40px);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
*/
.box-contentsec .left-box::before {
  background-color: #5B5099;
  border-radius: 52px;
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  display: inline-block;
  position: absolute;
  right: -30px;
  bottom: -25px;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .box-contentsec .left-box::before {
    border-radius: 30px;
  }
}

.box-contentsec .heading3 {
  font-size: var(--font55);
  font-weight: 700;
  color: #5B5099;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1199px) {
  .box-contentsec .heading3 {
    font-size: var(--font36);

  }
}

@media only screen and (max-width: 1199px) {
  .box-contentsec .row {
    margin-bottom: 4rem;
  }
}

.box-contentsec ul {
  gap: 1rem;
}

.box-contentsec ul li {
  font-size: 22px;
  font-weight: 300;
  display: flex;
  gap: 12px;
  line-height: normal;
}

@media only screen and (max-width: 1199px) {
  .box-contentsec ul li {
    font-size: 20px;
  }
}

.box-contentsec ul li::before {
  width: 10px;
  min-width: 10px;
  height: 10px;
  background-color: #5B5099;
  border-radius: 50px;
  content: "";
  margin-top: 10px;
}

@media only screen and (max-width: 991px) {
  .box-contentsec .green {
    flex-direction: column-reverse;
  }
}

.box-contentsec .green .heading3 {
  color: var(--darkgreen);
}

.box-contentsec .green ul li::before {
  background-color: var(--darkgreen);
}

.box-contentsec .green .left-box::before {
  background-color: var(--darkgreen);
}

.box-contentsec .orange .heading3 {
  color: #F49E2B
    /*#DD1F29*/
  ;
}

.box-contentsec .orange ul li::before {
  background-color: #F49E2B;
}

.box-contentsec .orange .left-box::before {
  background-color: #F49E2B;
}

@media only screen and (max-width: 991px) {
  .box-contentsec .orange.orangecard {
    flex-direction: column-reverse;
  }

  .box-contentsec .darkgreen {
    flex-direction: column-reverse;
  }

  .box-contentsec .lightgreen {
    flex-direction: column-reverse;
  }
}

.box-contentsec .skyblue .heading3 {
  color: #19AFDF;
}

.box-contentsec .lightgreen .heading3 {
  color: #9FC13B;
}

.box-contentsec .darkgreen .heading3 {
  color: var(--darkgreen);
  ;
}

.box-contentsec .red .heading3 {
  color: #DD1F29;
}

.box-contentsec .skyblue ul li::before {
  background-color: #19AFDF;
}

.box-contentsec .skyblue .left-box::before {
  background-color: #19AFDF;
}

.box-contentsec .red ul li::before {
  background-color: #B41E7E;
}

.box-contentsec .red .left-box::before {
  background-color: #DD1F29;
}

.sarch-sec {
  padding-bottom: 9rem;
}

.box-contentsec .row {
  margin-bottom: 11rem;
}

.box-contentsec.sarch-sec {
  padding-bottom: 1rem;
}

.box-contentsec.sarch-sec .row {
  margin-bottom: 1rem !important;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec {
    padding-bottom: 3rem;
  }
}

@media only screen and (min-width: 1400px) {
  .sarch-sec .container {
    max-width: 1300px;
  }
}

.sarch-sec .condidati {
  font-size: var(--font70);
  margin-bottom: 5rem;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .condidati {
    font-size: var(--font36);
    margin-bottom: 3rem;
  }
}

.sarch-sec .top-des {
  max-width: 850px;
  margin: 0 auto 7rem;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .top-des {
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
}

.sarch-sec .top-des p {
  font-size: var(--font27);
  font-weight: 300;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .top-des p {
    font-size: var(--font20);
  }
}

.sarch-sec .inner-boxbg {
  background-color: var(--light-color);
  border-radius: 52px;
  padding: 4.5rem 7rem;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .inner-boxbg {
    padding: 7rem 2.5rem 4rem 2.5rem;
  }
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg {
    padding: 2rem 1.5rem;
  }
}

.sarch-sec .inner-boxbg .top-part {
  margin-top: -6rem;
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg .top-part {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

.sarch-sec .inner-boxbg .top-part span {
  color: var(--dark-color);
  font-size: var(--font24);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg .top-part span {
    font-size: var(--font18);
  }
}

.sarch-sec .inner-boxbg .top-part .heading2 {
  font-weight: 700;
  font-size: var(--font55);
  text-align: left;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .inner-boxbg .top-part .heading2 {
    font-size: var(--font36);
  }
}

.sarch-sec .inner-boxbg .top-part .search {
  margin: -2rem -4rem 0 0;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .inner-boxbg .top-part .search {
    max-width: 200px;
    margin: 0 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg .top-part .search {
    max-width: 100px;
    margin: 0;
  }
}

.sarch-sec .inner-boxbg .heading3 {
  color: var(--dark-color);
  font-size: var(--font40);
  font-weight: 500;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .inner-boxbg .heading3 {
    font-size: var(--font27);
  }
}

.sarch-sec .inner-boxbg .row-first {
  margin-bottom: 6.5rem;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .inner-boxbg .row-first {
    margin-bottom: 2.5rem;
  }
}

.sarch-sec .inner-boxbg .btn-solid {
  outline: none;
  box-shadow: none;
  border: 0;
  font-size: var(--font30);
  min-height: 65px;
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg .btn-solid {
    font-size: var(--font24);
    min-height: 55px;
  }
}

.sarch-sec .inner-boxbg .bottom-area {
  margin: 5rem 0 7rem 0;
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg .bottom-area {
    margin: 2.5rem 0 3rem 0;
  }
}

.sarch-sec .inner-boxbg .bottom-area .heading3 {
  margin-bottom: 1rem;
}

.sarch-sec .inner-boxbg .bottom-area small {
  color: #888B8D;
  font-size: var(--font18);
  font-weight: 300;
  margin-bottom: 1.5rem;
  display: block;
}

.sarch-sec .inner-boxbg .form-floating .form-control,
.sarch-sec .inner-boxbg .form-floating .form-select {
  font-size: var(--font24);
  border: 0;
  border-radius: 0;
  padding: 1rem 2rem;
  height: auto;
}

@media only screen and (max-width: 991px) {

  .sarch-sec .inner-boxbg .form-floating .form-control,
  .sarch-sec .inner-boxbg .form-floating .form-select {
    font-size: var(--font20);
    padding: 1rem 1rem;
  }
}

.sarch-sec .inner-boxbg .form-floating label {
  font-weight: 300;
  font-size: var(--font24);
  padding: 1rem 2rem;
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg .form-floating label {
    font-size: var(--font20);
    padding: 1rem 1rem;
  }
}

.sarch-sec .inner-boxbg .form-floating>.form-control:not(:-moz-placeholder-shown)~label {
  transform: scale(0.65) translateY(-1.5rem) translateX(0.15rem);
}

.sarch-sec .inner-boxbg .form-floating>.form-control-plaintext~label,
.sarch-sec .inner-boxbg .form-floating>.form-control:focus~label,
.sarch-sec .inner-boxbg .form-floating>.form-control:not(:placeholder-shown)~label,
.sarch-sec .inner-boxbg .form-floating>.form-select~label {
  transform: scale(0.65) translateY(-1.5rem) translateX(0.15rem);
}

.sarch-sec .inner-boxbg .main-file {
  margin: 6rem 0;
}

.sarch-sec .inner-boxbg .main-file .fileupload {
  background-color: #fff;
  padding: 2rem;
  margin-top: 2.5rem;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .sarch-sec .inner-boxbg .main-file .fileupload {
    margin-top: 1rem;
  }
}

.sarch-sec .inner-boxbg .main-file .fileupload .btn-solid {
  background-color: #F49E2B;
  min-height: 54px;
  margin-top: 1.5rem;
  font-size: var(--font24);
}

.sarch-sec .inner-boxbg .main-file .fileupload .js-labelFile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sarch-sec .inner-boxbg .main-file .fileupload .js-labelFile .icon {
  max-height: 80px;
}

@media only screen and (max-width: 767px) {
  .sarch-sec .inner-boxbg .main-file .fileupload .js-labelFile .icon {
    max-height: 40px;
  }
}

.sarch-sec .inner-boxbg .main-file .fileupload .js-labelFile .js-fileName {
  font-weight: 300;
  color: #888B8D;
  font-size: var(--font18);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.sarch-sec .inner-boxbg .main-file .fileupload .input-file {
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 1199px) {
  .sarch-sec .inner-boxbg .main-file {
    margin: 3rem 0;
  }
}

@media only screen and (max-width: 767px) {
  .sarch-sec .inner-boxbg .main-file {
    margin: 0rem 0 3rem 0;
  }
}

@media only screen and (max-width: 767px) {
  .sarch-sec .inner-boxbg .main-file>div {
    padding: 0;
    --bs-gutter-y: 1.5rem;
  }
}

.sarch-sec .inner-boxbg .terms-cols {
  margin-bottom: 6rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 991px) {
  .sarch-sec .inner-boxbg .terms-cols {
    margin-bottom: 2rem;
  }
}

.sarch-sec .inner-boxbg .terms-cols .form-check-input:checked {
  background-color: var(--darkgreen);
}

.sarch-sec .inner-boxbg .terms-cols .form-check-label {
  font-size: var(--font18);
  font-weight: 300;
  color: #888B8D;
}

.similar-offer {
  margin-top: 12rem;
}

@media only screen and (max-width: 1199px) {
  .similar-offer {
    margin-top: 2rem;
  }
}

.similar-offer .heading2 {
  font-size: var(--font55);
}

@media only screen and (max-width: 1199px) {
  .similar-offer .heading2 {
    font-size: var(--font36);
  }
}

.similar-offer .see-offer {
  color: #19AFDF;
  font-size: var(--font36);
  font-weight: 300;
}

@media only screen and (max-width: 1199px) {
  .similar-offer .see-offer {
    font-size: var(--font20);
  }
}

.similar-offer .see-offer:hover {
  color: var(--darkgreen);
}

.similar-offer .see-offer:hover::after {
  background-color: var(--darkgreen);
}

.similar-offer .see-offer::after {
  background-color: #19AFDF;
}

.top-accordian {
  max-width: 960px;
  margin: 0 auto 10rem;
}

@media only screen and (max-width: 1199px) {
  .top-accordian {
    margin-bottom: 2rem;
  }
}

.top-accordian .heading2 {
  text-align: left;
  font-size: var(--font55);
  margin-bottom: 3rem;
}

@media only screen and (max-width: 1199px) {
  .top-accordian .heading2 {
    font-size: var(--font36);
    margin-bottom: 1.5rem;
  }
}

.top-accordian p {
  font-size: var(--font30);
  font-weight: 300;
}

@media only screen and (max-width: 1199px) {
  .top-accordian p {
    font-size: var(--font20);
  }
}

.top-accordian .accordion {
  margin-top: 4rem;
}

@media only screen and (max-width: 767px) {
  .top-accordian .accordion {
    margin-top: 2rem;
  }
}

.top-accordian .accordion .accordion-button {
  color: var(--dark-color);
  font-size: var(--font36);
  font-weight: 600;
}

@media only screen and (max-width: 1199px) {
  .top-accordian .accordion .accordion-button {
    font-size: var(--font24);
  }
}

.top-accordian .accordion .accordion-body {
  font-size: var(--font27);
  font-weight: 300;
}

@media only screen and (max-width: 1199px) {
  .top-accordian .accordion .accordion-body {
    font-size: var(--font20);
  }
}

.top-herosec {
  margin-bottom: 10rem;
}

@media only screen and (max-width: 1199px) {
  .top-herosec {
    margin-bottom: 3rem;
  }
}

.top-herosec .inner-boxarea {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 991px) {
  .top-herosec .inner-boxarea {
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

.top-herosec .inner-boxarea .heading1 {
  max-width: 45%;
}

@media only screen and (max-width: 991px) {
  .top-herosec .inner-boxarea .heading1 {
    max-width: 100%;
  }
}

.top-herosec .inner-boxarea .btn-solid {
  font-size: var(--font30);
  font-weight: 500;
  min-height: 75px;
}

@media only screen and (max-width: 767px) {
  .top-herosec .inner-boxarea .btn-solid {
    font-size: var(--font24);
    min-height: 50px;
  }
}

.top-herosec span {
  color: #888B8D;
  font-weight: 500;
  font-size: var(--font24);
}

@media only screen and (max-width: 1199px) {
  .top-herosec span {
    font-size: var(--font18);
  }
}

.top-herosec h3 {
  font-weight: 700;
  font-size: var(--font36);
  margin-bottom: 0;
  color: var(--dark-color);
}

@media only screen and (max-width: 1199px) {
  .top-herosec h3 {
    font-size: var(--font24);
  }
}

/* Added by WEI */
.cs-badge {
  font-size: 11px;
  background-color: var(--darkgreen);
  padding: 5px;
  border-radius: 11px;
  border: 1px solid white;
  color: white;
}

/* Ended by WEI */
.wpcf7-form-control.wpcf7-file {
  /* Customize the input file field */

  padding: 10px;

  margin: 10px;

}

.wpcf7-field-group-remove,
.wpcf7-field-group-add {
  font: inherit;
  -webkit-appearance: button;
  border-color: #F49E2B;
  color: #F49E2B;
  min-height: 54px;
  margin-top: 1.5rem;
  font-size: var(--font24);
  line-height: 100%;
  padding: 0 2.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
  background-color: #F49E2B;
  color: #fff;
  min-height: 54px;
  margin-top: 1.5rem;
  font-size: var(--font24);
  line-height: 100%;
  padding: 0 2.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}