.btn {
    /* border-radius: 15px; */
    border-radius: 8px;
}
.border-radius-15 {
    border-radius: 15px;
}
.border-radius-20 {
    border-radius: 20px;
}
.border-radius-top-15 {
    border-radius: 15px 15px 0px 0px;
}
.border-radius-top-20 {
    border-radius: 20px 20px 0px 0px;
}
.pricing-table .plan .plan-price {
    padding: 10px;
}
.pricing-table .plan .plan-header h3 {
    text-transform: unset;
}

* {
    transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
}
#form-lead {
    /* border: 1px solid #efefef; */
    width: 360px;
    position: fixed;
    top: 20px;
    right: 100px;
    /* background: #fff; */
    /* padding: 20px; */
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 3px 3px 6px rgb(0 0 0 / 50%);
    -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 3px 3px 6px rgb(0 0 0 / 50%);
    z-index: 10000;
}
#form-lead.scrolled {
    top: auto;
    bottom: 0;
    right: -135px;
    transform: translateY(30%) scale(0.2);
    -moz-transform: translateY(30%) scale(0.2);
    -webkit-transform: translateY(30%) scale(0.2);
}

@media (max-width: 1024px) {
    #form-lead {
        display: block;
        position: static;
        transform: translateY(0%) scale(1);
        -moz-transform: translateY(0%) scale(1);
        -webkit-transform: translateY(0%) scale(1);
        width: 100%;
    }
    #form-lead.scrolled {
        transform: translateY(0%) scale(1);
        -moz-transform: translateY(0%) scale(1);
        -webkit-transform: translateY(0%) scale(1);
    }
}

@media (min-width: 992px) {
    #header .header-nav-main nav > ul > li:hover > a,
    #header .header-nav-main nav > ul > li.open > a {
        color: #787878 !important;
    }
    .asset-client {
        max-width: 60%;
    }
}
@media (max-width: 99px) {
    html:not(.sticky-header-active) #header .header-body {
        background: transparent;
    }
}

@media (max-width: 768x) {
    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }
}
.thumb-info.custom-thumb-info-style-1 .thumb-info-wrapper:after {
    background: transparent;
}
.bg-dark-o-50 {
    background-color: rgba(33, 37, 41, 0.5) !important;
}
.bg-dark-o-70 {
    background-color: rgba(33, 37, 41, 0.7) !important;
}
.bg-dark-o-80 {
    background-color: rgba(33, 37, 41, 0.8) !important;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.dark {
    background: rgba(155, 155, 158, 0.08);
}
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none;
}

.accordion-item {
    border: 0px !important;
    border-radius: 8px !important;
}

.border-1 {
    padding: 10px 22px 10px 22px;
    border: solid 1px;
}

.push {
    margin-left: auto;
}

.cta-btn-activator.active {
    /* transform: rotate(-180deg); */
    transform: rotate(0deg);
    transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
    /* transition: transform 300ms ease; */
}
.cta-btn-activator.active .icon-btn {
    opacity: 0;
}
.cta-btn-activator.active .icon-close {
    opacity: 1;
}

.cta-btn-activator .icon-close {
    color: #fff;
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: absolute;
    left: 13px;
    top: 0;
    opacity: 0;
}
.cta-btn-activator {
    display: block;
    width: 65px;
    height: 65px;
    background: #da3222;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    border-radius: 36px;
    text-align: center;
    padding-top: 12px;
    cursor: pointer;
}

.cta-chat-container {
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 2vh);
    /* display: block; */
    width: 300px;
    max-width: calc(100vw - 40px);
    height: auto;
    background: #fff;
    z-index: 29;
    position: fixed;
    bottom: 100px;
    right: 20px;
    border-radius: 8px;
    opacity: 0;
    transition: 300ms ease;
    box-shadow: 1px 1px 15px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 10px 10px 4px rgb(0 0 0 / 4%);
    font-family: "Lato", sans-serif;
    font-size: 16px;
}
.cta-chat-container.active {
    opacity: 1;
    visibility: visible;

    transform: translate(0, 0);
}

.chat-description {
    padding: 7px 15px;
    font-weight: bold;
    background: #f8f8f8;
    color: #777;
    cursor: pointer;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.close-main-chat {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.chat-item {
    display: block;
    width: 100%;
    height: 60px;
    padding: 10px 15px;
    position: relative;
    cursor: pointer;
}

.chat-item img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.chat-name {
    position: absolute;
    top: 20px;
    left: 65px;
    font-size: 16px;
}

.icon-main-close {
    color: #fff;
    font-size: 22px;
}

/* .hidden {
    display: none !important;
} */
@media (max-width: 575.98px) {
    .container-margin {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
}
@media (min-width: 576px) {
    .container-margin {
        margin-left: 2.75rem !important;
        margin-right: 2.75rem !important;
    }
}
@media (min-width: 768px) {
    .container-margin {
        margin-left: 32px !important;
        margin-right: 32px !important;
    }
}
/* @media (min-width: 992px) {
    .container-margin {
        margin-left: 68px !important;
        margin-right: 68px !important;
    }
} */

.lang-mobile a {
    font-size: 16px;
}
@media (min-width: 992px) {
    .container-margin {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }
    .header-menu .menu-nav > .menu-item {
        margin-right: 0px !important;
    }
    .lang-mobile a {
        font-size: 12px !important;
    }
}

@media (max-width: 992px) {
}
@media (min-width: 1200px) {
    .container-margin {
        margin-left: 45px !important;
        margin-right: 45px !important;
    }
    .lang-mobile a {
        font-size: 14px !important;
    }
}

@media (min-width: 1400px) {
    .container-margin {
        margin-left: 55px !important;
        margin-right: 55px !important;
    }
}

.clear {
    background-color: transparent !important;
}

.bg-section {
    background: #f9f8f8;
}

.box-top {
    background: rgba(155, 155, 158, 0.08);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.fs-2 {
    font-size: 0.9rem !important;
}

@media (min-width: 768px) {
    .fs-lg-2 {
        font-size: 0.9507rem !important;
    }
}

@media (min-width: 992px) {
    .fs-lg-3 {
        font-size: 0.8807rem !important;
    }
}

@media (min-width: 1200px) {
    .fs-xl-4 {
        font-size: 0.98651rem !important;
    }

    .fs-xl-3 {
        font-size: 0.75651rem !important;
    }
}

@media (min-width: 1400px) {
    .fs-xxl-3 {
        font-size: 0.93rem !important;
    }
    .fs-xxl-4 {
        font-size: 1rem !important;
    }
}

.text-36 {
    font-size: 36px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

p.text-post {
    font-family: "Lato", sans-serif;
}

.header-top {
    position: fixed;
    width: 100%;
    z-index: 99;
}

.drop-shadow {
    filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.08));
}

.video-thumb,
.blog-thumb {
    height: 300px;
    border-radius: 8px;
    margin: 20px;
}

.video-thumb span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    /* padding: 12px 24px; */
    /* width: 40px;
    height: 40px; */
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.rounded-8 {
    border-radius: 8px !important;
}

.btn-watch {
    padding: 12px 44px !important;
    justify-content: center;
    width: 100%;
}

.btn-share {
    padding: 12px !important;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}
.page-item.disabled .page-link {
    border-radius: 8px !important;
    background: #ef3434 !important;
    opacity: 0.6;
    border: 0px;
    color: #ffffff !important;
}

.pagination .page-item.active .page-link {
    background-color: #ffffff !important;
    border: 0px !important;
    color: #ef3434;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 8px !important;
    background: #ef3434 !important;
    color: #ffffff !important;
}

.page-item .page-link {
    margin: 2px;
}

.pagination li > a {
    color: #06060d;
    border: 0px;
}

.popup {
    position: absolute;
    top: 50px;
    z-index: 10000;
}

.popWrap {
    position: relative;
    border: 1px solid pink;
    padding: 1px;
    display: inline-block;
}

.flex-auto {
    flex: auto;
}

.blog-badge-new {
    background: #0094bc;
    padding: 6px 27px;
    position: absolute;
    color: #ffffff;
    font-size: 14px;
}

.blog-badge-share {
    background: #06060d;
    opacity: 0.38;
    border-radius: 8px;
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    color: #ffffff;
    padding: 5px 10px;
}

.check-next {
    /* padding: 14px 42px !important; */
    color: #06060d !important;
}

.check-next:hover {
    color: #fff !important;
    background-color: #06060d !important;
}

.img-post {
    width: 700px;
}

#pageNewsItem h2 {
    margin: 10px 15px;
}

#newsItemImage {
    float: left;
    margin: -15px 0 -5px 0;
    max-width: 100%;
    border: 15px solid rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

#minSpace {
    display: inline-block;
    width: 150px;
}

.newsItemText {
    margin: -15px 15px 15px 15px;
}
/* Popup container - can be anything you want */

.pricing-features ul {
    padding: 0;
    font-size: 14px;
}

.pricing-features ul li {
    /* display: inline-block; */
    display: block;
}

.btn-shine {
    box-shadow: 0px 8px 24px rgba(193, 22, 22, 0.24);
    /* max-width: 142px; */
}

.neutral-3 {
    color: #515156;
}

.neutral-2 {
    color: #9b9b9e;
}

.info-label {
    background: #e6f4f8;
    border-radius: 8px;
    border-radius: 8px;
    color: #0094bc;
    padding: 8px;
}
.info-label img {
    vertical-align: middle;
}

.menu-nav ul li {
    color: #06060d;
}

.btn-shadow {
    box-shadow: 0px 8px 24px rgb(193 22 22 / 24%);
}
.w-input {
    width: 480px;
    height: 64px;
}

.px-20-40 {
    padding: 20px 40px;
}

/* Heading 7 */

.lh-xl {
    line-height: 2.3rem;
}

hr.bottom-neutral-2 {
    border-bottom: 1px solid #9b9b9e;
}

ul.features li {
    display: flex;
    align-items: center;
}

.right-neutral-2 {
    border-right: 1px solid #9b9b9e;
}

.alert-info {
    background: #e6f4f8 !important;
    border: none;
    color: #06060d !important;
}

.copy-action.active {
    /* transform: rotate(-180deg); */
    transform: rotate(0deg);
    transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
    /* transition: transform 300ms ease; */
}

.copy-action .icon-check {
    opacity: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    color: #06060d;
}

.copy-action.active .icon-check {
    opacity: 1;
}
/* .copy-action.active .copy-icon {

} */

.carousel-indicators li {
    width: 32px !important;
    height: 0px;
    background: #06060d;
    border-radius: 8px;
    cursor: pointer;
}

.carousel-indicators li.active {
    width: 55px !important;
}

.carousel-indicators {
    margin: 0;
    justify-content: start !important;
    padding: 2rem;
}

.flex-1 {
    flex: 1;
}

/* Popup container - can be anything you want */
.popup {
    font-size: 12px;
    top: 30%;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: visible;
    width: 143px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 3px 0;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -95px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
    transform: rotate(180deg);
}

.list-line ul li {
    display: inline-block;
    padding: 8px;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
    position: relative;
    padding: 0px;
}

.close {
    position: absolute;
    /* right: -30px;
    top: 0px; */
    right: 30px;
    top: -30px;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

.close.round {
    position: absolute;
    right: 0;
    top: -50px;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #515156;
    opacity: 1;
    height: 25px;
    width: 25px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: inline-block;
}
button.close-share {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
}

.modal-md-share {
    max-width: 600px;
}

.client-asset img {
    object-fit: contain;
    max-width: 150px;
}

div.card-deck {
    min-height: 156px;
}

a.btn-primary:focus {
    border: none !important;
}

.pLoader {
    height: 50vh;
}

.dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150% !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.dropdown-menu.show {
    transform: none !important;
    /* margin-top: 10px !important; */
    top: 100% !important;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
}

.dropdown-item:focus {
    background-color: #fff !important;
    color: #ef3434;
}

.navbar-collapse .nav-item,
li.btn-nav {
    padding: 0.5rem 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.fs-sm-4 {
    font-size: 3.2rem !important;
}
body.modal-open {
    overflow-y: visible !important;
    overflow: visible !important;
    /* overflow-y: hidden !important; */
}
.modal-open .modal {
    /* overflow-y: hidden !important; */
}

#myModal .modal-dialog,
#modalShare .modal-dialog,
#modalBrochure .modal-dialog {
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    margin: 0 auto;
}

.btn-whitegray {
    background: #f9f8f8;
    border: 1px solid #cfcccc !important;
}

.download.round {
    position: absolute;
    right: 0;
    /* top: -50px; */
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #515156;
    opacity: 1;
    height: 35px;
    width: 35px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: inline-block;
}
.brochureImg {
    object-fit: cover;
}
.brochureImg:hover {
    cursor: pointer;
}
/* HEADER MOBILE */
.menu-item {
    border: none;
    outline: none;
}
.nav-item {
    /* font-size: 14px; */
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.burger-icon.collapsed span {
    background-color: #b5b5c3 !important;
}

.burger-icon.collapsed span::before,
.burger-icon.collapsed span::after {
    background-color: #b5b5c3 !important;
}

a.active,
.nav-item:active,
.navbar-toggle:active {
    text-decoration: none;
    color: #f00 !important;
}

a.navbar-toggle:focus,
a.navbar-toggle.active:focus {
    color: #f00 !important;
}
.navbar-toggle.collapsed:focus {
    color: #000 !important;
}

/* .dropdown-toggle.btn.collapsed:after {
      content: "";
  } */
.dropdown-toggle.btn.dropdown-toggle-split.collapsed:after {
    content: "";
}
.dropdown-toggle.btn.dropdown-toggle-split:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' fill='currentColor' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z' %3E%3C/path%3E%3C/svg%3E");
}

/* a.navbar-toggle button.dropdown-toggle.btn:after {
      content: "";
  } */

.dropdown-toggle.nav-link:after {
    content: "\f109"; /* the different icon */
}

.menu-item {
    border: none;
    outline: none;
    cursor: pointer;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #f00;
}

.dropdown-toggle.nav-link:after {
    content: "\f109";
}

li.menu-item.show a.nav-link.flag:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' fill='currentColor' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z' %3E%3C/path%3E%3C/svg%3E");
}

/* .dropdown-toggle.nav-link:after {
    content: "\f109";
} */

/* li.menu-item.show a.nav-link:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' fill='currentColor' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z' %3E%3C/path%3E%3C/svg%3E");
} */

li.menu-item.show a.nav-link.resource:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' fill='currentColor' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z' %3E%3C/path%3E%3C/svg%3E");
}

.menu-item {
    border: none;
    outline: none;
    cursor: pointer;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #f00;
}

#footer-menu h4 {
    font-size: 36px;
    margin-bottom: 31px;
}

#footer-menu h3 {
    font-size: 16px;
    margin-bottom: 40px;
}

#footer-menu ul {
    font-size: 16px;
}

.banner-thankyou.owl-carousel {
    display: block;
    width: 100%;
    z-index: 1;
    position: relative;
}

.banner-thankyou.owl-carousel-light .owl-stage-outer,
.owl-carousel-light .owl-stage {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.banner-thankyou.owl-carousel-light .owl-item.active {
    display: block;
    visibility: visible;
    opacity: 1;
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
}

.banner-thankyou.owl-carousel-light .owl-item.active {
    display: block;
    visibility: visible;
    opacity: 1;
}
.banner-thankyou.owl-carousel-light .owl-item {
    display: block;
    visibility: visible;
    opacity: 1;
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    transition: ease opacity 300ms;
}
.banner-thankyou.owl-carousel .owl-item.thankyou {
    min-height: 1px;
    float: left;
}
.banner-img {
    margin-left: auto;
    margin-right: auto;
}
.banner {
    text-align: center;
}

.banner-head {
    text-align: center !important;
}
.banner-subhead {
    text-align: center !important;
}
.banner-desc {
    font-size: 12px;
    text-align: center !important;
    line-height: normal;
}

@media (min-width: 768px) {
    .text-banner {
        padding-right: 10px;
    }
    .banner-img {
        text-align: left;
        padding-left: 10px;
        width: 90% !important;
    }
    .banner-head {
        text-align: left !important;
    }
    .banner-subhead {
        text-align: left !important;
    }
    .banner-desc {
        font-size: 16px;
        text-align: left !important;
    }
    .banner {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .text-banner {
        padding-right: 10px;
    }
    .banner-img {
        text-align: left;
        padding-left: 10px;
        width: 70% !important;
    }

    .banner-head {
        /* padding-top: 30px; */
        text-align: left !important;
    }
    .banner-subhead {
        text-align: left !important;
    }
    .banner-desc {
        font-size: 16px;
        text-align: left !important;
    }
    .banner {
        text-align: left;
    }
}

@media (min-width: 1400px) {
    .text-banner {
        padding-right: 10px;
    }
    .banner-img {
        text-align: left;
        padding-left: 10px;
    }
    .banner-head {
        text-align: left !important;
    }
    .banner-subhead {
        text-align: left !important;
    }
    .banner-desc {
        font-size: 17px;
        text-align: left !important;
    }
    .banner {
        text-align: left;
    }
}

@media (min-width: 2000px) {
    .text-banner {
        padding-right: 10px;
    }
    .banner-img {
        text-align: left;
        padding-left: 10px;
    }
    .banner-head {
        text-align: left !important;
        font-size: 60px !important;
        line-height: 1 !important;
    }
    .banner-subhead {
        padding-top: 15px;
        text-align: left !important;
        font-size: 35px !important;
    }
    .banner-desc {
        padding-top: 15px;
        font-size: 25px !important;
        text-align: left !important;
    }
    .banner {
        text-align: left;
    }
}
.section.bg-form {
    margin: 0px;
}
.nav-item a {
    padding: 0.5rem 0 0.5rem 0;
}

nav .breadcrumb-item + .breadcrumb-item::before {
    color: #000 !important;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    /* content: "\F285" !important; */
    opacity: 1 !important;
}
.swiper-button-prev,
.slick-left {
    background-image: url("../img/Icon/Previous.svg") !important;
    width: 60px !important;
    height: 60px !important;
    left: -25px !important;
}

.swiper-button-next,
.slick-right {
    background-image: url("../img/Icon/Next.svg") !important;
    width: 60px !important;
    height: 60px !important;
    right: -25px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
}

.key-solution > .accordion-button,
.key-solution > .accordion-button.collapse {
    font-weight: 600;
    font-size: 1.3rem;
}
.key-solution > .accordion-button:not(.collapsed) {
    background-color: #F64E60 !important;
    color: #fff !important;
}

.key-solution > .accordion-button::after {
    background-image: none;
}

.key-solution > .accordion-button:hover {
    background-color: #F64E60 !important;
    color: #FFF;
}

.key-solution > .accordion-button:not(.collapsed)::after {
    background-image: none !important;
}

.key-solution > .accordion-item {
    border: 1px solid #cfcccc !important;
    border-radius: 0px !important;
}

.card-img.fitur-andalan {
    height: auto;
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1441px) {
    .card-img.fitur-andalan {
        height: 1000px !important;
    }
}

.documentation-compensation {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.documentation-compensation .img-fluid {
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (min-width: 575px) {
    .documentation-compensation .img-fluid {
        height: 200px
    }
}

@media (min-width: 775px) {
    .documentation-compensation .img-fluid {
        height: 300px;
    }
}
@media (min-width: 1024px) {
    .documentation-compensation .img-fluid {
        height: 500px;
    }
}

.copyright-compensation img {
    height: 50px;
}

@media (min-width: 1024px) {
    .copyright-compensation img {
        height: 80px;
    }
}

.documentation-customer-exp {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.documentation-customer-exp .img-fluid {
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (min-width: 575px) {
    .documentation-customer-exp .img-fluid {
        height: 200px
    }
}

@media (min-width: 775px) {
    .documentation-customer-exp .img-fluid {
        height: 300px;
    }
}
@media (min-width: 1024px) {
    .documentation-customer-exp .img-fluid {
        height: 500px;
    }
}

.card-img.customer-exp {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (min-width: 768px) {
    .card-img.customer-exp {
        width: 600px !important;
    }
}

@media (min-width: 1024px) {
    .card-img.customer-exp {
        width: 1000px !important;
    }
}
