/* Reset CSS  */
:root {
    --bs-primary-rgb : 128, 54, 123;
}

*, *::before, *::after {
    box-sizing: border-box;
  }
  
  * {
      margin: 0;
    }
    body {
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        font-family: "Inter", sans-serif;
    }
    img, picture, video, canvas, svg {
        display: block;
        max-width: 100%;
    }
    input, button, textarea, select {
        font: inherit;
    }
    h1, h2, h3, h4, h5, h6 {
        overflow-wrap: break-word;
    }
    p {
        font-size: 16px;
        overflow-wrap: break-word;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        color: #000000;
    }
    a {
        color: #6153BD;
    }
    a:hover {
        text-decoration: none;
    }
    #root, #__next {
        isolation: isolate;
    }
    .bg-fixed {
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
        transition: all 4s ease;
    }
    .bg-primary {
        background-color: #80367B;
    }
    ul.noStyle, ol.noStyle,
    ul.noStyle li, ol.noStyle li{
        list-style: none;
        margin: 0;
        padding: 0;
    }
    img{
        max-width: 100%;
        height: auto;
    }
/* End Reset CSS  */
.text-small {
    font-size: 16px;
}
.btn {
    font-size: 18px;
    font-weight: 600;
    padding: 8px 30px;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}
.btn.btn-lg {
    padding: 8px 25px;
    font-size: 20px;
}
.btn.btn-xl {
    padding: 15px 40px;
    font-size: 22px;
}
.btn-primary {
    background: #8B42A8;
    border-color: #8B42A8;
    font-family: "Inter", sans-serif;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    background: #2691CD;
    border-color: #2691CD;
    outline: none;
    box-shadow: none;
}
.btn-outline-primary {
    color: #80367B;
    font-family: "Inter", sans-serif;
    border-color: #80367B;
}
.btn-outline-primary:hover {
    color: #ffffff;
    background: #80367B;
    border-color: #80367B;
}
.btn.btn-outline-primary.btn-small {
    padding: 8px 15px;
}
.btn-link {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}
.btn-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}
.btn-gold {
    background: #D09965;
    border-color: #D09965;
    color: #ffffff;
}
.btn-gold:hover {
    background: #80367B;
    border-color: #80367B;
    color: #ffffff;
}
.btn-orange {
    background: #FF6D2E;
    border-color: #FF6D2E;
    color: #ffffff;
}
.btn-orange:hover {
    background: #80367B;
    border-color: #80367B;
    color: #ffffff;
}
.btn-light {
    color: #000000;
    background: #FFFFFF;
    border-color: #FFFFFF;
}
.btn-light:hover {
    color: #ffffff;
    border-color: #2691CD;
    background: #2691CD;
}
.btn.bg_gray:hover{
    background: black !important;
    color: white;
}
.btnLoadMore{
    min-width: 370px;
    background-color: #38A1FF;
    border-color: #38A1FF;
    color: #fff;
}
.btnLoadMore:hover{
    background-color: #212529;
    border-color: #212529;
}
.btnLoadMore.noContent{
    display: none;
}
.headerSpace {
    height: 115px;
}
.header {
    width: 100%;
    background: #ffffff;
}
.header.fixed-top{
    border-bottom: 1px solid #D4D4D4;
}
.header .navbar .nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 4px;
    position: relative;
    color: #000000;
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.navbar-dark .navbar-nav .active>.nav-link {
    color: #8B42A8;
}
.header .top-link {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 10px;
    position: relative;
    color: #323232;
    text-decoration: none;
    font-weight: 700;
}
.header .navbar-brand {
    padding: 0;
    max-width: 320px;
}
.header .navbar .nav-link.active,
.header .navbar .nav-item:hover .nav-link,
.header .navbar .nav-link:hover,
.header .navbar .nav-item .nav-item:hover > .dropdown-item {
    color: #8B42A8;
}
.header .navbar .nav-item:hover .nav-link.dropdown-toggle:after,
.header .navbar .nav-item .nav-item:hover > .dropdown-item:after{
    transform: rotate(180deg);
}


.header .navbar .nav-item .dropdown-item.active, 
.header .navbar .nav-item .dropdown-item:active{
    background-color: transparent;
    color: #8B42A8;
}
.header .dropdown-toggle:after {
    content: "";
    display: block;
    vertical-align: middle;
    border: 0;
    margin: 0;
    background: url("../img/angle_down.png") center center no-repeat;
    background-size: 100%;
    width: 12px;
    height: 10px;
    transition: all ease 0.5s;
}
.dropdown-item.dropdown-toggle{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.header .navbar .nav-link.dropdown-toggle:after,
.header .navbar .dropdown-item.dropdown-toggle:after {
    background-image: url("../img/angle_down_blk.png");
}
.header li .dropdown-item {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    color: #323232;
    text-decoration: none;
}
.dropdown_wrapper ul>li:not(:last-child) {
    border-bottom: 1px solid #EAEAEB;
}
.header .dropdown-item:active {
    background: #e8e8e8;
}
.header .btn-inline .btn {
    text-transform: none;
}
.header .navbar-toggler {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    border-radius: 6px;
    color: #000;
    padding: 7px 10px;
    border: none;
}
.header .dropdown-item:hover {
    background: transparent;
}
.header .navbar .nav-item.dropdown>.dropdown-menu {
    border-radius: 0;
    border-color: #000;
    left: auto;
    right: 0;
    width: fit-content;
    margin: -1px 0 0;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
}
.header .dropdown-item:hover, .header .dropdown-item:focus {
    color: #8B42A8;
}
.header .navbar .nav-item:not(:last-child) {
    margin-right: 40px;
}
.header .navbar .nav-item .nav-item {
    margin-right: 0;
}
.header .btn-primary {
    font-size: 15px;
    padding: 3px 10px;
    gap: 4px;
    border-radius: 4px;
    color: #ffffff;
}
.membershipToggle{
    display: none;
}
.top-nav .btn.show{
    background: #2488C7;
}
.top-nav .dropdown-item.active, 
.top-nav .dropdown-item:active{
    background: #2488C7;
    color: white;
}
.mBtns{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}
.dropdown_wrapper .product-img:hover>img {
    opacity: 0.9;
}
.dropdown_wrapper .product-img>img {
    width: 100%;
    transition: all 0.2s ease;
}
.nav-link.dropdown-toggle.show:after,
.dropdown-item.dropdown-toggle.show:after{
    transform: rotate(180deg);
}
.mobileMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.navbar-collapse .darknav,
.mobileMenu {
    display: none;
}
.dropdown_wrapper {
    padding: 10px;
}
.dropdown_wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 130px;
}
.dropdown_wrapper .product-img {
    width: 240px;
    height: 250px;
    border-radius: 8px;
}
.mobileMenu .btn-primary {
    width: 50%;
    margin: 0 auto;
}
.btnMore{
    background-color: #A1A1A1;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    gap: 8px;
    transition: all ease 0.3s;
}
.btnMore svg path{
    stroke: white;
}
.btnMore:hover{
    background-color: #212529;
    color: white;
}
.btnMore:hover svg path{
    stroke: #fff;
}
.btnMore:focus svg path, .btnMore.active svg path{
    stroke: #212529;
}
.btnMore.active:hover svg path{
    stroke: #fff;
}

.btnGMI{
    background-color: #80367B;
    margin-top: 16px;
}
.btnGMI svg{
    transform: rotate(-90deg);
}
.btnGMI:hover{
    background-color: #212529;
    color: white;
}

.btnBlue{
    background-color: #2563EB;
    margin-top: 16px;
}
.btnBlue svg{
    transform: rotate(-90deg);
}
.btnBlue:hover,
.btnBlue:focus-visible,
.btnBlue:active,
.btnBlue.active{
    background-color: #212529 !important;
    color: white !important;
}

.btnGray{
    background-color: #A1A1A1;
    margin-top: 16px;
}
.btnGray svg{
    transform: rotate(-90deg);
}
.btnGray:hover{
    background-color: #212529;
    color: white;
}

.project-card-cart {
    display: flex;
    padding: 10px 15px;
}
.project-card-cart .pcc-img {
    flex: 0 0 80px;
    max-width: 80px;
}
.project-card-cart .pcc-img img {
    border-radius: 10px;
}
.project-card-cart .pcc-content {
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    padding-left: 10px;
}
.project-card-cart .pcc-content h5 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    margin: 0 0 0px;
}
.project-card-cart .pcc-content p {
    font-size: 14px;
}
.btn-inline .icon-btn .dropdown-toggle:after {
    display: none;
}
.cart-menu .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 280px;
}
.dropdown.icon-btn.cart-menu {
    padding: 14px 0;
}
.social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-self: center;
    gap: 28px;
}
.social-list li a {
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 32px;
}
.social-list li a:hover i {
    color: #1C9AD6;
    transition: all 0.4s ease;
}
.topMenus {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.topMenus a {
    color: #000000;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    padding: 6px 10px;
    display: inline-block;
    transition: all 0.3s ease;
}
.topMenus a:hover {
    color: #80367B;
}
.navbar-toggler-icon{
    /*background: url("../img/navbarToggler.svg") center center no-repeat;
    background-size: 100%;*/
    background: none;
}
.darknav {
    background: #1D1D1F;
}
.darknav, .header .navbar {
    justify-content: flex-end;
}
.header .navbar>.container{
    position: relative;
}
.top-nav {
    padding: 0 0 10px;
    text-align: right;
}
.darknav .container-fluid {
    display: flex;
    justify-content: end;
}
.main-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
}
.top-notification {
    background: linear-gradient(90.04deg, #80367B 0%, #FF8D5C 50%, #FF6D2E 100%);
    padding: 10px;
}
.top-notification p {
    text-align: center;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}
.HeroBanner {
    position: relative;
    z-index: 1;
/*    overflow: hidden;*/
    /* background: #003878; */
}
.HeroBannerIn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
/*    min-height: 700px;*/
}
.HeroBannerInnr{
    position: relative;
}
.moreBtn {
    width: 18.7%;
    height: 8%;
    background-color: transparent;
    display: block;
    position: absolute;
    bottom: 24%;
    left: 12%;
}
.banner-content{
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 2;
}
.HeroBanner .banner-content {
    padding-right: 0;
}
.HeroBanner h1 {
    font-size: 50px;
    font-weight: 400;
    line-height: 64px;
    color: #020202;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    margin-bottom: 16px;
}
.HeroBanner h1 span {
    color: #000;
    font-weight: 700;
}
.HeroBanner .bg-fixed {
    opacity: 1;
    object-position: top center;
}
.HeroBanner p {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
}
.ipBanner p{
    font-size: 18px;
}
.HeroBanner .row {
    /* min-height: 810px; */
    /* padding-top: 40px; */
    /* padding-bottom: 40px; */
}
.HeroBanner .img-holder {
    text-align: right;
    margin-right: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.HeroBanner .img-holder img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
}
.slider .bottom-shap-design {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    margin-bottom: -90px;
    max-height: 272px;
}
.slider .bottom-shap-img {
    width: 1920px;
    margin: 0 auto;
}
.slider .hero-banner {
    position: relative;
    z-index: 1;
}
.left-border-box {
    border-left: 5px solid #ffffff;
    padding-left: 20px;
    margin: 0 0 40px;
}
.sliderDots .owl-dots {margin: 30px 0 0 !important;position: relative;}
@keyframes growAndFade {
    0% {
      opacity: 0.25;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(2);
    }
}
.slider-bottom-arrow .nextsec-arrow>.ripple_ {
    animation: growAndFade 3s infinite ease-out;
    background-color: #80367B;
    border-radius: 50%;
    height: 100%;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(1);
    z-index: -1;
  }
  .slider-bottom-arrow .nextsec-arrow> .circle1 {
    animation-delay: 0s;
  }
  .slider-bottom-arrow .nextsec-arrow> .circle2 {
    animation-delay: 1s;
  }
  .slider-bottom-arrow .nextsec-arrow> .circle3 {
    animation-delay: 2s;
  }
.slider-bottom-arrow .nextsec-arrow {
    background: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    align-items: center;
    font-size: 28px;
    box-shadow: 0px 0px 8px 0px #1D1D1F0A;
    box-shadow: 0px 4px 4px 0px #1D1D1F0A;
    position: relative;
}
.slider-bottom-arrow {
    position: relative;
    text-align: center;
    margin: -30px 0 0;
    z-index: 1;
}
.sliderDots.owl-theme .owl-dots .owl-dot.active span {background: #ffffff;transform: scale(2);}
.sliderDots.owl-theme .owl-dots .owl-dot span {
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease !important;
    width: 8px;
    height: 8px;
    margin: 2px 4px;
}
.slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.slider .slider-shap {
    position: absolute;
    z-index: -1;
}
.slider .slider-shap-1 {
    left: 0;
    bottom: 0;
}
.slider .slider-shap-2 {
    top: -1px;
    left: 50%;
}
.slider .slider-shap-3 {
    bottom: -1px;
    left: 38%;
}
.sliderDots.owl-theme .owl-dots .owl-dot:hover span, 
.sliderDots.owl-theme .owl-dots .owl-dot:focus span {
    background: #000000;
}
.slider-btn-wrap {
    display: inline-flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 85%;
}
.sec-pd {
    padding-top: 80px;
    padding-bottom: 80px;
}
.sec-pdt {
    padding-top: 80px;
}
.sec-pdb {
    padding-bottom: 80px;
}
.title-info {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0061FE;
    margin-bottom: 20px;
    display: block;
}
.title-1 {
    font-size: 42px;
    font-weight: 400;
    color: #000000;
    font-family: "Inter", sans-serif;
    margin: 0 0 20px;
}
.title-1 span {
    font-weight: 800;
    position: relative;
    display: inline-block;
}
.title-1 span img {
    position: absolute;
    top: 16px;
    right: -50px;
    transform: translateY(-100%);
}
.title-1.title-with-top-shap {
    margin-top: 30px;
}
.title-2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px;
    font-family: "Inter", sans-serif;
}
.event-box .title-2 {
    margin: 0;
}

.title-3 {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 20px;
    font-family: "Inter", sans-serif;
}
.title-3 span {
    color: #80367B;
}
.title-4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    font-family: "Inter", sans-serif;
}
.title-4 span {
    color: #80367B;
}
.right-content-box {
    padding-left: 40px;
}
.bdr{
    border-bottom: 1px solid #D4D4D4;
}
.sec-committed{
    padding-top: 60px;
}
.sec-committed h2{
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}
.sec-committed h2:after{
    display: block;
    content: "";
    background: url("../img/rounded-arrow.png") center center no-repeat;
    background-size: contain;
    width: 71px;
    height: 84px;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 15px;
}
.explore-top-car-sec {
    background: #F5F9FF;
}
.project-card2 .img-holder img {
    width: 100%;
    transition: all 1s ease;
}
.project-card2 {
    border: 1px solid #E9E9E9;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
}
.project-card2 .pc-content-wrap {
    padding: 20px 20px 25px;
}
.project-card2 h2 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px;
    font-family: "Inter", sans-serif;
}
.project-card2 p {
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0 0;
}
.project-card2 .price {
    font-size: 24px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #80367B;
}
.icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.project-card2 .pc-content-wrap .icon-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 10px;
}
.project-card2 .price .off-price {
    color: #ffffff;
    display: inline-block;
    background: #ff6d2e;
    padding: 5px 5px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.row.gap-40 {
    margin-left: -20px;
    margin-right: -20px;
}
.row.gap-40>div {
    padding-left: 20px;
    padding-right: 20px;
}
.ttUpper{
    text-transform: uppercase;
}
.ttCap{
    text-transform: capitalize;
}
.cis-accordion .accordion-button {
    box-shadow: none !important;
}
.cis-accordion .accordion-button:not(.collapsed) {
    
}
.cis-accordion .accordion-button {
    background-color: transparent;
    padding: 15px 30px 15px 0;
    font-size: 20px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    border-style: none none solid;
    border-color: #A3ECE6 !important;
    border-radius: 0px;
    width: 100%;
    position: relative;
    display: block;
}
.cis-accordion .accordion-button:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none;
    width: auto;
    height: auto;
    color: #626262;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 15px;
}
.cis-accordion .accordion-button:not(.collapsed)::after {
    content: "\f077";
    background-image: none;
}
.cis-accordion .accordion-body {
    /* background: #fafafa; */
    /* border: 1px solid #f4f4f4; */
    padding: 20px 0;
}
.cis-accordion .accordion-item {
    margin-bottom: 0;
    background: transparent;
}
.footer {
    background-color: #00233B;
    padding: 50px 0;
}
.footer *{
    color: white;
}

.footer .nav-link {
    color: #ffffff;
}
.footer-logo-box {
    /* padding-right: 50px; */
    position: relative;
    margin-left: -60px;
    margin-top: -70px;
}
.footer-lg-title {
    font-size: 25px;
    color: #B7AFAF;
    font-weight: 700;
    margin: 0 0 25px;
}
.nav-link-list {
    padding: 0;
    list-style: none;
    margin: 0;
}
.nav-link-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    position: relative;
}
.nav-link-list a:hover {
    color: #A1A1A1;
}
.nav-link-list.angle-icon-link a {
    color: #A1A1A1;
}
.nav-link-list.angle-icon-link a:hover {
    color: #ffffff;
}
.footer h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
    font-family: "Inter", sans-serif;
}
.form-sec {
    color: #ffffff;
    position: relative;
    z-index: 2;
    margin-bottom: -230px;
}
.text-white {
    color: #ffffff;
}
.form-design .form-group {margin: 0;}
.form-design .form-control {
    border-radius: 15px;
    height: auto;
    box-shadow: none;
    outline: none;
    border-color: #ffffff;
    background-color: #ffffff;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Poppins';
}
.form-design .form-control::placeholder  {
    color: rgba(25, 26, 25, 0.50);
}
.form-design .form-control:placeholder  {
    color: rgba(25, 26, 25, 0.50);
}
.form-design .form-group label {
    margin: 0 0 5px;
}
.form-design .btn {
    width: 100%;
}
.form-design .form-check {
    box-shadow: none;
}
.nav-link-icon-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
}
.nav-link-icon-list {
    /* list-style: none; */
    padding: 0;
}
.nav-link-icon-list li {
    position: relative;
    display: block;
    margin: 0 0 10px;
}
.nav-link-icon-list li a {
}
.nav-link-icon-list li a i {
    display: inline-block;
    width: 30px;
    color: #0061FE;
    font-size: 20px;
    align-self: center;
}
.nav-link-icon-list .list-icon {
    flex: 0 0 22px;
    align-self: flex-start;
    background: #80367B;
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
}
.nav-link-icon-list li a.link-gary .list-icon {
    background: #B7AFAF;
}
.nav-link-icon-list li a.link-gary {
    color: #B7AFAF;
}
.nav-link-icon-list li a img {
    object-fit: contain;
    width: 14px;
    height: 14px;
}
.copyright-box p {
    margin: 5px 0;
    font-weight: 400;
    font-size: 18px;
}
.copyright-box .text-right {
    text-align: right;
}
.copyright-box a, .copyright-box p {
    color: #D4D4D4;
    font-size: 18px;
    font-weight: 400;
}
.copyright-box a{
    text-decoration: none;
}
.copyright-box a:hover{
    text-decoration: underline;
}
.footer-line {
    border-color: #ffffff;
    opacity: 0.8;
}
.copyright-box {
    padding: 10px 0;
}
.faq-sec {
    position: relative;
}
.cis-accordion {background: #FFFFFF80;padding: 60px 80px;border-radius: 40px;border: 2px solid #FFFFFF;}
.cis-accordion .btn-wrap {
    margin-top: 50px;
}
.project-card {
    margin-bottom: 0;
}
.project-card .pc-img {
}
.project-card .pc-img img {
    width: 100%;
    transform: scale(1);
    transition: all 8s ease;
}
.project-card:hover .pc-img img {
    transform: scale(1.2)
}
.project-card .pc-img .pci-overlap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 30px 25px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.8) 100%);
    background-blend-mode: multiply;
    display: flex;
    align-items: end;
}
.project-card2 .img-holder {
    overflow: hidden;
}
.project-card2:hover .img-holder img {
    transform: scale(1.1);
}
.discount-block:hover .bg-fixed {
    transform: scale(1.2);
}
.project-card .pc-img {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}
.project-card .pc-img .pci-overlap h2 {
    font-size: 20px;
    color: #ffff;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin: 0;
}
.product-sec {
    
}
.project-card.pc-small .pc-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.project-card.pc-large .pc-img img {
    width: 100%;
    height: 660px;
    object-fit: cover;
}
.payment-card-list {
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 10px;
    list-style: none;
}
.footer .social-list {
    margin-bottom: 20px;
}
.payment-card-list li a img {
    transform: scale(1);
    transition: all 0.3s ease;
}
.payment-card-list li a:hover img {
    transform: scale(1.1);
}
.shop-by-category-sec {background: #EAEAEB66;}
.discount-block {}
.discount-block {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}
.discount-block .db-content {
    min-height: 570px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.discount-block .db-content p {
    font-size: 32px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin: 0 0 -70px;
    color: #ff6d2e;
}
.discount-block .db-content h2 {
    font-size: 240px;
    font-weight: 700;
    
    line-height: 1;
    text-transform: uppercase;
}
.discount-block .db-content span {
    font-size: 120px;
    color: #FF6D2E;
    line-height: 50px;
    font-style: italic;
    text-align: center;
    font-weight: 700;
}
.discount-block .db-content .db-percentage {
    display: flex;
    align-items: center;
    margin: 0 0 40px;
}
.discount-block .db-content span>span {
    font-size: 40px;
    color: #000000;
    line-height: 1;
}
.discount-block .db-content .db-content-inner {
    min-width: 80%;
}
.qtySelector {
    display: inline-flex;
    align-items: center;
    width: auto;
    border: 1px solid #EAEAEB;
    padding: 5px;
    border-radius: 8px;
    vertical-align: middle;
}
.qtySelector input {
    text-align: center;
    border-style: none;
    width: 40px;
    -webkit-appearance: none !important;
    -moz-appearance:    none !important;
    appearance:         none !important;
    pointer-events: none;
}
.qtySelector input:hover,
.qtySelector input:focus {
    -webkit-appearance: none !important;
    -moz-appearance:    none !important;
    appearance:         none !important;
}
.project-card2 .pc-content-wrap .card-btn-wrap {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}
.qtySelector .decreaseQty, 
.qtySelector .increaseQty {
    padding: 5px;
    cursor: pointer;
    color: #EAEAEB;
}
.qtySelector .decreaseQty:hover, .qtySelector .increaseQty:hover {
    color: #80367B;
}
.shop-by-category-sec .btn-wrap {
    margin-top: 30px;
}
.circle-box {
    margin: 0 0 15px;
    color: #80367B;
    display: flex;
    gap: 8px;
}
.ceo-sec .title-1 {
    margin: 0 0 10px;
}
.circle-box i {
    font-size: 10px;
}
.ceo-sec .img-holder img {
    border-radius: 25px;
}
.img-card {
    position: relative;
    padding: 0;
    border-radius: 25px;
    transform: scale(1);
    transition: all 0.3s ease;
    margin: 0 0 60px;
}
.img-card .img-holder {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.img-card .img-holder:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.08%, rgba(25, 26, 25, 0.5) 100%);
    z-index: 1;
}
.img-card .img-holder img {
    width: 100%; 
}
.img-card:hover {
    transform: scale(1.02);
}
.img-card .img-holder h2 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
    color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px 0 60px;
    backface-visibility: hidden;
    margin: 0;
    text-shadow: 0px 4px 4px #00000040;
    z-index: 2;
}
.img-card>a:hover {
    text-decoration: none;
}
.text-strip {
    text-align: center;
}
.text-strip img {
    margin: 0 auto;
}
.blog-card {
    
}
.blog-card .img-holder {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
}
.blog-card .img-holder img {
    width: 100%;
    transition: all 4s ease;
    transform: scale(1);
}
.blog-card:hover .img-holder img {
    transform: scale(1.2);
}
.blog-card h2 {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin: 0 0 20px;
}
.blog-sec {
    position: relative;
    z-index: 1;
    background: #097C79;
}
.blog-sec .border-design-1 {
    position: absolute;
    z-index: -1;
    left: 50px;
    top: 0;
    height: 100%;
}
.bc-theme-white.blog-card h2 {
    color: #ffffff;
}
.bc-theme-white.blog-card p {
    color: #ffffff;
}
.blog-card p {
    color: #ffffff;
}
.blog-card .btn {
    margin-top: 25px;
}
.bc-theme-white.blog-card h2>a {
    color: inherit;
    text-decoration: none;
}
.blog-sec .btn-wrap {
    margin-top: 40px;
}
.stay-informed .form-wrapper {
    text-align: center;
    max-width: 640px;
    margin: 40px auto 0;
}
.stay-informed .form-wrapper .form-control {
    padding: 13px 30px;
    height: auto;
    font-size: 16px;
    margin: 0 0 30px;
}
.stay-informed .form-wrapper .form-control:focus {
    box-shadow: none;
}
.faq-sec .bg-fixed {object-position: top center;}
.card-design-1 {
    background: #F9F2EC;
    border-radius: 40px;
    padding: 20px;
}
.card-design-1 .img-holder img {
    border-radius: 20px;
}
.card-design-1 h2 {
    font-size: 40px;
    font-family: 'Inter';
    color: #C07C3B;
    font-weight: 700;
    margin: 0 0 20px;
}
.card-design-1 p {
    font-size: 16px;
}
.card-design-1 .btn {
    margin-top: 20px;
}
.card-design-1 .id1-content {
    padding: 30px;
}
.card-design-1.bg-changed {
    background: #F1FCFA;
}
.card-design-1.bg-changed h2 {
    color: #097C79;
}
.border-design-1 img {
    height: 100%;
}
.border-design-1.bd1-left {
    left: 5%;
}
.border-design-1.bd1-right {
    left: auto;
    right: 5%;
}
.rc-top-icon {
}
.reviews-card {
    border-radius: 24px;
    padding: 0 7%;
    text-align: center;
}
.reviews-card .img-holder {
    text-align: center;
    margin: 40px 0 0;
}
.reviews-card .img-holder img {
    margin: 0 auto;
    width: 320px;
    max-width: 80%;
}
.reviews-card .rc-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 15px 0;
}
.reviews-card .rc-date {
    font-size: 16px;
    font-weight: 500;
}
.reviews-card .rc-top-icon {
    width: 85px !important;
    display: inline-block !important;
}
.reviews-slider .reviews-card {
    scale: 0.8;
    transition: all 0.3s linear;
}
.reviews-slider .center .reviews-card {
    scale: 1;
}
.reviews-slider.sliderDots  .owl-dots {
    position: relative;
    top: 0;
    margin: 30px 0 !important;
}
.reviews-slider.sliderNav.owl-theme .owl-nav [class*=owl-]:hover {
    transition: all 0.3s ease;
    background: transparent;
    color: #80367B;
}
.reviews-slider.sliderNav.owl-theme .owl-nav [class*=owl-] {
    font-size: 100px;
    position: absolute;
    top: 50%;
    line-height: 1;
    transform: translateY(-50%);
}
.reviews-slider.sliderNav.owl-theme .owl-nav .owl-prev {
    left: 0vw;
    top: 50%;
}
.reviews-slider.sliderNav.owl-theme .owl-nav .owl-next {
    right: 0;
}
.reviews-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
}
.reviews-navigation .reviews-navigation-pic {
    flex: 0 0 300px;
    max-width: 300px;
    width: 300px;
}
.reviews-pic img,
.reviews-pic span {
    display: inline-block !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    margin: 0 auto;
    background-color: #fff;
}
.reviews-card .rc-content h2 {
    color: #ffffff;
}
.reviews-card .rc-content p {
    color: #ffffff;
    line-height: 1.5;
}
.reviews-pic {
    border: 5px solid rgba(255, 12, 0, 0);
    border-radius: 50%;
    padding: 10px;
    transform: scale(0.6);
    transition: all 0.4s ease;
    display: flex;
}

.reviews-slider-bottom .owl-item.current .reviews-pic {
    border-color: rgba(255, 12, 0, 1);
    transform: scale(1);
}
.reviews-navigation .slider-nav-btn {
    position: relative;
    top: 0;
    left: 0;
    align-self: center;
    color: #ffffff;
    text-decoration: none;
    opacity: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.slider_withNav .reviews-navigation .slider-nav-btn {
    position: relative;
    top: 0;
    left: 0 !important;
    right: 0 !important;
    opacity: 1;
    display: inline-flex;
    gap: 10px;
    margin: 0;
}
.slider_withNav {
    position: relative;
    z-index: 1;
}
.slider_withNav .slider-nav-btn {
    position: absolute;
    /* transform: translateY(-50%)rotate(45deg); */
    top: 50%;
    z-index: 1;
    /* border: 3px solid #80367B; */
    /* width: 25px; */
    /* height: 25px; */
    display: inline-block;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.slider_withNav .slider-nav-btn.slider-prev {
    left: 30px;
    border-top: none;
    border-right: none;
}
.slider_withNav .slider-nav-btn.slider-next {
    right: 30px;
    left: auto;
    border-left: none;
    border-bottom: none;
}
.gold-box {
    background: #F9F2EC;
    padding: 65px;
    border-radius: 24px;
    text-align: center;
}
.text-gold {
    color: #D09965;
}
.gold-box p {
    font-size: 20px;
}
.slider_withNav .sliderNav.owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}
.slider_withNav .slider-nav-btn:hover {
    opacity: 1;
}
.icon-box-1 {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
}
.icon-box-1 span {
    font-size: 48px;
    font-weight: 600;
    color: #80367B;
    margin-right: 30px;
}
.icon-box-row {
    margin-bottom: 170px;
}
.icon-info-card {
    background: #80367B;
    text-align: center;
    padding: 20px 16px;
    border-radius: 20px;
    height: 100%;
}

.icon-info-card h3 {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    color: #ffffff;
    margin: 15px 0 15px;
}

.icon-info-card p {
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #ffffff;
}
.icon-info-card p:last-child {
    margin-bottom: 0;
}
.icon-info-card .iic-icon {
    margin: 0 auto;
    display: inline-block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.icon-info-card-sec {
    position: relative;
    z-index: 1;
    margin-top: -130px;
}
.nav-link-list.angle-icon-link a i {
    position: absolute;
    left: 0;
    top: 9px;
}
.availablity-field-box {position: relative;padding: 9px 20px 9px 75px;background: #ffffff;border-radius: 8px;min-height: 70px;}

.check-availablity-wrap {
    background: #80367B;
    padding: 20px;
    border-radius: 16px;
    position: relative;
    padding-right: 190px;
}

.availablity-field-box .afb-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #D33A28;
    width: 42px;
    height: 42px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.availablity-btn {
    background: #000000;
    color: #ffffff;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    border: 4px solid #000000;
    flex: 0 0;
    font-family: "Lexend", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    justify-content: space-between;
    transform: scale(1);
    transition: all 0.3s ease-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.0);
}
.availablity-btn:hover {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);
    transition: all 0.3s ease-out;
    transform: scale(1.05);
}
.check-availablity-wrap .availablity-btn {
    position: absolute;
    right: 15px;
    top: 19px;
    max-width: 145px;
}
.check-availablity-sec {
    padding: 50px 0;
}
.availablity-field-box .form-control {
    padding: 0;
    border-style: none;
    height: auto;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Lexend';
}
.availablity-field-box label {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    font-family: "Lexend", sans-serif;
}
.availablity-field-box .form-control:focus {
    box-shadow: none;
    outline: none;
}
.px-5_per {
    padding: 0 5%;
}

.experience-card {
    backface-visibility: hidden;
    height: 100%;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}
.experience-card .ec-img {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}
.experience-card .eci-overlap {
    width: 100%;
    padding: 30px 32px 35px;
}
/**/
.experience-card.imgHAdjst .eci-overlap{
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.experience-card.dbsBox .eci-overlap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}
.vmvSec .experience-card.dbsBox .eci-overlap,
.jrlSec .experience-card.dbsBox .eci-overlap{
    justify-content: flex-start;
    min-height: 0;
}
/**/
.discount-block:hover .bg-fixed {
    transform: scale(1.2);
}
.experience-card .eci-overlap h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0 10px;
}
.experience-card .eci-overlap p {
    font-size: 15px;
    /* color: #ffffff; */
}
.know-more-btn {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 48px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
    padding: 0 30px;
}
.know-more-btn span {
    background: #000000;
    width: 55px;
    text-align: center;
}
.o-hidden {
    overflow: hidden !important;
}
.know-more-btn:hover {
    color: #ffffff;
    text-decoration: none;
}
.experience-slider .owl-stage {
    display: flex;
}
.experience-slider .ec-icon {
    display: inline-block !important;
    width: auto !important;
}
.experience-card .eci-overlap.bg-dark {
    background-color: rgba(0, 0, 0, 0.85) !important;
}
.experience-card .eci-overlap.bg-dark .know-more-btn span {
    background: #80367B;
}


.card-1 {
    margin-bottom: 30px;
}
.card-1 .c1-img {
}
.card-1 .c1-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 8s ease;
}
.card-1:hover .c1-img>img {
    transform: scale(1.2)
}
.card-1 .c1-img .c1-i-overlap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 30px 25px;
    height: 87%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: end;
}
.card-1 .c1-img {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
}
.card-1 .c1-img .c1-i-overlap h2 {
    font-size: 35px;
    color: #ffff;
    font-weight: 600;
    font-family: 'Poppins';
    margin: 10px 0 10px;
    text-transform: uppercase;
    line-height: 1.37em;
}
.card-1 .c1-img .c1-i-overlap .c1-io-inner .c1-icon {
    transition: all 0.3s ease;
}
.color-inherit {
    color: inherit !important;
}
.weight-400 {
    font-weight: 400 !important;
}
.weight-300 {
    font-weight: 300 !important;
}

.map-secton {
    position: relative;
    z-index: 1;
    padding: 270px 0 60px;
}
.card-black {
    background: #191A19;
    padding: 35px;
    border-radius: 15px;
    height: 100%;
}
.card-black h2 {
    font-size: 24px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    margin: 0 0 20px;
}
.card-black p {
    color: #ffffff;
}
.img-card .btn-bottom-overlap {
    position: relative;
    z-index: 1;
    margin: -40px auto 0;
}
.img-card .ic-btn-wrap {
    text-align: center;
    display: block;
    position: relative;
    z-index: 3;
}
.reviews-sec {
    background: #191A19;
}
.reviews-sec .title-4 {
    color: #80367B;
}
.card-black .form-design {
    margin-top: 30px;
}
.weight-bold {
    font-weight: 700;
}
.card-bottom-box {
    margin: 103px 0 0;
}
.card-bottom-box {
    margin: 97px 0 0;
}
.card-bottom-box p {
    margin-bottom: 30px;
}
.contact-info-box>p {
    margin: 0;
}
.contact-info-box {
    margin: 20px 0 30px;
}
.contact-info-box p>a {
    color: inherit;
}
.card-black .form-design .btn {
    margin-top: 10px;
}

.reviews-navigation .google-rating {
    position: absolute;
    right: 0;
    bottom: 20px;
}
.sec-committed p {
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.upcomingEvents{
    padding-top: 45px;
    padding-bottom: 50px;
}
.event-info {
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    margin: 0 0 20px;
}
.bg_gray {
    background: #EEEEEE !important;
}
.event-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
    border: 1px solid #dadada;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.13);
}
.event-box .img-holder {
    flex: 0 0 50%;
    max-width: 50%;
    align-items: center;
    display: flex;    
}
.event-box .img-holder img{
    width: 100%;
}
.event-box .event-content {
    align-self: center;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px;
}
.event-box .event-content .btn-wrap {
    margin-top: 20px;
}
.badge {
    border-radius: 0px;
}
.event-box.event-img-top {
    display: block;
    height: 100%;
}
.event-box.event-img-top .img-holder {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
}
.event-box.event-img-top .event-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 25px 30px 80px;
}
.eventHDR{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 0;
    background: #fafafa;
}
.event-box-1 .eventHDR{
    flex-direction: column;
    background-color: #f3e2ef;
    text-align: center;
}
.event-box-1 .btn-wrap{
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #f3e2ef;
}
.event-box-1 .eventHD,
.event-box-1 .eventInfoWrap{
    max-width: 100%;
}
.eventHD{
    max-width: calc(50% - 20px);
}
.eventInfoWrap{
    max-width: 50%;
}
.eventHDRMob{
    display: none;
}
.event-box-2 .eb2HDR{
    padding: 25px 30px;
    background-color: #fceedd;
    min-height: 120px;
}
.event-box-2 .event-info{
    margin: 0;
    min-height: 50px;
}
.bg-2 {
    background-color: #EA0B95;
}
.bg-3 {
    background-color: #80367B;
}
.bg-4 {
    background-color: #1C9AD6;
}
.bg-5 {
    background-color: #FF6200;
}
.bg-6 {
    background-color: #539218;
}
.event-box.event-img-top .event-content .btn-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    width: 100%;
}
.right-0 {
    right: 0 !important;
}
.shap-in-right.title-1 span img {
    right: 0;
    top: 5px;
}
.experience-card .btn-wrap {
    margin-top: 30px;
}
.title-1.shap-in-right-end span img {
    right: auto;
    transform: translateX(0%);
    bottom: -6px;
    left: 102%;
    top: auto;
}
.fhSlider{
    margin-top: 30px;
}
.fhSlider .owl-stage{
    display: flex;
    align-items: stretch;
}

.fhSlider .owl-stage .item{
    height: 100%;
    padding: 10px;
}
.fhSlider .event-box.event-img-top{
    background: #F5F5F5;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
}
.fhSlider .event-box .title-2{
    margin-bottom: 10px;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 35px;
}
.owl-theme .owl-dots .owl-dot span{
    background: #E5E7EB;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #2563EB;
}
input:focus, button:focus, textarea:focus{
    outline: none;
    box-shadow: none;
}
.newsLetter{}
.newsLetter .title-2,
.newsLetter .ml-form-embedBody h4{
    font-size: 32px;
    font-weight: 400;
    color: white;
}
.newsLetter .ml-form-embedBody h4{
    font-family: "Inter", sans-serif !important;
    font-size: 32px !important;
    font-weight: 400 !important;
    color: white !important;
}
.newsLetterBox{
    position: relative;
    margin-bottom: 25px;
}
.newsLetterBox input{
    width: 100%;
    height: 62px;
    background: #D4D4D4;
    border: 1px solid #D4D4D4;
    padding: 20px;
    padding-right: 50px;
}
.newsLetterBox input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #050038;
}
.newsLetterBox input::-moz-placeholder { /* Firefox 19+ */
  color: #050038;
}
.newsLetterBox input:-ms-input-placeholder { /* IE 10+ */
  color: #050038;
}
.newsLetterBox input:-moz-placeholder { /* Firefox 18- */
  color: #050038;
}
.newsLetterBox button{
    background: none;
    border: 0;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.newsLetterBox button i{
    color: #2C2C2C;
}
.txt14{
    font-size: 14px;
    font-weight: 400;
}
.colorGray{
    color: #A1A1A1;
}
.social{
    margin-top: 70px;
}
.social h4{
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 18px;
}
.linksBox{
    margin-bottom: 64px;
    padding-left: 30px;
}
.contentStart{
    justify-content: flex-start;
    align-items: flex-start;
}
.img-holder.mob{
    display: none;
}
.ipBanner h1,
.ipH2{
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
}
.ipBanner h1 span,
.ipH2 span{
    font-weight: 600;
}
.ipBanner p{
    font-weight: 400;
}
.secHDR{
    margin-bottom: 48px;
}
.dbsSec .experience-card{
    border: 1px solid #D9D9D9;
}
.dbsSlider.owl-carousel .item{
    padding: 1px;
    height: 100%;
}
.ipBanner .banner-content{
    max-width: 50%;
}
.dbsSlider.owl-carousel .owl-stage{
    display: flex;
    align-items: stretch;
}
.dbsSlider.owl-carousel .owl-nav button.owl-next, 
.dbsSlider.owl-carousel .owl-nav button.owl-prev{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 42px;
    line-height: 0;
    color: #000;
    position: absolute;
    top: 50%;
    margin: -24px 0 0;
}
.dbsSlider.owl-carousel .owl-nav button.owl-prev{
    left: -24px;
}
.dbsSlider.owl-carousel .owl-nav button.owl-next{
    right: -24px;
}
.dbsSlider.owl-carousel .owl-nav button.owl-next span, 
.dbsSlider.owl-carousel .owl-nav button.owl-prev span{
    position: relative;
    top: -2px;
}
.ipBanner .HeroBannerIn{
    min-height: 500px;
}
.breadcrumb{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 50px !important;
    /*position: absolute;
    bottom: calc(100% + 50px);*/
}
.breadcrumb.fdCol{
    align-items: flex-start;
}
.breadcrumb li{
    position: relative;
    display: flex;
    align-items: center;
    color: #4C215D;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}
.breadcrumb li:after{
    display: block;
    content: "/";
    font-weight: 800;
    margin-right: 3px;
}
.breadcrumb.fdCol li:after{
    display: none;
}
.breadcrumb li:last-child a{
    pointer-events: none;
}
.breadcrumb li:last-child:after{
    display: none;
}
.breadcrumb li a{
    color: #4C215D;
    margin-right: 3px;
    text-decoration: none;
}
.btnSet .btn{
    margin-top: 0;
}
.btnSet .btn + .btn{
    margin-left: 20px;
}
.eybBox{
    display: block;
    background-color: #fff;
    border: 1px solid #E3E2EC;
    border-radius: 10px;
    padding: 25px;
    padding-bottom: 56px;
    height: 100%;
    text-decoration: none;
}
a.eybBox *{
    color: #000;
}
.eybBox.pb25{
    padding-bottom: 25px;
}
.eybBox ul.txt16,
.eybBox ol.txt16{
    margin-left: 20px;
}
.eybBox ul.txt16 li,
.eybBox ol.txt16 li{
    margin-bottom: 4px;
}

.eybIcon{
    width: 65px;
    height: 65px;
    border: 1px solid #E3E2EC;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eybList .pos-icons {
    width: 200px;
    height: 180px;
    display: inline-block;
    margin: 0 auto;
}

.bfSec .experience-card{
    border: 1px solid #d9d9d9;
}
.printBlock{
    margin-left: 40px;
    margin-right: 40px;
    position: relative;
}
.print{
    position: absolute;
    right: 0;
    top: 24px;
    display: inline-flex;
    gap: 5px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 4px 16px;
    text-decoration: none;
    color: #000;
    transition: all ease 0.3s;
}
.print:hover{
    background-color: #d9d9d9;
    border-color: #d9d9d9;
    color: #000;
}
.initImg{
    padding: 20px 10px 0;
}
.experience-card .expcImg,
.expcImg{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.experience-card .expcImg img,
.expcImg img{
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
.ccpTabSec{
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e7e6f1",GradientType=1);
}
.ccpTab{
/*    max-width: 1105px;*/
    margin-left: auto;
    margin-right: auto;
}
.ccpTab .nav-pills{
    gap: 15px;
    justify-content: center;
}
.ccpTab .nav-link{
    background-color: #E3E2EC;
    min-width: 145px;
    padding: 12px 16px;
    color: black;
}
.ccpTab .nav-pills .nav-link.active, 
.ccpTab .nav-pills .show > .nav-link{
    background-color: #6153BD;
}
.ccpTbCtnt{
/*    max-width: 1030px;*/
    margin-left: auto;
    margin-right: auto;
}
.ccpTbCtntBlock{
    align-items: center;
    justify-content: space-between;
}
.ccpTbCtntImg{
    max-width: 350px;
}
.ccpTbCtntTxt{
    max-width: calc(100% - 350px);
    padding-left: 55px;
}


.ccpTbCtntBlockSmlImg .ccpTbCtntImg{
    max-width: 250px;
}
.ccpTbCtntBlockSmlImg .ccpTbCtntTxt{
    max-width: calc(100% - 250px);
    padding-left: 55px;
}


.inv .ccpTbCtntTxt{
    padding-left: 0;
    padding-right: 55px;
}
.ejfList{
    align-items: stretch;
    justify-content: center;
    margin: 0;
    margin-left: -5px;
    margin-right: -5px;
    list-style: none;
    padding: 0;
}
.ejfList > li{
    width: 20%;
    padding: 5px;
    list-style: none;
}
.ejfList2Col > li{
    width: 50%;
}
.ejfList3Col > li{
    width: 33.33%;
}
.ejfList4Col > li{
    width: 25%;
}
.ejfListC40pCol > li{
    width: 40%;
}
.ejfBox {
    background-color: #fff;
    border: 1px solid #E3E2EC;
    border-radius: 8px;
    height: 100%;
}
.ejfBox .expcImg{
    height: 210px;
}
.ejfTxt{
    padding: 0 20px 30px;
}
.pdSec{
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 74%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 74%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 74%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e7e6f1",GradientType=1);
}
.pdList{
    align-items: stretch;
    justify-content: flex-start;
    margin: 0;
    margin-left: -15px;
    margin-right: -15px;
    list-style: none;
    padding: 0;
}
.pdList li{
    width: 20%;
    padding: 10px 15px;
    list-style: none;
}
.pdBox{}
.pdImg{
    background-color: white;
    border-radius: 10px;
    padding: 4px;
    width: 100%;
    height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pdImg img{
    width: auto;
}
.wcaCtnt{
    justify-content: space-between;
    padding: 0 28px 28px;
    border-bottom: 1px solid #A1A1A1;
}
.wcaCtntBlock{
    width: calc(50% - 6px);
}
.cwaf{
    padding-top: 40px;
}
.wcaContact{
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.wcaContact li{
    list-style: none;
}
.wcaContact li a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #6941C6;
    transition: all ease 0.3s;
}
.wcaContact li a span{
    text-decoration: underline;
}
.wcaContact li a:hover{
    color: black;
}
.wcaContact li a:hover span{
    text-decoration: none;
}
.dbsBox .expcImg{
    height: 300px;
}
.noStyle.abtGcList{
    align-items: stretch;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
}
.noStyle.abtGcList li{
    width: 20%;
    padding: 10px 10px;
}
.dbsBox .expcImg img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
.abtGcSec{
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e7e6f1",GradientType=1);
}
.abtGcBox{
    background-color: white;
    border: 1px solid #E3E2EC;
    border-radius: 10px;
    padding: 10px;
    height: 100%;
}
.abtGcImg{
    border: 1px solid #E3E2EC;
    border-radius: 10px;
/*    height: 172.235px;*/
/*    height: 184px;*/
max-height: 346px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*.abtGcImg img {
    width: auto;
    height: 100%;
    max-width: none;
    max-height: 100%;
    margin: auto;
    object-fit: cover;
}*/
.abtGcImg img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    margin: auto;
    object-fit: cover;
}
.omsSec .row .col-md-6{
    margin: 14px 0;
}
.omsBox{
    background-color: #fff;
    border: 1px solid #E3E2EC;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}
.omsLogo{
    border: 1px solid #E3E2EC;
    border-radius: 10px;
    display: inline-flex;
}
.omsBox .title-2{
    font-size: 28px;
}
.abtGcPgSec{
    border-top: 1px solid #E3E2EC;
    padding-top: 42px;
    padding-bottom: 42px;

    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 30%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 30%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e7e6f1",GradientType=1);
}
.mlstSec{
    border-top: 1px solid #E3E2EC;

    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 30%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 30%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e7e6f1",GradientType=1);
}
.vmvSec, .jrlSec{
    background-color: #E3E2EC;
}
.wafiSec{
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(231,230,241,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e7e6f1",GradientType=1);
}
.logoHD img{
    max-width: 590px;
}
.iuSec .fhSlider .event-box.event-img-top{
    background: #fff;
}
.bg_gray .owl-theme .owl-dots .owl-dot span,
.bgPurple .owl-theme .owl-dots .owl-dot span{
    background: #fff;
}
.bg_gray .owl-theme .owl-dots .owl-dot.active span, 
.bg_gray .owl-theme .owl-dots .owl-dot:hover span{
    background: #2563EB;
}
.bgPurple .owl-theme .owl-dots .owl-dot.active span, 
.bgPurple .owl-theme .owl-dots .owl-dot:hover span{
    background: #A1A1A1;
}
.feaEmpCtnt{
    align-items: stretch;
    justify-content: space-between;
}
.feaEmpBox{
    width: 100%;
    max-width: calc(50% - 10px);
    text-align: center;
    margin-bottom: 36px;
    display: none;
    align-items: center;
    justify-content: space-between;
}
.feaEmpAuthrInfo {
    width: 320px;
    padding: 10px;
    flex-shrink: 0;
}
.feaEmpBoxTxt{
    width: calc(100% - 320px);
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 35px 42px;
    /*margin-bottom: 42px;*/
    position: relative;
}
.feaEmpBoxTxt p{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.feaEmpBoxTxt a{
    color: #4C215D;
    text-decoration: underline;
    display: inline-block;
}
/*.feaEmpBoxTxt:after {
    display: block;
    content: "";
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 32px solid #F5F5F5;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}*/
.feaEmpAuthrImg{
    width: 100%;
    max-height: 152px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}
.feaEmpAuthrImg img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.cmaFormBlock ul.noStyle{
    display: flex;
    justify-content: space-between;
}
.cmaFormBlock ul.noStyle li{
    width: calc(50% - 15px);
    margin-bottom: 36px;
}
.formInpt input,
.formInpt textarea,
.formInpt select,
.crBlock .form-check-label{
/*    background: #fff;*/
    border: 1px solid #000;
    border-radius: 20px;
    width: 100%;
    height: 84px;
    padding: 20px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #000;
}
.formInpt textarea{
    height: 148px;
    resize: none;
}
.crBlock .form-check-label{
    display: flex;
    align-items: center;
}
.form-control:focus,
.form-select:focus{
    border-color: #8B42A8;
    box-shadow: none;
}
.formInpt input::-webkit-input-placeholder,
.formInpt textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #A1A1A1;
}
.formInpt input::-moz-placeholder,
.formInpt textarea::-moz-placeholder { /* Firefox 19+ */
  color: #A1A1A1;
}
.formInpt input:-ms-input-placeholder,
.formInpt textarea:-ms-input-placeholder { /* IE 10+ */
  color: #A1A1A1;
}
.formInpt input:-moz-placeholder,
.formInpt textarea:-moz-placeholder { /* Firefox 18- */
  color: #A1A1A1;
}
.crBlock{
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.crBlock .form-check{
    position: relative;
    padding: 0;
    margin: 0;
}
.crBlock .form-check-input{
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.crBlock input[type="radio"]:checked ~ .form-check-label{
    background-color: #8B42A8;
    border-color: #8B42A8;
    color: white;
}
.customCB input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.customCB label {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
}

.customCB label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 12px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}

.customCB input:checked + label:before{
    background-color: #8B42A8;
    border-color: #8B42A8;
}

.customCB input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 10px;
  width: 7px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.note{
    margin-top: 48px;
}
.note p a{
    color: #2488C7;
    text-decoration: none;
}
.newsltrCtnt .col-md-6{
    margin-bottom: 50px;
    display: none;
}
.newsltrCtnt .event-box .img-holder{
    height: 288px;
    overflow: hidden;
    cursor: pointer;
}
.newsltrCtnt .img-holder img,
.newsltrCtnt .img-holder iframe,
.newsltrCtnt .img-holder video{
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    pointer-events: none;
}

.vrModal{
    --bs-modal-width: 1210px;
    padding-left: 15px !important;
    padding-right: 15px;
}
.vrModal .modal-body{
    padding: 0;
}
.vrModal .modal-content{
    overflow: hidden;
}
.vrModal iframe{
    width: 100%;
    height: 680px;
    display: block;
}

/* Accordion styles */
.faqCtnt .tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faqCtnt .tabs h5 { color:#80367B; margin-top:10px; }

.faqCtnt .tab {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  width: 100%;
  color: #1e1e1e;
  overflow: hidden;
  margin-bottom: 16px;
  display: none;
}
.faqCtnt .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #F5F5F5;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.faqCtnt .tab-label:hover {
  background: #fff;
}
.faqCtnt .tab-label::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/angleDown.png") center center no-repeat;
  background-size: 100%;
  text-align: center;
  transition: all 0.35s;
  flex-shrink: 0;
}
.faqCtnt .tab-content {
  max-height: 0;
  padding: 0 16px;
  color: #1e1e1e;
  background: white;
  font-size: 16px;
  transition: all 0.35s;
}
.faqCtnt .tab-content p{
    font-size: 16px;
}
.faqCtnt .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.faqCtnt .tab-close:hover {
  background: #1a252f;
}

input:checked + .tab-label {
  background: #fff;
}
input:checked + .tab-label::after {
  transform: rotate(180deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 0 16px 16px;
}
.ulCtnt ul li{
    margin-bottom: 10px;
}

/*Tabs New*/
.faqtabs {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 12px;
}
.faqtab{
  cursor: pointer;
  padding:10px 20px;
  margin:0px 2px;
  background:#f5f5f5;
  border: 1px solid #d9d9d9;
  display:inline-block;
  color:#000;
  border-radius:8px;
}
.panels{}
.panel{
  display:none;
  animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.radio{
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel{
  display:block
}
#one:checked ~ .faqtabs #one-tab,
#two:checked ~ .faqtabs #two-tab{
  background:#000;
  color:#fff;
  border-color: #000;
}
/**/
.formInpt.nbySlct select{
    border-radius: 8px;
    width: 100%;
    height: 42px;
    padding: 0px 30px 0 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}
.dFlex.secHDR{
    align-items: center;
}
.ol_abc{
    list-style-type: lower-alpha;
}
ol ol, ol ul, ul ol, ul ul{
    margin-top: 4px;
}
/**/
/**/
.pgScrollNav {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
.pgScrollNav.setTop{
    position: fixed;
    top: 90px;
    background-color: #fff;
    border-bottom: 1px solid #D4D4D4;
    margin: 0!important;
    padding: 10px 0;
}
.pgScrollNav ul {
    gap: 15px;
    justify-content: center;
}
.pgScrollNav ul a {
    display: block;
    background-color: #E3E2EC;
    border-radius: 0.375rem;
    min-width: 145px;
    padding: 12px 16px;
    color: black;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}
.pgScrollNav ul a.is-current,
#desktop-nav ul li.active a,
.pgScrollNav ul li a.active {
    background-color: #6153BD;
    color: #fff;
}
/**/
.imgTxtSbS .ejfBox{
    align-items: center;
}
.imgTxtSbS .expcImg{
    width: 40%;
    align-items: center;
}
.expcImgIn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgTxtSbS .ejfTxt{
    width: 60%;
    padding: 20px;
    align-items: center;
}
.ejfList li ul{
    margin-left: 20px;
    list-style-type: disc;
}
.offsetTop {
/*    padding-top: 240px;*/
position: relative;
}
.mt156{
    margin-top: 156px;
}
.patImgIn{
    max-width: 200px;
    margin: auto;
    position: relative;
}
.patImgIn:before{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 82%;
    border: 3px dashed #4c1e5e;
}
.ccpNBIn > div:last-child .patImgIn:before{
    display: none;
}

.ccpNBIn > div:last-child .patImgIn:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -9px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 24px solid #4c1e5e;
    border-bottom: 12px solid transparent;
}

.ccpNBem .patImgIn:before{
    border-color: #258DCB;
}
.ccpNBem .ccpNBIn > div:last-child .patImgIn:after{
    border-left-color: #258DCB;
}
.ccpContactBlock{
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #dadada;
}
.vmvSec .row{
    justify-content: center;
}
.vmvSec .row > div:not(:last-child){
    margin-bottom: 30px;
}
.dbsBoxH{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.dbsBox.dbsBoxH .expcImgH{
    width: 37%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.dbsBox.dbsBoxH .expcImg{
    width: 300px;
    flex-shrink: 0;
}
.dbsBox.dbsBoxH .eci-overlap{
    width: 63%;
    padding: 30px 110px;
}
/*.dbsBoxH .eci-overlap h2,
.dbsBoxH .eci-overlap p{
    display: none;
}*/
.dbsBoxH .expcHdH{
    padding: 0 32px;
}
.dbsBoxH .expcHdH h2{
    font-weight: 700;
}

/*Timeline Tabs Start*/
.tlTabsMain{
    align-items: center;
    justify-content: space-between;
}
.tabs-nav{
    position: relative;
    width: 220px;
    display: flex;
    justify-content: flex-end;
}
.tabs-nav:before{
    display: block;
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    border-left: 2px dotted; #8B42A8;
}
.tlTabs{
    width: calc(100% - 260px);
}

.tlNav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 180px;
}

.tlNav a {
  position: relative;
  padding: 12px 16px;
  text-align: center;
  width: 100%;
  cursor: pointer;
  font-weight: 700;
  background-color: #a165b8;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
}
/**/
.tlNav a:nth-child(1){
    background-color: #fde0f7;
}
.tlNav a:nth-child(2){
    background-color: #c8fbef;
}
.tlNav a:nth-child(3){
    background-color: #f0e7ff;
}
.tlNav a:nth-child(4){
    background-color: #cfdbfa;
}
.tlNav a:nth-child(5){
    background-color: #ffe2d3;
}
.tlNav a:nth-child(6){
    background-color: #eff7ff;
}
/**/


.tlNav a:before{
    display: block;
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -1px;
    width: 40px;
    border-bottom: 2px dotted #a165b8;
}
/**/
.tlNav a:nth-child(1):before{
    border-bottom-color: rgba(244, 80, 208, 1);
}
.tlNav a:nth-child(2):before{
    border-bottom-color: rgba(15, 232, 180, 1);
}
.tlNav a:nth-child(3):before{
    border-bottom-color: rgba(175, 129, 255, 1);
}
.tlNav a:nth-child(4):before{
    border-bottom-color: rgba(67, 115, 237, 1);
}
.tlNav a:nth-child(5):before{
    border-bottom-color: rgba(255, 126, 58, 1);
}
.tlNav a:nth-child(6):before{
    border-bottom-color: rgba(35, 145, 255, 1);
}
/**/
.tlNav a:after {
    display: block;
    content: "";
    position: absolute;
    left: -40px;
    top: 50%;
    margin-top: -6px;
    margin-left: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #a165b8;
}
/**/
.tlNav a:nth-child(1):after{
    background-color: rgba(244, 80, 208, 1);
}
.tlNav a:nth-child(2):after{
    background-color: rgba(15, 232, 180, 1);
}
.tlNav a:nth-child(3):after{
    background-color: rgba(175, 129, 255, 1);
}
.tlNav a:nth-child(4):after{
    background-color: rgba(67, 115, 237, 1);
}
.tlNav a:nth-child(5):after{
    background-color: rgba(255, 126, 58, 1);
}
.tlNav a:nth-child(6):after{
    background-color: rgba(35, 145, 255, 1);
}
/**/

.tlNav a.selected {
    color: #000;
    outline: 2px solid #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.tlNav a.selected:before{
}

.tlNav a.selected:after{
}

.tlTabs .content {
  padding: 36px;
  border-radius: 12px;
  position: relative;
  transition: opacity 0.1s linear 0s;
  display: none;
  background-color: #fff;
  border: 1px solid #fff;
}
/**/
.tlTabs .content:nth-child(1){
    background-color: #fde0f7;
}
.tlTabs .content:nth-child(2){
    background-color: #c8fbef;
}
.tlTabs .content:nth-child(3){
    background-color: #f0e7ff;
}
.tlTabs .content:nth-child(4){
    background-color: #cfdbfa;
}
.tlTabs .content:nth-child(5){
    background-color: #ffe2d3;
}
.tlTabs .content:nth-child(6){
    background-color: #eff7ff;
}
/**/

.tlTabs .content.visible {
  display: block;
}

.ipBanner.loginBanner .HeroBannerIn{
    min-height: 240px;
    border-bottom: 1px solid #f1f1f1;
}
/*Login Page*/
.lfpBoxWrap {
    width: 100%;
    max-width: 720px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
.lfpBox {
    background-color: white;
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 0 4px rgba(28, 154, 214, 1.0);
}
.lfpHD {
    background-color: #daf3ff;
    border-radius: 8px;
    padding: 16px 8px;
    text-align: center;
}
.lsForm {
    padding: 0 36px;
}
.lfpBox .formInpt {
    position: relative;
}
.lfpBox .formInpt label{
    display: block;
}
.lfpBox .formInpt label span {
    color: #C60000;
}
.lfpBox .formInpt input[type="text"], 
.lfpBox .formInpt input[type="email"], 
.lfpBox .formInpt input[type="date"], 
.lfpBox .formInpt input[type="password"], 
.lfpBox .formInpt textarea, 
.lfpBox .formInpt select {
    display: block;
    width: 100%;
    height: 48px;
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #a1a1a1;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    line-height: normal;
    color: black;
    text-align: left;
    transition: all ease 0.2s;
}
.lfpBox .txt18{
    font-size: 18px;
}
.lfpBox .formInpt input:focus,
.lfpBox .formInpt textarea:focus,
.lfpBox .formInpt select:focus {
    box-shadow: 0 0 4px rgba(28, 154, 214, 1.0);
    border-color: rgba(28, 154, 214, 1.0);;
}

.lfpBox .formInpt textarea {
    resize: none;
    height: 128px;
}

.lfpBox .formInpt input::-webkit-input-placeholder,
.lfpBox .formInpt textarea::-webkit-input-placeholder {
    color: #A1A1A1;
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.lfpBox .formInpt input::-moz-placeholder,
.lfpBox .formInpt textarea::-moz-placeholder {
    color: #A1A1A1;
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.lfpBox .formInpt input:-ms-input-placeholder,
.lfpBox .formInpt textarea:-ms-input-placeholder {
    color: #A1A1A1;
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.lfpBox .formInpt input:-moz-placeholder,
.lfpBox .formInpt textarea:-moz-placeholder {
    color: #A1A1A1;
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.shPW button {
    display: block;
    background: none;
    border: 0;
    padding: 0;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    bottom: 16px;
    cursor: pointer;
}

.shPW button.show img.showPW,
.shPW button.hide img.hidePW {
    pointer-events: none;
}

.shPW button.show img.showPW {
    display: block;
}

.shPW button.hide img.hidePW {
    display: block;
}

.shPW button.hide img.showPW,
.shPW button.show img.hidePW {
    display: none;
}
/**/
/* CSS Custom Checkbox */
.tccL {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tccL input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tccL .checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #a1a1a1;
    border-radius: 3px;
    flex-shrink: 0;
}

.tccL:hover input~.checkmark {
    background-color: transparent;
}

.tccL input:checked~.checkmark {
    background-color: transparent;
}

.tccL .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.tccL input:checked~.checkmark:after {
    display: block;
}

.tccL .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #a1a1a1;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.psCtntBlock {
    text-align: justify;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 10px;
}
.psCtntBlock:last-child{
    border: 0;
    padding: 0;
}
.abtMbrspBlock{
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(231, 230, 241, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(231, 230, 241, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(231, 230, 241, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e7e6f1",GradientType=1);
}
.abtMbrspBlock .ccpTbCtntBlock{
    justify-content: center;
    gap: 10px;
}
.abtMbrspBlock .ccpTbCtntTxt{
    padding-left: 0;
}
.contactUsBlock .eybBox{
    padding-bottom: 25px;
}
.printBlock.dFlex{
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 32px;
}
.printBlock.dFlex .print{
    position: static;
}
.share{
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.share a {
    border: 1px solid #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #000;
    transition: all ease 0.3s;
}
.share a:hover{
    border-color: #d9d9d9;
    background-color: #d9d9d9;
}

.newsltrCtnt ol li::marker{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}
.newsltrCtnt ol.normalOL li::marker{
    font-size: inherit;
    font-weight: 400;
    line-height: normal;
    color: inherit;
}
.newsltrCtnt ol li:has(h2)::marker{
    font-size: calc(1.325rem + .55vw);
    font-weight: 700;
}
.newsLetter .ml-subscribe-form{

}
.newsLetter .ml-form-embedBody{
    padding: 0 !important;
}
.newsLetter #mlb2-6077971.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow{
    position: relative;
}
.newsLetter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal{
    width: 100% !important;
}
.newsLetter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields{
    padding-right: 0 !important;
}
.newsLetter #mlb2-6077971.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input{
    width: 100% !important;
    height: 62px !important;
    background: #D4D4D4 !important;
    border: 1px solid #D4D4D4 !important;
    padding: 20px !important;
    padding-right: 50px !important;
    font-family: "Inter", sans-serif;
}
.newsLetter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal{
    background: none !important;
    border: 0 !important;
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 26px !important;
}

.newsLetter #mlb2-6077971.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button{
    background-color: transparent !important;
    border: 0 !important;
    width: 26px !important;
    height: 26px !important;
    overflow: hidden !important;
    text-indent: -9999px !important;
    background: url("../img/arwRight.png") center center no-repeat !important;
    background-size: 16px !important;
    padding: 0 !important;
}
.newsLetter #mlb2-6077971.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover{
    background-color: transparent !important;
}
.contactWAF .btnSet{
    justify-content: center;
}

/*.iuSec .newsltrCtnt .col-md-12 h2{
    font-size: 1.5rem;
}*/
.secHDR p img{
    height: auto !important;
}
.footerSCbtn{
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}
.footerSCbtn svg path{
    fill: #000;
}
.listStyleOL_a, .listStyleOL_a li{
    list-style-type: lower-alpha;
}
.arwBtm{
    display: flex;
    justify-content: center;
}
.cStyleTickDot, .cStyleTickDot li{
    list-style: none;
}
.cStyleTickDot li{
    position: relative;
}
.cStyleTickDot,
.cStyleTickDot ul{
    margin: 0;
    padding: 0;
}
.cStyleTickDot li:before{
    display: block;
    content: "\2714";
    position: absolute;
    left: 6px;
    top: 1px;
    font-size: inherit;
    
}
.cStyleTickDot li,
.cStyleTickDot ul li{
    padding-left: 24px;
}
.cStyleTickDot ul li:before{
    display: block;
    content: "";
    position: absolute;
    left: 9px;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #212529;
    border-radius: 50%;
}
.hasPin {
    gap: 6px;
}
.hasPin img{
    width: 18px;
    flex-shrink: 0;
}
.imgBt_1080-332{
    width: auto;
    max-height: 60px;
}
/*14-04-250*/
/*.homeSlider,
.homeSlider .owl-carousel,
.homeSlider .owl-stage-outer,
.homeSlider .owl-stage,
.homeSlider .owl-item,
.homeSlider .item,
.homeSlider .HeroBanner,*/
.homeSlider .HeroBanner .HeroBannerIn
/*.homeSlider .HeroBanner .HeroBannerIn .container,
.homeSlider .HeroBanner .HeroBannerIn .banner-content,
.homeSlider .HeroBanner .HeroBannerIn .img-holder*/{
    min-height: calc(100vh - 88px);
}
.homeSlider .HeroBanner .HeroBannerIn .banner-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.homeSlider .HeroBanner .HeroBannerIn .img-holder{
    left: 0;
}
.homeSlider .HeroBanner .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*D*/
.bdr0{
    border: 0 !important;
}
.red{
    color: var(--bs-red);
}
.img-center img{
    margin-left: auto;
    margin-right: auto;
}
.bgWhite{
    background-color: white;
}
.txt24 {
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}

.txt22 {
    font-size: 21px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}

.txt20 {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}

.txt18 {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}

.txt16 {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}
.txt14 {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}
.txt12 {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}
.txt11 {
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0
}
.fwExBold {
    font-weight: 800 !important
}

.fwBold {
    font-weight: 700 !important
}

.fwSemiBold {
    font-weight: 600 !important
}

.fwMedium {
    font-weight: 500 !important
}

.fwNormal {
    font-weight: 400 !important
}
.lh_1p0 {
    line-height: 1.0 !important;
}

.lh_1p1 {
    line-height: 1.1 !important;
}

.lh_1p2 {
    line-height: 1.2 !important;
}

.lh_1p3 {
    line-height: 1.3 !important;
}

.lh_1p4 {
    line-height: 1.4 !important;
}

.lh_1p5 {
    line-height: 1.5 !important;
}

.lh_1p6 {
    line-height: 1.6 !important;
}

.lh_1p7 {
    line-height: 1.7 !important;
}

.lh_1p8 {
    line-height: 1.8 !important;
}

.dFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}
.dFlex.inv{
    flex-direction: row-reverse;
}
.fdCol{
    flex-direction: column;
}
.dInFlex{
    display: inline-flex;
}
.jcCenter{
    justify-content: center;
}
.jcSB{
    justify-content: space-between;
}
.dBlock{
    display: block;
}
/**/
.bgPurple{
    background-color: #6153BD;
}
.bgGray{
    background-color: #D9D9D9;
}
/**/
.mAuto{
    margin-left: auto !important;
    margin-right: auto !important;
}
.mb_24{
    margin-bottom: 24px !important;
}
.mt_24{
    margin-top: 24px !important;
}
.mb_20{
    margin-bottom: 20px !important;
}
.mt_20{
    margin-top: 20px !important;
}
.mb_18{
    margin-bottom: 18px !important;
}
.mt_18{
    margin-top: 18px !important;
}
.mb_16{
    margin-bottom: 16px !important;
}
.mt_16{
    margin-top: 16px !important;
}
.mb_14{
    margin-bottom: 14px !important;
}
.mt_14{
    margin-top: 14px !important;
}
.mb_12{
    margin-bottom: 12px !important;
}
.mt_12{
    margin-top: 12px !important;
}
.mb_10{
    margin-bottom: 10px !important;
}
.mt_10{
    margin-top: 10px !important;
}
.mb_8{
    margin-bottom: 8px !important;
}
.mt_8{
    margin-top: 8px !important;
}
.mb_4{
    margin-bottom: 4px !important;
}
.mt_4{
    margin-top: 4px !important;
}
/**/
.maxW_1200{
    max-width: 1200px !important;
}
.maxW_1150{
    max-width: 1150px !important;
}
.maxW_1100{
    max-width: 1100px !important;
}
.maxW_1050{
    max-width: 1050px !important;
}
.maxW_1000{
    max-width: 1000px !important;
}
.maxW_950{
    max-width: 950px !important;
}
.maxW_900{
    max-width: 900px !important;
}
.maxW_850{
    max-width: 850px !important;
}
.maxW_800{
    max-width: 800px !important;
}
.maxW_750{
    max-width: 750px !important;
}
.maxW_700{
    max-width: 700px !important;
}
.maxW_650{
    max-width: 650px !important;
}
.maxW_600{
    max-width: 600px !important;
}
.maxW_550{
    max-width: 550px !important;
}
.maxW_500{
    max-width: 500px !important;
}
.maxW_450{
    max-width: 450px !important;
}
.maxW_400{
    max-width: 400px !important;
}
.maxW_350{
    max-width: 350px !important;
}
.maxW_300{
    max-width: 300px !important;
}
.whatsapp-float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.owl-carousel.hero-banner .HeroBanner{
    overflow: visible;
}
.owl-carousel.hero-banner .HeroBannerIn .container{
    max-width: 100% !important;
    padding: 0 !important;
}
.owl-carousel.hero-banner .img-holder{
    position: relative;
}
.owl-carousel.hero-banner .banner-content{
    display: none;
}

.listPos ul li p{line-height: 1.5;}



/*grants wdg section*/

.wdgBanner .HeroBannerIn{
    min-height: 600px;
}
.wdgBanner .btn.solu-btn {
    border: 1px solid #000;
    background: #fff;
    color: #000;
    text-align: center;
}

.wdgBanner .btn.solu-btn:hover{
    background-color: #2563EB;
    color: #fff;
}

.wdg-nav {
    padding-top: 50px;
}
.overview-sec p {
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}
.overview-sec blockquote {
    padding: 24px;
    border-radius: 8px;
    background: #f1f1f1;
}
.overview-sec blockquote p{
    font-weight: 600;
   margin: 0px !important;
}

.benefits-sec{background:#6153BD;}
.benefits-sec .eybBox,
.grant-subsidy .eybBox{
    padding: 25px;
}
.benefits-sec h2.ipH2 {
    color: #fff;
        margin-bottom: 20px !important;
}

.benefits-sec .section-para {
    text-align: center;
    color: #fff;
    margin-top: 10px;
    font-size: 20px;
}


.benefits-sec blockquote {
    padding: 24px;
    border-radius: 8px;
    background: #EFE6FD;
}

.benefits-sec blockquote p{
    font-weight: 600; color:#120064;
   margin: 0px !important;font-size: 18px;
}

.grant-subsidy.sec-pd {
    background: linear-gradient(180deg,rgba(254, 254, 255, 1) 0%, rgba(232, 231, 241, 1) 100%);
}

.grant-subsidy blockquote,
.details-sec blockquote {
    padding: 24px;
    border-radius: 8px;
    background: #fff;
}


.grant-subsidy blockquote p,
.details-sec blockquote p{
    font-weight: 500; color:#000;
   margin: 0px !important;font-size: 18px;
}

.details-sec {
    background: #FEFEFE;
    background: linear-gradient(180deg, rgba(254, 254, 254, 1) 45%, rgba(231, 230, 240, 1) 100%);
}
.details-sec .eybBox{padding: 0px;border: 1px solid #fff;}
.details-sec .eybBox .img-box {
    background: rgba(206, 202, 235, 0.2);
    padding: 16px;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.details-sec .eybIcon{min-width: 65px;}
.details-sec h3,
.details-sec h4{
        color: #000;
    line-height: 140%;
    font-weight: 600;
}

.details-sec h3 {
    font-size: 20px;

}

.details-sec h4 {
    color: #000;
    font-size: 18px;
}
.details-sec .eybBox-in {
    padding: 16px;
}



/*process section*/

.process {
  padding: 60px 20px;
  text-align: center;
}

.process h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

/* Timeline */
.timeline {
  position: relative;
}

/* Center line */
.timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #444;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Steps */
.step {
  display: flex;
  align-items: center;
  margin: 40px 0;
  position: relative;
}

.step.left {
  justify-content: flex-start;
}

.step.right {
  justify-content: flex-end;
}

/* Content Box */
.process-sec {
    background: #D9D9D9;
}
.process-sec .content {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    width:45%;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 0px;
}

.process-sec .step.left .content {
    border-top-left-radius: 20px;
    border-top-right-radius: 0px;
}
.process-sec .step.right .content {
    border-top-right-radius: 20px;
    border-top-left-radius: 0px;
}

.process-sec .content-box {
    padding: 20px;
}

.process-sec .content h4 {
    margin-bottom: 10px;
    background: #f9f9f9;
    padding: 20px;
    font-size: 20px;
    line-height: 140%;
}
.process-sec .left .content h4 {
    border-top-left-radius: 20px;
}

.process-sec .right .content h4 {
    border-top-right-radius: 20px;
}



.contactWAF-sec {
    background: linear-gradient(180deg, rgba(254, 254, 254, 1) 0%, rgba(231, 230, 240, 1) 100%);
}
.contactWAF-sec .eybIcon{background:#6153BD;}

/*.content p {
  font-size: 14px;
  margin-bottom: 10px;
}

.content ul {
  padding-left: 18px;
  font-size: 13px;
}*/

/* Circle */
.circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #6153BD;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 30px;
}

/* Align spacing */
.step.left .content {
  margin-right: auto;
}

/*.step.right .content {
  margin-left: auto;
}*/

.wdg-contact .eybBox{border: none; background: transparent;}
.wdg-contact .eybBox ul li {
    position: relative;
    list-style: none;
    padding: 3px 0px;
        font-weight: 500;
        font-size: 18px;
}
.wdg-contact .eybIcon {
    width: 48px;
    height: 48px;
    border: 0px solid #E3E2EC;
}
.wdg-contact .contact-num p {
    margin: 0px;
}
.wdg-contact .contact-num a {
    font-size: 18px;font-weight: 500;
    color: #000;
    text-decoration: none;
}
.wdg-contact .contact-num a:hover{text-decoration: underline;}
.wdg-contact .contact-list {
    gap: 15px;
}
.wdg-contact .contact-box-in {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.wdg-contact .eybBox.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    background: #fff;
    padding-bottom: 25px;
}



.wdg-contact .eybBox ul li:after {
    background: url(../img/list-style-icon.png) center center no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -30px;
    top: 7px;
    content: "";
}


