@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&display=swap');

@font-face {
    font-family: "Interstate-Bold";
    src: url("../fonts/Interstate-Bold.ttf") format("truetype");

}

@font-face {
    font-family: "Interstate-Light";
    src: url("../fonts/Interstate-Light.ttf") format("truetype");

}

@font-face {
    font-family: "Interstate-Regular";
    src: url("../fonts/Interstate-Regular.ttf") format("truetype");
}

/*  Default Css  */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Interstate-Light', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: 'Interstate-Regular', sans-serif;
    color: #872569;
    font-weight: 400;
    margin-bottom: 10px;
}

body h1 {
    font-size: 64px;
    line-height: 72px;
    letter-spacing: -0.02em;
}

body h2 {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -0.02em;
}

body h3 {
    font-size: 36px;
    line-height: 49px;
    letter-spacing: -0.02em;
}

body h4 {
    font-size: 24px;
    line-height: 36px;
}

p {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #696969;
}

ul {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

body a {
    color: #000;
}

a {
    transition: all ease-in-out 0.3s;
    color: #000;
}

body a:hover {
    color: #000;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    text-decoration: none !important;
}

input:focus {
    outline: none !important;
}

button:focus {
    outline: none !important;
}

.section-wrapper {
    padding: 72px 0;
}

img {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* End Default Css  */

/* Header Css  */
.mobile-menu {
    display: none;
}

.header-logo {
    width: 300px;
}

.herder-menu .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
}

.herder-menu .menu li {
    padding: 0 30px;
    font-weight: 500;
}

.header-wrapper {
    padding: 15px 0;
    z-index: 9;
    background: #fff;
    transition: all ease-in-out 0.4s;
    height: auto;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    width: 100%;
    position: fixed;
    top: 0;
}

.nav-up .header-wrapper {
    top: -120px;
}

.nav-down .header-wrapper {
    top: 0;
}

.header-main-div {
    position: relative;
    background: transparent;
}

.header-wrapper .row {
    align-items: center;
}

.herder-menu .menu li a {
    display: block;
    font-family: 'Inter';
    text-align: right;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    position: relative;
    color: #696969;
    transition: 0.5s ease;
    font-style: normal;
}

body .menu-button a {
    background-color: #872569;
    padding: 10px 15px;
    color: #fff !important;
}

body .menu-button a:hover {
    background-color: #94c620;
}

.herder-menu .menu li a:hover {
    width: 100%;
    color: #99B94F;
}

/* End Header Css  */

/* Footer Css */
.footer-section {
    width: 100%;
    bottom: 0;
}

.footer-menu ul#menu-footer-menu {
    display: flex;
    align-items: flex-start;
    list-style-type: none;
}

.footer-menu ul {
    list-style-type: none;
}

.footer-menu ul#menu-footer-menu li ul.sub-menu {
    margin-top: 12px;
}

.footer-menu ul#menu-footer-menu li ul.sub-menu li {
    margin-bottom: 7px;
    margin-right: 0;
}

.footer-logo {
    width: 190px;
}

.row.footer-row {
    padding: 70px 0;
    align-items: flex-start;
}

.footer-menu ul#menu-footer-menu a:hover {
    opacity: 0.5;
}

.footer-menu ul#menu-footer-menu li {
    font-size: 16px;
    font-weight: 600;
    margin-right: 50px;
}

.footer-menu ul#menu-footer-menu li ul.sub-menu li {
    font-weight: 500;
    font-size: 15px;
}

.footer-social-sec h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: normal;
}

.footer-social-sec ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin-top: 12px;
}

.footer-social-sec ul li {
    margin-right: 6px;
}

.footer-social-sec ul li img {
    height: 27px;
    width: auto;
}

.footer-social-sec ul li a:hover, .page-terms-links-sec ul#menu-terms-menu li a:hover {
    opacity: 0.5;
}

.page-terms-links-sec ul#menu-terms-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
}

.page-terms-links-sec ul#menu-terms-menu li {
    margin-left: 10px;
    font-size: 14px;
}

.copyright-content p {
    font-size: 16px;
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.copyright-section {
    padding: 10px 0;
    background: #99B94F;
}

/* partner carousel */
.partners-carousel img {
    height: 70px !important;
    width: 135px !important;
    object-fit: contain;
    margin: auto;
}

.our-partners-heading-sec {
    margin-bottom: 60px;
}

.custom-padding {
    padding: 80px 0;
}

.margin-0 {
    margin: 0;
}

/* Tab Style */

.tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
    max-width: 100%;
}

.tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.tab-link {
    margin: 0;
    list-style: none;
    padding: 10px 24px;
    line-height: 24px;
    color: #00000080;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.5s;
    font-weight: 700;
    border: 1px solid rgba(4, 9, 33, 0.24) !important;
}

.tab-link:hover {
    color: #999;
    border-color: #999;
}

.tab-link.tab-active {
    color: #fff;
    background: #872569;
    border: none;
}

.content-wrapper {
    padding: 70px 0px;
}

.tab-content {
    display: none;
    color: #888;
    font-weight: 300;
    font-size: 15px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content-inner {
    padding-left: 15px;
}

.tab-content.tab-active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

.tab-heading-sec {
    margin-bottom: 60px;
    text-align: center;
}

/* End Tab Style */

/* Submenu style */
ul.sub-menu {
    list-style-type: none;
}

/* .herder-menu .menu-item-has-children:after {
    position: absolute;
    content: "";
    background-image: url('/wp-content/themes/custom-theme/assets/images/menu-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 8px;
    right: 9px;
    top: 0;
    transition: all ease-in-out 0.2s;
    bottom: 0;
    margin: auto;
} */

.herder-menu .menu-item-has-children:hover:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.herder-menu ul.sub-menu {
    display: none;
    position: absolute;
    width: auto;
    top: 150%;
    left: 10px;
    z-index: 1;
    text-align: left;
    background: #ffff;
    /* min-width: 145px; */
    box-shadow: rgb(100 100 111 / 20%) 0px 5px 10px 0px;
    padding-inline-start: 0;
    list-style-type: none;
}

.herder-menu .menu li .sub-menu li {
    padding: 10px 20px !important;
    margin: 0;
    position: relative;
}

.herder-menu .menu .menu-item-has-children {
    position: relative;
}

.herder-menu .menu li .sub-menu li a {
    text-align: left !important;
    font-size: 14px;
    width: max-content;
}

.herder-menu .menu li .sub-menu li:first-child {
    padding-top: 20px !important;
}

.herder-menu .menu li .sub-menu li:last-child {
    padding-bottom: 20px !important;
}

.herder-menu .menu li.current-menu-item a:before,
.herder-menu .menu li.current-menu-parent a:before {
    width: 100%;
}

.herder-menu .menu li.current-menu-item ul.sub-menu li a:before,
.herder-menu .menu li.current-menu-parent ul.sub-menu li a:before {
    width: 0%;
}

.herder-menu ul.sub-menu li.current-menu-item a:before,
.herder-menu ul.sub-menu li a:hover:before {
    width: 100% !important;
}

.footer-menu .menu {
    display: flex;
    align-items: flex-start;
    list-style-type: none;
    justify-content: space-around;
}

.footer-menu .menu li {
    font-size: 16px;
    font-weight: 500;
    margin-right: 50px;
}

.footer-menu .menu li ul.sub-menu {
    margin-top: 12px;
}

.footer-menu .menu li ul.sub-menu li {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 7px;
    margin-right: 0;
}

.footer-menu .menu li a:hover {
    opacity: 0.5;
}

/* End Submenu style */
/* custom scroll */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #872569;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #8ec216;
}

/* Product single css */
.products-single {
    padding: 100px 0 70px;
}

.top-banner-products {
    text-align: center;
    width: 85%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 800px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.product-banner-video {
    padding: 60px 0 80px;
}

.product-banner-video video {
    height: 390px;
    width: auto;
}

.banner-button-products {
    padding-top: 30px;
}

.banner-button-products a {
    background: #872569;
    color: #fff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    padding: 15px 75px;
}

.banner-button-products a:hover {
    color: #fff;
    background: #a2cd3e;
}

.banner-gallery-images {
    position: relative;
    width: 85%;
    margin: 35px auto 0;
    height: 600px;
}

.top-image-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.center-image {
    margin: auto;
    position: absolute;
    top: 107%;
    width: 440px;
    left: 0;
    right: 0;
    z-index: 9;
}

.bottom-image-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leftt-bottom-image {
    position: absolute;
    top: 110%;
    left: 0;
}

.right-bottom-image {
    position: absolute;
    top: 100%;
    right: 0;
}

.left-top-image {
    position: absolute;
    top: 100%;
    left: 0;
}

.right-top-image {
    position: absolute;
    top: 100%;
    right: 0;
}

/* left image right content css */

.left-image-right-content-section {
    padding: 50px 0 130px;
}

.left-image-right-content-section .row {
    align-items: center;
}

.image-block img {
    height: 440px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.right-image-left-content .row .content-block {
    padding-left: 60px;
}

.right-image-left-content .row .content-block p {
    font-family: 'Interstate-Regular';
}

.left-content-right-image .row .content-block {
    padding-right: 60px;
}

.left-content-right-image .row .content-block p {
    font-family: 'Interstate-Regular';
}

.product-testimonial-block {
    padding: 60px 70px 60px;
    background: #f1f1f1;
    width: 80%;
    /* margin: 190px auto; */
    margin: 90px auto 230px;
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-testimonial-block.product-testimonial-sec {
    margin: 190px auto;
    position: relative;
    top: 23px;
}

.product-testimonial-block.has-quote-icon {
    padding: 120px 70px 60px;
}

.product-testimonial-block .row {
    align-items: center;
}

.product-testimonial-block .client-logo img {
    /* height: 135px; */
    object-fit: cover;
    width: 100%;
    height: auto;
}

.product-testimonial-block .client-quote p {
    color: #000;
}

.quote-icon-image {
    top: 0;
    position: absolute;
}

.video-container {
    width: 100%;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(black, 0.4);
}

.video-wrapper {
    width: 45%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all ease-in-out 0.6s;
    position: relative;
}

.video-block .video-wrapper {
    width: 62%;
}

/* .video-wrapper.video-in-viewport {
    width: 100%;
} */

.product-video-section {
    padding-top: 130px;
}

video {
    width: 100%;
    height: 100%;
    /* border-radius: 4px; */
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

#circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}

/* case study block */
.case-study {
    padding: 70px 0 140px;
}

.case-study-info {
    background: #f1f1f1;
    padding: 70px 140px;
}

/* .case-study-content h3 {
    margin-top: 0px;
}  */
.case-study-image {
    position: relative;
}

.case-study-image img {
    height: 300px;
    position: absolute;
    object-fit: contain;
}

.case-study-link {
    display: flex;
    align-items: center;
    padding: 10px 0 0 0;
}

.case-study-content p {
    font-family: 'Interstate-Regular';
}

.case-study-link a {
    font-size: 20px;
    line-height: 30px;
    color: #18191F;
    font-family: 'Interstate-Regular';
    transition: 0.5s ease-in;
}

.case-study-link a:hover {
    color: #99b94f;
}

.case-study-link img {
    height: 20px;
    width: 40px;
    margin-left: 12px;
    transition: 0.5s ease-in;
}

.case-study-link:hover img {
    transform: translate(10px, 0px);
}

/* integrated carousel section */
.section-info {
    text-align: center;
}

.integrate {
    padding-bottom: 70px;
}

.partners-carousel img {
    height: auto !important;
    width: 345px !important;
    object-fit: contain;
    margin: auto;
}

.client-carousel {
    padding: 80px 0 0;
}

/* contact form section */
.form-block-outer {
    padding: 70px 0;
    width: 85%;
    margin: 0 auto;
}

.form-block {
    padding-top: 70px;
}

.contact-form label {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #000000;
}

.input-fields input {
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    height: 46px;
    padding: 15px;
    width: 100%;
    margin-top: 17px;
}

.input-fields {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.input-fields div {
    width: 45%;
    margin: 0 auto;
}

.check-box span {
    margin: 0;
}

.newsletter {
    width: 95%;
    margin: 0 auto;
}

.newsletter-text p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 24px;
}

.submit-button {
    text-align: center;
    padding-top: 36px;
}

.submit-button input {
    background: #872569;
    color: #fff;
    border: 1px solid #872569;
    font-size: 16px;
    line-height: 54px;
    padding: 0 75px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Inter';
    transition: 0.5s ease;
}

.submit-button input:hover {
    background: #99b94f;
    border: 1px solid #99b94f;
}

.product-detail-block {
    width: auto;
    display: flex;
    height: 290px;
    flex-wrap: wrap;
    background-size: cover;
    align-items: end;
}

.section-title {
    padding-bottom: 35px;
}

.product-name {
    width: 100%;
}

.product-name h4 a {
    color: #fff;
    padding-left: 30px;
    padding-bottom: 15px;
}

/* front page css */
.front-page {
    padding: 50px 0 0;
}

.front-page .top-banner-section .row {
    align-items: center;
}

/* homepage video */
#lightbox {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    display: none;
    right: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.95);
}

#video-wrapper-home {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

#close-btn {
    color: grey;
    font-size: 25px;
    position: fixed;
    top: 3%;
    right: 3%;
    z-index: 2;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: transform .5s ease, color .5s ease;
    -moz-transition: transform .5s ease, color .5s ease;
    -ms-transition: transform .5s ease, color .5s ease;
    -o-transition: transform .5s ease, color .5s ease;
    transition: transform .5s ease, color .5s ease;
}

#close-btn:hover {
    color: white;
    cursor: pointer;
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition: transform .5s ease, color .5s ease;
    -moz-transition: transform .5s ease, color .5s ease;
    -ms-transition: transform .5s ease, color .5s ease;
    -o-transition: transform .5s ease, color .5s ease;
    transition: transform .5s ease, color .5s ease;
}

button.button-video {
    background: #872569;
    border: 1px solid #872569;
    color: #fff;
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.5s ease-in;
    font-size: 16px;
}

video.button-video {
    cursor: pointer;
}

button.button-video:hover {
    background: #99b94f;
    border: 1px solid #99b94f;
}

/* end video css */
.animated-icon-mobile {
    display: none;
    height: 70px;
}

/* Homepage style */
.default-btn {
    background: #93186c;
    border: 1px solid #93186c;
    box-sizing: border-box;
    display: block;
    width: 228px;
    height: 56px;
    text-align: center;
    color: white;
    text-decoration: none;
    line-height: 54px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Interstate", sans-serif;
}

.default-btn:hover {
    background: #94c620;
    border: 1px solid #94c620;
    color: white;
}

/* .corporate-sec {
    padding: 150px 0 100px;
}
.participant-sec {
    padding: 50px 0 100px;
} */

.corporate-content-sec h2 {
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 56px;
    color: #93186c;
    width: 500px;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
}

.corporate-content-sec p {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 40px;
    color: #696969;
    margin: 0;
    margin-bottom: 22px;
    font-family: "Interstate-Regular", sans-serif;
}

.custom-custom-container {
    max-width: 75%;
    margin-left: auto;
}

.html5-title {
    display: none;
}

.html5-elem-wrap {
    background-color: transparent !important;
}

.html5-elem-box {
    background-color: transparent !important;
}

.html5-elem-data-box {
    background-color: transparent !important;
}

div#html5-watermark {
    display: none !important;
}

button#html5-close {
    top: 30px !important;
    right: 30px !important;
    position: fixed !important;
}

.default-section {
    padding: 100px 0;
}

.equate-mobile-img {
    position: absolute;
    width: 160px;
    height: auto;
    /* opacity: 0.25; */
    -webkit-transition: opacity 0.25s ease-in;
    -moz-transition: opacity 0.25s ease-in;
    -o-transition: opacity 0.25s ease-in;
    -ms-transition: opacity 0.25s ease-in;
    transition: opacity 0.25s ease-in;
}

.equate-mobile-img:hover {
    opacity: 1;
}

img.equate-mobile-img.equate-mobile-img-2 {
    margin-left: 216px;
    margin-top: -42px;
}

img.equate-mobile-img.equate-mobile-img-1 {
    margin-top: 145px;
    margin-left: -75px;
}

.transact-box, .circular-box {
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    z-index: 2;
}

.circular-box:hover {
    background: #93186c;
    color: white;
}

.circular-box {
    position: absolute;
    top: -113px;
    margin-left: -100px;
    font-style: normal;
    font-weight: normal;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    color: #93186c;
    background: #f1f1f1;
    border: 5px solid #93186c;
    border-radius: 100%;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.transact-box {
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: #90ba39;
    background: #f1f1f1;
    border: 5px solid #90ba39;
    border-radius: 100%;
    font-size: 25px;
    line-height: 30px;
    position: absolute;
    margin-top: 330px;
    margin-left: 192px;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.transact-box:hover {
    background: #90ba39;
    color: white;
}

.equate-mobile-sec .corporate-content-sec h2 {
    color: #90ba39;
}

.equate-mobile-sec .corporate-content-sec p {
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 42px;

    opacity: 0.7;
}

.resources-container.corporate-content-sec h2 {
    text-align: center;
    width: 100%;
}

.resources-circle {
    width: 450px;
    height: 450px;
    background: #93186c;
    border: 5px solid #93186c;
    box-sizing: border-box;
    border-radius: 490px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 32px;
    margin-top: 10px;
}

.resources-circle h3 {
    font-style: normal;
    font-weight: normal;
    font-size: 56px;
    line-height: 56px;
    text-align: center;
    color: #ffffff;
    margin-top: 21px;
}

.resources-circle p {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #ffffff;
}

.resources-circle a {
    background: white;
    color: #93186c !important;
    height: 56px;
    width: 166px;
    border: 1px solid #93186c;
    text-decoration: none;
    line-height: 54px;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    z-index: 2;
    position: relative;
}

.resources-circle a:hover {
    background: #90ba39;
    color: white !important;
}

.resources-feature {
    width: 155px;
    height: 155px;
    background: #ffffff;
    border: 4px solid #90ba39;
    border-radius: 300px;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 20px;
    color: #90ba39;
    text-align: center;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.resources-feature:hover {
    background: #90ba39;
    color: white;
}

.resources-feature-list-sec {
    position: relative;
}

.administrator-portal-overview {
    top: -252px;
    left: 114px;
}

span.play-icon {
    background: url('/wp-content/themes/computershare/assets/images/play-icon.png');
    display: block;
    width: 46px;
    height: 32px;
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
    top: 38px;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.resources-feature:hover span.play-icon {
    background: url('/wp-content/themes/computershare/assets/images/play-icon-hover.png');
    background-repeat: no-repeat;
}

.resources-feature-list-sec span.text {
    position: relative;
    top: 39px;
    font-size: 16px;
    display: block;
    width: 111px;
    margin: 0 auto;
    text-align: center;
    height: 62px;
    font-family: "Interstate", sans-serif;
}

.viewing-participant-portal {
    left: 103px;

    top: -72px;
}

.offer-enrolment {
    left: 161px;
    top: -29px;
}

.exercising-selling-shares {
    left: 235px;

    top: -98px;
}

.reporting-overview {
    top: -272px;
    left: 202px;
}

/*  home-testimonials Css*/
.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}

.shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

#home-testimonials .item {
    text-align: center;
    padding: 50px;
    margin-bottom: 80px;
    opacity: 0.2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#home-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

#home-testimonials .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}

#home-testimonials .owl-dots .owl-dot.active span,
#home-testimonials .owl-dots .owl-dot:hover span {
    background: #93186c;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#home-testimonials .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#home-testimonials .owl-dots .owl-dot {
    display: inline-block;
}

#home-testimonials .owl-dots .owl-dot span {
    background: #93186c;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

#home-testimonials .owl-item img {
    width: 40px !important;
    display: block;
    margin: 0px;
    margin-bottom: 23px;
}

#home-testimonials .item .shadow-effect {
    background: #93186c;
    padding: 51px;
    text-align: left;
    min-height: 595px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home-testimonials .owl-item .item {
    padding: 0px;
}

#home-testimonials .owl-nav {
    display: none;
}

#home-testimonials .owl-dots .owl-dot.active span,
#home-testimonials .owl-dots .owl-dot:hover span {
    background: #93186c;
}

#home-testimonials .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 4px;
    border-radius: 50%;
}

.shadow-effect p {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 36px;
    color: #ffffff;
}

.testimonial-name {
    font-style: normal;
    font-weight: normal;
    font-size: 19px;
    line-height: 31px;
    color: #ffffff;
    opacity: 0.7;
}

#home-testimonials {
    transform: scale(0.8);
    margin-top: 50px;
}

#home-testimonials .owl-stage-outer:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 86%;
    left: 0;
    right: 0;
    top: 0;
    background: #f1f1f1;
}

.equate-mobile-sec-bg {
    background: #f1f1f1;
    padding: 60px 0 0;
}

.home-testimonials-sec-bg {
    background: #f1f1f1;
    position: relative;
    z-index: 2;
}

/* End home-testimonials Css*/
img.combine-logo {
    height: auto;
    position: relative;
    left: -23px;
}

.text-center {
    text-align: center;
}

.home-testimonials-sec h2 {
    font-style: normal;
    font-weight: normal;
    font-size: 38px;
    line-height: 56px;
    color: #93186c;
    padding: 20px 0;
    background: #f1f1f1;
}

.home-testimonials-sec.default-section {
    padding-bottom: 100px;
}

.participant-sec.default-section {
    padding-top: 50px;
    position: relative;
    z-index: 3;
}

.corporate-sec.default-section {
    padding-top: 50px;
}

.equate-mobile-sec.default-section {
    padding: 150px 0 300px;
}

.top-banner-section.default-section {
    padding-top: 80px;
    padding-bottom: 160px;
}

.top-banner-section.default-section h1 {
    margin-top: 0;
}

.top-banner-section .col-sm-5 a {
    margin-top: 30px;
}

.resources-sec.default-section {
    margin-top: 100px;
}

.equate-mobile-img-container.equate-mobile-container {
    display: none;
}

.mobile-content-sec {
    display: none;
}

.social-box {
    display: none;
}

/* .case-study {
    display: none;
}

.integrate {
    display: none;
} */

.form-block .home-form-sec {
    padding: 0;
    margin-top: 0;
}

/* mobile image hover css */
.image-hover {
    opacity: 0.25;
    -webkit-transition: opacity 0.25s ease-in;
    -moz-transition: opacity 0.25s ease-in;
    -o-transition: opacity 0.25s ease-in;
    -ms-transition: opacity 0.25s ease-in;
    transition: opacity 0.25s ease-in;
}

img.equate-mobile-img.equate-mobile-img-1:hover .image-hover {
    opacity: 1;
}

img.equate-mobile-img.equate-mobile-img-2:hover .image-hover {
    opacity: 1;
}

.equate-mobile-app-sec {
    text-align: center;
    padding: 50px 0 120px;
}

.equate-mobile-app-sec p {
    font-family: 'Interstate-Regular';
}

.equate-mobile-app-btn a {
    background: #872569;
    color: #fff;
    padding: 20px 40px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.equate-mobile-app-btn {
    padding-top: 25px;
}

.equate-mobile-app-btn a:hover {
    color: #fff;
    background: #a2cd3e;
}

.equate-mobile-block {
    padding-bottom: 66px;
}

.download-equate-mobile-app-sec {
    margin-top: 80px;
}

.download-equate-mobile-app-sec .download-equate-mobile-col {
    background: #872569;
    padding: 70px 30px;
}

.download-equate-mobile-app-sec h2 {
    color: #ffff;
    font-size: 36px;
    line-height: 49px;
    text-align: center;
    max-width: 745px;
    margin: auto;
}

/* .testimonial-block-products .svg-line-wrapper.testimonial-svg-line svg {
    top: -125px;
} */
.tab-heading-sec h2 {
    max-width: 565px;
    margin: 0 auto;
}