/* general css for grid and carousel */
.hyvikk_custom_element_wrap body {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #212529;
    background-color: #fff;
}
.hyvikk_custom_element_wrap  .container {
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px;
    margin-right: auto;
    margin-left: auto;
}
 @media (min-width: 576px) {
      .hyvikk_custom_element_wrap  .container {
        max-width: 540px;
    }
}
 @media (min-width: 768px) {
      .hyvikk_custom_element_wrap  .container {
        max-width: 720px;
    }
}
 @media (min-width: 992px) {
      .hyvikk_custom_element_wrap  .container {
        max-width: 720px;
    }
}
.hyvikk_custom_element_wrap .text-center {
    text-align: center;
}
.hyvikk_custom_element_wrap .card-title {
    margin-bottom: .5rem;
    margin-top: 0px;
}
.hyvikk_custom_element_wrap .h5, h5 {
    font-size: 20px;
}
.hyvikk_custom_element_wrap .card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}
.hyvikk_custom_element_wrap .card-text:last-child {
    margin-bottom: 0;
}
.hyvikk_custom_element_wrap p {
    margin-top: 0;
    font-size: 14px;
}
/* css for grid */
.hyvikk_grid_wrap .row {
    column-gap: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.hyvikk_grid_wrap .mb-4 {
    margin-bottom: 1.5rem;
}
.hyvikk_grid_wrap .col-12 {
    flex: 0 0 auto;
    width: 100%;
}
@media (min-width: 576px) {
    .hyvikk_grid_wrap .col-sm-6 {
        flex: 0 0 auto;
        width: 48%;
    }
}
@media (min-width: 768px) {
    .hyvikk_grid_wrap .col-md-4 {
        flex: 0 0 auto;
        width: 31%;
    }
}
@media (min-width: 992px) {
    .hyvikk_grid_wrap .col-lg-3 {
        flex: 0 0 auto;
        width: 23%;
    }
}
.hyvikk_grid_wrap .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}
.hyvikk_grid_wrap .align-items-center {
    align-items: center;
}
.hyvikk_grid_wrap .justify-content-center {
    justify-content: center;
}
.hyvikk_grid_wrap .grid-pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}
.hyvikk_grid_wrap .page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.hyvikk_grid_wrap .page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.hyvikk_grid_wrap .page-item.active .page-link {
    z-index: 3;
}
.hyvikk_grid_wrap .page-link {
    position: relative;
    display: block;
    background-color: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.hyvikk_grid_wrap .page-link:focus {
    z-index: 3;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}