strong,
b {
  font-weight: bold;
}
.bold {
  font-weight: bold;
}
.xbold {
  font-weight: 800;
}
.black {
  font-weight: 900;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.light {
  font-weight: 300;
}
.floatleft {
  float: left;
}
.floatright {
  float: right;
}
.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.redback {
  background: Red;
}
.redshine {
  box-shadow: 0 0 10px red;
}
.redshine2 {
  box-shadow: inset 0 0 10px red;
}
.blackshine {
  box-shadow: 0 0 5px 0 #000;
}
.redborder {
  border: 1px solid red;
}
.hidden {
  display: none;
}
.center {
  text-align: center;
}
.clear {
  clear: both;
}
.sizing {
  box-sizing: border-box;
}
div.clear {
  clear: both;
}
body {
  line-height: 1.2;
}
body * {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
}
body *:after,
body *:before {
  content: "";
  display: none;
  background-repeat: no-repeat;
  background-position: center center;
}
.trans {
  transition: all 0.2s ease;
}
.responsive {
  display: none;
}
.clearfix:after {
  content: "";
  clear: both;
  display: table;
}
a:link,
a:visited {
  color: #0054ce;
  text-decoration: none;
}
a:hover {
  color: #006ec3;
  text-decoration: none;
}
a img {
  border: 0;
}
input {
  font-size: 14px;
}
button,
a.button,
.button {
  transition: all 0.2s ease;
}
.half {
  flex: 1 1 50%;
}
.centerdiv {
  display: block;
  float: left;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
.centerdiv:after {
  clear: both;
  display: table;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  animation: fadeIn 0.3s linear 1;
}
.slideDown {
  transition: height 0.3s ease-in;
  height: 0;
  overflow: hidden;
  display: block;
}
.slideUp {
  transition: height 0.3s ease-in;
  overflow: hidden;
  display: block;
  height: 0;
}
/* design */
body {
  background: #fff;
  font-size: 16px;
  color: #173757;
  margin: 0px;
  padding: 0px;
  padding-top: 120px;
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}
.body {
  width: 100%;
  margin: auto;
  position: relative;
}
.body:after {
  content: "";
  clear: both;
  display: table;
}
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  transition: all 0.2s ease;
  z-index: 20000;
}
.topbar {
  color: #fff;
  background: #0051a1;
  line-height: 45px;
  max-height: 100px;
  overflow: auto;
  font-size: 16px;
}
.topbar .body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.topbar .topbar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: 5px;
}
.topbar .topbar-text p {
  line-height: 18px;
}
.topbar .topbar-button {
  flex: 0 1 auto;
}
.topbar .topbar-button a {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 45px;
  padding-right: 10px;
  padding-left: 15px;
  white-space: nowrap;
}
.topbar .topbar-button a:after {
  display: inline-block;
  width: 7px;
  height: 25px;
  background-image: url(images/arrow-lightblue-right.png);
  background-size: 7px;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 3px;
}
.topbar .topbar-button a:hover {
  background-color: #1975cf;
}
#header-area {
  max-height: 100%;
  height: 75px;
  background-color: #e3e8ee;
}
#header-area > .body {
  display: flex;
  align-items: stretch;
  height: 100%;
}
#logo-area {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
}
a.logo {
  display: block;
  margin-left: 0px;
  width: 190px;
  height: 50px;
  transition: all 0.2s ease;
}
a.logo img {
  width: 100%;
  object-fit: contain;
}
#menu-area {
  flex: 1 1 auto;
}
#menubutton {
  flex: 0 1 auto;
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 20001;
  margin-top: 4px;
  margin-right: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
#menubutton a {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: block;
  background: #fff;
  border-radius: 5px;
  box-shadow: inset 0 0 1px 0px #0051A1;
}
#menubutton a:after {
  color: #0051A1;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: 19px;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}
#menubutton a:hover:after {
  color: #000;
}
#menu {
  margin-left: 50px;
  margin-top: 0px;
}
#menu > ul {
  display: flex;
}
#menu > ul > li {
  flex: 0 1 auto;
  margin-right: 3px;
}
#menu > ul > li > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #15253d;
  padding: 0px 22px 0px 22px;
  line-height: 75px;
  white-space: nowrap;
}
#menu > ul > li:hover > a {
  background: #fff;
  color: #000;
}
#menu > ul > li.dropdown {
  position: relative;
  margin-right: 10px;
}
#menu > ul > li.dropdown > a {
  padding-right: 15px;
  position: relative;
}
#menu > ul > li.dropdown > a:after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  height: 5px;
  width: 10px;
  background-image: url(images/menu-arrow.png);
  background-size: contain;
}
#menu > ul > li.dropdown > div {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1000;
  top: 75px;
  right: 50%;
  transform: translate(50%);
  background: #fff;
  padding: 10px 15px 10px 15px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
}
#menu > ul > li.dropdown > div ul li {
  display: block;
}
#menu > ul > li.dropdown > div ul li a {
  display: block;
  white-space: nowrap;
  padding: 10px 20px;
  color: #15253d;
  font-size: 16px;
  font-weight: bold;
}
#menu > ul > li.dropdown > div ul li a:hover {
  background: #15253d;
  color: #fff;
}
#menu > ul > li.dropdown > div.large-dropdown {
  transform: translate(65%);
}
#menu > ul > li.dropdown > div.large-dropdown ul {
  display: flex;
}
#menu > ul > li.dropdown > div.large-dropdown ul li {
  flex: 1 1 0;
}
#menu > ul > li.dropdown > div.large-dropdown ul a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 250px;
  white-space: wrap;
  padding: 10px;
  padding-bottom: 20px;
}
#menu > ul > li.dropdown > div.large-dropdown ul a img {
  width: 100px;
  height: 80px;
  object-fit: contain;
}
#menu > ul > li.dropdown > div.large-dropdown ul a strong {
  font-size: 18px;
  color: #15253d;
  margin: 0px 0;
  height: 3em;
  display: flex;
  align-items: center;
}
#menu > ul > li.dropdown > div.large-dropdown ul a small {
  font-size: 14px;
  color: #006ec3;
  font-weight: 500;
}
#menu > ul > li.dropdown > div.large-dropdown ul a:hover img {
  filter: brightness(2);
}
#menu > ul > li.dropdown > div.large-dropdown ul a:hover strong {
  color: #ffffff;
}
#menu > ul > li.dropdown > div.large-dropdown ul a:hover small {
  color: #6cbdff;
}
#menu > ul > li.dropdown:hover > div {
  visibility: visible;
  opacity: 1;
}
#menu > ul > li.get-started {
  background: linear-gradient(to right, #bbcbdf, rgba(187, 203, 223, 0));
  padding-left: 45px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
#menu > ul > li.get-started > a {
  line-height: 45px;
  padding: 0 20px;
}
#menu > ul > li.get-started:hover > a {
  background: transparent;
}
#menu > ul > li.get-started:before {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1px;
  border-left: 37px solid #e3e8ee;
  border-top: 37px solid transparent;
  border-bottom: 37px solid transparent;
  transform: translateY(-50%);
}
#menu > ul > li.get-started > a {
  color: #0054ff;
  position: relative;
  padding-left: 40px;
  border-radius: 10px;
}
#menu > ul > li.get-started > a img {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
}
#menu > ul > li.get-started > a:hover {
  background: #fff;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 5px 1px #7d99bf;
}
#menu > ul > li.get-started > a:hover img {
  transition: all 1.5s ease-out;
  transform: translateY(-50%) rotate(240deg) scale(1.2);
}
#menu > ul > li.right-menu-separator {
  flex: 1 1 auto;
}
#header.scrolled {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  height: auto;
}
#header.scrolled .topbar {
  overflow: hidden;
  max-height: 6px;
  background-color: #0084ff;
  transition: all 0.2s ease;
}
#header.scrolled .topbar > * {
  visibility: hidden;
}
#header.scrolled a.logo {
  width: 133px;
  height: 35px;
}
#header.scrolled #header-area {
  height: 50px;
}
#header.scrolled #menu > ul > li > a {
  line-height: 50px;
}
#header.scrolled #menu > ul > li.dropdown > div {
  top: 50px;
}
#header.scrolled #menu > ul > li.get-started {
  padding: 0 10px;
  padding-left: 20px;
}
#header.scrolled #menu > ul > li.get-started:before {
  border-left: 17px solid #e3e8ee;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
.body {
  margin-right: 20px;
  margin-left: 20px;
  width: auto;
  min-width: 320px;
}
.narrow-body {
  margin-right: 20px;
  margin-left: 20px;
  width: auto;
  min-width: 320px;
}
.wide-body {
  margin-right: 20px;
  margin-left: 20px;
  width: auto;
  min-width: 320px;
}
@media screen and (min-width: 1860px) {
  wide-body {
    min-width: 1820px;
  }
  .wide-body {
    width: 1820px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1700px) {
  body {
    min-width: 1660px;
  }
  .body {
    width: 1660px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1500px) {
  .narrow-body {
    width: 1460px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1280px) {
  #menu {
    margin-left: 30px;
  }
  #menu > ul > li > a {
    padding: 0 10px;
  }
  #menu > ul > li.dropdown > a {
    padding-right: 5px;
  }
  #menu > ul > li.get-started {
    padding-left: 5px;
    background: transparent;
  }
  #menu > ul > li.get-started:before {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  #header-area > .body {
    display: block;
  }
  #logo-area {
    float: left;
    margin-top: 7px;
  }
  #menubutton {
    float: right;
    display: block;
  }
  #header,
  #header.scrolled {
    height: auto;
  }
  #header a.logo,
  #header.scrolled a.logo {
    width: 133px;
    height: 35px;
  }
  #header #header-area,
  #header.scrolled #header-area {
    height: 50px;
  }
  #header #menu > ul > li > a,
  #header.scrolled #menu > ul > li > a {
    line-height: 50px;
  }
  #header #menu > ul > li.dropdown > div,
  #header.scrolled #menu > ul > li.dropdown > div {
    top: 50px;
  }
  #header #menu > ul > li.get-started,
  #header.scrolled #menu > ul > li.get-started {
    padding: 0 10px;
    padding-left: 20px;
  }
  #header #menu > ul > li.get-started:before,
  #header.scrolled #menu > ul > li.get-started:before {
    border-left: 17px solid #e3e8ee;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
  }
  body {
    -webkit-text-size-adjust: none;
  }
  .responsive {
    display: block;
  }
  #menu {
    clear: both;
    float: right;
    position: absolute;
    right: 0;
    top: 40px;
    display: none;
    z-index: 20000;
  }
  #menu-area {
    width: 100%;
    max-width: 480px;
    position: fixed;
    right: -400px;
    top: 0px;
    bottom: 0;
    background: rgba(227, 232, 238, 0.95);
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #menu-area.visible {
    right: 0px;
    display: block;
  }
  #header #menu,
  #header.scrolled #menu {
    display: block;
    width: 100%;
    top: 40px;
    padding-bottom: 100px;
    padding-right: 20px;
    padding-left: 20px;
  }
  #header #menu > ul,
  #header.scrolled #menu > ul {
    width: 100%;
    flex-direction: column;
    padding: 0;
    border-top: 1px solid rgba(0, 81, 161, 0.5);
  }
  #header #menu > ul > li.show-on-mobile,
  #header.scrolled #menu > ul > li.show-on-mobile {
    display: block;
  }
  #header #menu > ul > li.hide-on-mobile,
  #header.scrolled #menu > ul > li.hide-on-mobile {
    display: none;
  }
  #header #menu > ul > li,
  #header.scrolled #menu > ul > li {
    margin: 0;
  }
  #header #menu > ul > li > a,
  #header.scrolled #menu > ul > li > a {
    padding-left: 20px;
    margin: 0;
    position: relative;
    line-height: 50px;
    border-bottom: 1px solid rgba(0, 81, 161, 0.5);
  }
  #header #menu > ul > li > a:hover,
  #header.scrolled #menu > ul > li > a:hover {
    background: transparent;
  }
  #header #menu > ul > li > a.hide-on-mobile,
  #header.scrolled #menu > ul > li > a.hide-on-mobile {
    display: none;
  }
  #header #menu > ul > li:hover > a,
  #header.scrolled #menu > ul > li:hover > a {
    background: transparent;
  }
  #header #menu > ul > li.dropdown:after,
  #header.scrolled #menu > ul > li.dropdown:after,
  #header #menu > ul > li.dropdown:hover:after,
  #header.scrolled #menu > ul > li.dropdown:hover:after,
  #header #menu > ul > li.dropdown:before,
  #header.scrolled #menu > ul > li.dropdown:before,
  #header #menu > ul > li.dropdown:hover:before,
  #header.scrolled #menu > ul > li.dropdown:hover:before {
    display: none;
  }
  #header #menu > ul > li.dropdown > a,
  #header.scrolled #menu > ul > li.dropdown > a {
    color: #0051A1;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 81, 161, 0.5);
    text-align: center;
  }
  #header #menu > ul > li.dropdown > a:after,
  #header.scrolled #menu > ul > li.dropdown > a:after {
    display: none;
  }
  #header #menu > ul > li.dropdown > div,
  #header.scrolled #menu > ul > li.dropdown > div {
    visibility: visible;
    opacity: 1;
    position: relative;
    left: auto;
    right: auto;
    width: auto;
    transform: none;
    position: static;
    background: transparent;
    display: block;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 81, 161, 0.5);
  }
  #header #menu > ul > li.dropdown > div ul li a,
  #header.scrolled #menu > ul > li.dropdown > div ul li a {
    font-weight: 500;
  }
  #header #menu > ul > li.dropdown > div.large-dropdown,
  #header.scrolled #menu > ul > li.dropdown > div.large-dropdown {
    background-color: #fff;
  }
  #header #menu > ul > li.dropdown > div.large-dropdown ul,
  #header.scrolled #menu > ul > li.dropdown > div.large-dropdown ul {
    flex-wrap: wrap;
  }
  #header #menu > ul > li.dropdown > div.large-dropdown ul li,
  #header.scrolled #menu > ul > li.dropdown > div.large-dropdown ul li {
    flex: 1 1 50%;
  }
  #header #menu > ul > li.dropdown > div.large-dropdown ul a,
  #header.scrolled #menu > ul > li.dropdown > div.large-dropdown ul a {
    width: auto;
  }
  #header #menu > ul > li.get-started,
  #header.scrolled #menu > ul > li.get-started {
    padding: 10px 0;
  }
  #header #menu > ul > li.get-started > a,
  #header.scrolled #menu > ul > li.get-started > a {
    padding-left: 45px;
    border-radius: 0;
  }
}
@media screen and (max-width: 970px) {
  body.noscroll {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .body {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 640px) {
  .topbar .topbar-button a span {
    display: none;
  }
}
#footer {
  background-color: #08111D;
}
#footer .body {
  overflow-x: clip;
}
#footer .logo-bar-previous {
  background-color: #0e1929;
  padding: 20px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 calc(100% - 30px), calc(50% - 240px) calc(100% - 30px), calc(50% - 210px) calc(100%), calc(50% + 210px) calc(100%), calc(50% + 240px) calc(100% - 30px), 100% calc(100% - 30px), 100% 0, 0 0);
}
#footer .logo-bar-previous img {
  max-width: 380px;
  transform: translateX(-5%);
}
#footer .logo-bar {
  background-color: #172236;
  padding: 20px;
  height: 90px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer .logo-bar img {
  position: relative;
  z-index: 30;
  width: 140px;
  height: 140px;
  object-fit: contain;
  background-color: #172236;
  border-radius: 30px;
  box-shadow: 5px 0 0 0 #2d3d5b, -5px 0 0 0 #08111d;
}
#footer .s-icons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 50px 0;
}
#footer .s-icons img {
  width: 50px;
  height: 50px;
}
#footer .contact-info {
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
  max-width: 680px;
}
#footer .contact-info .contact-line {
  padding: 10px;
  display: flex;
  border-top: 1px solid #19345c;
}
#footer .contact-info .contact-line:first-child {
  border-top: none;
}
#footer .contact-info .contact-line > div > div {
  margin-bottom: 10px;
}
#footer .contact-info .contact-line > div {
  display: flex;
  flex-wrap: wrap;
}
#footer .contact-info .contact-line > div > div {
  margin-left: 25px;
}
#footer .contact-info .contact-line em {
  font-size: 24px;
  color: #3f5676;
  font-weight: 400;
  display: block;
  min-width: 100px;
  margin-left: 50px;
  white-space: nowrap;
}
#footer .contact-info .contact-line b {
  white-space: nowrap;
}
#footer .contact-info .contact-line a {
  color: #5fd7ff;
  font-weight: 400;
  white-space: nowrap;
}
#footer .content {
  display: flex;
  padding: 50px 0px;
}
#footer .footer-links {
  display: flex;
  flex: 1 1 1200px;
}
#footer .footer-links ul {
  flex: 0 1 300px;
  padding-right: 20px;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
}
#footer .footer-links ul li.title {
  font-size: 18px;
  font-weight: bold;
  color: #0080ff;
  padding: 30px 0 15px 10px;
}
#footer .footer-links ul li {
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 20px;
}
#footer .footer-links ul li a {
  padding-left: 10px;
  display: inline-block;
  color: #fff;
}
#footer .footer-links ul li a:hover {
  color: #999;
}
#footer .address-block {
  flex: 1 1 500px;
  font-size: 16px;
  color: #7388a7;
  line-height: 1.5em;
}
#footer .address-block .text {
  text-align: right;
}
#footer .footer-map {
  height: 70px;
  margin-bottom: 10px;
  position: relative;
}
#footer .footer-map .uk-map {
  position: absolute;
  max-width: 386px;
  width: 100%;
  height: 472px;
  right: 0;
  bottom: 0;
  background: url(images/uk-map.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  #footer .footer-map .uk-map {
    height: 200px;
  }
}
#footer .footer-map .pin {
  position: relative;
  width: 80px;
  height: 80px;
  top: 70%;
  left: 70%;
  transform: translate(-50%, -50%);
  background: url(images/map-pin.png) center center no-repeat;
  background-size: contain;
}
#footer .footer-map .pin:before {
  display: block;
  position: absolute;
  left: 30px;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: inset 0 0 5px #fff, 0 0 5px #fff;
  animation: pulse 10s infinite;
}
.footer-bottom {
  border-top: 1px solid #19345c;
  font-size: 16px;
  text-align: center;
  position: relative;
  padding-bottom: 50px;
}
.footer-bottom .bottom-links {
  color: #999;
  padding: 30px 10px;
}
.footer-bottom .bottom-links a {
  color: #fff;
  margin: 10px 10px;
  display: inline-block;
}
.footer-bottom .copyright {
  color: #607492;
}
.footer-bottom a.btt {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 50%;
  font-size: 16px;
  color: #fff;
  background-color: #283a53;
  line-height: 2.5em;
  padding: 0 1.5em 0 1.5em;
}
.footer-bottom a.btt:after {
  display: inline-block;
  width: 10px;
  height: 20px;
  background: url(images/arrow-white-right.png) no-repeat center center;
  background-size: contain;
  content: "";
  vertical-align: bottom;
  margin-left: 20px;
  transform: rotate(-90deg);
  transform-origin: 0% 30%;
}
.footer-bottom a.btt:hover {
  background-color: #0080ff;
}
@media screen and (max-width: 1500px) {
  #footer .footer-map .uk-map {
    position: absolute;
    max-width: 286px;
    width: 100%;
    height: 372px;
  }
}
@media screen and (max-width: 1200px) {
  #footer .content {
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer .address-block {
    flex: 0 1 700px;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 100px;
  }
  #footer .footer-map {
    flex: 1 1 200px;
    height: auto;
    position: relative;
  }
  #footer .footer-map .uk-map {
    position: absolute;
    width: 200px;
    height: 300px;
    right: 0;
    top: 0;
    transform: translate(0, -40%);
    background: url(images/uk-map.svg) no-repeat center center;
    background-size: contain;
  }
  #footer .address-block .text {
    flex: 1 1 calc(100% - 220px);
  }
}
@media screen and (max-width: 1200px) and screen and (max-width: 1200px) {
  #footer .footer-map .uk-map {
    height: 200px;
  }
}
@media screen and (max-width: 970px) {
  .footer-bottom a.btt {
    position: relative;
    margin-top: 30px;
  }
  #footer .logo-bar-previous img {
    max-width: 240px;
  }
  #footer .logo-bar img {
    max-width: 240px;
  }
}
@media screen and (max-width: 870px) {
  #footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer .footer-links ul {
    flex: 1 1 50%;
    max-width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #footer .address-block {
    margin-top: 50px;
    flex-direction: column-reverse;
    align-items: center;
  }
  #footer .address-block .text {
    flex: 1 1 auto;
    text-align: center;
  }
  #footer .footer-map {
    height: auto;
    flex: 1 1 auto;
  }
  #footer .footer-map .uk-map {
    position: static;
    transform: none;
  }
  #footer .content {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  #footer .contact-info {
    font-size: 16px;
    padding-left: 0;
  }
  #footer .contact-info .contact-line em {
    margin-left: 0;
    font-size: 18px;
    min-width: 75px;
  }
}
.home-hero-area {
  position: relative;
  height: 645px;
  background-color: #050d1d;
}
.home-hero-area #animation-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle farthest-corner at 60% 20%, #18356f, rgba(24, 53, 111, 0)), radial-gradient(circle closest-corner at 40% 80%, #172c56, #000916);
}
.home-hero-area canvas {
  display: block;
}
.home-hero-area .hero-content {
  position: relative;
  height: 100%;
}
.home-hero-area .hero-content .content-text {
  max-width: 950px;
}
.home-hero-area .hero-content .title {
  color: #fff;
  padding-top: 5px;
}
.home-hero-area .hero-content .title h1,
.home-hero-area .hero-content .title h2 {
  font-weight: 300;
  line-height: 1em;
}
.home-hero-area .hero-content .title h1 {
  font-size: 70px;
  padding-top: 5px;
}
.home-hero-area .hero-content .title h2 {
  font-size: 52px;
  padding-top: 5px;
}
.home-hero-area .hero-content .title strong {
  font-weight: 900;
}
.home-hero-area .hero-content p {
  color: #b9d0ff;
  font-size: 22px;
  margin-top: 30px;
  padding: 10px;
  position: relative;
  left: -10px;
}
.home-hero-area .content-text {
  padding: 150px 0 0 50px;
}
.thin-hero-area {
  background: radial-gradient(circle farthest-corner at 60% 20%, #18356f, rgba(24, 53, 111, 0)), radial-gradient(circle closest-corner at 40% 80%, #172c56, #000916);
}
.thin-hero-area .hero-title {
  text-align: center;
  padding: 50px 0;
}
.thin-hero-area .hero-title h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1em;
}
.thin-hero-area .hero-title p {
  color: #fff;
  font-size: 20px;
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.33em;
}
.get-started-hero-area {
  position: relative;
  background-color: #050d1d;
}
.get-started-hero-area #animation-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00264B;
}
.get-started-hero-area canvas {
  display: block;
}
@media screen and (max-width: 1400px) {
  .home-hero-area .hero-content {
    background: rgba(19, 41, 85, 0.5);
  }
  .home-hero-area .hero-content p {
    color: #fff;
  }
}
@media screen and (max-width: 970px) {
  .home-hero-area {
    height: 500px;
  }
  .home-hero-area canvas {
    display: none;
  }
  .home-hero-area #animation-container {
    background: url(images/home-animation-placeholder.jpg) 50% 50% no-repeat;
    background-size: cover;
  }
  .home-hero-area .hero-content {
    text-align: center;
  }
  .home-hero-area .hero-content .title h1 {
    font-size: 50px;
  }
  .home-hero-area .hero-content .title h2 {
    font-size: 36px;
  }
  .home-hero-area .hero-content p {
    font-size: 18px;
  }
  .home-hero-area .content-text {
    padding: 70px 20px 0 20px;
  }
}
.home-hero-circle {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 150px;
  overflow: hidden;
  margin-top: 54px;
}
.home-hero-circle .scroll-frame-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 110%;
  height: 110%;
  box-shadow: 0 0 10px red;
  overflow: auto;
}
.home-hero-circle .scroll-frame-2 {
  height: 3000px;
  position: relative;
}
.home-hero-circle .scroll-frame-3 {
  position: sticky;
  left: 0;
  top: 0;
}
.home-hero-circle .scroll-frame-4 {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  height: 100%;
  padding-left: 50px;
  z-index: 1;
}
.home-hero-circle .circle-container {
  position: relative;
  top: 10px;
  width: 120px;
  height: 120px;
}
.home-hero-circle .orbit-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 3px solid #005298;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-hero-circle .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00ffff;
  opacity: 0.3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-hero-circle .dot.active {
  opacity: 1;
}
.home-hero-circle .dot.adjacent {
  opacity: 0.5;
}
.home-hero-circle .services-list {
  flex: 1;
  margin-left: 20px;
  position: relative;
  height: 150px;
}
.home-hero-circle .service-item {
  position: absolute;
  left: 0;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
  transform-origin: -12% 50%;
  display: flex;
  align-items: center;
  color: #fff;
}
.home-hero-circle .service-title {
  font-size: 24px;
  font-weight: bold;
  color: #99bbff;
  margin-bottom: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-hero-circle .cta-button {
  background: #b1d1ff;
  color: #1a2332;
  display: inline-block;
  line-height: 45px;
  font-size: 20px;
  padding: 0 46px 0 33px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0px 40px rgba(140, 187, 255, 0.25);
  position: relative;
  margin-left: 60px;
  top: -3px;
  opacity: 0;
}
.home-hero-circle .cta-button:after {
  position: absolute;
  display: block;
  width: 47px;
  height: 45px;
  left: -46px;
  top: 0px;
  background: #b1d1ff;
  clip-path: polygon(0 21px, 32px 21px, 45px 0, 47px 0, 47px 45px, 45px 45px, 32px 24px, 0 24px);
}
.home-hero-circle .cta-button:before {
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  left: -50px;
  top: 17px;
  border-radius: 50%;
  background: #b1d1ff;
}
.home-hero-circle .service-item.active .service-title {
  color: #fff;
}
.home-hero-circle .service-item.active .cta-button {
  opacity: 1;
}
.home-hero-circle .cta-button:hover {
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(168, 213, 240, 0.6);
}
@media screen and (max-width: 890px) {
  .home-hero-circle {
    display: none;
  }
  .home-hero-area {
    height: auto;
  }
  .home-hero-area .hero-content {
    padding-bottom: 50px;
  }
}
.line-separator {
  position: relative;
}
.line-separator.ls-top-left:before,
.line-separator.ls-top-right:before {
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  height: 7px;
}
.line-separator.ls-top-left:before {
  clip-path: polygon(0 0, 80% 0, 0 100%);
}
.line-separator.ls-top-right:before {
  clip-path: polygon(100% 0, 20% 0, 100% 100%);
}
.line-separator.ls-bottom-left:after,
.line-separator.ls-bottom-right:after {
  display: block;
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 10px;
}
.line-separator.ls-bottom-left:after {
  clip-path: polygon(0 0, 80% 100%, 0 100%);
}
.line-separator.ls-bottom-right:after {
  clip-path: polygon(20% 100%, 100% 100%, 100% 0);
}
.line-separator.ls-top-blue:before {
  background-color: #0080ff;
}
.line-separator.ls-top-cyan:before {
  background-color: #00deff;
}
.line-separator.ls-bottom-blue:after {
  background-color: #0080ff;
}
.line-separator.ls-bottom-cyan:after {
  background-color: #00deff;
}
a.button,
button.button {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  display: inline-block;
  transition: all 0.2s ease;
  line-height: 2.3em;
  border-radius: 0;
  border: none;
  padding: 0 1.25em 0 1.25em;
  cursor: pointer;
  color: #fff;
  background-color: #0054ce;
}
a.button.wide,
button.button.wide {
  padding: 0 2.1em 0 2.1em;
}
a.button:hover,
button.button:hover {
  color: #fff;
  background-color: #003f99;
}
a.button.blue,
button.button.blue {
  color: #fff;
  background-color: #0054ce;
}
a.button.blue:hover,
button.button.blue:hover {
  background-color: #003f99;
}
a.button.white,
button.button.white {
  color: #000;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #0054ce;
}
a.button.white:hover,
button.button.white:hover {
  color: #0054ce;
}
a.button.transparent,
button.button.transparent {
  color: #0054ce;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #0054ce;
}
a.button.transparent.no-border,
button.button.transparent.no-border {
  box-shadow: none;
}
a.button.transparent:hover,
button.button.transparent:hover {
  color: #003f99;
}
a.button.big,
button.button.big {
  font-size: 24px;
}
a.button.small,
button.button.small {
  font-size: 18px;
}
a.button.arrow,
button.button.arrow {
  position: relative;
  padding-left: 2em;
  padding-right: 1.3em;
}
a.button.arrow:after,
button.button.arrow:after {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(images/arrow-white-right.png) no-repeat center center;
  background-size: contain;
  position: relative;
  top: 0.18em;
  margin-left: 0.8em;
}
a.button.transparent.arrow:after,
button.button.transparent.arrow:after {
  background: url(images/arrow-blue-right.png) no-repeat center center;
  background-size: contain;
}
.white-section {
  background: #fff;
}
.skyblue-section {
  background: #f1f7ff;
}
.lightblue-section {
  background-color: #DAE5F3;
}
.darkblue-section {
  background-color: #112440;
}
.black-section {
  background-color: #000;
}
.section-title {
  text-align: center;
  padding: 30px 10px;
  margin: auto;
  max-width: 1120px;
}
.section-title h1 {
  font-size: 42px;
  color: #003f99;
  font-weight: 800;
}
.section-title h2 {
  color: #003f99;
  font-size: 36px;
  font-weight: 800;
}
.section-title p {
  color: #173757;
  font-size: 18px;
  line-height: 1.5em;
}
.section-title h2 + p {
  margin-top: 20px;
}
.section-title h3 {
  font-size: 28px;
  color: #173757;
  font-weight: 800;
}
h2,
h3,
h4,
h5 {
  margin-left: auto;
  margin-right: auto;
}
h1 {
  font-size: 42px;
  font-weight: bold;
}
h2 {
  font-size: 40px;
  font-weight: normal;
}
h3 {
  font-size: 36px;
  font-weight: normal;
}
h4 {
  font-size: 28px;
  font-weight: normal;
}
h5 {
  font-size: 20px;
  color: #4e4e4e;
  margin: 5px auto;
}
.text-page {
  padding: 30px;
  margin: 30px auto;
  max-width: 1200px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.text-page p {
  margin: 10px auto;
  color: #444;
}
.text-page h1 {
  margin: 20px auto;
  color: #0054ce;
}
.text-page h2,
.text-page h3,
.text-page h4,
.text-page h5,
.text-page h6 {
  margin: 10px auto;
  color: #173757;
  font-weight: bold;
}
.text-page h1 {
  font-size: 32px;
}
.text-page h2 {
  font-size: 24px;
}
.text-page h3 {
  font-size: 20px;
}
.text-page h4 {
  font-size: 18px;
}
.text-page h5 {
  font-size: 16px;
}
.text-page h6 {
  font-size: 16px;
}
.text-page ul,
.text-page ol {
  margin: 20px auto;
}
.text-page ul li {
  list-style: square inside;
  margin: 0.5em auto 0.5em 20px;
  padding-left: 10px;
}
.text-page ol li {
  list-style: decimal inside;
  margin: 0.5em auto 0.5em 20px;
  padding-left: 10px;
}
form.pretty label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  margin: 5px 0;
}
form.pretty input,
form.pretty textarea,
form.pretty select {
  display: block;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #000;
  background-color: #fff;
  width: 100%;
}
form.pretty option {
  padding: 10px;
}
.two-parts {
  display: flex;
  align-items: flex-start;
}
.two-parts > div {
  flex: 1 1 50%;
}
.section-title-left {
  padding: 30px 0;
  color: #173757;
  font-size: 32px;
  font-weight: 800;
}
@media screen and (max-width: 1100px) {
  .two-parts {
    display: block;
  }
  .text-page {
    margin: 20px 20px;
    padding: 30px 20px;
    max-width: 100%;
  }
}
@media screen and (max-width: 970px) {
  .section-title-left {
    font-size: 26px;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .section-title {
    padding: 20px 10px;
  }
  .section-title h1 {
    font-size: 30px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .section-title h3 {
    font-size: 22px;
  }
  h1 {
    margin-bottom: 10px;
  }
  h2 {
    font-size: 32px;
    line-height: 1em;
    margin-bottom: 5px;
  }
  h3 {
    font-size: 26px;
    line-height: 1em;
    margin-bottom: 5px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
}
.big-intro-area {
  background-color: #fff;
  padding: 55px 0 45px;
  text-align: center;
}
.big-intro-area h1 {
  color: #0054ce;
  font-size: 48px;
  font-weight: 800;
  line-height: 1em;
}
.big-intro-area h2 {
  color: #003f99;
  font-size: 36px;
  font-weight: 800;
  line-height: 1em;
  margin-top: 5px;
}
.big-intro-area p {
  color: #173757;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
  max-width: 1030px;
  margin: 25px auto;
}
.separator-arrow-1 {
  position: relative;
}
.separator-arrow-1:after {
  display: block;
  width: 100px;
  height: 40px;
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 1;
  transform: translateX(-50%);
  background-image: url(images/separator-arrow-1.png);
  background-size: contain;
}
.lightbox-background {
  background: url(images/lens-flare-hex.png) 3% 33% no-repeat, url(images/lens-flare-hex.png) 8% 76% no-repeat, url(images/lens-flare-hex.png) 11% 79% no-repeat, url(images/lens-flare-hex.png) 93% 31% no-repeat, url(images/lens-flare-hex.png) 97% 35% no-repeat, url(images/lens-flare-hex.png) 94% 83% no-repeat, url(images/lens-flare-back-1.png) center 26% repeat-x, url(images/lens-flare-back-2.png) center 78% repeat-x, #dbe2ec;
}
.home-services-area {
  padding-top: 77px;
  padding-bottom: 88px;
  border-bottom: 1px solid #cbd2dc;
  min-height: 1150px;
}
.home-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home-services .service {
  flex: 1 1 30%;
  padding: 10px;
  border: 1px solid #abceff;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 64, 153, 0.2), inset 0 4px 0 #30303a;
}
.home-services .icon {
  padding: 5px 0 5px 5px;
}
.home-services .icon img {
  width: 150px;
  height: 125px;
  object-fit: contain;
}
.home-services .title {
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  padding-left: 22px;
  margin-top: 2px;
}
.home-services .subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #006ec3;
  padding-left: 22px;
  margin-top: 8px;
}
.home-services .description {
  margin-top: 25px;
  background-color: #f1f7ff;
  font-size: 18px;
  padding: 22px;
  padding-bottom: 30px;
  line-height: 1.5em;
}
.home-services .description p {
  margin-bottom: 20px;
  min-height: 6em;
}
.customer-logos {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 20px 20px;
  margin: 20px 0;
  gap: 20px;
}
.customer-logos img {
  width: 110px;
  height: 60px;
  object-fit: contain;
}
.reviews-area {
  position: relative;
  padding-top: 40px;
}
.reviews-area:before {
  display: block;
  width: 50%;
  height: 6px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #004466;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.reviews-area h2 {
  color: #002457;
}
.big-review-slider {
  background: linear-gradient(to bottom, transparent 20%, #f1f7ff 20%, #f1f7ff 80%, transparent 80%);
}
.big-review-slider .splide {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.big-review-slider .splide__arrows {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 180px;
}
.big-review-slider .splide__arrow {
  flex: 0 0 50px;
  height: 100px;
  width: 38px;
  background: url(images/arrow-testimonial.png) top center no-repeat;
  background-size: contain;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
}
.big-review-slider .splide__arrow > svg {
  display: none;
}
.big-review-slider .splide__arrow:disabled {
  opacity: 0.2;
}
.big-review-slider .splide__arrow--prev {
  transform: scale(-1, 1);
  left: -30px;
}
.big-review-slider .splide__arrow--next {
  right: -30px;
}
.big-review-slider .splide__track {
  margin: 0 60px;
}
.big-review-slider .review-card {
  border: 1px solid #abceff;
  background: #f1f7ff;
  max-width: 550px;
  padding: 0 4px;
}
.big-review-slider .review-card .person {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bold;
  padding: 20px;
}
.big-review-slider .review-card .person > * {
  flex: 0 1 auto;
}
.big-review-slider .review-card .avatar {
  border: 1px solid #a0b3ce;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  overflow: hidden;
}
.big-review-slider .review-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-review-slider .review-card .name {
  font-size: 20px;
  color: #000000;
  padding-left: 20px;
}
.big-review-slider .review-card .name em {
  color: #0054ce;
  display: block;
  margin-top: 5px;
}
.big-review-slider .review-card .quote {
  position: relative;
  padding: 35px 30px;
  margin: 30px;
  background: #fff;
}
.big-review-slider .review-card .quote:before {
  position: absolute;
  display: block;
  left: 36px;
  top: -30px;
  width: 60px;
  height: 30px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  background-color: #fff;
}
.big-review-slider .review-card .quote p {
  font-size: 22px;
  font-weight: 600;
  color: #00366c;
  line-height: 1.23em;
  text-indent: 25px;
  margin-top: 20px;
}
.stars {
  height: 21px;
  width: 120px;
  background-image: url(images/review-star.png);
  background-size: contain;
  background-repeat: repeat-x;
  display: inline-block;
}
.stars.stars-5 {
  width: 150px;
}
.stars.stars-4 {
  width: 120px;
}
.stars.stars-3 {
  width: 90px;
}
.stars.stars-2 {
  width: 60px;
}
.stars.stars-1 {
  width: 30px;
}
.trust-line {
  padding: 55px 20px 60px;
  text-align: center;
  font-size: 24px;
  color: #003f99;
}
.trust-line .rate {
  display: inline-block;
  border-radius: 5px;
  background-color: #01b878;
  padding: 5px 10px;
  margin: 0 5px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.trust-line .rate img {
  width: 19px;
}
.trust-line .trust {
  width: 150px;
  vertical-align: baseline;
  position: relative;
  top: 6px;
}
.trust-line a.button {
  margin-left: 20px;
  margin-top: 20px;
}
.home-map {
  position: relative;
  margin-top: 100px;
}
.home-map .decoration-background-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  overflow-x: clip;
}
.home-map .decoration-background-1:after {
  background: linear-gradient(to right, #1d2e46, #7791b9);
  position: absolute;
  display: block;
  left: -5%;
  top: -79px;
  height: 160px;
  width: 110%;
  transform: rotate(-2.6deg);
  opacity: 0.3;
}
.home-map .decoration-background-1:before {
  background-color: #385276;
  position: absolute;
  display: block;
  left: -5%;
  top: 20px;
  height: 20px;
  width: 110%;
  transform: rotate(2.6deg);
}
.home-map .decoration-background-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  overflow-x: clip;
}
.home-map .decoration-background-2:after {
  background: linear-gradient(to right, #1d2e46, #7791b9);
  position: absolute;
  display: block;
  left: -5%;
  top: -79px;
  height: 160px;
  width: 110%;
  transform: rotate(2.6deg);
  opacity: 0.3;
}
.home-map .decoration-background-2:before {
  background-color: #385276;
  position: absolute;
  display: block;
  left: -5%;
  bottom: -10px;
  height: 50px;
  width: 110%;
  transform: rotate(-2.6deg);
}
.home-map .content {
  position: relative;
  background: linear-gradient(to right, #1d2e46, #7791b9);
}
.home-map .body {
  display: flex;
  align-items: stretch;
}
.home-map .map-area {
  flex: 1 1 55%;
  width: 55%;
  position: relative;
  transform: scale(calc(1.33));
  transform-origin: 40% 40%;
}
.home-map .map-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
.home-map .map-area .map-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding-bottom: calc(100% / (1206 / 500));
}
.home-map .map-area .pin {
  position: absolute;
}
.home-map .map-area .pin:after {
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: url(images/map-pin.png) center center no-repeat;
  background-size: contain;
}
.home-map .map-area .pin:before {
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: inset 0 0 5px #fff, 0 0 5px #fff;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: scale(10);
    opacity: 0;
  }
}
.home-map .map-area .pin.animate:before {
  animation: pulse 10s infinite;
}
.home-map .text-area {
  flex: 1 1 45%;
  padding: 75px 0 50px 120px;
  color: #fff;
  font-size: 20px;
  position: relative;
}
.home-map .text-area h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1em;
}
.home-map .text-area p {
  font-size: 20px;
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.33em;
}
.live-stat-container {
  background-color: #fff;
  border: 1px solid #a6bad7;
  margin: 20px 0 70px;
  padding: 36px;
  display: flex;
}
.live-stat-container .stat-box {
  flex: 1 1 28%;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
.live-stat-container .stat-box + .stat-box {
  flex: 1 1 18%;
  border-left: 1px solid #607f92;
  padding-left: 30px;
  padding-right: 15px;
  padding-top: 20px;
}
.live-stat-container .stat-big-title {
  color: #003f99;
  font-size: 32px;
  font-weight: bold;
}
.live-stat-container .stat-big-desc {
  color: #173757;
  font-size: 18px;
  line-height: 1.3em;
}
.live-stat-container .stat-title {
  color: #003f99;
  font-size: 36px;
  font-weight: bold;
  line-height: 22px;
}
.live-stat-container .stat-title small {
  font-size: 22px;
  line-height: 1em;
}
.live-stat-container .stat-subtitle {
  color: #0080ff;
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}
.live-stat-container .stat-desc {
  color: #588ec4;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}
.live-stat-container .stat-update {
  font-size: 15px;
  color: #419bff;
  margin-top: 5px;
}
.live-stat-container .stat-update .stat-flash {
  display: inline-block;
  text-align: center;
  min-width: 0.7em;
}
.live-stat-container a.stat-update-button {
  background-color: #d8e8ff;
  color: #0080ff;
  font-size: 15px;
  margin-left: 10px;
  margin-top: 10px;
  display: inline-block;
  border-radius: 20px;
  line-height: 30px;
  font-weight: bold;
  padding: 5px 10px 5px 20px;
}
.live-stat-container a.stat-update-button:hover {
  background-color: #a8caff;
}
.live-stat-container a.stat-update-button i {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  background: url('images/update-arrow.png') no-repeat center center;
  background-size: contain;
}
.live-stat-container a.stat-update-button i.rotate {
  animation: spin 1s linear infinite;
}
.live-stat-container .stat-flash.active {
  animation: statflash 0.5s linear 1;
}
@keyframes statflash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modus-operandi-area {
  padding: 30px 0;
  background: url(images/lens-flare-hex-dark.png) 3% 33% no-repeat, url(images/lens-flare-hex-dark.png) 8% 76% no-repeat, url(images/lens-flare-hex-dark.png) 11% 79% no-repeat, url(images/lens-flare-hex-dark.png) 93% 31% no-repeat, url(images/lens-flare-hex-dark.png) 97% 35% no-repeat, url(images/lens-flare-hex-dark.png) 94% 83% no-repeat, url(images/lens-flare-back-1-dark.png) center 26% repeat-x, url(images/lens-flare-back-2-dark.png) center 78% repeat-x, #112440;
}
.modus-operandi-area .section-title h1 {
  color: #fff;
}
.modus-operandi-area .section-title h3 {
  color: #81b5ff;
}
.modus-operandi {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 10px auto 50px;
  position: relative;
}
.modus-operandi .modus-box {
  flex: 1 1 45%;
  border: 1px solid #164769;
  background-color: #0b1728;
  display: flex;
}
.modus-operandi .modus-box .text-area {
  padding: 70px 40px 90px 40px;
  flex: 1 1 50%;
}
.modus-operandi .modus-box .image-area {
  flex: 1 1 50%;
}
.modus-operandi .modus-box .title {
  font-weight: bold;
  font-size: 32px;
  color: #fff;
}
.modus-operandi .modus-box .subtitle {
  color: #4b8fd3;
  font-size: 18px;
  margin-top: 25px;
}
.modus-operandi .modus-box p {
  margin-top: 40px;
  font-size: 16px;
  color: #9ab2ca;
  line-height: 1.4em;
}
.modus-operandi .modus-box:nth-child(odd) .animated-phone {
  transform: rotate(-15deg);
  margin-top: 50px;
  margin-left: 35px;
}
.modus-operandi .modus-box:nth-child(even) .animated-phone {
  transform: rotate(15deg);
  margin-top: 50px;
  margin-left: 35px;
}
.animated-phone {
  width: 235px;
  height: 420px;
  border: 5px solid #0c192c;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 0px 5px 10px 0px #000;
  position: relative;
}
.animated-phone:before {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #0d2934;
}
.animated-phone .bottom-box {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  height: 36px;
  line-height: 36px;
  padding-left: 15px;
  background-color: #03191e;
  border: 1px solid #303a48;
  color: #196676;
  font-size: 12px;
}
.animated-phone .bottom-box:after {
  position: absolute;
  display: block;
  right: 10px;
  top: 7px;
  width: 20px;
  height: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 5px 50%);
  background-color: #134e5a;
}
.animated-phone .bottom-box.calendar-bottom-box {
  padding-left: 40px;
}
.animated-phone .bottom-box.calendar-bottom-box:after {
  right: auto;
  left: 10px;
  top: 9px;
  width: 16px;
  height: 16px;
  clip-path: polygon(40% 0%, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%, 0 40%, 40% 40%);
  background-color: #3e808e;
}
.animated-phone .dialog {
  margin: 50px 8px 30px;
  transition: all 0.2s ease;
}
.animated-phone .dialog .dialog-you {
  border-radius: 10px;
  background-color: #0d3f4a;
  color: #fff;
  padding: 17px;
  line-height: 1.5em;
  margin-left: 15px;
  position: relative;
}
.animated-phone .dialog .dialog-you:before {
  position: absolute;
  display: block;
  right: 40px;
  bottom: -24px;
  width: 35px;
  height: 25px;
  background-color: #0d3f4a;
  clip-path: polygon(0 0, 90% 0, 100% 100%);
}
.animated-phone .dialog .dialog-you:after {
  position: absolute;
  display: block;
  right: 7px;
  bottom: -35px;
  height: 30px;
  content: "You";
  color: #398d9f;
  font-weight: bold;
}
.animated-phone .dialog .dialog-vatora {
  border-radius: 10px;
  background-color: #055f98;
  color: #fff;
  padding: 17px;
  line-height: 1.5em;
  margin-right: 15px;
  margin-top: 40px;
  position: relative;
}
.animated-phone .dialog .dialog-vatora:before {
  position: absolute;
  display: block;
  left: 20px;
  bottom: -24px;
  width: 35px;
  height: 25px;
  background-color: #055f98;
  clip-path: polygon(100% 0, 10% 0, 0 100%);
}
.animated-phone .dialog .dialog-vatora:after {
  position: absolute;
  display: block;
  left: -25px;
  bottom: -40px;
  height: 35px;
  width: 40px;
  background: url(images/logo-blue.png) no-repeat center center;
  background-size: contain;
}
.animated-phone .dialog + .dialog {
  display: none;
}
.animated-phone .calendar {
  position: relative;
  margin-top: 40px;
  padding: 10px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 7px;
}
.animated-phone .calendar .month {
  flex: 1 1 30%;
  height: 55px;
  background-color: #0c1b1e;
  border: 1px solid #274c53;
  padding: 2px;
  position: relative;
}
.animated-phone .calendar .month:before {
  display: block;
  width: 8px;
  height: 7px;
  background-color: transparent;
  box-shadow: 20px 0 0 #093e49, 30px 0 0 #093e49, 40px 0 0 #093e49, 50px 0 0 #093e49, 0px 10px 0 #093e49, 10px 10px 0 #093e49, 20px 10px 0 #093e49, 30px 10px 0 #093e49, 40px 10px 0 #093e49, 50px 10px 0 #093e49, 0px 20px 0 #093e49, 10px 20px 0 #093e49, 20px 20px 0 #093e49, 30px 20px 0 #093e49, 40px 20px 0 #093e49, 50px 20px 0 #093e49, 0px 30px 0 #093e49, 10px 30px 0 #093e49, 20px 30px 0 #093e49, 30px 30px 0 #093e49, 40px 30px 0 #093e49, 50px 30px 0 #093e49, 0px 40px 0 #093e49, 10px 40px 0 #093e49, 20px 40px 0 #093e49, 30px 40px 0 #093e49;
}
.animated-phone .calendar.animate .month:after {
  position: absolute;
  display: block;
  left: 13px;
  top: 17px;
  width: 34px;
  height: 26px;
  background-color: #00d280;
  clip-path: polygon(5px 11px, 14px 21px, 29px 0, 34px 4px, 14px 26px, 0 15px);
  opacity: 0;
  animation: monthCheck 0.3s linear 1 forwards;
}
.animated-phone .calendar.animate .month:nth-child(1):after {
  animation-delay: 0.3s;
}
.animated-phone .calendar.animate .month:nth-child(2):after {
  animation-delay: 0.6s;
}
.animated-phone .calendar.animate .month:nth-child(3):after {
  animation-delay: 0.9s;
}
.animated-phone .calendar.animate .month:nth-child(4):after {
  animation-delay: 1.2s;
}
.animated-phone .calendar.animate .month:nth-child(5):after {
  animation-delay: 1.5s;
}
.animated-phone .calendar.animate .month:nth-child(6):after {
  animation-delay: 1.8s;
}
.animated-phone .calendar.animate .month:nth-child(7):after {
  animation-delay: 2.1s;
}
.animated-phone .calendar.animate .month:nth-child(8):after {
  animation-delay: 2.4s;
}
.animated-phone .calendar.animate .month:nth-child(9):after {
  animation-delay: 2.7s;
}
.animated-phone .calendar.animate .month:nth-child(10):after {
  animation-delay: 3s;
}
.animated-phone .calendar.animate .month:nth-child(11):after {
  animation-delay: 3.3s;
}
.animated-phone .calendar.animate .month:nth-child(12):after {
  animation-delay: 3.6s;
}
@keyframes monthCheck {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.partner-strip {
  background-color: #f1f7ff;
  padding: 35px 0 45px;
}
.partner-strip .partner-logos {
  margin: 20px 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-strip img {
  max-height: 100px;
  max-width: 200px;
  object-fit: contain;
}
.partner-strip img.desaturate {
  filter: contrast(20%) sepia(80%) hue-rotate(180deg);
  opacity: 0.5;
}
.get-started-section {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}
.get-started-section .title-logo {
  background: url(images/logo-wireframe.png) no-repeat center center;
  background-size: contain;
  height: 173px;
  padding-top: 52px;
}
.get-started-section .title {
  font-size: 48px;
  color: #3550c7;
  font-weight: 900;
  line-height: 70px;
  background-color: #fff;
}
.get-started-section .title em {
  color: #0096ff;
}
.get-started-section .text {
  margin: 20px auto;
  max-width: 920px;
  padding: 0 20px;
  font-size: 22px;
  font-weight: 500;
  color: #173757;
}
.get-started-section a.button {
  margin-top: 25px;
  line-height: 3em;
}
.blog-section {
  background-color: #DAE5F3;
  padding-bottom: 80px;
}
.blog-section .blog-boxes {
  display: flex;
  max-width: 1470px;
  margin: 0 auto;
  gap: 20px;
  justify-content: space-between;
}
.blog-section .image {
  height: 175px;
}
.blog-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-section .blog-box {
  flex: 0 1 420px;
  background-color: #fff;
  padding: 13px 13px 25px 13px;
}
.blog-section .title {
  color: #00366c;
  font-size: 24px;
  font-weight: 800;
  padding: 30px 20px;
}
.blog-section .details {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.blog-section .date {
  font-size: 18px;
  color: #526a81;
}
@media screen and (max-width: 1920px) {
  .lightbox-background {
    background: url(images/lens-flare-hex.png) 3% 33% no-repeat, url(images/lens-flare-hex.png) -1% 76% no-repeat, url(images/lens-flare-hex.png) 2% 80% no-repeat, url(images/lens-flare-hex.png) 95% 31% no-repeat, url(images/lens-flare-hex.png) 99% 35% no-repeat, url(images/lens-flare-hex.png) 98% 73% no-repeat, url(images/lens-flare-back-1.png) center 26% repeat-x, url(images/lens-flare-back-2.png) center 78% repeat-x, #dbe2ec;
  }
  .modus-operandi-area {
    background: url(images/lens-flare-hex-dark.png) 3% 33% no-repeat, url(images/lens-flare-hex-dark.png) -1% 76% no-repeat, url(images/lens-flare-hex-dark.png) 2% 80% no-repeat, url(images/lens-flare-hex-dark.png) 95% 31% no-repeat, url(images/lens-flare-hex-dark.png) 99% 35% no-repeat, url(images/lens-flare-hex-dark.png) 98% 73% no-repeat, url(images/lens-flare-back-1-dark.png) center 26% repeat-x, url(images/lens-flare-back-2-dark.png) center 78% repeat-x, #112440;
  }
}
@media screen and (max-width: 1380px) {
  .big-review-slider .splide__arrow--prev {
    left: 0;
  }
  .big-review-slider .splide__arrow--next {
    right: 0;
  }
  .home-map .text-area h2 {
    font-size: 36px;
  }
  .home-map .text-area p {
    font-size: 18px;
  }
  .modus-operandi .modus-box:nth-child(odd) .animated-phone,
  .modus-operandi .modus-box:nth-child(even) .animated-phone {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .modus-operandi {
    align-items: center;
    flex-direction: column;
  }
  .modus-operandi .modus-box {
    flex: 1 1 auto;
    max-width: 700px;
  }
  .modus-operandi .modus-box .text-area {
    padding-bottom: 30px;
    padding-top: 40px;
  }
  .modus-operandi .modus-box:nth-child(odd) .animated-phone {
    transform: rotate(-15deg) scale(0.9);
    margin-top: 0px;
  }
  .modus-operandi .modus-box:nth-child(even) .animated-phone {
    transform: rotate(15deg) scale(0.9);
    margin-top: 0px;
  }
}
@media screen and (max-width: 1200px) {
  .home-services {
    justify-content: center;
    flex-wrap: wrap;
  }
  .home-services .service {
    flex: 0 1 40%;
  }
  .home-map .map-area {
    flex: 1 1 50%;
    transform-origin: 40% -10%;
  }
  .home-map .text-area {
    flex: 1 1 50%;
    padding-top: 50px;
  }
  .live-stat-container {
    flex-wrap: wrap;
  }
  .live-stat-container .stat-box {
    flex: 1 1 100%;
    text-align: center;
    padding-bottom: 20px;
  }
  .live-stat-container .stat-box + .stat-box {
    flex: 1 1 25%;
    text-align: left;
  }
  .blog-section .title {
    font-size: 20px;
    padding: 20px 10px;
  }
  .blog-section .details {
    flex-direction: column;
  }
}
@media screen and (max-width: 970px) {
  .big-intro-area {
    padding: 35px 0 25px;
  }
  .big-intro-area h1 {
    font-size: 36px;
  }
  .big-intro-area h2 {
    font-size: 26px;
  }
  .home-map .body {
    flex-direction: column;
    align-items: center;
  }
  .home-map .map-area {
    flex: 1 1 auto;
    transform-origin: 40% 40%;
    width: 70%;
    overflow-x: clip;
  }
  .home-map .map-area .pin:after {
    width: 50px;
  }
  .home-map .text-area {
    flex: 1 1 auto;
    padding-top: 50px;
    padding-left: 5%;
  }
  .partner-strip .partner-logos {
    gap: 20px;
    justify-content: center;
  }
  .partner-strip img {
    max-height: 40px;
  }
  .get-started-section {
    padding: 30px 0;
  }
  .get-started-section .title-logo {
    height: 100px;
    padding-top: 25px;
  }
  .get-started-section .title {
    font-size: 32px;
    line-height: 50px;
  }
  .get-started-section .text {
    font-size: 18px;
  }
  .get-started-section a.button {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .home-services .service {
    flex: 1 1 35%;
  }
  .home-services .service .icon {
    width: 126px;
    height: 114px;
  }
  .home-services .service .icon img {
    width: 96px;
  }
  .live-stat-container .stat-box {
    flex: 1 1 100%;
  }
  .live-stat-container .stat-box + .stat-box {
    flex: 1 1 50%;
    border-bottom: 1px solid #607f92;
  }
  .modus-operandi .modus-box {
    overflow-x: clip;
  }
  .blog-section .blog-boxes {
    flex-direction: column;
    max-width: 400px;
  }
  .blog-section .blog-box {
    flex: 1;
  }
}
@media screen and (max-width: 580px) {
  .home-services .service {
    flex: 1 1 100%;
  }
  .big-review-slider .splide__arrow {
    height: 50px;
    width: 19px;
  }
  .big-review-slider .splide {
    padding: 0;
  }
  .big-review-slider .splide__track {
    margin: 0 30px;
  }
  .big-review-slider .review-card .person {
    flex-direction: column;
  }
  .big-review-slider .review-card .name {
    text-align: center;
    padding-left: 0;
  }
  .big-review-slider .review-card .quote {
    margin: 10px;
    padding: 10px;
  }
  .big-review-slider .review-card .quote p {
    font-size: 18px;
  }
  .trust-line {
    font-size: 20px;
  }
  .trust-line .rate {
    font-size: 20px;
  }
  .trust-line .trust {
    width: 125px;
  }
  .home-map .map-area .pin:after {
    width: 25px;
  }
  .live-stat-container {
    padding: 10px;
  }
  .live-stat-container .stat-big-title {
    font-size: 30px;
  }
  .live-stat-container .stat-box {
    flex: 1 1 100%;
  }
  .live-stat-container .stat-title {
    font-size: 26px;
  }
  .live-stat-container .stat-title small {
    font-size: 18px;
  }
  .live-stat-container .stat-subtitle {
    font-size: 14px;
  }
  .live-stat-container .stat-desc {
    font-size: 14px;
  }
  .modus-operandi .modus-box {
    overflow-x: clip;
    display: block;
    position: relative;
  }
  .modus-operandi .modus-box .text-area {
    padding: 30px 10px 20px 10px;
  }
  .modus-operandi .modus-box .title {
    font-size: 22px;
  }
  .modus-operandi .modus-box .subtitle {
    font-size: 15px;
  }
  .modus-operandi .modus-box p {
    font-size: 14px;
  }
  .modus-operandi .modus-box .text-area {
    position: relative;
    z-index: 3;
  }
  .modus-operandi .modus-box .title {
    padding-right: 140px;
  }
  .modus-operandi .modus-box .subtitle {
    padding-right: 140px;
  }
  .modus-operandi .modus-box .image-area {
    position: absolute;
    right: 0;
    top: 0;
    width: 170px;
    height: 100%;
    z-index: 2;
  }
  .modus-operandi .modus-box:nth-child(odd) .animated-phone {
    transform: rotate(-5deg) scale(0.5);
    transform-origin: 0 0;
  }
  .modus-operandi .modus-box:nth-child(even) .animated-phone {
    transform: rotate(5deg) scale(0.5);
    transform-origin: 0 0;
  }
}
.margin-top-5 {
  margin-top: 5px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-15 {
  margin-top: 15px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-25 {
  margin-top: 25px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-35 {
  margin-top: 35px;
}
.margin-top-40 {
  margin-top: 40px;
}
.margin-top-45 {
  margin-top: 45px;
}
.margin-top-50 {
  margin-top: 50px;
}
.margin-top-55 {
  margin-top: 55px;
}
.margin-top-60 {
  margin-top: 60px;
}
.margin-top-65 {
  margin-top: 65px;
}
.margin-top-70 {
  margin-top: 70px;
}
.margin-top-80 {
  margin-top: 80px;
}
.margin-top-90 {
  margin-top: 90px;
}
.margin-top-100 {
  margin-top: 100px;
}
.margin-top-110 {
  margin-top: 110px;
}
.margin-top-120 {
  margin-top: 120px;
}
.margin-top-130 {
  margin-top: 130px;
}
.margin-top-140 {
  margin-top: 140px;
}
.margin-top-150 {
  margin-top: 150px;
}
.margin-top-200 {
  margin-top: 200px;
}
@media screen and (max-width: 1400px) {
  .margin-top-0-at-width-1400 {
    margin-top: 0px;
  }
  .margin-top-20-at-width-14200 {
    margin-top: 50px;
  }
  .margin-top-50-at-width-1400 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .margin-top-0-at-width-1024 {
    margin-top: 0px;
  }
  .margin-top-10-at-width-1024 {
    margin-top: 10px;
  }
  .margin-top-20-at-width-1024 {
    margin-top: 20px;
  }
  .margin-top-30-at-width-1024 {
    margin-top: 30px;
  }
  .margin-top-40-at-width-1024 {
    margin-top: 40px;
  }
  .margin-top-50-at-width-1024 {
    margin-top: 50px;
  }
  .margin-top-100-at-width-1024 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 800px) {
  .margin-top-0-at-width-800 {
    margin-top: 0px;
  }
  .margin-top-10-at-width-800 {
    margin-top: 10px;
  }
  .margin-top-20-at-width-800 {
    margin-top: 20px;
  }
  .margin-top-30-at-width-800 {
    margin-top: 30px;
  }
  .margin-top-40-at-width-800 {
    margin-top: 40px;
  }
  .margin-top-50-at-width-800 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 639px) {
  .margin-top-0-at-width-639 {
    margin-top: 0px;
  }
  .margin-top-10-at-width-639 {
    margin-top: 10px;
  }
  .margin-top-20-at-width-639 {
    margin-top: 20px;
  }
  .margin-top-30-at-width-639 {
    margin-top: 30px;
  }
  .margin-top-40-at-width-639 {
    margin-top: 40px;
  }
  .margin-top-50-at-width-639 {
    margin-top: 50px;
  }
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}
.margin-bottom-80 {
  margin-bottom: 80px;
}
.margin-bottom-100 {
  margin-bottom: 100px;
}
.margin-bottom-120 {
  margin-bottom: 120px;
}
.margin-bottom-150 {
  margin-bottom: 150px;
}
.padding-top-5 {
  padding-top: 5px;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-15 {
  padding-top: 15px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-top-25 {
  padding-top: 25px;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-top-35 {
  padding-top: 35px;
}
.padding-top-40 {
  padding-top: 40px;
}
.padding-top-45 {
  padding-top: 45px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-top-55 {
  padding-top: 55px;
}
.padding-top-60 {
  padding-top: 60px;
}
.padding-top-65 {
  padding-top: 65px;
}
.padding-top-70 {
  padding-top: 70px;
}
.padding-top-80 {
  padding-top: 80px;
}
.padding-top-90 {
  padding-top: 90px;
}
.padding-top-100 {
  padding-top: 100px;
}
.padding-top-110 {
  padding-top: 110px;
}
.padding-top-120 {
  padding-top: 120px;
}
.padding-top-130 {
  padding-top: 130px;
}
.padding-top-140 {
  padding-top: 140px;
}
.padding-top-150 {
  padding-top: 150px;
}
.padding-top-200 {
  padding-top: 200px;
}
@media screen and (max-width: 1400px) {
  .padding-top-0-at-width-1400 {
    padding-top: 0px;
  }
  .padding-top-20-at-width-14200 {
    padding-top: 50px;
  }
  .padding-top-50-at-width-1400 {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .padding-top-0-at-width-1024 {
    padding-top: 0px;
  }
  .padding-top-10-at-width-1024 {
    padding-top: 10px;
  }
  .padding-top-20-at-width-1024 {
    padding-top: 20px;
  }
  .padding-top-30-at-width-1024 {
    padding-top: 30px;
  }
  .padding-top-40-at-width-1024 {
    padding-top: 40px;
  }
  .padding-top-50-at-width-1024 {
    padding-top: 50px;
  }
  .padding-top-100-at-width-1024 {
    padding-top: 100px;
  }
}
@media screen and (max-width: 800px) {
  .padding-top-0-at-width-800 {
    padding-top: 0px;
  }
  .padding-top-10-at-width-800 {
    padding-top: 10px;
  }
  .padding-top-20-at-width-800 {
    padding-top: 20px;
  }
  .padding-top-30-at-width-800 {
    padding-top: 30px;
  }
  .padding-top-40-at-width-800 {
    padding-top: 40px;
  }
  .padding-top-50-at-width-800 {
    padding-top: 50px;
  }
}
@media screen and (max-width: 639px) {
  .padding-top-0-at-width-639 {
    padding-top: 0px;
  }
  .padding-top-10-at-width-639 {
    padding-top: 10px;
  }
  .padding-top-20-at-width-639 {
    padding-top: 20px;
  }
  .padding-top-30-at-width-639 {
    padding-top: 30px;
  }
  .padding-top-40-at-width-639 {
    padding-top: 40px;
  }
  .padding-top-50-at-width-639 {
    padding-top: 50px;
  }
}
.padding-bottom-10 {
  padding-bottom: 10px;
}
.padding-bottom-20 {
  padding-bottom: 20px;
}
.padding-bottom-30 {
  padding-bottom: 30px;
}
.padding-bottom-40 {
  padding-bottom: 40px;
}
.padding-bottom-50 {
  padding-bottom: 50px;
}
.padding-bottom-60 {
  padding-bottom: 60px;
}
.padding-bottom-80 {
  padding-bottom: 80px;
}
.padding-bottom-100 {
  padding-bottom: 100px;
}
.padding-bottom-120 {
  padding-bottom: 120px;
}
.padding-bottom-150 {
  padding-bottom: 150px;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0!important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0!important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none!important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.subpage-hero-area {
  position: relative;
  background-color: #050d1d;
}
.subpage-hero-area #animation-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00264B;
}
.subpage-hero-area canvas {
  display: block;
}
.subpage-hero-area .hero-content {
  position: relative;
  min-height: 100%;
  font-size: 24px;
  padding-top: 2.5em;
  text-align: center;
}
.subpage-hero-area .hero-content .top-tag {
  color: #0080ff;
  font-size: 36px;
  font-weight: 900;
  border-bottom: 2px solid #0080ff;
  line-height: 1.4em;
  display: inline-block;
  margin-bottom: 10px;
}
.subpage-hero-area .hero-content h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  margin: 10px auto;
  max-width: 1000px;
  line-height: 1.08em;
}
.subpage-hero-area .hero-content p {
  color: #9fb3db;
  font-size: 22px;
  margin: 20px auto;
  padding: 10px;
  max-width: 940px;
  line-height: 1.2em;
}
.best-for-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  top: 20px;
}
.best-for-block {
  background-color: #0C1522;
  border: 1px solid #002f41;
  position: relative;
  flex: 0 1 auto;
  display: flex;
  padding: 30px;
  color: #fff;
  text-align: left;
}
.best-for-block .tag {
  color: #0090ff;
  background-color: #0C1522;
  border: 1px solid #002f41;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  padding: 5px 20px;
  white-space: nowrap;
}
.best-for-block ul {
  display: flex;
  gap: 30px;
}
.best-for-block ul li {
  flex: 0 1 auto;
  display: flex;
  padding-right: 20px;
}
.best-for-block ul li .icon {
  flex: 0 0 48px;
}
.best-for-block ul li .icon img {
  width: 48px;
  height: 72px;
  object-fit: contain;
}
.best-for-block ul li .item {
  flex: 0 1 275px;
  max-width: 275px;
  padding-left: 10px;
  color: #9ab2ca;
  font-size: 16px;
}
.best-for-block ul li .item strong {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.service-intro-area {
  background-color: #fff;
}
.service-intro-area > div {
  display: flex;
  align-items: center;
}
.service-intro-area .text-area {
  flex: 1 1 56%;
  padding-left: 80px;
  padding-top: 50px;
  padding-bottom: 40px;
}
.service-intro-area .text-area h1 {
  font-size: 36px;
  color: #0054ce;
  letter-spacing: -0.04em;
}
.service-intro-area .text-area p {
  font-size: 18px;
  color: #173757;
  margin-top: 20px;
  line-height: 1.4em;
}
.service-intro-area .image-area {
  flex: 1 1 44%;
  max-width: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-intro-area .image-area img {
  position: relative;
  width: 80%;
  margin: 0 auto;
  z-index: 4;
  transform: scale(1.25);
  transform-origin: 25% 80%;
}
.service-intro-area .image-area .animation {
  width: 100%;
  margin: 0 auto;
  z-index: 4;
  aspect-ratio: 1/0.5;
  position: relative;
}
.service-intro-area .image-area .service-animation-container {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  transform: translateY(-8.333%);
  width: 100%;
  aspect-ratio: 800 / 480;
}
.service-intro-area .image-area canvas {
  width: 100%;
  height: 100%;
  aspect-ratio: 800 / 480;
  display: block;
}
.service-intro-area .slanted-decoration {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #edf1f6;
  clip-path: polygon(0 100%, 30% 0, 100% 0, 70% 100%);
}
.features-area {
  padding: 20px 0 100px;
  overflow: clip;
}
.features-area .section-title {
  position: relative;
  z-index: 3;
}
.feature-boxes {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 72px;
  padding: 20px 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.feature-boxes:before {
  position: absolute;
  display: block;
  width: 280px;
  height: 280px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 10px solid rgba(175, 209, 255, 0.5);
  z-index: 1;
}
.feature-boxes > * {
  position: relative;
  z-index: 2;
}
.feature-boxes .feature-box {
  flex: 1 1 40%;
  border: 1px solid #ABCEFF;
  border-radius: 10px;
  background: url(images/feature-shading.png) top right no-repeat, #fff;
  background-size: 25% auto;
  box-shadow: 0px 10px 20px 0px rgba(0, 63, 153, 0.2), inset 0px 5px 0px 0px #30303a;
  padding: 25px 25px 45px 35px;
}
.feature-boxes .feature-box .icon {
  margin-bottom: 10px;
}
.feature-boxes .feature-box .icon img {
  height: 50px;
  object-fit: contain;
}
.feature-boxes .feature-box .title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
.feature-boxes .feature-box p {
  font-size: 16px;
  font-weight: 500;
  color: #0055aa;
}
.slanted-dark-section {
  background-color: #0E1929;
  clip-path: polygon(0 -60px, 100% -60px, 100% calc(100% + 60px), 0 100%);
  box-shadow: 0 20px 0 0 #0E1929, 0 60px 0 0 #0E1929;
  position: relative;
  color: #9ab2ca;
}
.slanted-dark-section:before {
  display: block;
  position: absolute;
  left: 0;
  top: -59px;
  width: 100%;
  height: 60px;
  background-color: #0080FF;
  z-index: 1;
  clip-path: polygon(0 100%, 100% 0px, 100% 100%);
}
.slanted-dark-section:after {
  display: block;
  position: absolute;
  left: 0;
  top: -49px;
  width: 100%;
  height: 50px;
  background-color: #0E1929;
  z-index: 1;
  clip-path: polygon(0 100%, 100% 0px, 100% 100%);
}
.tabbed-table {
  padding: 50px 0;
  display: flex;
}
.tabbed-table .left-side {
  flex: 1 1 36%;
  border-right: 1px solid #0090ff;
}
.tabbed-table .right-side {
  flex: 1 1 64%;
}
.tabbed-table .left-side .title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  padding-right: 30px;
  text-align: right;
}
.tabbed-table ul.tabs {
  margin-top: 60px;
  margin-bottom: 10px;
}
.tabbed-table ul.tabs li {
  line-height: 22px;
  padding: 13px 0;
  border: 1px solid transparent;
  border-right: none;
  border-radius: 10px 0 0 10px;
  display: block;
  cursor: pointer;
  text-align: right;
  font-size: 18px;
  color: #0090ff;
  background-color: #0E1929;
  position: relative;
  padding-left: 1em;
  padding-right: 20px;
}
.tabbed-table ul.tabs li:after {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(images/arrow-lightblue-right.png) no-repeat center center;
  background-size: contain;
  position: relative;
  top: 0.18em;
  margin-left: 0.8em;
}
.tabbed-table ul.tabs li.active {
  font-weight: bold;
  color: #fff;
  border-color: #0090ff;
  position: relative;
  left: 1px;
  padding-right: 21px;
}
.tabbed-table .tab-content {
  padding: 10px 20px 0 50px;
  max-width: 800px;
}
.tabbed-table .tab-content h4 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.tabbed-table .tab-content p {
  font-size: 18px;
  color: #9ab2ca;
  line-height: 1.5em;
  margin-top: 20px;
}
.tabbed-table .tab-content + .tab-content {
  display: none;
}
.pricing-basic {
  display: flex;
  align-items: center;
}
.pricing-basic.offset-upwards {
  position: relative;
  top: -30px;
}
.pricing-basic .text-area {
  flex: 1 1 auto;
  padding-right: 6vw;
}
.pricing-basic .text-area .title {
  font-size: 36px;
  color: #003f99;
  font-weight: 800;
}
.pricing-basic .text-area p {
  color: #173757;
  font-size: 18px;
  line-height: 1.5em;
  margin-top: 20px;
}
.pricing-basic .box-area {
  flex: 1 0 400px;
  border-radius: 20px;
  background-color: #0051a1;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  padding: 45px;
  color: #fff;
}
.pricing-basic .box-area .title {
  font-size: 24px;
  font-weight: 900;
  padding-bottom: 10px;
  border-bottom: 1px solid #0080ff;
}
.pricing-basic .box-area p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5em;
}
.pricing-basic .box-area a.button {
  margin-top: 40px;
  padding-left: 2em;
  padding-right: 2em;
}
.banded-white-section {
  background: linear-gradient(to bottom, #fff 33%, #dbe2ec 33%, #dbe2ec 66%, #fff 66%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.plan-boxes {
  background-color: #f1f7ff;
  border: 1px solid #abceff;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0 20px;
  padding: 40px 0 50px 0;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.plan-boxes .plan {
  flex: 1 1 435px;
  padding: 10px 55px 0 45px;
  box-shadow: 2px 0 0 #060b12;
}
.plan-boxes .plan:last-child {
  box-shadow: none;
}
.plan-boxes .plan .title {
  font-size: 24px;
  font-weight: bold;
  color: #0054ce;
  padding-bottom: 10px;
  border-bottom: 1px solid #0080ff;
}
.plan-boxes .plan .title strong {
  font-size: 36px;
}
.plan-boxes .plan .subtitle {
  font-size: 18px;
  color: #000;
  margin-top: 10px;
  font-weight: 400;
}
.plan-boxes .plan .price {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-top: 10px;
}
.plan-boxes .plan .price strong {
  font-size: 36px;
}
.plan-boxes .plan .specs {
  padding: 20px 0 20px 20px;
}
.plan-boxes .plan .specs li {
  display: list-item;
  list-style: square inside;
  line-height: 20px;
  padding: 5px 0;
  font-size: 18px;
  color: #000;
}
.plan-boxes .plan .specs li b {
  color: #0090ff;
  font-weight: 800;
}
.plan-boxes .plan .specs li::marker {
  font-size: 0.66em;
  color: #0090ff;
  margin-right: 0;
  padding-right: 0;
}
.plan-boxes .plan a.button {
  white-space: nowrap;
}
.addons {
  background-color: #fff;
  padding: 50px 0 80px;
}
.addons .section-title {
  margin-bottom: 50px;
}
.addon-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
}
.addon-boxes .addon {
  flex: 0 1 30%;
  max-width: 420px;
  position: relative;
  padding: 50px 20px 45px;
  text-align: center;
}
.addon-boxes .addon .icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-boxes .addon .icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transform: rotate(-45deg) scale(1.33);
}
.addon-boxes .addon .title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 25px;
}
.addon-boxes .addon p {
  font-size: 18px;
}
.addon-boxes .addon-style-1 {
  background-color: #0051A1;
  border: 1px solid transparent;
}
.addon-boxes .addon-style-1 .icon {
  background-color: #DCE3ED;
  border: 1px solid #003f99;
}
.addon-boxes .addon-style-1 .title {
  color: #fff;
}
.addon-boxes .addon-style-1 p {
  color: #fff;
}
.addon-boxes .addon-style-2 {
  background-color: #112440;
  border: 1px solid transparent;
}
.addon-boxes .addon-style-2 .icon {
  background-color: #0051A1;
  border: 1px solid transparent;
}
.addon-boxes .addon-style-2 .title {
  color: #fff;
}
.addon-boxes .addon-style-2 p {
  color: #fff;
}
.addon-boxes .addon-style-3 {
  background-color: #f1f7ff;
  border: 1px solid #003f99;
}
.addon-boxes .addon-style-3 .icon {
  background-color: #0C1522;
  border: 1px solid transparent;
}
.addon-boxes .addon-style-3 .title {
  color: #003f99;
}
.addon-boxes .addon-style-3 p {
  color: #173757;
}
.tech-details {
  background-color: #fff;
  border: 1px solid #a6bad7;
}
.tech-details .title-area {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
}
.tech-details .title-area .title {
  color: #003f99;
  font-size: 36px;
  font-weight: 900;
}
.tech-details a.tech-expander {
  line-height: 20px;
  padding-top: 10px;
  padding-bottom: 14px;
}
.tech-details a.tech-expander:before {
  clip-path: polygon(40% 0%, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%, 0 40%, 40% 40%);
  background-color: #0054ce;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: baseline;
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.tech-details .details-area {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  opacity: 0;
}
.tech-details .details-area:not(.collapsed) {
  opacity: 1;
}
.tech-details .details {
  padding: 20px;
  border: 1px solid #a6bad7;
  margin: 20px;
}
.tech-details .details h1,
.tech-details .details h2,
.tech-details .details h3,
.tech-details .details h4,
.tech-details .details h5,
.tech-details .details h6 {
  font-weight: 800;
  color: #003f99;
  margin-bottom: 10px;
}
.tech-details .details p {
  margin-bottom: 10px;
}
.faq-toggle .answer {
  transition: height 0.35s ease-in-out;
  overflow: hidden;
}
.faq-toggle .answer:not(.active) {
  display: none;
}
.faq-section {
  max-width: 1240px;
  margin: 50px auto 10px;
  display: flex;
  align-items: center;
}
.faq-section .title-area {
  flex: 1 1 45%;
  font-size: 36px;
  font-weight: 800;
  color: #000;
  padding: 20px 40px;
}
.faq-list {
  flex: 1 1 55%;
  border-left: 1px solid #0054ce;
  padding: 20px 10px 20px 20px;
}
.faq-list .faq-toggle {
  padding: 10px 20px;
}
.faq-list .question {
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  color: #0054ce;
  padding-left: 25px;
}
.faq-list .question:after {
  position: absolute;
  display: block;
  left: 0px;
  top: 4px;
  width: 8px;
  height: 16px;
  background-image: url(images/arrow-lightblue-right.png);
  background-size: contain;
  transition: all 0.2s ease;
}
.faq-list .question.active:after {
  transform: rotate(90deg);
}
.faq-list .answer {
  margin-top: 20px;
  margin-left: 30px;
  color: #224465;
  font-size: 18px;
  line-height: 1.5;
}
.comparison-table-container {
  overflow: auto;
}
.comparison-table {
  max-width: 1200px;
  margin: 30px auto;
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
}
.comparison-table th,
.comparison-table td {
  padding: 20px 15px;
  text-align: center;
  border: 1px solid #dbe2ec;
}
.comparison-table thead tr th {
  font-size: 20px;
  font-weight: 800;
  padding: 25px 15px;
  border: none;
}
.comparison-table thead tr th.no-color {
  background: transparent;
  border: none;
}
.comparison-table thead tr th.highlight {
  background: linear-gradient(to right, #0051a1 0%, #0080ff 100%);
  padding-left: 5px;
  padding-right: 5px;
}
.comparison-table thead tr th.highlight img {
  height: 30px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
}
.comparison-table tbody tr {
  transition: background-color 0.2s ease;
}
.comparison-table tbody tr:nth-child(even) {
  background-color: #f9fcff;
}
.comparison-table tbody tr th.category-header {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px 20px;
}
.comparison-table tbody td {
  font-size: 16px;
  color: #224465;
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #003f99;
  padding-left: 30px;
}
.comparison-table tbody td.highlight {
  background-color: #e6f3ff;
  color: #0054ce;
  font-weight: bold;
}
.comparison-table tbody td.check:before,
.comparison-table tbody td.cross:before,
.comparison-table tbody td.partial:before {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: baseline;
  position: relative;
  top: 0.1em;
}
.comparison-table tbody td.check:before {
  background-image: url(images/icon-check.png);
}
.comparison-table tbody td.cross:before {
  background-image: url(images/icon-cross.png);
}
.comparison-table tbody td.partial:before {
  background-image: url(images/icon-partial.png);
}
.image-text-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-text-section .image-section {
  flex: 0 1 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-text-section .image-section img {
  max-width: 500px;
}
.image-text-section .image-section img.decorated {
  border-radius: 10px;
  background-color: #000;
  border: 2px solid rgba(142, 190, 255, 0.5);
}
.image-text-section .image-section img.shadowed {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.image-text-section .image-section img.perspective-3d {
  transform: perspective(1000px) rotateY(25deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: all 0.5s ease-in-out;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.image-text-section .text-section {
  flex: 0 1 700px;
  padding: 20px 50px;
}
.image-text-section .text-section .title {
  font-size: 36px;
  font-weight: 800;
  color: #003f99;
  margin-bottom: 10px;
}
.image-text-section .text-section .subtitle {
  color: #1f7bff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.image-text-section .text-section p {
  font-size: 18px;
  color: #173757;
  line-height: 1.5em;
  margin-top: 25px;
}
.image-text-section .text-section a.button {
  margin-top: 20px;
}
.darkblue-section .image-text-section .text-section .title {
  color: #fff;
}
.darkblue-section .image-text-section .text-section .subtitle {
  color: #4b8fd3;
}
.darkblue-section .image-text-section .text-section p {
  color: #9ab2ca;
}
.feature-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}
.feature-icon-grid .grid-item {
  flex: 0 0 30%;
  max-width: 350px;
  text-align: center;
  padding: 20px 20px;
}
.feature-icon-grid .grid-item .icon {
  margin-bottom: 20px;
}
.feature-icon-grid .grid-item .icon img {
  height: 60px;
  object-fit: contain;
}
.feature-icon-grid .grid-item h4 {
  font-size: 24px;
  font-weight: bold;
  color: #003f99;
  margin-bottom: 15px;
}
.feature-icon-grid .grid-item p {
  font-size: 16px;
  color: #173757;
  line-height: 1.5em;
}
.stats-counter-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}
.stats-counter-row .stat-item {
  flex: 1 1 22%;
  text-align: center;
}
.stats-counter-row .stat-item .number {
  font-size: 48px;
  font-weight: 800;
  color: #0054ce;
  margin-bottom: 10px;
}
.stats-counter-row .stat-item .label {
  font-size: 18px;
  color: #173757;
  font-weight: 500;
}
.two-col-feature-list {
  display: flex;
  gap: 60px;
  align-items: center;
}
.two-col-feature-list .col-left {
  flex: 1 1 45%;
}
.two-col-feature-list .col-left .title {
  font-size: 18px;
  font-weight: bold;
  color: #0054ce;
  margin-bottom: 10px;
}
.two-col-feature-list .col-left h3 {
  font-size: 36px;
  font-weight: 800;
  color: #003f99;
  margin-bottom: 20px;
}
.two-col-feature-list .col-left p {
  font-size: 18px;
  color: #173757;
  line-height: 1.5em;
}
.two-col-feature-list .col-right {
  flex: 1 1 55%;
}
.darkblue-section .two-col-feature-list .col-left .title {
  color: #86c9ff;
}
.darkblue-section .two-col-feature-list .col-left h3 {
  color: #fff;
}
.darkblue-section .two-col-feature-list .col-left p {
  color: #9ab2ca;
}
.darkblue-section .two-col-feature-list .col-right .checkmark-list li {
  color: #fff;
}
.checkmark-list li {
  font-size: 20px;
  font-weight: bold;
  color: #173757;
  padding: 8px 0 8px 40px;
  position: relative;
  line-height: 1.4em;
}
.checkmark-list li:before {
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background-image: url(images/icon-check.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.centered-cta-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 20px;
}
.centered-cta-block .icon-large {
  margin-bottom: 30px;
}
.centered-cta-block .icon-large img {
  height: 80px;
  object-fit: contain;
}
.centered-cta-block h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
.centered-cta-block p {
  font-size: 20px;
  color: #9ab2ca;
  line-height: 1.5em;
  margin-bottom: 35px;
}
.centered-cta-block .button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.timeline-layout {
  max-width: 900px;
  margin: 50px auto;
  position: relative;
}
.timeline-layout:before {
  position: absolute;
  display: none;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #abceff;
  transform: translateX(-50%);
}
.timeline-layout .timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
.timeline-layout .timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-layout .timeline-item:nth-child(odd) .timeline-number {
  text-align: right;
  border-right: 2px solid #0080ff;
  box-shadow: 2px 0 0 #0080ff;
  padding-right: 20px;
}
.timeline-layout .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-layout .timeline-item:nth-child(even) .timeline-number {
  text-align: left;
  border-left: 2px solid #0080ff;
  box-shadow: -2px 0 0 #0080ff;
  padding-left: 20px;
  padding-right: 20px;
}
.timeline-layout .timeline-number {
  flex: 1 1 50%;
  font-size: 48px;
  font-weight: 800;
  color: #0080ff;
  position: relative;
}
.timeline-layout .timeline-content {
  flex: 1 1 50%;
  margin-top: 10px;
  border-top: 2px solid #0080ff;
  padding: 20px;
}
.timeline-layout .timeline-content h4 {
  font-size: 24px;
  font-weight: bold;
  color: #003f99;
  margin-bottom: 10px;
}
.timeline-layout .timeline-content p {
  font-size: 16px;
  color: #173757;
  line-height: 1.5em;
}
.card-grid-area {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1400px;
}
.card-grid-area .grid-card {
  flex: 1 1 30%;
  background-color: #fff;
  border: 1px solid #d2d9e3;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 35px 25px;
  text-align: left;
}
.card-grid-area .grid-card.decorated {
  background: url(images/feature-shading.png) top right no-repeat, linear-gradient(45deg, #f4f6fa, #fff);
  background-size: 25% auto, auto;
  border: 1px solid #b6bec6;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.card-grid-area .grid-card.decorated-dark {
  background: url(images/feature-shading.png) top right no-repeat, linear-gradient(45deg, #0B1728, #132949);
  background-size: 25% auto, auto;
  border: 1px solid #154769;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.card-grid-area .grid-card .card-icon {
  margin-bottom: 20px;
}
.card-grid-area .grid-card .card-icon img {
  height: 50px;
  object-fit: contain;
}
.card-grid-area .grid-card h4 {
  font-size: 24px;
  letter-spacing: -0.05em;
  font-weight: bold;
  color: #003f99;
  margin-bottom: 15px;
}
.card-grid-area .grid-card p {
  font-size: 16px;
  color: #173757;
  line-height: 1.4em;
  margin-bottom: 20px;
}
.contact-cards .card-grid-area {
  margin-top: 0;
}
.contact-cards .card-grid-area .grid-card {
  background: url(images/feature-shading.png) top right no-repeat, linear-gradient(45deg, #0B1728, #132949);
  background-size: 25% auto, auto;
  border: 1px solid #154769;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.contact-cards .card-grid-area .grid-card h4 {
  color: #fff;
}
.contact-cards .card-grid-area .grid-card p {
  color: #9ab2ca;
}
.split-banner-section {
  display: flex;
  align-items: stretch;
}
.split-banner-section .split-left,
.split-banner-section .split-right {
  flex: 1 1 50%;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.split-banner-section .split-left {
  background: linear-gradient(to right, #0051a1, #0080ff);
}
.split-banner-section .split-right {
  background-color: #112440;
}
.split-banner-section .content {
  max-width: 500px;
}
.split-banner-section h3 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
.split-banner-section p {
  font-size: 18px;
  color: #9ab2ca;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.split-banner-section .split-left p {
  color: #fff;
}
.highlighted-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.highlighted-quote .quote-icon {
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 128, 255, 0.2);
  line-height: 0.5em;
  margin-bottom: 20px;
}
.highlighted-quote blockquote {
  font-size: 24px;
  font-weight: 500;
  color: #003f99;
  line-height: 1.6em;
  margin-bottom: 30px;
  font-style: italic;
}
.highlighted-quote .quote-author {
  font-size: 18px;
  color: #173757;
}
.highlighted-quote .quote-author strong {
  color: #0054ce;
  font-weight: bold;
}
.icon-list-large {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.icon-list-large .large-icon-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.icon-list-large .large-icon-item.reverse {
  flex-direction: row-reverse;
}
.icon-list-large .large-icon-item .icon-wrapper {
  flex: 0 0 200px;
  text-align: center;
}
.icon-list-large .large-icon-item .icon-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.icon-list-large .large-icon-item .content-wrapper {
  flex: 1 1 auto;
}
.icon-list-large .large-icon-item .content-wrapper h3 {
  font-size: 30px;
  font-weight: bold;
  color: #003f99;
  margin-bottom: 15px;
}
.icon-list-large .large-icon-item .content-wrapper p {
  font-size: 18px;
  color: #173757;
  line-height: 1.5em;
}
.icon-list-large.bordered {
  margin-top: 50px;
  border-top: 1px solid #0054ce;
  border-bottom: 1px solid #0054ce;
  padding-top: 50px;
}
.progress-bars-section {
  max-width: 800px;
  margin: 0 auto;
}
.progress-bars-section .section-intro {
  text-align: center;
  margin-bottom: 50px;
}
.progress-bars-section .section-intro h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.progress-bars-section .section-intro p {
  font-size: 18px;
  color: #9ab2ca;
}
.progress-bars-section .progress-bars .progress-item {
  margin-bottom: 30px;
}
.progress-bars-section .progress-bars .progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.progress-bars-section .progress-bars .progress-label span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.progress-bars-section .progress-bars .progress-bar {
  height: 12px;
  background-color: rgba(0, 128, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
}
.progress-bars-section .progress-bars .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(to right, #0080ff, #00c3ff);
  width: 0%;
  transition: all 0.2s ease;
  border-radius: 6px;
}
.progress-bars-section .progress-bars .progress-bar .progress-fill.green {
  background: linear-gradient(to right, #00ff6f, #00ff48);
}
.progress-bars-section .progress-bars .progress-bar .progress-fill.red {
  background: linear-gradient(to right, #ff6666, #ff0000);
}
.vps-pricing-table {
  max-width: 1200px;
  margin: 40px auto;
  border: 1px solid #abceff;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.vps-pricing-table .vps-header {
  display: flex;
  border-bottom: 2px solid #003f99;
}
.vps-pricing-table .vps-header .vps-cell {
  flex: 1 1 auto;
  padding: 20px 15px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.vps-pricing-table .vps-header .vps-cell:last-child {
  flex: 0 0 140px;
}
.vps-pricing-table .vps-row {
  display: flex;
  border-bottom: 1px solid #dbe2ec;
  padding-top: 10px;
  transition: all 0.2s ease;
}
.vps-pricing-table .vps-row:hover {
  background-color: #f9fcff;
}
.vps-pricing-table .vps-row.popular {
  background-color: #e6f3ff;
  border: 2px solid #0080ff;
  transform: scale(1.03);
}
.vps-pricing-table .vps-row.popular .vps-cell.price strong {
  color: #0051a1;
}
.vps-pricing-table .vps-row .vps-cell {
  flex: 1 1 16.6%;
  padding: 20px 15px;
  font-size: 16px;
  color: #173757;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  position: relative;
}
.vps-pricing-table .vps-row .vps-cell strong {
  font-size: 20px;
  font-weight: bold;
  color: #003f99;
  margin-right: 5px;
}
.vps-pricing-table .vps-row .vps-cell.price strong {
  font-size: 24px;
  color: #0054ce;
}
.vps-pricing-table .vps-row .vps-cell.simple {
  display: block;
}
.vps-pricing-table .vps-row .vps-cell.action {
  flex: 0 0 140px;
}
.vps-pricing-table .vps-row .vps-cell.action a.button {
  white-space: nowrap;
}
.vps-pricing-table .vps-row .vps-cell:before {
  content: attr(data-label);
  display: block;
  position: absolute;
  left: 15px;
  top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #0054ce;
}
.vps-disk-buttons {
  display: inline-flex;
  color: #0054ce;
  margin-left: 10px;
  border: 1px solid #0054ce;
  border-radius: 5px;
}
.vps-disk-buttons a {
  font-size: 20px;
  font-weight: 900;
  width: 25px;
  line-height: 25px;
  padding-bottom: 2px;
  text-align: center;
  border-radius: 5px;
  background-color: #f1f7ff;
}
.vps-disk-buttons a.disabled {
  color: #999;
  background: #fff;
}
.supported-tech-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  top: 20px;
  padding: 0 50px;
}
.supported-tech-block {
  background-color: #DAE1EC;
  border: 1px solid #94a5b8;
  box-shadow: 0 5px 10px #00000030;
  position: relative;
  margin: 0px auto 0;
  padding: 20px 30px;
  transform: scale(1.25);
  transform-origin: 50% 75%;
  text-align: left;
}
.supported-tech-block .tag {
  color: #0090ff;
  background-color: #0C1522;
  border: 1px solid #002f41;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  padding: 5px 20px;
  white-space: nowrap;
}
.supported-tech-block ul {
  display: flex;
  gap: 50px;
  padding: 0px 40px;
}
.supported-tech-block ul li {
  text-align: center;
}
.supported-tech-block ul li img {
  max-height: 50px;
  object-fit: contain;
}
.supported-tech-block ul li strong {
  display: block;
  font-size: 20px;
  color: #003f99;
}
.blog-page {
  padding: 50px 0;
  background-color: #f9fcff;
}
.blog-page .blog-boxes {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 20px;
  justify-content: space-between;
}
.blog-page .image {
  height: 175px;
}
.blog-page .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page .blog-box {
  flex: 1 1 31%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 13px 13px 25px 13px;
}
.blog-page .title {
  color: #00366c;
  font-size: 24px;
  font-weight: 800;
  padding: 30px 20px 20px;
}
.blog-page p {
  padding: 0px 20px 20px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}
.blog-page .details {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.blog-page .date {
  font-size: 18px;
  color: #526a81;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.blog-pagination a.button {
  min-width: 120px;
}
.blog-post-layout {
  display: flex;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.blog-post-layout .blog-post-content {
  flex: 1 1 70%;
}
.blog-post-layout .blog-post-content .featured-image {
  margin-bottom: 40px;
}
.blog-post-layout .blog-post-content .featured-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
}
.blog-post-layout .blog-post-content .post-title {
  font-size: 24px;
  font-weight: bold;
  color: #0054ce;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
  border-bottom: 1px solid #003f99;
  padding-bottom: 20px;
}
.blog-post-layout .blog-post-content .post-text h2 {
  font-size: 32px;
  font-weight: bold;
  color: #003f99;
  margin-top: 35px;
  margin-bottom: 15px;
}
.blog-post-layout .blog-post-content .post-text p {
  font-size: 18px;
  color: #173757;
  line-height: 1.7em;
  margin-bottom: 20px;
}
.blog-post-layout .blog-post-content .post-text .blog-list {
  margin: 30px 0 30px 40px;
}
.blog-post-layout .blog-post-content .post-text .blog-list li {
  list-style: disc;
  font-size: 18px;
  color: #173757;
  line-height: 1.7em;
  padding: 8px 0;
}
.blog-post-layout .blog-post-content .post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #dbe2ec;
}
.blog-post-layout .blog-sidebar {
  flex: 0 0 350px;
}
.blog-post-layout .blog-sidebar .sidebar-section {
  background-color: #f8fafc;
  border: 1px solid #dbe2ec;
  padding: 30px 25px;
  margin-bottom: 30px;
}
.blog-post-layout .blog-sidebar .sidebar-section h3 {
  font-size: 24px;
  font-weight: bold;
  color: #003f99;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #0054ce;
}
.blog-post-layout .blog-sidebar .sidebar-post {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.blog-post-layout .blog-sidebar .sidebar-post:last-child {
  margin-bottom: 0;
}
.blog-post-layout .blog-sidebar .sidebar-post .sidebar-post-image {
  flex: 0 0 80px;
  height: 80px;
  overflow: hidden;
}
.blog-post-layout .blog-sidebar .sidebar-post .sidebar-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-layout .blog-sidebar .sidebar-post .sidebar-post-content {
  flex: 1 1 auto;
}
.blog-post-layout .blog-sidebar .sidebar-post .sidebar-post-title {
  margin-bottom: 8px;
}
.blog-post-layout .blog-sidebar .sidebar-post .sidebar-post-title a {
  font-size: 16px;
  font-weight: bold;
  color: #003f99;
  line-height: 1.3em;
}
.blog-post-layout .blog-sidebar .sidebar-post .sidebar-post-title a:hover {
  color: #0054ce;
}
.blog-post-layout .blog-sidebar .sidebar-post .sidebar-post-date {
  font-size: 14px;
  color: #526a81;
}
.blog-post-layout .blog-sidebar .sidebar-categories li {
  margin-bottom: 12px;
}
.blog-post-layout .blog-sidebar .sidebar-categories li a {
  font-size: 18px;
  color: #173757;
  padding: 8px 0;
  display: block;
  position: relative;
  padding-left: 20px;
}
.blog-post-layout .blog-sidebar .sidebar-categories li a:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0054ce;
  font-weight: bold;
}
.blog-post-layout .blog-sidebar .sidebar-categories li a:hover {
  color: #0054ce;
}
.blog-meta {
  font-size: 18px;
  color: #9ab2ca;
  margin-top: 15px;
}
.blog-meta .author {
  color: #fff;
}
.blog-meta .date {
  color: #9ab2ca;
}
.get-started-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 50px;
}
.get-started-page .title-area {
  flex: 1 1 30%;
  color: #fff;
  text-align: left;
}
.get-started-page .title-area h1 {
  margin-bottom: 15px;
}
.get-started-page .title-area p {
  font-size: 22px;
  color: #82c4ff;
  margin-bottom: 20px;
}
.get-started-page .title-area p.small {
  font-size: 18px;
  color: #9ab2ca;
}
.get-started-page .form-area {
  flex: 1 1 70%;
}
.get-started-page .form-area .pretty-form {
  max-width: 900px;
}
.pretty-form {
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  padding: 40px 50px;
  background-color: #fff;
  max-width: 900px;
}
.pretty-form form {
  width: 100%;
}
.pretty-form .form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}
.pretty-form .form-row:last-child {
  margin-bottom: 0;
}
.pretty-form .form-group {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}
.pretty-form .form-group.full-width {
  flex: 1 1 100%;
}
.pretty-form .form-group label {
  font-size: 18px;
  font-weight: bold;
  color: #003f99;
  margin-bottom: 8px;
  display: block;
}
.pretty-form .form-group label .required {
  color: #ff0000;
  font-size: 20px;
}
.pretty-form .form-group input[type="text"],
.pretty-form .form-group input[type="email"],
.pretty-form .form-group input[type="tel"],
.pretty-form .form-group input[type="url"],
.pretty-form .form-group select,
.pretty-form .form-group textarea {
  font-size: 16px;
  padding: 12px 15px;
  border: 2px solid #d2d9e3;
  border-radius: 8px;
  background-color: #f9fcff;
  color: #173757;
  transition: all 0.2s ease;
  font-family: inherit;
}
.pretty-form .form-group input[type="text"]:focus,
.pretty-form .form-group input[type="email"]:focus,
.pretty-form .form-group input[type="tel"]:focus,
.pretty-form .form-group input[type="url"]:focus,
.pretty-form .form-group select:focus,
.pretty-form .form-group textarea:focus {
  outline: none;
  border-color: #0054ce;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}
.pretty-form .form-group input[type="text"]::placeholder,
.pretty-form .form-group input[type="email"]::placeholder,
.pretty-form .form-group input[type="tel"]::placeholder,
.pretty-form .form-group input[type="url"]::placeholder,
.pretty-form .form-group select::placeholder,
.pretty-form .form-group textarea::placeholder {
  color: #9ab2ca;
}
.pretty-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230080ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}
.pretty-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5em;
}
.pretty-form .form-group.checkbox-group {
  flex-direction: row;
  align-items: center;
}
.pretty-form .form-group.checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #173757;
}
.pretty-form .form-group.checkbox-group .checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0054ce;
}
.pretty-form .form-group.checkbox-group .checkbox-label span {
  line-height: 1.4em;
}
.pretty-form .submit-btn {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  padding: 18px 40px;
  background: linear-gradient(to right, #0051a1, #0080ff);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pretty-form .submit-btn:hover {
  background: linear-gradient(to right, #003f80, #0066cc);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 80, 255, 0.4);
}
.pretty-form .submit-btn:active {
  transform: translateY(0);
}
.eu-map-area {
  max-width: 900px;
  position: relative;
}
.eu-map-area:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.eu-map-area img {
  width: 100%;
  aspect-ratio: 12/9;
  object-fit: cover;
  object-position: left center;
}
.eu-map-area .map-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding-bottom: 100%;
}
.eu-map-area .pin {
  position: absolute;
}
.eu-map-area .pin:after {
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: url(images/map-pin.png) center center no-repeat;
  background-size: contain;
}
.eu-map-area .pin:before {
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: inset 0 0 5px #fff, 0 0 5px #fff;
}
.eu-map-area .pin span {
  position: absolute;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
  text-shadow: 0 0 5px #fff;
}
.eu-map-area .pin span.right {
  left: 25px;
  top: -10px;
}
.eu-map-area .pin span.top {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.eu-map-area .pin span.bottom {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: scale(10);
    opacity: 0;
  }
}
.eu-map-area .pin.animate:before {
  animation: pulse 10s infinite;
}
.live-chat-button {
  /*
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    */
  position: relative;
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.live-chat-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.live-chat-button:active {
  transform: translateY(-1px);
}
.live-chat-button .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-chat-button .icon:before {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.live-chat-button .text {
  line-height: 1em;
}
.live-chat-button.online {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  border: 2px solid #00c853;
  color: #fff;
}
.live-chat-button.online .icon:before {
  content: '';
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpath d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"%3e%3c/path%3e%3c/svg%3e');
}
.live-chat-button.online .status-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-online 2s infinite;
}
.live-chat-button.online:hover {
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
}
@keyframes pulse-online {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}
.live-chat-button.offline {
  background: linear-gradient(135deg, #607d8b 0%, #78909c 100%);
  border: 2px solid #607d8b;
  color: #fff;
}
.live-chat-button.offline .icon:before {
  content: '';
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpath d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"%3e%3c/path%3e%3cline x1="9" y1="10" x2="15" y2="10"%3e%3c/line%3e%3c/svg%3e');
}
.live-chat-button.offline:hover {
  background: linear-gradient(135deg, #78909c 0%, #607d8b 100%);
}
@media screen and (max-width: 1280px) {
  .service-intro-area .text-area {
    padding-left: 20px;
  }
  .feature-boxes {
    gap: 20px 20px;
  }
  .tabbed-table .left-side {
    flex: 1 1 50%;
  }
  .tabbed-table .right-side {
    flex: 1 1 50%;
  }
  .plan-boxes {
    flex-wrap: wrap;
    background-color: transparent;
    border: none;
    gap: 20px;
    padding: 0;
    box-shadow: none;
  }
  .plan-boxes .plan {
    background-color: #f1f7ff;
    border: 1px solid #abceff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    flex: 0 1 425px;
    padding: 40px;
  }
  .tech-details .title-area .title {
    font-size: 24px;
  }
  .get-started-page {
    display: block;
  }
  .get-started-page .title-area,
  .get-started-page .form-area {
    margin: 20px auto;
  }
  .get-started-page .form-area .form {
    max-width: none;
  }
}
@media screen and (max-width: 870px) {
  .subpage-hero-area .hero-content .top-tag {
    font-size: 26px;
  }
  .subpage-hero-area .hero-content h3 {
    font-size: 32px;
  }
  .subpage-hero-area .hero-content p {
    font-size: 18px;
  }
  .service-intro-area > div {
    flex-direction: column;
    display: block;
  }
  .service-intro-area .text-area {
    flex: 1 1 auto;
  }
  .service-intro-area .image-area {
    max-width: 480px;
    flex: 1 1 auto;
    margin: auto;
  }
  .service-intro-area .image-area img {
    transform-origin: 50% 80%;
  }
  .tabbed-table {
    flex-direction: column;
    gap: 20px 20px;
  }
  .tabbed-table ul.tabs li:After {
    transform: rotate(90deg);
  }
  .pricing-basic {
    display: block;
  }
  .pricing-basic .text-area {
    text-align: center;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .pricing-basic .text-area .title {
    font-size: 28px;
  }
  .pricing-basic .box-area {
    max-width: 400px;
    margin: 0 auto;
  }
  .addons .section-title {
    margin-bottom: 0px;
  }
  .addon-boxes {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .addon-boxes .addon {
    flex: 1 1 auto;
    margin-bottom: 0px;
    padding-top: 20px;
    padding-left: 50px;
    padding-bottom: 20px;
    text-align: left;
  }
  .addon-boxes .addon .icon {
    left: 0;
    top: 50%;
  }
  .addon-boxes .addon .title {
    margin-bottom: 10px;
  }
  .addon-boxes .addon p {
    font-size: 16px;
  }
  .faq-section {
    display: block;
  }
  .faq-list {
    border-left: 0;
  }
  .tech-details .title-area {
    display: block;
    text-align: center;
    padding: 20px 20px;
  }
  .tech-details .title-area .title {
    margin-bottom: 20px;
  }
  .faq-section .title-area {
    font-size: 24px;
  }
  .faq-list {
    padding: 10px 0;
  }
  .faq-list .question {
    font-size: 18px;
  }
  .faq-list .answer {
    font-size: 16px;
  }
  .blog-page .blog-box {
    flex: 1 1 45%;
  }
  .get-started-page .form-area .form-row {
    flex-wrap: wrap;
  }
  .get-started-page .form-area .form-group {
    flex: 1 1 100%;
  }
  .pretty-form {
    padding: 20px;
  }
  .pretty-form .form-row {
    flex-wrap: wrap;
  }
  .pretty-form .form-group {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 639px) {
  .best-for-block ul {
    flex-direction: column;
  }
  .feature-boxes {
    gap: 20px 20px;
  }
  .feature-boxes .feature-box {
    flex: 1 1 100%;
  }
  .tabbed-table .left-side .title {
    font-size: 24px;
  }
  .blog-page .blog-box {
    flex: 1 1 95%;
  }
  .get-started-page .form-area .form {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .timeline-layout:before {
    left: 30px;
  }
  .timeline-layout .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }
  .timeline-layout .timeline-number {
    flex: 0 0 auto;
    text-align: left !important;
  }
  .timeline-layout .timeline-number:after {
    left: -40px !important;
    right: auto !important;
  }
  .timeline-layout .timeline-content {
    flex: 1 1 auto;
  }
  .card-grid-area .grid-card {
    flex: 0 1 45%;
  }
  .icon-list-large .large-icon-item {
    gap: 30px;
  }
  .icon-list-large .large-icon-item .icon-wrapper {
    flex: 0 0 120px;
  }
  .icon-list-large .large-icon-item .icon-wrapper img {
    width: 100px;
    height: 100px;
  }
  .image-text-section .image-section {
    flex: 0 1 400px;
  }
  .image-text-section .image-section img {
    max-width: 100%;
  }
  .image-text-section .text-section {
    flex: 0 1 700px;
  }
}
@media screen and (min-width: 871px) {
  .image-text-section .image-section img.perspective-3d:hover {
    transform: translateX(15px) scale(1.25) perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: -15px 10px 20px rgba(0, 0, 0, 0.05);
  }
}
@media screen and (max-width: 870px) {
  .feature-icon-grid .grid-item {
    flex: 0 1 45%;
  }
  .stats-counter-row {
    flex-wrap: wrap;
  }
  .stats-counter-row .stat-item {
    flex: 0 1 45%;
    margin-bottom: 20px;
  }
  .two-col-feature-list {
    flex-direction: column;
    gap: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .split-banner-section {
    flex-direction: column;
  }
  .icon-list-large .large-icon-item {
    flex-direction: column !important;
    text-align: center;
  }
  .image-text-section {
    flex-direction: column;
  }
  .image-text-section .image-section {
    flex: 0 1 100%;
    max-width: 400px;
    order: 1;
  }
  .image-text-section .text-section {
    flex: 0 1 100%;
    order: 2;
    padding: 20px 10px;
  }
  .image-text-section .text-section .title {
    font-size: 24px;
  }
  .image-text-section .text-section .subtitle {
    font-size: 20px;
  }
  .image-text-section .text-section p {
    font-size: 16px;
  }
}
@media screen and (max-width: 639px) {
  .feature-icon-grid {
    gap: 10px;
  }
  .feature-icon-grid .grid-item {
    flex: 1 1 100%;
    padding: 10px;
  }
  .stats-counter-row .stat-item {
    flex: 1 1 100%;
  }
  .centered-cta-block h2 {
    font-size: 32px;
  }
  .centered-cta-block p {
    font-size: 18px;
  }
  .centered-cta-block .button-group {
    flex-direction: column;
  }
  .centered-cta-block .button-group a.button {
    width: 100%;
  }
  .timeline-layout .timeline-item {
    padding-left: 0;
    margin-bottom: 20px;
  }
  .timeline-layout .timeline-number {
    font-size: 32px;
    border: none !important;
    border-right: 2px solid #0080ff !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 10px !important;
    width: 1.7em;
  }
  .timeline-layout .timeline-content {
    padding-left: 15px;
  }
  .timeline-layout .timeline-content h4 {
    font-size: 20px;
  }
  .timeline-layout .timeline-content p {
    font-size: 14px;
  }
  .card-grid-area .grid-card {
    flex: 1 1 100%;
  }
  .split-banner-section .split-left,
  .split-banner-section .split-right {
    padding: 40px 20px;
  }
  .split-banner-section h3 {
    font-size: 24px;
  }
  .split-banner-section p {
    font-size: 16px;
  }
  .highlighted-quote .quote-icon {
    Font-size: 80px;
  }
  .highlighted-quote blockquote {
    font-size: 18px;
  }
  .icon-list-large .large-icon-item {
    margin-bottom: 20px;
    gap: 0px;
  }
  .icon-list-large .large-icon-item .content-wrapper h3 {
    font-size: 24px;
  }
  .progress-bars-section .section-intro h2 {
    font-size: 28px;
  }
  .progress-bars-section .progress-label span {
    font-size: 16px;
  }
}
@media screen and (max-width: 870px) {
  .vps-pricing-table {
    border: none;
    box-shadow: none;
  }
  .vps-pricing-table .vps-header {
    display: none;
  }
  .vps-pricing-table .vps-row {
    display: block;
    border: 1px solid #0080ff;
    margin: 20px auto;
    padding: 20px;
    background-color: #F0F7FF;
    max-width: 400px;
  }
  .vps-pricing-table .vps-row:hover {
    background-color: #fff;
  }
  .vps-pricing-table .vps-row.popular {
    border: 2px solid #0080ff;
    background-color: #e6f3ff;
    position: relative;
  }
  .vps-pricing-table .vps-row.popular:before {
    display: block;
    position: absolute;
    top: -10px;
    left: 5px;
    transform: rotate(-5deg);
    background-color: #0080ff;
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    content: "POPULAR";
  }
  .vps-pricing-table .vps-row .vps-cell {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #c2d3e1;
  }
  .vps-pricing-table .vps-row .vps-cell:last-child {
    border-bottom: none;
  }
  .vps-pricing-table .vps-row .vps-cell:before {
    top: 15px;
    left: 0;
  }
  .vps-pricing-table .vps-row .vps-cell.simple {
    text-align: right;
    padding-top: 30px;
  }
  .vps-pricing-table .vps-row .vps-cell.simple:before {
    top: 10px;
  }
  .vps-pricing-table .vps-row .vps-cell.action {
    flex: 1 1 auto;
    justify-content: center;
    border-bottom: none;
  }
  .vps-pricing-table .vps-row .vps-cell.action:before {
    display: none;
  }
  .vps-pricing-table .vps-row .vps-cell.action a.button {
    width: 100%;
  }
  .vps-pricing-table .vps-row .vps-cell strong {
    font-size: 18px;
  }
  .vps-pricing-table .vps-row .vps-cell.price strong {
    font-size: 22px;
  }
  .blog-post-layout {
    flex-direction: column;
  }
  .blog-post-layout .blog-post-content {
    flex: 1 1 100%;
  }
  .blog-post-layout .blog-sidebar {
    flex: 1 1 100%;
  }
  .comparison-table thead tr th {
    font-size: 16px;
  }
  .comparison-table tbody td:first-child {
    font-size: 16px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 639px) {
  .blog-pagination {
    flex-direction: column;
    align-items: center;
  }
  .blog-pagination a.button {
    width: 200px;
  }
  .blog-post-layout .blog-post-content .post-text h2 {
    font-size: 24px;
  }
  .blog-post-layout .blog-post-content .post-text p {
    font-size: 16px;
  }
  .blog-post-layout .blog-post-content .post-text .blog-list li {
    font-size: 16px;
  }
  .supported-tech-block {
    padding: 10px 10px;
  }
  .supported-tech-block ul {
    gap: 10px;
  }
}
/*# sourceMappingURL=style.css.map */