@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap");
.yellow {
  color: #f6cf3d;
}

.blue {
  color: #182a54;
}

.mid-blue {
  color: #1F66AE;
}

.light-blue {
  color: #E2EEF5;
}

.blue-link {
  color: #4981BD;
}

.grey {
  color: #54565B;
}

.bg-grey {
  background-color: #E1E4E7;
  background: linear-gradient(40deg, #f6f7f8 0%, #e1e4e7 100%);
}

.bg-blue {
  background: url("../images/backgrounds/dark-blue-background-with-wave-.jpg") no-repeat #182a54 top right/cover;
  color: #fff;
}

.bg-dark-blue {
  background-color: #182a54;
  color: #fff;
}
.bg-dark-blue .card-link {
  color: #f6cf3d;
}
.bg-dark-blue .card-link.has-arrow {
  color: #f6cf3d;
}

.bg-light-blue {
  background-color: #E2EEF5;
}

.bg-grey-gradient-v {
  background-color: #E1E4E7;
  background: linear-gradient(180deg, #f5f5f7 0%, white 100%);
}

.bg-grey-gradient-diagonal {
  background: linear-gradient(225deg, #e1e4e7 0%, white 100%);
}
.bg-grey-gradient-diagonal:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  width: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.bg-net {
  position: relative;
}
.bg-net:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/backgrounds/light-blue-background-whith-dots-connected.jpg") no-repeat center top/cover;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1;
}
.bg-net > * {
  position: relative;
  z-index: 9;
}

.bg-lines-vertical {
  background: url("../images/backgrounds/large-waves-lines-ver.svg") no-repeat #f9f9f9 top center/cover;
}

.bg-lines-horizontal {
  position: relative;
}
.bg-lines-horizontal:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/backgrounds/large-waves-lines-hor.svg") no-repeat top center/cover;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1;
}
.bg-lines-horizontal > * {
  position: relative;
  z-index: 9;
}

.bg-light-grey-with-horizontal-lines {
  position: relative;
  background-color: #F3F4F5;
  background: linear-gradient(180deg, #f3f4f5 0%, white 100%);
}
.bg-light-grey-with-horizontal-lines:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/backgrounds/large-waves-lines-hor.svg") no-repeat top center;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1;
}
.bg-light-grey-with-horizontal-lines > * {
  position: relative;
  z-index: 9;
}

.bg-vertical-with-radial {
  position: relative;
  background: linear-gradient(180deg, white 0%, #e5e9ec 25%, #e5e9ec 75%, white 100%);
}
.bg-vertical-with-radial:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/backgrounds/large-waves-lines-ver.svg") no-repeat center top/cover;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1;
}
.bg-vertical-with-radial > * {
  position: relative;
  z-index: 9;
}

.bg-dotted-pattern {
  background: url("../images/backgrounds/light-blue-background-whith-dots-connected.jpg") no-repeat center top/cover;
}

.triangle-container {
  min-height: 125px;
}
.triangle-container.is-static {
  position: relative;
  min-height: 60px;
}
.triangle-container.is-static .triangle {
  width: 30px;
  height: 30px;
  border-bottom: solid 15px #f6cf3d;
  border-right: solid 15px #f6cf3d;
  box-sizing: border-box;
  color: #fff;
  border-left: solid 15px transparent;
  border-top: solid 15px transparent;
}
.triangle-container:not(.is-static) .triangle {
  border-color: transparent transparent transparent #f6cf3d;
  border-style: solid;
  border-width: 0px 70px 70px 70px;
  height: 0px;
  width: 0px;
  transition: all 0.5s ease-in-out;
}
.triangle-container:not(.is-static) .triangle:hover {
  transform-origin: top left;
  opacity: 0.5;
  border-width: 0px 125px 125px 125px;
}

@media (max-width: 767px) {
  .bg-blue {
    background-position: top center;
  }
}
html {
  scroll-behavior: smooth;
}

:target:before {
  content: "";
  display: block;
  height: 140px;
  margin: -140px 0 0;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  padding-top: 100px;
  color: #54565B;
}

main > *:first-child {
  padding-top: 60px;
}

h1,
.h1 {
  font-size: 42px;
  line-height: 46px;
  font-weight: 700;
  color: #182a54;
}

h2,
.h2 {
  color: #182a54;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}

h3,
.h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #4981BD;
  color: #182a54;
  font-weight: bold;
}

.font-weight-normal {
  font-weight: normal !important;
}

.blockquote {
  position: relative;
  display: flex;
  font-size: 22px;
  line-height: 29px;
  color: #182A54;
  font-weight: bold;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='77.042' height='77.042'%3E%3Cpath data-name='Path 236' d='M0 77.042V0h77.042Z' fill='%23f6cf3d'/%3E%3Cpath data-name='Path 391' d='M22.923 43.701c3.055 0 5.2-2.145 5.2-5.525a4.92 4.92 0 0 0-5.2-4.94 1.8 1.8 0 0 0-.585.065c0-3.77 1.95-6.3 5.98-8.19l-2.21-4.355c-6.435 3.12-9.555 7.93-9.555 14.17 0 5.59 2.21 8.775 6.37 8.775Zm15.86 0c3.055 0 5.2-2.145 5.2-5.525a4.92 4.92 0 0 0-5.2-4.94 1.8 1.8 0 0 0-.585.065c0-3.77 1.95-6.3 5.98-8.19l-2.21-4.355c-6.435 3.12-9.555 7.93-9.555 14.17 0 5.59 2.21 8.775 6.37 8.775Z' fill='%23182a54'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top left;
  padding-top: 100px;
  margin: 60px 0px 20px;
}
.blockquote.--tall {
  padding-left: 0;
  padding-top: 110px;
}

.title.has-triangle-line-h {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.title.has-triangle-line-h span {
  flex-grow: 1;
  flex-shrink: 0;
  flex-shrink: 1;
  flex-grow: 0;
}
.title.has-triangle-line-h:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.664' height='408.664'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h408.664v29.664H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='rotate(90 14.832 14.832)' clip-path='url(%23a)' style='mix-blend-mode:multiply;isolation:isolate'%3E%3Cpath data-name='Path 1171' d='M12.752.307v12.752H0ZM41.752.307v12.752H29ZM70.752.307v12.752H58ZM99.752.307v12.752H87ZM128.752.307v12.752H116ZM157.752.307v12.752H145ZM186.752.307v12.752H174ZM215.752.307v12.752H203ZM244.752.307v12.752H232ZM273.752.307v12.752H261ZM302.752.307v12.752H290ZM331.752.307v12.752H319ZM360.752.307v12.752H348ZM389.752.307v12.752H377ZM418.752.307v12.752H406Z' fill='%23f6cf3d'/%3E%3C/g%3E%3C/svg%3E") repeat-x top left;
  z-index: 9;
  display: block;
  height: 20px;
  width: 100%;
  transform: rotate(0deg);
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 51%;
  min-width: 41%;
  width: auto;
}
.title.has-bottom-triangle-line-h:after {
  content: "";
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.664' height='408.664'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h408.664v29.664H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='rotate(90 14.832 14.832)' clip-path='url(%23a)' style='mix-blend-mode:multiply;isolation:isolate'%3E%3Cpath data-name='Path 1171' d='M12.752.307v12.752H0ZM41.752.307v12.752H29ZM70.752.307v12.752H58ZM99.752.307v12.752H87ZM128.752.307v12.752H116ZM157.752.307v12.752H145ZM186.752.307v12.752H174ZM215.752.307v12.752H203ZM244.752.307v12.752H232ZM273.752.307v12.752H261ZM302.752.307v12.752H290ZM331.752.307v12.752H319ZM360.752.307v12.752H348ZM389.752.307v12.752H377ZM418.752.307v12.752H406Z' fill='%23f6cf3d'/%3E%3C/g%3E%3C/svg%3E") repeat-x top center;
  height: 20px;
  width: 70%;
  margin: 20px auto;
}
.title.is-left:after {
  margin-left: 0;
}

.has-triangle-line-h {
  /*
  	display: flex;
  	align-items: baseline;
  */
}
.has-triangle-line-h:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.664' height='408.664'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h408.664v29.664H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='rotate(90 14.832 14.832)' clip-path='url(%23a)' style='mix-blend-mode:multiply;isolation:isolate'%3E%3Cpath data-name='Path 1171' d='M12.752.307v12.752H0ZM41.752.307v12.752H29ZM70.752.307v12.752H58ZM99.752.307v12.752H87ZM128.752.307v12.752H116ZM157.752.307v12.752H145ZM186.752.307v12.752H174ZM215.752.307v12.752H203ZM244.752.307v12.752H232ZM273.752.307v12.752H261ZM302.752.307v12.752H290ZM331.752.307v12.752H319ZM360.752.307v12.752H348ZM389.752.307v12.752H377ZM418.752.307v12.752H406Z' fill='%23f6cf3d'/%3E%3C/g%3E%3C/svg%3E") repeat-x top left;
  z-index: 9;
  display: block;
  height: 20px;
  width: 100%;
  transform: rotate(0deg);
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 51%;
  min-width: 41%;
  width: auto;
}

.has-triangle-line-h-full {
  display: flex;
  align-items: flex-end;
}
.has-triangle-line-h-full:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.664' height='408.664'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h408.664v29.664H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='rotate(90 14.832 14.832)' clip-path='url(%23a)' style='mix-blend-mode:multiply;isolation:isolate'%3E%3Cpath data-name='Path 1171' d='M12.752.307v12.752H0ZM41.752.307v12.752H29ZM70.752.307v12.752H58ZM99.752.307v12.752H87ZM128.752.307v12.752H116ZM157.752.307v12.752H145ZM186.752.307v12.752H174ZM215.752.307v12.752H203ZM244.752.307v12.752H232ZM273.752.307v12.752H261ZM302.752.307v12.752H290ZM331.752.307v12.752H319ZM360.752.307v12.752H348ZM389.752.307v12.752H377ZM418.752.307v12.752H406Z' fill='%23f6cf3d'/%3E%3C/g%3E%3C/svg%3E") repeat-x top left;
  z-index: 9;
  display: block;
  height: 20px;
  width: 100%;
  transform: rotate(0deg);
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: 40px;
  margin-right: auto;
  min-width: 41%;
  width: auto;
}

/*
a {
	color: $dcm-blue;
}
*/
.no-row-reverse {
  flex-direction: row !important;
}

@media (max-width: 767px) {
  .has-triangle-line-h {
    display: block;
    width: auto;
  }
  .has-triangle-line-h:after {
    max-width: none;
    margin-left: 0;
    width: auto !important;
  }

  .title.has-triangle-line-h {
    display: block;
  }
  .title.has-triangle-line-h:after {
    max-width: none;
    margin-left: 0;
    background-position: top left -12px;
    margin-top: 12px;
  }
}
@media (min-width: 768px) {
  h1,
.h1 {
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -0.6px;
  }

  h2,
.h2 {
    font-size: 36px;
    line-height: 40px;
  }

  h3,
.h3 {
    font-size: 26px;
    line-height: 30px;
  }

  .blockquote {
    padding-top: 0;
    padding-left: 100px;
  }
}
.navbar.bg-light {
  background-color: #fff !important;
}
.navbar .dropdown-toggle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.317' height='8.317'%3E%3Cpath data-name='Path 560' d='M8.317 0v8.317H0Z' fill='%23ee8820'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  display: inline-block;
  height: 8px;
  width: 8px;
  vertical-align: baseline;
  transition: transform 0.25s ease-in-out;
}
.navbar .dropdown-toggle.show:after {
  transform: rotate(45deg);
}
.navbar .nav-link {
  color: #182a54 !important;
}
.navbar .nav-link.active {
  font-weight: bold;
}

.nav-link {
  font-weight: normal;
}
.nav-link.icon--padlock {
  display: inline-flex;
  align-items: center;
}
.nav-link.icon--padlock:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15.75'%3E%3Cpath data-name='Icon material-lock-outline' d='M6 12a1.5 1.5 0 1 0-1.5-1.5A1.5 1.5 0 0 0 6 12Zm4.5-6.75h-.75v-1.5a3.75 3.75 0 0 0-7.5 0v1.5H1.5A1.5 1.5 0 0 0 0 6.75v7.5a1.5 1.5 0 0 0 1.5 1.5h9a1.5 1.5 0 0 0 1.5-1.5v-7.5a1.5 1.5 0 0 0-1.5-1.5Zm-6.825-1.5a2.325 2.325 0 1 1 4.65 0v1.5h-4.65Zm6.825 10.5h-9v-7.5h9Z' fill='%23182a54'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 12px;
  width: 16px;
}

.header-search-container {
  background-color: #fff;
  border: 1px solid #93C1DB;
  width: 100%;
  padding-right: 10px;
}
.header-search-container form {
  display: flex;
  align-items: center;
}
.header-search-container .form-control {
  background-color: transparent;
  border: 0;
}
.header-search-container .header-search-submit {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.601' height='18.605'%3E%3Cpath data-name='Icon ionic-ios-search' d='m18.382 17.259-5.173-5.222a7.372 7.372 0 1 0-1.119 1.133l5.139 5.188a.8.8 0 0 0 1.124.029.8.8 0 0 0 .029-1.128ZM7.416 13.233a5.821 5.821 0 1 1 4.117-1.705 5.785 5.785 0 0 1-4.117 1.705Z' fill='%23002242'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 19px;
  width: 19px;
}

/*
@media (max-width: 991px) and (max-height: 720px) {
	.navbar {
		.navbar-collapse {
			&.show {
				overflow: auto;
				height: 100vh;
			}
		}
	}
}
*/
.client-portal-menu {
  right: 0 !important;
}

@media (max-width: 991px) {
  .navbar {
    background: transparent linear-gradient(179deg, #F2F5F7 0%, #F2F5F7 58%, #E2EEF5 100%) 0% 0% no-repeat padding-box;
  }
  .navbar .navbar-collapse.show {
    overflow: auto;
    height: 100vh;
    padding-bottom: 150px;
  }
  .navbar .navbar-toggler {
    border-color: transparent;
  }
  .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2824, 42, 84, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar .navbar-toggler:focus-visible {
    box-shadow: 0 0 0 0.25rem;
  }
  .navbar .nav-item {
    border-bottom: 1px solid #A0C8DF;
  }
  .navbar .nav-item:last-child {
    border-color: transparent;
  }
  .navbar .nav-link {
    color: #182a54;
    font-weight: normal;
  }
  .navbar .header-form-search {
    width: 100%;
  }
  .navbar .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .navbar .dropdown-menu {
    background-color: transparent;
    border: 0;
    margin-top: 0;
    padding-top: 0;
  }
  .navbar .dropdown-item {
    color: #182A54;
    background-color: transparent;
  }
  .navbar .dropdown-item.active {
    background-color: transparent;
    font-weight: bold;
  }
  .navbar .dropdown-item:focus {
    background-color: transparent;
  }
  .navbar .dropdown-item:active {
    background-color: transparent;
  }
  .navbar .btn {
    display: inline-block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 992px) {
  .navbar-nav--top {
    margin-right: 8px;
  }
  .navbar-nav--top .nav-item:after {
    content: "|";
  }
  .navbar-nav--top .nav-item .nav-link {
    display: inline-flex;
    align-items: baseline;
  }

  .navbar-nav .nav-item a:hover {
    color: #1f66ae;
  }
  .navbar-nav .nav-link {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .navbar-nav .nav-link.show {
    background-color: #F2F5F7;
  }
  .navbar-nav .dropdown-menu {
    background: transparent linear-gradient(179deg, #F2F5F7 0%, #F2F5F7 58%, #E2EEF5 100%) 0% 0% no-repeat padding-box;
    border: 0;
    margin-top: -0.1rem;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
  }
  .navbar-nav .dropdown-menu .dropdown-item.active {
    color: #182a54 !important;
    font-weight: bold;
    background-color: transparent;
  }

  .header-search-container {
    background-color: #F2F5F7;
    border-color: #F2F5F7;
    width: auto;
    padding: 0px 5px;
  }
}
@media (min-width: 1600px) {
  .client-portal-menu {
    right: auto !important;
  }
}
/* ============ desktop view ============ */
/*
@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{   }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}
*/
/* ============ desktop view .end// ============ */
/* Icon 1 */
.animated-icon1, .animated-icon2, .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #e65100;
}

.animated-icon2 span {
  background: #182a54;
}

.animated-icon3 span {
  background: #f3e5f5;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Icon 3*/
.animated-icon2 span:nth-child(1) {
  top: 0px;
}

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

/* Icon 4 */
.animated-icon3 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 8px;
}

.animated-icon3.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 8px;
}

.site-footer {
  padding: 40px 0px;
}

.footer-details-container {
  text-align: center;
}

.footer-phone-numbers {
  display: flex;
  justify-content: center;
}
.footer-phone-numbers p {
  display: inline-block;
  position: relative;
}
.footer-phone-numbers p:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -8px;
  display: block;
  height: 12px;
  width: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M3.218 6.924a13.465 13.465 0 0 0 5.858 5.858l1.956-1.956a.884.884 0 0 1 .907-.213 10.14 10.14 0 0 0 3.173.507.892.892 0 0 1 .889.889v3.1a.892.892 0 0 1-.889.889A15.11 15.11 0 0 1 0 .889.892.892 0 0 1 .889 0H4a.892.892 0 0 1 .889.889A10.1 10.1 0 0 0 5.4 4.062a.892.892 0 0 1-.222.907l-1.96 1.955Z' fill='%23f6cf3d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-email {
  display: flex;
  justify-content: center;
}
.footer-email p {
  display: inline-block;
  position: relative;
}
.footer-email p:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -22px;
  display: block;
  height: 15px;
  width: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.086' height='16.069'%3E%3Cpath d='M18.077 0H2.009a2.006 2.006 0 0 0-2 2.009L0 14.06a2.014 2.014 0 0 0 2.009 2.009h16.068a2.014 2.014 0 0 0 2.009-2.009V2.009A2.014 2.014 0 0 0 18.077 0Zm0 14.06H2.009V4.017l8.034 5.021 8.034-5.021Zm-8.034-7.03L2.009 2.009h16.068Z' fill='%23f6cf3d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
}

.footer-main-links {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}
.footer-main-links li {
  margin-right: 16px;
}
.footer-main-links li:last-child {
  margin-right: 0;
}

.footer-logos {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
.footer-logos li {
  margin-right: 32px;
}
.footer-logos li:last-child {
  margin-right: 0;
}

.footer-main-links-container {
  display: block;
  text-align: center;
}

.footer-legal-links-container {
  text-align: center;
}
.footer-legal-links-container .footer-legal-links {
  display: block;
  margin-top: 20px;
}

@media (min-width: 500px) {
  .footer-logos {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .footer-content-container {
    padding-top: 60px;
  }

  .footer-details-container {
    text-align: left;
  }
  .footer-details-container .footer-phone-numbers {
    justify-content: flex-start;
    padding-left: 24px;
  }
  .footer-details-container .footer-phone-numbers p:before {
    left: -24px;
  }
  .footer-details-container .footer-email {
    justify-content: flex-start;
    padding-left: 24px;
  }
  .footer-details-container .footer-email p:before {
    left: -24px;
  }

  .footer-main-links-container {
    text-align: left;
  }
  .footer-main-links-container .footer-main-links {
    justify-content: flex-start;
  }
  .footer-main-links-container .footer-logos {
    justify-content: flex-start;
  }
  .footer-main-links-container .footer-logos li {
    margin-left: 16px;
  }

  .footer-legal-links-container {
    text-align: left;
  }
  .footer-legal-links-container .footer-legal-copyright {
    margin-right: 20px;
  }
  .footer-legal-links-container .footer-legal-links {
    display: inline-block;
    margin-top: 0;
    margin-left: 0px;
  }
}
@media (min-width: 992px) {
  .footer-main-links-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.list-unstyled .list-unstyled {
  padding-left: 2rem;
}

.ul-checklist {
  padding-left: 1rem;
}
.ul-checklist li {
  position: relative;
  list-style: none;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
  color: #182a54;
}
.ul-checklist li:before {
  content: "";
  display: block;
  height: 22px;
  width: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.25' height='29.25'%3E%3Cpath data-name='Icon ionic-md-checkmark-circle-outline' d='m8.625 11.846-2.044 2.048 6.581 6.581L27.788 5.85 25.74 3.803l-12.578 12.5Zm17.7 2.779a11.65 11.65 0 1 1-8.482-11.261l2.267-2.267A13.6 13.6 0 0 0 14.625 0 14.625 14.625 0 1 0 29.25 14.625Z' fill='%231f66ae'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
}

@media (min-width: 768px) {
  .columns-md-2 {
    columns: 2;
  }
}
.form-control {
  border-radius: 0;
  border-color: #93C1DB;
}

.wpcf7-form .form-control {
  padding: 0.75rem;
}
.wpcf7-form .form-check > span {
  display: block;
  margin-bottom: 4px !important;
}
.wpcf7-form .form-check > span:last-child {
  margin-bottom: 0 !important;
}
.wpcf7-form .form-check > span input {
  margin-right: 8px;
}
.wpcf7-form .dropdown {
  display: block;
}
.wpcf7-form .dropdown select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.5 43.5' style='enable-background:new 0 0 43.5 43.5' xml:space='preserve'%3E%3Cpath d='M0 21.8c0 12 9.7 21.8 21.8 21.8s21.8-9.7 21.8-21.8C43.5 9.7 33.8 0 21.8 0 9.7 0 0 9.7 0 21.8zm11.7-3.4h20.1l-10 10-10.1-10z' style='opacity:.997;fill:%231f66ae;enable-background:new'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-position: center right 10px;
  background-repeat: no-repeat;
}

.icon--play {
  display: inline-flex;
  align-items: center;
}
.icon--play:before {
  content: "";
  display: block;
  height: 28px;
  width: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.702' height='31.702'%3E%3Cg data-name='Icon feather-play-circle' fill='none' stroke='%231f66ae' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'%3E%3Cpath data-name='Path 3516' d='M30.2 15.851A14.351 14.351 0 1 1 15.851 1.5 14.351 14.351 0 0 1 30.2 15.851Z'/%3E%3Cpath data-name='Path 3517' d='m12.981 10.111 8.611 5.74-8.611 5.741Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.icon--external {
  display: inline-flex;
  align-items: center;
}
.icon--external:before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.507' height='22.507'%3E%3Cg data-name='Icon feather-external-link' fill='none' stroke='%231f66ae' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath data-name='Path 4064' d='M17.744 12.577v6.7a2.233 2.233 0 0 1-2.233 2.233H3.233A2.233 2.233 0 0 1 1 19.275V6.996a2.233 2.233 0 0 1 2.233-2.233h6.7'/%3E%3Cpath data-name='Path 4065' d='M14.396 1.414h6.7v6.7'/%3E%3Cpath data-name='Path 4066' d='M8.814 13.693 21.093 1.414'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.has-hr-vertical-triangles {
  position: relative;
  min-height: 173px;
  background: url("../images/icons/vertical-triangles-12w.png") repeat-y top right;
}

@media (min-width: 1100px) {
  .card.has-hr-vertical-triangles-left {
    position: relative;
    background: none;
  }
  .card.has-hr-vertical-triangles-left:before {
    content: "";
    position: absolute;
    top: -80px;
    left: -60px;
    width: 40px;
    display: block;
    height: 100%;
    background: url("../images/icons/vertical-triangles-12w.png") repeat-y top left;
  }
  .card.has-hr-vertical-triangles-right {
    position: relative;
    background: none;
  }
  .card.has-hr-vertical-triangles-right:before {
    content: "";
    position: absolute;
    top: 60px;
    right: -60px;
    width: 40px;
    display: block;
    height: 100%;
    background: url("../images/icons/vertical-triangles-12w.png") repeat-y top left;
  }

  .row.has-hr-vertical-triangles-left {
    position: relative;
    background: none;
  }
  .row.has-hr-vertical-triangles-left:before {
    content: "";
    position: absolute;
    top: -80px;
    left: -60px;
    width: 40px;
    display: block;
    height: 100%;
    background: url("../images/icons/vertical-triangles-12w.png") repeat-y bottom left;
  }

  .has-hr-vertical-triangles-right {
    position: relative;
    background: none;
    background: url("../images/icons/vertical-triangles-12w.png") repeat-y top right;
  }
}
.navbar-nav--top {
  font-size: 14px;
}

.header-logo {
  height: auto;
  max-width: 150px;
}

#site-footer {
  background: #182a54 0% 0% no-repeat padding-box;
  color: #fff;
}
#site-footer a {
  color: #f6cf3d;
}

.footer-logo {
  display: block;
  height: auto;
  max-width: 150px;
}

.site-footer .wpcf7-not-valid-tip {
  color: #FF9E9E;
}

.hero .category {
  font-size: 26px;
  line-height: 30px;
  color: #1f66ae;
  font-weight: bold;
  letter-spacing: -0.26px;
}
.hero .title {
  margin-bottom: 40px;
}
.hero .blurb {
  font-size: 22px;
  line-height: 28px;
  color: #54565b;
}
.hero .blurb.--big {
  font-size: 42px;
  line-height: 62px;
  color: #182a54;
}
.hero .intro {
  font-size: 22px;
  line-height: 28px;
  color: #54565b;
}
.hero .text-link {
  font-weight: bold;
}
.hero .button-link {
  margin-top: 20px;
}

.--clipped-top-left {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 70px, 70px 0);
}

.--clipped-bottom-right {
  clip-path: polygon(100% 0, 100% 70%, 70% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% calc(100% - 200px), calc(100% - 200px) 100%, 0 100%, 0 0);
}

.hero-image-container {
  position: relative;
  padding: 30px 30px 0px;
  padding: 0px 0px 0px 0px;
  overflow: hidden;
}
.hero-image-container .hero-image-background {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}
.hero-image-container .hero-image-background img {
  height: auto;
  width: 100%;
}
.hero-image-container .card-image {
  padding: 30px 30px 0px 0px;
}
.hero-image-container .card-image img:hover {
  transform: scale(1.18);
}
.hero-image-container.--home .hero-image-background {
  position: absolute;
  top: 0;
  left: 20px;
  right: auto;
  bottom: auto;
  text-align: left;
}
.hero-image-container.--home .hero-image-background img {
  width: 100%;
  max-width: 60%;
}
.hero-image-container.--home .card-image {
  padding: 30px 0px 30px 0px;
}
.hero-image-container.--home .card-image.is-cropped {
  clip-path: polygon(30% 0, 100% 0, 100% 64%, 72% 100%, 0 100%, 0 35%);
}
.hero-image-container.--home .triangle-container {
  position: absolute;
  bottom: 60px;
  right: 0px;
  transform: rotate(180deg);
  opacity: 0.7;
}
.hero-image-container.--home .triangle-container .triangle {
  border-width: 0px 180px 180px 180px;
}
.hero-image-container.--home .triangle-container .triangle:hover {
  border-width: 0px 200px 200px 200px;
}
.hero-image-container.--full-size-bg .hero-image-background {
  position: relative;
  max-width: 400px;
  margin-left: auto;
}
.hero-image-container.--full-size-bg .hero-image-background img {
  width: 100%;
}
.hero-image-container.--full-size-bg .hero-image-background .hero-image-background {
  padding-left: 40px;
}
.hero-image-container.--full-size-bg .card-image {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60%;
}
.hero-image-container.--full-size-bg .card-image img {
  width: 100%;
}
.hero-image-container.--full-size-bg .triangle-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: rotate(180deg);
  opacity: 0.7;
}
.hero-image-container.--full-size-bg .triangle-container .triangle {
  border-width: 0px 180px 180px 180px;
}
.hero-image-container.--full-size-bg .triangle-container .triangle:hover {
  border-width: 0px 200px 200px 200px;
}
.hero-image-container.--img-top-right .hero-image-background {
  bottom: 0;
  left: 0;
  top: auto;
  right: auto;
  text-align: left;
}
.hero-image-container.--img-top-right .card-image {
  padding: 0px 0px 30px 30px;
}
.hero-image-container.--modal {
  overflow: visible;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.hero-image-container.--modal .hero-image-background {
  bottom: 0px;
  left: 0;
  top: auto;
  right: auto;
  text-align: left;
  max-width: 70%;
}
.hero-image-container.--modal .card-image {
  padding: 0px 0px 30px 30px;
}

@media (max-width: 767px) {
  .hero-image-container.--full-size-bg .card-image {
    top: 0;
    left: 10px;
    width: 85%;
  }
}
@media (min-width: 768px) {
  .hero .category {
    font-size: 26px;
    line-height: 30px;
  }
  .hero .blurb {
    font-size: 22px;
    line-height: 28px;
  }
  .hero .blurb.--big {
    font-size: 60px;
    line-height: 48px;
  }
  .hero.no-image {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-image-container.--full-size-bg .card-image {
    width: 90%;
    top: -15px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .hero-cards-container .card {
    margin-bottom: 40px;
  }
  .hero-cards-container .card:nth-child(odd) .row {
    flex-direction: row-reverse;
  }
}
.horizontal-cards {
  overflow-y: hidden;
  overflow-x: auto;
  display: flex;
  gap: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  width: 100%;
}
.horizontal-cards::-webkit-scrollbar {
  display: none;
}
.horizontal-cards .card {
  min-width: 340px;
}

#horizontal-slider-prev {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  width: 0;
}
#horizontal-slider-prev.disabled {
  opacity: 0.2;
}

#horizontal-slider-next {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  width: 0;
}
#horizontal-slider-next.disabled {
  opacity: 0.2;
}

.leadership-cards .row {
  --bs-gutter-y: 40px;
}

.blue-cards .blue-cards-row {
  --bs-gutter-y: 30px;
}
.blue-cards .card.has-triangle {
  position: relative;
  border-radius: 0;
  border-color: transparent;
}
.blue-cards .card.has-triangle .triangle-container {
  position: absolute;
  bottom: 0px;
  right: 0px;
  transform: rotate(180deg);
}
.blue-cards .card.has-triangle .triangle-container .triangle {
  opacity: 1;
}
.blue-cards .card.has-triangle .card-body {
  height: 400px;
}
.blue-cards .card.has-triangle .card-footer {
  border: 0;
  background-color: transparent;
}
.blue-cards .card.has-triangle .card-footer .team-member .name a {
  color: #f6cf3d;
  z-index: 999;
  position: relative;
}
.blue-cards .card.has-triangle .hover {
  display: none;
  opacity: 0;
}
.blue-cards .card.has-triangle:hover, .blue-cards .card.has-triangle:focus-within {
  background-color: #fff;
  border-color: #f6cf3d;
}
.blue-cards .card.has-triangle:hover .default, .blue-cards .card.has-triangle:focus-within .default {
  display: none;
}
.blue-cards .card.has-triangle:hover .hover, .blue-cards .card.has-triangle:focus-within .hover {
  display: block;
  opacity: 1;
}
.blue-cards .card.has-triangle:hover .card-link.has-arrow, .blue-cards .card.has-triangle:focus-within .card-link.has-arrow {
  color: #182a54;
}
.blue-cards .card.has-triangle:hover .card-footer, .blue-cards .card.has-triangle:focus-within .card-footer {
  color: #182a54;
}
.blue-cards .card.has-triangle:hover .card-footer .team-member .name a, .blue-cards .card.has-triangle:focus-within .card-footer .team-member .name a {
  color: #1F66AE;
}
.blue-cards .card.has-triangle:hover .triangle, .blue-cards .card.has-triangle:focus-within .triangle {
  border-width: 0px 125px 125px 125px;
}

.client-logos {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.client-logos li {
  text-align: center;
  margin: 15px auto;
  padding: 0px 15px;
  width: 50%;
}
.client-logos li:first-child {
  margin-top: 0;
}
.client-logos li:last-child {
  margin-bottom: 0;
}
.client-logos img {
  max-height: 100px;
}

@media (min-width: 768px) {
  .client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .client-logos li {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    width: 33.333333333%;
  }
}
@media (min-width: 992px) {
  .client-logos li {
    width: auto;
  }
}
.marketing-form .content p {
  font-size: 12px;
  line-height: 18px;
}
.marketing-form .content p.large {
  font-size: 18px;
  line-height: 25px;
}
.marketing-form a {
  color: #182a54;
  font-weight: bold;
}

.search-results-container .search-row {
  margin: 20px 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D8E9F2;
}
.search-results-container h3 a {
  color: #54565B;
}
.search-results-container h3 a:hover {
  color: #182a54;
}

.search-categories {
  display: flex;
  flex-wrap: wrap;
}
.search-categories li:after {
  content: "|";
  margin: 0px 10px;
}
.search-categories li:last-child:after {
  display: none;
}
.search-categories li.label {
  margin-right: 30px;
  width: 100%;
}
.search-categories li.label:after {
  display: none;
}
.search-categories a {
  color: #54565B;
  font-weight: normal;
}
.search-categories a.active {
  color: #1F66AE;
  font-weight: bold;
}

.search-input {
  position: relative;
}
.search-input .search-submit {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.601' height='18.605'%3E%3Cpath data-name='Icon ionic-ios-search' d='m18.382 17.259-5.173-5.222a7.372 7.372 0 1 0-1.119 1.133l5.139 5.188a.8.8 0 0 0 1.124.029.8.8 0 0 0 .029-1.128ZM7.416 13.233a5.821 5.821 0 1 1 4.117-1.705 5.785 5.785 0 0 1-4.117 1.705Z' fill='%23002242'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.search-input .search-submit:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.601' height='18.605'%3E%3Cpath data-name='Icon ionic-ios-search' d='m18.382 17.259-5.173-5.222a7.372 7.372 0 1 0-1.119 1.133l5.139 5.188a.8.8 0 0 0 1.124.029.8.8 0 0 0 .029-1.128ZM7.416 13.233a5.821 5.821 0 1 1 4.117-1.705 5.785 5.785 0 0 1-4.117 1.705Z' fill='%231F66AE'/%3E%3C/svg%3E");
}
.search-input .form-control {
  padding-left: 45px;
  min-height: 19px;
}
.search-input.has-button-right .form-control {
  padding-left: 0.75rem;
  padding-right: 45px;
}
.search-input.has-button-right .search-submit {
  left: auto;
  right: 15px;
}

@media (min-width: 576px) {
  .search-categories li.label {
    width: auto;
  }
}
@media (max-width: 575px) {
  .search-results-container h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.btn {
  border-radius: 0;
}
.btn.btn-primary {
  background-color: #f6cf3d;
  border-color: #f6cf3d;
  color: #182a54;
  font-weight: 700;
}
.btn.btn-primary:hover {
  background-color: #F4B334;
}
.btn.btn-bio {
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  font-size: 22px;
  line-height: 32px;
  color: #1F66AE;
  font-weight: bold;
}
.btn.btn-bio:after {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.732' height='12.44'%3E%3Cpath d='m1 12.44 4.306-4.306L0 2.829 2.828 0l5.306 5.306 4.6-4.6V12.44Z' fill='%23ff9e1a'/%3E%3C/svg%3E") no-repeat center center/cover;
  margin-left: 8px;
}
.btn.btn-secondary {
  background-color: #1F66AE;
  border-color: #1F66AE;
  color: #fff;
}

.cards-container > .row {
  --bs-gutter-y: 40px;
}
.cards-container > .container > .row {
  --bs-gutter-y: 40px;
}

.card.--dark {
  background: #182a54 0% 0% no-repeat padding-box;
  color: #fff;
}
.card.--dark .card-title {
  color: #fff;
}
.card.--dark .card-link {
  color: #f6cf3d;
  z-index: 999;
}
.card.is-clipped-bottom-right {
  clip-path: polygon(100% 0, 100% 80%, 85% 100%, 0 100%, 0 0);
}
.card.hero-card .card-link {
  color: #1F66AE;
  font-weight: 700;
}
.card.hero-card.has-triangle-line-h {
  position: relative;
}
.card.hero-card.has-triangle-line-h:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.664' height='408.664'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h408.664v29.664H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='rotate(90 14.832 14.832)' clip-path='url(%23a)' style='mix-blend-mode:multiply;isolation:isolate'%3E%3Cpath data-name='Path 1171' d='M12.752.307v12.752H0ZM41.752.307v12.752H29ZM70.752.307v12.752H58ZM99.752.307v12.752H87ZM128.752.307v12.752H116ZM157.752.307v12.752H145ZM186.752.307v12.752H174ZM215.752.307v12.752H203ZM244.752.307v12.752H232ZM273.752.307v12.752H261ZM302.752.307v12.752H290ZM331.752.307v12.752H319ZM360.752.307v12.752H348ZM389.752.307v12.752H377ZM418.752.307v12.752H406Z' fill='%23f6cf3d'/%3E%3C/g%3E%3C/svg%3E") repeat top left;
  position: absolute;
  top: 75%;
  left: 20%;
  z-index: 9;
  display: block;
  height: 10px;
  width: 500px;
}

.--clipped--top-left-and-bottom-right,
.is-clipped--top-left-and-bottom-right,
.is-cropped {
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
  clip-path: polygon(25% 0, 100% 0, 100% 70%, 75% 100%, 0 100%, 0 30%);
  clip-path: polygon(25% 0, 100% 0, 100% 69%, 77% 100%, 0 100%, 0 30%);
  overflow: hidden;
}
.--clipped--top-left-and-bottom-right img,
.is-clipped--top-left-and-bottom-right img,
.is-cropped img {
  height: auto;
  max-width: 100%;
}

.card-image.is-cropped {
  clip-path: none;
}
.card-image.is-cropped img {
  clip-path: polygon(25% 0, 100% 0, 100% 69%, 77% 100%, 0 100%, 0 30%);
  overflow: hidden;
}

.is-clipped-bottom-right {
  clip-path: polygon(100% 0, 100% calc(100% - 120px), calc(100% - 120px) 100%, 0 100%, 0 0);
}

.has-triangle-bottom-right {
  position: relative;
}
.has-triangle-bottom-right .triangle-container {
  position: absolute;
  bottom: 30px;
  right: 0;
  transform: rotate(180deg);
  z-index: 99;
  opacity: 0.7;
}
.has-triangle-bottom-right .triangle-container .triangle {
  border-width: 0px 180px 180px 180px;
}
.has-triangle-bottom-right .triangle-container .triangle:hover {
  border-width: 0px 200px 200px 200px;
}

.has-triangles-on-the-side {
  background: url("../images/icons/triangle-repeater-x.png") repeat-x bottom 10px left;
}
.has-triangles-on-the-side span {
  display: inline-block;
  background-color: #fff;
  padding: 5px 10px 0px 0px;
}

.card-image {
  overflow: hidden;
}
.card-image img {
  transition: transform 0.25s ease-in-out;
}
.card-image img:hover {
  transform: scale(1.1);
}
.card-image.has-background {
  background: url("../images/chevron-shapes/chevron-shapes4b.png") no-repeat bottom left;
  background-size: 90%;
  padding-bottom: 30px;
  padding-left: 30px;
}

.card-link.has-arrow {
  position: relative;
  font-size: 22px;
  line-height: 32px;
  color: #1F66AE;
  font-weight: bold;
}
.card-link.has-arrow:after {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.732' height='12.44'%3E%3Cpath d='m1 12.44 4.306-4.306L0 2.829 2.828 0l5.306 5.306 4.6-4.6V12.44Z' fill='%23ff9e1a'/%3E%3C/svg%3E") no-repeat center center/cover;
  margin-left: 8px;
}
.card-link.has-back-arrow {
  position: relative;
  font-size: 22px;
  line-height: 32px;
  color: #1F66AE;
  font-weight: bold;
}
.card-link.has-back-arrow:before {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.732' height='12.44'%3E%3Cpath d='m1 12.44 4.306-4.306L0 2.829 2.828 0l5.306 5.306 4.6-4.6V12.44Z' fill='%23ff9e1a'/%3E%3C/svg%3E") no-repeat center center/cover;
  margin-left: 8px;
  transform: rotate(90deg);
  margin-right: 8px;
}

.read {
  font-size: 14px;
  line-height: 20px;
  color: #1D81BF;
  color: #1A75AD;
}

@media (max-width: 767px) {
  .card.hero-card.has-triangle-line-h {
    position: relative;
  }
  .card.hero-card.has-triangle-line-h:after {
    top: 160px;
    left: -20px;
  }
}
@media (min-width: 768px) {
  .card-text.is-tall {
    min-height: 50px;
  }
}
.team-member-card .card-title {
  font-size: 32px;
  line-height: 36px;
  color: #182A54;
}
.team-member-card .card-text {
  font-size: 22px;
  line-height: 34px;
}
.team-member-card .card-link {
  font-weight: bold;
  color: #1F66AE;
}

.expert-card {
  scroll-margin-top: 100px;
}

.team-member-card .card-image.has-background {
  background-size: 80%;
}

@media (max-width: 767px) {
  .team-member-card .card-image.has-background {
    padding-bottom: 15px;
    padding-left: 15px;
    background-size: 80%;
  }
  .team-member-card .job-title {
    display: block;
    padding-left: 32px;
  }
}
@media (min-width: 768px) {
  .team-member-card .card-title {
    font-size: 36px;
    line-height: 40px;
  }
  .team-member-card .job-title:before {
    content: "|";
    display: inline-block;
    margin: 0px 8px;
  }
}
.email-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.email-icon:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.086' height='16.069'%3E%3Cpath d='M18.077 0H2.009a2.006 2.006 0 0 0-2 2.009L0 14.06a2.014 2.014 0 0 0 2.009 2.009h16.068a2.014 2.014 0 0 0 2.009-2.009V2.009A2.014 2.014 0 0 0 18.077 0Zm0 14.06H2.009V4.017l8.034 5.021 8.034-5.021Zm-8.034-7.03L2.009 2.009h16.068Z' fill='%23f6cf3d'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  height: 18px;
  width: 32px;
}
.email-icon.blue-icon:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.086' height='16.069'%3E%3Cpath d='M18.077 0H2.009a2.006 2.006 0 0 0-2 2.009L0 14.06a2.014 2.014 0 0 0 2.009 2.009h16.068a2.014 2.014 0 0 0 2.009-2.009V2.009A2.014 2.014 0 0 0 18.077 0Zm0 14.06H2.009V4.017l8.034 5.021 8.034-5.021Zm-8.034-7.03L2.009 2.009h16.068Z' fill='%23182a54'/%3E%3C/svg%3E");
}

.call-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.call-icon:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M3.218 6.924a13.465 13.465 0 0 0 5.858 5.858l1.956-1.956a.884.884 0 0 1 .907-.213 10.14 10.14 0 0 0 3.173.507.892.892 0 0 1 .889.889v3.1a.892.892 0 0 1-.889.889A15.11 15.11 0 0 1 0 .889.892.892 0 0 1 .889 0H4a.892.892 0 0 1 .889.889A10.1 10.1 0 0 0 5.4 4.062a.892.892 0 0 1-.222.907l-1.96 1.955Z' fill='%23f6cf3d'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  height: 18px;
  width: 32px;
}
.call-icon.blue-icon:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M3.218 6.924a13.465 13.465 0 0 0 5.858 5.858l1.956-1.956a.884.884 0 0 1 .907-.213 10.14 10.14 0 0 0 3.173.507.892.892 0 0 1 .889.889v3.1a.892.892 0 0 1-.889.889A15.11 15.11 0 0 1 0 .889.892.892 0 0 1 .889 0H4a.892.892 0 0 1 .889.889A10.1 10.1 0 0 0 5.4 4.062a.892.892 0 0 1-.222.907l-1.96 1.955Z' fill='%23182A54'/%3E%3C/svg%3E");
}

.is-darkest-blue {
  background: transparent linear-gradient(134deg, #1F66AE 0%, #182A54 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.is-darkest-blue .card-title {
  color: #fff;
}
.is-darkest-blue .card-text {
  color: #fff;
}

.is-darker-blue {
  background: transparent linear-gradient(141deg, #1F66AE 0%, #182A54 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.is-darker-blue .card-title {
  color: #fff;
}
.is-darker-blue .card-text {
  color: #fff;
}

.is-blue {
  background: transparent linear-gradient(139deg, #1D81BF 0%, #034386 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.is-blue .card-title {
  color: #fff;
}
.is-blue .card-text {
  color: #fff;
}

.is-grey {
  background: transparent linear-gradient(140deg, #54565B 0%, #202227 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.is-grey .card-title {
  color: #fff;
}
.is-grey .card-text {
  color: #fff;
}

.tout-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.tout-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tout-card .card-title {
  font-size: 41px;
  line-height: 44px;
}

.staggared-card {
  margin-top: 60px;
}

@media (min-width: 600px) {
  .tout-card .card-title {
    font-size: 60px;
    line-height: 64px;
  }
}
.locations-cards-container .card {
  border: 0;
}
.locations-cards-container .card .card-body .card-title {
  font-size: 22px;
  line-height: 30px;
}
.locations-cards-container .card .card-footer {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.locations-cards-container .card .card-footer .card-link {
  font-weight: bold;
}

@media (max-width: 575px) {
  .success-stories-cards-container .card {
    display: flex;
    flex-direction: row;
  }
  .success-stories-cards-container .card .card-image {
    flex-basis: 35%;
    padding-right: 20px;
  }
  .success-stories-cards-container .card .card-body {
    flex-basis: 60%;
    padding-top: 0;
  }
  .success-stories-cards-container .card .card-title {
    font-size: 20px;
    line-height: 24px;
  }
}
.modal {
  margin: 0;
  padding: 0;
}
.modal .modal-dialog {
  margin: 0;
}
.modal .modal-body {
  min-height: 100vh;
}
.modal .modal-content {
  background: url("../images/backgrounds/large-waves-lines-hor.jpg") no-repeat #FEFEFE center bottom/contain;
  border-radius: 0;
}
.modal .btn-close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.25' height='29.25'%3E%3Cpath d='M14.625 0A14.625 14.625 0 1 0 29.25 14.625 14.623 14.623 0 0 0 14.625 0Zm3.705 19.92-3.705-3.706-3.705 3.705a1.124 1.124 0 1 1-1.589-1.589l3.705-3.705-3.705-3.705a1.124 1.124 0 0 1 1.589-1.589l3.705 3.705 3.705-3.705a1.124 1.124 0 1 1 1.589 1.589l-3.705 3.705 3.705 3.705a1.129 1.129 0 0 1 0 1.589 1.116 1.116 0 0 1-1.589.001Z' fill='%231f66ae'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0 0 0 auto;
  opacity: 1;
}
.modal .btn-close.secondary-close {
  display: inline-flex;
  align-items: center;
  width: auto;
  background: none;
  font-weight: bold;
  color: #1F66AE;
}
.modal .btn-close.secondary-close:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.25' height='29.25'%3E%3Cpath d='M14.625 0A14.625 14.625 0 1 0 29.25 14.625 14.623 14.623 0 0 0 14.625 0Zm3.705 19.92-3.705-3.706-3.705 3.705a1.124 1.124 0 1 1-1.589-1.589l3.705-3.705-3.705-3.705a1.124 1.124 0 0 1 1.589-1.589l3.705 3.705 3.705-3.705a1.124 1.124 0 1 1 1.589 1.589l-3.705 3.705 3.705 3.705a1.129 1.129 0 0 1 0 1.589 1.116 1.116 0 0 1-1.589.001Z' fill='%231f66ae'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 12px;
  width: 12px;
  margin-right: 8px;
}
.modal .triangle-container {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.modal .triangle-container .triangle {
  border-width: 0px 85px 85px 85px;
}
.modal .btn-close.secondary-close {
  margin-top: 60px;
  margin-bottom: 60px;
}

.modal-bio .modal-header {
  border: 0;
}

@media (min-width: 576px) {
  .modal-bio .modal-dialog {
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 767px) {
  .modal .btn-close.secondary-close {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .modal .triangle-container .triangle {
    border-width: 0px 170px 170px 170px;
  }

  .modal-body {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .photo-col {
    padding-right: 50px;
  }
}
.pagination {
  border: 0;
}
.pagination .page-item.active .page-link {
  background-color: #f6cf3d;
  border-color: #f6cf3d;
  color: #182a54;
}
.pagination .page-link {
  border: 0;
  padding: 0rem 0.5rem;
  color: #1F66AE;
}

.jumbotron > .container {
  padding-top: 115px;
  padding-bottom: 115px;
}
.jumbotron p {
  font-size: 22px;
  line-height: 30px;
}
.jumbotron .jumbotron-bullets {
  margin-left: 0rem;
}
.jumbotron .jumbotron-bullets li {
  margin-bottom: 20px;
  list-style: none;
  position: relative;
  padding-left: 40px;
}
.jumbotron .jumbotron-bullets li:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.521' height='22.521'%3E%3Cpath data-name='Icon ionic-md-checkmark-circle-outline' d='m6.643 9.125-1.576 1.572 5.067 5.067 11.26-11.26-1.576-1.579-9.684 9.63Zm13.625 2.139a8.97 8.97 0 1 1-6.531-8.67L15.483.845A10.474 10.474 0 0 0 11.26 0a11.26 11.26 0 1 0 11.265 11.26Z' fill='%2393c1db'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 22px;
  width: 22px;
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
}
.jumbotron.--more-padding > .container {
  padding-top: 115px;
  padding-bottom: 115px;
}
.jumbotron .card-link {
  color: #f6cf3d;
}
.jumbotron .card-link.has-arrow {
  color: #f6cf3d;
}
.jumbotron .title .subtitle {
  font-size: 48px;
  line-height: 44px;
}

@media (max-width: 599px) {
  .jumbotron .jumbotron-bullets {
    padding-left: 0rem;
  }
}
@media (min-width: 600px) {
  .jumbotron .jumbotron-bullets {
    margin-left: 1.5rem;
  }
}
@media (max-width: 991px) {
  .jumbotron .has-hr-vertical-triangles {
    background: none;
    min-height: 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .jumbotron--grey {
    clip-path: polygon(100% 0, 100% calc(100% - 150px), calc(100% - 150px) 100%, 0 100%, 0 0);
  }
}
@media (min-width: 992px) {
  .jumbotron .jumbotron-bullets {
    margin-left: 3rem;
  }
}
.feature-carousel {
  position: relative;
  overflow: hidden;
}
.feature-carousel .card {
  position: relative;
  min-height: 400px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.feature-carousel .card .card-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.feature-carousel .card .card-image img {
  height: auto;
  max-width: 290px;
}
.feature-carousel .card .card-body {
  position: relative;
  background: transparent linear-gradient(167deg, #1D81BF 0%, #034386 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  margin-top: 150px;
  padding-top: 100px;
  clip-path: polygon(100% 0, 100% 70%, 83% 100%, 0 100%, 0 0);
  z-index: 1;
  padding-right: 80px;
  min-height: 400px;
}
.feature-carousel .card .card-body p {
  font-size: 18px;
  line-height: 23px;
}
.feature-carousel .card .card-body .btn-container {
  position: absolute;
  bottom: 40px;
}
.feature-carousel .card .card-title {
  font-size: 28px;
  line-height: 32px;
}
.feature-carousel .card-link.has-arrow {
  color: #f6cf3d;
  font-size: 22px;
  line-height: 32px;
}
.feature-carousel .carousel-control-prev {
  justify-content: flex-start;
  opacity: 1;
}
.feature-carousel .carousel-control-prev-icon {
  background-color: #007DAC;
  border-radius: 100%;
  height: 44px;
  width: 44px;
  background-image: url("../images/icons/Icon-arrow-circle-left.svg");
  background-color: #fff;
  opacity: 1;
  position: absolute;
  bottom: -22px;
  left: calc(100% + 70px);
}
.feature-carousel .carousel-control-next {
  justify-content: flex-end;
  opacity: 1;
}
.feature-carousel .carousel-control-next-icon {
  background-color: #007DAC;
  border-radius: 100%;
  height: 44px;
  width: 44px;
  background-image: url("../images/icons/Icon-arrow-circle-right.svg");
  background-color: #fff;
  opacity: 1;
  position: absolute;
  bottom: -22px;
  right: calc(100% + 70px);
}
.feature-carousel .carousel-indicators {
  bottom: 40px;
  right: auto;
  left: 8px;
}
.feature-carousel .carousel-indicators [data-bs-target] {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  margin: auto 10px;
}
.feature-carousel .triangle-container {
  position: absolute;
  bottom: 60px;
  right: 10px;
  z-index: 999;
  transform: rotate(180deg);
}

.horizontal-scroller {
  position: relative;
}
.horizontal-scroller .carousel-control-prev-icon {
  background-color: #007DAC;
  border-radius: 100%;
  height: 44px;
  width: 44px;
  background-image: url("../images/icons/Icon-arrow-circle-left.svg");
  background-color: #fff;
  opacity: 1;
  position: absolute;
  bottom: auto;
  left: -10px;
}
.horizontal-scroller .carousel-control-next {
  justify-content: flex-end;
  opacity: 1;
}
.horizontal-scroller .carousel-control-next-icon {
  background-color: #007DAC;
  border-radius: 100%;
  height: 44px;
  width: 44px;
  background-image: url("../images/icons/Icon-arrow-circle-right.svg");
  background-color: #fff;
  opacity: 1;
  position: absolute;
  bottom: auto;
  right: -10px;
}

@media (min-width: 414px) {
  .feature-carousel .carousel-control-prev-icon {
    left: calc(100% + 80px);
  }
  .feature-carousel .carousel-control-next-icon {
    right: calc(100% + 80px);
  }
}
@media (min-width: 500px) {
  .feature-carousel .carousel-control-prev-icon {
    left: calc(100% + 110px);
  }
  .feature-carousel .carousel-control-next-icon {
    right: calc(100% + 110px);
  }
}
@media (min-width: 576px) {
  .horizontal-scroller .carousel-control-prev-icon {
    left: -25px;
  }
  .horizontal-scroller .carousel-control-next-icon {
    right: -25px;
  }
}
@media (max-width: 767px) {
  .feature-carousel .triangle-container {
    display: none !important;
  }
  .feature-carousel .bg-dotted-pattern.is-clipped-bottom-right {
    clip-path: none !important;
  }
  .feature-carousel .carousel-indicators {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .feature-carousel .card .card-body {
    padding-top: 120px;
    min-height: 440px;
  }
  .feature-carousel .card .card-image {
    left: 0px;
  }
  .feature-carousel .card .card-image img {
    max-width: 330px;
    width: 100%;
  }
  .feature-carousel .card-body {
    padding-top: 120px;
    padding-left: 20px;
    margin: 40px 0px 0px 0px;
    min-height: 450px;
  }
  .feature-carousel .card-body .card-title {
    font-size: 36px;
    line-height: 40px;
  }
  .feature-carousel .carousel-control-prev-icon,
.feature-carousel .carousel-control-next-icon {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .feature-carousel .carousel-indicators {
    left: 0;
    right: 0;
  }
}
@media (min-width: 810px) {
  .horizontal-scroller .carousel-control-prev-icon {
    left: -50px;
  }
  .horizontal-scroller .carousel-control-next-icon {
    right: -50px;
  }
}
@media (min-width: 992px) {
  .feature-carousel .card .card-body {
    margin-top: 20px;
    margin-left: 100px;
    padding-top: 40px;
    padding-left: 300px;
  }
  .feature-carousel .card .card-image img {
    height: auto;
    max-width: 370px;
    width: 100%;
  }
  .feature-carousel .carousel-indicators {
    left: 128px;
  }

  .horizontal-scroller .carousel-control-prev-icon {
    left: -20px;
  }
  .horizontal-scroller .carousel-control-next-icon {
    right: -20px;
  }
}
@media (min-width: 1200px) {
  .feature-carousel .card .card-body {
    padding-left: 390px;
  }
  .feature-carousel .card .card-image img {
    max-width: 450px;
  }
  .feature-carousel .carousel-indicators {
    left: 160px;
  }

  .horizontal-scroller .carousel-control-prev-icon {
    left: -30px;
  }
  .horizontal-scroller .carousel-control-next-icon {
    right: -30px;
  }
}
@media (min-width: 1230px) {
  .horizontal-scroller .carousel-control-prev-icon {
    left: -50px;
  }
  .horizontal-scroller .carousel-control-next-icon {
    right: -50px;
  }
}
@media (min-width: 1400px) {
  .feature-carousel .card .card-body {
    padding-left: 464px;
  }
  .feature-carousel .card .card-image img {
    max-width: 520px;
  }
  .feature-carousel .carousel-indicators {
    left: 160px;
  }
}
.alert {
  margin-bottom: 0;
  background-color: #DEE4E8;
}
.alert .btn-close {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.25' height='29.25'%3E%3Cpath d='M14.625 0A14.625 14.625 0 1 0 29.25 14.625 14.623 14.623 0 0 0 14.625 0Zm3.705 19.92-3.705-3.706-3.705 3.705a1.124 1.124 0 1 1-1.589-1.589l3.705-3.705-3.705-3.705a1.124 1.124 0 0 1 1.589-1.589l3.705 3.705 3.705-3.705a1.124 1.124 0 1 1 1.589 1.589l-3.705 3.705 3.705 3.705a1.129 1.129 0 0 1 0 1.589 1.116 1.116 0 0 1-1.589.001Z' fill='%231f66ae'/%3E%3C/svg%3E") no-repeat center center;
  opacity: 1;
  height: 18px;
  width: 18px;
}
.alert p:last-child {
  margin-bottom: 0;
}

body.home > article:first-child {
  padding-top: 0;
}
body.home > article:first-child .hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-hero-video {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.home-video-controls {
  text-align: right;
}
.home-video-controls button {
  border: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-pause-fill'%3E%3Cpath d='M5.5 3.5A1.5 1.5 0 0 1 7 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5zm5 0A1.5 1.5 0 0 1 12 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5z'/%3E%3C/svg%3E");
  background-color: transparent;
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
}
.home-video-controls button.is-stopped {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-play-fill'%3E%3Cpath d='m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z'/%3E%3C/svg%3E");
}

@media (max-height: 500px) and (orientation: landscape) {
  .home-hero-video {
    top: -250px;
    bottom: -140px;
  }
}
@media (max-width: 767px) {
  .services-container .title-container h2 .mid-blue {
    font-size: 32px;
    line-height: 44px;
  }
  .services-container .title-container h2 .h1 {
    font-size: 42px;
    line-height: 44px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .services-container .title-container h2 .mid-blue {
    font-size: 46px;
    line-height: 60px;
  }

  .home .hero .title {
    font-size: 40px;
    line-height: 43px;
  }
  .home .hero .blurb.--big {
    font-size: 40px;
    line-height: 62px;
  }
}
@media (min-width: 1100px) {
  body.home .has-hr-vertical-triangles-left {
    position: relative;
    background: none;
  }
  body.home .has-hr-vertical-triangles-left:before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.664' height='408.664'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h408.664v29.664H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='rotate(90 14.832 14.832)' clip-path='url(%23a)' style='mix-blend-mode:multiply;isolation:isolate'%3E%3Cpath data-name='Path 1171' d='M12.752.307v12.752H0ZM41.752.307v12.752H29ZM70.752.307v12.752H58ZM99.752.307v12.752H87ZM128.752.307v12.752H116ZM157.752.307v12.752H145ZM186.752.307v12.752H174ZM215.752.307v12.752H203ZM244.752.307v12.752H232ZM273.752.307v12.752H261ZM302.752.307v12.752H290ZM331.752.307v12.752H319ZM360.752.307v12.752H348ZM389.752.307v12.752H377ZM418.752.307v12.752H406Z' fill='%23f6cf3d'/%3E%3C/g%3E%3C/svg%3E") repeat-y top left;
    position: absolute;
    top: 250px;
    left: -60px;
    width: 40px;
    display: block;
    height: 100%;
  }
}
.page-template-template-contact-us .card.--clipped-bottom-right {
  clip-path: polygon(100% 0, 100% calc(100% - 80px), calc(100% - 80px) 100%, 0 100%, 0 0);
}
.page-template-template-contact-us .card.head-office .call-icon {
  align-items: flex-start;
}
.page-template-template-contact-us .card.head-office .call-icon:before {
  margin-top: 6px;
}
.page-template-template-contact-us .card.quote .card-body {
  padding-left: 0;
  padding-right: 0;
}

.success_story-template-default .success-story--results ul {
  padding-left: 1rem;
}
.success_story-template-default .success-story--results ul li {
  position: relative;
  list-style: none;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
  color: #182a54;
}
.success_story-template-default .success-story--results ul li:before {
  content: "";
  display: block;
  height: 22px;
  width: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29.25' height='29.25'%3E%3Cpath data-name='Icon ionic-md-checkmark-circle-outline' d='m8.625 11.846-2.044 2.048 6.581 6.581L27.788 5.85 25.74 3.803l-12.578 12.5Zm17.7 2.779a11.65 11.65 0 1 1-8.482-11.261l2.267-2.267A13.6 13.6 0 0 0 14.625 0 14.625 14.625 0 1 0 29.25 14.625Z' fill='%231f66ae'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
}

.news-detail a {
  font-weight: bold;
}
.news-detail iframe {
  margin: 60px 0;
}

.accordion .accordion-button {
  font-weight: bold;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.accordion .accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.367' height='21.367'%3E%3Cpath d='M0 10.684a10.684 10.684 0 1 1 10.684 10.683A10.682 10.682 0 0 1 0 10.684Zm14.849 2.229a1 1 0 0 0 1.4 0 .979.979 0 0 0 .288-.7 1 1 0 0 0-.293-.7L11.4 6.685a.99.99 0 0 0-1.366.031l-4.909 4.897a.992.992 0 0 0 1.4 1.4l4.166-4.207Z' fill='%231F66AE'/%3E%3C/svg%3E");
  transform: rotate(-180deg);
}
.accordion .accordion-button:not(.collapsed) {
  color: #182a54;
  background-color: transparent;
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.367' height='21.367'%3E%3Cpath d='M0 10.684a10.684 10.684 0 1 1 10.684 10.683A10.682 10.682 0 0 1 0 10.684Zm14.849 2.229a1 1 0 0 0 1.4 0 .979.979 0 0 0 .288-.7 1 1 0 0 0-.293-.7L11.4 6.685a.99.99 0 0 0-1.366.031l-4.909 4.897a.992.992 0 0 0 1.4 1.4l4.166-4.207Z' fill='%23ff9e1a'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}
.accordion .accordion-body {
  padding-top: 0;
}
.accordion .accordion-body a {
  color: #1F66AE;
}

@media (min-width: 992px) {
  .locations-accordion-container {
    max-height: 500px;
    overflow: hidden;
  }
  .locations-accordion-container .accordion {
    max-height: 500px;
    overflow-y: auto;
  }
}
@media (min-width: 992px) {
  .navbar-nav--top {
    margin-right: 0;
  }
  .navbar-nav--top .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .navbar-nav--top .nav-item:after {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
