* {
  box-sizing: border-box;
}

:root {
  --black-color: #000;
  --white-color: #ffffff;
  --primary-color: #0d42ff;

  --default-color: #212529;
  --heading-color: #001973;
  --hover-color: rgba(255, 200, 0);

  --roboto-font: "Roboto", sans-serif;
  --poppins-font: "Poppins", sans-serif;
  --section-margins: 50px;
  --section-padding: 50px;
  --transition: all 0.4s ease-in-out;
}

@media (min-width:768px) {
  :root {
    --section-margins: 70px;
    --section-padding: 70px;
  }
}

@media (min-width:1200px) {
  :root {
    --section-margins: 100px;
    --section-padding: 100px;
  }
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--roboto-font);
  font-weight: normal;
  color: var(--black-color);
  background: var(--white-color);
  /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0b5798;
}

:focus {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

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

iframe {
  max-width: 100%;
}

/**
  * Typography
  */

/*
  - Please set up line-heights in ems
  - Set up typography styling based on styles found in .xd file under Assets > Character Styles
  */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--poppins-font);
}

h1 {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
    color: var(--heading-color);
}

h4 {}

p {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
  color: var(--black-color);
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

.sub-heading {
  font-size: 12px;
  line-height: 1.5em;
  color: var(--heading-color);
  margin: 6px;
}

ol li,
ul li {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
  color: var(--black-color);
}

@media (min-width: 768px) {
  h1 {}

  h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  h4 {}
}

@media (min-width: 1025px) {
  h1 {}

  h2 {}

  h3 {}

  h4 {}

  p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  p:last-child {
    margin-bottom: 0;
  }

  ol li,
ul li {
  font-size: 18px;
}
}

p,
ul,
ol {}

.page-content ul,
.page-content ol {
  /* fix for bulleted lists not wrapping around images correctly in Wordpress */
  width: auto;
  overflow: hidden;
  padding-left: 15px;
}

.page-content ul {
  list-style-type: none;
}

ol {
  padding-left: 25px;
}

ol li {
  counter-increment: list;
  position: relative;
  list-style-type: none;
}

ol li:before {
  content: counter(list) ".";
  position: absolute;
  left: 0;
}

ul li {}

ul li:before {}

ol {
  padding-left: 25px;
}

ol li {
  counter-increment: list;
  position: relative;
  list-style-type: none;
}

ol li:before {
  content: counter(list) ".";
  position: absolute;
  left: -24px;
}

hr {}

a {
  word-break: break-word;
  /* force link text to overflow when too long for container */
}

a:hover {}

/*------------------------------------*\
      COMPONENTS
  \*------------------------------------*/

/**
   * Utility Margin/Padding Classes
   *
   * TODO: Update the --margins variable in custom-properties.css to match prototypes margins 
   */

/* Used on outer-most section container so section margins collapse */
.section-margins {
  margin-top: var(--section-margins);
  margin-bottom: var(--section-margins);
}

/* Used only for sections with colored backgrounds */
.section-padding {
  padding-top: var(--section-margins);
  padding-bottom: var(--section-margins);
}

/**
  * Clearfix
  * Apply clearing without adding additional markup
  */

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/*--------------------------------------------------------------*\
       OBJECTS
       Objects are independent generic stylibf classes or UI peices.
       All styles for objects should be self contained.
   
       e.g. an object shouldn't rely on trump helpers to apply padding etc.
   \*--------------------------------------------------------------*/

/**
   * Buttons
   */

.btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 14px;
  border: 0;
  border-radius: 10px;
  font-weight: 500;
}

.btn-primary {
  background: var(--heading-color);
  color: var(--white-color);
}

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

.btn+.btn {
  margin-top: 15px;
}

@media (min-width: 600px) {
  .btn+.btn {
    margin-left: 24px;
  margin-top: 0px;
  }
}

/**
   * Icons
   */

@font-face {
  font-family: 'cicps';
  src: url('../icons/cicps.eot?p89gu9');
  src: url('../icons/cicps.eot?p89gu9#iefix') format('embedded-opentype'),
    url('../icons/cicps.ttf?p89gu9') format('truetype'),
    url('../icons/cicps.woff?p89gu9') format('woff'),
    url('../icons/cicps.svg?p89gu9#cicps') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'cicps' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-down-arrow-1:before {
  content: "\e90d";
}

.icon-right-arrow-1:before {
  content: "\e90e";
}

.icon-right-arrow-1-1:before {
  content: "\e90f";
}

.icon-top-arrow-1:before {
  content: "\e910";
}

.icon-arrow-left:before {
  content: "\e900";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-col:before {
  content: "\e902";
}

.icon-down-arrow:before {
  content: "\e903";
}

.icon-email:before {
  content: "\e904";
}

.icon-facebook:before {
  content: "\e905";
}

.icon-fax:before {
  content: "\e906";
}

.icon-instagram:before {
  content: "\e907";
}

.icon-linkedin:before {
  content: "\e908";
}

.icon-linkedin-in:before {
  content: "\e909";
}

.icon-location:before {
  content: "\e90a";
}

.icon-search:before {
  content: "\e90b";
}

.icon-twitter:before {
  content: "\e90c";
}



/**
   * Forms
   */
.form-col {
  display: inline-block;
}

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  /* pointer-events: none; */
}

label {}

select {}

textarea {
  width: 100%;
  padding: 10px;
 --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-height: ;
  --bs-card-bg: var(--bs-body-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
  font-size: 14px;
  color: var(--black-color);
  resize: none;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
  -webkit-appearance: none;
}

input:active,
textarea:active,
select:active,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  /* Removes blue border on focus */
  /* border: 1px solid #ccc; */
  /* TODO: Please add a branded border for active and focus */
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
  width: 100%;
  padding: 10px;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-height: ;
  --bs-card-bg: var(--bs-body-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
  font-size: 14px;
  color: var(--black-color);
}

input {
  outline: none;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: none;
  padding: 0;
}

.bg-gray {
  background: #e5eaf1;
}

.bg-dark-blue {
  background: #0f1b2f;
}

.container-fluid {
  padding: 0 15px;
}

.container {
  max-width: 1320px;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container-fluid {
    padding: 0 22px;
  }

  .container {
    padding: 0 22px;
  }
}

@media (min-width: 1200px) { 

  .btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}