@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
/* BACKRGOUND COLORS */
--bg-white: #ffffff;
--bg-off-white: #f7f7fa;

/* COLORS */
--color-black: #000000;
--color-off-black: #5a5a5a;
--color-white: #ffffff;

/* COMMON COLORS */
--blue-color: #186daa;
--blue-opacity-color: #186daa1a;
--hover-blue-color: #0e5487;

/* BORDERS */
--nav-box-shadow: 0px 1px 1px 0px #0000001a;

/* FONTS STYLES */
--font-fallback: "Roboto", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
"Helvetica Neue", sans-sans;
--font-style-heading: "Gilroy-Bold", var(--font-fallback);
--font-style-body: "Roboto", var(--font-fallback);
--font-josefin: "Josefin Sans", var(--font-fallback);

/* FONT SIZES */
--heading: 2rem;
--sub-heading: 1.2rem;
--text: 1rem;
--line-height: 1.6rem;

--max-width: 1720px;

/* SIZES */
--dimensionless-logo-w: 7.33rem;
--dimensionless-logo-h: 3.67rem;
--aushadhai-logo-w: 9rem;
--aushadhai-logo-h: 5.66rem;
/* --line-height: 1.2; */
--saffron: #f2b01b;
--heading-font: var(--heading) var(--font-style-heading);
}

@media (max-width: 768px) {
:root {
font-size: calc(12px + 8 * ((100vw - 320px) / 680));

--dimensionless-logo-w: 5.33rem;
--dimensionless-logo-h: 2rem;
--aushadhai-logo-w: 7rem;
--aushadhai-logo-h: 2rem;

--heading: 1.8rem;
--sub-heading: 1.2rem;
--text: 1.1rem;

--heading-font: var(--heading) var(--font-style-heading);
}
}

@media (min-width: 1720px) {
:root {
/* font-size: calc(8px + 8 * ((100vw - 320px) / 680)); */
--heading: 2.5rem;
--sub-heading: 1.3rem;
/* --text: 1rem; */
--text: 1rem;

/* --heading-font: var(--heading) var(--font-style-heading); */
}
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
/* overflow-x: hidden; */
}

body {
margin: 0;
overflow-x: hidden;
}

html {
scroll-behavior: smooth;
font-family: var(--font-style-body);
}

.open {
display: block !important;
}
.center {
display: flex;
align-items: center;
justify-content: center;
}

/* ******************************
  => UTILITY CLASSES
*  **************************** */

/* : TAGS */
a {
text-decoration: none;
color: var(--color-black);
}

ul {
margin: 0;
}

button {
cursor: pointer;
border: none;
outline: none;
background: none;
padding: 0;
}

/* : CLASSES */

.logo-container {
display: flex;
justify-content: center;
align-items: center;
}

.gradient-text {
background: -webkit-linear-gradient(227deg, #186daa -31.45%, #051936 102.68%);
background-clip: unset;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.btn {
background-color: var(--blue-color);
color: var(--color-white);
font-size: 0.9rem;
padding: 1rem 2rem;
border-radius: 10px;
}

.btn:hover {
background-color: var(--hover-blue-color);
}

.center {
display: flex;
align-items: center;
justify-content: center;
}

/* :ID's */

/* ******************************
  => Navigation
*  **************************** */

.nav {
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.home-navbar {
padding: 0rem 4rem 0rem 4rem;
background-color: var(--bg-white);
display: flex;
flex-direction: row;
/* justify-content: space-between; */
gap: 35%;
align-items: center;
height: 5rem;
width: 100%;
max-width: var(--max-width);
}

.dimensionless-icon a img {
/* width: var(--dimensionless-logo-w); */
max-width: 100%;
height: var(--dimensionless-logo-h);
}
.home-icon a img {
width: var(--aushadhai-logo-w);
height: var(--aushadhai-logo-h);
}

.home-navbar-link {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
list-style-type: none;
height: 100%;
}
.home-navbar-link > li {
height: 100%;
display: flex;
align-items: center;
}

.home-navbar-link > li > a {
text-decoration: none;
color: var(--black-color);
padding-inline: 20px;
display: inline-block;
}
.nav-tab-anchor::after {
content: "";
display: block;
height: 2px;
width: var(--width, 0);
background-color: var(--blue-color);
transition: all 0.3s;
}
.home-navbar-link > li:hover .nav-tab-anchor::after {
width: 100%;
}

.home-navbar-link-close {
display: none;
}

#menu-toggle {
display: none;
}
.menu-button-container {
width: 2.7rem;
height: 2.7rem;
}
.trnsform-effact {
transition: all 0.2s;
}

@media (max-width: 768px) {
.nav {
display: block;
}

.home-navbar {
flex-wrap: wrap;
flex: 0 0 33.33%;
padding: 1rem 0 0 2rem;
justify-content: space-between;
}

.home-icon {
flex-basis: 80%;
}

.home-navbar-link {
display: none;
order: 4;
flex-direction: column;
justify-content: start;
background: beige;
height: 100vh;
transition: all 0.3s ease-in-out;
z-index: 10000;
position: absolute;
top: 5rem;
}
.display-class {
display: flex;
}
.home-navbar-link > li > a {
width: 100vw;
padding: 20px;
border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.home-navbar-link-close {
display: contents;
cursor: pointer;
flex-basis: 20%;
}
.bun-trnsform1 {
transform: skewY(-31deg);
}
.bun-trnsform2 {
transform: skewY(39deg);
}

#menu-toggle:checked + label div #rotate1 {
transform: skewY(-31deg);
}
#menu-toggle:checked + label div #rotate2 {
transform: skewY(39deg);
}
#menu-toggle:checked + label div #hide {
opacity: 0;
transform: all 0.2s;
}
}

@media (min-width: 1720px) {
.home-navbar-link > li > a {
font-size: var(--text);
}
}

/* ******************************
  => Hero Section
*  **************************** */

.service-hero {
display: flex;
align-items: center;
justify-content: center;
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/serviceherobackground-new-1-0.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: left center;
position: relative;
height: fit-content;
overflow: hidden;
height: 0%;
}

.pattern {
position: absolute;
width: 8%;
}

.pattern-1 {
bottom: 10%;
left: 0;
}

.pattern-2 {
top: 50%;
left: 50%;
bottom: 50%;
right: 50%;
}

.pattern-3 {
right: 0%;
bottom: 10%;
}

.service-hero-section {
/* background-color: red;  */
display: flex;
align-items: center;
flex-direction: column;
overflow: hidden;
height: 100%;
width: 100%;
}
/* .hero-practicles {
  width: 100%;
  height: 100%;
} */
/* .product-menu-container {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: 0vmax;
  position: absolute;
  top: 0;
  z-index: 1;
  border-top: 1px solid #b3b3b3b3;
  overflow: hidden;
} */
.product-menu-inner-container {
display: flex;
flex-wrap: wrap;
margin-left: 30%;
width: 40%;
height: 75%;
opacity: 1;
/* border: 1px black solid; */
}
.menu-container-animation {
animation: menucontaineranimation 0.1s linear 1 alternate;
animation-fill-mode: forwards;
}
@keyframes menucontaineranimation {
0% {
height: 10vmax;
opacity: 0.2;
}
30% {
height: 13vmax;
opacity: 0.5;
}
60% {
height: 16vmax;
opacity: 0.8;
}
100% {
height: 20vmax;
opacity: 1;
}
}
.menu-animation {
animation: menuanimation 0.3s linear 1 alternate;
animation-fill-mode: forwards;
}
@keyframes menuanimation {
0% {
opacity: 0.1;
}
30% {
opacity: 0.2;
}
60% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}
.product-menu-container:hover .home-navbar-link > li > a {
width: 100%;
}
.hero-heading-section {
position: relative;
height: 35vmax;
width: 100%;
/* padding: 4rem; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
pointer-events: none;
background: #000000cc;
}
.individual-product-menu-card {
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 1rem;
align-items: center;
width: 25%;
height: 50%;
flex-wrap: wrap;
}
.individual-product-menu-card > img {
width: 20%;
}
.individual-product-menu-image-specialcase {
width: 25% !important;
}
.individual-product-menu-label {
font-weight: 300;
color: #7a8082;
}
.individual-product-menu-card:hover .individual-product-menu-label {
color: var(--blue-color);
}

.hero-heading {
width: 100%;
text-align: center;
}
.hero-heading > h1 {
font-size: 3rem;
/* color: #202020; */
color: white;
}
.hero-sentence > p {
font-size: 1.5rem;
/* font-family: "Oxanium", sans-serif; */
font-weight: 400;
color: var(--color-off-black);
width: 75%;
text-align: center;
line-height: 2rem;
}
.hero-sentence {
width: 100%;
text-align: center;
display: contents;
}

#particles-js {
position: absolute;
width: 100%;
background-image: url(style.css);
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
top: 0;
/* display: flex; */
/* flex-direction: column; */
/* justify-content: center; */
/* align-items: center;*/
}

.hero-left-container {
flex: 0 0 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
/* padding: 0 4rem; */
padding-left: 4rem;
padding-right: 2rem;
/* max-width: var(--max-width); */
}

.hero-lc-heading {
font: var(--heading-font);
font-weight: 700;
}

.hero-lc-text {
font-size: var(--text);
padding: 2rem 0;
text-align: justify;
/* width: 80%; */
color: var(--color-off-black);
}

.hero-right-container {
/* flex: 0 0 50%; */
display: flex;
align-items: center;
flex-direction: column;
width: 100%;
height: 80vh;
justify-content: center;

/* max-width: var(--max-width); */
/* background-color: r  ed; */
}
.hero-right-inner-container {
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/medicine.webp);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
height: 42vmin;
width: 100vmin;
/* height: 60%; */
}
.hero-right-inner-top {
width: 100%;
height: 20%;
display: flex;
justify-content: center;
align-items: center;
gap: 8rem;
}

.hero-right-inner-bottom {
width: 100%;
height: 20%;
display: flex;
justify-content: center;
align-items: center;
}

.hero-rc-img {
width: 80%;
}

@media (max-width: 768px) {
.pattern {
width: 20%;
}

.service-hero {
height: auto;
}

.service-hero-section {
display: flex;
flex-direction: column;
gap: 4rem;
/* padding: 4rem 0; */
}

.hero-left-container {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-around;
padding: 0 2rem;
}

.hero-lc-heading {
font-weight: 700;
}

.hero-lc-text {
font-size: var(--sub-heading);
width: 100%;
}

.hero-right-container {
height: 50vh;
}
#particles-js {
height: 100%;
}
.hero-heading > h1 {
font-size: 3rem;
}
}
@media (min-width: 2000px) {
.service-hero-section {
justify-content: space-evenly;
}

.hero-left-container {
height: 50vh;
justify-content: space-evenly;
}

.hero-lc-text {
font-size: var(--sub-heading);
}

.hero-lc-btn {
font-size: var(--text);
}

.pattern-1 {
bottom: 40%;
}
}

/*-------------------service tabs--------------------*/

.service-tabs-section {
height: auto;
overflow: hidden;
}
.service-tabs-inner-section {
max-width: var(--max-width);
display: flex;
padding: 2rem 4rem;
justify-content: center;
align-items: center;
width: 80%;
height: 50vh;
/* border: 1px solid red; */
}
.service-tabs-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 100%;
/* gap: 3.33%; */
/* height: 5vh; */
}
.parent-tab-contianer {
width: 30%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
cursor: pointer;
}
.tab-underline {
width: 0%;
height: 1%;
background: var(--blue-color);
border-radius: 10px;
transition: 0.2s linear;
}
.individual-service-tab {
width: 100%;
height: 90%;
background-repeat: no-repeat;
background-size: 100% 100%;
/* background-size: cover; */
/* box-shadow: inset -100px 110px 150px black; */
background-position: center;
}
.individual-inner-service-tab {
width: 100%;
height: 100%;
box-shadow: black 20px 20px 235px inset;
display: flex;
flex-direction: column;
/* visibility:hidden; */
gap: 5%;
padding: 2rem 0rem 0rem 2rem;
transition: 0.1s linear;
}
.individual-service-tab:hover .individual-inner-service-tab {
visibility: visible !important;
box-shadow: none !important;
background: rgba(13, 45, 68, 0.75) !important;
}
.individual-service-tab:hover .tab-underline {
width: 100% !important;
}
.individual-inner-service-tab > h3 {
font-size: var(--sub-heading);
color: white;
letter-spacing: 1px;
}
#tab1 {
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/first-tab-service-new.jpg);
}
#tab2 {
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/second-tab-service.jpg);
}
#tab3 {
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/third-tab-service.jpg);
}
.service-tab-img {
width: 15%;
}
/*--------------------first Service------------------*/
.first-service {
width: 100%;
height: fit-content;
/* display: none; */
}
/*--------------------Second Service------------------*/
.second-service {
width: 100%;
height: fit-content;
/* display: none; */
}
/*--------------------Third Service------------------*/
.third-service {
width: 100%;
height: fit-content;
/* display: none; */
}
/*-------------------Service Description-------------*/
.service-description {
height: auto;
overflow: none;
width: 100%;
}
.service-description-inner-section {
max-width: var(--max-width);
width: 80%;
display: flex;
flex-direction: column;
align-items: center;
gap: 0 rem;
padding: 2rem 0 6rem;
}
.description-heading-contianer {
width: 100%;
padding: 1rem 4rem;
}
.description-heading-contianer > h2 {
font-weight: 500;
font-style: normal;
font-size: var(--heading);
}
.description-image-container {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding: 2rem 4rem;
gap: 2rem;
}
.description-image-container > img {
width: 100%;
height: 65vh;
}
.first-description-image {
content: url("https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/outsource-main-img_new.jpg");
}
.second-description-image {
content: url("https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/extended-main-img_new.jpg");
}
.third-description-image {
content: url("https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/corporate-main-img_new.jpg");
}
.description-image-container > p {
font-size: var(--text);
font-family: var(--font-style-body);
font-style: normal;
line-height: var(--line-height);
}
.description-pointers-container {
width: 100%;
display: flex;
flex-wrap: wrap;
row-gap: 5rem;
/* column-gap: 5%; */
justify-content: space-between;
padding: 4rem;
}
.description-individual-pointer {
width: 45%;
display: flex;
justify-content: space-between;
}
.description-pointer-img {
width: 15%;
}
.description-pointer-img > img {
width: 80%;
display: block;
margin-left: auto;
/* margin-right: auto; */
}
.description-pointer-content {
width: 80%;
display: flex;
flex-direction: column;
gap: 1rem;
}
.description-pointer-content > h3 {
font-size: var(--sub-heading);
}
.description-pointer-content > p {
font-size: var(--text);
line-height: var(--line-height);
}

/*-------------------Service Advantage---------------*/
.service-advantage-section {
height: auto;
overflow: hidden;
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/advantagesbackground.jpg);
background-repeat: no-repeat;
background-position: bottom;
background-attachment: fixed;
background-size: cover;
/* max-width: var(--max-width); */
}
.service-advantage-inner-section {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 2rem 2rem 6rem;
background: rgb(76 132 173 / 80%);
gap: 2rem;
}
.advantages-heading-contianer {
width: 80%;
padding: 2rem;
max-width: var(--max-width);
}
.advantages-heading-contianer > h2 {
font-weight: 500;
font-style: normal;
font-size: var(--heading);
color: white;
}
.advantages-content-container {
display: flex;
justify-content: space-between;
/* align-items: center; */
width: 80%;
padding: 2rem;
max-width: var(--max-width);
}
.advantages-content-container-second-third {
flex-direction: row;
display: flex;
justify-content: space-between;
/* align-items: center; */
width: 80%;
padding: 2rem;
max-width: var(--max-width);
}
.advantages-content-image {
width: 45%;
}
.shift-right {
margin-left: initial !important;
margin-right: auto;
}
.advantages-content-image > img {
margin-left: auto;
display: block;
/* height: 100%; */
height: 100%;
/* width: 80%; */
width: 100%;
}
.advantages-content-image-specialcase {
object-fit: contain;
aspect-ratio: 2/1;
}
.advantages-content-card {
width: 50%;
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.advantage-individual-card {
display: flex;
flex-direction: column;
gap: 2rem;
padding: 1rem 2.5rem;
}
.first-width-advantage-individual-card {
width: 23%;
}
.second-width-advantage-individual-card {
width: 40%;
}
.third-width-advantage-individual-card {
width: 100%;
border-radius: 10px;
}
.flex-column {
flex-direction: column;
}
.flex-row {
flex-direction: row;
}
.third-advantage-card-image {
width: 100%;
display: block;
margin-left: auto;
}
.third-card-image-container {
width: 10%;
}
.white-card {
color: #565656;
background: white;
}
.blue-card {
color: white;
background: var(--blue-color);
}
.advantage-individual-card > img {
width: 25%;
}
.advantage-text-content {
display: flex;
flex-direction: column;
justify-content: center;
/* align-items: center; */
gap: 1rem;
}
.gap-third-service {
gap: 0.5rem;
}
.advantage-text-content > h3 {
font-style: normal;
font-size: var(--sub-heading);
}
.advantage-text-content > p {
font-style: normal;
font-size: var(--text);
line-height: var(--line-height);
}
.show-in-phone {
display: none !important;
}
.hide-in-phone {
display: flex !important;
}
/*-------------------Technology Section--------------*/
.service-technology-section {
height: auto;
overflow: hidden;
}
.service-technology-inner-section {
max-width: var(--max-width);
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 4rem;
gap: 4rem;
}
.technology-heading-contianer {
width: fit-content;
padding: 2rem;
}
.technology-heading-contianer > h2 {
font-weight: 500;
font-size: var(--heading);
font-style: normal;
text-align: center;
}
.technology-content-container {
display: flex;
justify-content: center;
/* align-items: center; */
flex-wrap: wrap;
gap: 1%;
width: 100%;
row-gap: 1rem;
}
.display-flex-column {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
}
.fullstack-container {
width: 100%;
}
.data-container {
width: 56.5%;
}
.reports-container {
width: 100%;
}
.cloudcomputing-container {
width: 100%;
}

.aiml-container {
width: 100%;
}
.mlops-container {
width: 42.5%;
}

.with-5units {
width: 5vw !important;
}
.width-7units {
width: 7vw !important;
}

.tech-containers {
border: dashed 2px gray;
padding: 1rem;
}
.fullstack-container > h3 {
font-size: var(--sub-heading);
font-weight: 300;
}
.fullstack-container-logos {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
/* gap:1rem; */
/* justify-content: space-between; */
}
.fullstack-container-logos > img {
cursor: pointer;
/* width: 12.32%; */
/* height: 20vh; */
}

.data-container > h3 {
font-size: var(--sub-heading);
font-weight: 300;
}
.data-container-logos {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
/* gap:1rem; */
/* justify-content: space-between; */
}
.data-container-logos > img {
cursor: pointer;
width: 25%;
}

.reports-container > h3 {
font-size: var(--sub-heading);
font-weight: 300;
}
.reports-container-logos {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
/* gap:1rem; */
/* justify-content: space-between; */
}
.reports-container-logos > img {
cursor: pointer;
width: 14%;
/*height: 20vh; */
}

.cloudcomputing-container > h3 {
font-size: var(--sub-heading);
font-weight: 300;
}
.cloudcomputing-container-logos {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
/* gap:1rem; */
/* justify-content: space-between; */
}
.cloudcomputing-container-logos > img {
cursor: pointer;
width: 14%;
/* width: 10vw;
  height: 20vh; */
}

.mlops-container > h3 {
font-size: var(--sub-heading);
font-weight: 300;
}
.mlops-container-logos {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
/* justify-content: space-between; */
}
.mlops-container-logos > img {
cursor: pointer;
width: 25%;
}

.aiml-container > h3 {
font-size: var(--sub-heading);
font-weight: 300;
}
.aiml-container-logos {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
/* gap:1rem; */
/* justify-content: space-between; */
}
.aiml-container-logos > img {
cursor: pointer;
width: 12.3%;
/* height: 20vh; */
}

/*------------------Testimonials section------------*/
.service-testimonials-section {
height: auto;
overflow: hidden;
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/testimonialbackgroundnew.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.service-testimonials-inner-section {
max-width: var(--max-width);
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem 0 6rem;
gap: 4rem;
}
.testimonials-heading-contianer {
width: fit-content;
padding: 2rem;
}
.testimonials-heading-contianer > h2 {
font-weight: 500;
font-size: var(--heading);
font-style: normal;
}
.testimonials-container {
display: flex;
flex-direction: column;
gap: 2rem;
justify-content: center;
align-items: center;
padding: 2rem;
width: 70%;
background: #ffffff;
box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
border-radius: 20px;
}
.quotes-container {
width: 100%;
}
.quotes-container > img {
width: 20%;
display: block;
margin-left: auto;
margin-right: auto;
}
.testimonials-para {
width: 70%;
display: none;
}
.testimonials-para > p {
font-size: 1.5rem;
letter-spacing: 0.05em;
line-height: var(--line-height);
text-align: center;
font-weight: 300;
}
.writer-name-info {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
}
.writer-name-info > p {
text-align: center;
font-size: 0.8rem;
color: #999999;
}
.writer-name-info > label {
text-align: center;
font-size: var(--sub-heading);
font-weight: 500;
}
.dots-container {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
}
.dots-container > button {
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
background: #e0e0e0;
}
.active-dots {
background: var(--blue-color) !important;
}
.active-para {
display: block;
}
.acitve-info {
display: flex;
}
/*------------------contact section-----------------*/
.service-contact-section {
height: auto;
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/contactbackgroundnew.jpg);
background-repeat: no-repeat;
background-position: center;
/* background-attachment: fixed; */
background-size: cover;
overflow: hidden;
}
.service-contact-inner-section {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 6rem;
/* gap: 2rem; */
background: rgb(76 132 173 / 80%);
}
.contact-heading-contianer {
width: fit-content;
padding: 2rem;
}
.contact-heading-contianer > h2 {
font-weight: 500;
font-size: var(--heading);
font-style: normal;
color: white;
text-align: center;
letter-spacing: 0.2rem;
line-height: 4rem;
}
.contact-book-btn {
width: 100%;
padding: 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.book-btn {
background: rgb(24, 109, 170);
border-radius: 4px;
font-family: Arial;
color: rgb(255, 255, 255);
font-size: 1.2rem;
padding: 0.8rem 4rem;
width: max-content;
height: fit-content;
border: none;
cursor: pointer;
box-shadow: 0px 100px 80px rgba(49, 49, 49, 0.1),
0px 64.8148px 46.8519px rgba(49, 49, 49, 0.0759259),
0px 38.5185px 25.4815px rgba(49, 49, 49, 0.0607407),
0px 20px 13px rgba(49, 49, 49, 0.05),
0px 8.14815px 6.51852px rgba(49, 49, 49, 0.0392593),
0px 1.85185px 3.14815px rgba(49, 49, 49, 0.0240741);
}
.book-btn:hover {
background: #0e5487;
}

/*-------------Footer section-----------------*/
.footer-section {
height: auto;
background-image: url(https://dimensionlesswebsite.azureedge.net/dimensionlesswebsiteimage/case-study-background.svg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
/* display: none; */
}
.footer-inner-section {
max-width: var(--max-width);
padding: 6rem 0 2rem 0;
width: 80%;
height: auto;
display: flex;
flex-direction: column;
justify-items: auto;
align-items: center;
gap: 4vmin;
}

.footer-inner-section > .first-inner-network-section {
width: 100%;
height: 80%;
display: flex;
flex-direction: row;
/* border: 1px solid yellow; */
}

.footer-inner-section > .second-inner-network-section {
width: 100%;
height: 20%;
border-top: 2px solid white;
display: flex;
gap: 1rem;
padding: 2rem 0 0 0;
flex-direction: column;
justify-content: center;
align-items: center;
}
.footer-inner-section > .second-inner-network-section > p {
color: white;
text-align: center;
font-weight: 300;
/* padding: 2rem; */
}
.footer-inner-section > .second-inner-network-section > a {
color: white;
text-align: left;
font-weight: 300;
text-decoration: none;
display: none;
}
.first-inner-network-section > .first-div {
height: 80%;
width: 20%;
/* margin-top: auto; */
/* margin-bottom: auto; */
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.first-inner-network-section > .first-div > img {
width: 15%;
}
.first-inner-network-section > .first-div > p {
color: white;
text-align: left;
font-weight: 300;
font-size: inherit;
}
.first-inner-network-section > .first-div > a {
color: white;
text-align: left;
font-weight: 400;
text-decoration: none;
}
.social-media-icon {
display: flex;
flex-direction: row;
gap: 1rem;
justify-content: flex-start;
align-items: center;
}

.social-media-icon-second {
display: flex;
flex-direction: row;
gap: 1rem;
justify-content: flex-start;
align-items: center;
display: none;
}
.social-media-icon-second > img {
width: min-content;
cursor: pointer;
}
/* .social-media-icon > img {
  width: 20%;
  height: 20%;
} */
.first-inner-network-section > .second-div {
height: 80%;
width: 18%;
display: flex;
flex-direction: column;
gap: 1.5rem;
/* margin-top: auto;
  margin-bottom: auto; */
}
.first-inner-network-section > .second-div > h3 {
color: white;
text-align: left;
font-weight: 500;
padding-top: 11%;
}
.first-inner-network-section > .second-div > label {
color: white;
text-align: left;
font-weight: 300;
cursor: pointer;
}
.first-inner-network-section > .third-div {
height: 80%;
width: 18%;
/* margin-top: auto; */
/* margin-bottom: auto; */
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.first-inner-network-section > .third-div > h3 {
color: white;
text-align: left;
font-weight: 500;
padding-top: 11%;
}
.first-inner-network-section > .third-div > label {
color: white;
text-align: left;
font-weight: 300;
cursor: pointer;
}
.first-inner-network-section > .fourth-div {
height: 80%;
width: 18%;
/* margin-top: auto; */
/* margin-bottom: auto; */
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.first-inner-network-section > .fourth-div > h3 {
color: white;
text-align: left;
font-weight: 500;
padding-top: 11%;
}
.first-inner-network-section > .fourth-div > label {
color: white;
text-align: left;
font-weight: 300;
cursor: pointer;
}
.first-inner-network-section > .fifth-div {
height: 80%;
width: 26%;
/* margin-top: auto; */
/* margin-bottom: auto; */
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.first-inner-network-section > .fifth-div > h3 {
color: white;
text-align: left;
font-weight: 500;
padding-top: 8%;
}
.first-inner-network-section > .fifth-div > label {
color: rgb(214, 214, 214);
text-align: left;
font-weight: 500;
cursor: pointer;
}

/*-------------------Reponsive part------------------*/
@media only screen and (min-width: 2560px) {
/*-------------------service tabs--------------------*/

/*-------------------Service Description-------------*/

/*-------------------Service Advantage---------------*/

/* .advantages-content-image > img{
    height: 35vmax;
    width: 90%;
  }
   */
/*-------------------Technology Section--------------*/

/*------------------contact section-----------------*/
}

@media only screen and (max-width: 1440px) {
/*-------------------service tabs--------------------*/

/*-------------------Service Description-------------*/

/*-------------------Service Advantage---------------*/

.advantage-individual-card {
padding: 0.5rem 0.5rem;
}

/*-------------------Technology Section--------------*/
.fullstack-container-logos > img {
width: 12.32%;
height: 20vh;
}
.mlops-container-logos > img {
width: 25%;
}

/*------------------contact section-----------------*/
}

@media only screen and (max-width: 1024px) {
/*-------------------service tabs--------------------*/
.service-tabs-inner-section {
height: 40vh;
}
/*-------------------Service Description-------------*/
.description-image-container > img {
height: 45vh;
}
/*-------------------Service Advantage---------------*/
.advantages-content-image {
width: 60%;
}
.advantage-individual-card {
padding: 1rem 1rem;
}
.advantages-content-card {
width: 100%;
justify-content: center;
align-items: center;
}
.advantages-content-container-second-third {
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
}
.advantages-content-image > img {
width: 100%;
height: 100%;
display: block;
margin-left: auto !important;
margin-right: auto !important;
}
.advantages-content-image-specialcase {
aspect-ratio: unset;
}
.third-width-advantage-individual-card {
width: 75%;
}
/* .advantages-content-container{
    flex-direction:column;
    justify-content: center;
    align-items: center;
  } */

/*-------------------Technology Section--------------*/
.mlops-container-logos > img {
width: 27%;
/* height: 15vh; */
}
.fullstack-container-logos > img {
width: 12.32%;
height: 15vh;
}
.data-container-logos > img {
width: 25%;
}
/*------------------contact section-----------------*/
}
@media only screen and (max-width: 998px) {
html {
font-size: 55%;
}
/*-------------------service tabs--------------------*/

/*-------------------Service Description-------------*/

/*-------------------Service Advantage---------------*/

/*-------------------Technology Section--------------*/

/*------------------contact section-----------------*/
}

@media only screen and (max-width: 768px) {
html {
font-size: 20%;
}
:root {
--line-height: 25px;
}
.hero-heading > h1 {
font-size: 2rem;
}
.hero-heading-section {
padding: 2rem;
height: 70vmax;
}
.product-menu-container {
display: none;
}
/*-------------------service tabs--------------------*/
.service-tabs-inner-section {
height: 40vh;
}
.service-tabs-inner-section {
width: 100%;
padding: 2rem;
}
.service-tab-img {
width: 20%;
}
.individual-service-tab {
background-size: 100% 100%;
}
/*-------------------Service Description-------------*/
.service-description-inner-section {
width: 100%;
}
.description-pointer-img > img {
width: 100%;
}
.description-heading-contianer {
padding: 0rem 2rem;
}
.description-image-container > img {
height: 60vh;
}
.description-image-container {
padding: 2rem;
}
.description-pointers-container {
padding: 2rem;
}
.advantages-heading-contianer {
width: 100%;
padding: 0rem;
}
/*-------------------Service Advantage---------------*/

.service-advantage-inner-section {
padding: 2rem 2rem 6rem;
}
.service-technology-inner-section {
gap: 2rem;
}
.service-advantage-inner-section {
gap: 2rem;
}
.advantages-content-container {
width: 100%;
}
.advantage-individual-card > img {
width: 8vw;
}
.advantages-content-container {
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.first-width-advantage-individual-card {
width: 45%;
}
.advantages-content-card {
gap: 1rem;
justify-content: center;
align-items: initial;
}
.advantages-content-container-second-third {
width: 100%;
}
.second-width-advantage-individual-card {
width: 45%;
}
.third-card-image-container {
width: 15%;
}
.third-width-advantage-individual-card {
width: 100%;
}
.advantage-individual-card {
padding: 1rem;
}
.advantages-content-image {
width: 90%;
}
.cloudcomputing-container-logos > img {
width: 14%;
}
.cloudcomputing-container-logos {
row-gap: 1rem;
}
.fullstack-container-logos > img {
width: 12%;
height: 13vh;
}
.fullstack-container-logos {
row-gap: 1rem;
}

.aiml-container-logos > img {
width: 12.3%;
}
.aiml-container-logos {
row-gap: 1rem;
}
.mlops-container {
width: 100%;
}
.mlops-container-logos > img {
width: 12%;
}
.mlops-container-logos {
row-gap: 1rem;
}
.data-container {
width: 100%;
}
.data-container-logos > img {
width: 14%;
}
.data-container-logos {
row-gap: 1rem;
}

.reports-container-logos > img {
width: 14%;
}
.reports-container-logos {
row-gap: 1rem;
}
.advantages-content-image > img {
width: 100%;
height: 100%;
display: block;
margin-left: auto !important;
margin-right: auto !important;
}
.third-width-advantage-individual-card {
border-radius: 5px;
}

/*-------------------Technology Section--------------*/
.service-technology-inner-section {
padding: 2rem;
}
.with-5units {
width: 12vw !important;
}
.width-7units {
width: 12vw !important;
}

/*------------------contact section-----------------*/
.service-contact-inner-section {
padding: 2rem;
}
.book-btn {
padding: 0.8rem 3rem;
display: block;
margin-left: auto;
margin-right: auto;
}
.contact-heading-contianer > h2 {
line-height: 3rem;
}
.contact-heading-contianer {
padding: 1rem;
}
.contact-book-btn {
padding: 1rem;
}
/*-------------------testimonial-----------------------*/
.testimonials-container {
width: 80%;
border-radius: 10px;
}
.testimonials-para > p {
line-height: 2rem;
font-size: 1.2rem;
}
.testimonials-para {
width: 90%;
}
.quotes-container > img {
width: 30%;
}

/*------------------------footer section---------------*/
.footer-inner-section > .first-inner-network-section {
flex-direction: column;
gap: 2rem;
}
.first-inner-network-section > .first-div {
width: 70%;
align-items: center;
margin-left: auto;
margin-right: auto;
}
.first-inner-network-section > .first-div > a {
display: none;
}
.social-media-icon {
display: none;
}
.first-inner-network-section > .second-div {
width: 100%;
}
.first-inner-network-section > .third-div {
width: 100%;
}
.first-inner-network-section > .fourth-div {
width: 100%;
}
.first-inner-network-section > .fifth-div {
width: 100%;
}
.social-media-icon-second {
display: flex;
}
.footer-inner-section > .second-inner-network-section {
align-items: flex-start;
}
.footer-inner-section > .second-inner-network-section > a {
display: inline;
}
.footer-inner-section > .second-inner-network-section > p {
text-align: left;
}

.footer-inner-section {
padding: 6rem 0 6rem 0;
}
.brclass {
display: none;
}
}

@media only screen and (min-width: 600px) {
}

@media only screen and (max-width: 600px) {
:root {
--line-height: 20px;
--heading: 1.8rem;
--sub-heading: 1.1rem;
--text: 1rem;
}
/*-------------------service tabs--------------------*/
.service-tabs-inner-section {
height: auto;
}
.parent-tab-contianer {
height: 10rem;
width: 32%;
}
.service-tab-img {
width: 22%;
}
.individual-inner-service-tab > h3 {
font-size: 0.7rem;
}
.individual-inner-service-tab {
padding: 1rem 0 0 1rem;
box-shadow: black 0px 0px 70px inset !important;
}
.service-tabs-inner-section {
padding: 2rem 0rem;
}
.service-tabs-container {
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
/*-------------------Service Description-------------*/
.description-individual-pointer {
width: 100%;
}
.description-image-container > img {
height: 35vh;
}
.description-pointers-container {
flex-direction: column;
justify-content: center;
/* align-items: center; */
row-gap: 3rem;
}

/*-------------------Service Advantage---------------*/
.advantages-content-container {
gap: 3rem;
}
.advantages-heading-contianer > h2 {
text-align: center;
}
.first-width-advantage-individual-card {
width: 95%;
}
.advantage-individual-card > img {
width: 15vw;
}
.advantage-individual-card {
gap: 1rem;
padding: 2rem 2rem;
}

.second-width-advantage-individual-card {
width: 80%;
}
.advantages-content-image {
width: 100%;
}
.third-card-image-container {
width: 30%;
}
.advantages-content-container-second-third {
padding: 0rem;
}
.no-padding {
padding: 1rem !important;
}
.show-in-phone {
display: flex !important;
}
.hide-in-phone {
display: none !important;
}
/*-------------------Technology Section--------------*/
.cloudcomputing-container-logos > img {
width: 25%;
}
.cloudcomputing-container-logos {
/* row-gap: 2rem;
    column-gap: 2rem; */
justify-content: space-between;
}
.fullstack-container-logos > img {
width: 25%;
height: 10vh;
}
.fullstack-container-logos {
/* row-gap: 2rem;
    column-gap: 2rem; */
justify-content: space-between;
}

.aiml-container-logos > img {
width: 25%;
}
.aiml-container-logos {
/* row-gap: 2rem;
    column-gap: 2rem; */
justify-content: space-between;
}

.mlops-container-logos > img {
width: 25%;
}
.mlops-container-logos {
/* row-gap: 2rem;
    column-gap: 2rem; */
justify-content: space-between;
}

.data-container-logos > img {
width: 25%;
}
.data-container-logos {
/* row-gap: 2rem;
    column-gap: 2rem; */
justify-content: space-between;
}

.reports-container-logos > img {
width: 25%;
}
.reports-container-logos {
/* row-gap: 2rem;
    column-gap: 2rem; */
justify-content: space-between;
}
/*-------------------Testimonial section-------------*/
.quotes-container > img {
width: 40%;
}
.testimonials-container {
width: 85%;
}
.testimonials-para {
width: 100%;
}
/*------------------contact section-----------------*/
}
@media only screen and (max-width: 320px) {
.third-card-image-container {
width: 50%;
}
.mlops-container {
width: 100%;
}
.data-container {
width: 100%;
}
/* .reports-container-logos > img {
    width: 40%;
  } */
}
