@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
html {
    width: 100%;
    overflow-x: hidden;
}
*{
    font-family: "Inter", sans-serif;
}

.statistics-container {
    display: flex;
    align-items: center;
    padding: 20px;
    color: white;
    font-weight: 700;
    justify-content: center;
    flex-wrap: wrap;
}

.statistics-container .stat {
    text-align: center;
    padding: 2rem 0;
    width: 20%;
}

.statistics-container .stat h1 {
    font-size: 53px;
    margin: 0;
    font-weight: 700;
}

.statistics-container .stat p {
    margin: 0;
    font-size: 22px;
}

@media (max-width: 992px) {
    .statistics-container{
        flex-direction: column;
        padding: 0;
    }
    .statistics-container .stat{
        border-top: 5px solid black;
        border-bottom: 5px solid black;
        padding: 1rem 0;
        width: 100%;
    }
    .statistics-container .stat h1{
        font-size: 35px;
    }
    .statistics-container .stat p{
        font-size: 16px;
    }
}

.thought{
    background-color: black;
    color: white;
    padding: 2rem 1rem;
}
.thought sup{
    top: -1em;
}

.thought img{
    height: 30px;
}

.thought p{
    line-height: 64px;
    font-size: 30px;
    text-align: center;
}

.thought .name{
    text-align: center;
    line-height: 40px;
    color: #ec3242;
    font-weight: 600;
}

.thought .desig{
    text-align: center;
    line-height: 30px;
    font-size: 20px;
}

@media (max-width: 768px) {
    
    .thought p{
        font-size: 15px;
        line-height: 36px;
        text-align: justify;
    }
    .thought img{
        height: 15px;
    }
    .thought .name{
        margin-bottom: 0;
        line-height: 15px;
    }
    .thought .desig{
        font-size: 12px;
        margin-bottom: 0;
    }
}

#nav-icon2 {
    width: 30px;
    height: 100% !important;
    position: relative;
    height: fit-content;
    margin: 12px 15px;
}

#nav-icon2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 40%;
    background: #ffffff;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
    left: 45%;
    border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
    left: 5%;
    border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
    top: 5px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
    top: 15px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
    top: 25px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
    left: 5px;
    top: 12px;
}

#nav-icon2.open span:nth-child(2) {
    left: calc(50% - 1px);
    top: 12px;
}

#nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
    left: 5px;
    top: 21px;
}

.close-nav{
    text-align: end;
    border-bottom: 1px solid white;
    font-weight: 700;
    font-size: 14px;
}

.close-nav span{
    line-height: 17px;
    vertical-align: top;
}

#nav-icon2.open span:nth-child(6) {
    left: calc(50% - 1px);
    top: 21px;
}
header {
    display: flex;
    background-color: #1e1e1e;
    height: 100px;
    justify-content: space-between;
}
header .logo {
    height: 100%;
    display: flex;
}
header .logo img {
    height: 60px;
    margin: auto 2rem;
}
header ul {
    display: flex;
    list-style: none;
}
header ul a {
    color: white;
}
header .nav-links-ul {
    display: flex;
    margin-bottom: -8px;
    /* width: 80%; */
}
header .nav-links-li {
    display: flex;
    position: relative;
}
header .nav-links-li a {
    margin: auto 0.75rem;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 8px;
}
header .nav-inner-ul {
    /* display: none; */
    position: absolute;
    top: 90%;
    background-color: #413f3f;
    z-index: 3;
    width: max-content;
    padding-left: 0;
    height: max-content;
}
header .intro-ul {
    display: none;
}
header .nav-inner-li a {
    padding: 1rem;
    width: 350px;
    display: block;
    border-bottom: 2px solid white;
    margin: auto;
    position: relative;
}
header .nav-last-ul {
    /* display: none; */
    display: block;
}

.partner-nav .partner-ul .nav-last-li a {
    background-color: #413f3f !important;
    border-bottom: 2px solid white;
}

header .nav-last-ul a {
    border-bottom: none !important;
    width: 100%;
}
header .nav-links-li:hover a {
    color: #ec3242;
    padding-bottom: 5px;
    border-bottom: 3px solid white;
}
header .nav-inner-li {
    border-bottom: 1px solid #b9b9b9;
}
header .nav-inner-li a {
    border-bottom: none !important;
}
header .intro:hover .intro-ul {
    display: block !important;
}
header .nav-links-li:hover .nav-inner-li a {
    color: white;
    padding-bottom: 1rem;
}
header .custom-ul {
    display: none;
}
header .custom:hover .custom-ul {
    display: flex !important;
}

header .custom-ul {
    width: 780px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 1.5rem;
}

header .custom-ul a {
    width: 380px;
}

header .flagship-ul {
    display: none;
}
header .flagship:hover .flagship-ul {
    display: block !important;
}
header .nav-inner-li:hover a {
    background-color: #333737;
}

header .contact-btn {
    height: fit-content;
    margin: auto 1.5rem;
    padding: 0.75rem 1rem;
    background-color: #ec3242;
    color: white;
    border-radius: 3rem;
    text-decoration: none;
    font-size: 18px;
}

.mobile-header {
    display: none;
    position: relative;
}

@media (max-width: 1250px) {
    header ul {
        padding-left: 0;
    }

    .contact-btn {
        margin: auto 1rem;
    }

    header .nav-links-li a {
        margin: auto 13px;
    }
}

@media (max-width: 1200px) {
    header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }
}

.mobile-header {
    justify-content: space-between;
    background-color: #1e1e1e;
    position: fixed;
    width: 100%;
    z-index: 10;
}
.mobile-header .logo {
    height: 100%;
    display: flex;
}
.mobile-header .logo img {
    height: 50px;
    margin: 0.45rem 1rem;
}

.sidebar {
    position: absolute;
    height: calc(100vh - 60px);
    width: 100%;
    max-width: 500px;
    top: 100%;
    right: -100%;
    background-color: #413f3f;
    z-index: 3;
    transition: all 0.5s ease-in;
}

.sidebar-two,
.sidebar-three,
.sidebar-four {
    z-index: 5;
}

.sidebar-in {
    right: 0 !important;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}
.sidebar ul a {
    padding: 1rem;
    width: 92%;
    display: block;
    border-bottom: 2px solid white;
    margin: auto;
    color: white;
    text-decoration: none;
}

.last-form {
    background-image: url(images/last-form.png);
}

.last-form .text-div {
    display: flex;
}

.last-form .text-div h2 {
    margin: auto;
    color: white;
    font-size: 53px;
    font-weight: 700;
    line-height: 65px;
    width: 90%;
}

.custom-form-container {
    width: 90%;
    background: #333;
    padding: 2rem 4rem;
    border-radius: 8px;
    color: #fff;
    margin: 2rem auto;
    box-shadow: 0px 0px 15px 0px #00000026;
}

.custom-form-group {
    margin-bottom: 15px;
    display: flex;
}

.custom-form-group.split {
    display: flex;
    justify-content: space-between;
}
.custom-form-group.split input {
    width: 49%;
}
.custom-form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #555;
    color: #fff;
    border: 1.34px solid #a4a4a4;
}
.custom-form-group input::placeholder {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.custom-form-label {
    display: block;
    margin-bottom: 5px;
}

.custom-form-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
}

.custom-form-select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #555;
    color: #fff;
    border: 1.34px solid #a4a4a4;
}

.custom-form-textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #555;
    color: #fff;
    height: 80px;
    border: 1.34px solid #a4a4a4;

    resize: none;
}

.custom-form-button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: red;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.custom-form-button:hover {
    background: darkred;
}

@media (max-width: 768px) {
    .last-form {
        background-color: #1e1e1e !important;
        background-image: none;
    }
    .last-form .text-div h2 {
        font-size: 20px;
        margin-top: 1rem;
        line-height: 32px;
    }
    .custom-form-container {
        padding: 1rem;
        margin: 1rem auto;
    }
}

footer {
    background-color: #070707;
    color: white;
}

footer .container-fluid {
    padding: 2rem 4rem;
}

footer .logo-info {
    padding: 2rem;
}

footer .logo-info .foot-logo {
    height: 90px;
    margin-bottom: 2rem;
}

.news-letter {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

footer .logo-info p {
    font-size: 15px;
    line-height: 18px;
}

.contact-info {
    padding: 2rem;
}

.contact-info h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 29px;
}

.contact-info .number {
    padding: 0.5rem;
    margin: 1rem 0;
    background-color: white;
    border-radius: 3px;
    display: flex;
}

.contact-info .number a {
    color: #ec3242;
    text-decoration: none;
    font-size: 30px;
    margin: auto;
    text-align: center;
    font-weight: 600;
}

.contact-info .email a {
    color: white;
    text-decoration: none;
}

.map-info {
    padding: 2rem;
}

.map-info iframe {
    width: 100%;
    height: 80%;
    min-height: 300px;
    margin-bottom: 1rem;
}

.map-info .pri-con {
    display: flex;
    justify-content: space-between;
}

.pri-con a {
    color: white;
    text-decoration: none;
}

.foot-links{
    padding-top: 1rem;
}

.foot-links h5 {
    margin-bottom: 1.5rem;
    text-decoration: underline;
}

.foot-links ul {
    list-style: none;
    padding-left: 0;
}

.foot-links li {
    margin-bottom: 1rem;
    font-size: 14px;
}

.foot-links li a{
    color: white;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

footer section {
    border-bottom: 1px solid #565656;
}

.social-logos{
    display: flex;
    width: 190px;
    justify-content: space-between;
    margin-top: 2rem;
}

.social-logos img{
    height: 20px;
}

.last-line{
    text-align: center;
    padding: 1.5rem 0;
}

.last-line span{
    color: #BABABA;
}

.email-in {
    position: relative;
}

.email-in a{
    position: absolute;
    top: 12px;
    right: 20px;
}

@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }

    .footer-top .container-fluid {
        padding: 2rem 1rem;
    }

    .social-logos {
        width: 100%;
    }

    .last-line{
        font-size: 10px;
    }
}

.index-hero {
    background-color: #131313;
    height: 85vh;
    overflow: hidden;
}
.index-hero .heading-row {
    width: 60%;
    margin: auto;
    padding-top: 3rem;
    padding-bottom: 0;
}
.index-hero .section-heads {
    margin-bottom: 0;
}
.index-hero .rotate img {
    width: 100%;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
.rotate {
    -webkit-animation: rotating 45s linear infinite;
}

@media (max-width: 992px) {
    .index-hero {
        height: 70vh;
    }
    .index-hero .heading-row {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .index-hero {
        height: 50vh;
    }
    .index-hero .heading-row {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .index-hero .heading-row {
        padding: 4rem 0 0rem 0;
    }
    .index-hero .rotate img {
        width: 125%;
        transform: translateX(-12.5%);
    }
}
.index-stats {
    background: #ec3242;
}

.section-heads {
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    font-weight: 600;
    color: white;
    margin: 2rem 0;
    font-family: "Poppins", sans-serif;
}

.section-heads span {
    color: #ec3242;
}

.heading-row {
    padding-bottom: 3rem;
}

@media (max-width: 992px) {
    .heading-row {
        padding-bottom: 1rem;
    }
}
@media (max-width: 768px) {
    .section-heads {
        font-size: 22px;
        margin: 1rem 0;
        line-height: 30px;
    }
    .index-hero .section-heads{
        margin: 4rem 0 2rem 0;
        font-size: 16px;
        line-height: 36px;
    }
}
.our-focus {
    margin: 0;
    padding: 0;
    background: rgb(30, 30, 30);
    background: linear-gradient(
        90deg,
        rgb(30, 30, 30) 23%,
        rgb(180, 42, 54) 100%
    );
}
.our-focus .row {
    margin: 0;
    padding: 0;
}
.our-focus .col-md-6,
.our-focus .container-fluid {
    margin: 0;
    padding: 0;
}
.our-focus img {
    width: 100%;
    height: 550px;
}
.our-focus .move-div {
    position: relative;
}
.our-focus .focus-text {
    background-color: #1e1e1e;
    height: fit-content;
    width: 105%;
    color: white;
    padding: 6rem 4rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 43px;
}

@media (max-width: 768px) {
    .our-focus {
        height: unset;
    }
    .our-focus img {
        width: 100%;
        height: unset;
    }
    .our-focus .our-focus-row {
        flex-direction: column-reverse;
    }
    .our-focus .move-div {
        display: flex;
    }
    .our-focus .focus-text {
        position: relative;
        width: 90%;
        left: 0;
        padding: 2rem 1.5rem;
        transform: translateY(-25%);
        margin: auto;
        font-size: 10px;
        line-height: 24px;
    }
}
.focus-sectors {
    background-color: #1e1e1e;
    padding-bottom: 3rem;
}
.focus-sectors .focus-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 2rem;
    row-gap: 1rem;
    overflow: hidden;
}
.focus-sectors .focus-comp {
    background-color: #262626;
    display: flex;
    margin: 0 2rem;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #474747;
}
.focus-sectors .focus-comp:hover {
    background-color: #ec3242;
}
.focus-sectors .focus-comp .img-div {
    width: 45%;
}
.focus-sectors .focus-comp .img-div img {
    width: 100%;
    height: 100%;
}
.focus-sectors .text-div {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 55%;
}
.focus-sectors .text-div span {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    width: 100%;
    color: white;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 992px) {
    .focus-sectors .focus-grid {
        grid-template-columns: repeat(2, auto);
        column-gap: 1rem;
    }
    .focus-sectors .focus-comp {
        margin: 0;
    }
    .focus-sectors .text-div span {
        font-size: 12px;
    }
}
.achieve-sectors {
    background-color: #1e1e1e;
    padding-bottom: 3rem;
}
.achieve-sectors .achieve-cards-row {
    color: white;
    margin: 1rem;
    border: 2px solid #474747;
    border-radius: 5px;
}
.achieve-sectors .achieve-cards {
    padding: 2rem 1.5rem;
    border-right: 2px solid #474747;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.achieve-sectors .achieve-cards.last {
    border-right: none;
}
.achieve-sectors .icon {
    width: fit-content;
    padding: 2rem;
    border: 1px solid;
    border-image-source: linear-gradient(
        180deg,
        #2e2e2e 0%,
        rgba(46, 46, 46, 0) 100%
    );
    background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%),
        linear-gradient(180deg, #2e2e2e 0%, rgba(46, 46, 46, 0) 100%),
        linear-gradient(
            229.29deg,
            rgba(236, 50, 66, 0.2) -68.25%,
            rgba(236, 50, 66, 0) 32.16%
        );
    border-radius: 10px;
    margin-bottom: 2rem;
}
.achieve-sectors .text {
    margin-bottom: 3rem;
}
.achieve-sectors .text h3 {
    font-size: 30px;
    line-height: 45px;
    letter-spacing: -0.6%;
    margin-bottom: 1.5rem;
}
.achieve-sectors .text span {
    font-size: 18px;
    font-weight: 100;
    line-height: 24px;
    letter-spacing: -0.006em;
    text-align: left;
}
.achieve-sectors .button-div {
    width: 80%;
    margin-top: auto;
}
.achieve-sectors .button-div a {
    display: block;
    width: 100%;
    height: 60px;
    padding: 18px 0px 18px 0px;
    border-radius: 8px;
    gap: 10px;
    background-color: #262626;
    font-family: Barlow;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.006em;
    text-align: left;
    color: white;
    text-decoration: none;
    text-align: center;
}
.achieve-sectors .button-div a:hover {
    background-color: #ec3242;
}

@media (max-width: 992px) {
    .achieve-sectors .achieve-cards-row {
        border: none;
    }
    .achieve-sectors .achieve-cards-row .col-md-6{
        margin-bottom: 1rem;
    }
    .achieve-sectors .achieve-cards {
        margin: 1rem;
        border: 2px solid #474747;
        /* border-radius: 5px; */
    }
    .achieve-sectors .achieve-cards.last {
        border-right: 2px solid #474747;
    }
}
@media (max-width: 500px) {
    .achieve-sectors .achieve-cards-row {
        margin: 0;
    }
    .achieve-sectors .achieve-cards {
        margin: 1rem 0;
        padding: 1.25rem;
    }
    .achieve-sectors .icon {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .achieve-sectors .text h3 {
        font-size: 25px;
        line-height: 38px;
    }
    .achieve-sectors .text span {
        font-size: 16px;
        line-height: 20px;
    }
    .achieve-sectors .button-div {
        width: 100%;
    }
    .achieve-sectors .button-div a {
        height: fit-content;
        width: 80%;
        font-size: 16px;
        padding: 12px 0 12px 0;
    }
}
.products-section {
    background-color: #1e1e1e;
    padding-bottom: 3rem;
    overflow: hidden;
}
.products-section .boxx {
    border-radius: 10px;
    z-index: 1;
    transition: all ease 0.3s;
    overflow: hidden;
}
.products-section .boximg {
    width: 100%;
}
.products-section .text {
    text-align: left;
    padding: 1rem;
}
.products-section .text h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 24px;
}
.products-section .text button {
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    border: none;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .products-section .r {
        margin: 0;
        padding: 0;
        padding: 0.5rem 0.5rem 0.5rem 1rem;
    }
    .products-section .l {
        margin: 0;
        padding: 0;
        padding: 0.5rem 1rem 0.5rem 0.5rem;
    }
    .products-section .boxx {
        margin: 0.5rem 0;
    }
    .products-section .text {
        padding: 0.5rem;
    }
    .products-section .text h3 {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }
    .products-section .text button {
        font-size: 8px;
    }
}
.roles-section {
    background-color: #1e1e1e;
    padding-bottom: 3rem;
}
.roles-section .roles-row {
    padding: 0.5rem;
}
.roles-section .roles-card {
    margin: 1rem 0.5rem;
    background-color: #262626;
    color: white;
    border: 2px solid #474747;
    border-radius: 5px;
    padding: 0.5rem;
    display: flex;
}
.roles-section .icon {
    width: fit-content;
    padding: 1.5rem;
    margin: auto 1rem;
    border: 1px solid;
    border-image-source: linear-gradient(
        180deg,
        #2e2e2e 0%,
        rgba(46, 46, 46, 0) 100%
    );
    background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%),
        linear-gradient(180deg, #2e2e2e 0%, rgba(46, 46, 46, 0) 100%),
        linear-gradient(
            229.29deg,
            rgba(236, 50, 66, 0.2) -68.25%,
            rgba(236, 50, 66, 0) 32.16%
        );
    border-radius: 10px;
}
.roles-section .text {
    margin: 1.5rem 0;
}
.roles-section .text h3 {
    font-size: 1.5rem;
    line-height: 38px;
    margin-bottom: 1rem;
}
.roles-section .text p {
    font-size: 18px;
    margin-bottom: 0;
}
.roles-section .roles-card:hover {
    background-color: #ec3242;
}
.roles-section .roles-card:hover .icon {
    background: #e6e6e6;
}

@media (max-width: 768px) {
    .roles-section .heading-row {
        padding-top: 1.5rem;
        margin-bottom: 0;
    }
    .roles-section .icon {
        padding: 0.75rem;
    }
    .roles-section .icon img {
        width: 15px;
        height: 15px;
    }
    .roles-section .col-lg-6 {
        margin: 0;
        padding: 0;
    }
    .roles-section .col-lg-12 {
        margin: 0;
        padding: 0;
    }
    .roles-section .roles-card {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
    .roles-section .text {
        margin: 0.75rem 0;
    }
    .roles-section .text h3 {
        font-size: 16px;
        line-height: 21px;
    }
    .roles-section .text p {
        font-size: 14px;
        line-height: 20px;
    }
}
.inception-hero {
    background-color: #1e1e1e;
    margin: 0;
    padding: 0;
}
.inception-hero .container-fluid {
    margin: 0;
    padding: 0;
}
.inception-hero .row {
    margin: 0;
    padding: 0;
}
.inception-hero .img-div {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}
.inception-hero img {
    width: 90%;
}
.inception-hero .text-div {
    color: white;
    margin: auto;
    padding: 3rem;
}
.inception-hero .text-div h3 {
    color: #ec3242;
}
.inception-hero .text-div h1 span {
    color: #ec3242;
}

@media (max-width: 992px) {
    .inception-hero .text-div {
        text-align: center;
        margin-top: 4rem;
    }
    .inception-hero .text-div h3 {
        font-size: 30px;
    }
    .inception-hero .text-div h1 {
        font-size: 22px;
    }
    .inception-hero img {
        width: 100%;
    }
}
.our-company {
    background-color: #1e1e1e;
    padding-top: 2rem;
}
.our-company ul {
    color: white;
    list-style: none;
    margin: 0 5rem;
}
.our-company li {
    padding: 3rem;
    position: relative;
    font-size: 20px;
    font-weight: 600;
}
.our-company li:before {
    content: "";
    color: red;
    width: 50px;
    height: 50px;
    background-color: #ec3242;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-25px);
    bottom: 0;
    border-radius: 10px;
    z-index: 2;
}
.our-company li:not(:last-child)::after {
    content: "";
    color: white;
    /* border-left: 1px dashed white; */
    position: absolute;
    height: 100%;
    width: 2px;
    top: 50%;
    left: -25px;
    background-image: linear-gradient(white 50%, rgb(0, 0, 0) 0%);
    background-position: right;
    background-size: 1px 29px;
    background-repeat: repeat-y;
}

@media (max-width: 992px) {
    .our-company ul {
        margin: 0 1rem;
    }
    .our-company li {
        padding: 1.5rem 0rem 1.5rem 1rem;
        font-size: 14px;
        font-weight: 400;
    }
}
.vision {
    padding-bottom: 4rem;
}
.vision .section-heads {
    color: black;
}
.vision .vision-card {
    margin: 2rem;
    padding: 2rem;
    border: 4px solid #c0c0c0;
    height: 100%;
    font-size: 22px;
    line-height: 30px;
}
.vision .vision-card p {
    margin-bottom: 0;
}
.vision .image-div img {
    margin-top: 2rem;
    padding: 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .vision .col-md-6 {
        margin-bottom: 2rem;
    }
    .vision .vision-card {
        margin: 0.25rem;
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
        padding: 1rem;
    }
    .vision .image-div {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    .vision .image-div img {
        margin: 0;
        width: 190%;
        padding: 0;
    }
}
.our-founders {
    background-color: #1e1e1e;
}
.our-founders .heading-row p {
    color: white;
    width: 70%;
    margin: auto;
    text-align: center;
}
.our-founders .founder {
    padding: 1rem 2rem;
}
.our-founders .founder-card {
    border: 2px solid #474747;
    border-radius: 5px;
    padding: 1rem;
}
.our-founders .founder-card .img-div img {
    width: 100%;
}
.our-founders .text-div {
    color: white;
    display: flex;
    flex-direction: column;
}
.our-founders .text-div p {
    font-size: 18px;
    line-height: 30px;
}
.our-founders .logos {
    display: flex;
    justify-content: end;
    margin-top: auto;
}
.our-founders .logos img {
    margin: 0 1rem 0 0;
}
.our-founders .reverse {
    flex-direction: row-reverse;
}
.our-founders .reverse .logos {
    justify-content: flex-start;
}
.our-founders .text-div h2 span {
    color: #ec3242;
}

@media (max-width: 992px) {
    .our-founders .heading-row .section-heads {
        font-size: 20px;
    }
    .our-founders .heading-row p {
        font-size: 13px;
        width: 90%;
    }
    .our-founders .text-div p {
        font-size: 14px;
        line-height: 24px;
    }
}
@media (max-width: 768px) {
    .our-founders .heading-row p {
        font-size: 10px;
        width: 90%;
    }
    .our-founders .founder {
        padding: 0.5rem 1rem;
    }
    .our-founders .section-heads {
        margin: 0;
        margin-top: 4.5rem;
    }
    .our-founders .founder-card .img-div {
        display: flex;
        margin-bottom: 0.5rem;
    }
    .our-founders .founder-card .img-div img {
        width: 50%;
        margin: auto;
    }
    .our-founders .founder-card h2 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
    .our-founders .founder-card p {
        font-size: 10px;
        line-height: 18px;
        text-align: justify;
    }
    .our-founders .logos,
    .our-founders .reverse .logos {
        justify-content: center;
    }
    .our-founders .logos img {
        margin: 1rem 1rem 0 1rem;
    }
}

.our-industries {
    padding-top: 4rem;
}
.our-industries p {
    text-align: center;
    color: white;
    font-weight: 600;
}

.job-role .roles-card {
    height: 90%;
}

.invest-in p {
    text-align: center;
    color: white;
    font-weight: 600;
}

.invest-in .roles-card {
    height: 90%;
    text-align: center;
}

.channel-hero {
    background-color: #020507;
    background-image: url(images/channel-hero.png);
    height: 100vh;
    background-position: right;
    background-repeat: no-repeat;
    display: flex;
}
.channel-hero .container-fluid {
    margin: auto;
}
.channel-hero .text-div {
    color: white;
    margin: auto;
    padding: 3rem;
}
.channel-hero .text-div h1 {
    font-size: 40px;
    line-height: 55px;
    font-weight: 600;
}
.channel-hero .text-div h1 span {
    color: #ec3242;
}
.channel-hero .text-div p {
    font-size: 18px;
    line-height: 35px;
}

.channel-head {
    background-color: #0e040d;
    padding: 2rem 0;
}

.our-company .heading-row p {
    text-align: center;
    color: white;
    font-weight: 600;
}

.heading-row p {
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 992px) {
    .channel-hero .text-div {
        text-align: center;
        margin-top: 4rem;
    }
    .channel-hero .text-div h3 {
        font-size: 30px;
    }
    .channel-hero .text-div h1 {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .channel-hero {
        height: auto;
        background-image: none;
    }
    .channel-hero .row {
        flex-direction: column-reverse;
    }
    .channel-hero .space-div {
        height: 50vh;
        background-image: url(images/channel-hero.png);
        background-size: cover;
    }
    .channel-hero .text-div {
        padding: 2rem 1rem;
        margin: 3rem 0;
    }
    .channel-hero .text-div h1 {
        font-size: 22px;
        line-height: 30px;
    }
    .channel-hero .text-div p {
        margin-top: 1rem;
        font-size: 14px;
        text-align: justify;
        line-height: 24px;
    }
}
.press-hero {
    background-image: url(images/press.png);
    background-size: cover;
}
.press-hero h1 {
    margin: 25vh 0;
    font-size: 70px;
    text-align: center;
    color: white;
    width: 100%;
    font-weight: 600;
}
.press-hero h1 span {
    color: #ec3242;
}

@media (max-width: 768px) {
    .press-hero {
        background-image: url(images/press-phone.png);
        background-size: cover;
    }
    .press-hero h1 {
        font-size: 50px;
    }
}
.press-cards-section {
    background-color: #1e1e1e;
}
.press-cards-section .press-card {
    background-color: #4a4a4a;
    padding: 1.5rem;
    margin: 1rem;
}
.press-cards-section .press-card h5 {
    color: white;
    padding: 0 1.25rem;
    font-size: 30px;
}
.press-cards-section .press-card img {
    width: 100%;
}
.press-cards-section p {
    color: #e6e6e6;
    padding: 0 1.25rem;
}
.press-cards-section .button-div {
    width: 100%;
}
.press-cards-section .button-div a {
    display: block;
    width: 100%;
    height: 60px;
    padding: 18px 0px 18px 0px;
    border-radius: 8px;
    gap: 10px;
    background-color: #ec3242;
    font-family: Barlow;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.006em;
    text-align: left;
    color: white;
    text-decoration: none;
    text-align: center;
    margin: auto;
    width: 80%;
}

.website-design {
    background-color: #000000;
}
.website-design .img-div img {
    width: 100%;
}
.website-design .text-div {
    color: white;
    margin: auto;
    padding: 3rem 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.website-design .text-div h1 {
    font-size: 40px;
    line-height: 55px;
    font-weight: 600;
}
.website-design .text-div h1 span {
    color: #ec3242;
}
.website-design .text-div p {
    font-size: 18px;
    line-height: 35px;
}
.website-design .serv {
    font-size: 30px;
    line-height: 37px;
    color: #ec3242;
}

@media (max-width: 768px) {
    .website-design {
        padding-top: 4rem;
    }
    .website-design .row {
        flex-direction: column-reverse;
    }
    .website-design .text-div {
        text-align: center;
    }
    .website-design .text-div h1 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 1rem;
    }
    .website-design .text-div p {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }
    .website-design .serv {
        display: none;
    }
}
.b2b .roles-card {
    height: 90%;
}
.b2b .roles-card .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.b-clients .roles-card {
    padding: 1rem;
    height: 90%;
}
.b-clients .roles-card h3 {
    text-align: center;
}
.high-end .section-heads {
    width: 95%;
    margin: 4rem auto 1rem auto;
}
.high-end .section-heads h1 {
    font-size: 35px;
    line-height: 43px;
    font-weight: 700;
}
.high-end .heading-row p {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    color: black;
}
.high-end .vision-card {
    padding: 2rem 2rem 0 2rem;
    margin: 2rem 2rem 0 2rem;
}
.high-end .vision-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 2rem;
}
.high-end .vision-card p {
    font-weight: 700;
}
.high-end .head-extra {
    padding: 3rem 0;
    padding-top: 5rem;
}
.high-end .head-extra p {
    width: 90%;
    margin: auto;
}
.high-end .red-text {
    color: #ec3242;
}

@media (max-width: 768px) {
    .high-end .vision-card {
        margin: 0.25rem;
        padding: 1rem;
    }
    .high-end .section-heads {
        line-height: 35px;
    }
    .high-end .heading-row p {
        font-size: 14px;
        line-height: 24px;
    }
    .high-end .vision-card h3 {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    .high-end .vision-card p {
        font-size: 14px;
    }
    .high-end .head-extra {
        padding: 2rem 0;
        padding-top: 1rem;
    }
}
.website-roles .heading-row {
    padding-top: 3rem;
}
.website-roles .roles-card {
    min-height: 240px;
}
.website-roles .roles-row .text {
    margin: auto 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.website-roles .roles-card ul {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    list-style: none;
}
.website-roles .roles-card li {
    margin-bottom: 10px;
    position: relative;
}
.website-roles .roles-card li::before {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ec3242;
    position: absolute;
    left: -35px;
    top: 1px;
}
.website-roles .roles-card:hover li::before {
    background-color: white;
}

@media (max-width: 768px) {
    .website-roles .roles-card h3 {
        font-size: 18px;
    }
    .website-roles .roles-card {
        min-height: 180px;
    }
    .website-roles .roles-card li {
        font-size: 14px;
        line-height: 16px;
    }
    .website-roles .roles-card li::before {
        width: 14px;
        height: 14px;
    }
    .website-roles .roles-row .text {
        margin: auto 1rem;
    }
}
.custom-web-hero {
    background-color: #020507;
    background-image: url(images/custom-web.png);
    height: 100vh;
    background-position: right;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .custom-web-hero {
        background-image: none;
    }
    .custom-web-hero .space-div {
        height: 50vh;
        background-image: url(images/custom-web.png);
        background-size: cover;
    }
}
.custom-web .roles-card li {
    margin: 1rem 0;
}
.custom-web .roles-card {
    min-height: unset;
}

.erp-white .col-md-12:last-child {
    margin-top: 2rem;
}
.erp-white .vision-card p {
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
}

.need-of-clients {
    background-color: #1e1e1e;
}
.need-of-clients .grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 20px;
}
.need-of-clients .card {
    background-color: #262626;
    border: 2px solid #474747;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
}
.need-of-clients .card h3 {
    color: white;
    margin: auto;
    padding: 2rem 0;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
}
@media screen and (max-width: 992px) {
    .need-of-clients .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .need-of-clients .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.erp-soft {
    background-color: #020507;
    background-image: url(images/erp.png);
    height: 100vh;
    background-position: right;
    background-repeat: no-repeat;
}
.erp-soft p {
    text-align: justify;
}

@media (max-width: 768px) {
    .erp-soft {
        background-image: none;
    }
    .erp-soft .space-div {
        height: 50vh;
        background-image: url(images/erp.png);
        background-size: cover;
    }
}
.white-roles {
    background-color: white;
}
.white-roles .heading-row {
    padding-bottom: 0;
}
.white-roles .section-heads {
    color: black;
}
.white-roles .roles-card {
    color: black;
    background-color: white;
    height: 90%;
}
.white-roles .roles-card .icon {
    background: none;
    background-color: #ec3242;
}
.white-roles .roles-card:hover {
    color: black;
    background-color: white;
}
.white-roles .roles-card:hover .icon {
    background: none;
    background-color: #ec3242;
}

.ecom-hero {
    background-color: #020507;
    background-image: url(images/ecommerce.png);
    height: 100vh;
    background-position: right;
    background-repeat: no-repeat;
}
.ecom-hero p {
    text-align: justify;
}

.ecom-roles .roles-card {
    height: 90%;
}

.ecom-cards .roles-row{
    justify-content: center;
}

.ecom-cards .roles-card .text{
    width: 100%;
}

.ecom-flag-last .roles-card{
    height: 90%;
}

@media (max-width: 768px) {
    .ecom-hero {
        background-image: none;
    }
    .ecom-hero .space-div {
        height: 50vh;
        background-image: url(images/ecommerce.png);
        background-position: right;
    }
}
.are-built {
    background-color: #1a1a1a;
}
.are-built .img-div {
    display: flex;
}
.are-built .img-div img {
    width: 80%;
    margin: auto;
}
.are-built .text-div {
    color: white;
    display: flex;
    flex-direction: column;
    padding: 1rem 4rem 1rem 0;
    justify-content: center;
}
.are-built .text-div h2 {
    font-size: 40px;
}
.are-built .text-div p {
    text-align: justify;
    font-size: 18px;
    line-height: 35px;
}

@media (max-width: 768px) {
    .are-built .text-div{
        padding: 1rem;
    }

    .are-built .text-div h2{
        font-size: 24px;
        line-height: 32px;
    }

    .are-built .text-div p{
        font-size: 14px;
        line-height: 24px;
    }
    
}

.individual-retailers .roles-card {
    height: 90%;
}

.individual-retailers .roles-card .text {
    width: 100%;
}
.individual-retailers .roles-card h3 {
    color: white;
    margin: auto;
    padding: 2rem 0;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
    width: 100%;
}

.not-limited .roles-card h3 {
    margin-bottom: 0;
    font-weight: 400;
}

.red-section {
    background-color: #ec3242;
    color: white;
    text-align: center;
    padding: 3rem;
}
.red-section h2 {
    margin-bottom: 1.5rem;
    font-size: 38px;
}
.red-section p {
    width: 60%;
    margin: auto;
    font-size: 20px;
}
.red-section button {
    width: 200px;
    border-radius: 2rem;
    margin: 3rem auto 0;
    padding: 0.5rem;
    font-weight: 600;
}
.red-section .col-md-12 {
    display: flex;
    flex-direction: column;
}

.plan-to-drop-by .text{
    padding: 4rem;
}

@media (max-width: 768px) {
    .red-section {
        padding: 1rem;
    }
    .red-section p {
        width: 100%;
        font-size: 14px;
        padding: 0;
    }
    .red-section h2 {
        font-size: 20px;
    }
    .red-section button {
        font-size: 14px;
        margin: 1rem auto 2rem;
    }
    .plan-to-drop-by .text{
        padding: 1rem;
    }
}



.phone-section {
    text-align: center;
    padding: 3rem 0 0 0;
}
.phone-section h2 {
    font-size: 38px;
    font-weight: 700;
}
.phone-section p {
    width: 60%;
    margin: auto;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
}
.phone-section button {
    width: 200px;
    border-radius: 2rem;
    margin: 1rem auto;
    padding: 0.5rem;
    font-weight: 600;
}
.phone-section .black-circle {
    margin: auto;
    margin-top: 3rem;
    max-width: 900px;
    background: radial-gradient(
        circle at 50% 160%,
        #1e1e1e 28vw,
        transparent 17.1vw
    );
}
.phone-section .black-circle img {
    height: 100%;
}

.phone-section button{
    background-color: #ec3242;
    color: white;
}

@media (max-width: 1200px) {
    .phone-section .black-circle {
        background: radial-gradient(
            circle at 50% 140%,
            #1e1e1e 28vw,
            transparent 17.1vw
        );
    }
}
@media (max-width: 992px) {
    .phone-section .black-circle {
        background: radial-gradient(
            circle at 50% 125%,
            #1e1e1e 32vw,
            transparent 17.1vw
        );
    }
}
@media (max-width: 768px) {
    .phone-section h2{
        font-size: 20px;
        line-height: 30px;
    }
    .phone-section p{
        font-size: 12px;
        line-height: 20px;
        width: 90%;
    }
    .phone-section .black-circle {
        background: radial-gradient(
            circle at 50% 125%,
            #1e1e1e 44vw,
            transparent 17.1vw
        );
    }
}
@media (max-width: 500px) {
    .phone-section .black-circle {
        background: radial-gradient(
            circle at 50% 125%,
            #1e1e1e 44vw,
            transparent 17.1vw
        );
    }
    .phone-section .black-circle img {
        height: unset;
        width: 60%;
    }
}
.digital-hero .img-div {
    display: flex;
}
.digital-hero .img-div img {
    width: 70%;
    margin: auto;
}

.b-offering .section-heads {
    color: black;
}
.b-offering .heading-row {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}
.b-offering .heading-row p {
    color: black;
}
.b-offering .img-div {
    display: flex;
}
.b-offering .img-div img {
    width: 90%;
}
.b-offering .text-div {
    font-weight: 600;
    font-size: 18px;
    line-height: 35px;
    text-align: justify;
}
.b-offering .parts {
    margin-bottom: 3rem;
}

.white-tech {
    color: black;
    background-color: white;
}
.white-tech .text-div {
    color: black;
}
.white-tech h2 {
    font-weight: 700;
}
.white-tech p {
    font-weight: 500;
}

@media (max-width: 768px) {
    .white-tech .text-div {
        padding: 1rem;
        text-align: center;
    }
    .white-tech h2 {
        font-size: 20px;
    }
    .white-tech .text-div p {
        text-align: center;
    }
}

.code-hero {
    background: linear-gradient(
        180deg,
        #226088 0%,
        #073c5d 47.74%,
        #001c34 100%
    );
}
.not-limited .roles-card {
    height: 90%;
}

.not-limited .section-heads {
    line-height: 30px;
}
.web-host-hero {
    padding: 3rem 0;
}

.hosting-services {
    background-color: #1e1e1e;
}
.hosting-services .hosting-card-row {
    color: white;
    justify-content: center;
    padding-bottom: 4rem;
}
.hosting-services .hosting-card-wrapper {
    padding: 1rem;
}
.hosting-services .hosting-card {
    border: 2px solid #474747;
    background-color: #262626;
    padding: 0 1rem;
    display: flex;
    text-align: center;
    min-height: 170px;
}
.hosting-services .hosting-card h5 {
    font-size: 18px;
    margin-bottom: 0;
    margin: auto;
}

.hosting-white .section-heads {
    color: black;
}
.hosting-white .hosting-card-wrapper {
    padding: 1rem;
}
.hosting-white .hosting-card {
    border: 2px solid #474747;
    background-color: white;
    border-radius: 5px;
    color: black;
    padding: 0 1rem;
    display: flex;
    text-align: center;
    min-height: 170px;
}
.hosting-white .hosting-card h5 {
    font-size: 25px;
    margin-bottom: 0;
    margin: auto;
}

.code-second > * {
    margin: 0;
    padding: 0;
}

.code-second {
    background-color: #1e1e1e;
    background-image: url(images/binary.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.code-second .row {
    margin: 0;
}
.code-second .col-md-6 {
    padding: 0;
}
.code-second .img-div img {
    width: 100%;
}
.code-second .text-div {
    display: flex;
}
.code-second .text-div p {
    padding: 2rem;
    color: white;
    margin: auto;
    font-size: 20px;
    line-height: 34px;
}

@media (max-width: 768px) {
    .code-second{
        background-image: none;
    }

    .code-second .text-div p{
        font-size: 14px;
        text-align: center;
    }
}

.career-hero {
    background-color: #000f26;
    background-image: url(images/careers.png);
    height: 100vh;
    background-position: right;
    background-repeat: no-repeat;
}
.career-hero .serv {
    font-size: 30px;
    line-height: 37px;
    color: #ec3242;
}

.career-with-us .head {
    display: flex;
}

.career-with-us .head h2 {
    color: white;
    margin: auto;
    font-size: 53px;
    line-height: 64px;
    width: 70%;
}

.unique {
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .career-with-us .head h2 {
        font-size: 30px;
        line-height: 36px;
    }
    .career-hero {
        background-image: none;
    }
    .career-hero .space-div {
        height: 50vh;
        background-image: url(images/careers.png);
        background-position: right;
    }
}

.partnersec1 {
    position: relative;
}

.partnercontent {
    padding-block: 100px;
}
.partnercontent .h {
    font-family: Inter;
    font-size: 62px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}
.partnercontent .t {
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    width: 70%;
}

.reachoutdiv {
    z-index: 1;
    width: 457px;
}

.reachoutcontent {
    position: relative;
}

.reachoutcontent .h {
    font-family: Inter;
    font-size: 29px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(30, 30, 30, 1);
}

.reachoutcontent .t {
    color: rgba(30, 30, 30, 1);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
}

.partnerbox {
    z-index: 1;
    width: 436px;
    height: 435px;
    border-radius: 30px;
    box-shadow: 0px 4px 81px 0px rgba(236, 50, 66, 0.28);
    background: rgba(30, 30, 30, 1);
}
.partnerboxcontent {
    position: relative;
}

.partnerboxcontent .btn {
    z-index: 1;
    margin-left: 3rem;
    width: 185px;
    height: 60px;
    border-radius: 60px;
    color: rgba(255, 255, 255, 1);

    background: rgba(236, 50, 66, 1);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.15);

    box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.27) inset;
    font-family: Inter;
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
}
.yellowstrip {
    position: absolute;
    width: 239px;
    height: 47px;
    left: 9px;
    transform: rotate(-18.49deg);
    background: rgba(255, 197, 1, 0.8);
}

.partneryellowshade {
    position: absolute;
    width: 204.44px;
    height: 200px;
    top: 181.26px;
    left: 977px;
    transform: rotate(20.4deg);
    background: rgba(248, 178, 0, 1);
    filter: blur(119px);
}
.partnerpurpleshade {
    width: 195.37px;
    height: 299.28px;
    top: 168px;
    left: 810.75px;
    transform: rotate(20.4deg);
    background: rgba(155, 73, 220, 1);
    filter: blur(119px);
    position: absolute;
}
.partnerredshade {
    width: 96px;
    height: 289.62px;
    top: 35px;
    left: 1136.75px;
    transform: rotate(20.4deg);
    background: rgba(236, 50, 66, 1);
    filter: blur(119px);
    position: absolute;
}

@media (max-width: 767px) {
    .partnerboxcontent .h {
        z-index: 1;
        font-family: Inter;
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 0em;
        text-align: left;
        color: rgba(255, 255, 255, 1);
    }

    .partnerboxcontent .t {
        z-index: 1;
        font-family: Inter;
        font-size: 15px;
        font-weight: 500;
        line-height: 18px;
        letter-spacing: 0em;
        text-align: left;
        color: rgba(255, 255, 255, 1);
    }

    .partnerboxcontent .no,
    .dot {
        z-index: 1;
        left: 10px;
        top: 0px;
        font-family: Inter;
        font-size: 25px;
        font-weight: 900;
        line-height: 30px;
        letter-spacing: 0em;
        text-align: left;
        position: absolute;
        color: rgba(255, 255, 255, 1);
    }
}
@media (min-width: 768px) {
    .partnerboxcontent .h {
        z-index: 1;
        margin-inline: 3rem;
        font-family: Inter;
        font-size: 29px;
        font-weight: 700;
        line-height: 35px;
        letter-spacing: 0em;
        text-align: left;
        color: rgba(255, 255, 255, 1);
    }

    .partnerboxcontent .t {
        z-index: 1;
        margin-inline: 3rem;
        font-family: Inter;
        font-size: 18px;
        font-weight: 500;
        line-height: 22px;
        letter-spacing: 0em;
        text-align: left;
        color: rgba(255, 255, 255, 1);
    }

    .partnerboxcontent .no,
    .dot {
        z-index: 1;
        left: 10px;
        top: 0px;
        position: absolute;
        font-family: Inter;
        font-size: 43px;
        font-weight: 800;
        line-height: 52px;
        letter-spacing: 0em;
        text-align: center;
        color: rgba(255, 255, 255, 1);
    }
}

/* for mobile ---------- */
.mpartnerhead {
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    padding-block: 100px;
}
.mpartnerhead .t {
    z-index: 1;
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0em;
    padding-inline: 1rem;
}
.mpartnerhead .h {
    z-index: 1;
    font-family: Inter;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0em;
}
.mpartner {
    position: relative;
}

.mpartnerpurpleshade {
    width: 195.37px;
    height: 299.28px;
    top: 351.98px;
    left: -30px;
    transform: rotate(20.4deg);
    background: rgba(155, 73, 220, 1);
    position: absolute;
    filter: blur(119px);
}

.mpartneryellowshade {
    width: 204.44px;
    height: 200.5px;
    top: 338.26px;
    left: 100px;
    transform: rotate(20.44deg);
    position: absolute;
    filter: blur(111px);
    background: rgba(248, 178, 0, 1);
}

@media (min-width: 768px) {
    .contactsec1content .h {
        font-family: Inter;
        font-size: 62px;
        font-weight: 700;
        line-height: 75px;
        letter-spacing: 0em;
        text-align: left;
        color: rgba(255, 255, 255, 1);
    }
    .contactsec1content {
        width: 70%;
        padding-block: 100px;
    }
}

@media (max-width: 767px) {
    .contactsec1 {
        background-position: right; /* Adjust the background position to show the right part */
    }

    .contactsec1content {
        width: 90%;
        padding-block: 80px;
    }

    .contactsec1content .h {
        font-family: Inter;
        font-size: 40px;
        font-weight: 700;
        line-height: 48px;
        letter-spacing: 0em;
        text-align: left;

        color: rgba(255, 255, 255, 1);
    }
}

.contactsec1content .t {
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

/* faq-section */
.faq-section {
    padding: 1em;
    background-color: #0e040d;
}
.accordion-icon-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4em;
    border-radius: 5px;
    margin-right: 1em;
    height: 4em;
    background-color: white;
}
/* Change the arrow icon to a plus sign */

.accordion-button::after {
    display: none;
}
.accorion-opener {
    margin-left: auto;
    width: 1em;
    height: 1em;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    background-color: hsl(0, 0%, 100%, 30%);
    border-radius: 50%;
    color: #d9d9d9;
    background-image: url("./images/Vector\ \(20\).svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1em;
}
/* background-image: none;
    width: 1em;
    height: 1em;
    background-color: hsl(0, 0%, 100%,30%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    content: '+';
    font-size: 3rem; 
    font-weight: bold; 
    color: 
    #D9D9D9; 



  
  /* Change the arrow icon to a minus sign when the accordion is expanded */
.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
    content: "-"; /* Change the content to a minus sign */
    color: #d9d9d9; /* Customize the color of the minus sign */
}

@media (max-width: 768px) {
    .accordion-item {
        p {
            font-size: 15px;
        }
    }
    .accordion-button {
        padding: 0.4em !important;
    }
    .accordion-icon-div {
        width: 3em;
        height: 3em;
    }
    .accorion-opener {
        width: 0.5em;
        height: 0.5em;
        padding: 0.5em;
        background-size: 0.5em;
    }
}

/* backend database  */
.backend-database-hero {
    background: #020507 !important;
}
.backend-database-hero .img-div {
    position: relative;
}
.backend-database-hero .img-div::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0));
}

.hybrid-hero {
    background-image: url("./images/hybridImg.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}
.hybrid-hero .space-div::before {
    background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0));
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

/* privacy policy  */

@media (max-width: 1200px) {
    .privacy-policy-section {
        padding-top: 5em !important;
    }
    .privacy-policies {
        font-size: 0.8em;
    }
}

/* virtual tour  */

/* .virtual-tour-hero{
    height: 90vh;
    width: 100%;
    background-image: url("./images/virtualTour.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
  } */
.virtual-tour-hero {
    width: 100%;
    height: 90vh;
    background: #020507;
}
.virtual-tour-hero .hero-heading-div {
    position: relative;
    z-index: 0;
    width: 40%;
}
.virtual-tour-hero .img-div {
    background-image: url("./images/virtualTour.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    object-fit: contain;
    position: relative;
    width: 60%;
}

.ecom-flag-hero .img-div{
    background-image: url("./images/ecom-flag.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    object-fit: contain;
    position: relative;
    width: 60%;
}

.tour-flag-hero .img-div{
    background-image: url("./images/tour-flag-hero.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    object-fit: contain;
    position: relative;
    width: 60%;
}

.ecom-flag-hero h5{
    color: #ec3242;
}

.ecom-price .toggle-btn .wrapper{
    display: flex;
    margin: 3rem 0;
}

.ecom-price .toggle-btn .wrapper .btn-group{
    margin: auto;
    background-color: #262626;
    padding: 4px;
    border: 2px solid #474747;
    border-radius: 50px;
}   

.ecom-price .toggle-btn .wrapper .btn-group label{
    border: none;
    padding: 1rem 2rem;
    text-align: center;
    width: 300px;
    border-radius: 50px;
    color: white;
}

.btn-check:checked+.btn{
    background-color: #ec3242;
    border: none;
}



.ecom-price{
    background-color: #1e1e1e;
}

.ecom-price-card{
    color: white;
    background-color: #262626;
    border: 2px solid #474747;
    border-radius: 5px;
    margin: 1rem 1.5rem;
}

.ecom-price-card:hover{
    border: 3px solid white;
}

.ecom-price-card .price{
    font-size: 40px;
    line-height: 70px;
    font-weight: 700;
    padding: 0 1rem;
    background-color: #ec3242;
}

.ecom-price-card .price img{
    vertical-align: unset;
}

.ecom-price-card span{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: -0.6%;
}

.ecom-price-card ul{
    padding: 0.5rem 1.5rem;
    list-style: none;
}

.ecom-price-card li{
    padding: 1rem 0;
    border-bottom: 2px solid white;
}

.ecom-price-card h3{
    padding: 0.5rem 1rem;
}

.ecom-card-row .col-md-3{
    margin: 2rem auto;
}

.ecom-price-card .button-div{
    width: 100%;
    display: flex;
    margin: 2rem 0;
    justify-content: center;
}

.ecom-price-card .button-div button{
    background-color: #ec3242;
    color: white;
    padding: 0.75rem 2.5rem;
    border-radius: 1.5rem;
}

.card-hide label{
    border: 1px solid #474747;
    padding: 1rem 0;
    color: white;
}

@media (max-width: 768px){
    .ecom-price .toggle-btn .wrapper .btn-group label{
        width: 175px;
        font-size: 14px;
        padding: 0.75rem 0.5rem;
    }

    .ecom-price-card .price{
        font-size: 30px;
    }
    .ecom-price-card .price img{
        vertical-align: middle;
    }

    .ecom-price .hide-div{
        display: none;
    }
    
}

.error{
    border: 2px solid red!important;
}

.v-tour .text{
    display: flex;
    width: 100%;
}

.v-tour .text h3{
    margin-bottom: 0;
    margin: auto;
    width: 100%;
}

.virtual-tour-hero .img-div::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, #020507, rgba(0, 0, 0, 0));
}


.virtual-tour-hero-section-2 .text-div {
    background-color: #0e040d;
}

.virtual-tour-white-section .heading-row {
    padding: 0;
}

.virtual-white-section-left-image {
    background-image: url("./images/virtualWhiteSectionleftImage.png");
    height: 20em;
    width: 50%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
.virtual-white-section-right-image {
    background-image: url("./images/virtualWhiteSectionRightImage.png");
    height: 20em;
    width: 50%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}
.virtual-white-section-bottom-image {
    background-image: url("./images/virtualWhiteSectionbottomImage.png");
    height: 20em;
    position: absolute;
    left: 25%;
    width: 50%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
@media (max-width: 768px) {
    .virtual-tour-hero .img-div {
        background-position: center;
        margin: auto;
        padding: 3rem 1rem;
        background-size: cover;
        width: 100%;
        height: 50vh !important;
    }
    .virtual-tour-hero .hero-heading-div {
        width: 100%;
        height: 40vh;
    }
    .virtual-tour-hero-div {
        height: auto !important;
    }
    .virtual-white-section-left-image {
        height: 10em;
    }
    .virtual-white-section-right-image {
        height: 10em;
    }
    .virtual-white-section-bottom-image {
        height: 10em;
    }
}

/* lets connect section  */

.lets-connect-section {
    height: 40em;
    background-image: url("./images/LetsConnectImage.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.lets-connect-divs {
    padding: 0.75rem 3rem;
    min-width: 10em;
    display: flex;
    color: white;
    gap: 1em;
    align-items: center;

    background-color: #ec3242;
    border-radius: 50px;
}
.lets-connect-icons {
    width: 2em;
    height: 2em;
}
#whatsapp {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("./images/whatsapp.svg");
}
#email {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("./images/mail.svg");
}
#phone {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("./images/phone.svg");
}

@media (max-width: 568px) {
    .lets-connect-icons {
        width: 1em;
        height: 1em;
    }
    .lets-connect-divs {
        width: 8em;
        min-width: 5em;
        gap: 0.5em;
        padding: 0.4em;
    }
    .lets-connect-elements-div {
        gap: 0.5em !important;
    }
}
@media (max-width: 414px) {
    .lets-connect-divs {
        p {
            font-size: 0.7em;
        }
    }
}

/* contact us  */

.contact-us-hero {
    background-image: url("./images/contactUsHero.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 90vh;
    h1 {
        color: white;
        font-weight: 700;
        font-size: 80px;
    }
    h2 {
        color: white;
        font-weight: 700;
        font-size: 50px;
        span {
            color: #ec3242;
        }
    }
}
@media (max-width: 768px) {
    .we-provide-grid {
        width: 100%;
    }
    .contact-us-hero h1 {
        font-size: 53px;
        line-height: 64px;
    }
    .contact-us-hero h2 {
        font-size: 22px;
        line-height: 30px;
    }
}

/* we-provide-section */

.we-provide-section {
    background-color: #1e1e1e;
    padding: 2em;
    overflow: hidden;
    position: relative;
    h2 {
        color: white;
        font-weight: 700;
        span {
            color: #ec3242;
        }
    }
}
.we-provide-grid {
    display: grid;
    width: 70%;
    gap: 2em;
    grid-template-columns: repeat(2, 1fr);
}
.circle-blur {
    width: 20em;
    height: 20em;
    top: -10em;
    left: -10em;
    background-color: #ec32414e;
    filter: blur(1000px);
    position: absolute;
}
.we-provide {
    padding: 1em;
    height: 20em;
    width: 30em;
    background-color: #262626;
    border: 2px #474747 solid;
}
@media (max-width: 1480px) {
    .we-provide {
        height: 20em;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .we-provide-grid {
        width: 100%;
    }
}
@media (max-width: 550px) {
    .we-provide-grid {
        gap: 1em;
    }
    .we-provide {
        height: 13em;
        p {
            font-size: 0.7em !important;
        }
    }
    .we-provide-logo {
        width: 3em;
        height: 3em;
        svg {
            object-fit: contain;
            width: 100%;
            height: 100%;
        }
        img {
            width: 100%;
        }
    }
    .we-provide-section {
        padding: 1em;
    }
}
/* talk-us-back-section */

.talk-us-back-section {
    overflow: hidden;
    position: relative;
    background-color: #1e1e1e;
    padding: 2em;
    h2 {
        color: white;
        font-weight: 600;
        span {
            color: #ec3242;
        }
    }
}
.circle-blur-talk-us {
    width: 20em;
    height: 20em;
    top: -10em;
    left: -10em;
    background-color: #325aec54;
    filter: blur(1000px);
    position: absolute;
}
.talk-us-back-div {
    div {
        border: 2px #474747 solid;
        background-color: #262626;
        padding: 2em 1em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1em;
        color: white;
        p {
            font-weight: 600;
        }
    }
}
.map {
    background-image: url("./images/map.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.plan-to-drop-by {
    height: 50vh;
}
@media (max-width: 768px) {
    .plan-to-drop-by {
        flex-direction: column;
        width: 100%;
        height: auto;
        div {
            width: 100% !important;
            height: 40vh;
        }
    }
    .last-form-inner-div {
        gap: 1em !important;
    }
}
@media (max-width: 630px) {
    .talk-us-back-div > div {
        p {
            font-size: 1em !important;
        }
    }
}

/* flagship-360-hero */
.flagship-360-hero {
    padding: 1rem;
    color: white;
    border-bottom: 1px solid white;
}

.blogs-header{
    background-color: #000000;
}

.blogs-header h1{
    text-align: center;
    color: white;
    font-size: 62px;
    line-height: 75px;
}

.blog-search-div{
    display: flex;
}

.blog-search {
    width: 300px;
    margin: 2rem auto;
}

.blogs-header .container{
    background-color: #1e1e1e;
    border-radius: 7px;
}

.cat-head{
    border-bottom: 2px solid white;
    color: white;
    text-align: center;
}

.cats-here{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: white;
}

.cats-here a{
    color: white;
    text-decoration: none;
    padding: 1.5rem 2rem;
    font-size: 19px;
}

.blog-card-section{
    background-color: black;
    padding: 3rem 0;
}

.blog-card-section .blog-card{
    color: white;
    margin: 1.25rem 0.5rem;
    padding: 1.25rem;
    background-color: #1e1e1e;
    border: 3px solid #616161;
    border-radius: 5px;
    cursor: pointer;
}

.blog-card-section .blog-card .card-cat{
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.blog-card-section .blog-card .card-head{
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-card-section .blog-card img{
    width: 100%;
    padding-bottom: 1rem;
}

.blog-card-section .blog-card .card-data{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-page{
    padding-top: 5rem;
}

.category-wrapper{
    background-color: #1e1e1e;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem;
}

.category-wrapper .cat-head{
    padding: 0.5rem;
    font-size: 19px;
    border-bottom: 1px solid white;
}

.category-wrapper .cats-here{
    flex-direction: column;
    padding-top: 1rem;
}

.category-wrapper .cats-here a{
    padding: 0.5rem 1rem;
    font-size: 16px;
}

.category-wrapper .cats-here li{
    font-size: 12px;
}

.category-wrapper .cats-here li::marker{
    font-size: 22px;
    font-weight: 700;
    vertical-align: baseline;
}

.blog-area h1{
    font-size: 25px;
    font-weight: 700;
}

.blog-area img{
    width: 100%;
    margin-bottom: 1.5rem;
}

.blog-area p{
    font-weight: 500;
}

@media (max-width: 1200px) {
    .blog-page{
        background-color: #000000;
        color: white;
    }
    .blog-area{
        padding: 1rem;
    }
    .blog-page .row{
        flex-direction: column-reverse;
    }
    .blog-area img{
        margin-bottom: 1rem;
    }
    .blog-area p{
        text-align: justify;

    }
}

.career-form{
    background-image: url(./images/career-form-back.png);
}

.career-form h2{
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    color: white;
    padding-top: 3rem;
}

.career-form p{
    text-align: center;
    color: white;
}

.career-form .col-md-6{
    margin: auto;
}

.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    margin: 1rem 0;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: #eee;
    border-color: #111;
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  
  .drop-title {
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    transition: color .2s ease-in-out;
  }
  .drop-container input{
    opacity: 0;
  }