/* 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; */
}

body {
  font-family: "Graphik";
  font-style: normal;

  line-height: 1.6;
  overflow-x: hidden;
}


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

ul {
  list-style: none;
}

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

/* Hero Section */
.hero {
	background-size: cover;
	background-position: center;
	color: #eeeeee;
	padding: 166px 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 {
  padding: 104px 0 80px;

  /* height: 643px; */
  color: #00293b;
}
.intro .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 23px;

  height: 298px;
}

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

.intro-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4px;

  height: 232px;
}

.intro-contents p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
}

.intro-contents h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
}

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