/* 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;
    /* box-sizing: border-box; */
  }
  
 html, body {
    font-family: "Graphik";
    font-style: normal;
    line-height: 1.6;
    width: 100vw;
    overflow-x: hidden;
}
  

  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:30px 0px;
    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: auto;
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
    /* or 45px */
  
    color: #eeeeee;
  }
  
  .hero-content h1 span::after {
    content: "";
    display: block;
  }
  
  /* intro section*/
  .intro {
    background: #c6edff;
    padding-top:75px;
	padding-bottom:75px;  
  }
  .intro .container {
    gap: 24px;
  }
  
  .intro-contents {
    padding: 4px;
    gap: 4px;
    color: #00293b;
  }
  
  .intro-contents h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 48px;
    letter-spacing: 0%;
  }
  
  .intro-contents ul {
    list-style-type: disc;
    margin-left: 40px;
  }
  .intro-contents li {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
  }
  .intro-background {
    background: #d9d9d9;
    background-size: cover;
  }
  
  /* offerings section */
  .offerings {
    background: linear-gradient(360deg, #0066cc 0%, #00293b 100%);
	padding-top:75px;
	padding-bottom:75px;
  }
  
  .offerings .container {
    gap: 24px;
    padding: 0px;
  }
  
  .offerings-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px;
    gap: 4px;
    height: 88px;
  }
  
  .offerings-heading h3 {
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 25%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
  
    color: #ffffff;
  }
  
  .offerings-cards {
    gap: 24px 56px;
  }
  
 
  
  .offerings-card-image {
    width: 200px;
    height: 169px;
    background: #c4c4c4;
  }
  
  .offerings-card-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
    padding: 0px;
    gap: 20px;
  
    width: 390px;
    height: auto;
  }
  
  .offerings-card-contents p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #ffffff;
  }
  .offerings-card-bar {
    height: 0.5px;           
    background-color: white;   
    margin-top: 8px;           
    width: 100%; 
  }
  
  /* case-studies section */
  .case-studies {
    gap: 4px;
    background: #ffffff;
	padding-top:75px;
	padding-bottom:75px;
  }
  
  .case-studies .container {
    padding: 0px;
    gap: 24px;
 }
  
  .case-studies-heading {
    padding: 4px;
    gap: 4px;
  }
  
  .case-studies-heading h2 {
    height: 71px;
  
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
  
    color: #00293b;
    vertical-align: middle;
  }
  
  .case-studies-background {
    width: 1300px;
    height: 218px;
  
    background: #c4c4c4;
  }
  
  .case-studies-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .case-studies-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    padding: 40px 8px;
    gap: 4px;
    height: 170px;
    background: #c6edff;
  }
  
  .case-studies-card-container {
    gap: 4px;
    padding: 2px 48px;
  }
  
  .case-studies-card p {
    height: auto;
  
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    /* or 133% */
  
    color: #0066cc;
  }
@media only screen and (min-width: 1750px) {
    .hero {
    padding: 230px 0px;
}
}



/*Added on 29th July*/
@media only screen and (min-width: 768px) {
	
	.offerings .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  padding: 0px;
  height: 860px;
}
	.offerings-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: flex-start;
  padding: 0px;
  gap: 32px;
  padding-top:25px;
  height: 169px;
}

}

@media only screen and (max-width: 768px) {
	
	.offerings
 {
    padding-top: 85px;
    padding-bottom: 85px;

}
}

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

@media (max-width: 430px) {
    #span-1 {
      display: none;
    }
	
	.case-studies-card
	{
		height:auto;
	}
  .container {
    width: 350px !important;
    max-width: 430px !important;
    /* padding: 0px; */
	}
   .breadcrumb {
        
        flex-direction: column !important;
        width: 244px;
       
    }
	
	    .offerings-card-image {
        width: auto;
    }


	.breadcrumb #span-2{
        font-size: 16px;
        line-height: 32px;
}
	.offerings-card-contents 
	{
		width: auto;
		padding-top: 10px;
	}

.offerings-card-bar {
    margin: 0px 40px 20px 0px;
}
	.card-container-app-mob
	{
	padding-top:22px;
	}
	.case-studies-card p {
        font-size: 16px !important;
line-height: 27px !important;

}
}

@media (max-width: 320px){
  .container {
    width: 320px !important;

	}
.hero-content h1 {
    
    width: 320px;
    font-weight: 600;
    font-size: 21px;
    line-height: 134%;
    
}
.intro-contents li {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    width: 267px;   
    text-align: left; 
}
	.offerings-card-image{
          width: 290px;
}
}