/* =Import Required styles
========================================================================================*/

@import url(normalize.css);

:root {
    /* Site global colours */


    /* Quaternary color */
    --dark: #000000;
    /* Body text color */
    /* Black color */
    --white: #ffffff;
    /* White color */
    /* Blockquote background or lighter */
    --gray: #818181;

    /* Heading and body font sizes */

    --body-font: clamp(1rem, 1.041666666666667vw, 1.25rem);
    /* 20px */
    --body-lineheight: 1.65;

    --h1: clamp(1.25rem, 1.5625vw, 1.875rem);
    /* 30px */
    --h2: clamp(1.25rem, 1.5625vw, 1.875rem);
    /* 30px */
    --h3: clamp(1rem, 1.145833333333333vw, 1.375rem);
    /* 22px */
    --h4: clamp(1rem, 1.041666666666667vw, 1.25rem);
    /* 20px */
    --h5: clamp(0.875rem, 0.9375vw, 1.125rem);
    /* 18px */
    --h6: clamp(0.875rem, 0.8333333333333333vw, 1rem);
    /* 16px */

    --wrap: 1250px;
    --wrapspace: 30px;

    /* For heading font */
    --font-heading: "Noto Sans", sans-serif;
    /* Site global fonts */
    --font-body: "Noto Sans", sans-serif;
    /* For body font */
    --headerHeight: 107px;
    --appHeight: 100vh;
}

html {
    scroll-behavior: smooth
}


/* =Box Sizing 
========================================================================================*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select,
input[type="button"],
input[type="submit"],
button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* =Deafult Tag & General Classes
========================================================================================*/

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

body {
    font: var(--body-font)/var(--body-lineheight) var(--font-body);
    color: var(--primary);
    font-weight: 500;
}

img {
    vertical-align: top;
    border: 0;
}

a,
input[type="button"],
input[type="submit"],
button,
table th,
table td {
    -webkit-transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
    transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--secondary);
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    a:active {
        background-color: transparent;
    }
}


strong {
    font-weight: bold;
}

p {
    margin: 0 0 20px 0;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.5;
    margin: 0 0 12px;
    font-weight: 800;
    color: var(--black);
    display: block;
}

h1,
h2 {
    font-size: var(--h2);
    font-weight: 800;
}

h3 {
    font-size: var(--h3);
    font-weight: 600;
}

h4 {
    font-size: var(--h4);
    font-weight: 800;
}

h5 {
    font-size: var(--h5);
    font-weight: 500;
}

h6 {
    font-size: var(--h6);
}

ul li {
    line-height: 24px;
}

.cf:after,
.wrap:after {
    content: "";
    display: table;
    clear: both;
}

:focus {
    outline: none;
}


.custom-arrow-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: table;
    margin: 24px 0;
}

.custom-arrow-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.custom-arrow-list li:last-child {
    margin-bottom: 0;
}

.custom-arrow-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: solid 10px #000;
    border-top: solid 10px transparent;
    border-bottom: solid 10px transparent;
    z-index: 2;
}


/* =Layout Width
========================================================================================*/

.wrap {
    max-width: calc(var(--wrap) + (var(--wrapspace) * 2));
    width: 100%;
    margin: 0 auto;
    padding-left: var(--wrapspace);
    padding-right: var(--wrapspace);
}

/* = On scroll animations
========================================================================================*/

.ani-element {
    opacity: 0;
    position: relative;
    transition: opacity 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), transform 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), top 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9);
}

.ani-element.show {
    opacity: 1;
}

.ani-element.up {
    transform: translateY(40px);
}

.ani-element.up.show {
    transform: translateY(0);
}

.ani-element.down {
    transform: translateY(-40px);
}

.ani-element.down.show {
    transform: translateY(0);
}

.ani-element.left {
    transform: translateX(40px);
}

.ani-element.left.show {
    transform: translateX(0);
}

.ani-element.right {
    transform: translateX(-40px);
}

.ani-element.right.show {
    transform: translateX(0);
}

/* Delays */

.delay-1 {
    transition-delay: 30ms;
}

.delay-2 {
    transition-delay: 60ms;
}

.delay-3 {
    transition-delay: 90ms;
}

.delay-4 {
    transition-delay: 120ms;
}

.delay-5 {
    transition-delay: 150ms;
}

.delay-6 {
    transition-delay: 180ms;
}

.delay-7 {
    transition-delay: 210ms;
}

.delay-8 {
    transition-delay: 240ms;
}

.delay-9 {
    transition-delay: 270ms;
}

.delay-10 {
    transition-delay: 300ms;
}

.delay-11 {
    transition-delay: 330ms;
}

.delay-12 {
    transition-delay: 360ms;
}

.delay-13 {
    transition-delay: 390ms;
}

.delay-14 {
    transition-delay: 420ms;
}

.delay-15 {
    transition-delay: 450ms;
}

.delay-16 {
    transition-delay: 480ms;
}

.delay-17 {
    transition-delay: 510ms;
}

.delay-18 {
    transition-delay: 540ms;
}

.delay-19 {
    transition-delay: 570ms;
}

.delay-20 {
    transition-delay: 30ms;
}


/* =Form Style
========================================================================================*/

button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select,
input[type="submit"],
input[type="button"] {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    vertical-align: middle;
}

button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
input[type="submit"],
input[type="button"] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

button,
input {
    line-height: normal;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select {
    background: var(--white);
    padding: 4px 30px 4px;
    height: 72px;
    line-height: 1.55;
    border: none;
    color: var(--primary);
    width: 100%;
    font-family: var(--font-body);
    border: 1px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 8px -8px 6px rgba(0, 0, 0, 0.17), inset -8px 8px 6px rgba(90, 90, 90, 0.29);
    transition: border 350ms ease-in-out;
}

input[type="text"].input-lg,
input[type="password"].input-lg,
input[type="email"].input-lg,
input[type="tel"].input-lg,
input[type="search"].input-lg,
input[type="url"].input-lg {
    height: 58px;
}

input[type="text"].input-sm,
input[type="password"].input-sm,
input[type="email"].input-sm,
input[type="tel"].input-sm,
input[type="search"].input-sm,
input[type="url"].input-sm {
    height: 38px;
}

textarea {
    width: 100%;
    height: 60px;
    overflow: auto;
    resize: vertical;
    padding: 10px 15px;
    font-family: var(--font-body);
}

select {
    padding: 8px 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    background: none;
    line-height: 1.25;
    border-radius: 20px;
    box-shadow: inset 8px -8px 6px rgba(0, 0, 0, 0.17), inset -8px 8px 6px rgba(90, 90, 90, 0.29);
}

select::-ms-expand {
    display: none;
}

.custom-select {
    display: block;
    margin: 0;
    position: relative;
    background: var(--white);
}

.custom-select:after {
    content: '';
    border-top: solid 6px var(--gray);
    border-right: solid 6px transparent;
    border-left: solid 6px transparent;
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -3px;
    pointer-events: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    border: solid 1px var(--black);
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="button"],
input[type="submit"],
button {
    background-image: var(--bg-gradient);
    background-size: 300% 100%;
    transition: all .4s ease-in-out;
    color: var(--white);
    border: 0;
    cursor: pointer;
    width: auto;
    overflow: visible;
    padding: 12px 35px;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 1.25;
    font-family: var(--font-body);
    font-weight: bold;
    border-radius: 30px;
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
    color: var(--white);
    background-position: 100% 0;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 4px 8px 0;
    vertical-align: top;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

/* =Form list
========================================================================================*/

.form-block {
    margin: 10px 0;
}

.form-group {
    padding: 15px 0
}

.form-group:after {
    clear: both;
    content: '';
    display: table;
}

.formlist .form-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.forgot-link {
    float: right;
}

.form-block .form-group label {
    display: inline-block;
    padding: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.58;
    color: var(--secondary);
}

.form-block .form-group label sup {
    color: var(--primary);
}

.form-inline .form-group label {
    float: left;
    width: 30%;
    padding: 10px 10px 10px 0;
    line-height: 1.5
}

.form-inline .form-group .field-box {
    width: 70%;
    float: left;
}

/* =Common button CSS
========================================================================================*/

.button {
    background-color: var(--secondary);
    font-size: 14px;
    color: var(--white);
    display: inline-block;
    line-height: 1.2;
    padding: 16px 36px;
    vertical-align: bottom;
    font-weight: 700;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 350ms ease-in-out;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset -8px 8px 6px rgba(175, 175, 175, 0.35), inset 8px -8px 6px rgba(0, 0, 0, 0.26);
}

.button span {
    position: absolute;
    background-color: var(--black);
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
    box-shadow: inset -8px 8px 6px rgba(175, 175, 175, 0.35), inset 8px -8px 6px rgba(0, 0, 0, 0.26);
}

.button:hover {
    background-color: var(--primary);
    text-decoration: none;
    color: var(--white)
}

.button:hover span {
    width: 250%;
    height: 400px
}

.button.btn-secondary span,
.button.btn-lightgray span {
    background-color: var(--secondary)
}

.button.btn-outline span {
    background-color: var(--primary)
}

.button.btn-white {
    background-color: var(--white);
    color: var(--primary);

    &:hover {
        color: var(--white)
    }
}

.button.btn-white span {
    background-color: var(--primary)
}

/* =Table CSS
========================================================================================*/

table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ddd;
}

table {
    width: 100%;
    margin-bottom: 30px;
}

table th,
table td {
    padding: 14px 15px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

table th {
    background: #ececec;
    font-weight: 700;
    padding: 17px 15px;
    font-size: 16px;
}

table tr:hover td {
    background: var(--primary);
    color: #fff;
}

table tr.selected td {
    background: var(--primary);
    color: #fff;
}

table thead th {
    vertical-align: middle;
}

table caption+thead tr:first-child th,
table caption+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}

/* =tabnav CSS
========================================================================================*/

.tabnav {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border: solid 1px #e9edee;
    display: flex;
    flex-wrap: wrap;
}

.tabnav li {
    position: relative;
    margin: 0;
    width: 25%;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.tabnav li:first-child {
    margin: 0;
}

.tabnav li h2 {
    margin: 0;
    font-size: 15px;
}

.tabnav li a {
    display: block;
    padding: 16px 5px;
    text-decoration: none;
    color: #505061;
    line-height: 1.25;
    background: #e9edee;
    margin-bottom: -1px;
    border-left: solid 1px #dde1e2;
}

.tabnav li:first-child a {
    border-left: 0;
}

.tabnav li.active a,
.tabnav li a:hover {
    background-color: #fff;
    color: var(--primary)
}

.tabnav li.active a:after {
    display: block;
}

.tab-container {
    padding: 20px;
    border: solid 1px #e9edee;
    border-top: 0;
}

.tabcontent .quicklist li,
.tabcontent .quicklist {
    margin: 0;
}

.tabcontent {
    display: none;
}

.tabcontent p {
    color: #666;
    margin: 20px 0 0;
}

.tabcontent p:first-child {
    margin-top: 0;
}

.tabcontent p a,
.accordion-data p a {
    color: var(--black);
    text-decoration: underline;
}

.tabcontent p a:hover,
.accordion-data p a:hover {
    color: #00305d
}

.tabcontent h4 {
    margin: 0 0 15px;
}




figure {
    margin: 0;
}


/* contact form 7 style */

.wpcf7-form span.wpcf7-not-valid-tip {
    border: 0;
    color: #f00;
    line-height: 1.2;
    padding: 2px 0;
    z-index: 5;
    margin-top: 5px;
    font-size: 16px;
    border-radius: 0;
}

.wpcf7-form div.wpcf7-response-output {
    margin: 15px 0;
    padding: 15px;
    color: #f00;
    background: #fdeeee;
    border: solid 1px #f2c9c9 !important;
    clear: both;
    border-radius: 0;
    text-align: center;
}

form.wpcf7-form div.wpcf7-response-output {
    font-weight: normal;
    color: #468847;
    background: #dff0d8;
    border: solid 1px #d6e9c6 !important;
    font-size: 16px;
    border-radius: 30px;
    text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ec9a9a !important;
    margin: 20px 0 0;
    padding: 10px;
    color: red;
    background: #fff6f6;
    font-size: 16px;
    text-align: center;
    border-radius: 30px;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed
}


.section-row {
    padding: 60px 0;
    background-color: var(--white);
}

.wpcf7-spinner {
    position: absolute !important;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    background-color: var(--black) !important
}

.img-hover {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.img-hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.img-hover:hover::after {
    opacity: 1;
    visibility: visible;
}

.img-hover:hover img {
    transform: scale(1.03);
}

.img-hover img {
    transition: transform 0.3s ease-in-out;
    width: 100%
}


.banner-section {
    padding: 10px;
}

.banner-img figure {
    padding-top: 25.315%;
    position: relative;
    background-color: var(--primary);
    overflow: hidden;
    border-radius: 30px;
}

.banner-img figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}


.image-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px 30px;
}

.image-gallery h3 {
    margin-top: 24px;
    margin-bottom: 0;
}

.image-gallery .button {
    margin-top: 24px;
}

.image-gallery figure {
    position: relative;
    padding-top: 67.647%;
    z-index: 1;
    display: flex;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.23);
}

.image-gallery figure img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

figure {
    margin: 0;
}

.accordion-databox {
    counter-reset: my-sec-counter;
}

.accordion-databox .accordion-row {
    box-shadow:
        inset 12px -12px 12px rgba(0, 0, 0, 0.15),
        inset -12px 12px 12px rgba(90, 90, 90, 0.23);
    margin: 0 0 60px;
    border-radius: 30px;
    overflow: hidden;
}

.accordion-databox .accordion-row:last-child {
    margin-bottom: 0;
}

.accordion-databox .accordion-row h5 {
    cursor: pointer;
    margin: 0;
    color: var(--primary);
    position: relative;
    padding: 30px 40px 30px 60px;
    font-weight: 800;
    font-size: 16px;
    transition: all 350ms ease-in-out;
    display: flex;
    font-size: var(--h2);
}

.accordion-databox .accordion-row .accordion-trigger.open {
    background-color: var(--secondary);
    color: #fff;
}


.accordion-databox .accordion-row h5:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 60px;
    width: 54px;
    height: 4px;
    background-color: var(--secondary);
}


.accordion-databox .accordion-row h5:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    border-top: solid 8px var(--primary);
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    z-index: 2;
    transition: all 350ms ease-in-out;
}

.bc_sharedwnld {
    margin-bottom: 60px;
}


.accordion-databox .accordion-row h5.open:after {
    border-top: 0;
    border-bottom: solid 8px #fff;
}

.accordion-databox .accordion-row h5.open::before {
    background-color: #fff;
}

.accordion-data {
    display: none;
    padding: 30px 60px 60px;
}

.accordion-data p {
    margin: 0 0 20px;
    color: var(--black);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    transition: all 350ms ease-in-out;
    margin-top: 0;
    transform: translateY(-50%);
    width: 44px;
    height: auto;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}


.banner-slider .swiper-button-next {
    right: 30px;
}

.banner-slider .swiper-button-prev {
    left: 30px;
}

.swiper-pagination {
    display: none;
    align-items: center;
    justify-content: center;
}

.busineas-detail_outer {
    display: flex;
    grid-gap: 26px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.busineas-detail_outer :is(h2, h3, h4, h5, h6) {
    margin-bottom: 0;
}

.busineas-detail_outer:last-child {
    margin-bottom: 0;
}

.bd-left {
    width: 82px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 10px -10px 10px rgba(0, 0, 0, 0.15), inset -10px 10px 12px rgba(90, 90, 90, 0.23);
}

.bd-right {
    display: inline-flex;
    flex-direction: column;
    grid-gap: 14px;
    width: 100%;
}

.bd-right-top.gst-title {
    color: var(--black);
}

.bd-right-top {
    display: inline-flex;
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.bd-right-bottom {
    font-weight: 600;
    line-height: 1.5;
}

.bd-right-bottom a {
    word-break: break-all;
}

.link-hover {
    transition: background-size 250ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9) !important;
    background-image: linear-gradient(transparent calc(100% - 1px), var(--secondary) 1px);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 0% 100%;
}

.link-hover:hover {
    background-size: 100% 100%;
    background-position: left bottom;
    text-decoration: none;
}

.social-icons {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}

.social-icons li {
    display: flex;
}

.bc_sharedwnld_right .sharebox {
    width: 40px;
    cursor: pointer;
}

.country {
    padding: 7px 10px;
    transition: all 350ms ease-in-out;
    font-size: 20px;
}

.country.selected {
    background-color: #fff;
}

.selected-code {
    display: block;
}

.country:hover,
.country.selected-code {
    background-color: #fff;
}

.selected-country {
    position: relative;
    z-index: 2;
}

.country-codes {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #dfebf1;
    padding: 10px 0;
    right: 0;
    margin: 0 auto;
    /* display: flex;
    flex-direction: column; */
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    border-radius: 8px;
    grid-gap: 0;
    z-index: -1;
    height: 100vh;
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
}

.whatsapp-button {
    position: relative;
    background-color: #4CAF50;
    border-radius: 20px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset -12px 8px 6px rgba(0, 0, 0, 0.17), inset 10px -8px 6px rgba(90, 90, 90, 0.29);
    padding: 19px 40px;
    color: #fff;
    grid-gap: 12px;
    font-size: var(--body-font);
    font-weight: 600;

    i {
        font-size: var(--h3);
    }
}

.phone-code {
    display: grid;
    grid-template-columns: 127px auto;
    grid-gap: 20px;
}

.whatsapp-button:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.bc_sharedwnld .bc_sharedwnld_left .whatsapp-input .input-group #whatsapp-input {
    width: 100%;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 0px 10px 0 25px;
    font-size: var(--body-font);
    height: 72px;
    box-shadow: inset 8px -8px 6px rgba(0, 0, 0, 0.17), inset -8px 8px 6px rgba(90, 90, 90, 0.29);
    border: 0;
}

.bc_sharedwnld .bc_sharedwnld_left .whatsapp-input .input-group #whatsapp-input:focus {
    border-color: var(--black);
    outline: 0;
}

.bc_sharedwnld .bc_sharedwnld_left .whatsapp-input .input-group span.input-group-addon {
    display: flex;
    width: 80%;
    border-radius: 35px;
    margin-top: 2px;
}

.bc_sharedwnld .bc_sharedwnld_left .whatsapp-input .input-group {
    width: 100%;
    position: relative;
    padding-top: 0px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.bc_sharedwnld {
    max-width: 1133px;
}

.whatsapp-input {
    display: grid;
    width: 100%;
    grid-template-columns: auto 347px;
    grid-gap: 44px;
}

.bc_products_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    counter-reset: my-sec-counter;
}

.bc_products_list ul {
    text-align: left;
    margin-bottom: 0;
}

.bc_btn {
    margin-top: 30px;
}

.bc_prdct_top h4 {
    position: relative;
    padding-left: 40px;
    color: var(--primary);
    text-align: left;
}


.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 900;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #25245d;
    transition: all 350ms ease-in-out;
    cursor: pointer;
    transform: scale(0);
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center
}

.progress-wrap::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: auto;
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
    z-index: 1
}

.progress-wrap::before {
    position: absolute;
    opacity: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear
}

.progress-wrap:hover::after {
    opacity: 0
}

.progress-wrap:hover::before {
    opacity: 1
}

.progress-wrap .arrow-top {
    width: 46px;
    height: auto;
    aspect-ratio: 1;
    position: absolute
}

.progress-wrap .arrow-top::after {
    content: "";
    width: 2px;
    height: 32%;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--primary);
    position: absolute
}

.progress-wrap .arrow-top::before {
    content: "";
    width: 10px;
    height: auto;
    aspect-ratio: 1;
    display: block;
    left: 0;
    right: 0;
    top: 16px;
    margin: auto;
    border: solid 2px var(--primary);
    border-left: 0;
    border-bottom: 0;
    position: absolute;
    transform: rotate(-45deg)
}

.progress-wrap.active-progress {
    transform: scale(1);
    transform-origin: center center
}

.progress-wrap svg path {
    fill: none
}

.progress-wrap svg.progress-circle path {
    stroke: var(--secondary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms cubic-bezier(.39, .575, .565, 1)
}

.logo figure {
    width: 180px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    border: 4px solid #fff;
    background-color: #fff;
}

.logo figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.logo-row {
    display: flex;
    grid-gap: 20px;
    flex-direction: column;
}

.logo-info h1 {
    font-size: var(--h4);
    margin: 0 0 10px;
}

.logo-info :is(h3, h4, h5, h6, p) {
    margin-bottom: 0;
}

.logo-info {
    text-align: left;
}


::selection {
    background-color: var(--primary);
    color: var(--white);
}

.logo-main {
    padding-top: 0;
    margin-top: -90px;
    position: relative;
    z-index: 1;
}

.about-info :is(h2, h3, h4, h5, h6) {
    font-weight: 700;
}

.videos-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.broucher-download {
    padding: 24px;
    display: flex;
    grid-gap: 20px;
    justify-content: space-between;
    font-weight: 400;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 8px -8px 6px rgba(0, 0, 0, 0.17), inset -8px 8px 12px rgba(90, 90, 90, 0.29);
}

.gst-num {
    box-shadow: inset 8px -8px 6px rgba(0, 0, 0, 0.17), inset -8px 8px 12px rgba(90, 90, 90, 0.29);
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
}

.broucher-download i {
    display: flex;
    align-items: center;
}

.broucher-download:hover {
    background-color: var(--secondary);
    color: #fff;
}

.video-col {
    padding-top: 66.55%;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.23);
}

.video-col iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-data table {
    margin-top: 30px;
}


.bc_prdct_desc {
    text-align: left;
    margin: 20px 0 0;
}

.bc_prdct_desc p {
    text-align: justify;
}

.accordion-data :is(ol, ul) {
    margin-top: 24px;
}

.accordion-data :is(ol, ul) li {
    margin-bottom: 24px;
}

.accordion-data :is(ol, ul) li:last-child {
    margin-bottom: 0;
}

.bc_prdct_desc_details:not(:last-child) {
    margin-bottom: 20px;
}

.social-media {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    background-color: #fff;
    z-index: 2;
    box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.1);
    display: none;
}

.social-media .social-icons {
    justify-content: center;
}


.bc_sharedwnld_left .social-icons {
    margin-top: 0;
}

.bc_sharedwnld_right .social-icons li {
    margin-bottom: 0;
}

.bc_sharedwnld_left .input-group-addon {
    margin-top: 0;
    margin-bottom: 0;
}

.accordion-data .social-icons {
    margin-top: 0;
    margin-bottom: 0;
}

.accordion-data .social-icons li a i {
    width: clamp(4.25rem, 4.6875vw, 5.625rem);
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(1.25rem, 1.5625vw, 1.875rem);
    transition: all 350ms ease-in-out;
    box-shadow: inset 6px -6px 8px rgba(0, 0, 0, 0.37), inset -6px 6px 8px rgba(0, 0, 0, 0.37);
}

.accordion-data .social-icons li a i.fa-linkedin-in {
    background-color: #0077B5;
}

.accordion-data .social-icons li a i.fa-facebook-f {
    background-color: #1877F2;
}

.accordion-data .social-icons li a i.fa-instagram {
    background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-size: 100% 100%;
}

.accordion-data .social-icons li a:hover i.fa-instagram {
    background-size: 150% 100%;
}

.accordion-data .social-icons li a i.fa-youtube {
    background-color: #ff0000;
}

.accordion-data .social-icons li a:hover i.fa-youtube {
    background-color: var(--black);
}

.accordion-data .social-icons li a:hover i {
    background-color: var(--secondary);
}

.accordion-data .social-icons li {
    margin-bottom: 0;
}

.our-services .bc_prdct_top h4 {
    margin-bottom: 0;
}


.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary)
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: inset 8px -8px 6px rgba(0, 0, 0, 0.17), inset -8px 8px 6px rgba(90, 90, 90, 0.29);
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: normal;
    height: 72px;
    line-height: 1.5;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #000;
}

.nice-select:after {
    content: "\f107";
    display: block;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.15s ease-in-out;
    font-family: fontAwesome;
    font-size: 20px;
}

.nice-select.open:after {
    transform: rotate(180deg) translateY(-50%);
    transform-origin: top;
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #000;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    max-height: 300px;
    overflow-y: auto;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #000;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}



.about-img figure {
    position: relative;
    padding-top: 70.49%;
    width: 100%;
    box-shadow: 4px 4px 17px rgba(0, 0, 0, 0.28);
}

.about-img figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-img {
    max-width: 445px;
    min-width: 445px;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
}


.about-info-row {
    display: flex;
    grid-gap: 54px;
    align-items: center;
    margin-bottom: 40px;
}

.about-info p:last-child {
    margin-bottom: 0;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.payment-logo figure {
    max-width: 110px;
    display: flex;
    width: 100%;
    margin-bottom: 24px;
}

.payment-logo figure img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.scanner figure {
    max-width: clamp(7.125rem, 11.125vw, 11.125rem);
}

.scanner figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.scanner {
    width: clamp(8.875rem, 15.41666666666667vw, 18.5rem);
    height: auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 12px -12px 12px rgba(0, 0, 0, 0.15), inset -12px 12px 12px rgba(90, 90, 90, 0.23);
    border-radius: 20px;
    overflow: hidden;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    max-width: 968px;
}

.our-clients-sec {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.14);
    border-radius: 20px;
    overflow: hidden;
    max-width: 268px;
    min-height: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-clients-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 18px;
}

.our-clients-sec figure img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.industries-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 47px;
}

.industries-sec {
    figure {
        max-width: 247px;
        min-height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 35px;
        overflow: hidden;
        box-shadow: inset 14px -14px 10px rgba(0, 0, 0, 0.17), inset -14px 14px 10px rgba(90, 90, 90, 0.29);
        background-color: #FEC3FF;
    }

    &.green {
        figure {
            background-color: #D7FFC3;
        }
    }

    &.pink {
        figure {
            background-color: #FFC3C3;
        }
    }

    &.sky-blue {
        figure {
            background-color: #C3EAFF;
        }
    }

    &.lemon {
        figure {
            background-color: #FFF2C3;
        }
    }

    &.aquamarine {
        figure {
            background-color: #C3FFE2;
        }
    }

    &.cyan {
        figure {
            background-color: #C3FFF8;
        }
    }

    &.blue {
        figure {
            background-color: #CCC3FF;
        }
    }

    h3 {
        margin-top: 24px;
        margin-bottom: 0;
    }
}

.flipbook-img {
    figure {
        padding-top: 53%;
        position: relative;

        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}

/* ========= Scrollbar ========= */
::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
    cursor: pointer;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:horizontal {
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

::-webkit-scrollbar:horizontal {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar:vertical {
    width: 8px;
    height: 50%;
}

/* ========= End Scrollbar ========= */


.broucher-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

