<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --light-blue: #EFF3F9;
    --body-background-color: #FFF;
    --dark-blue: #4A2748;
    --button-and-footer-color: #4A2748;
    --menu-white: #f9f9f9;
    --normal-text-size: 17px;
    --text-color: #333;
    --font-family: "Source Sans 3", sans-serif;
    --font-style: normal;
    --standard-size-width: 60%;
    --small-size-width: 90%;
    --medium-size-width: 80%;
    --ultra-size-width: 50%;
    /*font-size: 15px;*/
}

html {
  box-sizing: border-box;
  font-family: Avenir,-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei','Helvetica Neue',Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
  line-height: 1.15em;
}

body, html {
    width: 100%;
    overflow-x: clip;
}

body {
  color: #2d2d2d;
  margin: 0;
  position: relative;
}


button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

button {
  background: transparent;
  border: 0;
  padding: 0;
}

ul {
    line-height: 1.6em;
}

button:focus {
  outline: none
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

iframe {
  border: 0;
}

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

a {
    background-color: transparent;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    -webkit-text-decoration-skip: objects;
    color: inherit;
}

em {
    font-size: 0.8em;
}

.blog-row a:not(.button--primary):not(.button--secondary) {
    color: var(--button-and-footer-color);
}

.blog-row a:not(.button--primary):not(.button--secondary):visited {
    color: #025b9a;
}

.blog-row a:not(.button--primary):not(.button--secondary):hover {
    color: #00a0d6;
}

p {
  margin: 0;
  display: inline-block;
}

img {
  max-width: 100%;
  max-height: 100%;
}

#meetingDiv button {
    font-weight: 600;
    font-size: 16px;
    padding: 4px 26px;
    color: white;
}

.button--secondary, .button--primary, .button--hero {
    padding: 4px 26px;
    cursor: pointer;
    text-align: center;
    border-radius: 20px;
    font-weight: 600;
    font-size: .8em;
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
}

.button--secondary, .button--secondary:link, .button--secondary:visited, .button--secondary:active  {
    border: 1px solid var(--button-and-footer-color);
    color: var(--button-and-footer-color);
}

.button--secondary:hover  {
    border: 1px solid #6E526D;
    color: #6E526D;
}

.button--primary, .button--primary:link, .button--primary:visited,  .button--primary:active  {
    color: white;
    background-color: var(--button-and-footer-color);
}

.button--primary:hover {
    color: white;
    background-color: #6E526D;
    border-color: #6E526D;
}

.button--hero {
    color: var(--button-and-footer-color);
    background-color: white;
}

.button--hero:hover {
    opacity: 0.8;
    color: var(--button-and-footer-color);
}

.hero-button .button--primary:hover {
    color: white;
    background-color: #55a9e4;
    border-color: #55a9e4;
}

input:-moz-placeholder,
input::-moz-placeholder {
  opacity: 1;
}

.button_standard-view {
    display: none;
}

@media only screen and (min-width: 640px) {
    .button_standard-view {
        display: inherit;
    }
}

@media only screen and (min-width: 1200px) {
    .button--secondary {
        font-size: 0.83em;
    }
    .button--primary {
        font-size: .83em;
    }
}

/* START OF HEADER CSS */

.header-section {
    background-color: var(--light-blue);
    height: 120px;
    position: sticky;
    position: -webkit-sticky;
    width: 100%;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1 );
    top: 0;
    z-index: 50;
}

.header-container {
    width: var(--small-size-width);
    height: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 0 auto;
    /*display: grid;
    grid-template:
        "logo language"
        "logo nav";
    grid-template-columns: 1fr 1fr;*/
    display: flex;
    justify-content: space-between;
}

.header-logo {
    grid-area: logo;
    color: var(--dark-blue);
}

.header-logo div {
    font-size: 36px;
}

.header-logo_descr {
    font-size: 15px;
}

.header-chat {
    display: none;
    grid-area: chat;
    justify-self: center;
    margin-top: auto;
    margin-bottom: -7px;
}

.header-chat:hover {
   /* opacity: .6;*/
    border-color: var(--dark-blue);
    color: var(--dark-blue);
}

.header-chat:hover img {
   filter: brightness(0.5);
}

@keyframes btn-pulsate {
    0%   { box-shadow: 0px 0px 0 #0575C5; }
    50% { box-shadow: 0px 0px 0.5em #0575C5; }
    100%   { box-shadow: 0px 0px 0 #0575C5; }
}

.btn-pulse {
    animation: btn-pulsate 1s 3;
}

.header-chat img {
    height: 1.5em;
}

.header-language {
    /*grid-area: language;*/
    display: flex;
    justify-content: flex-end;
    margin-bottom: auto;
    
}

.header-nav {
    display: flex;
    /*grid-area: nav;*/
    justify-content: end;
    margin-top: auto;
}

.header-nav_item, .login-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 25px;
    font-weight: 600;
    font-size: .9em;
    gap: 5px;
    color: inherit;
    line-height: normal;
}


.header-nav_contact {
    display: none;
}

#login {
    display: none;
}

.header-nav_item:hover, .login-btn:hover {
    opacity: .6;
}

.menu-slider {
    position: fixed;
    z-index: 10;
    top: -100%;
    min-height: 350px;
    width: 100%;
    background-color: var(--menu-white);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1 );
    max-height: calc(100% - 120px);
    overflow-y: auto;
    scrollbar-width: none; 
}

.menu-animate {
    transition: .5s ease-in;
}

.menu-container {
    display: flex;
    width: var(--small-size-width);
    margin: 40px auto;
    justify-content: space-between;
    color: #616161;
    flex-direction: column;
}

.menu-container h4 {
    font-weight: 600;
    margin-bottom: 0.8em;
    font-size: 110%;
    margin-top: 2em;
}

.menu-block:nth-child(2) h4 {
    margin-top:0;
}

.menu-block-mobile {
    display: initial;
    margin-bottom: 0.8em;
}

.menu-block-mobile hr {
    width: 220px;
    border: 0;
    height: 1px;
    background-color: gray;
    margin: 0.5em 0;
}

.menu-item-bold {
    font-weight: bold;
}

.menu-item-bold:not(:first-child) {
    margin-top: 0.8em;
}

hr.vertical {
    height:80%;
    width:1px;
    border: none;
    background-color: white;
    margin: 0;
    margin-top: auto;
    margin-bottom: auto;
}

hr.faint {
    width: 80%;
    border: none;
    height: 1px;
    background-color: #d9d9d9;
    display: none;
}

.menu-link, .menu-link:visited {
    padding: 6px 12px;
    margin-left: -12px;
    border-radius: 0.5em;
    color: var(--dark-blue);
}

.menu-link:hover {
    background-color: #eff3f9;
    color: var(--button-and-footer-color);
}

@media only screen and (min-width: 640px) {
    .header-chat {
        display: flex;
        border: 1px solid;
        color: var(--button-and-footer-color);
        padding: 6px;
        border-radius: 24px;
        font-size: .8em;
        font-weight: 600;
    }
    
    .header-nav_contact, .header-nav_contact:visited, .header-nav_contact:active {
        display: flex;
        color: inherit;
    }
    
    
    #login {
        display: flex;
        white-space: nowrap;
    }
    
    .header-nav {
        gap: 10px;
    }
    
    .header-container {
        grid-template:
            "logo chat language"
            "logo chat nav";
        grid-template-columns: 1.5fr 1fr 2fr;
    }
    
    .menu-container {
        flex-direction: row;
        font-size: 0.8em;
    }
    
    .menu-block h4, .menu-block:nth-child(2) h4 {
        margin-top: 0.2em;
    }
    
    .menu-block-mobile {
        display: none;
    }

    
    .menu-container&gt;div {
        width: calc(33% - 1.5em);
    }
    
    hr.faint {
        display: block;
    }
    
}

@media only screen and (min-width: 1200px) {
    .header-container {
        width: var(--medium-size-width);
    }
    .menu-container {
        width: var(--medium-size-width);
        font-size: inherit;
    }
    .header-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .menu-slider {
        min-height: 450px;
    }
    
    .header-nav {
        gap: 25px;
    }
    
    .menu-container h4, .menu-block:nth-child(2) h4 {
        margin-top: 0.8em;
    }
    
}
@media only screen and (min-width: 1700px) {
    .header-container {
        width: var(--standard-size-width);
    }
    .menu-container {
        width: var(--standard-size-width);
    }
    
}
@media only screen and (min-width: 1950px) {
    .header-container {
        width: var(--ultra-size-width);
    }
    .menu-container {
        width: var(--ultra-size-width);
    }
    
    .menu-container h4, .menu-block:nth-child(2) h4 {
        margin-top: 1em;
    }
}

/* START OF FOOTER CSS */

.footer-section {
    color: #fff;
    background-color: var(--dark-blue);
}

.footer-container {
    width: var(--small-size-width);
    margin: 0 auto;
}

.footer-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-content div {
    text-align: center;
}

/*.footer-content h3 {
    font-size: 1.3em;
}*/

.footer-link_list {
    margin-bottom: 2rem;
}

.footer-link_list li {
    line-height: 1em;
    padding: 0.4em;
}

.footer-link_list li a, .footer-link_list li button, .footer-link_list li p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.footer-link_list li a {
    font-weight: 600;
}

.footer-link_list li p {
    color: #CBCBCB;
    margin-top: 5px;
}

.footer-link_list li a:hover {
    color: #dda8db;
}

.footer-header {
    color: #CBCBCB;
}

.footer-link_list li button:hover {
    cursor: pointer;
}

.footer-logo {
    height: 70px;
    width: 100%;
}


.sub-section {
    background-color: #926290;
}

.sub-container {
    width: var(--small-size-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
}

.sub-logo_holder {
    height: 80px;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    grid-area: logo;
    width: 100%;
    text-align: center;
}

.sub-social_holder {
    grid-area: social;
    display: flex;
    justify-content: center;
    margin-top: auto;
    height: 30px;
    gap: 7px;
}

.sub-social_holder img {
    width: 30px; /* Needed for safari to understand image size? */
}

.sub-social_holder button {
    color: white;
    cursor: pointer;
}

.sub-info {
    grid-area: info;
    text-align: center;
}

.sub-info p, .sub-info a {
    font-size: 0.95em;
    color: #fff;
    margin: 0;
    display: block;
}

.sub-info_link {
    text-decoration: underline;
}

@media only screen and (min-width: 640px) {
    .footer-link_list li a, .footer-link_list li button, .footer-link_list li p {
        line-height: 1.5em;
    }
    
    .footer-link_list li p {
        margin-top: 0;
    }
    
    .sub-container {
        display: grid;
        grid-template: "logo social info";
        grid-template-columns: 1fr 1fr 1fr;
        align-items: none;
    }
    
    .sub-info {
        text-align: left;
    }
    
    .sub-info-address {
        width: fit-content;
        margin-left: auto;
    }
    
    .sub-info p, .sub-info a {
        font-size: 0.8em;
    }
    
    .sub-logo_holder {
        text-align: left;
    }
    
    .footer-link_list li {
        padding: 0.25em;
    }

}

@media only screen and (min-width: 768px) {
    .footer-link_list li a, .footer-link_list li button, .footer-link_list li p {
        font-size: 18px;
        line-height: 1.5em;
    }
    
    .footer-link_list li p {
        font-size: 16px;
    }
    
    .footer-content {
        justify-content: space-between;
        flex-direction: row;
        gap: 15px;
    }
    
    .footer-content div {
        text-align: left;
        max-width: calc((100% - 2* 15px) / 3);
    }
    
    .footer-content h3 {
        font-size: calc(12px + 1vw);
    }
}

@media only screen and (min-width: 1200px) {
    
    .footer-content h3 {
        font-size: 30px;
    }
    
    .footer-container {
        width: var(--medium-size-width);
    }

    .sub-container {
        width: var(--medium-size-width);
    }
    
}

@media only screen and (min-width: 1700px) {
    .footer-container {
        width: var(--standard-size-width);
    }

    .sub-container {
        width: var(--standard-size-width);
    }
    
}

@media only screen and (min-width: 1950px) {
    .footer-container {
        width: var(--ultra-size-width);
    }

    .sub-container {
        width: var(--ultra-size-width);
    }
}

.container {
    max-width: var(--ultra-size-width);
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */

.hero-container div {
    align-self: center;
}

.hero-list {
    line-height: 40px;
    list-style-type: disc;
    font-size: 1em;
    font-weight: 600;
    margin-left: 20px;
    text-align: left;
}

ul.hero-list li {
    line-height: 1.3em;
    margin-bottom: 0.8em;
}

.hero-layover {
    position: absolute;
    z-index: 2;
    background-color: var(--dark-blue);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
}

.hero-img_phone {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-img {
    display: none;
}

.hero-section {
  background-color: var(--dark-blue);
  display: flex;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: absolute;
  margin: auto;
  text-align: center;
  width: var(--small-size-width);
  color: white;
  left: 5%;
  height: 100%;
  top: 0;
  display: flex;
  z-index: 3;
}  

.hero-content-container {
    width: 100%;
}

.hero-content {
    text-align: center;
}

.hero-button {
    margin-top: 1em;
}

.hero-img {
    display: initial;
    opacity: 0.3;
    object-fit: cover;
    min-width: 100%;
}


@media only screen and (min-width: 640px) {
    .hero-section {
        position: static;
        height: 350px;
    }
    
    .hero-layover {
        display: none;
    }
    
    .hero-img_phone {
        display: none;
    }
    
    .hero-img {
        display: inline;
    }
    
    .hero-content {
        opacity: 0;
        text-align: initial;
    }
    
    .hero-container {
      position: static;
      margin-left: calc((100% - var(--small-size-width)) / 2);
      min-width: 400px;
      margin-right: -100px;
      text-align: left;
      width: calc(50% + 100px);
      color: white;
    }  
    
    .hero-content-container {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    
    .hero-content-container p {
        display: initial;
    }
    
     .hero-content-shape {
         width: 100px;
         min-height: 1px;
         height: 350px;
         float: right;
         shape-outside: polygon(0 100%, 100% 50%, 100% 100%);
         clip-path: polygon(0 100%, 100% 50%, 100% 100%);
         shape-margin: 1em;
     }
    
    .hero-section img {
      min-width: calc(50% + 100px);
      clip-path: polygon(200px 0%, 100% 0%, 100% 100%, 0% 100%);
      shape-outside: polygon(200px 0%, 100% 0%, 100% 100%, 0% 100%);
      min-height: 100%;
      object-fit: cover;
       opacity: 1;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-section {
        height: 450px;
    }
    .hero-container {
        margin-left: calc((100% - var(--medium-size-width)) / 2);
        min-width: 500px;
        margin-right: -100px;
    }
    
    .hero-content-shape {
        height: 450px;
    }
}

@media only screen and (min-width: 1700px) {
    
    .hero-container {
        margin-left: calc((100% - var(--standard-size-width)) / 2);
    }
    
}

@media only screen and (min-width: 1950px) {
    .hero-container {
        margin-left: calc((100% - var(--ultra-size-width)) / 2);
    }
}</pre></body></html>