@font-face {
  font-family: "Futura Book";
  src: url("/static/fonts/FuturaBook/Futura Book Regular.otf");
}
@font-face {
  font-family: "Redwing";
  src: url("/static/fonts/Redwing/Redwing-Medium.otf");
}
@font-face {
  font-family: "Redwing light";
  src: url("/static/fonts/Redwing/Redwing-Light.otf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Futura Book", sans-serif;
  color: #3d3d3d;
  font-size: 20px;
  background-color: white;
}

.heading {
  font-size: 45px;
  font-weight: bold;
  font-family: "Redwing", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Redwing light";
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #3d3d3d;
  cursor: pointer;
}

li a {
  color: white;
  text-transform: capitalize;
}

input,
textarea {
  padding: 17px 35px;
  border-radius: 2px;
  transition: linear 0.3s;
}

img {
  width: 100%;
}

button {
  cursor: pointer;
  padding: 15px 35px;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: linear 0.2s;
  font-family: "Futura Book", sans-serif;
  font-size: 18PX;
}

.icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2d7c;
  color: white;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  padding: 0;
  margin: auto;
}

.btn-white {
  background-color: white;
  color: #2A2D7C;
  border: 1px solid white;
}
.btn-white:hover {
  background-color: transparent;
  color: white;
}

.btn-blue {
  background-color: #2A2D7C;
  color: white;
}
.btn-blue:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-blue-outline {
  color: #2A2D7C;
  border: 2px solid #2A2D7C;
  background-color: transparent;
}
.btn-blue-outline:hover {
  background-color: #2A2D7C;
  color: white;
}

.sub-heading {
  font-size: 16px;
  font-weight: lighter;
  text-transform: uppercase;
}

.page-intro {
  color: white;
  background: linear-gradient(127.31deg, rgba(0, 0, 0, 0.68) 44.53%, rgba(0, 0, 0, 0) 83.52%), url("/static/img/office.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  padding: 100px 0;
}
.page-intro .container {
  padding-top: 100px;
  display: grid;
  gap: 24px;
}
.page-intro .container .breadchrums {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-intro .container .breadchrums a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: underline;
}
.page-intro .container .breadchrums a .prev-page {
  text-decoration: underline;
}
.page-intro .container .page-summary {
  margin-right: 40%;
}

.row {
  display: flex;
  align-items: center;
}
.row .col {
  width: 50%;
}

.section-intro {
  width: 60%;
}/*# sourceMappingURL=main.css.map */