.burger-menu {
  height: 30px;
  width: 30px;
  cursor: pointer;
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: #1d1d1f;
  margin: 5px 0;
  transition: all 0.25s ease;
}
.burger-open span {
  background: #0034ff;
}
.burger-open span:nth-of-type(1) {
  transform: rotate(45deg);
  margin-top: 12px;
}
.burger-open span:nth-of-type(2) {
  opacity: 0;
}
.burger-open span:nth-of-type(3) {
  transform: rotate(-45deg);
  margin-top: -16px;
}
.mobile-menu {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 25px;
  background-color: #0034ff;
  z-index: 999;
  top: 85px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu .nav-item-link {
  font-size: 1.5rem;
  font-weight: bold;
}
.mobile-menu ul li {
  display: block;
  float: none;
  margin-top: 25px;
  margin-bottom: 25px;
}
.mobile-menu ul li:focus i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: all 300ms 0s ease-in-out;
}
.mobile-menu ul li a {
  color: white;
  text-decoration: none;
}
.mobile-menu ul li a:hover {
  color: #9bc4e8;
}
.mobile-submenu {
  margin-left: 25px;
}
.mobile-submenu a {
  display: block;
  float: none;
  margin-top: 6px;
  margin-bottom: 6px;
}
.mobile-menu-hide {
  display: none;
}
nav.main-nav {
  height: 100px;
  padding: 15px 0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
nav.main-nav .active {
  color: #0034ff;
}
nav.main-nav ul.desktop-nav .nav-items {
  margin-top: 15px;
}
nav.main-nav ul.desktop-nav .nav-items:hover i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: all 300ms 0s ease-in-out;
}
nav.main-nav ul.desktop-nav .nav-items .nav-item-link {
  text-decoration: none;
}
nav.main-nav ul.desktop-nav .nav-items .nav-item-link i {
  margin-left: 5px;
}
nav.main-nav ul.desktop-nav .nav-items .nav-item-link:hover {
  color: #0034ff;
}
nav.main-nav ul.desktop-nav li {
  display: block;
  float: left;
  margin-right: 20px;
  font-weight: 400!important;
}
nav.main-nav .right-nav {
  float: right;
}
nav.main-nav .dropdown:hover .dropdown-content {
  display: block;
}
nav.main-nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #0034ff;
  border-radius: 5px;
  padding: 15px 20px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 999;
}
nav.main-nav .dropdown-content a {
  float: none;
  color: white;
  text-decoration: none;
  display: block;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 5px;
}
nav.main-nav .dropdown-content a:hover {
  color: #9bc4e8;
}
nav.main-nav .dropdown-content-small {
  width: 160px;
}
nav.main-nav .dropdown-content-medium {
  width: 240px;
}
nav.main-nav .dropdown-content-large {
  width: 300px;
}
nav.main-nav .dropdown-content-products h4 {
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}
nav.main-nav .dropdown-content-products .icx-nav-items {
  margin-top: 25px;
}
nav.main-nav.nav-light {
  background-color: white;
}
nav.main-nav.nav-light .dt-logo {
  width: 160px;
  height: 70px;
  display: block;
  margin-right: 35px;
  background: url("../assets/image/logos/DT-logo.png") no-repeat;
  background-size: contain;
}
nav.main-nav.nav-light .nav-item-link {
  color: #1d1d1f;
}
nav.main-nav.nav-light .mobile-menu .nav-item-link {
  color: white;
}
nav.main-nav.nav-dark {
  background: transparent;
  top: 0;
  width: 100%;
  position: absolute;
}
nav.main-nav.nav-dark .burger-open span,
nav.main-nav.nav-dark .burger-close span {
  background: white;
}
nav.main-nav.nav-dark .dt-logo {
  background: url("../assets/image/logos/DT-logo-ondark.png") no-repeat;
  background-size: contain;
  width: 160px;
  height: 70px;
  display: block;
  margin-right: 35px;
}
nav.main-nav.nav-dark .nav-item-link {
  color: #f6f6f6;
}
nav.main-nav.nav-dark li {
  color: #f6f6f6;
}
nav.main-nav.nav-dark li a {
  color: #f6f6f6;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.dt-logo-ondark {
  background: url("../assets/image/logos/DT-logo-ondark.png") no-repeat;
  background-size: contain;
  width: 160px;
  height: 70px;
  display: block;
  margin-right: 35px;
}
.social-icons {
  margin-bottom: 25px;
}
.social-icons .linkedin,
.social-icons .twitter-x,
.social-icons .vimeo {
  margin-right: 10px;
  background-image: linear-gradient(180deg, #0034ff, #7200ff);
  text-align: center;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: inline-block;
  font-size: 1rem;
}
footer {
  background-color: #050b1e;
}
footer iframe {
  width: 100%;
}
footer .footer-inner {
  padding: 15px;
}
footer article.footer-news {
  overflow: hidden;
}
footer article.footer-news .news-carousel {
  display: flex;
  transition: transform 0.9s ease;
}
footer article.footer-news .news-item {
  flex: 0 0 100%;
}
footer article.footer-news .news-item .secondary-button {
  width: 180px;
}
footer article.footer-news,
footer article.newsletter {
  margin-top: 30px;
}
footer article.newsletter .primary-button {
  margin-top: 15px;
}
footer .dt-logo {
  margin-top: 30px;
  margin-bottom: 20px;
}
footer .copyright {
  background-color: black;
}
footer .copyright article {
  text-align: center;
  padding: 20px;
}
footer .copyright article ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .copyright article ul li {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.75rem;
}
.phone-no:before {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
  content: '\f095';
  color: #0034ff;
  position: absolute;
}
.ia-phone:before {
  color: #00c0d2;
}
.it-phone:before {
  color: #82bf13;
}
.ip-phone:before {
  color: #003e7d;
}
.iauto-phone:before {
  color: #8f1cca;
}
.ii-phone:before {
  color: #0073e8;
}
.ic-phone:before {
  color: #5bc060;
}
.innovi-phone:before {
  color: #550cd4;
}
.tpa-phone:before {
  color: #e2a731;
}
.email-address:before {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
  content: '\f0e0';
  color: #0034ff;
  position: absolute;
}
.ia-email:before {
  color: #00c0d2;
}
.it-email:before {
  color: #82bf13;
}
.ip-email:before {
  color: #003e7d;
}
.iauto-email:before {
  color: #8f1cca;
}
.ii-email:before {
  color: #0073e8;
}
.ic-email:before {
  color: #5bc060;
}
.innovi-email:before {
  color: #550cd4;
}
.tpa-email:before {
  color: #e2a731;
}
.address:before {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
  content: '\f3c5';
  color: #0034ff;
  position: absolute;
}
.ia-address:before {
  color: #00c0d2;
}
.it-address:before {
  color: #82bf13;
}
.ip-address:before {
  color: #003e7d;
}
.iauto-address:before {
  color: #8f1cca;
}
.ii-address:before {
  color: #0073e8;
}
.ic-address:before {
  color: #5bc060;
}
.innovi-address:before {
  color: #550cd4;
}
.tpa-address:before {
  color: #e2a731;
}
ul.contact-details {
  text-decoration: none;
  list-style-type: none;
  margin: 0 0 25px 0;
  padding: 0;
  position: relative;
}
ul.contact-details .indent {
  display: inline-block;
  margin-left: 30px;
}
ul.contact-details li {
  margin-bottom: 10px;
}
section.contact-us {
  border-top: 1px solid #CCCCCC;
  padding-top: 20px;
}
section.contact-us aside {
  padding-right: 20px;
}
section.contact-us .bento-box {
  background-color: #f5f5f7;
}
section.contact-us .contact-form {
  margin-top: 25px;
}
section.contact-us .contact-form label {
  color: #6c6c73;
}
section.contact-us .contact-form textarea {
  height: 100px;
}
section.contact-us .contact-form button {
  margin-top: 15px;
  padding: 8px 15px 10px 15px;
}
/*//////////////////////////////

      HOMEPAGE

 /////////////////////////////*/
.index-hero {
  height: 850px;
  background-color: black;
  margin-top: 0;
}
.featured-box {
  background: white;
}
.blue-fade {
  height: 500px;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #0019ff);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.index-icx .integro-box {
  background-image: url("/assets/image/icx/icx3d.webp");
  background-repeat: no-repeat;
  background-position: 650px -10px;
  background-size: 700px;
}
.index-directors-photo {
  height: 300px;
}
.index-clients {
  overflow: hidden;
}
.index-clients .client-stories-carousel {
  transition: transform 0.9s ease;
}
.index-clients .client-stories-carousel .client-stories-carousel-item {
  flex: 0 0 100%;
  padding-left: 50px;
  padding-right: 50px;
}
/*//////////////////////////////

      ABOUT PAGES

 /////////////////////////////*/
.timeline-item {
  --sb-track-color: #c2c2c4;
  --sb-thumb-color: #001c8a;
  --sb-size: 8px;
}
.timeline-item::-webkit-scrollbar {
  height: var(--sb-size);
}
.timeline-item::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 5px;
}
.imago-journey-wrapper::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 5px;
}
@supports not selector(::-webkit-scrollbar) {
  .timeline-item {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    scrollbar-width: var(--sb-size);
  }
}
.timeline-item::-webkit-scrollbar {
  height: var(--sb-size);
}
.timeline-item::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.timeline-item::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .timeline-item {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.our-history {
  margin-top: 50px;
  padding: 50px 20px;
}
.our-history .history-logos {
  margin-bottom: 15px;
}
.our-history h2,
.our-history h4 {
  text-align: center;
}
.our-history .clouds .cloud-icon {
  width: 100px;
  height: 50px;
  position: absolute;
}
.our-history .clouds .cloud-1 {
  background: url("../assets/image/timeline/cloud-1.webp") no-repeat;
  background-size: contain;
  transform: translate(400px, 100px);
}
.our-history .clouds .cloud-2 {
  background: url("../assets/image/timeline/cloud-2.webp") no-repeat;
  background-size: contain;
  transform: translate(750px, 50px);
}
.our-history .clouds .cloud-3 {
  background: url("../assets/image/timeline/cloud-3.webp") no-repeat;
  background-size: contain;
  transform: translate(130px, 40px);
}
.our-history .clouds .cloud-4 {
  background: url("../assets/image/timeline/cloud-4.webp") no-repeat;
  background-size: contain;
  transform: translate(980px, 80px);
}
.our-history .timeline {
  display: flex;
  overflow: hidden;
}
.our-history .timeline::after {
  position: absolute;
  right: 0;
  background: linear-gradient(to right, rgba(247, 247, 247, 0) 0, #f7f7f7 100%);
}
.our-history .timeline .timeline-item {
  overflow-x: scroll;
  overflow-y: auto;
  flex-direction: row-reverse;
  display: flex;
  border-radius: 0;
  padding-top: 188px;
}
.our-history .timeline .timeline-item .timeline-nucleus {
  margin-left: -16px;
}
.our-history .timeline .timeline-item .timeline-pa,
.our-history .timeline .timeline-item .timeline-award16,
.our-history .timeline .timeline-item .timeline-award19,
.our-history .timeline .timeline-item .timeline-award13 {
  margin-right: 15px;
}
.our-history .timeline .timeline-item .timeline-ic,
.our-history .timeline .timeline-item .timeline-ia,
.our-history .timeline .timeline-item .timeline-cb,
.our-history .timeline .timeline-item .timeline-surya,
.our-history .timeline .timeline-item .timeline-iauto,
.our-history .timeline .timeline-item .timeline-spireps,
.our-history .timeline .timeline-item .timeline-dk,
.our-history .timeline .timeline-item .timeline-nucleus,
.our-history .timeline .timeline-item .timeline-pa,
.our-history .timeline .timeline-item .timeline-award16,
.our-history .timeline .timeline-item .timeline-award19,
.our-history .timeline .timeline-item .timeline-award13,
.our-history .timeline .timeline-item .timeline-msgp,
.our-history .timeline .timeline-item .timeline-ii {
  margin-bottom: 10px;
}
.our-history .timeline .timeline-item .timeline-ic,
.our-history .timeline .timeline-item .timeline-ia,
.our-history .timeline .timeline-item .timeline-cb,
.our-history .timeline .timeline-item .timeline-iauto,
.our-history .timeline .timeline-item .timeline-dk,
.our-history .timeline .timeline-item .timeline-nucleus,
.our-history .timeline .timeline-item .timeline-ii {
  width: 150px;
}
.our-history .timeline .timeline-item .timeline-spireps,
.our-history .timeline .timeline-item .timeline-surya,
.our-history .timeline .timeline-item .timeline-pa,
.our-history .timeline .timeline-item .timeline-award16,
.our-history .timeline .timeline-item .timeline-award19,
.our-history .timeline .timeline-item .timeline-award13,
.our-history .timeline .timeline-item .timeline-msgp {
  width: 110px;
}
.our-history .timeline .timeline-item .lakeside-icon {
  background: url("../assets/image/timeline/Lakeside.png") no-repeat;
  background-size: contain;
  width: 240px;
  height: 40px;
  position: absolute;
  top: 162px;
  left: 810px;
}
.our-history .timeline .timeline-item .spinnaker-icon {
  background: url("../assets/image/timeline/SpinnekerTower.png") no-repeat;
  background-size: contain;
  width: 70px;
  height: 200px;
  position: absolute;
  top: -8px;
  left: -850px;
}
.our-history .timeline .timeline-item .hilsea-icon {
  background: url("../assets/image/timeline/hilsea.png") no-repeat;
  background-size: contain;
  width: 290px;
  height: 40px;
  position: absolute;
  top: 161px;
  left: -4945px;
}
.our-history .timeline .timeline-item .treasury-icon {
  background: url("../assets/image/timeline/old treasury.png") no-repeat;
  background-size: contain;
  width: 130px;
  height: 70px;
  position: absolute;
  top: 124px;
  left: -3945px;
}
.our-history .timeline .timeline-item .enterprise-icon {
  background: url("../assets/image/timeline/enterprise house.png") no-repeat;
  background-size: contain;
  width: 100px;
  height: 90px;
  position: absolute;
  top: 108px;
  left: -3530px;
}
.our-history .timeline .timeline-item ul {
  display: flex;
  width: 6700px;
  padding-bottom: 30px;
  text-align: right;
}
.our-history .timeline .timeline-item ul:before {
  content: '';
  position: absolute;
  top: 190px;
  right: 0;
  display: block;
  height: 1px;
  background-color: #1d1d1f;
  width: 6620px;
}
.our-history .timeline .timeline-item ul li {
  margin-right: 50px;
  flex-shrink: 0;
  padding-top: 30px;
  width: 392px;
}
.our-history .timeline .timeline-item ul li h3 {
  position: relative;
}
.our-history .timeline .timeline-item ul li h3:after {
  content: '';
  position: absolute;
  display: block;
  top: -34px;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #0034ff;
  z-index: 999;
  left: 370px;
}
.our-history .dates {
  display: block;
  margin: 25px auto;
  text-align: center;
}
.our-history .dates .date-link.selected {
  color: #0034ff;
  font-weight: bold;
}
.our-history .dates .date-link.selected:hover {
  text-decoration: none;
}
.our-history .dates ul li {
  margin-right: 25px;
  text-align: center;
  font-weight: 400;
  display: inline-block;
}
.about-imago-block {
  background: linear-gradient(30deg, #01a6ff, #40bdff), url("../assets/image/logos/imago-icon.png") no-repeat;
  background-blend-mode: overlay;
  background-size: auto, 50%;
  background-position: center center, center right;
}
.about-integrocx-block {
  background: linear-gradient(30deg, #6828ff, #976cff), url("../assets/image/logos/icx-icon.png") no-repeat;
  background-blend-mode: overlay;
  background-size: auto, 60%;
  background-position: center center, center right;
}
.vacancies a {
  text-decoration: none;
}
.vacancies a:hover .vacancy-box {
  background-color: #0034ff;
}
.vacancies a:hover .vacancy-box h3,
.vacancies a:hover .vacancy-box p,
.vacancies a:hover .vacancy-box i {
  color: white;
}
.vacancies .vacancy-box {
  background-color: #e4e4e4;
}
.vacancies .vacancy-box .job-features {
  color: #1d1d1f;
  font-weight: 400;
}
.contact-us-block #contactDetails {
  background-color: #7200ff;
  clear: both;
}
.contact-us-block #contactDetails .address:before,
.contact-us-block #contactDetails .phone-no:before,
.contact-us-block #contactDetails .email-address:before {
  color: #f6f6f6;
}
.contact-us-block #contactDetails aside {
  float: left;
}
.contact-us-block #contactDetails aside:nth-of-type(2) {
  margin-left: 10px;
}
.clients-block .client-info-link {
  display: none;
}
.clients-block .client-box {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.clients-block .client-box .client-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  background: linear-gradient(30deg, #0034ff, #001c8a);
  padding: 30px;
  text-align: center;
}
.clients-block .client-box .client-info h4,
.clients-block .client-box .client-info p {
  transform: translateY(-50px);
  z-index: 5;
}
.clients-block .client-box .client-info h4 {
  font-weight: 400;
}
.clients-block .client-box .client-info .secondary-button {
  width: 200px;
  transform: translateY(100px);
  z-index: 5;
}
.clients-block .client-box:hover img {
  transform: scale(0);
  opacity: 0;
  transition: ease-out 0.5s;
}
.clients-block .client-box:hover .client-info {
  opacity: 1;
  transition: ease-in 0.3s;
}
.clients-block .client-box:hover .client-info h4,
.clients-block .client-box:hover .client-info p {
  transform: translateY(0);
  transition: ease-in 0.3s;
}
.clients-block .client-box:hover .client-info .secondary-button {
  transform: translateY(0);
  transition: ease-in 0.3s;
}
.clients-block img {
  width: 200px;
  display: block;
  margin: auto;
  vertical-align: middle;
}
/*//////////////////////////////

      IMAGO PAGES

 /////////////////////////////*/
.imago-client-stories-carousel {
  display: flex;
  transition: transform 0.9s ease;
}
.imago-client-stories-carousel .imago-client-stories-carousel-item {
  flex: 0 0 100%;
  padding: 0 45px;
}
.imago-products img {
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}
.imago-products img:hover {
  transform: scale(1.2);
}
.imago-hero {
  background: url(../assets/image/imago/butterfly-homepage.webp) no-repeat, linear-gradient(to right, #039bd8, #00caff);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.imago-admin-hero {
  background: url(../assets/image/imago/butterfly-admin.webp) no-repeat, linear-gradient(to right, #00c0d2, #2ddfed);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.imago-tools-hero {
  background: url(../assets/image/imago/butterfly-tools.webp) no-repeat, linear-gradient(to right, #669713, #82BF13FF);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.imago-portal-hero {
  background: url(../assets/image/imago/butterfly-portal.webp) no-repeat, linear-gradient(to right, #05509a, #035fbd);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.imago-automation-hero {
  background: url(../assets/image/imago/butterfly-homepage.webp) no-repeat, linear-gradient(to right, #7114bc, #ab23d8);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.imago-connect-hero {
  background: url(../assets/image/imago/butterfly-connect.webp) no-repeat, linear-gradient(to right, #5bc060, #1081be);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.imago-illustrations-hero {
  background: url(../assets/image/imago/butterfly-illustrations.webp) no-repeat, linear-gradient(to right, #0061e4, #0097ff);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.innovi-hero {
  background: url(../assets/image/imago/butterfly-homepage.webp) no-repeat, linear-gradient(to right, #2153f9, #550cd4);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.tpa-hero {
  background: url(../assets/image/imago/butterfly-tpa.webp) no-repeat, linear-gradient(to right, #e4b139, #cc9721);
  background-size: 50%, auto;
  background-position: 800px center, center center;
}
.ic-border-highlight {
  border: 3px solid #5bc060;
}
#imagoToolsSubPage .generic-middle {
  padding-bottom: 0;
}
#imagoToolsSubPage .imago-tools-news {
  padding-top: 0;
}
.generic-sidenav.it-sidenav {
  margin-bottom: 50px;
}
.generic-sidenav.it-sidenav hr {
  margin: 20px 0;
}
.generic-sidenav.it-sidenav .bento-box {
  background-color: #82bf13;
}
.generic-sidenav.it-sidenav ul li {
  margin: 15px 0;
  cursor: pointer;
}
.generic-sidenav.it-sidenav ul li a {
  text-decoration: none;
}
.generic-sidenav.it-sidenav ul li a:hover {
  color: #0034ff;
}
.generic-sidenav.it-sidenav ul li i {
  font-size: 0.7rem;
}
.icx-cs {
  padding: 50px 25px;
  margin-bottom: 0;
  background-color: #6828ff;
}
.icx-cs img {
  margin-bottom: 30px;
}
.icx-cs .quote {
  border-color: white;
}
.icx-cs .bento-box {
  overflow: hidden;
}
.icx-dark-hero {
  margin-top: 0;
  padding: 30px 25px;
  background: radial-gradient(#6828ff, #050b1e);
  overflow: hidden;
  height: 1200px;
}
.icx-dark-hero article {
  margin-top: 120px;
}
.icx-dark-hero img:nth-of-type(1) {
  margin-bottom: 30px;
}
.icx-dark-hero img.icx-screenshot {
  position: absolute;
  bottom: -90px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
.icx-key-features {
  padding: 50px 25px;
}
.icx-key-features .bento-box {
  background-color: rgba(104, 40, 255, 0.1);
  color: #4118ae;
  text-align: center;
}
.icx-key-features .bento-box i {
  font-size: 3rem;
  margin-bottom: 25px;
}
.creative-icx {
  padding: 80px 25px;
  margin: 0;
}
.creative-icx img {
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.2);
}
.icx-branches .icx-product-logos {
  padding: 30px 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}
.icx-branches .icx-product-logos img:hover {
  transform: scale(1.2);
}
.icx-branches a {
  text-decoration: none;
}
.icx-branches img {
  width: 250px;
  height: auto;
  object-fit: contain;
}
.icx-news {
  margin: 0;
  padding: 50px 25px;
}
.about-icx-formbuilder {
  text-align: center;
  padding: 30px 25px;
}
.about-icx-formbuilder img {
  margin-bottom: 50px;
}
.about-icx-formbuilder i {
  font-size: 2rem;
  margin-bottom: 25px;
}
.about-icx-formbuilder .bento-box {
  color: #930e58;
  background-color: rgba(196, 31, 120, 0.1);
}
.icx-fb-contact-form .primary-link,
.icx-fb-contact-form .address:before,
.icx-fb-contact-form .email-address:before,
.icx-fb-contact-form .phone-no:before {
  color: #c41f78;
}
.icx-fb-contact-form .primary-button {
  background-color: #c41f78;
  border-color: #c41f78;
}
.about-icx-wealth {
  text-align: center;
  padding: 30px 25px;
}
.about-icx-wealth img {
  margin-bottom: 50px;
}
.about-icx-wealth i {
  font-size: 2rem;
  margin-bottom: 25px;
}
.about-icx-wealth .bento-box {
  color: #1c7005;
  background-color: rgba(74, 201, 33, 0.1);
}
.icx-wealth-contact-form .primary-link,
.icx-wealth-contact-form .address:before,
.icx-wealth-contact-form .email-address:before,
.icx-wealth-contact-form .phone-no:before {
  color: #4ac921;
}
.icx-wealth-contact-form .primary-button {
  background-color: #4ac921;
  border-color: #4ac921;
}
.about-icx-enterprise {
  text-align: center;
  padding: 30px 25px;
}
.about-icx-enterprise img {
  margin-bottom: 50px;
}
.icx-enterprise-contact-form .primary-link,
.icx-enterprise-contact-form .address:before,
.icx-enterprise-contact-form .email-address:before,
.icx-enterprise-contact-form .phone-no:before {
  color: #6828ff;
}
.icx-enterprise-contact-form .primary-button {
  background-color: #6828ff;
  border-color: #6828ff;
}
/*
===========================

PAAS BLOCK FOR IMAGO PAGES

===========================
 */
.paas-block #illustration-software {
  background: linear-gradient(180deg, #0073e8, #1a8aff) padding-box, linear-gradient(to right, #0073e8, #1a8aff) border-box;
  border: 6px solid transparent;
}
.paas-block #pensions-admin-system {
  background: linear-gradient(180deg, #00c0d2, #13edff) padding-box, linear-gradient(to right, #00c0d2, #13edff) border-box;
  border: 6px solid transparent;
}
.paas-block #pensions-dashboard-isp {
  background: linear-gradient(180deg, #5bc060, #1081be) padding-box, linear-gradient(to right, #5bc060, #1081be) border-box;
  border: 6px solid transparent;
}
.paas-block #pensions-dashboard-isp .isp-1,
.paas-block #pensions-dashboard-isp .isp-2,
.paas-block #pensions-dashboard-isp .isp-3 {
  stroke: white;
}
.paas-block #outsourcing {
  background: linear-gradient(180deg, #e9c044, #756219) padding-box, linear-gradient(to right, #e9c044, #756219) border-box;
  border: 6px solid transparent;
}
.paas-block #outsourcing .outsourcing-1,
.paas-block #outsourcing .outsourcing-2,
.paas-block #outsourcing .outsourcing-3,
.paas-block #outsourcing .outsourcing-4,
.paas-block #outsourcing .outsourcing-5,
.paas-block #outsourcing .outsourcing-6,
.paas-block #outsourcing .outsourcing-7,
.paas-block #outsourcing .outsourcing-8 {
  stroke: white;
}
.paas-block #member-portal {
  background: linear-gradient(180deg, #003e7d, #478ddd) padding-box, linear-gradient(to right, #003e7d, #478ddd) border-box;
  border: 6px solid transparent;
}
.paas-block #member-portal .adviser-1,
.paas-block #member-portal .adviser-2,
.paas-block #member-portal .adviser-3,
.paas-block #member-portal .adviser-4,
.paas-block #member-portal .adviser-5,
.paas-block #member-portal .adviser-6,
.paas-block #member-portal .adviser-7,
.paas-block #member-portal .adviser-8 {
  stroke: white;
}
/*
===========================

         PAAS PAGE

===========================
 */
.paas-modal {
  left: 0;
  top: 0;
}
.paas-modal li {
  font-size: 1.125rem;
}
.paas-modal svg,
.paas-modal img {
  margin-right: 25px;
}
.paas-modal .modal-header {
  border: 0;
  padding: 30px 40px 0 40px;
}
.paas-modal .modal-footer {
  padding: 10px 40px;
}
.paas-modal .modal-body {
  padding: 40px;
}
.paas-modal .modal-body img {
  margin-bottom: 25px;
}
h2 {
  z-index: 3;
}
#circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: ease-in 0.3s;
}
#circuit line,
#circuit circle {
  transition: stroke 0.6s ease, fill 0.6s ease;
}
#paas-body {
  background: linear-gradient(180deg, #f9f9f9, #fcf9f9);
}
.paas-top {
  padding: 80px 0;
  margin: 0;
  text-align: center;
  background: linear-gradient(90deg, #0034ff, #001c8a);
}
.paas-view-info.bento-box {
  background: linear-gradient(180deg, white, #f8f8f8);
  box-shadow: 10px 8px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid #CCCCCC;
}
.expand-button {
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.investment-custody {
  margin-top: 40px;
}
.paas-contact-centre {
  height: 237.95px;
}
.pensions-ISP,
.regulated-pensions-Operator {
  height: 515px;
}
.svg-icons {
  width: 80px;
}
article.paas-item-container-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  margin-top: 20px;
}
article.paas-item-container-flex .paas-item-group {
  display: flex;
  align-items: center;
}
.horizontal-divider {
  width: 120px;
  height: 1px;
  background-color: #CCCCCC;
  margin: 30px auto 20px auto;
  display: block;
}
.vertical-divider {
  width: 1px;
  height: 80px;
  background-color: #CCCCCC;
}
.highlighted {
  box-shadow: 10px 8px 8px rgba(0, 0, 0, 0.1);
  background: white;
  border: 6px solid transparent;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: all ease 0.5s;
  padding-bottom: 60px;
}
.highlighted h4 {
  margin: 8px 0 0 15px;
  font-weight: 500;
  font-size: 1.6rem;
}
.highlighted .primary-list {
  font-size: 1.125rem !important;
}
.highlighted:hover {
  transform: translateY(-4px);
}
.highlighted:hover svg path,
.highlighted:hover svg rect,
.highlighted:hover svg circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2s ease forwards;
}
.highlighted.animate-on-scroll svg path,
.highlighted.animate-on-scroll svg rect,
.highlighted.animate-on-scroll svg circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2s ease forwards;
}
.greyed-out {
  background-color: #efefef;
  color: #bab9b9;
}
.paas-jump-to-section {
  position: sticky;
  top: 115px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 0 auto;
  width: 600px;
  background: linear-gradient(180deg, white, #f8f8f8);
  border-radius: 50px;
  border: 1px solid #CCCCCC;
  box-shadow: 10px 8px 8px rgba(0, 0, 0, 0.1);
}
.paas-jump-to-section .active {
  background: linear-gradient(90deg, #7200ff, #8334e3);
  border-radius: 50px;
  color: white;
  font-weight: bold;
  cursor: default;
}
.paas-jump-to-section .list-group-item {
  flex: 1;
  text-align: center;
  padding: 10px;
  margin: 0;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}
.paas-jump-to-section .list-group-item-action:not(.active):hover {
  color: #7200ff;
}
.paas-box-logos {
  width: 250px;
  height: 80px;
}
.dt-view {
  padding: 25px 0 70px 0;
}
.dt-view .investment-custody {
  margin-top: 40px;
}
.dt-view .paas-contact-centre {
  height: 240px;
}
.dt-view .pensions-ISP,
.dt-view .regulated-pensions-Operator {
  height: 503px;
}
.dt-view .paas-member-portal {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #003e7d, #478ddd) border-box;
}
.dt-view .paas-member-portal .paas-ip-logo {
  background: url("/assets/image/logos/imago_portal_nospace.png") no-repeat;
  background-size: contain;
}
.dt-view .paas-member-portal:hover {
  background: linear-gradient(180deg, #003e7d, #478ddd) padding-box, linear-gradient(to right, #003e7d, #478ddd) border-box;
}
.dt-view .paas-member-portal:hover .paas-ip-logo {
  background: url("/assets/image/logos/imago_portal_nospace_allwhite.png") no-repeat;
  background-size: contain;
}
.dt-view .paas-member-portal:hover h4,
.dt-view .paas-member-portal:hover .expand-button {
  color: white;
}
.dt-view .paas-member-portal:hover .vertical-divider {
  background-color: white;
}
.dt-view .paas-member-portal:hover .adviser-1,
.dt-view .paas-member-portal:hover .adviser-2,
.dt-view .paas-member-portal:hover .adviser-3,
.dt-view .paas-member-portal:hover .adviser-4,
.dt-view .paas-member-portal:hover .adviser-5,
.dt-view .paas-member-portal:hover .adviser-6,
.dt-view .paas-member-portal:hover .adviser-7,
.dt-view .paas-member-portal:hover .adviser-8 {
  stroke: white;
}
.dt-view .paas-member-portal article {
  gap: 30px;
}
.dt-view .paas-contact-centre {
  gap: 0;
}
.dt-view .paas-contact-centre .paas-item-group {
  margin-top: 30px;
}
.dt-view .investment-custody .svg-icons {
  width: 70px;
}
.dt-view .investment-custody .paas-item-group {
  margin-top: 20px;
  gap: 20px;
}
.dt-view .illustration-software {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #0073e8, #1a8aff) border-box;
}
.dt-view .illustration-software .paas-ii-logo {
  background: url("/assets/image/logos/imago_illustrations.png") no-repeat;
  background-size: contain;
}
.dt-view .illustration-software:hover {
  background: linear-gradient(180deg, #0073e8, #1a8aff) padding-box, linear-gradient(to right, #0073e8, #1a8aff) border-box;
}
.dt-view .illustration-software:hover .paas-ii-logo {
  background: url("/assets/image/logos/imago_illustrations_allwhite.png") no-repeat;
  background-size: contain;
}
.dt-view .illustration-software:hover h4,
.dt-view .illustration-software:hover .expand-button {
  color: white;
}
.dt-view .illustration-software:hover .vertical-divider {
  background-color: white;
}
.dt-view .illustration-software:hover .illustration-1,
.dt-view .illustration-software:hover .illustration-2,
.dt-view .illustration-software:hover .illustration-3,
.dt-view .illustration-software:hover .illustration-4,
.dt-view .illustration-software:hover .illustration-5,
.dt-view .illustration-software:hover .illustration-6,
.dt-view .illustration-software:hover .illustration-7,
.dt-view .illustration-software:hover .illustration-8 {
  stroke: white;
}
.dt-view .illustration-software article {
  gap: 25px;
}
.dt-view .policy-admin-system {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #00c0d2, #13edff) border-box;
}
.dt-view .policy-admin-system .paas-ia-logo {
  background: url("/assets/image/logos/imago_administration.png") no-repeat;
  background-size: contain;
}
.dt-view .policy-admin-system:hover {
  background: linear-gradient(180deg, #00c0d2, #13edff) padding-box, linear-gradient(to right, #00c0d2, #13edff) border-box;
}
.dt-view .policy-admin-system:hover .paas-ia-logo {
  background: url("/assets/image/logos/imago_administration_allwhite.png") no-repeat;
  background-size: contain;
}
.dt-view .policy-admin-system:hover h4,
.dt-view .policy-admin-system:hover .expand-button {
  color: white;
}
.dt-view .policy-admin-system:hover .vertical-divider {
  background-color: white;
}
.dt-view .policy-admin-system:hover .admin-1,
.dt-view .policy-admin-system:hover .admin-2,
.dt-view .policy-admin-system:hover .admin-3,
.dt-view .policy-admin-system:hover .admin-4,
.dt-view .policy-admin-system:hover .admin-5,
.dt-view .policy-admin-system:hover .admin-6,
.dt-view .policy-admin-system:hover .admin-7,
.dt-view .policy-admin-system:hover .admin-8,
.dt-view .policy-admin-system:hover .admin-9 {
  stroke: white;
}
.dt-view .policy-admin-system article {
  gap: 20px;
}
.dt-view .pensions-ISP {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #5bc060, #1081be) border-box;
  text-align: center;
}
.dt-view .pensions-ISP .paas-ic-logo {
  background: url("/assets/image/logos/imago_connect.png") no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.dt-view .pensions-ISP:hover {
  background: linear-gradient(180deg, #5bc060, #1081be) padding-box, linear-gradient(to right, #5bc060, #1081be) border-box;
}
.dt-view .pensions-ISP:hover .paas-ic-logo {
  background: url("/assets/image/logos/imago_connect_allwhite.png") no-repeat;
  background-size: contain;
}
.dt-view .pensions-ISP:hover h4,
.dt-view .pensions-ISP:hover .expand-button {
  color: white;
}
.dt-view .pensions-ISP:hover .vertical-divider {
  background-color: white;
}
.dt-view .pensions-ISP:hover .isp-1,
.dt-view .pensions-ISP:hover .isp-2,
.dt-view .pensions-ISP:hover .isp-3 {
  stroke: white;
}
.dt-view .pensions-ISP .paas-item-container {
  margin: 50px 0;
}
.dt-view .pensions-ISP svg {
  margin-bottom: 20px;
}
.dt-view .outsourcing {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #e9c044, #756219) border-box;
}
.dt-view .outsourcing:hover {
  background: linear-gradient(180deg, #e9c044, #756219) padding-box, linear-gradient(to right, #e9c044, #756219) border-box;
}
.dt-view .outsourcing:hover .paas-tpa-logo {
  background: url("/assets/image/logos/TPALogo_allwhite.png") no-repeat;
  background-size: contain;
}
.dt-view .outsourcing:hover h4,
.dt-view .outsourcing:hover .expand-button {
  color: white;
}
.dt-view .outsourcing:hover .vertical-divider {
  background-color: white;
}
.dt-view .outsourcing:hover .outsourcing-1,
.dt-view .outsourcing:hover .outsourcing-2,
.dt-view .outsourcing:hover .outsourcing-3,
.dt-view .outsourcing:hover .outsourcing-4,
.dt-view .outsourcing:hover .outsourcing-5,
.dt-view .outsourcing:hover .outsourcing-6,
.dt-view .outsourcing:hover .outsourcing-7,
.dt-view .outsourcing:hover .outsourcing-8 {
  stroke: white;
}
.dt-view .regulated-pensions-Operator {
  text-align: center;
}
.dt-view .regulated-pensions-Operator .paas-item-container {
  margin: 140px 0;
}
.dt-view .regulated-pensions-Operator svg {
  margin-bottom: 20px;
}
.dt-view .bento-box {
  padding: 40px;
}
.paas-tpa-logo {
  background: url("/assets/image/logos/TPALogo.png") no-repeat;
  background-size: contain;
  width: 200px;
  height: 80px;
}
.diagram-view {
  z-index: 3;
  zoom: 0.6;
  transform-origin: center top;
}
.modular-view {
  padding: 25px 0 70px 0;
}
.modular-view .investment-custody {
  margin-top: 40px;
}
.modular-view .paas-contact-centre {
  height: 240px;
}
.modular-view .pensions-ISP,
.modular-view .regulated-pensions-Operator {
  height: 518px;
}
.modular-view .paas-member-portal {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #003e7d, #478ddd) border-box;
}
.modular-view .paas-member-portal .paas-ip-logo {
  background: url("/assets/image/logos/imago_portal.png") no-repeat;
  background-size: contain;
}
.modular-view .paas-member-portal:hover {
  background: linear-gradient(180deg, #003e7d, #478ddd) padding-box, linear-gradient(to right, #003e7d, #478ddd) border-box;
}
.modular-view .paas-member-portal:hover .paas-ip-logo {
  background: url("/assets/image/logos/imago_portal_allwhite.png") no-repeat;
  background-size: contain;
}
.modular-view .paas-member-portal:hover h4,
.modular-view .paas-member-portal:hover .expand-button {
  color: white;
}
.modular-view .paas-member-portal:hover .vertical-divider {
  background-color: white;
}
.modular-view .paas-member-portal:hover .adviser-1,
.modular-view .paas-member-portal:hover .adviser-2,
.modular-view .paas-member-portal:hover .adviser-3,
.modular-view .paas-member-portal:hover .adviser-4,
.modular-view .paas-member-portal:hover .adviser-5,
.modular-view .paas-member-portal:hover .adviser-6,
.modular-view .paas-member-portal:hover .adviser-7,
.modular-view .paas-member-portal:hover .adviser-8 {
  stroke: white;
}
.modular-view .paas-member-portal article {
  gap: 30px;
}
.modular-view .paas-contact-centre {
  gap: 0;
}
.modular-view .paas-contact-centre .paas-item-group {
  margin-top: 10px;
}
.modular-view .investment-custody {
  gap: 0;
}
.modular-view .investment-custody .svg-icons {
  width: 70px;
}
.modular-view .investment-custody .paas-item-group {
  margin-top: 20px;
}
.modular-view .investment-custody {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #8f1cca, #d17bff) border-box;
}
.modular-view .investment-custody:hover {
  background: linear-gradient(180deg, #8f1cca, #d17bff) padding-box, linear-gradient(to right, #8f1cca, #d17bff) border-box;
}
.modular-view .investment-custody:hover h4,
.modular-view .investment-custody:hover .expand-button {
  color: white;
}
.modular-view .investment-custody:hover .vertical-divider {
  background-color: white;
}
.modular-view .investment-custody:hover .modular-investment-1,
.modular-view .investment-custody:hover .modular-investment-2,
.modular-view .investment-custody:hover .modular-investment-3,
.modular-view .investment-custody:hover .modular-investment-4,
.modular-view .investment-custody:hover .modular-investment-5 {
  stroke: white;
}
.modular-view .investment-custody article {
  gap: 25px;
}
.modular-view .regulated-pensions-Operator {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #0034ff, #7200ff) border-box;
}
.modular-view .regulated-pensions-Operator:hover {
  background: linear-gradient(180deg, #0034ff, #7200ff) padding-box, linear-gradient(to right, #0034ff, #7200ff) border-box;
}
.modular-view .regulated-pensions-Operator:hover h4,
.modular-view .regulated-pensions-Operator:hover .expand-button {
  color: white;
}
.modular-view .regulated-pensions-Operator:hover .vertical-divider {
  background-color: white;
}
.modular-view .regulated-pensions-Operator:hover .modular-regulated-1,
.modular-view .regulated-pensions-Operator:hover .modular-regulated-2,
.modular-view .regulated-pensions-Operator:hover .modular-regulated-3,
.modular-view .regulated-pensions-Operator:hover .modular-regulated-4,
.modular-view .regulated-pensions-Operator:hover .modular-regulated-5,
.modular-view .regulated-pensions-Operator:hover .modular-regulated-6,
.modular-view .regulated-pensions-Operator:hover .modular-regulated-7 {
  stroke: white;
}
.modular-view .regulated-pensions-Operator article {
  gap: 25px;
}
.modular-view .paas-contact-centre {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #7200ff, #ab67ff) border-box;
}
.modular-view .paas-contact-centre:hover {
  background: linear-gradient(180deg, #7200ff, #ab67ff) padding-box, linear-gradient(to right, #7200ff, #ab67ff) border-box;
}
.modular-view .paas-contact-centre:hover h4,
.modular-view .paas-contact-centre:hover .expand-button {
  color: white;
}
.modular-view .paas-contact-centre:hover .vertical-divider {
  background-color: white;
}
.modular-view .paas-contact-centre:hover .modular-contact-1 {
  stroke: white;
}
.modular-view .paas-contact-centre article {
  gap: 25px;
}
.modular-view .illustration-software {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #0073e8, #1a8aff) border-box;
}
.modular-view .illustration-software .paas-ii-logo {
  background: url("/assets/image/logos/imago_illustrations.png") no-repeat;
  background-size: contain;
}
.modular-view .illustration-software:hover {
  background: linear-gradient(180deg, #0073e8, #1a8aff) padding-box, linear-gradient(to right, #0073e8, #1a8aff) border-box;
}
.modular-view .illustration-software:hover .paas-ii-logo {
  background: url("/assets/image/logos/imago_illustrations_allwhite.png") no-repeat;
  background-size: contain;
}
.modular-view .illustration-software:hover h4,
.modular-view .illustration-software:hover .expand-button {
  color: white;
}
.modular-view .illustration-software:hover .vertical-divider {
  background-color: white;
}
.modular-view .illustration-software:hover .illustration-1,
.modular-view .illustration-software:hover .illustration-2,
.modular-view .illustration-software:hover .illustration-3,
.modular-view .illustration-software:hover .illustration-4,
.modular-view .illustration-software:hover .illustration-5,
.modular-view .illustration-software:hover .illustration-6,
.modular-view .illustration-software:hover .illustration-7,
.modular-view .illustration-software:hover .illustration-8 {
  stroke: white;
}
.modular-view .illustration-software article {
  gap: 25px;
}
.modular-view .policy-admin-system {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #00c0d2, #13edff) border-box;
}
.modular-view .policy-admin-system .paas-ia-logo {
  background: url("/assets/image/logos/imago_administration.png") no-repeat;
  background-size: contain;
}
.modular-view .policy-admin-system:hover {
  background: linear-gradient(180deg, #00c0d2, #13edff) padding-box, linear-gradient(to right, #00c0d2, #13edff) border-box;
}
.modular-view .policy-admin-system:hover .paas-ia-logo {
  background: url("/assets/image/logos/imago_administration_allwhite.png") no-repeat;
  background-size: contain;
}
.modular-view .policy-admin-system:hover h4,
.modular-view .policy-admin-system:hover .expand-button {
  color: white;
}
.modular-view .policy-admin-system:hover .vertical-divider {
  background-color: white;
}
.modular-view .policy-admin-system:hover .admin-1,
.modular-view .policy-admin-system:hover .admin-2,
.modular-view .policy-admin-system:hover .admin-3,
.modular-view .policy-admin-system:hover .admin-4,
.modular-view .policy-admin-system:hover .admin-5,
.modular-view .policy-admin-system:hover .admin-6,
.modular-view .policy-admin-system:hover .admin-7,
.modular-view .policy-admin-system:hover .admin-8,
.modular-view .policy-admin-system:hover .admin-9 {
  stroke: white;
}
.modular-view .policy-admin-system article {
  gap: 20px;
}
.modular-view .pensions-ISP {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #5bc060, #1081be) border-box;
  text-align: center;
}
.modular-view .pensions-ISP .paas-ic-logo {
  background: url("/assets/image/logos/imago_connect.png") no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.modular-view .pensions-ISP:hover {
  background: linear-gradient(180deg, #5bc060, #1081be) padding-box, linear-gradient(to right, #5bc060, #1081be) border-box;
}
.modular-view .pensions-ISP:hover .paas-ic-logo {
  background: url("/assets/image/logos/imago_connect_allwhite.png") no-repeat;
  background-size: contain;
}
.modular-view .pensions-ISP:hover h4,
.modular-view .pensions-ISP:hover .expand-button {
  color: white;
}
.modular-view .pensions-ISP:hover .vertical-divider {
  background-color: white;
}
.modular-view .pensions-ISP:hover .isp-1,
.modular-view .pensions-ISP:hover .isp-2,
.modular-view .pensions-ISP:hover .isp-3 {
  stroke: white;
}
.modular-view .pensions-ISP .paas-item-container {
  margin: 120px 0;
}
.modular-view .pensions-ISP svg {
  margin-bottom: 20px;
}
.modular-view .outsourcing {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #e9c044, #756219) border-box;
}
.modular-view .outsourcing:hover {
  background: linear-gradient(180deg, #e9c044, #756219) padding-box, linear-gradient(to right, #e9c044, #756219) border-box;
}
.modular-view .outsourcing:hover h4,
.modular-view .outsourcing:hover .expand-button {
  color: white;
}
.modular-view .outsourcing:hover .vertical-divider {
  background-color: white;
}
.modular-view .outsourcing:hover .outsourcing-1,
.modular-view .outsourcing:hover .outsourcing-2,
.modular-view .outsourcing:hover .outsourcing-3,
.modular-view .outsourcing:hover .outsourcing-4,
.modular-view .outsourcing:hover .outsourcing-5,
.modular-view .outsourcing:hover .outsourcing-6,
.modular-view .outsourcing:hover .outsourcing-7,
.modular-view .outsourcing:hover .outsourcing-8 {
  stroke: white;
}
.modular-view .regulated-pensions-Operator {
  text-align: center;
}
.modular-view .regulated-pensions-Operator .paas-item-container {
  margin: 140px 0;
}
.modular-view .regulated-pensions-Operator svg {
  margin-bottom: 20px;
}
.modular-view .bento-box {
  padding: 40px;
}
.group-view {
  padding: 25px 0 70px 0;
}
.group-view .investment-custody {
  margin-top: 40px;
}
.group-view .paas-contact-centre {
  height: 237.95px;
}
.group-view .pensions-ISP,
.group-view .regulated-pensions-Operator {
  height: 519px;
}
.group-view .paas-member-portal {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #003e7d, #478ddd) border-box;
}
.group-view .paas-member-portal .paas-ip-logo {
  background: url("/assets/image/logos/imago_portal_nospace.png") no-repeat;
  background-size: contain;
  width: 200px;
  height: 80px;
}
.group-view .paas-member-portal .paas-third-logo {
  background: url("/assets/image/clients/thirdfinancial.webp") no-repeat;
  background-size: contain;
}
.group-view .paas-member-portal:hover {
  background: linear-gradient(180deg, #003e7d, #478ddd) padding-box, linear-gradient(to right, #003e7d, #478ddd) border-box;
}
.group-view .paas-member-portal:hover .paas-ip-logo {
  background: url("/assets/image/logos/imago_portal_nospace_allwhite.png") no-repeat;
  background-size: contain;
}
.group-view .paas-member-portal:hover .paas-third-logo {
  background: url("/assets/image/clients/thirdfinancial_white.webp") no-repeat;
  background-size: contain;
}
.group-view .paas-member-portal:hover h4,
.group-view .paas-member-portal:hover .expand-button {
  color: white;
}
.group-view .paas-member-portal:hover .vertical-divider {
  background-color: white;
}
.group-view .paas-member-portal:hover .adviser-1,
.group-view .paas-member-portal:hover .adviser-2,
.group-view .paas-member-portal:hover .adviser-3,
.group-view .paas-member-portal:hover .adviser-4,
.group-view .paas-member-portal:hover .adviser-5,
.group-view .paas-member-portal:hover .adviser-6,
.group-view .paas-member-portal:hover .adviser-7,
.group-view .paas-member-portal:hover .adviser-8 {
  stroke: white;
}
.group-view .paas-member-portal article {
  gap: 25px;
}
.group-view .paas-contact-centre {
  gap: 0;
}
.group-view .paas-contact-centre .paas-item-group {
  margin-top: 30px;
}
.group-view .investment-custody {
  gap: 0;
}
.group-view .investment-custody .svg-icons {
  width: 70px;
}
.group-view .investment-custody {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #8f1cca, #d17bff) border-box;
}
.group-view .investment-custody .paas-third-icon {
  background: url("/assets/image/clients/thirdfinancial_icon.webp") no-repeat;
  background-size: contain;
  width: 80px;
  height: 70px;
}
.group-view .investment-custody:hover {
  background: linear-gradient(180deg, #8f1cca, #d17bff) padding-box, linear-gradient(to right, #8f1cca, #d17bff) border-box;
}
.group-view .investment-custody:hover .paas-third-icon {
  background: url("/assets/image/clients/thirdfinancial_icon_white.png") no-repeat;
  background-size: contain;
}
.group-view .investment-custody:hover h4,
.group-view .investment-custody:hover .expand-button {
  color: white;
}
.group-view .investment-custody:hover .vertical-divider {
  background-color: white;
}
.group-view .investment-custody:hover .modular-investment-1,
.group-view .investment-custody:hover .modular-investment-2,
.group-view .investment-custody:hover .modular-investment-3,
.group-view .investment-custody:hover .modular-investment-4,
.group-view .investment-custody:hover .modular-investment-5 {
  stroke: white;
}
.group-view .investment-custody article {
  gap: 20px;
}
.group-view .regulated-pensions-Operator {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #0034ff, #7200ff) border-box;
}
.group-view .regulated-pensions-Operator .paas-cb-logo {
  background: url("/assets/image/clients/curtis-banks.webp") no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.group-view .regulated-pensions-Operator:hover {
  background: linear-gradient(180deg, #0034ff, #7200ff) padding-box, linear-gradient(to right, #0034ff, #7200ff) border-box;
}
.group-view .regulated-pensions-Operator:hover .paas-cb-logo {
  background: url("/assets/image/clients/curtis-banks_white.webp") no-repeat;
  background-size: contain;
}
.group-view .regulated-pensions-Operator:hover h4,
.group-view .regulated-pensions-Operator:hover .expand-button {
  color: white;
}
.group-view .regulated-pensions-Operator:hover .vertical-divider {
  background-color: white;
}
.group-view .regulated-pensions-Operator:hover .modular-regulated-1,
.group-view .regulated-pensions-Operator:hover .modular-regulated-2,
.group-view .regulated-pensions-Operator:hover .modular-regulated-3,
.group-view .regulated-pensions-Operator:hover .modular-regulated-4,
.group-view .regulated-pensions-Operator:hover .modular-regulated-5,
.group-view .regulated-pensions-Operator:hover .modular-regulated-6,
.group-view .regulated-pensions-Operator:hover .modular-regulated-7 {
  stroke: white;
}
.group-view .regulated-pensions-Operator article {
  gap: 25px;
}
.group-view .illustration-software {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #0073e8, #1a8aff) border-box;
}
.group-view .illustration-software .paas-ii-logo {
  background: url("/assets/image/logos/imago_illustrations.png") no-repeat;
  background-size: contain;
}
.group-view .illustration-software:hover {
  background: linear-gradient(180deg, #0073e8, #1a8aff) padding-box, linear-gradient(to right, #0073e8, #1a8aff) border-box;
}
.group-view .illustration-software:hover .paas-ii-logo {
  background: url("/assets/image/logos/imago_illustrations_allwhite.png") no-repeat;
  background-size: contain;
}
.group-view .illustration-software:hover h4,
.group-view .illustration-software:hover .expand-button {
  color: white;
}
.group-view .illustration-software:hover .vertical-divider {
  background-color: white;
}
.group-view .illustration-software:hover .illustration-1,
.group-view .illustration-software:hover .illustration-2,
.group-view .illustration-software:hover .illustration-3,
.group-view .illustration-software:hover .illustration-4,
.group-view .illustration-software:hover .illustration-5,
.group-view .illustration-software:hover .illustration-6,
.group-view .illustration-software:hover .illustration-7,
.group-view .illustration-software:hover .illustration-8 {
  stroke: white;
}
.group-view .illustration-software article {
  gap: 25px;
}
.group-view .policy-admin-system {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #00c0d2, #13edff) border-box;
}
.group-view .policy-admin-system .paas-ia-logo {
  background: url("/assets/image/logos/imago_administration.png") no-repeat;
  background-size: contain;
}
.group-view .policy-admin-system:hover {
  background: linear-gradient(180deg, #00c0d2, #13edff) padding-box, linear-gradient(to right, #00c0d2, #13edff) border-box;
}
.group-view .policy-admin-system:hover .paas-ia-logo {
  background: url("/assets/image/logos/imago_administration_allwhite.png") no-repeat;
  background-size: contain;
}
.group-view .policy-admin-system:hover h4,
.group-view .policy-admin-system:hover .expand-button {
  color: white;
}
.group-view .policy-admin-system:hover .vertical-divider {
  background-color: white;
}
.group-view .policy-admin-system:hover .admin-1,
.group-view .policy-admin-system:hover .admin-2,
.group-view .policy-admin-system:hover .admin-3,
.group-view .policy-admin-system:hover .admin-4,
.group-view .policy-admin-system:hover .admin-5,
.group-view .policy-admin-system:hover .admin-6,
.group-view .policy-admin-system:hover .admin-7,
.group-view .policy-admin-system:hover .admin-8,
.group-view .policy-admin-system:hover .admin-9 {
  stroke: white;
}
.group-view .policy-admin-system article {
  gap: 20px;
}
.group-view .pensions-ISP {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #5bc060, #1081be) border-box;
  text-align: center;
}
.group-view .pensions-ISP .paas-ic-logo {
  background: url("/assets/image/logos/imago_connect.png") no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.group-view .pensions-ISP:hover {
  background: linear-gradient(180deg, #5bc060, #1081be) padding-box, linear-gradient(to right, #5bc060, #1081be) border-box;
}
.group-view .pensions-ISP:hover .paas-ic-logo {
  background: url("/assets/image/logos/imago_connect_allwhite.png") no-repeat;
  background-size: contain;
}
.group-view .pensions-ISP:hover h4,
.group-view .pensions-ISP:hover .expand-button {
  color: white;
}
.group-view .pensions-ISP:hover .vertical-divider {
  background-color: white;
}
.group-view .pensions-ISP:hover .isp-1,
.group-view .pensions-ISP:hover .isp-2,
.group-view .pensions-ISP:hover .isp-3 {
  stroke: white;
}
.group-view .pensions-ISP .paas-item-container {
  margin: 50px 0;
}
.group-view .pensions-ISP svg {
  margin-bottom: 20px;
}
.group-view .outsourcing {
  background: linear-gradient(180deg, white, #f8f8f8) padding-box, linear-gradient(to right, #e9c044, #756219) border-box;
}
.group-view .outsourcing:hover {
  background: linear-gradient(180deg, #e9c044, #756219) padding-box, linear-gradient(to right, #e9c044, #756219) border-box;
}
.group-view .outsourcing:hover .paas-tpa-logo {
  background: url("/assets/image/logos/TPALogo_allwhite.png") no-repeat;
  background-size: contain;
}
.group-view .outsourcing:hover h4,
.group-view .outsourcing:hover .expand-button {
  color: white;
}
.group-view .outsourcing:hover .vertical-divider {
  background-color: white;
}
.group-view .outsourcing:hover .outsourcing-1,
.group-view .outsourcing:hover .outsourcing-2,
.group-view .outsourcing:hover .outsourcing-3,
.group-view .outsourcing:hover .outsourcing-4,
.group-view .outsourcing:hover .outsourcing-5,
.group-view .outsourcing:hover .outsourcing-6,
.group-view .outsourcing:hover .outsourcing-7,
.group-view .outsourcing:hover .outsourcing-8 {
  stroke: white;
}
.group-view .regulated-pensions-Operator {
  text-align: center;
}
.group-view .regulated-pensions-Operator .paas-item-container {
  margin: 80px 0;
}
.group-view .regulated-pensions-Operator svg {
  margin-bottom: 20px;
}
.group-view .bento-box {
  padding: 40px;
}
svg path:nth-of-type(1) {
  animation-delay: 0s;
}
svg rect:nth-of-type(1) {
  animation-delay: 1s;
}
svg rect:nth-of-type(2) {
  animation-delay: 1.1s;
}
svg rect:nth-of-type(3) {
  animation-delay: 1.2s;
}
svg circle:nth-of-type(1) {
  animation-delay: 1.3s;
}
svg path:nth-of-type(2) {
  animation-delay: 1.4s;
}
svg circle:nth-of-type(2) {
  animation-delay: 1.5s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
#opinions-index .news-opinions-section,
#news-index .news-opinions-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.signup-box {
  width: 100%;
  margin-top: 30px;
  padding: 30px!important;
}
.signup-box img {
  object-fit: fill;
  border-radius: 8px;
  width: 100%;
  display: block;
}
.signup-box .secondary-button {
  margin: 0 auto;
  display: block;
}
.signup-box article {
  padding: 0 25px;
  margin-bottom: 0!important;
}
.see-more {
  display: block;
  margin: 15px auto;
}
.yt-button a {
  text-decoration: none;
  color: #1d1d1f;
}
.yt-button div:nth-of-type(1) {
  background-color: #FF0000;
  padding: 20px 25px;
  color: white;
  float: left;
  margin-right: 15px;
  margin-top: -5px;
}
.featured-article {
  margin-top: 80px;
}
.featured-article .divider {
  margin: 65px 0 35px 0;
  border-color: #CCC;
}
.featured-article article {
  padding-left: 20px;
  padding-right: 20px;
}
.featured-article .featured-header {
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.featured-article .row {
  margin-top: 70px;
}
.featured-article .bento-box {
  width: 100%;
  min-height: 100%;
}
.media-archive {
  margin: 35px 0 80px 0;
}
.media-archive .archive-wrapper {
  margin-top: 25px;
}
.media-archive .archive-wrapper .article-date {
  font-size: 14px;
}
.media-archive .archive-wrapper a {
  text-decoration: none;
}
.media-archive .archive-wrapper ul li {
  border-left: 5px solid #cccccc;
  border-bottom: 1px solid #eae9e9;
  padding: 10px 15px;
  cursor: pointer;
}
.media-archive .archive-wrapper ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
}
.media-archive .archive-wrapper ul li:hover {
  border-left: 5px solid #00D4FF;
  background: linear-gradient(90deg, #e0faff, #FFFFFF);
}
.article-tags li {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid black;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
}
.article-tags li:hover {
  background-color: #00D4FF;
  color: white;
  border-color: #00D4FF;
}
.articles-by-author {
  margin-bottom: 0;
  padding: 50px 0;
}
.article-hero-section-purple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  background-color: #7200ff;
  height: 600px;
}
.article-hero-section-lightblue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  background-color: #00D4FF;
  height: 600px;
}
.article-hero-section-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  background-color: #0034ff;
  height: 600px;
}
.first-seen-link {
  color: #1d1d1f;
  text-decoration: none;
  font-size: 1.2rem;
}
.first-seen-link:hover {
  text-decoration: underline;
}
.article-hero-section {
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 30px;
}
.article-hero-section .article-main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  z-index: 5;
  margin-top: 30px;
}
.article-hero-section article {
  position: relative;
  z-index: 5;
}
.article-info .author-photo {
  width: 60px;
  height: 60px;
}
.article-main-section {
  padding-bottom: 50px;
}
.article-main-section h3 {
  scroll-margin-top: 120px;
}
.article-main-section hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
.article-main-section .first-seen {
  margin-bottom: 35px;
}
.article-main-section .first-seen .primary-link {
  font-size: 1rem;
}
.article-main-section aside {
  padding-right: 45px;
  position: sticky;
  top: 120px;
}
.article-main-section aside .button-group {
  margin-top: 45px;
}
.article-main-section aside ul li {
  margin: 15px 0;
  cursor: pointer;
}
.article-main-section aside ul li a {
  text-decoration: none;
}
.article-main-section aside ul li a:hover {
  color: #0034ff;
}
.article-main-section aside ul li i {
  font-size: 0.7rem;
}
section.downloads,
section.videos {
  margin: 50px 0;
}
section.downloads article,
section.videos article {
  margin-bottom: 35px;
}
section.downloads .downloads-content,
section.videos .downloads-content,
section.downloads .videos-content,
section.videos .videos-content {
  padding: 0 30px;
}
section.downloads .active,
section.videos .active {
  background: linear-gradient(90deg, #b3c4ff, #FFFFFF);
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  color: #00175f;
}
section.downloads aside,
section.videos aside {
  margin-bottom: 50px;
}
section.downloads aside ul li,
section.videos aside ul li {
  margin: 15px 0;
  cursor: pointer;
}
section.downloads aside ul li:hover,
section.videos aside ul li:hover {
  color: #0034ff;
}
section.downloads aside ul li i,
section.videos aside ul li i {
  font-size: 0.7rem;
}
.downloads-content h5 {
  text-align: center;
  margin-bottom: 25px;
}
.downloads-content .wealth-management-sign-up {
  margin-top: 30px;
}
.downloads-content .download-thumbnail {
  height: 300px;
  margin-bottom: 15px;
}
.downloads-content .download-thumbnail a {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  border-radius: 8px;
  transition: ease-in 0.2s;
  box-shadow: 10px 5px 12px #CCC;
}
.downloads-content .download-thumbnail a:hover {
  background-color: #7200ff;
}
.downloads-content .download-thumbnail a:hover:before {
  content: "\f019";
  font-family: 'Font Awesome 5 Pro';
  font-size: 4rem;
  color: white;
  position: absolute;
  left: 32%;
  top: 32%;
}
.videos-content .video-wrapper img,
.videos-content .single-video img {
  cursor: pointer;
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmT.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmT.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmT.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmT.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammT.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v49/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammT.ttf) format('truetype');
}
/*//////////////////////////////

      TYPOGRAPHY

 /////////////////////////////*/
html,
body {
  scroll-behavior: smooth;
}
body {
  font-size: calc(15px + 0.390625vw);
}
h1 {
  font-size: 4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
}
h2 {
  font-size: 3rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
}
h3 {
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -1px;
}
h4 {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 34px;
}
h5 {
  font-size: 1.125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 28px;
}
.text-strong {
  font-weight: 500;
}
p,
li,
textarea,
input,
select,
.list-group-item,
.list-group-sub-item {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: -0.1px;
}
label {
  font-size: 1.125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.quote {
  margin-left: 30px;
  margin-bottom: 25px;
  border-left: 3px solid #00D4FF;
  padding-left: 20px;
}
.text-highlight {
  color: #7200ff;
}
.text-white {
  color: white;
}
.text-black {
  color: #1d1d1f;
}
.text-pretty {
  text-wrap: pretty;
}
.text-wrap {
  text-wrap: wrap;
}
/*//////////////////////////////

      COMPONENTS

 /////////////////////////////*/
.connect-with-dt-link {
  text-decoration: 0;
}
.awards-block .awards-icon {
  width: 200px;
  height: auto;
  margin: 15px 10px;
  opacity: 60%;
}
/*//////////////////////////////

      IMAGO SUITE THEMES

 /////////////////////////////*/
.imago-gradient-bg {
  background: linear-gradient(30deg, #01a6ff, #40bdff);
}
.ia-gradient-bg {
  background: linear-gradient(to right, #00c0d2, #2ddfed);
}
.it-gradient-bg {
  background: linear-gradient(to right, #669713, #82BF13FF);
}
.ic-gradient-bg {
  background: linear-gradient(to right, #5bc060, #1081be);
}
.ii-gradient-bg {
  background: linear-gradient(to right, #0061e4, #0097ff);
}
.ip-gradient-bg {
  background: linear-gradient(to right, #003e7d, #095aaf);
}
.tpa-gradient-bg {
  background: linear-gradient(30deg, #e4b139, #cc9721);
}
.ii-box {
  background: rgba(0, 115, 232, 0.1);
  color: #023d7e;
}
.ii-box ul li::marker {
  color: #023d7e;
}
.ia-box {
  background-color: #e4fcff;
  color: #025d67;
}
.ia-box ul li::marker {
  color: #025d67;
}
.ip-box {
  background: rgba(0, 62, 125, 0.1);
  color: #003E7DFF;
}
.ip-box ul li::marker {
  color: #003e7d;
}
.iauto-box {
  background: rgba(143, 28, 202, 0.1);
  color: #560a80;
}
.iauto-box ul li::marker {
  color: #560a80;
}
.it-box {
  background: rgba(130, 191, 19, 0.1);
  color: #5c9104;
}
.imago-client-stories-carousel {
  display: flex;
  transition: transform 0.9s ease;
}
.imago-client-stories-carousel .imago-client-stories-carousel-item {
  flex: 0 0 100%;
  padding: 0 45px;
}
.ic-box {
  background: rgba(91, 192, 96, 0.1);
  color: #238900;
}
.imago-text-highlight {
  color: #01a6ff;
}
.imago-box {
  background-color: #ebf8ff;
  color: #026498;
}
.tpa-box {
  background-color: #fff4df;
  color: #e2a731;
}
/*//////////////////////////////

      INTEGRO CX THEMES

 /////////////////////////////*/
.icx-gradient-bg {
  background: linear-gradient(30deg, #6828ff, #976cff);
}
.icx-text-highlight {
  color: #6828ff;
}
.integro-box {
  background-color: #f3eeff;
  color: #4118ae;
}
/*//////////////////////////////

      BUTTONS & LINKS

 /////////////////////////////*/
a {
  cursor: pointer;
}
.arrow-link {
  text-decoration: none;
  font-size: 1rem;
}
.arrow-link:after {
  content: "\f178";
  font-family: 'Font Awesome 5 Pro';
  margin-left: 10px;
}
.arrow-link.ia-link {
  color: #00c0d2;
}
.arrow-link.it-link {
  color: #82bf13;
}
.arrow-link.ip-link {
  color: #003e7d;
}
.arrow-link.iauto-link {
  color: #8f1cca;
}
.arrow-link.ic-link {
  color: #5bc060;
}
.arrow-link.ii-link {
  color: #0073e8;
}
.arrow-link.innovi-link {
  color: #550cd4;
}
.arrow-link.tpa-link {
  color: #e2a731;
}
.links {
  text-decoration: underline;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #1d1d1f;
}
.links.ia-link {
  color: #00c0d2;
}
.links.it-link {
  color: #82bf13;
}
.links.ip-link {
  color: #003e7d;
}
.links.iauto-link {
  color: #8f1cca;
}
.links.ic-link {
  color: #5bc060;
}
.links.ii-link {
  color: #0073e8;
}
.links.innovi-link {
  color: #550cd4;
}
.links.tpa-link {
  color: #e2a731;
}
.buttons {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  padding: 6px 15px 8px 15px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1rem;
  width: 160px;
}
.primary-button {
  color: #f6f6f6;
  background-color: #7200ff;
  border: 2px solid #7200ff;
}
.primary-button-white {
  color: #1d1d1f;
  background-color: #f6f6f6;
  border: 2px solid #f6f6f6;
}
.secondary-button {
  border: 2px solid #1d1d1f;
  color: #1d1d1f;
}
.secondary-button-white {
  border: 2px solid #f6f6f6;
  color: #f6f6f6;
}
.accent-button-1 {
  color: #f6f6f6;
  background-color: #004b5a;
  border: 2px solid #004b5a;
}
.imago-button {
  color: #f6f6f6;
  background-color: #01a6ff;
  border: 2px solid #01a6ff;
}
.imago-button.gradient-bg {
  background: linear-gradient(to right, #01a6ff, #45b2f4);
  border: 0;
}
.icx-button {
  color: #f6f6f6;
  background-color: #6828ff;
  border: 2px solid #6828ff;
}
.innovi-button {
  background-color: #5411d5;
  color: white;
  border: 2px solid #5411d5;
}
.innovi-button.gradient-bg {
  background: linear-gradient(to right, #3043ef, #3e35e6, #5411d5);
  border: 0;
}
.ii-button {
  background-color: #0073e8;
  color: white;
  border: 2px solid #0073e8;
}
.ii-button.gradient-bg {
  background: linear-gradient(to right, #0073e8, #4fa6ff);
  border: 0;
}
.ia-button {
  background-color: #00c0d2;
  color: white;
  border: 2px solid #00c0d2;
}
.ia-button.gradient-bg {
  background: linear-gradient(to right, #00b6cb, #30d9ec);
  border: 0;
}
.it-button {
  background-color: #82bf13;
  color: white;
  border: 2px solid #82bf13;
}
.it-button.gradient-bg {
  background: linear-gradient(to right, #82bf13, #9adc21);
  border: 0;
}
.ic-button {
  background-color: #5bc060;
  color: white;
  border: 2px solid #5bc060;
}
.ic-button.gradient-bg {
  background: linear-gradient(to right, #5bc060, #1081be);
  border: 0;
}
.ip-button {
  background-color: #003e7d;
  color: white;
  border: 2px solid #003e7d;
}
.ip-button.gradient-bg {
  background: linear-gradient(to right, #003e7d, #1763b1);
  border: 0;
}
.iauto-button {
  background-color: #8f1cca;
  color: white;
  border: 2px solid #8f1cca;
}
.iauto-button.gradient-bg {
  background: linear-gradient(to right, #8f1cca, #561faf);
  border: 0;
}
.tpa-button {
  background-color: #e2a731;
  color: white;
  border: 2px solid #e2a731;
}
.button-effect-1 {
  transition: all 0.2s linear 0s;
}
.button-effect-1:before {
  content: "\f178";
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 0;
  top: 7px;
  opacity: 0;
  height: 100%;
  width: 40px;
  transition: all 0.2s linear 0s;
}
.button-effect-1:hover {
  text-indent: -20px;
}
.button-effect-1:hover:before {
  opacity: 1;
  text-indent: 0;
}
.gradient-button-hover {
  background-size: 120% 100%;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
}
.gradient-button-hover:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}
/*//////////////////////////////

      MAIN THEME

 /////////////////////////////*/
.primary-text-highlight {
  color: #0034ff;
}
.primary-gradient-bg {
  background: linear-gradient(30deg, #0034ff, #7200ff);
}
.secondary-gradient-bg {
  background: linear-gradient(30deg, #0034ff, #001c8a);
}
.primary-bg {
  background-color: #0034ff;
  color: #f6f6f6;
}
.secondary-bg {
  background-color: #7200ff;
  color: #f6f6f6;
}
.accent-bg {
  background-color: #00D4FF;
  color: #004b5a;
}
/*//////////////////////////////

      UTILITIES

 /////////////////////////////*/
.fa-icon {
  font-size: 2.5rem;
  color: #00D4FF;
}
.imgs {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 0.5s forwards;
}
.rounded-md {
  border-radius: 8px;
}
.rounded-full {
  border-radius: 50%;
}
canvas {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.hidden {
  display: none;
}
.light-grey-background {
  background-color: #f5f5f7;
}
.position-relative {
  position: relative;
}
.breadcrumb-trail {
  background-color: #f5f5f7;
  padding-bottom: 5px;
}
.breadcrumb-trail .links {
  text-decoration: none;
}
.breadcrumb-trail .active {
  color: #0034ff;
  font-weight: 500;
}
.breadcrumb-trail ul li {
  font-weight: 400;
  display: inline-block;
}
.black-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #1d1d1f;
  opacity: 20%;
}
.active {
  display: block;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.bulleted-lists {
  padding-left: 38px;
  padding-bottom: 20px;
  padding-top: 2px;
}
.bulleted-lists li {
  margin-top: 8px;
  list-style-type: disc;
}
.bulleted-lists li::marker {
  color: #1d1d1f;
}
/*//////////////////////////////

      FORMS

 /////////////////////////////*/
label {
  margin-top: 15px;
}
select {
  appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAByAAAARVCAYAAAD14dcWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAydpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAyIDc5LmE2YTYzOTY4YSwgMjAyNC8wMy8wNi0xMTo1MjowNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI1LjEyIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2OTI4RDc4NDlDMjExMUVGQjdDREMwQ0U3QkRFNTNBRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2OTI4RDc4NTlDMjExMUVGQjdDREMwQ0U3QkRFNTNBRSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY5MjhENzgyOUMyMTExRUZCN0NEQzBDRTdCREU1M0FFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY5MjhENzgzOUMyMTExRUZCN0NEQzBDRTdCREU1M0FFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+5RFXmAAAZbVJREFUeNrs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");
  background-position: 220px 22px;
  background-repeat: no-repeat;
  background-size: 12px;
  width: 250px;
}
input,
select {
  height: 50px;
}
label,
input,
textarea {
  display: block;
  width: 100%;
}
input,
textarea,
select {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}
/*//////////////////////////////

      COOKIE BANNER

 /////////////////////////////*/
.cookiebanner {
  width: 300px;
  min-height: 150px !important;
  background-color: #f6f6f6 !important;
  color: #1d1d1f !important;
  bottom: 10px !important;
  border-radius: 5px;
  left: 10px !important;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  padding: 20px!important;
  text-align: left!important;
  font-family: "Roboto", sans-serif !important;
}
.cookiebanner a {
  color: #1d1d1f !important;
  font-weight: 400!important;
}
.cookiebanner a:hover {
  text-decoration: underline!important;
}
.cookiebanner .cookiebanner-close {
  bottom: 15px;
  position: absolute;
  right: 20px;
  text-align: center!important;
  display: inline-block;
  text-decoration: none;
  width: 100px;
  overflow: hidden;
  color: #f6f6f6 !important;
  padding: 6px 15px 8px 15px !important;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1rem;
  background-color: #0034ff;
  border: 2px solid #0034ff;
}
/*//////////////////////////////

      GENERIC PAGES

 /////////////////////////////*/
.list-group-item {
  font-size: 1rem;
  margin: 15px 0;
}
.list-group-item-action:not(.active):focus,
.list-group-item-action:not(.active):hover {
  color: #0034ff;
}
.list-group-sub-item {
  margin: 15px 0 15px 15px;
  text-decoration: none;
  display: block;
}
.generic-sidenav {
  position: sticky;
  top: 130px;
}
.generic-sidenav .active {
  background: linear-gradient(90deg, #b3c4ff, #FFFFFF);
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  color: #00175f;
}
.generic-sidenav ul li {
  margin-top: 10px;
  margin-bottom: 10px;
}
.generic-sidenav ul li a {
  color: black;
  text-decoration: none;
}
/*//////////////////////////////

      CAROUSEL UI

 /////////////////////////////*/
.carousel-nav-dots {
  text-align: center;
}
.carousel-nav-dots .nav-dot {
  border-radius: 50%;
  border: 2px solid white;
  display: inline-block;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.carousel-nav-dots .nav-dot:hover {
  background-color: white;
}
.dot-active {
  background-color: white;
}
.article-box {
  padding: 15px;
}
.article-img {
  height: 250px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.article-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
.face {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 6px 1px #00000057;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 4px 6px 1px #00000057;
  float: left;
  margin-right: 20px;
  margin-top: -12px;
}
.author-photo.face-paul-muir,
.author-photo.face-gavinj,
.author-photo.face-julia-fintz,
.author-photo.face-adrian-boulding,
.author-photo.face-andrew-martin,
.author-photo.face-ihab-elsaie,
.author-photo.face-alex-anderson {
  background-size: cover;
}
.face-paul-muir {
  background: url("/assets/image/directors/paulm.jpg") no-repeat center center;
  background-size: 80px;
}
.face-alex {
  background: url("/assets/image/face-alex.jpg") no-repeat center center;
  background-size: 80px;
}
.face-matt {
  background: url("/assets/image/face-matt.jpg") no-repeat center center;
  background-size: 80px;
}
.face-gavin-jackson {
  background: url("/assets/image/icx/face-gavinj.jpg") no-repeat center center;
  background-size: 80px;
}
.face-julia-fintz {
  background: url("/assets/image/directors/julia.jpg") no-repeat center center;
  background-size: 80px;
}
.face-adrian-boulding {
  background: url("/assets/image/directors/adrianb.jpg") no-repeat center center;
  background-size: 80px;
}
.face-ihab-elsaie {
  background: url("/assets/image/directors/ihab.jpg") no-repeat center center;
  background-size: 80px;
}
.face-andrew-martin {
  background: url("/assets/image/directors/andrewm.jpg") no-repeat center center;
  background-size: 80px;
}
.news-opinions-section .bento-box {
  text-align: left;
  padding: 0;
  position: relative;
}
.news-opinions-section .bento-box article {
  padding: 25px 5px;
}
.news-opinions-section .bento-box article h4 {
  margin-bottom: 25px;
}
.news-opinions-section .index-news-section {
  margin-bottom: 50px;
}
.news-opinions-section .see-all-news {
  color: #1d1d1f;
}
/*//////////////////////////////

      MEDIA QUERIES

 /////////////////////////////*/
@media (max-width: 1399.98px) {
  section.our-history .timeline .timeline-item .lakeside-icon {
    left: -5085px;
  }
  section.our-history .timeline .timeline-item .spinnaker-icon {
    left: -1900px;
  }
  section.our-history .timeline .timeline-item .hilsea-icon {
    left: 625px;
  }
  section.our-history .timeline .timeline-item .treasury-icon {
    left: -180px;
  }
  section.our-history .timeline .timeline-item .enterprise-icon {
    left: -610px;
  }
}
@media (max-width: 1199.98px) {
  .contact-middle #contactDetails aside:nth-of-type(2) {
    margin-left: 0;
  }
  .contact-middle #contactForm {
    margin-top: 20px;
  }
  .client-logos div {
    margin-left: 10px;
    margin-right: 10px;
  }
  .plain-news-tile {
    height: auto;
  }
  .plain-news-tile {
    margin-bottom: 20px;
  }
  section.our-history .timeline .timeline-item .lakeside-icon {
    left: -5270px;
  }
  section.our-history .timeline .timeline-item .spinnaker-icon {
    left: -2090px;
  }
  section.our-history .timeline .timeline-item .hilsea-icon {
    left: 455px;
  }
  section.our-history .timeline .timeline-item .treasury-icon {
    left: -360px;
  }
  section.our-history .timeline .timeline-item .enterprise-icon {
    left: -780px;
  }
  section.our-history .clouds .cloud-1,
  section.our-history .clouds .cloud-2,
  section.our-history .clouds .cloud-3,
  section.our-history .clouds .cloud-4 {
    transform: none;
    animation: none;
  }
  section.our-history .clouds .cloud-1 {
    left: 760px;
  }
  section.our-history .clouds .cloud-2 {
    left: 220px;
    top: 60px;
  }
  section.our-history .clouds .cloud-3 {
    left: 20px;
  }
  section.our-history .clouds .cloud-4 {
    left: 500px;
    top: 90px;
  }
}
@media (max-width: 991.98px) {
  nav.main-nav.nav-dark {
    background: black;
    position: relative;
  }
  .diagram-view {
    zoom: 0.8;
  }
  .paas-box-logos {
    margin: 0 auto;
  }
  .vertical-divider {
    width: 80px;
    height: 1px;
    display: block;
    margin: 30px auto;
  }
  article.paas-item-container-flex {
    display: block;
  }
  article.paas-item-container-flex .paas-item-group {
    display: block;
    text-align: center;
  }
  .imago-automation-hero .butterfly-image,
  .imago-illustrations-hero .butterfly-image,
  .imago-admin-hero .butterfly-image,
  .imago-tools-hero .butterfly-image,
  .imago-connect-hero .butterfly-image,
  .imago-portal-hero .butterfly-image,
  .imago-hero .butterfly-image {
    display: none;
  }
  .imago-product-ecosystem {
    padding: 50px 25px;
  }
  .imago-product-ecosystem .product-overview {
    margin-bottom: 40px;
  }
  .product-journey-desktop {
    display: none;
  }
  .product-journey-mobile {
    display: block;
  }
  .why-imago-connect,
  .pdp-components,
  .imago-connect-news,
  .pdp-section,
  .imago-connect-hero,
  .imago-product-suite,
  .imago-journey,
  .imago-hero,
  .imago-product-carousel,
  .imago-cs-section,
  .ii-news,
  .innovi-hero,
  .imago-tools-hero,
  .imago-automation-hero {
    padding: 30px 25px;
  }
  .imago-journey-wrapper .journey-arrow {
    background-image: none;
    padding: 50px;
  }
  .imago-connect-hero .bento-box,
  .imago-hero .bento-box,
  .imago-illustrations-hero .bento-box,
  .imago-admin-hero .bento-box,
  .innovi-hero .bento-box,
  .imago-tools-hero .bento-box,
  .imago-automation-hero .bento-box {
    padding: 30px;
    text-align: center;
  }
  .pdp-section .ic-ecosystem {
    height: 450px;
  }
  section.our-history .timeline .timeline-item .lakeside-icon {
    left: -5510px;
  }
  section.our-history .timeline .timeline-item .spinnaker-icon {
    left: -2340px;
  }
  section.our-history .timeline .timeline-item .hilsea-icon {
    left: 205px;
  }
  section.our-history .timeline .timeline-item .treasury-icon {
    left: -600px;
  }
  section.our-history .timeline .timeline-item .enterprise-icon {
    left: -1030px;
  }
  section.our-history .clouds .cloud-1 {
    left: 500px;
  }
  section.our-history .clouds .cloud-2 {
    left: 170px;
    top: 60px;
  }
  section.our-history .clouds .cloud-3 {
    left: 20px;
  }
  section.our-history .clouds .cloud-4 {
    left: 370px;
    top: 120px;
  }
  .burger-menu {
    display: block;
  }
  nav.main-nav .desktop-nav.right-nav .nav-items,
  nav.main-nav .nav-contact-details {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .fixed {
    position: relative;
  }
  .generic-sidenav {
    padding-left: 0;
    padding-bottom: 0;
  }
  section.our-history .timeline .timeline-item .lakeside-icon {
    left: -5700px;
  }
  section.our-history .timeline .timeline-item .spinnaker-icon {
    left: -2510px;
  }
  section.our-history .timeline .timeline-item .hilsea-icon {
    left: 25px;
  }
  section.our-history .timeline .timeline-item .treasury-icon {
    left: -790px;
  }
  section.our-history .timeline .timeline-item .enterprise-icon {
    left: -1210px;
  }
  section.our-history .clouds .cloud-1 {
    left: 250px;
  }
  section.our-history .clouds .cloud-2 {
    left: 100px;
    top: 130px;
  }
  section.our-history .clouds .cloud-3 {
    left: 20px;
  }
  section.our-history .clouds .cloud-4 {
    left: 370px;
    top: 90px;
  }
  section.our-history .dates ul li {
    margin-bottom: 10px;
  }
  .paas-jump-to-section {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .imago-products .imago-product-tile .bento-box img {
    width: 50%;
  }
  .careers-middle #careerImage2 {
    background-position: center center;
  }
  section.our-history .timeline .timeline-item .lakeside-icon {
    left: -5740px;
  }
  section.our-history .timeline .timeline-item .spinnaker-icon {
    left: -2580px;
  }
  section.our-history .timeline .timeline-item .hilsea-icon {
    left: -25px;
  }
  section.our-history .timeline .timeline-item .treasury-icon {
    left: -830px;
  }
  section.our-history .timeline .timeline-item .enterprise-icon {
    left: -1260px;
  }
  section.our-history .clouds {
    display: none;
  }
}
/*# sourceMappingURL=theme.css.map */