:root {
    --primary-color: #C48B20;
    --secondary-color: #84C442;
    --body-text-color: #100f0f;
    --body-bg-color: #fafafa;
    --primary-btn-color: #C48B20;
    --secondary-btn-color: #84C442;
    --light-section-bg-color: 132, 196, 66;
    --mission-mobile-color: #8a5c06;
    --vision-mobile-color: #51960d;
    --common-border-text-shadow-light-color: 18, 34, 32;
    --footer-bg-color: #0c0c0c;
    --footer-text-color: #f0f0f0;
    --footer-below-border-color: #858585;
    --error-color: #f54545;
}

.section-p-1 {
    padding: clamp(40px, 5vw, 60px) 0;
}

.section-p-2 {
    padding: clamp(60px, 7vw, 100px) 0;
}

.section-p-3 {
    padding: clamp(50px, 6vw, 80px) 0 clamp(30px, 4.5vw, 50px);
}

.section-p-4 {
    padding: clamp(50px, 6vw, 80px) 0;
}


* {
    list-style: none;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box
}

body {
    font-family: "Nunito Sans", sans-serif !important;
    font-size: 13px;
    color: var(--body-text-color);
    line-height: normal;
    font-weight: 400;
    letter-spacing: .5px;
    background: var(--body-bg-color)
}

main {
    overflow: hidden;
}

img {
    max-width: 100%;
    border: none
}

*:hover,
*:focus,
*:active {
    outline: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif !important;
}

a {
    color: var(--secondary-color);
    text-decoration: none
}

a:hover {
    color: var(--primary-color) !important;
    text-decoration: none
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color) !important;
}

/* Button Css */
.button {
    display: inline-flex;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 20px;
    color: var(--body-text-color);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all ease-out 0.2s;
    text-decoration: none
}

.button>span+i {
    margin-left: 10px
}

.button i {
    width: 18px;
    height: 18px;
    position: relative
}

.button i+span {
    margin-left: 10px
}

.button:hover {
    transition: all ease-out 0.2s;
    text-decoration: none
}

.button.primary {
    background: var(--primary-btn-color);
    color: #fff;
    border: 1px solid var(--primary-btn-color);
    box-shadow: none;
    outline: none
}

.button.primary:hover {
    background: #fff;
    border: 1px solid var(--primary-btn-color);
    color: var(--primary-btn-color)
}

.button.primary.Bordered {
    background: none;
    border: 1px solid var(--primary-btn-color);
    color: var(--primary-btn-color)
}

.button.primary.Bordered:hover {
    background: var(--primary-btn-color);
    color: #fff
}

.button.secondary {
    background: var(--secondary-btn-color);
    color: #fff;
    border: 1px solid var(--secondary-btn-color);
    box-shadow: none;
    outline: none
}

.button.secondary:hover {
    background: #fff;
    border: 1px solid var(--secondary-btn-color);
    color: var(--secondary-btn-color)
}

.button.secondary.Bordered {
    background: none;
    border: 1px solid var(--secondary-btn-color);
    color: var(--secondary-btn-color)
}

.button.secondary.Bordered:hover {
    background: var(--secondary-btn-color);
    color: #fff
}

@font-face {
    font-family: "Cambria-Bold";
    src: url("../fonts/Cambria-Bold.html") format("woff2"), url("../fonts/Cambria-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}


/* Header Css */
.logo {
    padding: 7px 0;
}

.logo img {
    width: auto;
    height: 55px;
}

.logo.sidebar img {
    width: auto;
    height: 30px;
}

/* .loginbtn {
    padding: 0 15px;
} */

.loginbtn a {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 9px 25px;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 90px;
    font-size: 18px !important;
    color: #FFFFFF !important;
    transition: all ease 0.2s;

}

header>nav {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1);
}

header ul li {
    padding: 0px 10px;
}

header ul li a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    height: 2px;
    width: 0%;
    border-bottom: 2px solid var(--primary-color);
    transition: all ease 0.2s;
}

header ul li a:hover::after,
header ul li a.active::after {
    width: 100%;
}

header ul li a {
    padding: 0 10px;
    height: 100%;
    transition: none;
    font-size: 18px !important;
    color: var(--body-text-color);
    font-weight: 600 !important;
    text-transform: capitalize;
    position: relative;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}




/* Footer */
footer {
    position: relative;
    z-index: 1;
    font-weight: 500;
    background-color: var(--footer-bg-color);
}

footer .footer-row {
    margin: 30px 0px;
}

footer .footer-row .footerlogo {
    max-width: 200px;
    margin-bottom: 30px;
}

footer .footer-row .footerlogo img {
    width: 100%;
}

footer .footer-row .address {
    padding-left: 0;
}

footer .footer-row .address>li {
    margin-bottom: 30px;
}

footer .footer-row .address>li h4 {
    font-size: 16px !important;
    color: var(--footer-text-color) !important;
    font-weight: 600 !important;
}

footer .footer-row .address>li h4 a {
    color: var(--footer-text-color);
    text-decoration: none;
}

footer .footer-row .address>li p {
    font-size: 15px !important;
    color: var(--footer-text-color) !important;
    font-weight: 400 !important;
    margin-bottom: 0;
}

footer .footer-row .address>li p a {
    color: var(--footer-text-color);
}

footer .footer-row .address>li p a:hover {
    color: var(--secondary-color);
}

footer .footer-row .address>li p span {
    color: var(--footer-text-color);
    margin-right: 10px;
}

footer .footer-row .menulinks {
    padding-top: 36px;
}

footer .footer-row .menulinks h3 {
    font-size: 18px !important;
    color: var(--footer-text-color) !important;
    text-transform: uppercase;
}

footer .footer-row .menulinks ul {
    display: -moz-flex;
    display: flex;
    flex-flow: wrap;
    padding-left: 0;
}

footer .footer-row .menulinks ul li {
    width: 100%;
    padding: 10px 0;
}

footer .footer-row .menulinks ul li a {
    font-size: 16px !important;
    color: var(--footer-text-color) !important;
    position: relative;
    display: inline-block;
    padding-left: 20px;
    transition: all ease 0.2s;
}

footer .footer-row .menulinks ul li a::before {
    content: "";
    width: 5px;
    height: 9px;
    position: absolute;
    top: 4px;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='5px' height='9px'%3E%3Cpath fill-rule='evenodd' fill='rgb(180, 180, 180)' d='M4.820,4.943 L1.046,8.813 C0.806,9.059 0.417,9.059 0.177,8.813 C-0.063,8.567 -0.063,8.168 0.177,7.922 L3.516,4.498 L0.177,1.074 C-0.063,0.828 -0.063,0.429 0.177,0.183 C0.417,-0.063 0.806,-0.063 1.046,0.183 L4.820,4.052 C4.940,4.175 5.000,4.336 5.000,4.498 C5.000,4.659 4.940,4.820 4.820,4.943 Z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: cover;
    transition: all ease 0.2s;
}

footer .footer-row .menulinks ul li a:hover {
    color: var(--primary-color) !important;
    padding-left: 25px;
    text-decoration: none;
    transition: all ease 0.2s;
}

footer .footer-row .menulinks ul li a:hover::before {
    left: 5px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='5px' height='9px'%3E%3Cpath fill-rule='evenodd' fill='rgb(196, 139, 32)' d='M4.820,4.943 L1.046,8.813 C0.806,9.059 0.417,9.059 0.177,8.813 C-0.063,8.567 -0.063,8.168 0.177,7.922 L3.516,4.498 L0.177,1.074 C-0.063,0.828 -0.063,0.429 0.177,0.183 C0.417,-0.063 0.806,-0.063 1.046,0.183 L4.820,4.052 C4.940,4.175 5.000,4.336 5.000,4.498 C5.000,4.659 4.940,4.820 4.820,4.943 Z'/%3E%3C/svg%3E") no-repeat center center;
    transition: all ease 0.2s;
}

footer .footer-row .cnntwthus {
    padding-top: 36px;
}

footer .footer-row .cnntwthus h3 {
    font-size: 18px !important;
    color: var(--footer-text-color) !important;
    text-transform: uppercase;
}

footer .footer-row .cnntwthus .footer-social {
    margin-bottom: 30px;
}

footer .footer-row .cnntwthus .footer-social a {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 10px;
    transition: all ease 0.2s;
}

footer .footer-row .cnntwthus .footer-social a svg {
    width: 16px;
    height: 16px;
}

footer .footer-row .cnntwthus .footer-social a svg path {
    fill: #FFFFFF;
}

footer .footer-row .cnntwthus .footer-social a:hover {
    background: var(--primary-color) !important;
    transition: all ease 0.2s;
}

footer .footer-row .cnntwthus .Store-ic a {
    max-width: 200px;
    display: inline-block;
}

footer .footer-row .cnntwthus .Store-ic a img {
    margin-top: 5px;
    transition: all ease 0.2s;
    max-width: 100%;
    height: 56px;
}

footer .footer-row .cnntwthus .Store-ic a img:hover {
    margin-top: 0px;
    margin-bottom: 5px;
    transition: all ease 0.2s;
}

footer .below-footer {
    padding: 25px 20px;
    border-top: 1px solid var(--footer-below-border-color);
}

footer .below-footer p {
    font-size: 14px !important;
    color: var(--footer-text-color) !important;
    text-align: center;
    margin-bottom: 0;
}



#backToTop {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px;
    border-radius: 8px;
    position: fixed;
    right: 15px;
    bottom: -60px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

#backToTop.show {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}

#backToTop svg path {
    fill: #FFFFFF;
}

#backToTop:hover {
    background-color: #FFFFFF;
    transform: translateY(-7px);
}

#backToTop:hover svg path {
    fill: var(--primary-color);
}



section.section-sign-up {
    padding: 0 0 80px
}

section.section-sign-up .inner-signupsection {
    background-color: var(--primary-color);
    padding: 60px 40px 20px;
    border-radius: 16px;
    box-shadow: 0 1rem 3rem rgba(var(--common-border-text-shadow-light-color), .175) !important;
    position: relative;
    z-index: 10
}

section.section-sign-up .inner-signupsection::after {
    content: "";
    background: url(../img/bg-shape.svg);
    opacity: .8;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1
}

section.section-sign-up .footer-top-content .ourservie span i {
    background-color: #fff
}

section.section-sign-up .footer-top-content .ourservie p {
    color: #fff
}

section.section-sign-up .footer-top-content .title h3 {
    color: #fff
}

section.section-sign-up .footer-top-content .content p {
    color: rgba(255, 255, 255, .7)
}

section.section-sign-up .signup-form ul {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    border: 0;
    padding: 0
}

section.section-sign-up .signup-form ul .or {
    min-width: auto;
    width: auto
}

section.section-sign-up .signup-form ul .or h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 0
}

section.section-sign-up .signup-form ul li {
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 262px
}

section.section-sign-up .signup-form ul li input[type=radio] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer
}

section.section-sign-up .signup-form ul li input[type=radio]:checked+.signup-user-type {
    background-color: #fff;
    color: var(--primary-color)
}

section.section-sign-up .signup-form ul li input[type=radio]:checked+.signup-user-type .icon svg {
    fill: var(--primary-color)
}

section.section-sign-up .signup-form ul li .signup-user-type {
    cursor: pointer;
    border: 1px solid #fff;
    padding: 10px 30px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 18px;
    color: #fff
}

section.section-sign-up .signup-form ul li .signup-user-type .icon svg {
    width: 36px;
    height: 36px;
    fill: #fff
}

section.section-sign-up .signup-form ul li .signup-user-type span {
    margin-left: 15px
}

section.section-sign-up .signup-form .signup-fields .row {
    margin-left: -15px;
    margin-right: -15px
}

section.section-sign-up .signup-form .signup-fields input:-webkit-autofill,
section.section-sign-up .signup-form .signup-fields input:-webkit-autofill:hover,
section.section-sign-up .signup-form .signup-fields input:-webkit-autofill:focus,
section.section-sign-up .signup-form .signup-fields textarea:-webkit-autofill,
section.section-sign-up .signup-form .signup-fields textarea:-webkit-autofill:hover,
section.section-sign-up .signup-form .signup-fields textarea:-webkit-autofill:focus,
section.section-sign-up .signup-form .signup-fields select:-webkit-autofill,
section.section-sign-up .signup-form .signup-fields select:-webkit-autofill:hover,
section.section-sign-up .signup-form .signup-fields select:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0) inset !important;
    transition: background-color 5000s ease-in-out 0s
}

section.section-sign-up .signup-form .signup-fields .form-group {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    position: relative
}

section.section-sign-up .signup-form .signup-fields .form-group .label {
    font-size: 16px;
    color: #fff;
    padding: 10px 15px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0px;
    transition: .2s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}

section.section-sign-up .signup-form .signup-fields ::-webkit-input-placeholder {
    color: #fff
}

section.section-sign-up .signup-form .signup-fields ::-moz-placeholder {
    color: #fff
}

section.section-sign-up .signup-form .signup-fields :-ms-input-placeholder {
    color: #fff
}

section.section-sign-up .signup-form .signup-fields :-moz-placeholder {
    color: #fff
}

section.section-sign-up .signup-form .signup-fields .form-control {
    width: 100%;
    height: 50px;
    padding: 8px 10px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    position: relative;
    border-radius: 12px;
    outline: none;
    box-shadow: none
}

section.section-sign-up .signup-form .signup-fields .form-control:focus {
    border-color: var(--secondary-color)
}

section.section-sign-up .signup-form .signup-fields .form-control.error {
    border-color: var(--error-color)
}

section.section-sign-up .signup-form .signup-fields .form-control.error+.error {
    font-size: 12px;
    font-weight: 500;
    padding-top: 2px;
    color: var(--error-color);
    position: absolute;
    margin: 0
}

section.section-sign-up .signup-form .signup-fields select option {
    color: var(--body-text-color);
    padding: 6px 15px
}

section.section-sign-up .signup-form .signup-fields input:focus+.label,
section.section-sign-up .signup-form .signup-fields input:not(:placeholder-shown)+.label,
section.section-sign-up .signup-form .signup-fields select:focus+.label,
section.section-sign-up .signup-form .signup-fields select:not(:placeholder-shown)+.label {
    font-size: 13px;
    opacity: 1;
    transform: translateY(-100%) translateX(0)
}

section.section-sign-up .signup-form .signup-fields input:focus+.label,
section.section-sign-up .signup-form .signup-fields input:not(:-ms-input-placeholder)+.label {
    font-size: 13px;
    opacity: 1;
    transform: translateY(-100%) translateX(0)
}

section.section-sign-up .signup-form .signup-fields .agreeRow {
    text-align: center;
    margin-top: 40px
}

section.section-sign-up .signup-form .signup-fields .agreeRow input[type=checkbox] {
    opacity: 0;
    filter: opacity(0)
}

section.section-sign-up .signup-form .signup-fields .agreeRow input[type=checkbox]:checked~label.customCheckbox::before {
    background-color: #fff
}

section.section-sign-up .signup-form .signup-fields .agreeRow input[type=checkbox]:checked~label.customCheckbox::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 9px;
    width: 5px;
    height: 12px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

section.section-sign-up .signup-form .signup-fields .agreeRow input[type=checkbox].error {
    border-color: var(--error-color)
}

section.section-sign-up .signup-form .signup-fields .agreeRow input[type=checkbox].error+.error {
    font-size: 12px;
    font-weight: 500;
    padding-top: 30px;
    color: var(--error-color);
    position: absolute;
    margin: 0;
    text-align: center;
    width: 100%;
    left: 0
}

section.section-sign-up .signup-form .signup-fields .agreeRow .customCheckbox {
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 300
}

section.section-sign-up .signup-form .signup-fields .agreeRow .customCheckbox::before {
    content: "";
    -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 10px;
    display: inline-block;
    position: relative;
    top: -1px;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px
}

section.section-sign-up .signup-form .signup-fields .agreeRow .customCheckbox a {
    color: var(--secondary-color)
}

section.section-sign-up .signup-form .signup-fields .button:hover {
    border-color: #fff
}

section .footer-top-content .ourservie {
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

section .footer-top-content .ourservie span {
    padding-top: 2px
}

section .footer-top-content .ourservie span i {
    background-color: var(--primary-color);
    height: 2px;

    display: flex;
    margin-bottom: 3px
}

section .footer-top-content .ourservie span i:first-child {
    width: 20px
}

section .footer-top-content .ourservie span i:last-child {
    width: 40px
}

section .footer-top-content .ourservie span.leftLine {
    text-align: right
}

section .footer-top-content .ourservie span.leftLine i {
    margin-left: auto
}

section .footer-top-content .ourservie span.rightLine {
    text-align: left
}

section .footer-top-content .ourservie p {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    margin: 0;
    padding: 0 20px
}

section .title {
    margin-bottom: 20px
}

section .title h3 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 52px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    margin: 0
}

section .content {
    margin-bottom: 20px
}

section .content p {
    font-size: 18px;
    color: rgba(var(--common-border-text-shadow-light-color), .7);
    text-align: center;
    margin: 0
}

section .viewAll {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center
}

section .viewAll:after {
    content: "";
    width: 12px;
    height: 12px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--secondary-color) var(--secondary-color) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    transform: rotate(45deg);
    display: inline-block
}

section .playStore {
    display: flex
}

section .playStore img {
    max-width: 180px;
    max-width: 100%;
    height: 52px
}



/* Login Modal */

#signin-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    transition: all ease 0.2s
}

#signin-container .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .6)
}

.signin-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto
}

.signin-modal .modal-wrapper {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
    max-width: 730px;
    margin: 1.75rem auto;
    min-height: calc(100% - 3.5rem);
    transform: translate(0, 0)
}

.signin-modal .modal-wrapper .modal-box {
    display: flex;
    flex-flow: nowrap;
    position: relative;
    width: 100%;
    background-clip: padding-box;
    border: 7px solid rgba(255, 255, 255, .2);
    outline: 0;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, .4);
    border-radius: 20px;
}

.signin-modal .modal-wrapper .modal-box .modal-box-body {
    width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    border: 5px solid rgba(255, 255, 255, 0);
    display: flex;
    flex-flow: nowrap;
    border-radius: 20px;
    overflow: hidden;
}


.signin-modal .modal-wrapper .modal-box .modal-box-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--primary-color);
    z-index: 99
}

.signin-modal .modal-wrapper .modal-box .modal-box-close-btn svg {
    width: 9px;
    height: 9px
}

.signin-modal .modal-wrapper .modal-box .modal-box-close-btn svg path {
    fill: #fff
}

.signin-modal .modal-wrapper .modal-box .modal-side-div {
    position: relative;
    z-index: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px;
    text-align: left
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .authentication-logo {
    width: 100%;
    margin-top: 20px
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .authentication-logo img {
    height: 50px;
}

.signin-modal .modal-wrapper .modal-box .modal-side-div h3 {
    font-size: 24px;
    color: var(--body-text-color);
    margin: 10px 0 20px;
    width: 100%
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont {
    width: 100%
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont input:-webkit-autofill,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont input:-webkit-autofill:hover,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont input:-webkit-autofill:focus,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont textarea:-webkit-autofill,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont textarea:-webkit-autofill:hover,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont textarea:-webkit-autofill:focus,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont select:-webkit-autofill,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont select:-webkit-autofill:hover,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--body-text-color);
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    transition: background-color 5000s ease-in-out 0s
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group {
    position: relative
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    margin: 0
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group span svg {
    width: 18px;
    height: 18px
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group span svg path {
    fill: var(--body-text-color)
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group .form-control {
    height: 52px;
    border-radius: 50px;
    padding-left: 50px;
    font-size: 18px;
    color: var(--body-text-color)
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group .form-control:focus+label svg path,
.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group .form-control:focus span svg path {
    fill: var(--primary-color)
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group .form-control.error {
    border-color: var(--error-color)
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-group .form-control.error+.error {
    font-size: 12px;
    font-weight: 500;
    padding-top: 2px;
    color: var(--error-color);
    position: absolute;
    margin: 0
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-btns .forgotlink {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 20px
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .sign-form-cont .form-btns .button {
    width: 100%;
    padding: 12px 15px;
    white-space: nowrap
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .new-user {
    margin-top: 30px;
    width: 100%;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--body-text-color);
    font-weight: 400
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .new-user a {
    color: var(--primary-color);
    text-decoration: underline
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .new-user a:hover {
    text-decoration: none
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .forget-pass-cont .sign-form-cont {
    height: 224px
}

.signin-modal .modal-wrapper .modal-box .modal-side-div .forget-pass-cont .new-user {
    text-align: center
}

.signin-modal .modal-wrapper .modal-box .modal-right-section {
    position: relative;
    z-index: 1;
    width: 50%;
    height: 100%;
    background: url(../img/image-3.webp) no-repeat;
    /* background: url(../img/signIn-img.png) no-repeat; */
    background-position: left;
    background-size: cover;
    overflow: hidden
}

.signin-modal .modal-wrapper .modal-box .modal-right-section:before {
    content: "";
    width: 100px;
    height: 140%;
    background-color: #fff;
    position: absolute;
    top: -10%;
    left: -70px;
    transform: rotate(6deg)
}

.field-inner-icon {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer
}

.field-inner-icon svg {
    width: 20px;
    height: 20px;
    opacity: .6
}

.field-inner-icon svg path {
    fill: #000 !important
}

.field-inner-icon:hover svg {
    opacity: 1
}

.field-inner-icon:hover svg path {
    fill: var(--secondary-color) !important
}



section.hero_banner {
    margin-top: 74px
}

section.hero_banner .owl-carousel {
    position: relative
}

section.hero_banner .owl-carousel .owl-item {
    width: 100%;
    height: 600px;
    background-color: #000
}

section.hero_banner .owl-carousel .owl-item .item {
    height: 100%;
    background-size: cover;
    background-position: 35%
}

section.hero_banner .owl-carousel .owl-item .item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: 1
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper {
    position: relative;
    z-index: 10
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content {
    width: 50%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .title {
    transform: translateY(55px);
    transition: all .5s;
    opacity: 0
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .title h2 {
    font-size: 54px;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
    text-align: right;
    margin: 0
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .title h2 span {
    color: var(--secondary-color)
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .title img {
    max-width: 280px
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .download-app {
    margin: 20px 0;
    text-align: right;
    transform: translateY(55px);
    transition: all .5s;
    opacity: 0
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .download-app h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4)
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .download-app a {
    text-decoration: none
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .download-app a img {
    width: 200px
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .tagline {
    text-align: right;
    margin-bottom: 40px;
    transform: translateY(55px);
    transition: all .5s;
    opacity: 0
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .tagline h3 {
    font-family: "Cookie", cursive;
    font-size: 36px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
    margin: 0
}

section.hero_banner .owl-carousel .owl-item .item .slider-wraper .slder-content .tagline h3 span {
    color: var(--secondary-color)
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>* {
    opacity: 1;
    transform: none
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(1) {
    transition-delay: 0s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(2) {
    transition-delay: .2s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(3) {
    transition-delay: .4s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(4) {
    transition-delay: .6s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(5) {
    transition-delay: .8s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(6) {
    transition-delay: 1s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(7) {
    transition-delay: 1.2s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(8) {
    transition-delay: 1.4s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(9) {
    transition-delay: 1.6s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(10) {
    transition-delay: 1.8s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(11) {
    transition-delay: 2s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(12) {
    transition-delay: 2.2s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(13) {
    transition-delay: 2.4s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(14) {
    transition-delay: 2.6s
}

section.hero_banner .owl-carousel .owl-item.active .item .slider-wraper .slder-content>*:nth-child(15) {
    transition-delay: 2.8s
}

section.hero_banner .owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    text-align: center;
    width: 100%
}

section.hero_banner .owl-carousel .owl-dots button {
    width: 16px;
    height: 6px;
    background-color: #fff;
    border-radius: 90px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
    border: 0;
    margin: 0 5px;
    cursor: pointer;
    outline: none;
    transition: all ease-out .5s
}

section.hero_banner .owl-carousel .owl-dots button.active {
    width: 47px;
    background-color: var(--secondary-color)
}

section.hero_banner .owl-carousel .owl-nav {
    position: absolute;
    bottom: 20px;
    left: 10px;
    z-index: 99
}

section.hero_banner .owl-carousel .owl-nav.disabled {
    display: block
}

section.hero_banner .owl-carousel .owl-nav button {
    font-size: 50px;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid #fff;
    padding: 10px !important;
    outline: none;
    margin: 0 10px;
    transition: all ease .2s
}

section.hero_banner .owl-carousel .owl-nav button span {
    display: block;
    line-height: 21px;
    height: 100%
}

section.hero_banner .owl-carousel .owl-nav button:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-color);
    transition: all ease .2s
}

section.hero_banner .below-banner {
    background-color: var(--primary-color)
}



section.hero_banner .below-banner .content-wrpr .content {
    padding: 0 15px;
    text-align: right;
    flex: 3
}

section.hero_banner .below-banner .content-wrpr .content h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 200;
    margin: 0
}

section.hero_banner .below-banner .content-wrpr .content p {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    margin: 0
}

section.hero_banner .below-banner .content-wrpr .content p span {
    color: var(--secondary-color)
}

section.hero_banner .below-banner .content-wrpr .redirect-btnn {
    padding: 0 15px;
    flex: 1
}

section.hero_banner .below-banner .content-wrpr .redirect-btnn a {
    padding: 10px 20px;
    font-size: 24px;
    color: #fff;
    font-weight: 200;
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    transition: all .5s
}

section.hero_banner .below-banner .content-wrpr .redirect-btnn a:hover {
    border-color: var(--primary-color);
    background-color: #fff;
    color: var(--primary-color)
}



section.commitment .commitment-container .item {
    flex-basis: 25%;
    max-width: 25%;
    padding: 10px 10px;
    margin-bottom: 15px
}

section.commitment .commitment-container .item .commitment-items {
    text-align: center
}

section.commitment .commitment-container .item .commitment-items .icon {
    width: 75px;
    height: 75px;
    margin-bottom: 15px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.commitment .commitment-container .item .commitment-items h3 {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 10px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.commitment .commitment-container .item .commitment-items p {
    font-size: 17px;
    color: rgba(var(--common-border-text-shadow-light-color), .7);
    font-weight: 500;
    margin: 10px 0;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.commitment .commitment-container .item .commitment-items:hover .icon {
    transform: translateY(-10px)
}

section.commitment .commitment-container .item .commitment-items:hover h3 {
    transform: translateY(-7px)
}

section.commitment .commitment-container .item .commitment-items:hover p {
    transform: translateY(-4px)
}



section.services-section {
    background-color: rgba(var(--light-section-bg-color), .2);
}


section.services-section .service-slider {
    margin-top: 65px
}

section.services-section .service-slider .owl-carousel .owl-stage {
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    height: 100%
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item {
    height: 100%;
    padding: 20px 0
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner {
    text-decoration: none;
    text-align: left;
    padding: 25px;
    margin: 0 20px;
    display: block;
    height: 100%;
    border-radius: 16px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-color: #fff !important;
    border: 2px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .01)
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .image-box {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100px;
    width: 100px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1) 0s
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .image-box img {
    object-fit: contain;
    height: 100%
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .image-box svg {
    width: 100px;
    height: 100px
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .image-box svg .path2 {
    fill: var(--primary-color);
    transition: all .4s linear
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .image-box svg .path1 {
    fill: var(--secondary-color)
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner h4 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 16px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1) 0s
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner p {
    font-size: 16px;
    color: rgba(var(--common-border-text-shadow-light-color), .7);
    line-height: 28px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
    margin: 0
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .readMore {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-top: 16px;
    transition: all .3s ease-in-out
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .readMore:after,
section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .readMore:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 3px;
    background-color: rgba(0, 0, 0, 0);
    transition: all .3s ease-in-out;
    transform: translate(0, 0) translateZ(0)
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .readMore:before {
    width: 100%;
    border-bottom: 2px solid rgba(var(--light-section-bg-color), .3);
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner .readMore:after {
    width: 0;
    border-bottom: 2px solid var(--secondary-color);
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner:hover .image-box {
    transform: translateY(-10px)
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner:hover h4 {
    transform: translateY(-7px)
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner:hover p {
    transform: translateY(-4px)
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner:hover .readMore {
    opacity: 1;
    transform: translateY(-3px)
}

section.services-section .service-slider .owl-carousel .owl-stage .owl-item .item .services-inner:hover .readMore:after {
    width: 100%
}



section.winning-awards-section .mobile-app {
    width: 100%;
    padding: 0 20px;
    text-align: center
}

section.winning-awards-section .mobile-app img {
    max-width: 360px;
    width: 100%;
    object-fit: contain;
    box-shadow: 0 1rem 3rem rgba(var(--common-border-text-shadow-light-color), .25) !important;
    border-radius: 16px;
    border: 2px solid var(--primary-color)
}

section.winning-awards-section .add-onservices .onservices-end ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px
}

section.winning-awards-section .add-onservices .onservices-end ul li {
    padding: 0;
    margin-bottom: 10px;
    cursor: default;
    width: 46%
}

section.winning-awards-section .add-onservices .onservices-end ul li .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    padding: 12px;
    background-color: #fff !important;
    box-shadow: 0px 0px 15px rgba(var(--common-border-text-shadow-light-color), .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px
}

section.winning-awards-section .add-onservices .onservices-end ul li .icon svg {
    width: 100%;
    height: 100%
}

section.winning-awards-section .add-onservices .onservices-end ul li .text p {
    font-size: 16px;
    color: var(--body-text-color);
    font-weight: 500;
    margin: 0
}

section .content-wrapper .ourservie {
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

section .content-wrapper .ourservie span {
    padding-top: 2px
}

section .content-wrapper .ourservie span i {
    background-color: var(--primary-color);
    height: 2px;
    display: flex;
    margin-bottom: 3px
}

section .content-wrapper .ourservie span i:first-child {
    width: 20px
}

section .content-wrapper .ourservie span i:last-child {
    width: 40px
}

section .content-wrapper .ourservie span.leftLine {
    text-align: right
}

section .content-wrapper .ourservie span.leftLine i {
    margin-left: auto
}

section .content-wrapper .ourservie span.rightLine {
    text-align: left
}

section .content-wrapper .ourservie p {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    margin: 0;
    padding: 0 20px
}


.moneypay-section {
    background-color: rgba(var(--light-section-bg-color), .1)
}

.moneypay-section .section-heading {
    margin-bottom: 100px
}

.moneypay-section .section-heading h3 {
    font-size: 52px;
    color: var(--primary-color);
    text-align: center;
    margin: 0
}

.moneypay-section .moneypay-row .circle-Box {
    width: 50%;
    text-align: center
}

.moneypay-section .moneypay-row .circle-Box .title {
    margin-top: 60px;
    background-color: var(--primary-color);
    padding: 10px 15px;
    position: relative;
    display: inline-block
}

.moneypay-section .moneypay-row .circle-Box .title .left:before {
    content: "";
    border-width: 22px;
    border-style: solid;
    border-color: var(--primary-color) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: -22px
}

.moneypay-section .moneypay-row .circle-Box .title .left:after {
    content: "";
    border-width: 22px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--primary-color) rgba(0, 0, 0, 0);
    position: absolute;
    bottom: 0;
    left: -22px
}

.moneypay-section .moneypay-row .circle-Box .title .right:before {
    content: "";
    border-width: 22px;
    border-style: solid;
    border-color: var(--primary-color) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    right: -22px
}

.moneypay-section .moneypay-row .circle-Box .title .right:after {
    content: "";
    border-width: 22px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--primary-color) rgba(0, 0, 0, 0);
    position: absolute;
    right: -22px;
    bottom: 0
}

.moneypay-section .moneypay-row .circle-Box .title h3 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0
}

.moneypay-section .moneypay-row .circle-wrapper {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(var(--common-border-text-shadow-light-color), .2);
    margin: 0 auto;
    border-radius: 100%
}

.moneypay-section .moneypay-row .circle-wrapper .circle-tes-sub-wrap1 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    z-index: 1;
    border: 1px solid rgba(var(--common-border-text-shadow-light-color), .2)
}

.moneypay-section .moneypay-row .circle-wrapper .circle-tes-sub-wrap2 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    z-index: 1;
    border: 1px solid rgba(var(--common-border-text-shadow-light-color), .2)
}

.moneypay-section .moneypay-row .circle-wrapper .circle-tes-sub-wrap3 {
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--common-border-text-shadow-light-color), .2);
    border-radius: 100%;
    padding: 15px
}

.moneypay-section .moneypay-row .circle-wrapper .circle-tes-sub-wrap3 svg {
    width: 70px;
    height: 70px
}

.moneypay-section .moneypay-row .circle-wrapper .circle-tes-sub-wrap3 svg .path1 {
    fill: var(--primary-color)
}

.moneypay-section .moneypay-row .circle-wrapper .circle-tes-sub-wrap3 svg .path2 {
    fill: var(--secondary-color)
}

.moneypay-section .moneypay-row .circle-wrapper .circle-tes-sub-wrap3 h3 {
    margin: 0;
    margin-top: 6px;
    line-height: 16px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600
}

.moneypay-section .moneypay-row .cir-testimonial {
    background-color: #fff;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    -webkit-box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .15);
    box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .15);
    border: 1px solid #ebebeb;
    padding: 8px;
    cursor: pointer;
    z-index: 100;
    -webkit-animation: tesZoomInOut 2s linear 0s infinite;
    animation: tesZoomInOut 2s linear 0s infinite
}

.moneypay-section .moneypay-row .cir-testimonial>img {
    max-width: 100%;
    border-radius: 50%
}

.moneypay-section .moneypay-row .cir-testimonial>svg {
    width: 100%;
    height: 100%
}

.moneypay-section .moneypay-row .cir-testimonial>svg .path1 {
    fill: var(--primary-color)
}

.moneypay-section .moneypay-row .cir-testimonial>svg .path2 {
    fill: var(--secondary-color)
}

.moneypay-section .moneypay-row .cir-testimonial.tes1 {
    top: -14px;
    left: 60px
}

.moneypay-section .moneypay-row .cir-testimonial.tes2 {
    top: 91px;
    right: 16px
}

.moneypay-section .moneypay-row .cir-testimonial.tes3 {
    top: 80px;
    left: 62px
}

.moneypay-section .moneypay-row .cir-testimonial.tes4 {
    bottom: 60px;
    right: 82px
}

.moneypay-section .moneypay-row .cir-testimonial.tes5 {
    bottom: -20px;
    right: 115px
}

.moneypay-section .moneypay-row .cir-testimonial.tes6 {
    bottom: 70px;
    right: 204px
}

.moneypay-section .moneypay-row .cir-testimonial.tes7 {
    top: 194px;
    right: -2px
}

.moneypay-section .moneypay-row .cir-testimonial.tes8 {
    top: 70px;
    left: -4px
}



section.moneypay-partners .moneypay-partners-list {
    margin: 40px 0 0
}

section.moneypay-partners .moneypay-partners-list .item {
    margin: 0px 10px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, .1);
    border-radius: 12px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.moneypay-partners .moneypay-partners-list .item img {
    object-fit: contain;
    vertical-align: middle
}

section.moneypay-partners .moneypay-partners-list .item:hover {
    transform: translateY(-10px)
}


section.hero_banner .page-banner {
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2
}

section.hero_banner .page-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(var(--common-border-text-shadow-light-color), .6);
    z-index: -1
}

section.hero_banner .page-banner .title {
    text-align: center
}

section.hero_banner .page-banner .title h2 {
    font-size: 64px;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .3);
    margin: 0
}

section.hero_banner .page-banner .title p {
    font-size: 20px;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .3);
    margin: 0
}

section.hero_banner .page-banner .title p span {
    color: var(--secondary-color)
}



section.hero_banner .contact-page-banner {
    height: 500px
}

section.hero_banner .contact-page-banner .contact-heading {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: Flex-start;
    height: 100%
}

section.hero_banner .contact-page-banner .contact-heading .heading {
    margin-bottom: 0 !important;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-Start;
    justify-content: center;
    height: 100%
}

section.hero_banner .contact-page-banner .contact-heading .heading h2 {
    font-size: 64px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
    text-align: left;
    margin: 0
}

section.hero_banner .contact-page-banner .contact-heading .heading p {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    margin: 0
}

section.hero_banner .contact-page-banner .contact-heading .socialMedia {
    height: 145px;
    position: absolute;
    left: 0
}

section.hero_banner .contact-page-banner .contact-heading .socialMedia a {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 8px;
    border: 1px solid #fff;
    margin-right: 10px;
    transition: all ease 0.2s
}

section.hero_banner .contact-page-banner .contact-heading .socialMedia a svg {
    width: 16px;
    height: 16px
}

section.hero_banner .contact-page-banner .contact-heading .socialMedia a svg path {
    fill: #fff
}

section.hero_banner .contact-page-banner .contact-heading .socialMedia a:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color) !important;
    transition: all ease 0.2s
}

section.hero_banner .contact-page-banner .contact-heading .socialMedia a:hover svg path {
    fill: #fff
}



section.hero_banner .contact-page-banner .contact-heading {
    display: flex;
    align-items: flex-end;
    justify-content: Flex-start;
    height: 100%
}

section.hero_banner .contact-page-banner .contact-heading .heading {
    margin-bottom: 20px
}

section.hero_banner .contact-page-banner .contact-heading .heading h2 {
    font-size: 64px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
    text-align: left;
    margin: 0
}

section.hero_banner .contact-page-banner .contact-heading .heading p {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    margin: 0
}

section.hero_banner .contact-page-banner .contact-heading .heading .socialMedia {
    margin-top: 20px;
    margin-bottom: 20px
}

section.hero_banner .contact-page-banner .contact-heading .heading .socialMedia a {
    width: 40px;
    height: 40px;
    background-color: #f6f6f6;
    border-radius: 50%;
    margin-right: 10px;
    transition: all ease 0.2s
}

section.hero_banner .contact-page-banner .contact-heading .heading .socialMedia a svg {
    width: 16px;
    height: 16px
}

section.hero_banner .contact-page-banner .contact-heading .heading .socialMedia a svg path {
    fill: #fff
}

section.hero_banner .contact-page-banner .contact-heading .heading .socialMedia a:hover {
    background: var(--primary-color) !important;
    transition: all ease 0.2s
}


section .service-information {
    margin-top: 50px
}

section .service-information .service-count:nth-child(odd) {
    background: rgba(var(--light-section-bg-color), .2)
}

section .service-information .service-count:nth-child(odd) .service-list .content-wrpr h3 {
    text-align: left
}

section .service-information .service-count:nth-child(even) .service-list {
    flex-direction: row-reverse
}

section .service-information .service-count:nth-child(even) .service-list .content-wrpr,
section .service-information .service-count:nth-child(even) .service-list .content-wrpr h3 {
    text-align: right
}

section .service-information .service-count:nth-child(even) .service-list .content-wrpr .title:after {
    right: 0;
    left: auto
}

section .service-information .service-count .service-list .images {
    width: 37.5%;
    padding: 0 50px;
    text-align: center
}

section .service-information .service-count .service-list .images img {
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

section .service-information .service-count .service-list .content-wrpr {
    width: 62.5%
}

section .service-information .service-count .service-list .content-wrpr .title {
    padding-bottom: 32px;
    margin-bottom: 50px;
    position: relative
}

section .service-information .service-count .service-list .content-wrpr .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color)
}

section .service-information .service-count .service-list .content-wrpr .title h3 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 0px
}

section .service-information .service-count .service-list .content-wrpr .title p {
    font-size: 16px;
    color: var(--body-text-color);
    margin: 0
}

section .service-information .service-count .service-list .content-wrpr .text p {
    font-size: 17px;
    color: var(--body-text-color);
    line-height: 30px;
    margin: 0
}

section .service-information .service-count:hover .service-list .images img {
    transform: translateY(-10px)
}




section.aboutcont {
    background-color: #fff
}

section.aboutcont .continner {
    margin: 40px 0 0;
    padding: 0 120px
}

section.aboutcont .continner p {
    font-size: 17px;
    color: var(--body-text-color);
    margin-bottom: 30px;
    text-align: center
}

section.aboutcont .continner p:last-child {
    margin-bottom: 0
}

section.aboutcont .continner p span {
    color: var(--primary-color)
}

section.aboutcont .continner p i {
    font-weight: 600
}


section .slheading h3 {
    font-size: 52px;
    color: var(--primary-color);
    text-align: center;
    margin: 0
}


section.visionmission {
    position: relative
}

section.visionmission:before,
section.visionmission:after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    border-bottom: 2px solid #fff;
    z-index: 1
}

section.visionmission:before {
    left: 0;
    background-color: var(--primary-color);
    border-right: 1px solid #fff
}

section.visionmission:after {
    right: 0;
    background-color: var(--secondary-color);
    border-left: 1px solid #fff
}

section.visionmission .visionmission-wrpr {
    display: flex;
    justify-content: center;
    align-items: Flex-start;
    position: relative;
    z-index: 2
}

section.visionmission .visionmission-wrpr .vm-article {
    width: 50%;
    padding: 80px;
    text-align: center;
    position: relative
}

section.visionmission .visionmission-wrpr .vm-article .icon {
    margin-bottom: 20px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.visionmission .visionmission-wrpr .vm-article .icon svg {
    width: 85px;
    height: 85px
}

section.visionmission .visionmission-wrpr .vm-article .text h3 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 20px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.visionmission .visionmission-wrpr .vm-article .text p {
    font-size: 17px;
    color: #fff;
    margin: 0;
    margin-bottom: 10px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.visionmission .visionmission-wrpr .vm-article .text ul {
    flex-wrap: wrap;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.visionmission .visionmission-wrpr .vm-article .text ul li {
    display: inline-block;
    padding: 0 8px
}

section.visionmission .visionmission-wrpr .vm-article .text ul li p {
    font-size: 17px;
    color: #fff;
    margin: 0px;
    position: relative;
    padding-left: 8px
}

section.visionmission .visionmission-wrpr .vm-article .text ul li p:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -5px;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #fff
}

section.visionmission .visionmission-wrpr .vm-article:hover .icon {
    transform: translateY(-15px)
}

section.visionmission .visionmission-wrpr .vm-article:hover .text h3 {
    transform: translateY(-10px)
}

section.visionmission .visionmission-wrpr .vm-article:hover .text p {
    transform: translateY(-5px)
}

section.visionmission .visionmission-wrpr .vm-article:hover .text ul {
    transform: translateY(-3px)
}


section.company-progress .company-progress-cont {
    margin-top: 60px;
    position: relative
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt {
    padding: 30px 15px
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .title {
    padding: 0 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .title .jrny-icon {
    width: 100px;
    height: 100px
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .title .jrny-icon svg {
    width: 100%;
    height: 100%
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .title .jrny-date {
    margin-left: 30px
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .title .jrny-date p {
    font-size: 26px;
    color: var(--body-text-color);
    line-height: 26px;
    margin: 0;
    margin-bottom: 0px
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .title .jrny-date h3 {
    font-family: "Cambria-Bold";
    font-size: 90px;
    color: var(--body-text-color);
    line-height: 90px;
    margin: 0
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .title .jrny-date h3 span {
    color: var(--secondary-color)
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .content {
    display: flex;
    flex-direction: Column;
    justify-content: center;
    width: 70%;
    padding-left: 15px;
    text-align: center;
    margin-top: 15px
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .content h3 {
    font-family: "Cambria-Bold";
    font-size: 32px;
    color: var(--body-text-color);
    margin-top: 0px;
    margin-bottom: 15px
}

section.company-progress .company-progress-cont .company-progress-content .swiper-slide .slider-contnt .content p {
    font-size: 20px;
    color: rgba(var(--common-border-text-shadow-light-color), .7);
    margin: 0
}

section.company-progress .company-progress-cont .progress-list-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px
}

section.company-progress .company-progress-cont .progress-list-wrapper:before {
    content: "";
    position: absolute;
    top: 20px;
    width: 100%;
    height: 3px;
    background-color: #aeacac
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper {
    width: 100%;
    padding-top: 11px
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper.progress-sliding-wrapper {
    transform: none !important
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide {
    width: 6%;
    display: flex;
    flex-direction: Column;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    padding: 0 7px
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide .cirl {
    margin: 0 auto 15px auto;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    border: 1px solid #cfcfcf;
    background-color: #fff
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide .cirl:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #aeacac;
    border-radius: 20px
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide p {
    font-size: 18px;
    color: #aeacac;
    margin: 0;
    text-align: center
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide p span {
    display: block
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .cirl {
    border-color: var(--primary-color)
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .cirl:after {
    background-color: var(--primary-color)
}

section.company-progress .company-progress-cont .progress-list-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active p {
    color: var(--primary-color)
}

section.company-progress .company-progress-cont .navigation-arrow-progress {
    margin-top: 60px
}

section.company-progress .company-progress-cont .navigation-arrow-progress .navig-arrow {
    width: 66px;
    height: 66px;
    border-radius: 100px;
    border: 1px solid var(--primary-color);
    padding: 10px !important;
    outline: none;
    margin: 0 25px;
    position: relative;
    top: auto;
    background-image: none
}

section.company-progress .company-progress-cont .navigation-arrow-progress .navig-arrow svg path {
    fill: var(--secondary-color)
}

section.company-progress .company-progress-cont .navigation-arrow-progress .navig-arrow.swiper-button-disabled {
    border-color: #cfcfcf
}

section.company-progress .company-progress-cont .navigation-arrow-progress .navig-arrow.swiper-button-disabled svg path {
    fill: #cfcfcf
}

.cirl {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.company-progress .swiper-button-next:after,
section.company-progress .swiper-rtl .swiper-button-prev:after,
section.company-progress .swiper-button-prev:after,
section.company-progress .swiper-rtl .swiper-button-next:after {
    display: none;
}

section.company-progress .swiper-button-next svg,
section.company-progress .swiper-button-prev svg {
    width: auto !important;
    height: auto !important;
}



section.company-numbers {
    background-color: rgba(var(--light-section-bg-color), .2);
    margin-bottom: 80px
}

section.company-numbers .company-number-section {
    display: flex;
    align-items: Flex-start;
    justify-content: center;
    margin-top: 60px
}

section.company-numbers .company-number-section .item {
    flex-basis: 16.67%;
    max-width: 16.67%;
    padding: 10px 15px
}

section.company-numbers .company-number-section .item .commitment-items {
    text-align: center
}

section.company-numbers .company-number-section .item .commitment-items .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.company-numbers .company-number-section .item .commitment-items .icon svg {
    width: 62px;
    height: 62px
}

section.company-numbers .company-number-section .item .commitment-items h3 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.company-numbers .company-number-section .item .commitment-items p {
    font-size: 16px;
    color: var(--body-text-color);
    text-align: center;
    margin: 0;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.company-numbers .company-number-section .item .commitment-items:hover .icon {
    transform: translateY(-15px)
}

section.company-numbers .company-number-section .item .commitment-items:hover h3 {
    transform: translateY(-10px)
}

section.company-numbers .company-number-section .item .commitment-items:hover p {
    transform: translateY(-5px)
}



section.company-numbers .company-number-section .item .item-content {
    text-align: center
}

section.company-numbers .company-number-section .item .item-content .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.company-numbers .company-number-section .item .item-content .icon svg {
    width: 62px;
    height: 62px
}

section.company-numbers .company-number-section .item .item-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}

section.company-numbers .company-number-section .item .item-content p {
    font-size: 16px;
    color: var(--body-text-color);
    text-align: center;
    margin: 0;
    transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1)
}



section.contact-form {
    background-color: #f2f2f2;
    position: relative;
    z-index: 10
}

section.contact-form .contact-information {
    display: flex;
    justify-content: center
}

section.contact-form .contact-information .contact-details {
    width: 40%;
    padding-right: 40px
}

section.contact-form .contact-information .contact-details h3 {
    font-size: 52px;
    color: #000;
    line-height: 52px;
    text-align: center;
    margin-bottom: 20px
}

section.contact-form .contact-information .contact-details>p {
    font-size: 26px;
    color: var(--body-text-color);
    margin: 0;
    text-align: center
}

section.contact-form .contact-information .contact-details .details {
    margin-top: 50px
}

section.contact-form .contact-information .contact-details .details ul li {
    display: flex;
    justify-content: Flex-start;
    align-items: Flex-start;
    margin-bottom: 30px;
    position: relative
}

section.contact-form .contact-information .contact-details .details ul li:after {
    content: "";
    position: absolute;
    top: 35px;
    left: 15px;
    width: 4px;
    height: 100%;
    background-color: #96b2c5
}

section.contact-form .contact-information .contact-details .details ul li:last-child::after {
    display: none
}

section.contact-form .contact-information .contact-details .details ul li span {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background-color: var(--primary-color);
    border-radius: 100px;
    position: relative;
    margin-right: 20px
}

section.contact-form .contact-information .contact-details .details ul li span:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 100px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, .2);
    border: 3px solid #fff
}

section.contact-form .contact-information .contact-details .details ul li .text h4 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px
}

section.contact-form .contact-information .contact-details .details ul li .text p {
    font-size: 16px;
    color: var(--body-text-color);
    line-height: 30px;
    margin: 0
}

section.contact-form .contact-information .contact-details .details ul li .text p a {
    color: var(--body-text-color)
}

section.contact-form .contact-information .contact-details .details ul li .text p a:hover {
    color: var(--primary-color)
}

section.contact-form .contact-information .contact-form-container {
    width: 60%
}

section.contact-form .contact-information .contact-form-container .form-wrapper {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, .1);
    overflow: hidden;
    margin-top: -225px
}

section.contact-form .contact-information .contact-form-container .form-wrapper .heading {
    background-color: #f2f2f2;
    padding: 35px
}

section.contact-form .contact-information .contact-form-container .form-wrapper .heading span {
    width: 75px;
    height: 75px;
    min-width: 75px;
    background-color: var(--primary-color);
    border-radius: 10px;
    position: relative;
    margin-right: 30px;
    box-shadow: 0px 4px 9px 0px rgba(88, 185, 227, .2)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .heading span svg {
    width: 34px
}

section.contact-form .contact-information .contact-form-container .form-wrapper .heading h3 {
    font-size: 30px;
    color: var(--body-text-color);
    line-height: 30px;
    margin: 0
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields {
    padding: 30px
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields input:-webkit-autofill,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields input:-webkit-autofill:hover,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields input:-webkit-autofill:focus,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields textarea:-webkit-autofill,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields textarea:-webkit-autofill:hover,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields textarea:-webkit-autofill:focus,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields select:-webkit-autofill,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields select:-webkit-autofill:hover,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--body-text-color);
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    transition: background-color 5000s ease-in-out 0s
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .row {
    margin-left: -15px;
    margin-right: -15px
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form ::-webkit-input-placeholder {
    color: var(--body-text-color)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form ::-moz-placeholder {
    color: var(--body-text-color)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form :-ms-input-placeholder {
    color: var(--body-text-color)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form :-moz-placeholder {
    color: var(--body-text-color)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .form-group {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    position: relative
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .form-group .label {
    display: flex;
    align-items: center;
    height: 72px;
    font-size: 20px;
    color: var(--body-text-color);
    padding: 5px 15px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 20px;
    transition: .2s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 1
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #f2f2f2;
    height: 72px;
    background-color: #f2f2f2;
    font-size: 20px;
    color: var(--body-text-color);
    position: relative;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    transition: .2s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .form-control:focus {
    background-color: #fff;
    border-color: #dcdcdc
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .form-control.error {
    border-color: var(--error-color)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .form-control.error+.error {
    font-size: 12px;
    font-weight: 500;
    padding-top: 2px;
    color: var(--error-color);
    position: absolute;
    margin: 0
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form .dropArrow {
    position: absolute;
    top: 25px;
    right: 30px;
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) var(--body-text-color) var(--body-text-color) rgba(0, 0, 0, 0)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form textarea.form-control {
    height: 240px;
    resize: none
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form input:focus+.label,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form input:not(:placeholder-shown)+.label,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form textarea:focus+.label,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form textarea:not(:placeholder-shown)+.label {
    font-size: 14px;
    height: auto;
    left: 0;
    opacity: 1;
    transform: translateY(-100%) translateX(0)
}

section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form input:focus+.label,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form input:not(:-ms-input-placeholder)+.label,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form textarea:focus+.label,
section.contact-form .contact-information .contact-form-container .form-wrapper .form-fields form textarea:not(:-ms-textarea-placeholder-shown)+.label {
    font-size: 14px;
    height: auto;
    left: 0;
    opacity: 1;
    transform: translateY(-100%) translateX(0)
}



section.map-section {
    background-color: #fff
}

section.map-section .branch-cont {
    margin-top: 60px
}

section.map-section .branch-cont .item {
    margin-bottom: 30px
}

section.map-section .branch-cont .item .map-wrapr .map-iframe-container {
    width: 100%;
    height: 360px;
    border: 3px solid #f2f2f2;
    background: rgba(0, 0, 0, .1);
    border-radius: 16px;
    overflow: hidden
}

section.map-section .branch-cont .item .map-wrapr .map-iframe-container iframe {
    width: 100%;
    height: 100%
}

section.map-section .branch-cont .item .text {
    padding: 30px 0
}

section.map-section .branch-cont .item .text h3 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 20px
}

section.map-section .branch-cont .item .text h3 a {
    color: var(--primary-color);
    text-decoration: none
}

section.map-section .branch-cont .item .text p {
    font-size: 17px;
    line-height: 28px;
    color: rgba(var(--common-border-text-shadow-light-color), .7);
    margin: 0
}

.condt-content {
    padding-bottom: 70px;
    position: relative;
    text-align: justify
}

.condt-content::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 2px;
    background-color: rgba(0, 0, 0, .4)
}

.condt-content h1 {
    font-size: 40px;
    color: #000;
    margin-bottom: 50px;
    text-align: center
}

.condt-content h3 {
    font-family: "Cambria-Bold";
    font-size: 22px;
    color: #000;
    margin: 40px 0 20px 0
}

.condt-content h4 {
    font-family: "Cambria-Bold";
    font-size: 20px;
    color: var(--body-text-color);
    font-weight: 500;
    margin: 30px 0
}

.condt-content h5 {
    font-size: 17px;
    color: rgba(var(--common-border-text-shadow-light-color), .9);
    font-weight: 500;
    margin: 20px 0
}

.condt-content p {
    font-size: 16.5px;
    color: rgba(var(--common-border-text-shadow-light-color), .9);
    line-height: 30px;
    font-weight: 500;
    margin: 20px 0
}

.condt-content ul {
    margin: 0;
    padding: 0
}

.condt-content ul li {
    font-size: 17px;
    color: rgba(var(--common-border-text-shadow-light-color), .9);
    line-height: 30px;
    font-weight: 500;
    margin: 20px 0;
    padding-left: 20px;
    position: relative
}

.condt-content ul li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%
}

.condt-content ol {
    margin: 0;
    padding: 0;
    counter-reset: item
}

.condt-content ol>li {
    font-size: 17px;
    color: rgba(var(--common-border-text-shadow-light-color), .9);
    line-height: 30px;
    font-weight: 500;
    margin: 20px 0;
    padding-left: 25px;
    position: relative;
    list-style: none;
    display: block
}


.condt-content ol>li::before {
    content: counter(item) ". ";
    counter-increment: item;
    position: absolute;
    top: 0px;
    left: 0px;
    font-family: "Cambria-Bold";
    font-size: 22px;
    color: var(--primary-color)
}



.tableui {
    border: 1px solid #ccc;
    background: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
    min-width: 1000px
}

.tableui thead tr td,
.tableui tbody tr td {
    padding: 12px
}

.tableui thead tr td {
    font-weight: 600;
    border-bottom: 2px solid #ccc;
    border-left: 1px solid #ccc
}

.tableui thead tr td:first-child {
    border-left: none
}

.tableui tbody tr:nth-child(odd) {
    background: #f4fcff
}

.tableui tbody tr:nth-child(even) {
    background: #fff
}

.tableui tbody tr td {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc
}

.tableui tbody tr td:first-child {
    border-left: none
}

.nowrap {
    white-space: nowrap
}



.disp-error {
    font-size: 14px;
    color: red;
    font-weight: 500;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}