/* webfonts */

/* @font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Thin.ttf');
    font-weight: 100;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.ttf');
    font-weight: 900;
} */


/* webfonts end */

:root {
    --primary-color: #03463f;
    --secondary-color: #dcfda2;
    --secondary-dark-color: #730BAB;
    --red-colir: #DA2F58;
    --dark: #191919;
    --light-color: #B5B7BC;
    --white-text: #fff;
    --text-color: #0C0C0C;
    --font-family: "DM Sans", sans-serif!important;
}

html {
    margin: 0;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    white-space: normal;
    word-break: break-word;
    font-weight: 700 !important;
    line-height: 1.1;
    font-family: var(--font);
    color: var(--text-color);
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 25px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

a,
p,
button,
span {
    white-space: normal;
    word-break: break-word;
    color: var(--text-color);
}

a {
    text-decoration: none !important;
    color: var(--primary-color);
    cursor: pointer;
}

a:focus-visible {
    outline: transparent;
}

p {
    font-size: 16px;
    margin: 0;
    color: var(--text-color);
    font-weight: 400;
}

img {
    max-width: 100%;
}

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

button {
    transition: all 0.5s;
}

button:focus {
    box-shadow: none !important;
    outline: transparent;
}

.form-control:focus,
input {
    outline: 0;
    box-shadow: none !important;
    color: inherit;
    background-color: transparent;
    border-color: #0D6CFF;
}
.font-12 {
    font-size: 12px !important;
    line-height: 160%;
    letter-spacing: -0.12px;
}
.form-select:focus {
    border-color: #0D6CFF;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--text-color);
}

.form-control:focus {
    border-color: #F2F3F5;
    background: #F2F3F5;
}

input[type="checkbox"]:checked~label:before {
    background: var(--secondary-color) no-repeat center;
}

.formfield {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.form-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.form-group label {
    font-size: 14px;
    line-height: 25px;
    color: var(--text-color);
    font-weight: 400;
}
.form-field input {
    border-radius: 30px;
    min-height: 48px;
}
.form-group {
    margin-bottom: 15px;
}

section{
    padding: 80px 0;
}
/* custom-button-CSS */

.button {
    transition: all 0.5s;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 36px;
    font-size: 16px;
    border-radius: 50px;
    color: var(--primary-color);
    font-family: var(--font);
    padding: 7px 20px;
}

.btn {
    display: inline-flex;
    border: unset;
    align-items: center;
    justify-content: center;
}
.primary-btn{
    background-color: var(--primary-color);
    border-radius: 50px;
    padding: 14px 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
    color: var(--white-text);
    max-width: 134px;
    width: 100%;
    min-height: 48px;
}
.outline-btn{
    background-color: transparent;
    border: 1px solid var(--white-text);
    border-radius: 50px;
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 142%;
    letter-spacing: -0.48px;
    max-width: 134px;
    width: 100%;
    color: var(--white-text);
    min-height: 55px;
}
.outline-btn:hover {
    background-color: var(--secondary-color);
    border: 1px solid transparent !important;
    color: var(--white-text);
}
.primary-btn:hover {
    color: var(--white-text) !important;
}
.full-btn {
    width: 100%;
    min-width: auto;
    max-width: 100%;
}

input [type="checkbox"]:focus {
    box-shadow: none;
}

.form-control::placeholder {
    font-size: 14px;
    color: #9C9C9C;
}
.cust-nav .container{
    max-width: 1398px;
    padding: 0 20px;
}
.container {
    max-width: 1398px;
    padding: 0 20px;
}

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: var(--secondary-color);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}


/* hide second span */

.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}


/* rotate third span */

.navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}



/********************** Navbar Css Start ***************/

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-btn {
    background: var(--secondary-color);
    padding: 12px 38px;
    border-radius: 30px;
    font-size: 15px;
    color: var(--secondary-dark-color);
    font-weight: 600;
}

/*.navbar {*/
/*    padding: 0;*/
/*}*/

.cust-nav {
    padding-top: 11px;
    padding-bottom: 11px;
    background: var( --primary-color);
}

.cust-nav .navbar-collapse {
    column-gap: 31px;
}

.header-login-btn {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.reddot li {
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
}

.navbar-nav li a {
    color: var(--wh, #FFF);
    font-size: 18px;
    font-weight: 500;
}

.reddot li:hover {
    cursor: pointer;
}

.reddot li ul li:hover {
    background: #04041f;
    padding: 10px;
}

.reddot li ul li:hover a {
    color: #fff !important;
    display: block;
}

.navbar-nav .reddot {
    margin-right: 2.5rem;
}

.cust-nav .navbar-nav{
    gap: 48px;
} 

.header-login-btn .button{
    max-width: 95px;
    min-width: 95px;
    max-height: 42px;
    min-height: 42px;
}
.navbar-nav .dropdown-menu.show {
    /* min-width: 1400px !important; */
    left: -500px;
    top: 83px;
    padding: 23px 26px 0px;
    border-radius: 20px;
}
.navbar-nav  .dropdown button {
    font-size: 18px;
    padding: 0;
    font-weight: 500;
    background-color: transparent;
    gap: 4px;
}
.dropdown-feed-box{
    padding: 20px 22px;
    max-width: 322px;
    border: 1px solid #EBDEFE;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    cursor: pointer;
}
.feed-content h4{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.feed-content p{
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.dropdown-menu-left a {
    color: var(--dark) !important;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}
.dropdown-center-content {
    height: 100%;
    background: linear-gradient(180deg, #F4ECFF 0%, rgba(244, 236, 255, 0.00) 105.09%);
    border-radius: 15px;
}
.dropdown-center-content li {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}
.dropdown-center-content li {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid #eee4fc;
}

.dropdown-center-heading {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-center-heading h3 {
    font-size: 20px;
}
.dropdown-center-inner p {
    font-size: 13px;
    font-weight: 400;
}
.right-side-menu h3{
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 40px;
}
.right-side-menu li a{
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee4fc;
    padding-bottom: 5px;
}
.dropdown-toggle::after{display: none;}

.navbar-full .dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    max-width: 500px;
    margin: 0 auto;
}

.navbar-full .dropdown, .navbar-full .navbar-nav .nav-item.dropdown {
    position: static !important;
}


/********************** Navbar Css End ***************/
.banner-section {
    background: var(--primary-color);
    padding: 88px 0 54px;
}
.banner-left h1 {
    font-weight: 700 !important;
    line-height: 60.5px;
    letter-spacing: -0.02em;
    color: var(--white-text) !important;
    text-transform: capitalize;
}
.banner-btns {
    margin-top: 36px;
}
.banner-left p {
    color: var(--white-text);
}
/* ******************** licence agreement styling start ************** */
.home-wrapper .row {
    align-items: center;
}
.agreement-outer-section h2,.agreement-inner-column h4, .agreement-inner-column p {
    padding-bottom: 10px;
}
.agreement-outer-section p {
    padding-bottom: 20px;
    opacity: 70%;
}
.agreement-outer-section p:last-child,.agreement-inner-column div:last-child {
    padding-bottom: 0;
}
.agreement-inner-section {
    background: var(--primary-color);
}
.agreement-inner-column {
    background: #dcfda2;
    padding: 60px;
    border-radius: 30px;
}
.agreement-inner-column h4, .agreement-inner-column p, .agreement-inner-column ul li, .agreement-inner-column h6{
    color: var(--text-color) !important;
}
.agreement-inner-column h6 {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
}
.agreement-inner-column div {
    padding-bottom: 25px;
}
.agreement-inner-column ul {
    padding-left: 20px;
    padding-bottom: 10px;
}
.agreement-inner-column ul li {
    list-style: disc;
    padding-bottom: 7px;
}
.agreement-inner-column .lower-alpha-list li {
    list-style: lower-alpha;
}
.agreement-inner-column .lower-roman-list li {
    list-style: lower-roman;
}
/* ******************** licence agreement styling end ************** */

/* policy styling start */
.tick-list li::marker {
    opacity: 0;
    font-size: 0;
}
.agreement-inner-column h2 {
    color: var(--text-color) !important;
}
.tick-list li {
    position: relative;
    padding-left: 25px;
}
.tick-list li::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    top: 8px;
    width: 13px;
    height: 10px;
    background-size: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_143_51)'%3E%3Cpath d='M11.5478 1L4.51594 8.03156L1 4.51594' stroke='%23195849' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_143_51'%3E%3Crect width='13' height='9' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.undertaking-img  img {
    width: 100%;
}
.inquiry-btns .primary-btn {
    max-width: fit-content;
    text-transform: capitalize;
}
a.btn-main.live-btn.btn.primary-btn.cd-secondary-btn{
    border: 1px solid #06392d;
}
/* policy styling end */

/******** inquiry page styling start *********/
.inquiry-section {
    background: #ebebeb;
}
.inquiry-inner-row {
    background: var(--white-text);
    padding: 40px;
    border-radius: 20px;
    align-items: center;
}
section .row .col-md-6.col-12:first-child .inquiry-outer-column {
    background: #ebebeb;
    padding: 40px;
    border-radius: 20px 0 0 20px;
}
.inquiry-inner-column {
    width: 100%;
    max-width: 355px;
    margin: auto;
}
.inquiry-inner-column h3 {
    padding-bottom: 15px;
    text-align: center;
}
.inquiry-inner-column button {
    max-width: 100%;
    padding: 12px 15px;
}
.inquiry-outer-column H3 {
    padding-bottom: 15px;
    color: #12152E;
}
.inquiry-outer-column p {
    padding-bottom: 20px;
}
.inquiry-contact-withIcon {
    display: flex;
    gap: 19px;
    padding-bottom: 7px;
}
.inquiry-contact-details {
    padding-top: 19px;
}
.inquiry-contact-withIcon span i {
    color: var(--white-text);
    font-size: 12px;
}
.inquiry-contact-withIcon span {
    display: block;
    width: 26px;
    height: 26px;
    background:var(--text-color) ;
    display: flex;
    place-content: center;
    align-items: center;
    flex:0 0 auto;
    border-radius: 50%;
}
.inquiry-contact-withIcon h5 {
    font-size: 20px;
    font-weight: 500;
}
.inquiry-btns {
    margin-top: 15px;
}
.inquiry-btns button:first-child {
    margin-right: 20px;
}
.inquiry-btns button {
    min-height: 42px;
    padding: 9px 15px;
}
/******** inquiry page styling end *********/
/******** about us page styling start *********/
.our-story-section, .our-team-section {
    background: #ebebeb;
}
.our-story-section .row:first-child, .security-maintenance-sec .row {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.our-story-column h2 {
    padding-bottom: 10px;
}
.our-story-column div {
    margin-bottom: 40px;
}
.our-story-column h4 {
    font-size: 40px;
    font-weight: 400 !important;
    line-height: 60px;
}
.our-story-column p {
    opacity: 0.7;
}
.our-story-column button {
    min-width: 175px;
}
.our-story-column .marketplace-services-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 620px;
    margin: auto;
    padding-top: 22px;
}
.our-story-column  .marketplace-services-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: center;
}
.our-story-column .marketplace-services-item span {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}
.marketplace-services-item h6 {
    font-weight: 500 !important;
    text-align: left;
}
.our-story-column .who-we-are {
    margin-bottom: 0;
    padding-top: 50px;
}
.our-story-column .who-we-are button {
    min-width: 200px;
    margin-top: 20px;
    margin-bottom: 80px;
}
.why-choose-card {
    background-color: #fff;
    padding: 36px 45px;
    border-radius: 15px;
    transition: 0.5s ease;
    height: 100%;
}
.why-choose-card img {
    margin-bottom: 30px;
}
.why-choose-card h4 {
    padding-bottom: 4px;
}
.why-choose-card p {
    opacity: 0.7;
    width: 100%;
    max-width: 300px;
}
.why-choose-card:hover {
    background: var(--primary-color);
}
.why-choose-card:hover img {
    filter: brightness(0) invert(1);
}
.why-choose-card:hover h4, .why-choose-card:hover p {
    color: #fff !important;
    opacity: 1;
}
.security-maintenance-sec .our-story-column div {
    margin-bottom: 20px;
}
.security-maintenance-sec .our-story-column .who-we-are {
    margin-bottom: 0;
}
.security-maintenance-sec .our-story-column .who-we-are p {
    padding-bottom: 20px;
}
.security-maintenance-sec  .our-story-column .marketplace-services-column {
    max-width: 800px;
}
.team-person-card {
    padding: 17px 17px 20px;
    background: #fff;
    border-radius: 8px;
}
.our-team-column h2 {
    padding-bottom: 20px;
    text-transform: capitalize;
}
.team-person-card h6 {
    font-weight: 500;
}
.team-person-card p {
    opacity: 0.7;
}
.team-personImg {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 268px;
}
.team-personImg img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
}
.our-faq-accordion {
    margin-top: 80px;
}
.our-team-section .accordion {
    max-width: 1022px;
    margin: 10px auto auto;
    border-radius: 8px;
    overflow: hidden;
}
.our-team-section .accordion-item {
    margin-bottom: 14px;
    border-radius: 5px;
    border: 1px solid #EAEAEA;
    overflow: hidden;
}
.our-team-section .accordion-header {
    padding: 16px 30px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s;
    position: relative;
}
.our-team-section .accordion-header::after {
    content: "";
    position: absolute;
    background-image: url('data:image/svg+xml,<svg width="20" height="12" viewBox="0 0 20 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.4831 1.69531L10.0003 10.1781L1.51758 1.69531" stroke="%23191919" stroke-width="2.82759" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    right: 30px;
    top: 50%;
    width: 16px;
    background-size: 100%;
    height: 10px;
    background-repeat: no-repeat;
    transform: translateY(-5px);
    transition: all 0.5s ease;
}
.our-team-section .accordion-header.active:after {
    transform: translateY(-5px) rotate(180deg);
}
.our-team-section .accordion-header.active h3 {
    opacity: 1;
    font-weight: 700;
}
.our-team-section .accordion-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 27.84px;
}
.our-team-section .accordion-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 27.84px;
    opacity: 0.7;
}
.our-team-section .accordion-content {
    display: none;
    padding: 0 30px 20px;
    text-align: left;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.get-cloud-btn {
    margin-top: 20px;
}
.get-cloud-btn button {
    min-width: 175px;
}
/******** about us page styling end *********/

/********** footer styling start here ************/
footer {
    background: var(--dark);
}
footer section {
    border-bottom: 1px solid var(--white-text);
    text-align: center;
    padding-bottom: 50px;
}
footer h6 {
    color: var(--white-text);
    padding-top: 20px;
    font-weight: 500;
}
footer p {
    color: var(--white-text);
}
.innner-footer-container {
    padding-top: 35px;
    padding-bottom: 17px;
}
.footer-links li a {
    color: var(--white-text);
    font-size: 16px;
    font-weight: 500;
}
.footer-links li a:hover {
    color: var(--secondary-dark-color);
}
.footer-links {
    display: flex;
    justify-content: end;
    gap: 25px;
}
.alert.alert-warning.network-issue-alert {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px !important;
    margin-top: 15px !important;
}
.inquiry-inner-column .form-control {
    background: var(--bg-white);
}
.banner-btns a.btn.primary-btn {
    --primary-color: var(--secondary-color);
    color: var(--text-color);
}
.banner-btns a.btn.primary-btn:hover{
    color: var(--text-color) !important;
}
.primary-btn:hover {
    background: #06392D;
    border-color: #ffffff;
}