.view-btn {
    display: inline-block;
}

.view-btn a {
    border-radius: 40px;
    border: 1px solid #000;
    transition: background 0.5s ease;
}

.view-btn a:hover {
    background: #ededf0;
}
.vision-container {
    background: url(/assets/img/vision/bg.jpg);
    background-attachment: fixed;
    background-position: center 0;
    background-size: cover;
}

.insights-date .icon {
    font-size: 20px;
}

.services-container .services-item {
    display: flex;
    flex-direction: column;
}

.services-container .services-item .services-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.services-container .services-item .services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-container .services-bottom ul li {
    list-style: auto;
}

.services-container .view-btn span {
    color: #4941b9;
}


.accordion-container {
    width: 100%;

}

.accordion-container .accordion-item {
    border-top: 1px solid #16161b1f;
}

.accordion-container .accordion-header {
    width: 100%;
    position: relative;
    cursor: pointer;
}


.accordion-container .accordion-header h3 {
    width: calc(100% - 50px);
}

.accordion-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.5s ease-in-out;
}

.accordion-icon .icon {
    transition: all 0.5s ease;

}

.accordion-header:hover .accordion-icon {
    background: #ededf0;
}

.accordion-header:hover .accordion-icon .icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0px;
    width: 100%;
    color: #000;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.accordion-content ul li {
    list-style: disc;
}

.accordion-content a {
    font-weight: bold;
    color: #4941b9;
}


.accordion-active .accordion-content {
    max-height: 500px;
}

.accordion-active .accordion-icon .icon {
    transform: rotate(180deg);
}

.contact-container {
    background-color: #e9edfa;
}

a strong{
    color: #4941b9;
}

.form-tip {
    font-size: 14px;
}

.vision-container .view-btn a{
    border-color: #fff;
}
.vision-container .view-btn a span{
    transition: color 0.5s ease-in-out;
    color: #fff;
}
.vision-container .view-btn a svg{
    color: #fff;
    transition: color 0.5s ease-in-out;
}
.vision-container .view-btn a:hover span{
    color: #000;
}
.vision-container .view-btn a:hover svg{
    color: #000;
}
@media (min-width: 1024px) {

    .insights-left {
        width: 66%;

    }

    .insights-left a {
        position: sticky;
        top: 30px;
        bottom: 0px;
        transition: all 0.3s ease;
    }

    .insights-right {
        width: 32%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap
    }

    .insights-container img {
        width: 100%;
        height: auto;
    }

    .insights-right a:first-child {
        margin-bottom: 30px;
    }

    .insights-left .insights-text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .insights-right .insights-text {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (min-width:768px) and (max-width: 1024px) {
    .insights-container {
        flex-direction: column;
    }

    .insights-container img {
        width: 100%;
        height: auto;
    }

    .insights-container a {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .insights-left {
        width: 100%;
    }

    .insights-right {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .insights-right a {
        width: 49%;
    }

    .insights-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .insights-left .insights-text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .insights-right .insights-text {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width:768px) {
    .insights-container {
        flex-direction: column;
    }

    .insights-container img {
        width: 100%;
        height: auto;
    }

    .insights-container a {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .insights-left {
        width: 100%;
    }

    .insights-right {
        width: 100%;

    }

    .insights-right a {
        width: 100%;
    }

    .insights-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .insights-text {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .accordion-active .accordion-content {
        max-height: 600px;
    }

}

