html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url(../css/fonts/Poppins-Medium.ttf);
}

body {
    font-family: 'Poppins-Medium', sans-serif;
    font-size: var(--base-font-size);
    position: relative;
    background-color: #000;
    color: #fff;
}

.overflow-hidden {
    overflow: hidden !important;
}

.ball-cursor {
    width: 40px;
    height: 40px;
    position: fixed;
    top: -10px;
    left: -10px;
    border-radius: 100%;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 999;
    contain: layout style size;
    will-change: transform;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-out;
  }
  
  .ball-cursor .arrow {
    width: 80%;
    height: 80%;
    background: url(../images/icons/ic_arrow-right.svg) no-repeat;
    background-position: center;
    background-size: 100%;
    transform: rotate(45deg);
    opacity: 0;
  }
  
  @keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
  }
  
  .ball-cursor.bounce {
    animation: bounce 0.4s ease;
  }
  
  
  

section.loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* display: none; */
}

section.loading-screen .loading-title {
    font-size: 19vmin;
    position: relative;
    font-weight: 700;
}

section.loading-screen .loading-title span {
    display: inline-block;
    overflow: hidden;
}

section.loading-screen .loading-title span.fold {
    width: 0;
}

section.loading-screen .loading-title::after {
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    display: inline-block;
}

.app-container {
    transition: all .4s;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none
}

::selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-button:start:decrement {
    display: none
}

::-webkit-scrollbar-track-piece {
    background-color: #ecedf1;
    -webkit-border-radius: 0;
    border-left: 1px solid #888
}

::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0;
    background: var(--primary-color)
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        -webkit-appearance: none !important;
        line-height: 28px !important
    }
}

a:focus {
    outline: 0
}

.overlay {
    position: relative;
}

.overlay:before {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
}

.primary-btn,
.secondary-btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    position: relative;
    display: table;
    border-radius: 3px
}

.primary-btn {
    background: var(--primary-color);
    color: #fff
}

i .primary-btn:hover {
    background: var(--primary-color-dark);
    color: #fff
}

.secondary-btn {
    background: var(--secondary-color);
    color: #fff
}

.secondary-btn:hover {
    background: var(--secondary-color-dark);
    color: #fff
}

.btn.focus,
.btn:focus,
a:focus,
input:focus {
    outline: 0;
    box-shadow: none !important
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #ffffff;
    border-color: #ffffff;
}

.banner-btn {
    text-transform: capitalize;
    display: inline-block;
    transform: translateY(0);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #fff !important;
    background-color: transparent;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff !important
}

.sec-padding-60 {
    padding: 60px 0
}

.sec-padding-100 {
    padding: 100px 0
}

.sm-btn {
    font-size: 14px
}

.md-btn {
    font-size: 16px
}

.lg-btn {
    font-size: 18px
}

.xl-btn {
    font-size: 20px
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
    color: #fff
}

.btn-wrap .btn {
    margin-right: 15px
}

.btn.btn-white {
    background: #fff;
    color: #45108A;
}

.btn {
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .1);
    -webkit-transition: .3s all ease;
    transition: .3s ease all;
    z-index: 0;
    border-radius: 60px;
    padding: 14px 34px;
    font-weight: 500;
    
}

.btn:before {
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    right: auto;
    bottom: 0;
    opacity: 1;
    content: '';
    color: #45108A;
    z-index: -2;
    border-radius: 50em;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
}

.btn:after {
    position: absolute;
    top: 1px;
    left: 1px;
    content: '';
    background: #000;
    width: 48px;
    bottom: 1px;
    z-index: -2;
    border-radius: 50em;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
}

.btn-primary {
    color: #fff;
    border: none;
    background: transparent;
}

.btn-primary:hover {
    box-shadow: none;
    color: #ffffff;
}

.btn-secondary:before {
    background-color: #45108A;
    border: 1px solid #45108A;
    top: -2px;
    bottom: -2px
}

.btn-secondary:hover:before {
    left: -2px !important;
    right: -2px !important
}

.btn:hover:before {
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 1;
    color: #fff;
    border-radius: 50em;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
}

.btn:hover:after {
    width: 99%;
    right: 1px;
}

.btn:focus:before {
    transition: .5s all ease;
    left: 0;
    right: 0;
    opacity: 1
}

.btn-secondary:hover {
    color: #fff
}

.btn.btn-white:before {
    background-color: #2b0658;
}

.btn.btn-white:hover {
    color: #fff;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}

.h3,
.h4,
.h5,
.h6,
h3,
h4,
h5,
h6 {
    padding-bottom: 10px;
    color: #fff;
    font-weight: 500;
}

.h2,
h2 {
    font-size: 6.0vmin
}

.h3,
h3 {
    font-size: var(--font-size-h3);
}

.h4,
h4 {
    font-size: var(--font-size-h4)
}

.h5,
h5 {
    font-size: var(--font-size-h5)
}

.h6,
h6 {
    font-size: var(--font-size-h6)
}

p {
    font-weight: 500;
    line-height: 1.4;
    padding: 0 0 0;
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.shadow-hover {
    transition: all .3s;
}

.shadow-hover:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.card {
    border: 0;
}

.card .card-body {
    padding: 60px 40px;
}


a:hover {
    text-decoration: none
}

a:focus {
    outline: 0;
    text-decoration: none
}

img {
    border: 0;
    outline: 0
}

li,
ul {
    list-style-type: none
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

a {
    color: #fff;
    text-decoration: none;
    font: 20px;
}

a:hover {
    color: #fff
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f7f8fd !important;
}


.header-main {
    position: relative;
    padding: 0;
    z-index: 99;
    width: 100%;
    -ms-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    top: 0;
    margin-top:-52px;
}

.header-main.fixed {
    box-shadow: 0 5px 20px #00000012;
    -ms-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: fixed;
    background: transparent
}

.header-main.fixed .main-menu>ul>li>a {
    text-transform: capitalize;
    color: #223235
}

.header-main.fixed .logo {
    width: 100%
}


.nav-area-full {
    padding: 40px 0 0;
    width: 100%;
    position: relative;
    top: 0;
    /* -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s; */
    background: transparent;
    box-shadow: 0px 4px 10px 0px #00000021;
}

header.header-main.stickyyy .nav-area-full {
    background: transparent;
    /* padding: 10px 0; */
    box-shadow: 0px 4px 10px 0px #00000021;
}

.logo {
    margin: 0;
    float: left;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    overflow: hidden;
}

.logo img {
    width: 220px
}

header.header-main.stickyyy .nav-area-full .logo img {
    width: 220px;
}

.logo a {
    display: block
}

.main-menu {
    display: inline-block;
}

.main-menu>ul {
    float: left;
    margin: 0;
}

.main-menu>ul>li {
    padding: 0;
    position: relative;
    display: inline-block;
}

.main-menu>ul>li:last-child {
    padding-right: 0
}

.main-menu>ul>li:before {
    position: absolute;
    width: 1px;
    height: 12px;
    background: #71787e;
    left: 0;
    top: 30%
}

.main-menu>ul>li:first-child:before {
    display: none
}

.main-menu>ul>li>a {
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

.main-menu>ul>li.book-call>a {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 11px 20px;
    margin: 0 20px 0 10px;
    color: #fff
}

header.header-main.stickyyy .nav-area-full .main-menu>ul>li>a {
    color: #202020;
}

header.header-main.stickyyy .nav-area-full .main-menu>ul>li>a {
    color: #202020;
}

header.header-main.stickyyy .nav-area-full .quicknav li a {
    color: #202020;
    font-weight: 400;
}

header.header-main.stickyyy .nav-area-full .quicknav li .btn {
    color: #fff;
}

header.header-main.stickyyy .nav-area-full .quicknav li .btn:hover {
    color: #d01417;
}

.header-main .has-submenu.progmenu {
    font-size: 16px;
    color: #171717;
    font-weight: 400;
    margin: 0;
    padding: 3px 0 4px;
}

.header-main .magnet-button {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: -45px;
}

.header-main .magnet-button::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    border-radius: 100%;
    filter: blur(4px);
}

.header-main .magnet-button::after {
    content: '';
    position: absolute;
    height: 97%;
    width: 97%;
    background: #000;
    border-radius: 100%;
    filter: blur(4px);
}

.header-main .magnet-button .burger-click-region {
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
    width: auto;
}

header .main-menu ul li.hasmenu:hover .dropDown {
    height: auto;
    opacity: 1;
}

header .dropDown>ul {
    max-width: 1135px;
    width: 100%;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px 0px #00000021;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

header .dropDown {
    position: fixed;
    left: 0;
    right: 0;
    display: -ms-flexbox;
    top: 120px;
    top: 70px;
    z-index: 9;
    height: 0;
    overflow: hidden;
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
    transition: height 1s ease;
    opacity: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

header .main-menu ul li.hasmenu:hover .dropDown {
    padding-top: 30px;
    height: auto;
    opacity: 1;
}

header.header-main.stickyyy .main-menu ul li .dropDown {
    top: 50px;
    padding-top: 21px;
    padding-bottom: 20px;
}

header .dropDown>ul>li {
    width: 33%;
    display: inline-block;
    vertical-align: top
}

header .dropDown>ul>li a .navicon.one {
    background-position: 5px -610px
}

header .dropDown>ul>li a .navicon.two {
    background-position: -115px -610px
}

header .dropDown>ul>li a .navicon.three {
    background-position: -235px -610px
}

header .dropDown>ul>li a .navicon.four {
    background-position: -360px -610px
}

header .dropDown>ul>li a .navicon.five {
    background-position: -480px -610px
}

header .dropDown>ul>li a .navicon {
    background: url(../images/sprite.png);
    width: 120px;
    height: 90px;
    display: inline-block
}

header .dropDown>ul>li>a {
    color: #333;
    display: flex;
    align-items: center;
    line-height: 1.2;
    padding: 10px;
}

header .dropDown>ul>li>a>i {
    font-size: 40px;
    margin-right: 14px;
}

header .dropDown>ul>li a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform .2s;
    margin-right: 16px;
}

header .dropDown>ul>li a span.head {
    font-size: 16px;
    font-weight: 700;
    display: block;
    color: #2e2e2e;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

header .dropDown>ul>li a span.discp {
    font-size: 12px
}

header .dropDown>ul>li a:hover span.discp {
    color: #232323
}

header .dropDown>ul>li a.link {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #2e2e2e
}

header .dropDown>ul>li.last {
    padding: 5px 0 0
}

.main-menu>ul>li.hasmenu span {
    font-size: 10px
}

header .dropDown>ul>li a:hover {
    color: #d01417;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #d01417
}

header .dropDown>ul>li:hover a span.head {
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #d01417
}

header .dropDown>ul>li:hover a img {
    transition: transform .2s;
    transform: scale(1.1)
}

.main-menu>ul>li>a>i {
    font-size: 16px;
    padding-left: 3px
}

.main-menu>ul>li.head-no>a {
    border-radius: 30px;
    padding: 16px 20px;
    font-size: 14px;
    background-color: #d01417;
    color: #fff;
    font-weight: 700
}

.main-menu>ul>li.head-no>a:hover {
    color: #fff
}

.main-menu>ul>li.active>a,
.main-menu>ul>li>a.active,
.main-menu>ul>li>a:focus,
.main-menu>ul>li>a:hover {
    color: #d01417;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

header .dropDown>ul>li>ul {
    padding-left: 70px;
    display: none;
}

header .dropDown>ul>li>ul li {
    margin-bottom: 6px;
}

header .dropDown>ul>li>ul li a {
    font-weight: 400;
}

header .dropDown>ul>li>ul li a:before {
    content: '_';
    position: relative;
    top: -6px;
    margin-right: 6px;
}

.dropdown {
    width: 270px;
    position: absolute;
    top: 160%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    background-color: #fff;
    border: 1px solid #cbd6e2;
    border-radius: .1875rem;
    box-shadow: 0 1px 24px rgba(45, 62, 80, .12);
    z-index: 95
}

.main-menu>ul>li:hover .dropdown {
    visibility: visible;
    opacity: 1;
    left: 18px
}

.main-menu>ul>li:hover .progmenu .dropdown {
    left: 0
}

.dropdown>ul {
    padding: 10px 0;
    list-style: none
}

.dropdown>ul>li:before {
    display: none
}

.dropdown>ul>li>a {
    color: #171717 !important;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 10px 8px 15px;
    display: block
}

.dropdown>ul>li>a:hover {
    color: #000;
    background: 0 0
}

.dropdown>ul>li>a:hover:before {
    display: none
}

.double-drop {
    width: 400px !important
}

.dropdown>ul>li>ul {
    display: none
}

.dropdown>ul>li.level2:hover>ul {
    display: block
}

.stickyheader {
    position: fixed;
    z-index: 9999;
    min-height: auto
}

.stickyheader .logo img {
    width: 80px
}

.stickyheader .logo {
    margin: 5px 0
}

.stickyheader .navbar-inverse {
    margin: 10px 0 0 0
}

.stickyheader .top-info-list ul {
    margin: 5px 0
}

.sticky-container {
    padding: 0;
    margin: 0;
    position: fixed;
    right: -155px;
    top: 180px;
    width: 200px;
    display: none;
    z-index: 999
}

.sticky li {
    border-radius: 5px;
    list-style-type: none;
    background-color: #333;
    color: #efefef;
    height: 45px;
    padding: 0;
    margin: 0;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    cursor: pointer
}

.sticky li:hover {
    margin-left: -115px
}

.sticky li img {
    float: left;
    border-radius: 5px 0 0 5px;
    margin: 0;
    margin-right: 10px
}

.sticky li p {
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    line-height: 45px;
    color: #fff
}

.sticky li a {
    border-radius: 5px;
    color: #fff
}

.main-menu>ul>li.book-call {
    margin-top: 0
}

.main-menu>ul>li.book-call a {
    position: relative;
    color: #4c4c4c;
    font-size: 16px;
    font-weight: 600
}

.main-menu>ul>li.book-call a i {
    position: absolute;
    margin-right: 6px;
    padding-left: 0;
    font-size: 16px;
    left: 0
}


/* sidebar */
.backdrop {
    background: #000000cc;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    display: none;
    top: 0;
    bottom: 0;
}

.backdrop .logo {
    width: 20%;
    position: absolute;
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
    opacity: 0;
    transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
}

.backdrop.rotate .logo {
    transform: translate(-50%, -50%) scaleX(1);
    opacity: 1;
}

.burger-click-region {
    position: absolute;
    left: 76px;
    top: 80px;
    width: 40px;
    height: 30px;
    z-index: 11;
    cursor: pointer;
}

.nav-area-full .burger-click-region {
    position: unset;
    /* margin-top: -8px; */
    margin-left: 30px;
}

.burger-menu-piece {
    display: block;
    position: relative;
    width: 30px;
    border-top: 3px solid #fff;
    transform-origin: 50% 50%;
    margin-top: 6px;

}

/* .nav-area-full .burger-click-region .burger-menu-piece.bottom {
    width: 20px;
} */

.sidebar-wrapper .burger-menu-piece {
    margin-top: 8px;
}

.sidebar-wrapper .sidebar {
    top: 0;
    width: 100%;
    max-width: 500px;
    margin-top: 0;
    right: 0;
    height: 100%;
    position: fixed;
    z-index: 999;
    background: #000;
    transform: translateX(100%);
}

.sidebar-wrapper .sidebar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    transform: scaleY(0);
    transform-origin: center;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.3s;
}

.sidebar-wrapper .sidebar.active::after {
    transform: scaleY(1);
}

.sidebar-wrapper .sidebar .logo {
    position: absolute;
    top: 60px;
    width: 200px;
}

.sidebar-wrapper .sidemenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100vh;
}

.sidebar-wrapper .sidemenu .menu-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 80px 60px 0;
}

.sidebar-wrapper .sidemenu .menu-footer {
    padding: 0 0 80px 60px;
}

/* .sidebar-wrapper .sidemenu {
      height: 100%;
  } */
.sidebar-wrapper .sidebar li {
    list-style-type: none;
    font-size: 28px;
    /* margin-bottom: 20px; */
    /* text-align: center; */
    /* font-weight: bold; */
    cursor: pointer;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    min-width: 100%;
}


.sidebar-wrapper .sidebar .sidetext {
    opacity: 1;
    color: #fff;
}

.sidebar .burger-click-region {
    top: 20px;
    right: 30px;
    left: auto;
    padding: 0px 10px 10px;
    height: 40px;
    width: 40px;
    box-shadow: 0px 3px 12px #0000001f;
    border-radius: 50%;
}

.sidebar .burger-menu-piece {
    border-color: #fff;
    width: 20px !important;
}

body.menu-open .nav-area-full .burger-click-region,
body:not(.menu-open) .sidebar .burger-click-region {
    /* display: none; */
}

.sidebar-wrapper .sidebar:not(.openside) .burger-click-region {
    /* display: none; */
}

.success-rate .rate {
    color: #45108A;
    font-size: 24px;
    padding-bottom: 4px;
}

.success-rate .rate sub {
    bottom: 2px;
    font-size: 18px;
}

.success-rate h6 {
    font-weight: 500;
    color: #101010;
    font-size: 20px;
    padding-bottom: 8px;
}

.success-rate p {
    font-weight: 400;
}

.menu-title {
    display: none;
    padding: 0 0 30px 0;
    color: rgba(0, 0, 0, .3);
    font-size: 16px;
    line-height: 100%
}

.menu-nav {
    margin: -4px 0
}

.menu-nav-item {
    position: relative;
    display: block;
    padding: 6px 0;
    overflow: hidden;
}

.menu-nav-item a {
    display: inline-block;
    position: relative;
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    /* letter-spacing: -.05em; */
    line-height: 1.1;
    transform: translateY(160%) translateX(25%) skewX(10deg);
    transition: all 1s;
    transition-delay: .2s;
    cursor: none;
}

.sidebar.active .menu-nav-item a {
    transform: translateY(0%) translateX(0%) skewX(0deg);
}

.menu-nav-item a::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    bottom: 0;
    left: 0;
    transform-origin: left;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleX(0);
}

.menu-nav-item.active a,
.menu-nav-item a:hover {
    color: #999999;
    text-decoration: none !important;
}

.menu-nav-item.active a::after,
.menu-nav-item a:hover::after {
    transform: scaleX(1);
    background-color: #999999;
}

.menu-nav-item.active a em {
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-nav-item .inner-menu {
    display: none;
    padding: 12px 0;
}

.menu-nav-item .inner-menu li {
    text-align: left;
    font-size: inherit;
    margin-bottom: 12px;
}

.menu-nav-item.social a {
    font-size: 18px;
    margin-right: 10px;
    color: #360359;
}

.menu-nav-item a.mail {
    font-size: 16px;
    color: #777777;
    margin: 10px 0;
}

.menu-nav-item .inner-menu li a {
    font-size: 30px;
    padding-left: 20px;
}

.menu-nav-item a em i {
    position: relative;
    top: 4px;
    font-size: 34px;
    margin-left: 10px;
}

.menu-nav-item a em {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0 .01em 0 0;
    font-style: normal;
}


.menu-social {
    display: inline-block;
    margin: -6px 0
}


.menu-social-item {
    position: relative;
    display: block;
    padding: 12px 0;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: .00464286em;
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.menu-social-item:hover {
    color: #fff;
}


.menu-social-item em {
    display: block;
    position: relative;
    overflow: hidden;
    font-style: normal;
    transition: all 1s;
    top: 20px;
}

.openside .menu-social-item em {
    top: 0;
}

.menu-social-item em span {
    display: block;


}


/* body.menu-open {background: #DEDEDE;} */
body.menu-open {
    background: #DEDEDE;

}

body.menu-open .app-container {
    /* height: 80vh;
    margin: auto;
    overflow: auto;
    margin-right: 480px;
    margin: 90px 500px 80px 0;*/
    background: #fff;

    position: fixed;
    left: 0;
    top: 90px;
    bottom: 90px;
    right: 500px;
    overflow: auto;
}

body.menu-open .app-container::-webkit-scrollbar {
    width: 0
}

body.menu-open .app-container .header-main .nav-area-full {
    top: 90px;
    right: 500px;
    left: 0;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}



.home-banner {
    height: 100vh;
    position: relative;
}

.home-banner .canvas {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}

@media (max-width: 500px) {
    .home-banner .canvas {
        display: none;
    }
}

.banner {
    align-items: center;
    background-size: cover;
    background-position: top left;
    width: 100%;
    padding: 40px 0;
    /* margin-top: 90px; */
    transition: all .4s;
}

.about-banner .canvas {
    height: 100%;
    width: 100%;
    opacity: 0.3;
}

.criteria-banner .canvas {
    height: 100%;
    width: 100%;
    position: absolute;
}

section.our-vision .visial-container {
    padding: 25vh 0;
}

/* .banner .bannertext {
    max-width: 500px;
} */

.bannertext .banner-heading {
    color: #fff;
    font-weight: 500;
    font-size: 100px;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 120%;
}

.bannertext.large .banner-heading {
    font-size: 200px;
    line-height: 1;
    text-transform: none;
}

.gradient {
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bigheading {
    font-size: 180px;
}

.banner .bannertext .banner-paragraph {
    color: #fff;
    font-size: 38px;
    position: relative;
    overflow: hidden;
}

.banner .bannertext .divider-left,
.banner p~.divider-left {
    position: absolute;
    height: 85%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 0;
    transform-origin: top;
}

.mheading {
    text-transform: capitalize;
    color: #fff;
    font-size: 72px;
    font-weight: 500;
    margin-bottom: 16px;
}
.mheading1 {
    text-transform: capitalize;
    color: #fff;
    font-size: 53px !important;
    font-weight: 500;
    margin-bottom: 16px;
}

.mparagraph {
    font-size: 16px;
    color: #777777;
    line-height: 1.5;
    text-align: center
}

.large-paragraph {
    font-size: 28px;
}

.subheading {
    font-size: 18px;
    color: #6c6c6c;
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
    padding-left: 0;
    font-weight: 500;
    line-height: 1;
}

/* .subheading:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #d01417;
    position: absolute;
    left: 0;
    bottom: 4px;
    border-radius: 50%;
} */

.bannertext .subheading {
    color: #fff;
}

.bannertext a {
    font-size: 16px;
}

.cta-sec {
    background-image: url(../images/cta.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-sec .mheading {
    color: #fff;
}

.grow-us {
    background-image: url(../images/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.grow-us .mheading,
.grow-us h3 {
    color: #fff;
}

.grow-us h3 {
    font-size: 34px;
    font-weight: 400;
}

.grow-us .grow-inner {
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    width: 140px;
    text-align: center;
    display: inline-block;
    height: 180px;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
}

.grow-us .grow-inner i {
    font-size: 85px;
    margin-bottom: 20px;
    display: block;
}

.grow-us .grow-inner h5 {
    padding-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

.grow-us .grow-inner:hover {
    background: #A382FF;
}

.grow-us .grow-inner:hover i,
.grow-us .grow-inner:hover h5 {
    color: #45108A;
}

.test-pro {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.test-pro h4 {
    padding-bottom: 0;
    font-size: 20px;
}

.test-pro img {
    border-radius: 50%;
    object-fit: cover;
    width: 70px;
    height: 70px;
    margin-right: 11px;
}

.testimonial .testpara {
    font-size: 20px;
    margin-bottom: 0;
}

.built-sec .bgimg {
    background: url(../images/cta2.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    height: 230px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0px 3px 22px #00000017;
    margin-bottom: 15px;
}

.built-sec .bgimg2 {
    background-image: url(../images/bg2.png);
}

.built-sec .bgimg .content {
    width: 45%;
    margin-left: auto;
    padding: 15px;
}

.service-sec {
    background: url(../images/bg3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-sec .subheading {
    color: #fff;
}

.service-sec .mheading {
    color: #fff;
}

.service-sec .box {
    background: #12054ebd;
    padding: 20px 14px;
    height: 100%;
}

.service-sec .box:hover {
    background: #fff;
}

.service-sec .box:hover i,
.service-sec .box:hover h6 {
    color: #1D065D;
}

.service-sec .box:hover p {
    color: #3A3A3A;
}

.service-sec .box i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.service-sec .box h6 {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
}

.service-sec .box p {
    color: #FFFFFF;
    font-weight: 400;
}

.process .box img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.cta .subheading,
.cta .mheading,
.cta p,
.cta a {
    text-align: center;
    color: #fff;
}

.growth-inner {
    display: flex;
    align-items: center;
}

.growth-inner figure {
    margin: 0;
}

.growth-inner figure img {
    min-width: 100px;
    width: 100px;
    margin-right: 50px;
}

.growthdesign .box {
    display: flex;
    align-items: center;
}

.growthdesign .box img {
    min-width: 80px;
    width: 80px;
    height: 100px;
    object-fit: contain;
    margin-right: 20px;
}

a.link {
    color: #d01417;
    margin-top: 15px;
    display: inline-block;
}

a.link i {
    font-weight: 700;
    margin-right: 6px;
    position: relative;
    top: 2px;
}

.form input[type=number]::-webkit-inner-spin-button,
.form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}


.quicknav {
    margin-bottom: 0;
    font-size: 0;
    display: inline-block;
    text-align: right;
}

.quicknav li {
    display: inline-block;
    padding-left: 15px;
    vertical-align: middle;
    position: relative;
}

.quicknav li a {
    position: relative;
    color: #000;
    font-size: 16px;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    font-weight: 500;
}

.quicknav li a i {
    margin-right: 5px;
    font-size: 24px
}

@media(max-width:1023px) {
    .quicknav li a {
        font-size: 14px !important
    }
}

.banner .bannertext .bannerlist li {
    position: relative;
    color: #fff;
    font-size: 18px;
    padding-left: 33px;
    padding-bottom: 5px;
    text-transform: capitalize
}

.banner .bannertext .bannerlist li:before {
    color: #d01417;
    content: "\e916";
    font-size: 18px;
    position: absolute;
    font-family: icomoon !important;
    left: 5px
}

.quicknav li a:hover {
    color: #290657;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.accordion,
.accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.accordion {
    overflow: hidden;
    background: 0 0
}

.quest-title {
    font-size: 16px;
    position: relative;
    width: 100%;
    display: inline-block;
    /* transition: all linear .15s; */
}

.quest-title:before {
    position: absolute;
    content: "\e908";
    right: 0;
    top: 0;
    font-family: icomoon !important;
}

.quest-title.active,
.quest-title:hover {
    color: #d01417;
    content: "\e907"
}

.quest-title.active {
    font-size: 18px;
}

.quest-title.active:before {
    content: "\e907"
}

.quest-content {
    display: none;
    width: 100%;
    padding-top: 20px;
}

.accordion .quest-section {
    padding: 20px;
    background: #fff;
    border: 1px solid #d5d8dd;
    margin-bottom: 30px;
    border-radius: 6px;
}

.quest-content p a {
    color: #d01417;
    text-decoration: underline
}


.faq .accordwrap {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 60px 25px
}

.quest-content ul li:before {
    color: #d01417;
    content: "\e916";
    font-size: 18px;
    position: absolute;
    font-family: icomoon !important;
    left: 5px
}

.quest-content ul li {
    position: relative;
    padding-left: 33px;
    padding-bottom: 5px;
    color: #6c6c6c;
}

.process i {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    margin-top: 20px;
}

/* .form-control {
    padding: 0;
    color: #fff;
    border: none;
    font-size: 22px;
    border-radius: 0;
    border-bottom: 1px solid #4E4E4E;
    box-shadow: none;
    background-color: transparent;
}

.form-control::placeholder {
    color: #9d9d9d;
}

.form-control:focus {
    background-color: transparent;
    color: #fff;
    border-color: rgb(51, 51, 51);
    outline: 0;
    box-shadow: none;
}

.contact-us .email {
    display: flex;
    align-items: center;
}

.contact-us .email i {
    color: #45108A;
    font-size: 26px;
    margin-right: 10px;
}

.contact-us .email h4 {
    padding-bottom: 0;
    font-weight: 500;
    color: #101010;
}

.form-group {
    margin-bottom: 3.5rem;
}

.custom-select {
    border: none;
    border-bottom: 1px solid #4E4E4E;
    border-radius: 0;
    padding: 0;
    color: #000;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button.send {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
}

button.send img {
    width: 40px;
    margin-right: 4px;
}

.custom-select:focus {
    box-shadow: none;
    border-color: #000;
}

label {
    color: #8A8A8A;
    font-weight: 500;
    font-size: 20px;
} */

@media(max-width:767px) {
    .nampoup {
        display: none
    }
}

.nampoup {
    position: fixed;
    left: 20px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 8px 40px;
    transition: .5s;
    bottom: -100px;
    z-index: 9;
    box-shadow: 0 0 20px #0003
}

.frstn.active {
    bottom: 20px
}

.scndn.active {
    bottom: 20px
}

.thrdn.active {
    bottom: 20px
}

.frthn.active {
    bottom: 20px
}

.ffthn.active {
    bottom: 20px
}

.ffthn.active {
    bottom: 20px
}

.sxxthn.active {
    bottom: 20px
}

.svnthn.active {
    bottom: 20px
}

.eghtn.active {
    bottom: 20px
}

.nnethn.active {
    bottom: 20px
}

.tnthn.active {
    bottom: 20px
}

.elvnth.active {
    bottom: 20px
}

.twlthn.active {
    bottom: 20px
}

.thrtn.active {
    bottom: 20px
}

.fftn.active {
    bottom: 20px
}

.ssxtn.active {
    bottom: 20px
}

.nampoup .wrp b {
    color: #000;
    display: block;
    text-transform: capitalize;
    padding: 0 0 5px 0
}

.nampoup .wrp span {
    color: #000;
    text-transform: capitalize
}

.nampoup .wrp p {
    color: #000;
    font-size: 12px
}

.small-banner {
    padding-bottom: 60px;
    padding-top: 150px;
    height: 700px;
}

.service-banner {
    height: 800px;
}

.service-nav {
    justify-content: center;
}

.service-nav .nav-item {
    margin: 0 8px;
    position: relative;
}

.service-nav .nav-item .nav-link {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    border: 1px solid #D4CFE2;
    height: 200px;
    width: 200px;
    display: block;
    padding: 40px 10px;
    border-radius: 0;
    text-align: center;
}

.service-nav .nav-item .nav-link i {
    font-size: 36px;
    margin-bottom: 14px;
    display: inline-block;
}

.service-nav .nav-item .nav-link.active {
    background: #A382FF;
    border-color: #A382FF;
}

.service-nav .nav-item .nav-link.active:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #a382ff;
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translate(-50%, 0px);
}

.case-box {
    margin-bottom: 20px;
}

.case-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

.pages-link {
    margin-top: -70px;
}

div#accordion .card-header {
    border-radius: 10px;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    color: #141414;
    padding: 16px 30px;
    padding-left: 60px;
    position: relative;
    border: 1px solid #CFCFCF;
    cursor: pointer;

}

div#accordion .card-header[aria-expanded=true] {
    border-color: #fff;
    box-shadow: 0px 3px 22px #00000017;
}

div#accordion .card .card-body {
    padding: 20px;
    color: #777777;
    font-size: 16px;
}

div#accordion .card {
    margin-bottom: 14px;
}

div#accordion .card-header:before {
    content: '+';
    text-align: center;
    font-size: 22px;
    width: 36px;
    height: 36px;
    position: absolute;
    color: #fff;
    top: 50%;
    transform: translate(0px, -50%);
    background: linear-gradient(331deg, #45108A, #12054E);
    left: 14px;
    border-radius: 50%;
}

div#accordion .card-header[aria-expanded=true] {}

div#accordion .card-header[aria-expanded=true]:before {
    content: '-';
    width: 50px;
    font-size: 36px;
    text-align: center;
    background: #f2f1f6;
    left: 0;
    color: #000;
    top: 0;
    transform: none;
    bottom: 0;
    height: auto;
    border-radius: 10px 30px 30px 10px;
}

.contact-us {
    position: relative;
}

.contact-us:before {
    content: '';
    background-image: url(../images/group307.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    width: 700px;
    height: 500px;
    position: absolute;
    left: 0;
    bottom: -110px;
    z-index: -1;
}

.contact-us .email {
    display: flex;
    align-items: center;
}

.contact-us .email i {
    color: #45108A;
    font-size: 26px;
    margin-right: 10px;
}

.contact-us .email h4 {
    padding-bottom: 0;
    font-weight: 500;
    color: #101010;
}

.pages-link .card {
    box-shadow: 0px 0px 20px 0px #00000026;
}

.pages-link .card .card-body {
    text-align: center;
}

.pages-link .card .card-body a {
    color: #d01417;
    font-weight: 400;
    margin-top: 20px;
    display: inline-block;
}

.counter {
    margin-top: 30px;
}

.counter h2 {
    font-weight: bold;
    font-size: 48px;
}

.fold-img {
    height: 100%;
}

.fold-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.card-list {
    border: 1px solid #d5d8dd;
    padding: 60px;
    border-radius: 6px;
}

.card-list li {
    margin-bottom: 30px;
}

.contact-info {
    margin: 20px 0 0;
}

.contact-info a,
.contact-info li {
    font-size: 14px;
    font-weight: 400;
    color: #6c6c6c;
    display: flex;
    margin: 20px 0;
}
.icon {
    margin:20px 0 ;
} 

.contact-info a i,
.contact-info li i {
    color: #d01417;
    margin-right: 10px;
    font-size: 18px;
    min-width: 20px;
}

.contact-info li {
    margin-bottom: 10px;
}

.number {
    position: relative;
    padding: 14px;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50em;
}

.number span {
    font-size: 10rem;
    position: absolute;
    font-weight: bold;
    line-height: 1;
    color: #f0f0f0;
    z-index: -1;
    display: none;
    top: -20px;
}

.brands-logo img {
    width: 120px;
}

.brands-logo figure {
    text-align: center;
    margin-bottom: 80px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    display: inline-block;
    position: unset;
    width: auto;
    float: left;
    margin-top: 15px;
    color: #101010;
    font-weight: 500;
}


.swiper-button-next,
.swiper-button-prev {
    position: relative;
    display: inline-block;
    margin-top: 14px;
}

.swiper-button-next {
    margin-left: 140px;
}

.swiper-button-prev {
    margin-left: -80px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 12px;
    color: #000000;
    font-weight: 700;
}

/* .swiper-pagination:after {
    content: '';
    width: 66px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 10px;
    left: 45px;
} */

.policysec {
    padding: 60px 0 20px
}

.policysec .mheading {
    text-align: left
}

.policysec p {
    color: #4c4c4c;
    font-size: 18px;
    padding-bottom: 20px
}

.policysec h3 {
    color: #2e2e2e;
    font-size: 22px;
    font-weight: 700
}

.policysec .policylisy {
    margin-bottom: 20px;
    width: 100%;
    display: inline-block
}

.policysec .policylisy li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    color: #4c4c4c;
    font-weight: 400;
    padding-bottom: 10px
}

.policysec .policylisy li:before {
    color: #0984e3;
    content: "\e916";
    font-size: 16px;
    position: absolute;
    font-family: icomoon !important;
    left: 0
}

.policysec .innerpolicylist {
    padding-left: 20px;
    margin-bottom: 0
}

.policysec .innerpolicylist li {
    font-size: 14px;
    padding-left: 17px;
    margin-left: 20px
}

.policysec .innerpolicylist li.heading {
    font-weight: 700;
    margin-left: 0
}

.policysec .innerpolicylist li.heading:before {
    width: 10px;
    height: 2px;
    top: 10px;
    border-radius: 0
}

.policysec .innerpolicylist li:before {
    color: #0984e3;
    content: "";
    font-size: 16px;
    position: absolute;
    font-family: icomoon !important;
    left: 0;
    width: 5px;
    height: 5px;
    top: 10px;
    border-radius: 50%;
    background: #0984e3
}

.policysec .policylisy li a {
    font-size: 16px;
    color: #4c4c4c;
    text-decoration: underline
}

.policysec .policylisy li a:hover {
    color: #0984e3
}

.policysec p a {
    color: #4c4c4c;
    text-decoration: underline
}

.thankyou {
    display: flex;
    padding-top: 200px;
    height: 100vh;
    align-items: center;
    text-align: center;
}


.thankyoupg .cta {
    display: none;
}

.thankyou .mheading {
    color: #fff;
    font-size: 100px;
}

footer {
    position: relative;
}

.footer-main .links {
    margin-bottom: 0;
}

.footer-main .links h6 {
    font-size: 16px;
    text-transform: uppercase;
}

.footer-main .links li,
.footer-main .links li a {
    font-size: 14px;
    color: #6c6c6c;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
}

.footer-main .links li a {
    margin-bottom: 0;
}

footer .logo img {
    width: 120px;
}

section.follow-us {
    position: relative;
}

section.follow-us hr {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 0;
    margin: 0;
    position: relative;
    top: -100px;
}

section.follow-us .social-links-wrapper ul {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-end;
}

section.follow-us .social-links-wrapper ul li {
    overflow: hidden;
}

section.follow-us .social-links-wrapper ul li a {
    display: inline-block;
    font-size: 24px;
}

section.consultation-form button {
    cursor: pointer;
}

section.consultation-form .form-group {
    position: relative;
}

section.consultation-form .form-group .gradient-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: left;
    transform: scaleX(0);
}

section.consultation-form .form-group input:focus~.gradient-line {
    transform: scaleX(1);
}

ul.footlink {
    display: inline-flex;
    margin-bottom: 0;
}

ul.footlink a {
    font-size: 12px;
    margin-left: 0px;
    color: #fff;
    border: 1px solid #000;
    padding: 0;
}

.services-links {
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 60px;
    padding-bottom: 30px;
    display: none;
}

.footer p {
    font-size: 14px;
}

.footer-main .links li i,
.footer-main .links li a i {
    margin-right: 10px;
}

.footer-main .links a.arrow {
    display: inline-block;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 25px;
    background-color: transparent;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.footer-main .links a.arrow .ic-right {
    height: 30px;
    width: 30px;
    background-color: #fff;
    mask-image: url(../images/icons/ic_arrow-right-round.svg);
    -webkit-mask-image: url(../images/icons/ic_arrow-right-round.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    position: relative;
    display: inline-block;
    transition: all 0.3s;
}

.footer-main .links a.arrow .text {
    width: 0;
    opacity: 0;
    margin-left: 40px;
    color: #000;
    position: absolute;
    transform: translateX(50%);
}

.footer-main .links a.arrow:hover {
    width: 150px;
    background-color: #fff;
    padding: 0 12px;
}

.footer-main .links a.arrow:hover .ic-right {
    background-color: #000;
}

.footer-main .links a.arrow:hover .text {
    width: auto;
    opacity: 1;
    transform: translateX(0%);
}

.footer .logo img {
    width: 250px;
}

.footer .logo {
    float: none;
}

.copyright {
    padding-top: 30px;
    padding-bottom: 10px;
    /* border-top: 1px solid #d8d8d8; */
}

.grecaptcha-badge {
    bottom: 50px !important;
}

.card.testicard {
    border-radius: 50px 50px 0 0;
    margin-top: 30px;
}

.card.testicard .card-header {
    background: #fff;
    border-radius: 50px 50px 0 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card.testicard .card-header h2 {
    color: #000;
    font-size: 100px;
    font-weight: 600;
    margin-bottom: 0;
}

.card.testicard h2 {
    color: #000;
    font-size: 60px;
    margin-bottom: 20px;
}

.card.testicard h4 {
    color: #8F8F8F;
    font-weight: 500;
    font-size: 34px;
    padding-bottom: 0;
}

.card.testicard p {
    color: #1A1A1A;
    font-size: 28px;
}

.cta-round {
    text-align: center;
    padding-top: 0px;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-round .btn-round {
    background: linear-gradient(124deg, #DD5183 30%, #a682e5 50%, #6CAAF4 60%, #DBAED7 90%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    font-weight: 600;
    color: #fff;
    border-radius: 50%;
    padding: 40px;
    line-height: 1.2;
    height: 600px;
    width: 600px;
}


.number:after {
    position: absolute;
    top: 1px;
    left: 1px;
    content: '';
    background: #000;
    width: 48px;
    bottom: 1px;
    z-index: -2;
    border-radius: 50em;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
}


.number:before {
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    right: auto;
    bottom: 0;
    opacity: 1;
    content: '';
    color: #45108A;
    z-index: -2;
    border-radius: 50em;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
}

footer .links {
    border: 1px solid #FFFFFF42;
    padding: 30px;
}

footer .links>i {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    margin-top: 40px;
}

footer .links .icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 40px 0;
}

footer .links .icon svg,
footer .links .icon img {
    max-width: 100%;
    height: auto;
}

footer .links .icon.consultation svg .lid {
    transition: all 0.3s;
}

footer .links .icon.consultation:hover svg .lid {
    transform: rotate(-27deg) translateX(-17px) translateY(-5px);
}

footer .links h2 {
    font-size: 40px;
}

.element2 {
    position: absolute;
    left: 0;
    min-width: 120px;
    /* opacity: .5; */
    top: -40px;
    filter: blur(4px);
    z-index: -1;
}

.element1 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    min-width: 350px;
    filter: blur(6px);
    top: -220px;
}

.elementbg {
    position: absolute;
    top: -250px;
    left: 100px;
}

.banimg {
    min-width: 900px;
    margin-left: -200px;
    margin-bottom: -120px;
    margin-top: -300px;
}

footer .elementbg {
    position: absolute;
    bottom: -500px;
    top: auto;
    left: auto;
    right: 140px;
    z-index: -1;
}

.copyright .container {
    position: relative;
}

.banner .container {
    position: relative;
}

.border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.contact .elementbg {
    top: -140px;
    left: auto;
    right: 0px;
    z-index: -1;
}

form button {
    background: transparent;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

form button .visual {
    width: 70px;
    height: 70px;
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 100%;
}

form button .visual img {
    width: 100%;
    height: auto;
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

form button .text {
    position: relative;
}

form button .text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: left;
    transform: scaleX(0);
    left: 0;
    bottom: 0;
}

form button .visual::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    left: 0;
    top: 0;
    border-radius: 100%;
    z-index: -1;
    transform-origin: center;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(0);
    opacity: 0.5;
    z-index: -2;
}

form button .visual::before {
    content: '';
    position: absolute;
    height: 96%;
    width: 96%;
    border-radius: 100%;
    background-color: #000;
    z-index: -1;
    transform-origin: center;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    left: 50%;
    transform: scale(0);
    opacity: 0.5;
    z-index: -1;
}

form button:hover .text::after {
    transform: scaleX(1);
}

form button:hover .visual::after {
    transform: scale(1);
    opacity: 1;
    animation: rotate 7s linear infinite;
}

form button:hover .visual::before {
    transform: scale(1) translateX(-50%);
    opacity: 1;
}

form button:hover .visual img {
    transform: rotate(45deg);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact footer .elementbg {
    top: -850px;
    left: -200px;
    right: auto;
}

.contact footer .footer-main {
    display: none;
}

.bigright {
    min-width: 400px;
    filter: blur(6px);
    position: absolute;
    right: -150px;
    top: -160px;
    left: auto;
}

.element3 {
    position: absolute;
    left: 0;
    min-width: 400px;
    filter: blur(6px);
    margin-top: -150px;
    z-index: -1;
}

.element4 {
    position: absolute;
    right: 0;
    filter: blur(4px);
    min-width: 240px;
    margin-top: -140px;
    z-index: -1;
}

.element5 {
    position: absolute;
    left: 60px;
    filter: blur(4px);
    min-width: 180px;
    margin-top: -80px;
    z-index: -1;
}

.element6 {
    position: absolute;
    right: -60px;
    filter: blur(4px);
    min-width: 400px;
    margin-top: -280px;
    z-index: -1;
}

.border-left-gradient {
    padding-left: 30px;
    position: relative;
}

.border-left-gradient:before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
}

.hompg footer .elementbg {
    display: none;
}

.card.testicard .card-header .swiper-pagination {
    background: linear-gradient(124deg, #DD5183 30%, #a682e5 50%, #6CAAF4 100%);
    color: #fff;
    font-size: 50px;
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section.sixth-fold .para-wrapper {
    position: relative;
    padding-left: 30px;
}

section.sixth-fold .para-wrapper .divider-left-gradient {
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    transform-origin: top;
}
.bgcard {
    border-radius: 50px;
}

.bgcard h4 {
    color: #000;
    margin-top: 30px;
    font-size: 34px;
    font-weight: 700;
}

.bgcard p {
    color: #000;
    font-size: 20px;
}
/* Conatct Form */

.contact-dec img {
    position: absolute;
    z-index: 1;
    width: 459px;
    height: 702px;
    right: 0;
    bottom: -400px;
  }
  
  .contact-left-dec img {
    position: absolute;
    z-index: 1;
    width: 174px;
    height: 319px;
    left: 0;
    top: 120px;
  }
  
  .contact-us {
    z-index: 2;
    position: relative;
    padding-top: 120px;
    margin-top: 0px;
  }
  
  .contact-us .section-heading h2 {
    margin-right: 100px;
    margin-bottom: 40px;
  }
  
  .contact-us #map iframe {
    border-radius: 23px;
    position: relative;
    z-index: 2;
  }
  
  .contact-us .info {
    margin-top: 30px;
    position: relative;
    z-index: 5;
    display: inline-flex;
  }
  
  .contact-us .info span {
    opacity: 1;
    display: inline-flex;
    margin-right: 30px;
  }
  
  .contact-us .info span i {
    float: left;
    width: 46px;
    height: 46px;
    display: inline-block;
    text-align: center;
    line-height: 46px;
    background: rgb(255, 104, 95);
    background: linear-gradient(105deg, rgba(255, 104, 95, 1) 0%, rgba(255, 144, 104, 1) 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    margin-left: 30px;
    margin-right: 15px;
  }
  
  .contact-us .info span a {
    color: #ff685f;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    text-transform: none;
  }
  
  form#contact {
    margin-left: 0;
    position: relative;
    z-index: 2;
    background-image: url(../images/contact-form-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 60px 120px;
    border-radius: 20px;
  }
  
  form#contact input {
    width: 100%;
    height: 46px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid #9bdbf8;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    color: #2a2a2a;
    padding: 0px 0px;
    margin-bottom: 35px;
  }
  
  form#contact input::placeholder {
    color: #afafaf;
  }
  .main-button{
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    border: 1px solid white;
    padding: 8px 10px;
    border-radius: 19px;
    margin: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    cursor: pointer;
    width: auto;
    }
  
  form#contact button:hover {
    background-color: #03a4ed;
  }
  .main-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:  #6CAAF4;
    z-index: -1;
    transition: all 0.4s ease-in-out;
  }
  
  /* Hover effect: slide background in and text color turns white */
  .main-button:hover::before {
    left: 0;
  }
  
  .main-button:hover {
    -webkit-text-fill-color: #fff;
    color: #fff;
  }
  
  /*   pricing */

  @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

  main.pricing-plans {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* Cards */
  .pricing-card {
    margin: 0 2rem 1rem 0;
    padding: 0 0 1rem 0;
    width: 25rem;
    /* background: #000000; */
    color: #acacac;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 1rem rgba(51, 51, 51, 0.2);
    overflow: hidden;
    /* transition: transform 0.2s ease-in-out; */
    height: auto;
    border: 2px solid white;}
  
  .pricing-card:hover {
    transform: scale(1.05);
  }
  
  /* Header colors */
  .pricing-card .pricing-header {
    height: 5rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 1rem 0;
    color: #fff;
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
  }
  
  .basic .pricing-header,
  .basic-btn {
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
  }
  
  .standard .pricing-header,
  .standard-btn {
    background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
  }
  
  .premium .pricing-header,
  .premium-btn {background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);}
  
  /* Card Body */
  .pricing-card .pricing-body {
    padding: 0.5rem 0;
  }
  
  .pricing-card .pricing-body h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  /* Feature list */
  .features-list {
    color: #444;
    list-style: none;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
  }
  .features-list li {
    text-align:start;
    padding: 2px 15px ;
  }
  .features-list.scroll {
  max-height: 280px; /* jitni lambi chahiye utni kar lo */
  overflow-y: auto;
  overflow-x: hidden;
  padding :12px ;
}
  /* Button */
/*   
.btn {
  color: #fff;
  background: linear-gradient(to right, #DD5183, #a682e5, #6CAAF4, #DBAED7 70%);
  transition: all 0.1ms ease-in-out;
}

  .btn:hover {
    transform: scale(0.95);
  }
  
  .btn:active {
    transform: scale(1);
  } */
  .category-buttons {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin: 20px 0;
  }

.PackageSection img{ border-radius: 1rem;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
margin:5px 0 ;}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.dropdown-menu {
  list-style: none;
  padding: 30px 0 !important;
  margin: 0;
  background: white;
  border: 1px solid #ccc;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px !important;
  display: none;  /* hide by default */
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

.dropdown-menu li {
  padding: 2px 5px;
}

.dropdown-menu li a span {
  color: #333;
  text-decoration: none;
  font-size: 18px !important;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown when active */
.menu-item.open .dropdown-menu {
  display: block;
}

.form-control1{
    display: block;
width: 100%;
padding: 0.375rem 0.75rem;
font-size: 1rem;
border: none; /* remove full border */
border-bottom: 1px solid #ced4da; /* only bottom border */
background-color: transparent;

}

.PackageSection img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .PackageSection img:hover {
      transform: scale(1.05);
    }

    .portfolio-section {
      padding: 50px 0;
    }
/* testimonial */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);

  }
 
     main.pricing-plans{
            display: flex;
    justify-content: center;
    align-items: center;flex-wrap: unset;
        }
    
   
    .category-buttons{
            flex-wrap: nowrap;
        }   
}

.testimonial-card {
  background-color: black;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 24rem;
  border: 2px solid white;
}

.testimonial-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffff;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
}

.star.filled {
  color: rgb(250, 204, 21);
  fill: rgb(250, 204, 21);
}

.star.empty {
  color: rgb(209, 213, 219);
}

   
    @media only screen and (min-width: 768px) and (max-width: 1024px) and (min-height: 1024px) and (max-height: 768px) {
        .main-button{
            width: 20%;
        }
        .main-button{
            width: 20%;
        }

.pricing-card{
        height: 44vh !important
    }    }
     @media (max-width: 320px) {
      .main-button{
        width: 51%;
      }
      .category-buttons{
        flex-wrap: wrap;
      }
     }
     .pricing-body p{
        color: #fff;
        font-size: 16px;
     }
    @media screen and (max-width: 768px){
      .main-button{
        width: 43%;
      }
      .category-buttons{
        flex-wrap: wrap;
      }
     }
     .pricing-body p{
        color: #fff;
        font-size: 16px;
     }
     .form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }

  .custom-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    animation: fadeIn 1.6s;
  }

  .custom-form input,
  .custom-form select,
  .custom-form textarea,
  .custom-form button {
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 12px;
    background: #1c1c1c;
    color: #fff;
    outline: none;
    width: 100%;
  }

  .custom-form textarea {
    resize: none;
    height: 150px;
    padding: 20px;
  }

  .custom-form button {
    font-size: 18px;
    font-weight: 600;
    background: #000;
    border: 1px solid #000;
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    grid-column: span 2;
  }

  .custom-form input[name="email"],
  .custom-form select,
  .custom-form textarea {
    grid-column: span 2;
  }

  @media (max-width: 600px) {
    .custom-form {
      grid-template-columns: 1fr;
    }

    .custom-form input,
    .custom-form select,
    .custom-form textarea,
    .custom-form button {
      grid-column: span 1 !important;
    }
  }
  
  @media (max-width: 912px) {
    .category-buttons{
        flex-wrap: wrap;
    }
    .main-button{
                width: 41%;
        padding: 2px;
    }
    .pricing-card{
        height: 44%;
    }
  }

  