@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");
@supports (-webkit-backdrop-filter: blur(30px) saturate(160%) contrast(45%) brightness(140%)) or (backdrop-filter: blur(30px) saturate(160%) contrast(45%) brightness(140%)) {
  .navbar-b.navbar-reduce {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
    -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%); } }
@keyframes button-load {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn); }
  to {
    transform: rotate(1turn); } }
@keyframes change-size {
  to {
    background-size: 32px 32px; } }
@keyframes fade-in {
  from {
    filter: grayscale(100%);
    opacity: 0; }
  to {
    filter: grayscale(0%);
    opacity: 1; } }
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.slideanim {
  visibility: hidden;
  visibility: visible\9;
  /*For old IE browsers IE6-8 */ }

.slideanim.slide {
  visibility: visible;
  animation: slide-in 1s; }

.slideanim::after {
  /* useful when its child elements are float:left; */
  content: '';
  display: table;
  clear: both; }

.button {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  display: flex;
  justify-content: center;
  height: 40px;
  min-width: 120px;
  background-color: #034e7b;
  background-position: center;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 40px;
  animation: button-load 2s;
  transition: background 0.7s;
  overflow: hidden; }
  .button:hover {
    background: #71c8fd radial-gradient(circle, transparent 1%, #71c8fd 1%) center/15000%;
    text-decoration: none; }
  .button:active {
    background-color: #b9e3ff;
    background-size: 100%;
    transition: background 0s; }
  .button.loading {
    background: rgba(102, 112, 133, 0.5);
    pointer-events: none; }
    .button.loading .button-text {
      display: none; }
    .button.loading:after {
      content: '';
      position: relative;
      width: 20px;
      height: 20px;
      margin: auto;
      border: 3px solid transparent;
      border-top-color: #ffffff;
      border-bottom-color: #ffffff;
      border-radius: 50%;
      animation: button-loading-spinner 1s ease infinite; }

@media screen and (max-width: 1100px) {
  .wrap .content .section.challenges > div {
    flex-direction: column;
    row-gap: 30px; }
  .wrap .content .section.solution > div {
    flex-direction: column-reverse;
    row-gap: 30px; }
  .wrap .content .section.contact-us .items {
    flex-direction: column;
    row-gap: 40px; }
    .wrap .content .section.contact-us .items .contacts {
      flex-direction: row !important;
      justify-content: space-between; }
    .wrap .content .section.contact-us .items .form {
      max-width: calc(100% - 64px) !important; } }
@media screen and (max-width: 1024px) {
  .wrap .content .section.contact-us .items {
    flex-direction: column; }
    .wrap .content .section.contact-us .items .contacts {
      flex-direction: column !important; } }
@media screen and (max-width: 768px) {
  .wrap .header .menu-wrap {
    justify-content: center !important; }
    .wrap .header .menu-wrap .button,
    .wrap .header .menu-wrap .menu-items {
      display: none !important; }
  .wrap .content {
    margin: 120px auto 0 !important; }
    .wrap .content .section {
      text-align: center;
      padding-bottom: 40px !important; }
      .wrap .content .section.solution {
        margin-bottom: 40px !important; }
      .wrap .content .section.how-it-works .items {
        flex-direction: column; }
        .wrap .content .section.how-it-works .items > div {
          width: 100% !important; }
      .wrap .content .section.partners .items {
        justify-content: center; }
      .wrap .content .section.contact-us {
        padding-bottom: 0 !important; }
        .wrap .content .section.contact-us .items {
          text-align: left;
          flex-direction: column; }
          .wrap .content .section.contact-us .items .contacts {
            flex-direction: column !important; }
          .wrap .content .section.contact-us .items .form .row {
            flex-direction: column;
            row-gap: 24px; }
            .wrap .content .section.contact-us .items .form .row .col {
              width: 100% !important; }
  .wrap .footer a {
    display: none !important; }
  .wrap .footer p {
    text-align: center !important; } }
html {
  scroll-behavior: smooth; }

body {
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif; }

a {
  color: #034e7b;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
  animation: fade-in 2s; }

p {
  font-weight: 400; }

h1 {
  color: #034e7b;
  text-align: center;
  font-size: 30px;
  line-height: 34px; }

h3 {
  color: #034e7b;
  font-size: 21px;
  line-height: 24px; }

h4 {
  font-size: 15px;
  line-height: 24px; }

img {
  animation: fade-in 2s; }

input {
  -webkit-user-select: text;
  /* Chrome, Opera, Safari */
  -moz-user-select: text;
  /* Firefox 2+ */
  -ms-user-select: text;
  /* IE 10+ */
  width: 100%;
  user-select: text;
  /* Standard syntax */ }

.wrap .header {
  position: fixed;
  top: 0;
  display: flex;
  z-index: 999;
  justify-content: center;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #eaecf0;
  backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
  -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%); }
  .wrap .header .menu-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: calc(100% - 60px);
    max-width: 1100px;
    box-sizing: border-box;
    transition: width 0.5s ease-in-out, visibility 1s linear; }
    .wrap .header .menu-wrap .menu-items {
      display: flex;
      justify-content: space-between;
      align-items: center;
      align-content: center;
      width: 362px;
      font-size: 13px;
      animation: button-load 2s; }
      .wrap .header .menu-wrap .menu-items a {
        color: #667085;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.15s ease-in-out; }
        .wrap .header .menu-wrap .menu-items a.active, .wrap .header .menu-wrap .menu-items a:hover {
          color: #71c8fd;
          transition: all 0.15s ease-in-out; }
.wrap .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin: 140px auto 0; }
  .wrap .content .section {
    scroll-margin-top: 100px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 60px);
    max-width: 1100px;
    padding-bottom: 80px;
    transition: width 0.5s ease-in-out, visibility 1s linear; }
    .wrap .content .section p {
      margin-top: 10px;
      color: #667085;
      font-size: 17px;
      line-height: 24px; }
    .wrap .content .section > div > span {
      display: block;
      margin-bottom: 4px;
      text-transform: uppercase;
      font-size: 11px;
      line-height: 14px; }
    .wrap .content .section.hero {
      align-items: center; }
      .wrap .content .section.hero p {
        max-width: 660px;
        text-align: center; }
      .wrap .content .section.hero img {
        width: 100%;
        margin-top: 40px;
        border-radius: 10px; }
      .wrap .content .section.hero .button {
        margin-top: 20px; }
    .wrap .content .section.challenges > div, .wrap .content .section.solution > div {
      display: flex;
      column-gap: 30px; }
    .wrap .content .section.solution {
      margin-bottom: 80px;
      border-bottom: 1px solid #eaecf0; }
    .wrap .content .section.how-it-works .items {
      display: flex;
      margin-top: 20px;
      column-gap: 30px; }
      .wrap .content .section.how-it-works .items > div {
        width: 33%;
        margin-top: 20px;
        text-align: center; }
        .wrap .content .section.how-it-works .items > div div {
          width: 60px;
          height: 60px;
          margin: 0 auto 10px;
          background-color: #d6edff;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          background-size: 24px 24px;
          border: 10px solid #ebf8ff;
          border-radius: 50%; }
        .wrap .content .section.how-it-works .items > div p {
          margin-top: 6px; }
      .wrap .content .section.how-it-works .items > div div {
        background-image: url("../../assets/images/ic-property-damage.svg"); }
      .wrap .content .section.how-it-works .items > div + div div {
        background-image: url("../../assets/images/ic-loss-of-rent.svg"); }
      .wrap .content .section.how-it-works .items > div + div + div div {
        background-image: url("../../assets/images/ic-legal-expenses.svg"); }
    .wrap .content .section.partners .items {
      display: flex;
      margin-top: 20px;
      column-gap: 30px; }
      .wrap .content .section.partners .items .partner {
        background: #f9fafb;
        border-radius: 10px;
        width: 25%;
        padding: 32px; }
        .wrap .content .section.partners .items .partner img {
          width: 100%; }
    .wrap .content .section.contact-us .items {
      display: flex;
      justify-content: space-between;
      margin-top: 40px; }
      .wrap .content .section.contact-us .items .contacts {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 40px; }
        .wrap .content .section.contact-us .items .contacts > div {
          display: flex; }
          .wrap .content .section.contact-us .items .contacts > div div:first-child {
            width: 60px;
            height: 60px;
            margin-right: 20px;
            background-color: #d6edff;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            background-size: 24px 24px;
            border: 10px solid #ebf8ff;
            border-radius: 50%;
            animation-duration: 1s;
            animation-iteration-count: infinite;
            animation-name: change-size;
            animation-timing-function: ease;
            animation-direction: alternate-reverse; }
          .wrap .content .section.contact-us .items .contacts > div div:last-child {
            display: flex;
            flex-direction: column;
            justify-content: center; }
            .wrap .content .section.contact-us .items .contacts > div div:last-child h4 {
              margin-bottom: 6px;
              font-size: 15px;
              line-height: 24px; }
          .wrap .content .section.contact-us .items .contacts > div p {
            margin-top: 6px; }
        .wrap .content .section.contact-us .items .contacts > div div:first-child {
          background-image: url("../../assets/images/ic-email.svg"); }
        .wrap .content .section.contact-us .items .contacts > div + div div:first-child {
          background-image: url("../../assets/images/ic-phone.svg"); }
        .wrap .content .section.contact-us .items .contacts > div + div + div div:first-child {
          background-image: url("../../assets/images/ic-office.svg"); }
        .wrap .content .section.contact-us .items .contacts a {
          font-size: 13px;
          font-weight: 500;
          line-height: 20px; }
      .wrap .content .section.contact-us .items .form {
        width: 100%;
        max-width: 574px;
        padding: 32px;
        margin-left: auto;
        background: #f9fafb;
        border-radius: 10px; }
        .wrap .content .section.contact-us .items .form label {
          display: flex;
          flex-direction: column;
          width: 100%;
          color: #667085;
          font-size: 11px;
          line-height: 14px;
          letter-spacing: 0; }
          .wrap .content .section.contact-us .items .form label.error {
            margin-top: 4px;
            margin-bottom: -18px;
            color: #E74C3C; }
        .wrap .content .section.contact-us .items .form input,
        .wrap .content .section.contact-us .items .form textarea {
          padding: 9px;
          margin-top: 4px;
          background: #ffffff;
          border: 1px solid #eaecf0;
          border-radius: 5px;
          color: #667085;
          font-family: 'Inter', sans-serif;
          font-size: 13px;
          font-weight: 400;
          line-height: 20px;
          width: calc(100% - 16px); }
          .wrap .content .section.contact-us .items .form input.error,
          .wrap .content .section.contact-us .items .form textarea.error {
            border-color: #E74C3C; }
          .wrap .content .section.contact-us .items .form input:focus,
          .wrap .content .section.contact-us .items .form textarea:focus {
            border: 1px solid #034e7b;
            outline: none !important; }
        .wrap .content .section.contact-us .items .form textarea {
          height: 120px; }
        .wrap .content .section.contact-us .items .form .row {
          display: flex;
          justify-content: space-between;
          margin-bottom: 24px; }
          .wrap .content .section.contact-us .items .form .row .col {
            width: calc(50% - 16px); }
.wrap .footer {
  display: flex;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  border-top: 1px solid #eaecf0; }
  .wrap .footer .footer-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 60px);
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
    transition: width 0.5s ease-in-out, visibility 1s linear; }
    .wrap .footer .footer-wrap p {
      color: #667085;
      text-align: right;
      font-size: 13px;
      font-weight: 400;
      line-height: 20px; }
.wrap .result {
  position: fixed;
  bottom: 0;
  left: 50%;
  display: flex;
  z-index: 9999;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  transform: translate(-50%, 100px);
  transition: all 1s ease-in-out; }
  .wrap .result.success {
    background-color: #2ECC71;
    border: 1px solid #124c2a;
    color: #124c2a; }
  .wrap .result.error {
    background-color: #E74C3C;
    border: 1px solid #fbcdc8;
    color: #fbcdc8; }
  .wrap .result.show {
    visibility: visible;
    transform: translate(-50%, -20px); }
  .wrap .result i {
    margin-right: 6px;
    font-size: 20px; }

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