@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Root */

:root {
  --primary-color: #0096aa;
  --primary-light-color: #e6f3f5;
  --dark-color: #112340;
  --white: #fff;
  --black: #000;
  --gray-color: rgba(28, 38, 46, 0.6);
  --brown-color: #bc955b;
  --primary-font: "Proxima Nova", Arial, Helvetica, sans-serif;
  --text-color: #1c262e;
  --light-text-color: rgba(255, 255, 255, 0.6);
  --border: 1px solid rgba(28, 38, 46, 0.1);
}

/* Root */

/* default css */

html {
  overflow-x: hidden;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  font-family: var(--primary-font);
  color: var(--gray-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
a {
    text-decoration: none;
}
a.link {
  color: var(--text-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 16px;
}
a.link:hover {
  color: var(--primary-color);
}

a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html.show-menu {
  overflow: hidden;
}

html.show-menu body {
  overflow: hidden;
  height: 100%;
}
.form-control:focus,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

h1 {
  font-size: 6.5rem;
}
h2.big {
  font-size: 6rem;
}
h2 {
  font-size: 4.5rem;
}
h2.small {
  font-size: 4rem;
}
h3 {
  font-size: 3rem;
}
h4 {
  font-size: 2.8rem;
}
h5 {
  font-size: 2.5rem;
}
h5.small {
  font-size: 22px;
}
h6 {
  font-size: 20px;
}
p {
  font-size: 18px;
  color: var(--gray-color);
}
p.small {
  font-size: 16px;
}
.space-top {
  padding-top: 10rem;
}
.space-small-top {
  padding-top: 7rem;
}
.space-bottom {
  padding-bottom: 10rem;
}
.space-small-bottom {
  padding-bottom: 7rem;
}
img {
  max-width: 100%;
}
.btn {
  border: 0;
  font-size: 18px;
  padding: 16px 5rem;
  line-height: 1.6;
  border-radius: 30px;
  -webkit-transition: 0.3s background-color, color;
  -o-transition: 0.3s background-color, color;
  transition: 0.3s background-color, color;
  font-weight: 600;
}
.btn.phone-icn {
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn.phone-icn svg {
  margin-right: 1rem;
}
.btn-small {
  font-weight: 400;
  padding: 9px 2.5rem;
  font-size: 14px;
  border-radius: 20px;
}
.btn-big {
  padding: 21px 5rem;
  border-radius: 70px;
}
.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
}
.primary-btn:hover {
  background-color: #017c8c;
  color: var(--white);
}
.primary-btn.bordered {
  padding: 14px 5rem;
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.primary-btn.btn-small.bordered {
  padding: 8px 2.5rem;
  border: 1px solid var(--primary-color);
}
.primary-btn.bordered:hover {
  background-color: var(--primary-light-color);
}
.primary-btn.white-bordered {
  border: 2px solid var(--white);
  padding: 14px 5rem;
}
.primary-btn.btn-small.white-bordered {
  border: 1px solid var(--white);
  padding: 7px 2.5rem;
}
.primary-btn.white-btn {
  background-color: var(--white);
  color: var(--primary-color);
}
.primary-btn.white-btn:hover {
  background-color: var(--primary-light-color);
}
.title p.subtitle {
  color: var(--brown-color);
  text-transform: uppercase;
}
.title {
  margin-bottom: 4.5rem;
}
.title h1 {
  color: var(--text-color);
  font-weight: 600;
}
.title h2 {
  margin-bottom: 3.5rem;
  color: var(--text-color);
  font-weight: 700;
}
.title p {
  line-height: 1.8;
  margin-bottom: 2rem;
}
.title p:last-child {
  margin-bottom: 0;
}
.title.light-text p {
  color: var(--light-text-color);
}
.font-semi-bold {
  font-weight: 600;
}

.light-text {
  color: var(--light-text-color);
}
.primary-text {
  color: var(--primary-color);
}
.gray-text {
  color: var(--gray-color);
}
tbody,
td,
tfoot,
th,
thead,
tr,
.dark-text {
  color: var(--text-color);
}

.table th,
.table td {
  padding: 1.5rem;
}
.text-page a.readmore,
td a.readmore {
  white-space: normal;
  word-break: break-word;
}
.primary-bg {
  background-color: var(--primary-color);
}
.primary-light-bg {
  background-color: var(--primary-light-color);
}
.width-75 {
  max-width: 75%;
}
a.readmore {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  white-space: nowrap;
}
a.readmore.small {
  font-size: 16px;
  font-weight: 600;
}
a.readmore:hover {
  color: #017c8c;
}
a.light-link {
  color: var(--gray-color);
  text-decoration: none;
}
a.light-link:hover {
  color: var(--primary-color);
}
.form-select,
.form-control {
  font-size: 20px;
  color: var(--text-color);
  padding: 19px 30px;
  border-radius: 1rem !important;
}
.form-select:focus,
.form-control:focus {
  border-color: var(--primary-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-check {
  padding-left: 40px;
  position: relative;
  margin-bottom: 0;
}
.form-check .form-check-input {
  cursor: pointer;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  margin-left: 0;
  border: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M7 0.5H18C21.5899 0.5 24.5 3.41015 24.5 7V18C24.5 21.5899 21.5899 24.5 18 24.5H7C3.41015 24.5 0.5 21.5898 0.5 18V7C0.5 3.41015 3.41015 0.5 7 0.5Z' stroke='%23BBBEC1'/%3E%3Cpath d='M9.48694 13.6212L10.6765 14.7464L17.8088 8L19 9.12679L10.6765 17L7 13.5224L8.19124 12.3956L8.29655 12.4952L9.48694 13.6204V13.6212Z' fill='%23BBBEC1'/%3E%3C/svg%3E");
}
.form-check .form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M7 0.5H18C21.5899 0.5 24.5 3.41015 24.5 7V18C24.5 21.5899 21.5899 24.5 18 24.5H7C3.41015 24.5 0.5 21.5899 0.5 18V7C0.5 3.41015 3.41015 0.5 7 0.5Z' stroke='%230096AA'/%3E%3Cpath d='M9.48694 13.6212L10.6765 14.7464L17.8088 8L19 9.12679L10.6765 17L7 13.5224L8.19124 12.3956L8.29655 12.4952L9.48694 13.6212Z' fill='%230096AA'/%3E%3C/svg%3E");
  background-color: var(--white);
}
.form-check-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-check-label {
  color: var(--text-color);
}
.form-btn {
  border-radius: 10px;
}
.modal-backdrop {
  backdrop-filter: blur(10px);
}
/* List */
.list-title {
  margin-bottom: 20px;
}
.list li {
  list-style: none;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 10px;
}
.list.list-white li {
  color: var(--light-text-color);
}
.list li:last-child {
  margin-bottom: 0;
}
.list li:before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
}
.list.list-white li::before {
  background-color: var(--white);
}
/* List END */
.input-group > .form-control,
.input-group > .form-select {
  background-color: transparent;
  z-index: 3;
}
.datetimepicker.dropdown-menu {
  font-size: 1.6rem;
}
.datetimepicker.dropdown-menu td {
  padding: 5px 10px;
}

.datetimepicker.dropdown-menu {
  min-width: 230px;
}
.datetimepicker table {
  width: 100%;
}
.input-group .icon {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
/* Accordian */
.accordion-item {
  border: 0;
  margin-bottom: 25px;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.6rem 3rem;
  cursor: pointer;
}
.accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--primary-color);
  color: var(--white);
}
.accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion-button::after {
  width: 15px;
  height: 15px;
  background-size: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='16' viewBox='0 0 15 16' fill='none'%3E%3Cpath d='M8.5 0.5H6.5L6.5 15.5H8.5V0.5Z' fill='white'/%3E%3Cpath d='M15 9V7H0L0 9H15Z' fill='white'/%3E%3C/svg%3E");
  background-position: center center;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='2' viewBox='0 0 15 2' fill='none'%3E%3Cpath d='M15 2V0H0V2H15Z' fill='white'/%3E%3C/svg%3E");
}
.accordion-body {
  padding: 1.6rem 3rem;
}
/* Accordian END */
.readmore-sec {
  display: none;
}
.readmore-sec:nth-child(-n + 2) {
  display: block;
}
.readmore-sec-all.show-all .readmore-sec {
  display: block;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}
.bg-element {
  z-index: 0;
}
.readmore-para p {
  display: none;
}
.readmore-para p:nth-child(-n + 3) {
  display: block;
}
.readmore-para.show-all p {
  display: block;
}
.readmore-list li {
  display: none;
}
.readmore-list li:nth-child(-n + 5) {
  display: block;
}
.readmore-list.show-all li {
  display: block;
}

.readmore-text p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.readmore-text.clamp-5 p {
  -webkit-line-clamp: 5;
}

.readmore-text.clamp-3 p {
  -webkit-line-clamp: 3;
}
.readmore-text.show-all p {
  display: block;
}

/* Default css*/
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: var(--white);
}
header.fixed {
  -webkit-box-shadow: 0 10px 22px rgba(0, 150, 170, 0.172);
  box-shadow: 0 10px 22px rgba(0, 150, 170, 0.172);
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 9px 4.5rem;
}
.header-inner .navbar-brand img {
  width: 30rem;
  height: 11.7rem;
  object-fit: cover;
}
.header-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.top-bar {
  margin-bottom: 2rem;
}
.navbar {
  padding: 0;
}
header .header-inner .navbar-nav .nav-link {
  padding: 0;
}
header .header-inner .navbar-nav .nav-link:focus {
  outline: none;
}
header .nav-item {
  margin: 0 2rem;
}
header .nav-item:first-child {
  margin-left: 0;
}
header .nav-item:last-child {
  margin-right: 0;
}
header .nav-link {
  color: var(--text-color);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}
header .nav-link.active,
header .nav-link:focus,
header .nav-link:hover {
  color: var(--primary-color);
}
header .dropdown-menu {
  background-color: var(--primary-color);
  padding: 15px;
}
header .dropdown-menu a {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.dropdown-toggle:after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-color: transparent currentColor currentColor transparent;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 2px -1px;
}
header .dropdown-menu a:active,
header .dropdown-menu a:focus,
header .dropdown-menu a:hover {
  color: var(--primary-color);
  background-color: var(--primary-light-color);
}
/* Header END*/
/* Running News */
.running-news {
  background-color: var(--primary-light-color);
  padding: 12px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.running-news marquee {
  width: 100%;
}
.running-news p {
  margin: 0;
  color: var(--text-color);
}
/* Running News END*/
.hero {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero .bg-element-left-curved {
  position: absolute;
  left: 0;
  top: 220px;
}
.hero .bg-element-right-curved {
  position: absolute;
  right: -13px;
  bottom: 0;
}
.hero .title {
  margin-bottom: 6rem;
}
.hero-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}
.hero-content-col {
  max-width: 600px;
}
.hero-img-collage {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1.25fr 10px 0.75fr;
  grid-template-rows: 1.25fr 0.75fr;
  gap: 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "top-left top-right"
    "bottom-left bottom-right";
  max-width: 840px;
  margin: 0 auto;
}

.top-left {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.8fr 10px 1.1fr 10px 1.1fr;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
  -ms-grid-rows: 1fr 10px 1fr 10px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "top-left-img top-left-img top-left-img"
    "top-left-img top-left-img top-left-img"
    "top-left-img top-left-img top-left-img";
  grid-area: top-left;
}

.top-left-img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: top-left-img;
}

.bottom-left {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 10px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "bottom-left-img looking-for-career looking-for-career"
    "bottom-left-curved looking-for-career looking-for-career";
  grid-area: bottom-left;
}

.looking-for-career {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: looking-for-career;
}

.bottom-left-img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: bottom-left-img;
}

.bottom-left-curved {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: bottom-left-curved;
}

.top-right {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 10px 1fr 10px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "top-right-top-img top-right-top-curved ."
    "looking-for-care looking-for-care top-right-end-curved"
    "looking-for-care looking-for-care top-right-end-img";
  grid-area: top-right;
}

.looking-for-care {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: looking-for-care;
}

.top-right-top-img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: top-right-top-img;
}

.top-right-top-curved {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: top-right-top-curved;
}

.top-right-end-curved {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: top-right-end-curved;
}

.top-right-end-img {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  grid-area: top-right-end-img;
}

.bottom-right {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 10px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "bottom-right-img bottom-right-circle ."
    ". . .";
  grid-area: bottom-right;
}

.bottom-right-img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: bottom-right-img;
}

.bottom-right-circle {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: bottom-right-circle;
}

.hero-link-block {
  background-color: #ffdd9a;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.3s background-color;
  -o-transition: 0.3s background-color;
  transition: 0.3s background-color;
  position: relative;
  height: 100%;
}
.hero-link-block-left {
  position: absolute;
  background-color: #75dacf;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-link-block-right {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #75dacf;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  transform: translateX(0);
  transition: 0.3s transform;
}
.care .hero-link-block-left,
.care .hero-link-block-right {
  background-color: #ffdd9a;
}
.hero-link-block:hover .hero-link-block-right {
  transform: translateX(100%);
}
.hero-link-block.care:hover .hero-link-block-right {
  transform: translateX(-100%);
}
.hero-link-block span {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-top: 30px;
}
.hero-link-block-right span {
  color: var(--white);
  margin-bottom: 1.5rem;
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-link-block:hover {
  background-color: #eabe66;
}
.hero-link-block.care {
  background-color: #75dacf;
}
.hero-link-block.care:hover {
  background-color: #57c1b6;
}

/* Home Care Agency */
.home-care-agency {
  background-image: url("../images/bg-elements/home-care-agency-bg.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-position-y: calc(100% + 50px);
}
.home-care-agency-col {
  max-width: 430px;
}
.home-care-review {
  background-color: var(--white);
  padding: 4.5rem;
  border-radius: 2rem;
}
.home-care-review-block {
  padding: 2.5rem 1.5rem;
  border-bottom: var(--border);
}
.home-care-review-block:last-child {
  border: 0;
}
.home-care-review-block h6 {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}
.home-care-review-block p {
  color: var(--text-color);
  margin-bottom: 0;
}
.home-care-review-block .review-star {
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home-care-review-block .review-star img {
  margin-right: 2px;
}
.home-care-review-block p.review-auth {
  font-weight: 600;
}
.home-care-agency-content {
  padding-left: 14rem;
}
/* Home Care Agency END */
/* Latest Vacancies */
.lattest-vacancies {
  background-color: var(--primary-light-color);
  position: relative;
}
.lattest-vacancies .bg-element-circle {
  position: absolute;
  right: 0;
  top: 70px;
}
.lattest-vacancies .bg-element-dots {
  position: absolute;
  left: -100px;
  top: 100px;
}
.lattest-vacancies .title {
  max-width: 115rem;
  margin-left: auto;
  margin-right: auto;
}
.lattest-vacancies-row {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: 2rem;
  position: relative;
  /* overflow: hidden; */
  background: var(--white) url("../images/bg-elements/lattest-vacancy-bottom-bg.svg") 80% bottom no-repeat;
}
.lattest-vacancies-row .bg-top {
  position: absolute;
  top: 0;
  left: 40%;
}
.lattest-vacancies-block {
  border-right: var(--border);
  position: relative;
  z-index: 1;
  height: 100%;
  padding-right: 3rem;
  text-decoration: none;
  display: block;
}
.lattest-vacancies-slider .lattest-vacancies-block img {
  margin-bottom: 20px;
  width: auto;
}
.lattest-vacancies-block .vacancies-name {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.lattest-vacancies-block .salary {
  margin-bottom: 10px;
  color: var(--primary-color);
}
.lattest-vacancies-block .salary span {
  font-size: 16px;
}
.lattest-vacancies-block p {
  max-width: 290px;
}
/* Latest Vacancies END */

/* A Care Agency for all */
.care-agency-for-all {
  position: relative;
  overflow: hidden;
}
.care-agency-for-all .bg-element-circle {
  position: absolute;
  top: -35px;
  left: 60%;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.care-agency-for-all .bg-element-dots {
  position: absolute;
  bottom: -50px;
  right: 5%;
}
/* A Care Agency for all END */

/* Live-in Care */
.live-in-care {
  background-color: var(--primary-light-color);
  position: relative;
}
.live-in-care-img {
  border: 5px solid var(--white);
  border-radius: 25px;
}
/* Live-in Care END */
/* Services we Offer */
.services-we-offer {
  position: relative;
}
.services-we-offer .title {
  margin-bottom: 6rem;
}

.services-we-offer .bg-element-circle {
  position: absolute;
  top: 100px;
  left: 0;
}
.service-img-wrap {
  position: relative;
  border-radius: 15px;
}
.service-img-wrap img {
  width: 100%;
  height: 385px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}
.service-img-overlay {
  background-color: rgba(0, 150, 170, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.4rem;
  border-radius: 15px;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.service-img-wrap:hover .service-img-overlay {
  opacity: 1;
}
.service-img-overlay h5 {
  margin-bottom: 3.5rem;
  letter-spacing: 0.3px;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-img-overlay .btn {
  background-color: transparent;
}
.service-title {
  color: var(--text-color);
  font-weight: 600;
  margin-top: 25px;
}
.service-carousel .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: rgba(28, 38, 46, 0.1);
  margin: 0 7px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.service-carousel .owl-dot.active span {
  width: 70px;
  background-color: var(--primary-color);
}
.service-carousel {
  position: relative;
}
.lattest-vacancies-slider.owl-carousel .owl-nav button,
.latest-news-carousel.owl-carousel .owl-nav button,
.service-carousel.owl-carousel .owl-nav button {
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='16' viewBox='0 0 26 16' fill='none'%3E%3Cpath d='M22.172 6.778L16.808 1.414L18.222 0L26 7.778L18.222 15.556L16.808 14.142L22.172 8.778H0V6.778H22.172Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0 60px rgba(0, 149, 168, 0.3);
  box-shadow: 0 0 60px rgba(0, 149, 168, 0.3);
  position: absolute;
  top: calc(50% - 50px);
  right: -65px;
  transform: translateY(-50%);
}
.lattest-vacancies-slider.owl-carousel .owl-nav button.owl-prev,
.latest-news-carousel.owl-carousel .owl-nav button.owl-prev,
.service-carousel.owl-carousel .owl-nav button.owl-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='16' viewBox='0 0 26 16' fill='none'%3E%3Cpath d='M3.828 6.778L9.192 1.414L7.778 0L0 7.778L7.778 15.556L9.192 14.142L3.828 8.778H26V6.778H3.828Z' fill='black'/%3E%3C/svg%3E");
  right: auto;
  left: -65px;
}
.lattest-vacancies-slider.owl-carousel .owl-nav button {
  top: 50%;
  right: -100px;
}
.lattest-vacancies-slider.owl-carousel .owl-nav button.owl-prev {
  top: 50%;
  left: -100px;
}
/* Services we Offer END */

/* Training */
.training-inner {
  position: relative;
}
.training .bg-element {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.training-col {
  max-width: calc(80% + 30px);
}
.allium-homecare {
  width: calc(20% + 75px);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 75px;
  padding: 15px;
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: -5px -5px 33px rgba(0, 150, 170, 0.05);
  box-shadow: -5px -5px 33px rgba(0, 150, 170, 0.05);
}
.allium-homecare .care-name {
  margin: 30px 0 25px;
  font-weight: 600;
}
.allium-homecare div.cqc-widget .cqc-widget-inner {
  color: var(--gray-color) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  font-family: var(--primary-font) !important;
}
.allium-homecare div.cqc-widget div.cqc-widget-inner div {
  font-weight: 600 !important;
  font-size: 18px !important;
  font-family: var(--primary-font) !important;
}
.allium-homecare div.cqc-widget .cqc-widget-inner .cqc-widget-overall {
  margin: 25px 0 !important;
}
.allium-homecare div.cqc-widget .cqc-widget-inner .cqc-widget-normal {
  margin-top: 25px !important;
  background-color: #f0f5f9 !important;
  padding: 30px 20px 15px !important;
  border-radius: 10px !important;
}
.allium-homecare div.cqc-widget a.widget-button-new-style {
  border: 0 !important;
  font-size: 18px !important;
  padding: 16px 5rem !important;
  line-height: 1.6 !important;
  border-radius: 30px !important;
  transition: 0.3s background-color, color !important;
  font-weight: 600 !important ;
  margin-top: 20px !important;
}
.allium-homecare .report {
  background-color: #f0f5f9;
  padding: 30px 20px 15px;
  border-radius: 10px;
}
.allium-homecare .report h6 {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 3rem;
}
.allium-homecare .report-date {
  margin-bottom: 3rem;
}
.training-content {
  background-color: var(--primary-color);
  padding-left: 250px;
  padding-right: 7.5rem;
}
/* Training END */

/* Latest News */
/* .latest-news .news-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 5rem;
} */
.latest-news .news-col {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 126, 143, 0.04);
  box-shadow: 0 10px 20px rgba(0, 126, 143, 0.04);
  text-decoration: none;
}
.latest-news .news-img {
  border-radius: 20px;
  margin-bottom: 0;
}
.latest-news .news-detail {
  padding: 3rem;
}
.latest-news .news-col .news-date {
  color: var(--primary-color);
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 15px;
}
.latest-news .news-col .news-date:before {
  content: none;
}
.latest-news .news-title {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 20px;
}
.latest-news .news-desc {
  font-weight: 600;
}
/* Latest News END */
/* TESTIMONIALS */
.testimonials {
  background-color: var(--primary-light-color);
  position: relative;
}
.testimonials .bg-element {
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials .title {
  margin-bottom: 30px;
}
.testimonials-bg {
  position: absolute;
  height: 100%;
  width: 55%;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.testimonial-block {
  max-width: 65rem;
  padding: 5rem;
  border-radius: 20px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  margin-left: 100px;
}
.testimonial-item p {
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-auth {
  margin-top: 30px;
}
.person-name h6 {
  color: var(--text-color);
  font-weight: 600;
}
.testimonials-slider {
  position: relative;
}
.testimonials .testimonials-slider .owl-nav {
  position: absolute;
  right: 0;
  bottom: -20px;
}
.testimonials .testimonials-slider .owl-nav button {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='16' viewBox='0 0 26 16' fill='none'%3E%3Cpath d='M22.172 6.778L16.808 1.414L18.222 0L26 7.778L18.222 15.556L16.808 14.142L22.172 8.778H0V6.778H22.172Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0 60px rgba(0, 149, 168, 0.3);
  box-shadow: 0 0 60px rgba(0, 149, 168, 0.3);
}
.testimonials .testimonials-slider .owl-nav button.owl-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='16' viewBox='0 0 26 16' fill='none'%3E%3Cpath d='M3.828 6.778L9.192 1.414L7.778 0L0 7.778L7.778 15.556L9.192 14.142L3.828 8.778H26V6.778H3.828Z' fill='black'/%3E%3C/svg%3E");
}
.owl-nav button.disabled {
  cursor: not-allowed !important;
}
.owl-nav button span {
  display: none;
}
/* TESTIMONIALS END */
/* Further Question? */
.further-question {
  background-color: var(--primary-color);
  position: relative;
}
.further-question .bg-element {
  position: absolute;
  left: -27px;
  bottom: -10px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
/* Further Question? END */

/* Contact us */
.contact .map-location {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  margin-left: auto;
}
.contact .map-location iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.contact form {
  max-width: 630px;
}
/* Contact us END */
/* Footer */
footer {
  background-color: var(--primary-color);
  padding-top: 40px;
}
.footer-info p {
  max-width: 300px;
}
.footer-info .footer-links {
  margin-top: 3rem;
}
.footer-info .footer-links span {
  white-space: nowrap;
}
footer .link-title {
  text-transform: uppercase;
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer-links a {
  color: var(--white);
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.footer-links a:hover {
  opacity: 0.7;
}
.copy-right {
  background-color: #008496;
  padding: 18px;
  margin-top: 40px;
}
.copy-right p {
  line-height: 25px;
}
.copy-right a {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  text-transform: capitalize;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: 0.3s opacity;
}
.copy-right span {
  margin-right: 25px;
}
.copy-right a:hover {
  opacity: 0.7;
}
/* Footer END */

/*inner Hero section*/
.inner-hero-content {
  position: relative;
}
.inner-hero-content:before {
  content: "";
  width: 75%;
  min-height: 100%;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.inner-hero-content .title {
  max-width: 76rem;
}
.inner-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-hero-content .container {
  position: relative;
  z-index: 1;
}
.inner-hero-content .primary-btn.bordered {
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}
.inner-hero-content .primary-btn.bordered:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
/*inner Hero section END*/
/* Care Details Section */
.care-detail {
  position: relative;
  padding: 50px 0;
}
.care-detail-inner {
  padding-right: 450px;
}
.scroll-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -3rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.scroll-btn {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 3rem 3rem 0 0;
  padding-left: 3rem;
  padding-right: 3rem;
  font-size: 2.4rem;
  text-align: left;
}
.all-care-links {
  background-color: var(--white);
  padding: 3rem 5rem;
  max-width: 600px;
  border-radius: 2rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-box-shadow: 10px 10px 55px rgba(0, 149, 168, 0.1);
  box-shadow: 10px 10px 55px rgba(0, 149, 168, 0.1);
  min-height: calc(100% + 20px);
}
.all-care-links a {
  display: block;
  color: var(--text-color);
  font-size: 2.8rem;
  text-decoration: none;
  margin-bottom: 10px;
  -webkit-transition: 0.3s color;
  -o-transition: 0.3s color;
  transition: 0.3s color;
  position: relative;
}
.all-care-links a.active:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.6rem;
  left: -2.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--primary-color);
}
.all-care-links a.active,
.all-care-links a:hover {
  color: var(--primary-color);
}
.all-care-links a:last-child {
  margin-bottom: 0;
}
/* Care Details Section END */

/* How Care Works? */
.how-care-works {
  position: relative;
}
.how-care-works .bg-element-circle {
  position: absolute;
  top: -35px;
  left: 5%;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
/* How Care Works? END */

/* what-is-care */
.what-is-care {
  position: relative;
}
.what-is-care .bg-element-curved {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* what-is-care END */

/* Check-in Visits */
.check-in-visits-row {
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
.check-in-visits-col {
  background-color: var(--white);
  border-radius: 10px;
  padding: 4rem;
}
.check-in-visits-col h5 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 600;
}
.check-in-visits-col p {
  margin-bottom: 0;
  font-weight: 600;
}
/* Check-in Visits END */

/* Types of Respite Care */
.types-respite-care {
  position: relative;
}
.types-respite-care .bg-element-circle {
  position: absolute;
  top: 25%;
  right: 0;
}
.types-respite-care p.text-center {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}
.care-type-row {
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  /* margin-bottom: 4.5rem; */
}
.care-type-col {
  background-color: var(--white);
  border-radius: 10px;
  padding: 4rem;
  -webkit-box-shadow: 0 10px 55px rgba(0, 149, 168, 0.1);
  box-shadow: 0 10px 55px rgba(0, 149, 168, 0.1);
}
.care-type-col h5 {
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 600;
}
.care-type-col p {
  margin-bottom: 0;
  font-weight: 600;
}
/* Types of Respite Care END */

/* Care Steps */
.care-steps {
  position: relative;
}
.care-steps .bg-element-circle {
  position: absolute;
  top: 15%;
  left: 0;
}
.care-step-col {
  -webkit-box-shadow: 0 10px 33px rgba(0, 149, 168, 0.1);
  box-shadow: 0 10px 33px rgba(0, 149, 168, 0.1);
}

/* Care Steps END */

/* Angelus Homecare Proposal */
.homecare-personal {
  position: relative;
}
.bg-element-circle.top {
  position: absolute;
  top: -34px;
  right: -26px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.bg-element-circle.bottom {
  position: absolute;
  bottom: -55px;
  left: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.bg-element-curved {
  position: absolute;
  bottom: 0;
  right: 0;
}
.homecare-personal-tab {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  margin-bottom: 40px;
}
.homecare-personal-tab .nav-item {
  padding-left: 5rem;
  padding-right: 5rem;
}
.homecare-personal-tab .nav-link {
  background-color: transparent;
  color: var(--white);
  opacity: 0.4;
  padding: 0;
  border: 0;
}
.homecare-personal-tab .nav-link.active {
  background-color: transparent;
  opacity: 1;
  color: var(--white);
  border: 0;
  position: relative;
}
.homecare-personal-tab .nav-link.active:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 50px;
  height: 6px;
  border-radius: 3px;
  background-color: #ffdd9a;
  display: block;
  -webkit-box-shadow: 0 10px 55px rgba(0, 149, 168, 0.1);
  box-shadow: 0 10px 55px rgba(0, 149, 168, 0.1);
}
/* Angelus Homecare Proposal END */

/* Looking For Advice? */
.advice-inner {
  position: relative;
}
.advice-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
/* Looking For Advice? END */

/* Our Team */
.team-row {
  display: -ms-grid;
  display: grid;
  grid-gap: 4.5rem;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(4, 1fr);
}
.team-col img {
  border-radius: 15px;
  height: 41.5rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.member-img-wrap {
  position: relative;
  margin-bottom: 20px;
}
.member-img-wrap .img-overlay {
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 150, 170, 0.75);
  padding: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.member-img-wrap .img-overlay .btn {
  background-color: transparent;
}
.member-img-wrap:hover .img-overlay {
  opacity: 1;
}
.team-col h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.team-col p {
  margin-bottom: 0;
}
/* Our Team END */

/* News */
.news-row {
  display: -ms-grid;
  display: grid;
  grid-gap: 6rem;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
}

.box-3-2 {
  position: relative;
  padding-bottom: calc(100% * 10 / 16) !important;
  height: auto !important;
}

.box-inner-3-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
img.box-inner-3-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-col {
  text-decoration: none;
}
.news-col img {
  border-radius: 1.5rem;
}
.news-col h3 {
  margin-top: 2.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}
.news-col h6 {
  margin-bottom: 15px;
}
.news-col p {
  margin-bottom: 0;
  font-weight: 600;
}
.news-col .news-date {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  margin-left: 15px;
}
.news-col .news-date:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: -2.5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* News END */

/* Locate Us */
.locate-us iframe {
  height: calc(100vh - 25vh);
  width: 100%;
  border-radius: 3rem;
}
/* Locate Us END */

/* Contact Page Form */
.contact-page form {
  max-width: 100%;
}
.contact-page .form-btn {
  max-width: 680px;
  margin: 0 auto;
}
.contact-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr 6rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem 6rem;
}
.contact-col {
  border-radius: 10px;
  padding: 4rem;
  -webkit-box-shadow: 0 10px 33px rgba(0, 127, 143, 0.08);
  box-shadow: 0 10px 33px rgba(0, 127, 143, 0.08);
}
.contact-col p {
  margin-bottom: 15px;
  color: var(--text-color);
  line-height: 1.5;
}
.contact-col p:last-child {
  margin-bottom: 0;
}
.contact-col img {
  margin-right: 1.4rem;
}
.contact-col a {
  text-decoration: none;
  color: var(--text-color);
  width: 100%;
  white-space: nowrap;
}
.contact-col a.mail {
  color: var(--primary-color);
}
.contact-col a.mail:hover {
  color: #017c8c;
}
.job-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  grid-auto-flow: row;
}

.view-all {
}

.job-block {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 35px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3.5rem;
  grid-auto-flow: row;
  grid-template-areas:
    "apply-online-now join-the-job-list"
    "training-development view-the-latest-jobs";
  grid-area: job-block;
}
.job-block-inner {
  padding: 5rem 4rem;
  background-color: red;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-decoration: none;
  position: relative;
}
.job-block-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  border-radius: 3rem;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.job-block-inner:hover:before {
  opacity: 1;
}
.job-block-inner img {
  position: relative;
  z-index: 1;
  max-width: 13rem;
  height: auto;
}
.job-block-inner h2 {
  font-weight: 600;
  color: var(--white);
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  max-width: 25rem;
}

.apply-online-now {
  background: rgb(133, 211, 255);
  background: -o-linear-gradient(305deg, rgba(133, 211, 255, 1) 0%, rgba(0, 110, 212, 1) 100%);
  background: linear-gradient(145deg, rgba(133, 211, 255, 1) 0%, rgba(0, 110, 212, 1) 100%);
}

.join-the-job-list {
  background: rgb(113, 241, 181);
  background: -o-linear-gradient(305deg, rgba(113, 241, 181, 1) 0%, rgba(40, 191, 120, 1) 100%);
  background: linear-gradient(145deg, rgba(113, 241, 181, 1) 0%, rgba(40, 191, 120, 1) 100%);
}

.training-development {
  background: rgb(255, 218, 175);
  background: -o-linear-gradient(305deg, rgba(255, 218, 175, 1) 0%, rgba(255, 148, 49, 1) 100%);
  background: linear-gradient(145deg, rgba(255, 218, 175, 1) 0%, rgba(255, 148, 49, 1) 100%);
}

.view-the-latest-jobs {
  background: rgb(175, 217, 255);
  background: -o-linear-gradient(305deg, rgba(175, 217, 255, 1) 0%, rgba(102, 49, 255, 1) 100%);
  background: linear-gradient(145deg, rgba(175, 217, 255, 1) 0%, rgba(102, 49, 255, 1) 100%);
}
.view-all {
  position: relative;
}
.view-all img {
  border-radius: 3rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.view-all .img-overlay {
  border-radius: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transition: 0.3s background-color;
  -o-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
.view-all:hover .img-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}
.view-all h2 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0;
}
.job-recruitment-block {
  border: 1px solid var(--white);
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Contact Page Form END */

.job-recruitment-block h5 a {
    transition: all .5s;
}
.job-recruitment-block h5 a:hover {
    color: var(--primary-color);
}
/* Search Jobs */
.search-job {
  position: relative;
  z-index: 1;
}
.search-job .form-control,
.search-job .form-select {
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 30px;
}
.search-job h5 {
  margin-bottom: 4rem;
}
.search-job-inner {
  padding: 5rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0 13px 33px rgba(0, 0, 0, 0.07);
  box-shadow: 0 13px 33px rgba(0, 0, 0, 0.07);
  background-color: var(--white);
}
/* Search Jobs END */

.modal-team .modal-content {
  border-radius: 2rem;
}

.modal-team .team-member {
  padding: 5rem;
}
.modal-team .img-member {
  border-radius: 10px;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.social-action {
  display: flex;
}
.social-action .social {
  width: 6rem;
  height: 6rem;
  display: block;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  background-color: var(--white);
  transition: 0.3s background-color;
}
.social-action .social:hover {
  background-color: var(--primary-light-color);
}
.member-detail {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.job-action a {
  white-space: nowrap;
}
.job-action a img {
  min-width: 15px;
}
