/* Global Styles */
/* Import Graphik font */
@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-RegularItalic-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Medium-Trial.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-MediumItalic-Trial.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Bold-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-BoldItalic-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Light-Trial.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Semibold-Trial.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("Inter/static/Inter_18pt-SemiBold.ttf");
}
/* Reset default font for the entire website */
* {
  font-family: "Graphik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* ::-webkit-scrollbar {
  display: none;
}

:root {
  --primary-color: #003366;
  --secondary-color: #ff6600;
  --text-color: #333;
  --light-text: #666;
  --white: #fff;
  --light-bg: #f5f9ff;
  --border-color: #e0e0e0;
  --card-bg: #f8fbff;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Graphik";
  font-style: normal;
  line-height: 1.6;
  width: 100vw;
  overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hero {
	background-size: cover;
	background-position: center;
	color: #eeeeee;
	padding: 119px 0px;
	position: relative;
}


.hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 140%;
  font-weight: 500;
}

.breadcrumb-link {
  color: #f56300;
  text-decoration-line: underline;
  text-underline-offset: 25%;

  text-decoration-thickness: 10%;
  text-decoration-skip-ink: auto;
}

.breadcrumb #span-1 {
  color: #f56300;
}

.breadcrumb #span-2 {
  color: #c6edff;
  font-weight: 400;
}

.hero-content h1 {
  margin: 0 0 20px 0;
  width: 584px;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  /* or 45px */

  color: #eeeeee;
}

#hero-heading-desktop span::after {
  content: "";
  display: block;
}

/* intro section*/
.intro {
  padding: 104px;
  background: #c6edff;
}


.intro .container {
  display: flex;
    flex-direction: row;
    align-items: center;
    height: 500px;
    gap: 24px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
}

.intro-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px;
  gap: 10px;

  width: 50vw;
  color: #00293b;
}

.intro-contents h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 48px;
  letter-spacing: 0%;
}

.intro-contents ul {
  margin-left: 40px;
}

.intro-contents ul li {
  list-style-type: disc;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
}

 .intro-background {
  width: 600px;
  height: 500px;

  background: url(Technology_Images/cloud_intro.png), #d9d9d9;
  background-size: cover;
} 

/* cloud-services section */
.cloud-services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 104px;
  gap: 4px;



  background: #ffffff;
}

.cloud-services .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;

 
}

.cloud-services-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  gap: 4px;
  height: 43px;
}

.cloud-services-heading h3 {
  height: 35px;

  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  display: flex;
  align-items: center;
  color: #00293b;
}

.cloud-services-cards-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cloud-services-cards-2 {
  display: grid;
  grid-template-columns: 38% 60%;
  gap: 24px;
}

.cloud-services-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;

  height: 545px;
}

.cloud-services-card .card-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding: 40px 8px;
  gap: 4px;
  height: 285px;
  background: #c6edff;
}


.cloud-services-card .card-content .card-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 4px 24px;

  height: 276px;
}

.cloud-services-card .card-content .card-container h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #0066cc;
}

.cloud-services-card .card-content .card-container p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #00293b;
}

.cloud-services-card img {
  width: 100%;
  height: 180px;
}

#cloud-service-card-3 {
/*  width: 521px;*/
}
#cloud-service-card-4 {
 /*  width: 755px;
  justify-content: flex-end;*/
}

#cloud-service-card-4 .card-container {
  gap: 5px;
}


/* best-practices */
.best-practices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 104px;
  gap: 4px;

  height: 645px;

  background: #c6edff;
}

.best-practices .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 64px;

  height: 491px;
}

.best-practices-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  gap: 4px;

  height: 43px;
}
.best-practices-heading h3 {
  height: 35px;

  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  display: flex;
  align-items: center;

  color: #00293b;
}

.best-practices-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  height: 384px;
}

.best-practices-card {
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-between; */
  padding: 24px;
  gap: 40px;

  height: 112px;

  border: 1.5px solid #0066cc;
}

.best-practices-card img {
  width: 64px;
  height: 64px;
}

.best-card-heading {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0px;
  gap: 4px;

  height: 32px;
}
.best-card-heading h4 {
  height: 32px;

  font-weight: 600;
  font-size: 20px;
  line-height: 32px;

  color: #0066cc;
}

#best-card-6 .best-card-heading {
  height: 64px;
}
#best-card-6 .best-card-heading h4 {
  height: 64px;
}

/* connect section */
.connect {
  background: #f5f5f7;
  padding: 104px;
}

.connect .container {
  display: flex;
  align-items: center;
  padding: 0px;
  gap: 64px;
  height: 750px;
}

/* .connect-image {
  background: url(Technology_Images/cloud_did_U_know.png);
  height: 750px;
  width: 600px;
  background-size: 100% 100%;
  background-position: center;
} */

.connect .contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 56px;

  width: 744px;
  height: 625px;
}

.connect .contents .contents-row-1 {
  height: 325px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: #00293b;
  gap: 40px;
}

.connect .contents .contents-row-1 h3 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 25%;

  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

.connect .contents .contents-row-1 ol {
  padding-left: 25px;
  /* display: flex;
    flex-direction: column;
    gap: 15px; */
}

.connect .contents .contents-row-1 ol li {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
}

.connect .contents .contents-row-1 ol li span {
  text-transform: lowercase;
}

.connect .contents .contents-row-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 56px;

  height: 244px;
}
.connect .contents .contents-row-2 .row-2-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 17px;

  height: 144px;
}
.connect .contents .contents-row-2 .row-2-contact .lets-connect {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 14px;

  width: 234.56px;
  height: 32px;
}

.lets-connect img {
  width: 23.56px;
  height: 16.89px;
}

.lets-connect h4 {
  /* Let’s connect */

  width: 200px;
  /* height: 32px; */
  margin-top: -5px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  text-align: center;
  /* letter-spacing: 0.5px; */
  text-transform: capitalize;

  color: #0066cc;
}

.row-2-contact p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  /* or 133% */
  vertical-align: middle;

  color: #00293b;
}

.row-2-contact p span {
  font-weight: 500;
  letter-spacing: 0%;
  color: #0066cc;
}

.learn-more-button {
  /* Button */

  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  gap: 4px;

  width: 163px;
  height: 44px;

  background: #f56300;
  border-radius: 20px;

  border: none;
  cursor: pointer;
}

.learn-more-button a {
  margin: 0;
  width: 115px;
  height: 28px;

  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  /* identical to box height, or 170% */

  text-align: center;
  /* letter-spacing: 1.3px; */
  text-transform: uppercase;
  vertical-align: middle;

  color: #ffffff;
}

/* expertise */
.expertise {
  padding: 104px;

  height: 1000px;

  background: linear-gradient(180deg, #c6edff 0%, #ffffff 100%);
}

.expertise .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.expertise-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4px;
  gap: 56px;

  height: 43px;
  color: #00293b;
}

.expertise-heading h3 {
  height: 35px;
  font-weight: 400;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.expertise-heading h3 span {
  font-weight: 600;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0px;
  gap: 24px;
  width: 100%;
  /* min-width: 1300px; */
  height: 813px;
}




.expertise-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px;
    gap: 4px;
    height: 398px;
    z-index: 0; /* Keeps the background layer behind */
  }
  
  /* Create a pseudo-element for the background image */
  .expertise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    background: url(Technology_Images/expertise_card-1.jpeg);
    background-size: cover;
    background-position: center;
  
    filter: grayscale(100%); /* Apply filter only to background */
  
    z-index: -1; /* Send it behind the content */
    border-radius: inherit; /* Inherits border-radius if needed */
  }
  
  .expertise-card-content {
    z-index: 10; /* Ensure it's above the background */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 12px;
    gap: 10px;
  
    width: 400px;
    height: 200px;
  
    background-image: linear-gradient(180deg, #c6edff 0%, #ffffff 100%);
    border-radius: 0px 24px 0px 0px;
    color: #00293B;
  }
  
  .expertise-card-content h3 {
    /* height: 96px; */
  
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    /* or 133% */
  }
  
  .expertise-card-content h3 span::after {
    content: "";
    display: block;
  }
  
  .expertise-card-content p {
    height: 120px;
  
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */
  }
  
  #expertise-card-2::before {
    background: url(Technology_Images/expertise_card-2.jpeg);
    background-size: cover;
    background-position: center;
  }
  
  #expertise-card-3::before {
    background: url(Technology_Images/expertise_card-3.jpeg);
    background-size: cover;
    background-position: center;
  }
  #expertise-card-4::before {
    background: url(Technology_Images/expertise_card-4.jpeg);
    background-size: cover;
    background-position: center;
  }
  
  #focus-areas-card-2 p {
    width: 208px;
  }
  
  #focus-areas-card-3 p {
    width: 296px;
  }

@media (max-width: 768px) {
  .container {
    max-width: 608px;
    padding: 0 40px;
  }


  /* hero section */
  .hero {
    height: 620px;
  }
  .hero::before {
    /* Rectangle 2890 */

    width: 100%;
    height: 100%;

    background: linear-gradient(
      0deg,
      rgba(0, 41, 59, 0.7) 8%,
      rgba(0, 102, 204, 0.7) 40%,
      rgba(0, 0, 0, 0) 75%
    );
  }

  .hero .container {
    position: absolute;
    bottom: 80px;
    left: 40px;
    z-index: 1;
    width: 584px;
    height: 152px;
  }

  .breadcrumb {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    gap: 10px;
    margin-top: 0;
  }
  .hero-content h1 {
    letter-spacing: 0%;
    vertical-align: middle;
    line-height: 140%;
    margin: 0;
  }

  .hero-content h1 span::after {
    content: "";
    display: block;
  }

  /* intro section */
  .intro {
    padding: 104px 40px;
  }

  .intro .container {
    padding: 0;
    /* width: 768px; */
    height: 795px;
    flex-direction: column;
  }

  .intro-contents {
    padding: 4px;

    width: 608px;
    height: 531px;
    gap: 20px;
  }

  .intro-background {
    /* Rectangle 2892 */

    width: 608px;
    height: 240px;

    background: url(Technology_Images/cloud_intro_tablet.png), #d9d9d9;
    background-size: cover;
  }

  .intro-contents ul li {
    font-size: 24px;
  }

  /* cloud-services section */
  .cloud-services {
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;

    width: 768px;
    height: 2750px;
  }

  .cloud-services .container {
    gap: 48px;

    width: 608px;
    height: 2590px;
  }

  .cloud-services-heading h3 {
    height: 35px;

    line-height: 100%;
    display: flex;
    align-items: center;
    color: #00293b;
  }
.cloud-services-cards-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
.cloud-services-cards-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 55px;
}

  .cloud-services-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
    width: 608px;
  }

  #cloud-service-card-2 .card-content {
    height: 263px;
  }

  #cloud-service-card-2 .card-container {
    height: 183px;
  }

  #cloud-service-card-3 {
    width: 608px;
  }
  #cloud-service-card-4 {
    width: 608px;
    justify-content: flex-end;
  }

  #cloud-service-card-4 .card-container {
    gap: 20px;
    height: 303px;
  }

  #cloud-service-card-4 .card-content {
    height: 388px;
  }

  /* best-practices */
  .best-practices {
    height: 1075px;
  }

  .best-practices .container {
    gap: 32px;

    width: 608px;
    height: 867px;
  }

  .best-practices-cards {
    grid-template-columns: repeat(1, 1fr);
    height: 792px;
  }

  .best-practices-card {
    gap: 48px;

    width: 510px;
    height: 112px;
  }

  .best-card-1 .best-card-heading {
    height: 64px;
  }

  .best-card-1 .best-card-heading h4 {
    height: 64px;
  }

  .best-card-heading h4 span::after {
    content: "";
    display: block;
  }

  /* connect section */
  .connect {
    padding: 104px 0px;
  }

  .connect .container {
    flex-direction: column;
    height: 1112px;
  }

  .connect-image {
    background: url(Technology_Images/cloud_didUKnow_Tab.png);
    width: 100%;
    height: 405px;

    background-size: 100% 100%;
    background-position: center;
  }

  .connect .contents {
    gap: 64px;

    width: 100%;
    height: 651px;
  }

  .connect .contents .contents-row-1 {
    height: 367px;
    justify-content: space-between;
  }

  .connect .contents .contents-row-2 {
    height: 252px;
    gap: 64px;
  }
  .row-2-contact p span::after {
    content: "";
    display: block;
  }

  /* expertise */
  .expertise {
    height: 1947px;
    padding: 104px 0;
  }
  .expertise-cards {
    grid-template-columns: repeat(1, 1fr);
    padding: 0px;
    gap: 24px;
    width: 608px;
    height: 813px;
  }

  .expertise .container {
    padding: 0;
    height: 1739px;
  }
 
}

@media (max-width: 430px) {
  .container {
    width: 350px;
    max-width: 430px;
  }

 
  /* hero section */
  .hero {
    height: 45vh;
  }

  .hero::before {
    background: linear-gradient(
      0deg,
      rgba(0, 41, 59, 0.7) 18.5%,
      rgba(0, 102, 204, 0.7) 46%,
      rgba(0, 0, 0, 0) 65.5%
    );
  }

  .hero .container {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 1;
    height: auto;
  }

  .breadcrumb {
    margin: 0;

    font-size: 24px;
  }

  .hero-content h1 {
    margin: 0;
    width: 350px;
    height: auto;
    margin-top: 30px;
    vertical-align: middle;
  }

  #hero-heading-desktop span::after {
    content: "";
    display: unset;
  }

  /* Intro section */
  .intro {
    padding: 40px;
    height: auto;
  }

  .intro .container {
    width: 80vw;
    height: auto;
  }

  .intro-contents {
    gap: 20px;
    padding: 4px;
    width: 80vw;
    height: auto;
    
  }

  .intro-contents ul {
    margin-left: 30px;
  }

  .intro-contents ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
  }

  .intro-background {
    width: 85vw;
    height: 16vh;

    background: url(Technology_Images/cloud_intro_phone.png), #d9d9d9;
    background-size: cover;
  }

  /* cloud-services section */
  .cloud-services {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 4px;
    width: 80vw;
    height: auto;
  }

  .cloud-services .container {
    gap: 48px;
    margin: 0;
    width: 69vh;
    height: auto;
  }

  .cloud-services-cards {
    width: 350px;
  }

  .cloud-services-card {
    height: auto;
    width: 80.3vw;
  }

  .cloud-services-card .card-content {
    width: 76.4vw;
    height: auto;
  }

  .cloud-services-card .card-content .card-container {
    width: 70vw;
    height: auto;
    padding: 0;
    margin: 0 auto;
    gap: 20px;
  }
  
 .cloud-services .cloud-services-card img {
  width: 100%;
  height: 180px;
}
  
  .cloud-services-cards-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

 .cloud-services-cards-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

  #cloud-service-card-2 .card-content {
   width: 76.4vw;
   height: auto;
  }

  #cloud-service-card-2 .card-container {
    height: auto;
  }

  #cloud-service-card-3 {
   height: auto;
   width: 80.3vw;
  }

  #cloud-service-card-3 .card-content {
    height: auto;
  }
  #cloud-service-card-3 .card-content .card-container {
    width: 286px;
    height: auto;
  }

  #cloud-service-card-4 {
    height: auto;
    width: 80.3vw;
  }
  #cloud-service-card-4 .card-content {
    height: auto;
  }
  #cloud-service-card-4 .card-content .card-container {
    width: 286px;
    height: auto;
  }

  /* best-practices */
  .best-practices {
    height: auto;
    padding: 40px;
  }

  .best-practices .container {
    gap: 32px;
    width: 80vw;
    height: auto;
  }

  .best-practices-cards {
    height: auto;
    gap: 24px;
  }

  .best-practices-card {
    width: 72vw;
    height: auto;

    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 16px;
  }

  .best-card-heading {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: flex-start;
    padding: 0px;
    gap: 4px;

    width: 72vw;
    height: auto;
  }

  .best-card-heading h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
  }
  .best-card-1 .best-card-heading,
  .best-card-2 .best-card-heading,
  .best-card-3 .best-card-heading,
  .best-card-4 .best-card-heading
  {
    width: 72vw;
    height: auto;
  }

  .best-card-1 .best-card-heading h4 {
    height: auto;
  }

  .best-card-heading h4 span::after {
    content: "";
    display: block;
  }

  #best-card-6 .best-card-heading {
    height: auto;
  }
  #best-card-6 .best-card-heading h4 {
    height: auto;
  }

  /* connect section */
  .connect {
    padding: 40px;
  }

  .connect .container {
     height: auto;
     width: 80vw;
  }

  .connect-image {
    background-position: center !important;
    height: 33vh !important ;
    width: 85vw !important;
  }

  .connect .contents {
    gap: 40px;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .connect .contents .contents-row-1 {
    height: auto;
    gap: 20px;
  }

  .connect .contents .contents-row-1 h3 {
    font-size: 24px;
  }

  .connect .contents .contents-row-1 ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .connect .contents .contents-row-1 ol li {
    font-size: 16px;
    line-height: 140%;
  }
  .connect .contents .contents-row-2 {
    height: auto;
    gap: 56px;
  }

  .connect .contents .contents-row-2 .row-2-contact {
    height: auto;
  }

  .connect .contents .contents-row-2 .row-2-contact .lets-connect {
    width: 201.55999755859375px;
  }

  .lets-connect h4 {
    width: 164px;

    font-size: 24px;
    line-height: 32px;
  }

  .row-2-contact p {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
  }

  /* expertise */
  .expertise {
    height: auto;
    padding: 40px;
  }
  .expertise .container {
    padding: 0;
    height: auto;
    width: 80vw;
    gap: 24px;
  }

  .expertise-heading {
    height: auto;
  }

  .expertise-heading h3 {
    height: auto;
  }

  .expertise-cards {
    padding: 0px;
    gap: 24px;
    height: auto;
    width: 80vw !important ;
  }

  .expertise-card {
    padding: 24px 16px 80px;
    gap: 4px;
    height: auto;
    width: 72vw;
    z-index: 0; /* Keeps the background layer behind */
  }

  .expertise-card-content {
    width: 65vw;
    height: auto;
    padding: 25px 12px;
    gap: 8px;

  }

  .expertise-card-content p {
    width: 65vw;
    height: auto;
  }

  .expertise-card-content h3 {
    font-weight: 500;
    font-size: 21px;
    line-height: 32px;
}

.expertise-card-content p {
    height: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  
}

@media (max-width: 320px) {
	.hero-content h1 {
    font-size: 26px;
    width: 266px;
   }
	
}

@media only screen and (min-width: 1750px) {
    .hero {
    padding: 200px 0px;
}
}

@media only screen and (min-width: 1000px) {
.best-card-heading-dev {
    margin-bottom: 31px;
}
}
