* {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    display: none;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* Variables */
:root {
    --primary-color: #5d3efb;
    --black: #000;
    --white: #fff;
}

.text-primary {
    color: var(--primary-color) !important;
}
/* Header */
header#header {
    width: 80%;
    display: block;
    margin:  auto;
    margin-top: 50px;
    z-index: 99; 
    transition: 1s; 
    background-color:var(--white);
    padding: 15px 25px;
    border: 1.5px solid #c2becc;
    border-radius: 30px;
}
header#headerTop {
    width: 80%;
    display: block;
    margin:  auto;
    margin-top: 50px;
    z-index: 99; 
    transition: 1s; 
    background-color:var(--white);
    padding: 15px 25px;
    border: 1.5px solid #c2becc;
    border-radius: 30px;
}
header#header.sticky {
    position:fixed; 
    margin-top: 0px;
    width: 100%;
    top: 0; 
    left: 0;
    right: 0;
    display: block;
    margin: auto;
    z-index: 99; 
    transition: 1s; 
    background-color:var(--white);
    padding: 15px 25px;
    box-shadow: 5px 2px 6px #9c9c9c;
    border: unset;
    border-radius: unset;
}
header#header.sticky .navbar .nav-links {
    top: 80px;
}
header.hide {
    transform:translateY(-100%);
}
.navbar {
    padding:0px 20px;
    justify-content: space-around;
}
.navbar .brand-logo .logo {
    width: 180px;
}
.navbar .nav-links {
    display:flex; 
    align-items:center; 
    gap: 50px;
    margin-bottom: 0px;
    z-index: 1;
}
.navbar .nav-links .nav-link-li {
    display:inline-block; 
    padding:10px 0; 
    position:relative; 
    border-radius:5px; 
    transition:0.5s; 
    color:var(--primary-color);
    font-family: "Montserrat", sans-serif; 
    font-size:18px; 
    font-weight:400; 
    cursor:pointer;
}
.navbar .nav-links .nav-link {
    color: #333;
    padding:0;
    font-size: 17px;
    position:relative;
    font-family: "Montserrat", sans-serif;
}
.navbar .nav-links .nav-link.active::after {
    content:"";
    position:absolute;
    bottom: -5px;
    left:0;
    width:100%;
    height:2px;
    background:var(--primary-color);
    z-index:-1;
}
.navbar .nav-links .menu-nav-link-li {
    transition:0.5s;
}
.navbar .nav-links .menu-nav-link-li .menu-dropdown {
    position:absolute; 
    display:block;
    visibility:hidden;
    top:auto;
    left:auto;
    color:var(--white);
    background:var(--primary-color);
    padding:15px 30px;
    min-width:350px;
    opacity:0;
    transform:translateY(25px);
    transition:0.5s;
    border-radius:5px;
    box-shadow:0px 0px 10px -2px rgba(0, 0, 0, 0.1);
    pointer-events:none;
}
.navbar .nav-links .menu-nav-link-li .menu-dropdown .drop-li {
    transition:0.5s;
    margin:10px 0;
}
.navbar .nav-links .menu-nav-link-li .menu-dropdown .drop-li:hover {
    padding:0px 0px 0px 10px;
}
.navbar .nav-links .menu-nav-link-li .menu-dropdown .drop-nav-link {
    text-transform:capitalize;
    font-family: "Montserrat", sans-serif;
    font-size:16px;
    color:var(--white);
}
.navbar .nav-links .partner-nav-link-li.specialized-nav-li {
    border:2px solid var(--primary-color) !important;
    background-color:var(--primary-color);
    color:var(--white); border-radius:6px;
    transition:0.3s ease; padding:8px 16px;
    cursor:pointer;
}
.navbar .nav-links .partner-nav-link-li.specialized-nav-li .nav-link {
    color:var(--white);
}
.navbar .nav-links .partner-nav-link-li.specialized-nav-li:hover .popup-trigger-btn {
    background-color:var(--white);
    color:var(--primary-color);
}
.navbar .nav-links .partner-nav-link-li.specialized-nav-li .popup-trigger-btn p {
    opacity:1;
    margin:0;
    text-transform:capitalize;
    font-size:18px;
}
.navbar .menu-dropdown .drop-li span {
    display:inline-block;
    transform:translate(3px, 1px);
}
.navbar .hamburger-menu {
    display:none;
}
.navbar .hamburger-menu .menu-btn {
    width:50px;
    height:50px; 
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    row-gap:6px;
}
.navbar .hamburger-menu .line {
    width:38px;
    height:4px;
    background:var(--primary-color);
    border-radius:5px;
    transition:0.5s;
}
.navbar .nav-right {
    display: flex;
}
.navbar .nav-right a.lang {
    display: flex;
    gap: 2px;
    background: #cdcdcdb8;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
    width: 70px;
    border-radius: 10px;
    color: var(--black);
    border-radius: 10px;
    text-decoration: none;
}
.navbar .nav-right a.lang img.globe-icon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(2817%) hue-rotate(246deg) brightness(98%) contrast(100%);
    max-width: 20px;
}
.getstart-btn {
    padding: 5px 0px 5px 20px;
    border-left: 1px solid var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}
.getstart-btn span {
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
}
.getstart-btn a.nav-btn {
    position: relative;
    display: block;
    text-decoration: none;
    font-family: 'Montserrat';
    color: var(--white);
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Typography */
h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-weight: 600;
    font-style: normal;
    color: var(--black);
    line-height: normal;
}
.service-first-section h1 {
    color: var(--primary-color);
}
h1 span {
    color: var(--primary-color);
}
h2 {
    font-size: 45px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    font-style: normal;
    transform: scale(1.2);
}
.service-third-section h2 {
    color: var(--primary-color);
}
h3 {
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-style: normal;
}
.circle-2 h3 {
    color: var(--primary-color);
}
.card.card-primary h3 {
    font-weight: 300;
    font-size: 35px;
}
h4 {
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-style: normal;
}
h5 {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: #bababa;
    font-weight: 600;
    font-style: normal;
    margin-top: 20px;
}
h6 {
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #bababa;
    font-weight: 600;
    font-style: normal;
    margin-top: 20px;
}
p.first-para {
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-weight: 200;
    margin-top: 20px;
}
.card.service-card-2 p.first-para {
    font-size: 25px;
    font-weight: 200;
    color: var(--primary-color);
}
.card.card-primary p.first-para {
    color: var(--white);
    font-size: 20px;
}
p.icon-para {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    margin-bottom: 0px;
}

/* Section styles */
section {
    position: relative;
    display: block;
    padding: 100px 0px;
}
section.second-section {
    background:url('../images/section-background.png') no-repeat , center #f0f0f0;
}
section.service-second-section {
    background:url('../images/section-background.png') no-repeat , center #f0f0f0;
}
section.service-fourth-section {
    background:url('../images/bg-2.png') no-repeat , center var(--primary-color);
    padding-bottom: 0px;
}
section.fourth-section {
    background: var(--black);
}
/* Custom CSS */
 #video {
    border-radius: 60px;
    overflow: hidden;
    margin-top: 60px;
 }

 video {
    width: 100%;
    opacity: 1;
 }
img.vector {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}
img.vector.vector-1 {
    left: 0;
    bottom: 190px;
}
img.vector.vector-2 {
    right: 0;
    top: 0;
}
.circle {
    position: absolute;
    height: 270px;
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    top: 60px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
}
div.col-lg-4.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
div.col-lg-4.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.icon-circle {
    background: var(--primary-color);
    padding: 15px;
    border-radius: 50%;
}
.card.service-card {
    padding: 10px;
}
.card.card-1 {
    position: relative;
    right: -90px;
    top: 50px;
    border-radius: 60px 60px 0px 60px;
}
.card.card-2 {
    position: relative;
    right: 20px;
    bottom: 120px;
    border-radius: 60px 60px 0px 60px;
}
.card.card-3 {
    position: relative;
    left: -40px;
    border-radius: 60px 60px 60px 0px;
    bottom: 90px;
}
.icon-circle img.icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
}
.we-do-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}
.icon.icon-3 {
    filter: invert(1);
}
.card.card-glass {
    padding: 40px;
    background: #3f3f3f80;
}

/* Service page custom */
.card.card-primary {
    padding: 30px;
    border-radius: 10px;
    background: var(--primary-color);
    height: 210px;
    justify-content: center;
}
.circle-2 {
    position: absolute;
    height: 300px;
    width: 300px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    left: 100px;
    top: 20px;
    z-index: 1;
}
.card.service-card-2 {
    padding: 10px 30px;
    border-radius: 15px;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.card.service-card-2:hover {
    background: #323232;
    transform: scale(1.1);
}
.card.service-card-2:hover p.first-para {
    color: var(--white);
}
img.man-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
}
.padding-bottom {
    padding-bottom: 100px;
}

/* Pricing */
.pricing-first-section p.first-para {
    font-weight: 400;
    margin-top: 50px;
}
.pricing-first-section p.first-para.second-para {
    font-weight: 700;
    margin-top: 60px;
}
.card.card-pricing {
    padding: 30px;
    border-radius: 40px;
}
.card.card-pricing .getquote-btn {
    background: var(--primary-color);
    font-size: 19px;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 25px;
    display: block;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.card.card-pricing .getquote-btn:hover {
    background: #4724f7;
}
.card.card-pricing p.first-para {
    font-size: 20px;
}
.card.card-pricing p.first-para.price {
    font-size: 30px;
}
.card.card-pricing p.first-para.price b {
    font-size: 40px;
}
ul.features-list {
    list-style: none;
    padding-left: 0rem;
}
ul.features-list li {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
img.pricing {
    max-width: 30px;
    object-fit: contain;
}
a.first-para {
    font-size: 20px;
    text-decoration: none;
    color: #000;
    text-align: center;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}
.pricing-second-section h3 {
    color: #515151;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}
.slider {
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.slider .slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(250px * 14);
}
.slider .slide {
    width: 250px;
}

/* Contact Us */
section.contact-first-section p.first-para {
    font-size: 22px;
    font-weight: 300;
}
.contact-first-section a.button {
    padding: 12px 25px;
    font-size: 17px;
    text-decoration: none;
    text-align: center;
    position: relative;
    display: block;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin: 20px 0px;
}
.contact-first-section a.button.primary-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}
.contact-first-section a.button.secondary-btn {
    background: transparent;
    color: #9e9e9e;
    border: 1px solid #9e9e9e;
}
.flex-btn {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
/* Footer */

footer#footer {
    background: var(--black);
}
footer img.footer-logo {
    max-width: 250px;
}
footer .social-links {
    color: var(--white);
    font-size: 40px;
}
a.footer-links {
    color: #949494;
    text-decoration: none;
    font-size: 23px;
    display: block;
    font-family: 'Montserrat';
    position: relative;
    max-width: max-content;
}
a.footer-links.active {
    color: #fff;
}
.nav-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
footer#footer p.first-para {
    color: var(--white);
    font-size: 23px;
    text-align: unset;
    margin-top: 0px;
}