/*
#  Copyright © 2018-2024 MagnetoAI / Galviron LLC.  All Rights Reserved.  Proprietary and Confidential.  -  The reproduction, adaptation, distribution, display, or transmission of the content is strictly prohibited, unless authorized by Galviron LLC. All other company & product names may be trademarks of the respective companies with which they are associated.
#   Version: 0.0.4
#   Updated: 11/27/2023
#---------------------------------------------------------------------------------------------------------
*/
body {
    background-color: #F5F5F5;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: nun;
    src: url(./fonts/NunitoSans_10pt-Regular.ttf);
}

@font-face {
    font-family: nun-bold;
    src: url(./fonts/NunitoSans_10pt-Bold.ttf);
}

@font-face {
    font-family: nun-semi-bold-italic;
    src: url(./fonts/NunitoSans_10pt-SemiBoldItalic.ttf);
}

@font-face {
    font-family: nun-bold-italic;
    src: url(./fonts/NunitoSans_10pt-BoldItalic.ttf);
}

@font-face {
    font-family: nun-italic;
    src: url(./fonts/NunitoSans_10pt-Italic.ttf);
}

:root {
    --white: #FFFFFF;
}


.container {
    max-width: 1014px;
    margin: 0 auto;
}

/* Header Style */

.nav-container {
    max-width: 1184px;
    margin: 0 auto;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px auto;
    padding: 10px 0;
}

header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
}

.nav-logo img {
    height: auto;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.bar {
    background-color: var(--white);
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: 0.4s;
}

.nav-contant {
    display: flex;
}

.nav-contant li {
    list-style-type: none;
    margin-left: 30px;
}

.nav-contant li a {
    color: var(--white);
    text-decoration: none;
    font-family: nun;
    font-size: 18px;
    transition: all 0.08s ease;
}

.nav-contant li:nth-child(2),
.nav-contant li:nth-child(3) {
    color: var(--white);
    text-decoration: none;
    font-family: nun;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.09s ease;
}

.dropdown {
    position: absolute;
    visibility: hidden;
    list-style-type: none;
    width: 320px;
    top: 30px;
    left: -42px;
    background-color: white;
    border-radius: 5px;
}

.dropdown li {
    padding: 10px;
}

.dropdown li a {
    color: #000000;
}

.dropdown li a:hover {
    color: #93268F;
}

.hover-on {
    position: relative;
    transition: all 0.0005s ease;
}

.hover-on:hover .dropdown {
    visibility: visible;
}

.login {
    position: relative;
}

.login::after {
    content: url(./images/login.png);
    position: absolute;
    right: -24px;
    top: 3px;
}

/* Header Complete */

/* Section number 1 */

.hero-section {
    background: url(./images/Group\ 110.png) no-repeat top/ cover;
    position: relative;
    top: -10px;
    width: 100%;
    height: 1137px;
    display: flex;
    justify-content: left;
    align-items: center;
    overflow: hidden;
}

.hero-section-bg-images img {
    position: absolute;
}

.dots {
    bottom: -410px;
    left: 0;
    opacity: 0.2;
}

.wave {
    top: 193px;
    right: -19px;
    opacity: 0.7;
}

.bg-ellipse {
    bottom: 0;
    right: 0;
}

.hero-section-contant {
    margin-top: 270px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    max-width: 950px;
}

.hero-section-contant h1 {
    font-family: nun;
    font-size: 55px;
    color: var(--white);
    margin-bottom: 50px;
}

.buttons-first-row {
    margin-bottom: 40px;
}

.buttons-first-row,
.buttons-second-row {
    margin-right: 200px;
}

.hero-section-buttons {
    margin-bottom: 40px;
}

.hero-section-buttons p {
    font-size: 21px;
    font-family: nun;
    color: var(--white);
    text-decoration: none;
    border: 2px solid #F5F5F5;
    border-radius: 50px;
    padding: 10px 25px;
    margin-right: 35px;
    display: inline-block;
}

.hero-section-para {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
    max-width: 421px;
    margin-bottom: 30px;
}

.hero-section-buttons-products {
    display: flex;
}

.hero-section-buttons-products a {
    font-size: 21px;
    font-family: nun;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 15px;
    margin: 10px;
}

.product-1 {
    border: 2px solid #27AAE1;
    border-radius: 10px;
    padding: 10px 15px;
    margin-right: 20px;
    transition: all 0.25s ease;
}

.product-1:hover {
    background-color: #27AAE1;
}

.product-2 {
    border: 2px solid #93268F;
    border-radius: 10px;
    padding: 10px 15px;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.product-2:hover {
    background-color: #93268F;
}

.hero-section-counter {
    margin: 150px auto;
}

.counter-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: var(--white);
    width: 950px;
}

.hero-section-counters {
    color: #fff;
    padding: 40px 10px;
}

.counter {
    font-size: 28px;
    font-family: nun-bold;
}

.counterrr {
    font-family: nun;
}

.counterrr h3 {
    font-size: 21px;
    font-family: nun;
}


.hero-section-counters i {
    color: var(--white);
    margin-bottom: 5px;
}

.hero-section-counters .counter {
    font-size: 45px;
    margin: 10px 0;
}

.counterrr img {
    margin-bottom: 25px;
}

/* Section Number 2 */

.about {
    padding: 120px 0;
}

.about-heading-content h2 {
    font-size: 36px;
    font-family: nun-bold;
    color: #000000;
}

.about-heading-content p {
    font-size: 21px;
    font-family: nun;
    color: #000000;
}

.about-body-content {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-top: 40px;
}

.about-body-content-image {
    position: relative;
}

.about-body-content-image img {
    height: 665px;
}

.small-image {
    position: absolute;
    background-color: #FFFFFF;
    width: 213px;
    top: 340px;
    right: -55px;
    box-shadow: 10px 16px 30px -4px rgba(0, 0, 0, 0.5);
}

.small-image p {
    color: #93268F;
    font-size: 21px;
    font-family: nun-semi-bold-italic;
    padding: 25px;
}

.about-body-content-text {
    margin-left: 100px;
}

.about-body-content-text h3 {
    font-size: 21px;
    font-family: nun-bold;
    color: #000000;
}

.about-body-content-text p {
    font-size: 16px;
    font-family: nun;
    color: #000000;
    margin-top: 20px;
}

.about-body-content-expertise {
    margin: 40px 0 0 0;
}

.info {
    margin: 30px auto;
    position: relative;
}

.info .line {
    display: flex;
    flex-direction: column;
}

.info .line h3 {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    font-size: 16px;
    font-family: nun;
}

.info .line h3::after {
    content: attr(width) "%";
    position: absolute;
    right: 2px;
    top: 0;
    border-radius: 5px;
    padding: 0px 13px;
    width: 10px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: nun;
    color: #000000;
}

.info .line div {
    min-width: 30px;
    min-height: 10px;
    background: #D9D9D9;
    margin: 15px 0 20px;
    position: relative;
    overflow: hidden;
}

.info .line div span {
    display: block;
    background-color: #93268F;
    height: 100%;
    position: absolute;
    left: 0;
}

/* Section Number 3 */

.our-team {
    background: url(./images/team-bg.png) no-repeat top/ cover;
    min-height: 890px;
}

.team-heading {
    padding: 100px 0 50px 0;
}

.team-heading h3 {
    font-size: 36px;
    font-family: nun-bold;
    color: #FFFFFF;
}

.our-team-members {
    display: flex;
    justify-content: space-between;
}

.team-members {
    max-width: 273px;
    margin-bottom: 120px;
}

.team-member-about h4 {
    font-size: 28px;
    font-family: nun-bold;
    color: #27AAE1;
    margin-top: 30px
}

.team-member-about .designation {
    font-size: 16;
    font-family: nun-bold;
    color: #FFFFFF;
    margin-top: 10px;
}

.team-member-about p {
    font-size: 16px;
    font-family: nun;
    color: #FFFFFF;
    margin-top: 25px;
}

/* Section Number 4 */

.quote-main {
    background: url(./images/quate-bg.png) no-repeat top/ cover;
    min-height: 690px;
    position: relative;
    top: -10px;
}

.quote-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    padding-top: 95px;
    margin: auto;
}

.speaker {
    padding: 20px;
}

.speaker h4 {
    font-size: 36px;
    font-family: nun;
    color: var(--white);
    width: auto;
}

.speaker p {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
    width: 290px;
}

.quote {
    width: 659px;
    position: relative;
}

.quote::before {
    content: '“';
    font-size: 150px;
    font-family: nun;
    position: absolute;
    top: -42px;
    left: -88px;
    color: var(--white);
}

.quote blockquote {
    font-size: 28px;
    font-family: nun;
    color: var(--white);
}

/* Section Number 5 */

.content {
    margin: 120px auto;
}

.content h3 {
    font-size: 36px;
    color: #000000;
    font-family: nun-bold;
}

.content>div {
    width: 50%;
    float: left;
    box-sizing: border-box;
}

.accordion {
    margin-top: 55px;
    margin-bottom: 120px;
}

.title {
    border-bottom: 1px solid #ddd;
    font-size: 24px;
    font-family: nun;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    padding-left: 15px;
    position: relative;
    transition: 0.3s;
    margin-bottom: 10px;
}

.title h4 {
    font-size: 24px;
    font-family: nun;
}

.title:after {
    content: '+';
    font-size: 24px;
    font-family: nun;
    position: absolute;
    right: 10px;
    top: 2px;
    float: right;
    margin-right: 5px;
    margin-top: 3px;
    transition: 0.3s;
}

.active h4 {
    color: #93268F;
}

.title.active:after {
    transform: rotate(136deg);
    color: #93268F;
}

.title:hover,
.title.active {
    color: #000000;
}

.desc {
    padding: 15px;
    display: none;
    font-size: 16px;
    font-family: nun;
}

.desc.active {
    display: block;
}

.image {
    text-align: right;
}

.image img {
    height: 500px;
}

/* section number 6 */

.our-solutions {
    background-color: #1D243E;
    clear: both;
    position: relative;
    overflow: hidden;
}

.our-solutionsbg-image img {
    position: absolute;
}

.solution-ellipse-yellow {
    bottom: 0;
    right: 0;
}

.solution-top-dots {
    top: -625px;
    left: 0;
    opacity: 0.2;
}

.solution-ellipse-blue {
    top: 0;
    left: 0;
}

.solution-layer-dot {
    top: 118px;
    right: 160px;
}

.solutions-heading h3 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.solutions-heading h3::after {
    content: url(./images/solutions-line.png);
    display: block;
}

.solution {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    text-align: center;
    column-gap: 40px;
}

.solution-list {
    margin: 0 0 120px 0;
    position: relative;
    z-index: 1;
}

.solution-list h4 {
    font-size: 24px;
    font-family: nun;
    color: #93268F;
}


.solutions-list {
    margin: 35px auto;
}

.solutions-list li {
    list-style-type: none;
    border-bottom: 1px solid #2D9DD8;
    font-family: nun;
    font-size: 16px;
    color: var(--white);
    padding: 10px 0;
}

.down {
    margin-bottom: 55px;
}

.solutions-list :last-child {
    border: none;
}

.solution-list a {
    font-size: 18px;
    font-family: nun;
    color: var(--white);
    text-decoration: none;
    padding: 10px 12px;
    border: 1px solid #93268F;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.solution-list a:hover {
    background-color: #93268F;
}

/* Section number 7 */

.need-support {
    background: url(./images/support-bg.png) no-repeat center/ cover;
}

.support-content {
    padding: 120px 0;
}

.support-content h3 {
    font-size: 36px;
    font-family: nun-bold;
    color: var(--white);

}

.support-content p {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
    margin: 30px 0;
}

.support-content a {
    font-size: 18px;
    font-family: nun;
    color: var(--white);
    text-decoration: none;
    padding: 10px 12px;
    border: 1px solid var(--white);
    border-radius: 10px;
    margin-right: 30px;
    transition: all 0.25s ease;
}

.support-content a:hover {
    color: #93268F;
    background-color: var(--white);
}

/* Footer Style */

.footer {
    padding-top: 120px;
    padding-bottom: 50px;
    max-width: 1011px;
}

.footer-1 {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-cont {
    width: 50%;
}

.footer-contant {
    margin: 35px 0 75px 0;
}

.footer-contant .heading-para p {
    font-size: 36px;
    font-family: nun-bold;
    color: #1D243E;
}

.footer-contant p {
    font-size: 16px;
    font-family: nun;
    color: #000000;
    margin-top: 35px;
}

.personal-details {
    margin: 50px 0;
}

.personal-details h4 {
    font-size: 18px;
    font-family: nun;
    color: #000000;
}

.p-details {
    display: flex;
    justify-content: left;
    align-items: center;
}

.location {
    margin: 22px 0;
    display: flex;
    justify-content: center;
    width: 185px;
    margin-right: 10px;
}

.location p {
    font-size: 16px;
    font-family: nun;
    color: #000000;
}

.location img {
    margin-top: 2px;
    margin-right: 10px;
    height: 18.6px;
    width: 13.48px;
}

.phone-mail a {
    font-size: 16px;
    font-family: nun;
    color: #000000;
    display: block;
    text-decoration: none;
}

.phone-number {
    display: flex;
}

.phone-number img {
    margin-top: 2px;
    margin-right: 10px;
    height: 15px;
    width: 14.97px;
}

.mail {
    display: flex;
    justify-content: space-between;
}

.mail img {
    margin-top: 4px;
    margin-right: 10px;
    height: 15px;
    width: 19px;
}

.footer-form {
    margin: 35px 0 0 0px;
    /* width: 50%; */
}

.footer-form h3 {
    font-size: 36px;
    font-family: nun-bold;
    color: #1D243E;
}


form {
    margin-top: 50px;
}

.input {
    width: 400px;
    height: 35px;
    border: none;
    border-bottom: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    padding: 20px;
    font-size: 16px;
    font-family: nun;
    color: #000000;
    background: transparent;
}

input:focus {

    border: none;
    border-bottom: 1px solid #D9D9D9;
    background-color: #FFFFFF;
}

.input-name {
    margin-top: 55px;
}

.input-email {
    margin-top: 40px;
}

.message {
    margin-top: 40px;
}

.submit {
    margin-top: 26px;
    float: right;
}

.submit input[type=submit] {
    font-size: 18px;
    font-family: nun;
    color: #000000;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #93268F;
    cursor: pointer;
    transition: all 0.25s ease;
}

.submit input[type=submit]:hover {
    background-color: #93268F;
    color: var(--white);
}

.last-footer {
    background-color: #1D243E;
}

.last-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.last-footer-content p {
    font-size: 16px;
    font-family: nun;
    color: var(--white);
}

/* Cassandra Reputation Services */

/* Section number 1 */

.hero-section-service-1 {
    background: url(./images/cassandra-reputation-services-hero-bg.png) no-repeat center/ cover;
    position: relative;
    top: 0px;
    height: 800px;

    overflow: hidden;
}

.hero-section-service-1-bg-images img {
    position: absolute;
}

.wave {
    top: 200px;
    right: -19px;
    opacity: 0.7;
}

.bg-ellipse {
    bottom: 0;
    right: 0;
}

.container-hero-section-contant-service-1 {
    position: relative;
    max-width: 1187px;
    margin: auto;
    top: 350px;
}

.hero-section-contant-service-1 {
    position: absolute;
    width: 600px;
    top: 0;
    left: 100px;
}

.hero-section-contant-service-1 h1 {
    font-family: nun;
    font-size: 55px;
    color: var(--white);
    margin-bottom: 50px;
    text-align: left;
}

.hero-section-contant-service-1 p {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
}

/* section number 2 */

.product-overview {
    margin: 100px auto;
    text-align: center;
    max-width: 883px;
}

.product-overview h2 {
    font-size: 36px;
    font-family: nun-bold;
    color: #000000;
    margin-bottom: 30px;
}

.product-overview p {
    font-size: 16px;
    font-family: nun;
    color: #000000;
}

/* scetion number 3 */

.tag-advantages {
    background: url(./images/TAG-advantage-bg.png) no-repeat center/ cover;
    text-align: center;
}

.tag-advantages h2 {
    padding-top: 100px;
    font-size: 36px;
    font-family: nun-bold;
    color: var(--white);
}

.tag-advantages-boxes {
    display: flex;
    column-gap: 70px;
    justify-content: center;
    margin: 60px auto;
    padding-bottom: 100px;
}

.tag-advantages-box {
    max-width: 200px;
    color: var(--white);
}

.tag-advantages-box-content h3 {
    font-size: 21px;
    font-family: nun-bold;
    margin-top: 25px;
}

.tag-advantages-box-content p {
    font-size: 16px;
    font-family: nun;
    margin-top: 25px;
}

/* section number 4 */

.flowdiagram {
    margin: 100px auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.flowdiagram-content {
    background-color: #27AAE1;
    padding: 40px;
    max-width: 300px;
    margin-bottom: 35px;
}

.flowdiagram-content p {
    font-size: 16px;
    font-family: nun;
    color: var(--white);
}

.flowdiagram-content p:nth-child(2) {
    margin-top: 30px;
}

/* section number 5 */

.the-tag-difference {
    display: flex;
    column-gap: 50px;
    justify-content: space-between;
    /* align-items: center; */

}

.the-tag-difference-image img {
    height: 865px;
}

.the-tag-diffrence-content {
    color: #000000;
    position: relative;
    margin-top: 50px;
}

.the-tag-diffrence-content h3 {
    font-size: 36px;
    font-family: nun-bold;
}

.the-tag-diffrence-content p,
.the-tag-diffrence-content-list {
    font-size: 16px;
    font-family: nun;
    margin: 10px 0;
}

.the-tag-diffrence-content-list li::before {
    content: "\2022";
    left: -20px;
    position: absolute;
    color: #2D9DD8;
    font-size: 16px;
}

.the-tag-diffrence-content-list li {
    margin: 20px 0px 0 30px;
    position: relative;
    list-style-type: none;
}

.oems-covered {
    position: absolute;
    bottom: 4px;
    left: -330px;
    width: 350px;
    padding: 25px 35px;
    background-color: #1D243E;
    border: 5px solid #93268F;
}

.oems-covered h4 {
    font-size: 21px;
    font-family: nun;
    color: var(--white);
}

.oems-covered ul {
    margin: 20px 0 0 37px;
    font-size: 16px;
    font-family: nun;
    color: var(--white);
}

.oems-covered ul li {
    list-style-type: none;
}

.oems-covered li::before {
    content: url(./images/oems-tick.png);
    left: 45px;
    position: absolute;
    color: #2D9DD8;
}

.use-cases {
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 390px;
    padding: 25px 35px;
    background-color: #1D243E;
    border: 5px solid #F7941D;
}

.use-cases-contact {
    display: flex;
    position: relative;
}

.use-cases h4 {
    font-size: 21px;
    font-family: nun;
    color: var(--white);
}

.use-cases ul {
    margin: 20px 0 0 32px;
    font-size: 16px;
    font-family: nun;
    color: var(--white);
}

.use-cases ul li {
    list-style-type: none;
}

.use-cases li::before {
    content: url(./images/use-cases-tick.png);
    left: 5px;
    position: absolute;
    color: #2D9DD8;
}

.use-case-image {
    position: absolute;
    bottom: -30px;
    right: -15px;
}

/* section number 6 */

.why {
    background: url(./images/Why-tag.png) no-repeat top/ cover;
    position: relative;
    margin-top: 100px;
}

.customers-choose-tag {
    padding: 100px 0;
    max-width: 1030px;
    margin: auto;
}

.constumer-choose {
    display: flex;
}

.customers-choose-content {
    max-width: 538px;
}

.customers-choose-content h2 {
    font-size: 36px;
    font-family: nun-bold;
    color: var(--white);
}

.customers-choose-content ul {
    font-size: 16px;
    font-family: nun;
    color: var(--white);
    margin-top: 50px;
    margin-left: 18px;
}

.customers-choose-content li {
    list-style-type: none;
    position: relative;
}

.customers-choose-content li::before {
    content: "\2022";
    left: -20px;
    position: absolute;
    color: #2D9DD8;
    font-size: 16px;
}

.customers-choose-image {
    position: absolute;
    right: 0;
}

.TAG-cassandra-differentiators {
    margin-top: 110px;
}

.TAG-cassandra-differentiators h4 {
    font-size: 21px;
    font-family: nun;
    color: #F7941D;
}

.tag-insights-cassandra-differentiators {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1030px;
    gap: 65px;

}

.tag-insights-cassandra-differentiators-boxes {
    max-width: 300px;
}

.tag-insights-cassandra-differentiators-boxes p {
    font-size: 21px;
    font-family: nun;
    color: var(--white);
    padding-left: 30px;
    position: relative;
}

.tag-insights-cassandra-differentiators-boxes p::before {
    content: url(./images/use-cases-tick.png);
    position: absolute;
    left: 0;
}

/* magneto-analytics */

/* Section number 1 */

.hero-section-service-2 {
    background: url(./images/magneto-analytics-bg.png) no-repeat center/ cover;
    position: relative;
    top: 0px;
    height: 800px;
    overflow: hidden;
}

.hero-section-service-2-bg-images img {
    position: absolute;
}

.ellipse-blue {
    top: 0px;
    left: 0;
}

.wave {
    top: 200px;
    right: -19px;
    opacity: 0.7;
}

.bg-ellipse {
    bottom: 0;
    right: 0;
}

.container-hero-section-contant-service-2 {
    position: relative;
    max-width: 1187px;
    margin: auto;
    top: 150px;
}

.hero-section-contant-service-2 {
    position: absolute;
    width: 600px;
    top: 0;
    left: 100px;
}

.hero-section-contant-service-2 h1 {
    font-family: nun;
    font-size: 55px;
    color: var(--white);
    margin-bottom: 50px;
    text-align: left;
}

.hero-section-contant-service-2 p {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
}

/* section number 2 */

.services {
    margin: 110px auto;
}

.magneto-analytics-overview-content {
    color: #000000;
    width: 430px;
}

.magneto-analytics-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    column-gap: 50px;
}

.magneto-analytics-overview-content h2 {
    font-size: 36px;
    font-family: nun-bold;
}

.magneto-analytics-overview-content p {
    font-size: 16px;
    font-family: nun;
    margin: 40px 0;
}

.magneto-analytics-overview-content ul {
    font-size: 18px;
    font-family: nun;
    margin: 40px 20px;
}

.magneto-analytics-overview-content li::before {
    content: "\2022";
    left: -20px;
    position: absolute;
    color: #2D9DD8;
    font-size: 16px;
}

.magneto-analytics-overview-content li {
    margin: 10px 0;
    position: relative;
    list-style-type: none;
}

/* section number 3 */

.service-1 {
    background: url(./images/service-bg.png) no-repeat center/ cover;
    width: 100%;
    /* height: 271px; */
}

.magneto-analytics-overview-service {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 120px;
}

.magneto-analytics-overview-service-responsive {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 120px;
}

.magneto-analytics-overview-service-content {
    max-width: 350px;
}

.magneto-analytics-overview-service-content p {
    font-size: 21px;
    font-family: nun-bold;
    color: var(--white);
}

/* section number 4 */

.service-2 {
    margin: 110px 0;
}

.service-2 .magneto-analytics-overview-service-content p {
    font-size: 21px;
    font-family: nun-bold;
    color: #000000;
}

/* section number 5 */

.long-box {
    max-width: 500px;
}

/* documentation  */

/* Section number 1 */

.hero-section-documentation {
    background: url(./images/documentation-bg.png) no-repeat center/ cover;
    position: relative;
    top: 0px;
    height: 800px;
    overflow: hidden;
}

.hero-section-documentation-bg-images img {
    position: absolute;
}

.ellipse-blue {
    top: 0px;
    left: 0;
}

.wave {
    top: 200px;
    right: -19px;
    opacity: 0.7;
}

.bg-ellipse {
    bottom: 0;
    right: 0;
}

.container-hero-section-contant-documentation {
    position: relative;
    max-width: 1187px;
    margin: auto;
    top: 350px;
}

.hero-section-contant-documentation {
    position: absolute;
    width: 600px;
    top: 0;
    left: 100px;
}

.hero-section-contant-documentation h1 {
    font-family: nun;
    font-size: 55px;
    color: var(--white);
    margin-bottom: 50px;
    text-align: left;
}

.hero-section-contant-documentation p {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
}

/* section number 2 */

.documents {
    margin-top: 100px;
}

.documents h3 {
    font-size: 36px;
    font-family: nun-bold;
    color: #000000;
}

.documents ul {
    margin-top: 40px;
    margin-left: 25px;
    color: #000000;
    font-family: nun;
    font-size: 21px;
}

.documents ul li a {
    color: #27AAE1;
}

/* section number 3 */

.documents p:nth-of-type(1) {
    font-size: 18px;
    font-family: nun;
    margin: 40px 0;
}

.documents p:nth-of-type(2) {
    font-size: 21px;
    font-family: nun-bold;
    /* margin: 40px 0; */
    color: #93268F;
}

.documents span {
    font-family: nun-bold;
}

/* section number 6 */

.documents .ip {
    margin-left: 0;
    color: #93268F;
    font-family: nun-bold;
}

.ip li {
    list-style-type: none;
}

.container .document p:nth-of-type(2) {
    font-size: 18px;
    font-family: nun;
    color: #000000;
    margin-top: 40px;
}

/* section number 9 */

.documentation {
    background-color: #D9D9D9;
}

.application {
    padding: 60px 0;
}

.applications {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-top: 40px;
}

.application-list ul {
    margin-top: 0;
}

.application-list ul li {
    font-size: 18px;
    font-family: nun;
}

.application-images img {
    margin-left: 80px;
}

/* Additional Product Information */

/* Section number 1 */

.hero-section-additional-product {
    background: url(./images/additional-bg.png) no-repeat center/ cover;
    position: relative;
    top: 0px;
    height: 800px;
    overflow: hidden;
}

.hero-section-additional-product-bg-images img {
    position: absolute;
}

.ellipse-blue {
    top: 0px;
    left: 0;
}

.wave {
    top: 200px;
    right: -19px;
    opacity: 0.7;
}

.bg-ellipse {
    bottom: 0;
    right: 0;
}

.container-hero-section-contant-additional-product {
    position: relative;
    max-width: 1187px;
    margin: auto;
    top: 350px;
}

.hero-section-contant-additional-product {
    position: absolute;
    width: 600px;
    top: 0;
    left: 100px;
}

.hero-section-contant-additional-product h1 {
    font-family: nun;
    font-size: 55px;
    color: var(--white);
    margin-bottom: 50px;
    text-align: left;
}

.hero-section-contant-additional-product p {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
}

/* section number 2 */

.Products {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
}

.products-box {
    max-width: 280px;
    text-align: center;
}

.products-box-image img {
    box-shadow: 24px 16px 30px -4px rgba(0, 0, 0, 0.5);
}

.product-box-content {
    margin-top: 50px;
    text-align: center;
    color: #000000;
}

.product-box-content h4 {
    font-family: nun;
    font-size: 18px;
}

.product-box-content-button {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.product-box-content-button a {
    font-family: nun;
    font-size: 18px;
    border: 1px solid #93268F;
    border-radius: 10px;
    background-color: none;
    padding: 10px 12px;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}

.product-box-content-button a:hover {
    background-color: #93268F;
    color: var(--white);
}

.align h4 {
    margin-bottom: 47px;
}

/* Correction Request */

/* Section number 1 */

.hero-section-correction-request {
    background: url(./images/correction-request-bg.png) no-repeat center/ cover;
    position: relative;
    top: 0px;
    height: 800px;
    overflow: hidden;
}

.hero-section-correction-request-bg-images img {
    position: absolute;
}

.ellipse-blue {
    top: 0px;
    left: 0;
}

.wave {
    top: 200px;
    right: -19px;
    opacity: 0.7;
}

.bg-ellipse {
    bottom: 0;
    right: 0;
}

.container-hero-section-contant-correction-request {
    position: relative;
    max-width: 1187px;
    margin: auto;
    top: 350px;
}

.hero-section-contant-correction-request {
    position: absolute;
    width: 600px;
    top: 0;
    left: 100px;
}

.hero-section-contant-correction-request h1 {
    font-family: nun;
    font-size: 55px;
    color: var(--white);
    margin-bottom: 50px;
    text-align: left;
}

.hero-section-contant-correction-request p {
    font-size: 24px;
    font-family: nun;
    color: var(--white);
}

/* Section number 2 */

.suggestion-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 120px auto;
    column-gap: 60px;
}

.suggestion-form-content h2 {
    font-size: 36px;
    font-family: nun-bold;
    color: #000000;
}

.suggestion-form-content p {
    font-size: 21px;
    font-family: nun;
    color: #000000;
    margin: 40px 0;
}

.suggestion-form-content p span {
    font-family: nun-bold;
}

/* Section number 3 */

.form-suggestion {
    background: url(./images/Sugession-form-ng.png) no-repeat center/ cover;
    padding-top: 100px;
    padding-bottom: 120px;
}

.suggestion-form-sug {
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 100px;
    margin: 0 auto;
}

.suggestion-form-sug-img {
    margin: auto;
}

.suggestion-form-sug-content {
    max-width: 500px;
    font-family: nun;
    font-size: 16px;
}

.input-form,
select {
    display: block;
    width: 400px;
    margin-bottom: 30px;
    background-color: transparent;
    padding: 15px;
    border: none;
    border-bottom: 2px white solid;
    color: var(--white);
    font-family: nun;
}

.input-form:focus,
select:focus {
    background: transparent;
    border: none;
    border-bottom: 2px white solid;
    ;
}

.input-form::placeholder {
    color: var(--white);
    font-family: nun;
}

select option {
    color: #000000;
    font-size: 16px;
    font-family: nun;
}

.submit-form {
    margin: 40px auto;
    border: 1px solid #93268F;
    border-radius: 10px;
    cursor: pointer;
    background-color: transparent;
    color: var(--white) !important;
    padding: 11px 15px;
    transition: all 0.25s ease;
    font-size: 18px;
}

.submit-form:hover {
    background-color: #93268F;
}

.suggestion-form-sug-content form p {
    color: white;
}

.suggestion-form-sug-content p {
    color: var(--white);
}

/* login Page */

/* section number 1 */
.log-in {
    background: url(./images/login-bg.png) no-repeat right / cover;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-login-image img {
    position: absolute;
}

.login-ellipse {
    bottom: -100px;
    right: 0;
}

.login-wave {
    bottom: -170px;
    right: 427px;
}

.login-side-content {
    height: 100vh;
}

.login-logo {
    position: absolute;
    top: 100px;
}

.login-para {
    position: absolute;
    bottom: 100px;
    width: 450px;
}

.login-para h2 {
    font-size: 36px;
    font-family: nun;
    color: var(--white);
}

.login-para p {
    font-size: 19px;
    font-family: nun;
    color: var(--white);
}

.login-para span {
    font-size: 19px;
    font-family: nun-bold;
}

.login-para p:last-child {
    margin: 20px 0;
}

.login-site-logo {
    display: none;
}

.login-content {
    position: absolute;
    height: 100vh;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0 10px;
}

.cassandra {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-family: nun;
    padding: 0 20px;
}

.cassandra-content {
    margin: 0 auto;
    max-width: 367px;
}

.cassandra-content-image {
    display: flex;
    align-items: center;
}

.cassandra-content-image h2 {
    margin-left: 10px;
    font-size: 24px;
}

.cassandra-content-para p {
    font-size: 16px;
    font-family: nun-italic;
}

.cassandra-Content-para p span {
    font-size: 16px;
    font-family: nun-bold-italic;
}

.login-form-item {
    margin-top: 20px;
}

.input-login-form {
    display: block;
    width: 362px;
    margin-bottom: 15px;
    background-color: rgba(217, 217, 217, 0.2);
    border: none;
    border-radius: 5px;
    padding: 15px;
    color: var(--white);
    font-family: nun;
}

.input-login-form:focus {
    background: transparent;
    border: none;
    border-bottom: 2px white solid;
}

.cassandra-content .input-lgoin-form ::placeholder {
    color: #FFFFFF;
    font-family: nun;
}


.submit-login-form {
    border: 1px solid #93268F;
    border-radius: 10px;
    cursor: pointer;
    background-color: transparent;
    color: var(--white) !important;
    padding: 11px 15px;
    transition: all 0.25s ease;
}

.submit-login-form:hover {
    background-color: #93268F;
}

.login-form form p {
    margin: 20px auto;
    font-size: 12px;
    max-width: 298px;
}

.other-signin {
    margin: 0 auto;
    max-width: 367px;
}

.checkbox {
    background-color: #D9D9D9;
}

.checkbox-label {
    font-size: 14px;
    margin-left: 15px;
}

.login-form .login-form-submit {
    padding: 10px 150px;
    margin: 0 auto;
    background-color: #27AAE1;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 15px;
    font-family: nun-bold;
    border-radius: 5px;
}


.other-signin {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}

.login-form p {
    text-align: center;
    margin-top: 15px;
}

.google-login {
    text-align: center;
}

.google-login .google-login-content a {
    text-decoration: none;
    color: var(--white);
}

/* ----------------------------------------- */
.small {
    font-size: 14px;
}


/* ----------------------------------------- */

@media only screen and (max-width: 500px) {

    .container {
        max-width: 300px;
        margin: 0 auto;
    }

    .hamburger {
        display: flex;
        margin-right: 10px;
    }

    .navigation-bar {
        align-items: flex-start;
    }

    .nav-logo img {
        height: 38px;
        width: auto;
        margin-left: 20px;
    }

    .navigation-bar-div {
        display: flex;
        flex-direction: column-reverse;
    }

    .navigation {
        display: none;
        flex-grow: 1;
        justify-content: flex-end;
        background-color: #1D243E;
        box-shadow: 10px 16px 30px -4px rgba(0, 0, 0, 0.5);
    }

    .nav-container.active .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-container.active .navigation nav {
        width: 75%;
    }

    .nav-container.active .navigation nav ul {
        flex-direction: column;
        align-items: flex-end;
        width: 250px;
    }

    .nav-container.active .navigation nav ul li {
        width: 100%;
        padding: 10px;
    }

    .nav-container.active .navigation nav ul li a {
        width: 100%;
    }

    .nav-container.active .hamburger .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .nav-container.active .hamburger .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-container.active .hamburger .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .nav-contant {
        z-index: 100000;
        position: relative;
    }

    .nav-contant li {
        margin-left: 10px;
    }

    .nav-contant li a {
        font-size: 16px;
    }

    /* section number 1 */

    .hero-section {
        background: url(./images/Group\ 110.png) no-repeat top/ cover;
        position: relative;
        top: -10px;
        width: 100%;
        height: auto;
        display: block;
        overflow: hidden;
    }

    .hero-section-bg-images img {
        position: absolute;
    }

    .dots {
        bottom: -410px;
        left: 0;
        opacity: 0.2;
        max-width: 440px;
    }

    .wave {
        top: 193px;
        right: -19px;
        opacity: 0.7;
        max-width: 300px;
    }

    .bg-ellipse {
        bottom: 0;
        right: 0;
    }

    .hero-section-contant {
        margin-top: 200px;
        margin-left: auto;
        margin-right: auto;
        z-index: 2;
        max-width: 300px;
    }

    .hero-section-contant h1 {
        font-family: nun;
        font-size: 36px;
        color: var(--white);
        margin-bottom: 20px;
    }

    .buttons-first-row {
        margin-bottom: 0px;
    }

    .buttons-first-row,
    .buttons-second-row {
        margin-right: 0px;
    }

    .buttons-first-row p,
    .buttons-second-row p {
        margin-top: 10px;
    }

    .hero-section-buttons {
        margin-bottom: 20px;
    }

    .hero-section-buttons p {
        font-size: 16px;
        border: 1px solid #F5F5F5;
        padding: 8px 15px;
        margin-right: 0px;
    }

    .hero-section-para {
        font-size: 18px;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .hero-section-buttons-products {
        display: flex;
        text-align: center;
    }

    .hero-section-buttons-products a {
        font-size: 13px;
        padding: 5px 0px;
        margin: 0;
    }

    .product-1 {
        border: 1px solid #27AAE1;
        border-radius: 10px;
        padding: 10px 8px;
        margin-right: 10px;
        transition: all 0.25s ease;
    }

    .product-1:active {
        background-color: #27AAE1;
    }

    .product-2 {
        border: 1px solid #93268F;
        border-radius: 10px;
        padding: 10px 5px;
        transition: all 0.25s ease;
    }

    .product-2:active {
        background-color: #93268F;
    }

    .hero-section-counter {
        margin: 50px auto;
    }

    .counter-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        width: 310px;
    }

    .hero-section-counters {
        color: #fff;
        padding: 0px 0px;
    }

    .counter {
        font-size: 20px;
        font-family: nun-bold;
    }

    .counterrr {
        font-family: nun;
        margin: 10px;
    }

    .counterrr h3 {
        font-size: 18px;
        font-family: nun;
    }


    .hero-section-counters i {
        color: var(--white);
        margin-bottom: 0px;
    }

    .hero-section-counters .counter {
        font-size: 30px;
        margin: 0px 0;
    }

    .counterrr img {
        margin-bottom: 5px;
    }

    /* Section Number 2 */

    .about {
        padding: 50px 0;
    }

    .about-heading-content h2 {
        font-size: 30px;
    }

    .about-heading-content p {
        font-size: 14px;
    }

    .about-body-content {
        display: block;
        margin-top: 20px;
        width: 300px;
    }

    .about-body-content-image img {
        height: 500px;
        width: 300px;
    }

    .small-image {
        position: absolute;
        background-color: #FFFFFF;
        width: 200px;
        top: 350px;
        right: -55px;
    }

    .small-image p {
        font-size: 14px;
        padding: 20px;
    }

    .about-body-content-text {
        margin-left: 0px;
    }

    .about-body-content-text h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .about-body-content-text p {
        font-size: 14px;
        margin-top: 10px;
    }

    .about-body-content-expertise {
        margin: 20px 0 0 0;
    }

    .info {
        margin: 10px auto;
    }

    .info .line {
        display: block;
    }

    .info .line h3 {
        display: block;
        font-size: 14px;
    }

    .info .line h3::after {
        content: attr(width) "%";
        position: absolute;
        right: 2px;
        top: 0;
        padding: 0px 10px;
        font-size: 12px;
    }

    .info .line div {
        margin: 5px 0;
    }

    /* Section Number 3 */

    .our-team {
        background: url(./images/team-bg.png) no-repeat top/ cover;
        min-height: 890px;
        padding: 30px 0;
    }

    .team-heading {
        padding: 50px 0 20px 0;
    }

    .team-heading h3 {
        font-size: 30px;
    }

    .our-team-members {
        display: block;
    }

    .team-members {
        max-width: 273px;
        margin-bottom: 80px;
    }

    .team-member-about h4 {
        font-size: 22px;
        margin-top: 10px
    }

    .team-member-about .designation {
        font-size: 16px;
        margin-top: 5px;
    }

    .team-member-about p {
        font-size: 14px;
        font-family: nun;
        color: #FFFFFF;
        margin-top: 10px;
    }

    /* Section Number 4 */

    .quote-main {
        top: -18px;
    }

    .quote-content {
        display: block;
        padding-top: 30px;
    }

    .speaker {
        padding: 10px;
    }

    .speaker h4 {
        font-size: 24px;
    }

    .speaker p {
        font-size: 16px;
        width: 290px;
    }

    .quote {
        width: 300px;
        margin-top: 50px;
    }

    .quote::before {
        content: '“';
        font-size: 80px;
        top: -50px;
        left: -20px;
    }

    .quote blockquote {
        font-size: 20px;
        font-family: nun;
        color: var(--white);
    }

    /* Section Number 5 */

    .content {
        margin: 30px auto;
    }

    .content h3 {
        font-size: 30px;
    }

    .content>div {
        width: 100%;
    }

    .accordion {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .title {
        font-size: 16px;
        padding: 3px;
        cursor: pointer;
        padding-left: 15px;
        margin-bottom: 0px;
    }

    .title h4 {
        font-size: 20px;
    }

    .title:after {
        content: '+';
        font-size: 20px;
        right: 5px;
        top: 2px;
    }

    .desc {
        font-size: 14px;
    }

    .image {
        display: none;
    }

    .image img {
        height: 0;
    }

    /* section number 6 */

    .our-solutions {
        background: #1D243E;
        clear: both;
        height: auto;
        padding: 30px 0;
    }

    .solutions-heading h3 {
        text-align: center;
    }

    .solutions-heading h3::after {
        margin-top: -23px;
    }

    .solution {
        display: block;
        column-gap: 0px;

    }

    .solution-list {
        margin: 50px 0;
    }

    .solution-list h4 {
        font-size: 18px;

    }


    .solutions-list {
        margin: 0px auto;
    }

    .solutions-list li {
        font-size: 16px;
        padding: 10px 0;
    }

    .solutions-list li:last-child {
        margin-bottom: 20px;
    }

    .solution-list a {
        font-size: 14px;
        padding: 5px 12px;
        margin: 5px 0;
    }

    /* Section number 7 */

    .need-support {
        background: url(./images/support-bg.png) no-repeat center/ cover;
    }

    .support-content {
        padding: 100px 0;
    }

    .support-content h3 {
        font-size: 30px;

    }

    .support-content p {
        font-size: 16px;
        font-family: nun;
        color: var(--white);
        margin: 20px 0;
    }

    .support-content a {
        font-size: 14px;
        font-family: nun;
        color: var(--white);
        text-decoration: none;
        padding: 5px 12px;
        margin-right: 8px;
    }

    .support-content a:active {
        color: #93268F;
        background-color: var(--white);
    }

    /* Footer Style */

    .footer {
        margin: 30px auto;
        max-width: 300px;
    }

    .footer-1 {
        display: block;
        width: 100%;
    }

    .footer-cont {
        width: 100%;
    }

    .footer-contant {
        margin: 0px 0px;
    }

    .footer-contant .heading-para p {
        font-size: 24px;
    }

    .footer-contant p {
        font-size: 14px;
        font-family: nun;
        color: #000000;
        margin-top: 20px;
    }

    .personal-details {
        margin: 20px 0;
    }

    .personal-details h4 {
        font-size: 16px;
    }

    .p-details {
        display: block;
    }

    .location {
        margin: 22px 0;
        display: flex;
        justify-content: left;
        width: 100%;
    }

    .location p {
        font-size: 14px;
    }

    .location img {
        margin-top: 0px;
        margin-right: 10px;
    }

    .phone-mail a {
        font-size: 14px;
        font-family: nun;
        color: #000000;
        display: block;
        text-decoration: none;
    }

    .phone-number {
        display: flex;
    }

    .phone-number img {
        margin-top: 0px;
        margin-right: 10px;
        height: 15px;
        width: 14.97px;
    }

    .mail {
        display: flex;
        justify-content: left;
        margin-top: 20px;
    }

    .mail img {
        margin-top: 2px;
        margin-right: 10px;
    }

    .footer-form {
        margin: 0px 0 0 0px;
    }

    .footer-form h3 {
        font-size: 30px;
    }

    form {
        margin-top: 0px;
    }

    .input {
        width: 100%;
        height: 0px;
        padding: 10px;
        font-size: 14px;
    }

    .input-name {
        margin-top: 25px;
    }

    .input-email {
        margin-top: 25px;
    }

    .message {
        margin-top: 25px;
    }

    .submit {
        margin-top: 15px;
        float: right;
    }

    .submit input[type=submit] {
        font-size: 14px;
        padding: 5px;
    }

    .submit input[type=submit]:active {
        background-color: #93268F;
        color: var(--white);
    }

    .last-footer {
        clear: both;
        background-color: #1D243E;
        margin-top: 80px;
    }

    .last-footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .last-footer-content p {
        font-size: 12px;
    }

    /* Cassandra Reputation Services */

    /* Section number 1 */

    .hero-section-service-1 {
        background: url(./images/cassandra-reputation-services-hero-bg.png) no-repeat center/ cover;
        position: relative;
        top: 0px;
        height: 600px;
        overflow: hidden;
    }

    .container-hero-section-contant-service-1 {
        position: relative;
        max-width: 300px;
        top: 250px;
    }

    .hero-section-contant-service-1 {
        position: absolute;
        width: 300px;
        top: 0;
        left: 0px;
    }

    .hero-section-contant-service-1 h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-section-contant-service-1 p {
        font-size: 18px;
    }

    /* section number 2 */

    .product-overview {
        margin: 30px auto;
        max-width: 300px;
    }

    .product-overview h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .product-overview p {
        font-size: 14px;
    }

    /* scetion number 3 */
    .tag-advantages h2 {
        padding-top: 30px;
        font-size: 28px;
    }

    .tag-advantages-boxes {
        display: flex;
        flex-direction: column;
        column-gap: 0px;
        align-items: center;
        margin: 20px auto;
        padding-bottom: 100px;
    }

    .tag-advantages-box {
        max-width: 250px;
        margin: 20px auto;
    }

    .tag-advantages-box-content h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .tag-advantages-box-content p {
        font-size: 14px;
        font-family: nun;
        margin-top: 15px;
    }

    /* section number 4 */

    .flowdiagram {
        margin: 30px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flowdiagram-image {
        margin-bottom: 20px;
    }

    .flowdiagram-image img {
        width: 300px;
        height: auto;
    }

    .flowdiagram-content {
        background-color: #27AAE1;
        padding: 0px;
        max-width: 300px;
        margin-bottom: 10px;
        padding: 30px;
    }

    .flowdiagram-content p {
        font-size: 14px;
    }

    .flowdiagram-content p:nth-child(2) {
        margin-top: 20px;
    }

    /* section number 5 */

    .the-tag-difference {
        display: flex;
        flex-direction: column;
        column-gap: 0px;
        align-items: center;
        justify-content: space-between;
    }

    .the-tag-difference-image img {
        width: 310px;
        height: auto;
    }

    .the-tag-diffrence-content {
        color: #000000;
        position: relative;
        margin-top: 10px;
        width: 310px;
    }

    .the-tag-diffrence-content h3 {
        font-size: 28px;
    }

    .the-tag-diffrence-content p,
    .the-tag-diffrence-content-list {
        font-size: 14px;
        margin: 10px 0;
    }

    .the-tag-diffrence-content-list li::before {
        content: "\2022";
        left: -20px;
        position: absolute;
        color: #2D9DD8;
        font-size: 14px;
    }

    .the-tag-diffrence-content-list li {
        margin: 20px 0px 0 15px;
    }

    .oems-covered {
        position: relative;
        bottom: 0px;
        left: 0px;
        margin: auto;
        width: 310px;
        padding: 15px 25px;
    }

    .oems-covered h4 {
        font-size: 18px;
    }

    .oems-covered ul {
        margin: 20px 0 0 37px;
        font-size: 16px;
    }

    .oems-covered li::before {
        content: url(./images/oems-tick.png);
        left: 35px;
    }

    .use-cases {
        position: relative;
        margin-top: 20px;
        bottom: 0;
        right: 0;
        width: 310px;
        padding: 15px 25px;
    }

    .use-cases-contact {
        display: flex;
        position: relative;
    }

    .use-cases h4 {
        font-size: 18px;
    }

    .use-cases ul {
        margin: 20px 0 0 32px;
        font-size: 14px;
    }

    .use-case-image {
        position: absolute;
        bottom: -19px;
        right: -15px;
    }

    .use-case-image img {
        height: 85px;
        width: auto;
    }

    /* section number 6 */

    .why {
        background: url(./images/Why-tag.png) no-repeat top/ cover;
        position: relative;
        margin: 30px 0;
    }

    .customers-choose-tag {
        padding: 50px 0;
        max-width: 300px;
        margin: auto;
    }

    .constumer-choose {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .customers-choose-image img {
        width: 400px;
        height: auto;
    }

    .customers-choose-content {
        max-width: 300px;
        margin-top: 320px;
    }

    .customers-choose-content h2 {
        font-size: 28px;
    }

    .customers-choose-content ul {
        font-size: 14px;
        margin-top: 20px;
        margin-left: 18px;
    }

    .customers-choose-content li {
        margin-top: 10px;
    }

    .customers-choose-content li::before {
        content: "\2022";
        left: -20px;
        position: absolute;
        color: #2D9DD8;
        font-size: 14px;
    }

    .customers-choose-image {
        position: absolute;
        right: 0;
    }

    .TAG-cassandra-differentiators {
        margin: 30px auto;
    }

    .TAG-cassandra-differentiators h4 {
        font-size: 21px;
    }

    .tag-insights-cassandra-differentiators {
        margin: 30px auto;
        display: block;
        max-width: 300px;
        gap: 0px;
    }

    .tag-insights-cassandra-differentiators-boxes {
        max-width: 300px;
    }

    .tag-insights-cassandra-differentiators-boxes p {
        font-size: 14px;
        margin-top: 10px;
        padding-left: 30px;
        position: relative;
    }

    .tag-insights-cassandra-differentiators-boxes p::before {
        content: url(./images/use-cases-tick.png);
        position: absolute;
        left: 0;
    }

    /* magneto-analytics */

    /* Section number 1 */

    .hero-section-service-2 {
        background: url(./images/magneto-analytics-bg.png) no-repeat center/ cover;
        position: relative;
        top: 0px;
        height: 600px;
        overflow: hidden;
    }

    .container-hero-section-contant-service-2 {
        position: relative;
        max-width: 300px;
        margin: auto;
        top: 250px;
    }

    .hero-section-contant-service-2 {
        position: absolute;
        width: 300px;
        top: 0;
        left: 0px;
    }

    .hero-section-contant-service-2 h1 {
        font-family: nun;
        font-size: 36px;
        color: var(--white);
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-section-contant-service-2 p {
        font-size: 18px;
        font-family: nun;
        color: var(--white);
    }

    /* section number 2 */

    .services {
        margin: 30px auto;
    }

    .magneto-analytics-overview-content {
        color: #000000;
        width: 350px;
    }

    .magneto-analytics-overview {
        display: block;
        column-gap: 0px;
    }

    .magneto-analytics-overview-image img {
        width: 300px;
        height: auto;
        margin: auto;
    }



    .magneto-analytics-overview-content h2 {
        font-size: 28px;
    }

    .magneto-analytics-overview-content p {
        font-size: 14px;
        margin: 20px 0;
    }

    .magneto-analytics-overview-content ul {
        font-size: 14px;
        margin: 20px 20px;
    }

    .magneto-analytics-overview-content li::before {
        content: "\2022";
        font-size: 14px;
    }

    /* section number 3 */

    .service-1 {
        background: url(./images/service-bg.png) no-repeat center/ cover;
        width: 100%;
    }

    .magneto-analytics-overview-service {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .magneto-analytics-overview-service-responsive {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .magneto-analytics-overview-sevice-image img {
        width: 300px;
        height: auto;
        margin: auto;
    }

    .magneto-analytics-overview-service-content {
        max-width: 350px;
        margin: 20px auto;
    }

    .magneto-analytics-overview-service-content p {
        font-size: 16px;
    }

    /* section number 4 */

    .service-2 {
        margin: 30px 0;
    }

    .service-2 .magneto-analytics-overview-service-content p {
        font-size: 14px;
    }

    /* section number 5 */

    .long-box {
        max-width: 300px;
    }

    /* Correction Request */

    /* Section number 1 */

    .hero-section-correction-request {
        background: url(./images/correction-request-bg.png) no-repeat center/ cover;
        position: relative;
        top: 0px;
        height: 600px;
        overflow: hidden;
    }

    .container-hero-section-contant-correction-request {
        position: relative;
        max-width: 300px;
        margin: auto;
        top: 250px;
    }

    .hero-section-contant-correction-request {
        position: absolute;
        width: 300px;
        top: 0;
        left: 0px;
    }

    .hero-section-contant-correction-request h1 {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-section-contant-correction-request p {
        font-size: 18px;
    }

    /* Section number 2 */

    .suggestion-form {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 30px auto;
        column-gap: 0px;
    }

    .suggestion-form-content h2 {
        font-size: 28px;
    }

    .suggestion-form-content p {
        font-size: 18px;
        margin: 20px 0;
    }

    .suggestion-form-img img {
        width: 300px;
        height: auto;
    }

    /* Section number 3 */

    .form-suggestion {
        background: url(./images/Sugession-form-ng.png) no-repeat center/ cover;
        padding: 40px 0;
    }

    .suggestion-form-sug {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        column-gap: 0px;
        margin: 0 auto;
    }

    .suggestion-form-sug-img img {
        margin: auto;
        width: 300px;
        height: auto;
    }

    .suggestion-form-sug-content {
        font-size: 14px;
        margin-top: 30px;
    }

    .input-form,
    select {
        margin-bottom: 20px;
    }

    .input-form::placeholder {
        font-size: 14px;
    }

    select option {
        font-size: 14px;
    }

    .submit-form {
        margin: 20px auto;
        padding: 10px 15px;
        transition: all 0.25s ease;
        font-size: 16px;
    }

    .submit-form:active {
        background-color: #93268F;
    }

    /* documentation  */

    /* Section number 1 */

    .hero-section-documentation {
        background: url(./images/documentation-bg.png) no-repeat center/ cover;
        position: relative;
        top: 0px;
        height: 600px;
        overflow: hidden;
    }

    .container-hero-section-contant-documentation {
        position: relative;
        max-width: 300px;
        margin: auto;
        top: 350px;
    }

    .hero-section-contant-documentation {
        position: absolute;
        width: 300px;
        top: 0;
        left: 0px;
    }

    .hero-section-contant-documentation h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-section-contant-documentation p {
        font-size: 18px;
    }

    /* section number 2 */

    .documents {
        margin: 30px 0 20px 0;
        /* width: 300px; */
    }

    .documents h3 {
        font-size: 28px;
    }

    .documents ul {
        margin-top: 20px;
        margin-left: 21px;
        font-size: 16px;
    }

    /* section number 3 */

    .documents p:nth-of-type(1) {
        font-size: 16px;
        margin: 20px 0;
    }

    .documents p:nth-of-type(2) {
        font-size: 16px;
        width: 300px;
        word-wrap: break-word;
    }

    .documents span {
        font-family: nun-bold;
    }

    /* section number 6 */

    .container .document p:nth-of-type(2) {
        font-size: 16px;
        margin-top: 20px;
    }

    /* section number 9 */

    .documentation {
        background-color: #D9D9D9;
    }

    .application {
        padding: 60px 0;
    }

    .applications {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        text-align: center;
    }

    .application-list ul li {
        font-size: 16px;
    }

    .application-images img {
        margin-top: 20px;
        margin-left: 0;
    }

    /* Additional Product Information */

    /* Section number 1 */

    .hero-section-additional-product {
        background: url(./images/additional-bg.png) no-repeat center/ cover;
        position: relative;
        top: 0px;
        height: 600px;
        overflow: hidden;
    }

    .container-hero-section-contant-additional-product {
        position: relative;
        max-width: 300px;
        margin: auto;
        top: 350px;
    }

    .hero-section-contant-additional-product {
        position: absolute;
        width: 300px;
        top: 0;
        left: 0px;
    }

    .hero-section-contant-additional-product h1 {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-section-contant-additional-product p {
        font-size: 18px;
    }

    /* section number 2 */

    .Products {
        margin: 30px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .products-box {
        max-width: 300px;
    }

    .product-box-content {
        margin: 20px auto;
    }

    .product-box-content h4 {
        font-family: nun;
        font-size: 18px;
    }

    .product-box-content-button {
        margin: 25px auto;
        display: flex;
        justify-content: center;
        column-gap: 50px;
    }

    .product-box-content-button a {
        font-size: 18px;
        padding: 10px 12px;
        cursor: pointer;
    }

    .product-box-content-button a:active {
        background-color: #93268F;
        color: var(--white);
    }

    /* login Page */

    /* section number 1 */
    .log-in {
        background: url(./images/login-bg.png) no-repeat right / cover;
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .bg-login-image img {
        position: absolute;
    }

    .login-ellipse {
        bottom: 10px;
        right: -80px;
        opacity: 0.9;
    }

    .login-wave {
        display: none;
    }

    .login-side-content {
        height: 100vh;
    }

    .login-logo {
        display: none;
    }

    .login-para {
        display: none;
    }

    .login-site-logo {
        display: block;
        margin-bottom: 10px;
    }

    .login-site-logo img {
        height: 70px;
        width: auto;
    }

    .login-content {
        position: relative;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 0 10px;
        margin: auto;
    }

    .cassandra-content {
        margin: 0 auto;
        max-width: 367px;
    }

    .cassandra-content-image {
        display: flex;
        align-items: center;
    }

    .cassandra-content-image h2 {
        margin-left: 10px;
        font-size: 20px;
    }

    .cassandra-content-para p {
        font-size: 14px;
        font-family: nun-italic;
    }

    .cassandra-Content-para p span {
        font-size: 14px;
        font-family: nun-bold-italic;
    }

    .input-login-form {
        display: block;
        width: 362px;
        margin-bottom: 10px;
        background-color: rgba(217, 217, 217, 0.2);
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        color: var(--white);
        font-family: nun;
    }

    .input-login-form:focus {
        background: transparent;
        border: none;
        border-bottom: 2px white solid;
    }

    .cassandra-content .input-lgoin-form ::placeholder {
        color: #FFFFFF;
        font-family: nun;
    }


    .submit-login-form {
        border: 1px solid #93268F;
        border-radius: 10px;
        cursor: pointer;
        background-color: transparent;
        color: var(--white) !important;
        padding: 11px 15px;
        transition: all 0.25s ease;
    }

    .submit-login-form:active {
        background-color: #93268F;
    }

    .login-form form p {
        margin: 10px auto;
        font-size: 12px;
        max-width: 298px;
    }

    .other-signin {
        margin: 0 auto;
        max-width: 367px;
    }

    .checkbox-label {
        font-size: 14px;
        margin-left: 10px;
    }

    .login-form .login-form-submit {
        padding: 8px 150px;
        margin: 0 auto;
        background-color: #27AAE1;
        border: none;
        color: var(--white);
        cursor: pointer;
        font-size: 14px;
        font-family: nun-bold;
        border-radius: 5px;
    }


    .other-signin {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 30px;
    }

    .login-form p {
        text-align: center;
        margin: 10px auto;
    }

    .google-login {
        text-align: center;
    }

    .google-login .google-login-content a {
        text-decoration: none;
        color: var(--white);
    }

    .copyright p {
        font-size: 14px;
        margin: 10px auto;
    }

}