.cards-sections-wrap {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
}

.cards-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.cards-wrap:last-child {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
  .cards-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

.split-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}

.cards-sections-wrap-split {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cards-wrap-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.cards-wrap-split:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
  .cards-sections-wrap-split {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (min-width: 1400px) {
  .cards-wrap-split {
    grid-template-columns: repeat(2, minmax(224px, 1fr));
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .cards-wrap-split {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cards-sections-wrap-split h1 {
    font-size: 18px;
    color: #314468;
    font-weight: 400;
    padding-bottom: 10px;
}

.cards-section-heading {
    font-size: 22px;
    color: #314468;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 14px;
    padding: 16px;
    height: 100%;
    width: 100%;
    box-shadow: 0 2px 19.9px rgba(161, 170, 220, 0.25);
    transition: all 0.2s;
}

.card-info {
    height: 24px;
    width: 24px;
}

.service-card h2 {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-card p {
    font-size: 12px;
    font-weight: 400;
    color: #2D3545;
    line-height: 135%;
}

.reserve-link {
    color: #0840B1;
    font-weight: 600;
    font-size: 18px;
    margin-top: auto;
    transition: all 0.2s;
}

.reserve-link:hover {
    color: #002774;
}

.reserve-link svg {
    transition: all 0.1s ease-in;
}

.service-card:hover svg {
    margin-left: 6px;
}

.service-card:hover {
    box-shadow: 0 2px 19.9px rgba(105, 114, 164, 0.25);
}




.home-section h2 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 8px;
}

/*
.home-section p {
    max-width: 400px;
}
*/

.home-res-btn {
    height: 56px;
    width: 120px;
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.home-section-image {
    border-radius: 16px;
    width: 480px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.home-white {
    background-color: white;
}

.home-white h2{
    color: black;
}

.home-white p {
    color: #2D3545;
    font-weight: 500;
}

.home-blue {
    background-color: #0840B1;
}

.home-blue h2 {
    color: white;
}

.home-blue p {
    color: #D0E0FE;
}

.home-blue .home-res-btn {
    background-color: white;
    color: #0840B1;
    border: 2px solid white;
}

.home-blue .home-res-btn:hover {
    background-color: #0840B1;
    color: white;
}

.home-white .home-res-btn {
    background-color: #0840B1;
    color: white;
    border: 2px solid #0840B1;
}

.home-white .home-res-btn:hover {
    background-color: white;
    color: #0840B1;
}

.home-section-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-section-center p {
    text-align: center;
}

.home-section-center h2 {
    margin-top: 16px;
}

.home-section-center a {
    margin-bottom: 16px;
}

.home-section-image {
    width: 100%;
    height: auto;
}

.tooltip-inner {
    background-color: white !important;
    color: #2D3545 !important;
    box-shadow: 0px 2px 19.9px rgba(161, 170, 220, 0.25) !important;
    font-weight: 500 !important;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: left !important;
}

.tooltip-arrow::before {
    border-top-color: #0840B1 !important;
}

@media only screen and (max-width: 550px) {
    .tooltip-arrow::before {
            border-top-color: transparent !important;
        border-left-color: #0840B1 !important;
    }
}

@media only screen and (max-width: 1200px) {
    .home-section-image {
        width: 420px;
    }
}

@media only screen and (max-width: 992px) {
    .home-section-image {
        width: 320px;
    }

    .home-section h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .home-section-image {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .home-section {
        padding-left: 8px;
        padding-right: 8px;
    }
}