        /* Team Section */

        
.section-title {
    font-size: 42px;
    color: #2D3436;
    margin-bottom: 15px;
}

.section-description {
    color: #636E72;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .team {
            padding: 80px 80px;
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .team-card {
            text-align: center;
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            border: 2px solid #F0F0F0;
            transition: all 0.3s;
        }

        .team-card:hover {
            border-color: #4ECDC4;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #cd4236;
            margin: 0 auto 20px;
        }

                .team-avatar img {
                    /* display: flex; */
                    /* align-items: center; */
                    /* align-content: stretch; */
                    flex-wrap: wrap;
                    top: 27px;
                    position: relative;
                    LEFT: 0PX;
                    width: 50px;
                }


        .team-card h4 {
            font-size: 18px;
            color: #2D3436;
            margin-bottom: 5px;
        }

        .team-card p {
            color: #636E72;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .btn-view {
            background: linear-gradient(135deg, #4ECDC4 0%, #44A6C6 100%);
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-view:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
        }


         /* Testimonials */
        .testimonials {
            padding: 80px 80px;
            background: #F8F9FA;
        }

        .testimonials-slider {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 20px;
        }

        .testimonial-card {
            min-width: 350px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .stars {
            color: #FFD93D;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .testimonial-text {
            color: #636E72;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E8E8E8 0%, #D0D0D0 100%);
        }

        .author-info h5 {
            color: #2D3436;
            margin-bottom: 3px;
        }

        .author-info p {
            color: #636E72;
            font-size: 13px;
        }




         /* Responsive */
        @media (max-width: 1024px) {
            header, .hero, .benefits, .courses, .team, .testimonials {
                padding-left: 40px;
                padding-right: 40px;
            }

            .benefits-grid, .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
             .why-content {
                gap: 40px;
            }

            .why-features {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
            }

            nav {
                flex-direction: column;
                gap: 15px;
            }

            .hero, .why-content {
                flex-direction: column;
                text-align: center;
            }

            .hero h1 {
                font-size: 42px;
            }

            .benefits-grid, .courses-grid, .team-grid {
                grid-template-columns: 1fr;
            }

            .courses-header {
                flex-direction: column;
                gap: 20px;
            }

            .course-tabs {
                flex-wrap: wrap;
                justify-content: center;
            }
            .why-features {
                max-width: 400px;
            }

        }



        /* Why Choose Us Section */
        .why-choose-us {
            padding: 35px 2px;
            background: linear-gradient(135deg, #F8F9FA 0%, #E5F5FF 50%, #FFE5E5 100%);
        }

        .why-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
            text-align: center;
        }

        .why-text {
            max-width: 700px;
        }

        .why-text .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .why-text .section-description {
            text-align: center;
            margin: 0 20px 35px;
            line-height: 1.8;
        }

        .why-features {
            margin-bottom: 35px;
            display: inline-block;
            text-align: left;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
            color: #2D3436;
        }

        .feature-check {
            width: 28px;
            height: 28px;
            background: #cd4236;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
        }

        .why-illustration {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .why-illustration svg {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
        }



.footer-59391 {
  border-top: 1px solid #efefef;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 4rem 0; }
  .footer-59391 .site-logo {
    color: #fff; }
    .footer-59391 .site-logo a {
      font-size: 30px;
      color: #000;
      font-weight: 900; }
  .footer-59391 .social-icons li {
    display: inline-block; }
    .footer-59391 .social-icons li a {
      display: inline-block;
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 50%; }
      .footer-59391 .social-icons li a.dr {
        background: #cd4236; }
      .footer-59391 .social-icons li a.be {
        background: #cd4236; }
      .footer-59391 .social-icons li a.tw {
        background: #cd4236; }
      .footer-59391 .social-icons li a.in {
        background: #cd4236; }
      .footer-59391 .social-icons li a.fb {
        background: #cd4236; }
      .footer-59391 .social-icons li a.yt {
        background: #cd4236; }
      .footer-59391 .social-icons li a span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: #fff; }
  .footer-59391 .nav-links li {
    display: inline-block; }
    .footer-59391 .nav-links li a {
      font-size: 14px;
      color: #777;
      padding: 10px; }
  @media (max-width: 1199.98px) {
    .footer-59391 .nav-links.nav-left li:first-child a {
      padding-left: 0; } }
  .footer-59391 .nav-links.nav-right li:last-child a {
    padding-right: 0; }
  @media (max-width: 1199.98px) {
    .footer-59391 .nav-links.nav-right li:first-child a {
      padding-left: 0; } }
  .footer-59391 .copyright {
    border-top: 1px solid #efefef;
    padding-top: 50px;
    text-align: center;
    color: #777; }



















div.lp-pom-root .lp-pom-form-field.legacy {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 12px
}

div.lp-pom-root .lp-pom-form-field.legacy label {
    position: absolute;
    left: 0;
    top: 0
}

div.lp-pom-root .lp-pom-form-field.legacy select {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    border: 1px solid #666
}

div.lp-pom-root .lp-pom-form-field.legacy select option {
    padding: 0.2em
}

div.lp-pom-root .lp-pom-form-field.legacy textarea,
div.lp-pom-root .lp-pom-form-field.legacy input[type=text] {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    border: 1px solid #666
}

div.lp-pom-root .lp-pom-form-field.legacy input[type=text]::-moz-focus-inner {
    padding: 0;
    border: none
}

div.lp-pom-root .lp-pom-form-field.legacy select::-moz-focus-inner {
    padding: 0;
    border: none
}

div.lp-pom-root .lp-pom-form-field.legacy .optionsList {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0
}

div.lp-pom-root .lp-pom-form-field.legacy .option {
    position: relative;
    margin-bottom: 6px
}

div.lp-pom-root .lp-pom-form-field.legacy .option input {
    position: absolute
}

div.lp-pom-root .lp-pom-form-field.legacy .option label {
    position: relative;
    display: block
}

div.lp-pom-root .lp-pom-form input.submit {
    position: absolute;
    left: 0;
    top: 0
}

.lp-pom-form.has-axis * {
    box-sizing: border-box
}

.lp-pom-form.has-axis form {
    position: static !important
}

.lp-pom-form.has-axis .fields {
    display: flex;
    justify-content: flex-start
}

.lp-pom-form.has-axis input,
.lp-pom-form.has-axis select,
.lp-pom-form.has-axis textarea {
    box-shadow: none;
    outline: none
}

.lp-pom-form.has-axis input[type='text'],
.lp-pom-form.has-axis input[type='email'],
.lp-pom-form.has-axis input[type='tel'],
.lp-pom-form.has-axis select,
.lp-pom-form.has-axis textarea {
    width: 100%
}

.lp-pom-form.has-axis select {
    padding: 0.2em
}

.lp-pom-form.has-axis input::-moz-focus-inner {
    padding: 0;
    border: none
}

.lp-pom-form.has-axis select::-moz-focus-inner {
    padding: 0;
    border: none
}

.lp-pom-form.has-axis .option {
    align-items: center;
    margin-bottom: 6px;
    padding-left: 20px;
    padding-right: 8px
}

.lp-pom-form.has-axis .option input {
    margin-right: 8px;
    margin-left: -20px
}

html {
    color: #000;
    background: rgba(0, 0, 0, 0)
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0
}

button::-moz-focus-inner {
    padding: 0;
    border: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

fieldset,
img {
    border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
    font-style: inherit;
    font-weight: inherit
}

del,
ins {
    text-decoration: none
}

li {
    list-style: none
}

caption,
th {
    text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal
}

q:before,
q:after {
    content: ''
}

abbr,
acronym {
    border: 0;
    font-variant: normal
}

sup {
    vertical-align: baseline
}

sub {
    vertical-align: baseline
}

legend {
    color: #000
}

input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit
}

:focus {
    outline: 0
}

blockquote,
q {
    quotes: none
}

.clearfix:after {
    content: "";
    display: table;
    clear: both
}

html {
    --scale: 1
}

html,
body,
.lp-pom-body {
    height: 100%;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none
}

body.lp-pom-body.lp-sub-page {
    -webkit-transform: translateZ(0)
}

body.lp-pom-body:not(.lp-convertable-page) {
    background-color: #fff
}

body.lp-pom-body.lp-autoscale-enabled {
    overflow-x: clip
}

body.lp-pom-body.lp-convertable-page {
    overflow: hidden
}

body.lp-pom-body.lp-sub-page .lp-pom-root {
    overflow: hidden
}

div.lp-pom-root {
    min-height: 100%;
    position: relative;
    top: 0
}

div.lp-pom-root,
.cke-text {
    font-size: 14px;
    line-height: 17px
}

.lp-pom-body {
    font-family: Arial, sans-serif
}

.lp-positioned-content {
    position: absolute;
    left: 50%;
    top: 0;
    height: 0;
    z-index: 1
}

.lp-pom-block-content {
    position: relative;
    height: 100%
}

.lp-pom-root .lp-pom-button {
    text-decoration: none;
    display: block;
    cursor: pointer
}

.lp-pom-root .lp-pom-button:disabled {
    opacity: 0.6;
    pointer-events: none
}

div.lp-pom-root .lp-pom-button span {
    position: absolute;
    top: 50%;
    display: block;
    text-align: center;
    left: 0;
    right: 0;
    padding: 0 calc(8px * var(--scale, 1));
    cursor: pointer
}

div.lp-pom-root .lp-pom-button {
    *background-image: url(../images/transparent.gif);
    _background-image: url(../images/transparent.gif);
    background-image: url(../images/transparent.gif);
    background: rgba(0, 0, 0, 0)
}

.lp-pom-button .label strong {
    font-weight: bolder
}

.lp-pom-button .label em {
    font-style: italic
}

.lp-pom-text span[style~="color:"] a {
    color: inherit
}

div.lp-pom-root .lp-pom-text span {
    line-height: 0
}

div.lp-pom-root .lp-pom-text.inline span {
    line-height: 1
}

div.lp-pom-root .lp-pom-text p,
.cke-text p {
    line-height: 17px
}

div.lp-pom-root .lp-pom-text.nlh p,
.cke-text.nlh p {
    line-height: 22px
}

div.lp-pom-root .lp-pom-text a,
.cke-text a {
    text-decoration: underline
}

div.lp-pom-root .lp-pom-text h1,
.cke-text h1 {
    font-size: 28px;
    margin-bottom: 19px;
    line-height: 34px
}

div.lp-pom-root .lp-pom-text h2,
.cke-text h2 {
    font-size: 21px;
    margin-bottom: 16px;
    line-height: 25px
}

div.lp-pom-root .lp-pom-text h3,
.cke-text h3 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 19px
}

div.lp-pom-root .lp-pom-text h4,
.cke-text h4 {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 17px
}

div.lp-pom-root .lp-pom-text h5,
.cke-text h5 {
    font-size: 12px;
    margin-bottom: 13px;
    line-height: 14px
}

div.lp-pom-root .lp-pom-text h6,
.cke-text h6 {
    font-size: 10px;
    margin-bottom: 12px;
    line-height: 12px
}

div.lp-pom-root .lp-pom-text .lplh-8,
div.lp-pom-root .lp-pom-text.nlh .lplh-8,
.cke-text .lplh-8,
.cke-text.nlh .lplh-8 {
    line-height: 8px
}

div.lp-pom-root .lp-pom-text .lplh-9,
div.lp-pom-root .lp-pom-text.nlh .lplh-9,
.cke-text .lplh-9,
.cke-text.nlh .lplh-9 {
    line-height: 9px
}

div.lp-pom-root .lp-pom-text .lplh-10,
div.lp-pom-root .lp-pom-text.nlh .lplh-10,
.cke-text .lplh-10,
.cke-text.nlh .lplh-10 {
    line-height: 10px
}

div.lp-pom-root .lp-pom-text .lplh-11,
div.lp-pom-root .lp-pom-text.nlh .lplh-11,
.cke-text .lplh-11,
.cke-text.nlh .lplh-11 {
    line-height: 11px
}

div.lp-pom-root .lp-pom-text .lplh-12,
div.lp-pom-root .lp-pom-text.nlh .lplh-12,
.cke-text .lplh-12,
.cke-text.nlh .lplh-12 {
    line-height: 12px
}

div.lp-pom-root .lp-pom-text .lplh-13,
div.lp-pom-root .lp-pom-text.nlh .lplh-13,
.cke-text .lplh-13,
.cke-text.nlh .lplh-13 {
    line-height: 13px
}

div.lp-pom-root .lp-pom-text .lplh-14,
div.lp-pom-root .lp-pom-text.nlh .lplh-14,
.cke-text .lplh-14,
.cke-text.nlh .lplh-14 {
    line-height: 14px
}

div.lp-pom-root .lp-pom-text .lplh-15,
div.lp-pom-root .lp-pom-text.nlh .lplh-15,
.cke-text .lplh-15,
.cke-text.nlh .lplh-15 {
    line-height: 15px
}

div.lp-pom-root .lp-pom-text .lplh-16,
div.lp-pom-root .lp-pom-text.nlh .lplh-16,
.cke-text .lplh-16,
.cke-text.nlh .lplh-16 {
    line-height: 16px
}

div.lp-pom-root .lp-pom-text .lplh-17,
div.lp-pom-root .lp-pom-text.nlh .lplh-17,
.cke-text .lplh-17,
.cke-text.nlh .lplh-17 {
    line-height: 17px
}

div.lp-pom-root .lp-pom-text .lplh-18,
div.lp-pom-root .lp-pom-text.nlh .lplh-18,
.cke-text .lplh-18,
.cke-text.nlh .lplh-18 {
    line-height: 18px
}

div.lp-pom-root .lp-pom-text .lplh-19,
div.lp-pom-root .lp-pom-text.nlh .lplh-19,
.cke-text .lplh-19,
.cke-text.nlh .lplh-19 {
    line-height: 19px
}

div.lp-pom-root .lp-pom-text .lplh-20,
div.lp-pom-root .lp-pom-text.nlh .lplh-20,
.cke-text .lplh-20,
.cke-text.nlh .lplh-20 {
    line-height: 20px
}

div.lp-pom-root .lp-pom-text .lplh-22,
div.lp-pom-root .lp-pom-text.nlh .lplh-22,
.cke-text .lplh-22,
.cke-text.nlh .lplh-22 {
    line-height: 22px
}

div.lp-pom-root .lp-pom-text .lplh-24,
div.lp-pom-root .lp-pom-text.nlh .lplh-24,
.cke-text .lplh-24,
.cke-text.nlh .lplh-24 {
    line-height: 24px
}

div.lp-pom-root .lp-pom-text .lplh-26,
div.lp-pom-root .lp-pom-text.nlh .lplh-26,
.cke-text .lplh-26,
.cke-text.nlh .lplh-26 {
    line-height: 26px
}

div.lp-pom-root .lp-pom-text .lplh-29,
div.lp-pom-root .lp-pom-text.nlh .lplh-29,
.cke-text .lplh-29,
.cke-text.nlh .lplh-29 {
    line-height: 29px
}

div.lp-pom-root .lp-pom-text .lplh-31,
div.lp-pom-root .lp-pom-text.nlh .lplh-31,
.cke-text .lplh-31,
.cke-text.nlh .lplh-31 {
    line-height: 31px
}

div.lp-pom-root .lp-pom-text .lplh-32,
div.lp-pom-root .lp-pom-text.nlh .lplh-32,
.cke-text .lplh-32,
.cke-text.nlh .lplh-32 {
    line-height: 32px
}

div.lp-pom-root .lp-pom-text .lplh-34,
div.lp-pom-root .lp-pom-text.nlh .lplh-34,
.cke-text .lplh-34,
.cke-text.nlh .lplh-34 {
    line-height: 34px
}

div.lp-pom-root .lp-pom-text .lplh-35,
div.lp-pom-root .lp-pom-text.nlh .lplh-35,
.cke-text .lplh-35,
.cke-text.nlh .lplh-35 {
    line-height: 35px
}

div.lp-pom-root .lp-pom-text .lplh-38,
div.lp-pom-root .lp-pom-text.nlh .lplh-38,
.cke-text .lplh-38,
.cke-text.nlh .lplh-38 {
    line-height: 38px
}

div.lp-pom-root .lp-pom-text .lplh-40,
div.lp-pom-root .lp-pom-text.nlh .lplh-40,
.cke-text .lplh-40,
.cke-text.nlh .lplh-40 {
    line-height: 40px
}

div.lp-pom-root .lp-pom-text .lplh-42,
div.lp-pom-root .lp-pom-text.nlh .lplh-42,
.cke-text .lplh-42,
.cke-text.nlh .lplh-42 {
    line-height: 42px
}

div.lp-pom-root .lp-pom-text .lplh-43,
div.lp-pom-root .lp-pom-text.nlh .lplh-43,
.cke-text .lplh-43,
.cke-text.nlh .lplh-43 {
    line-height: 43px
}

div.lp-pom-root .lp-pom-text .lplh-45,
div.lp-pom-root .lp-pom-text.nlh .lplh-45,
.cke-text .lplh-45,
.cke-text.nlh .lplh-45 {
    line-height: 45px
}

div.lp-pom-root .lp-pom-text .lplh-58,
div.lp-pom-root .lp-pom-text.nlh .lplh-58,
.cke-text .lplh-58,
.cke-text.nlh .lplh-58 {
    line-height: 58px
}

div.lp-pom-root .lp-pom-text .lplh-77,
div.lp-pom-root .lp-pom-text.nlh .lplh-77,
.cke-text .lplh-77,
.cke-text.nlh .lplh-77 {
    line-height: 77px
}

div.lp-pom-root .lp-pom-text .lplh-86,
div.lp-pom-root .lp-pom-text.nlh .lplh-86,
.cke-text .lplh-86,
.cke-text.nlh .lplh-86 {
    line-height: 86px
}

div.lp-pom-root .lp-pom-text .lplh-87,
div.lp-pom-root .lp-pom-text.nlh .lplh-87,
.cke-text .lplh-87,
.cke-text.nlh .lplh-87 {
    line-height: 87px
}

div.lp-pom-root .lp-pom-text .lplh-115,
div.lp-pom-root .lp-pom-text.nlh .lplh-115,
.cke-text .lplh-115,
.cke-text.nlh .lplh-115 {
    line-height: 115px
}

div.lp-pom-root .lp-pom-text p,
.cke-text p,
div.lp-pom-root .lp-pom-text blockquote,
.cke-text blockquote,
div.lp-pom-root .lp-pom-text ul,
.cke-text ul,
div.lp-pom-root .lp-pom-text dl,
.cke-text dl {
    margin-bottom: 16px
}

div.lp-pom-root .lp-pom-text>p:last-child,
div.lp-pom-root .lp-pom-text>blockquote:last-child,
div.lp-pom-root .lp-pom-text>dl:last-child,
div.lp-pom-root .lp-pom-text>h1:last-child,
div.lp-pom-root .lp-pom-text>h2:last-child,
div.lp-pom-root .lp-pom-text>h3:last-child,
div.lp-pom-root .lp-pom-text>h4:last-child,
div.lp-pom-root .lp-pom-text>h5:last-child,
div.lp-pom-root .lp-pom-text>h6:last-child,
div.lp-pom-root .lp-pom-text .fr-view>p:last-child,
div.lp-pom-root .lp-pom-text .fr-view>blockquote:last-child,
div.lp-pom-root .lp-pom-text .fr-view>dl:last-child,
div.lp-pom-root .lp-pom-text .fr-view>h1:last-child,
div.lp-pom-root .lp-pom-text .fr-view>h2:last-child,
div.lp-pom-root .lp-pom-text .fr-view>h3:last-child,
div.lp-pom-root .lp-pom-text .fr-view>h4:last-child,
div.lp-pom-root .lp-pom-text .fr-view>h5:last-child,
div.lp-pom-root .lp-pom-text .fr-view>h6:last-child {
    margin-bottom: 0
}

div.lp-pom-root .lp-pom-text h1,
.cke-text h1,
div.lp-pom-root .lp-pom-text h2,
.cke-text h2,
div.lp-pom-root .lp-pom-text h3,
.cke-text h3,
div.lp-pom-root .lp-pom-text h4,
.cke-text h4,
div.lp-pom-root .lp-pom-text h5,
.cke-text h5,
div.lp-pom-root .lp-pom-text h6,
.cke-text h6 {
    font-weight: bolder
}

div.lp-pom-root .lp-pom-text b,
.cke-text b,
div.lp-pom-root .lp-pom-text strong,
.cke-text strong {
    font-weight: bolder
}

div.lp-pom-root .lp-pom-text optgroup,
.cke-text optgroup {
    font-weight: normal
}

div.lp-pom-root .lp-pom-text abbr,
.cke-text abbr,
div.lp-pom-root .lp-pom-text acronym,
.cke-text acronym {
    border-bottom: 1px dotted #000;
    cursor: help
}

div.lp-pom-root .lp-pom-text em,
.cke-text em {
    font-style: italic
}

div.lp-pom-root .lp-pom-text del,
.cke-text del {
    text-decoration: line-through
}

div.lp-pom-root .lp-pom-text blockquote,
.cke-text blockquote,
div.lp-pom-root .lp-pom-text ul,
.cke-text ul,
div.lp-pom-root .lp-pom-text ol,
.cke-text ol,
div.lp-pom-root .lp-pom-text dl,
.cke-text dl {
    margin: 14px;
    font-size: 14px;
    line-height: 17px
}

div.lp-pom-root .lp-pom-text ul,
.cke-text ul {
    margin-left: 16px
}

div.lp-pom-root .lp-pom-text ol,
.cke-text ol {
    margin-left: 25px
}

div.lp-pom-root .lp-pom-text li,
.cke-text li {
    display: list-item
}

div.lp-pom-root .lp-pom-text ol li,
.cke-text ol li {
    list-style: decimal outside
}

div.lp-pom-root .lp-pom-text ul li,
.cke-text ul li {
    list-style: disc outside
}

div.lp-pom-root .lp-pom-text dl dd,
.cke-text dl dd {
    margin-left: 14px
}

div.lp-pom-root .lp-pom-text th,
.cke-text th,
div.lp-pom-root .lp-pom-text td,
.cke-text td {
    border: 1px solid #000;
    padding: 7px
}

div.lp-pom-root .lp-pom-text th,
.cke-text th {
    font-weight: bold;
    text-align: center
}

div.lp-pom-root .lp-pom-text caption,
.cke-text caption {
    margin-bottom: 7px;
    text-align: center
}

div.lp-pom-root .lp-pom-text sup,
.cke-text sup {
    vertical-align: super
}

div.lp-pom-root .lp-pom-text sub,
.cke-text sub {
    vertical-align: sub
}

div.lp-pom-root #powered-by-unbounce {
    display: block !important;
    position: absolute !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    text-indent: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 48px !important;
    overflow: hidden !important;
    background: #0098db !important;
    z-index: 8675309 !important;
    text-align: center !important;
    font-size: 11px !important;
    color: #666 !important;
    font-weight: bold !important;
    transform: rotate(0deg) !important
}

div.lp-pom-root #powered-by-unbounce a {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    z-index: 18885159161 !important;
    text-indent: 0 !important;
    height: 44px !important
}

div.lp-pom-root #powered-by-unbounce img {
    display: inline !important;
    position: static !important;
    visibility: visible !important;
    max-width: 440px;
    margin-top: 7px;
    width: 85% !important;
    vertical-align: bottom !important
}

div.lp-pom-root .lp-element.lp-code {
    overflow: hidden
}

.lp-pom-root .lp-pom-image img {
    vertical-align: top
}

.lp-pom-root .lp-pom-image a img {
    cursor: pointer
}

.lp-pom-social-widget .horizontal {
    margin-left: 0;
    padding: 0
}

.lp-pom-social-widget .horizontal .facebook_container {
    margin-left: 0;
    overflow: hidden
}

.lp-pom-social-widget .widget {
    padding-right: 5px
}

.lp-pom-social-widget .fb_edge_widget_with_comment span.fb_edge_comment_widget iframe.fb_ltr {
    display: none !important
}

.lp-pom-social-widget iframe.fb_ltr {
    display: none !important
}

.fb_edge_widget_with_comment span {
    width: 120px !important
}

.fb_recommend .fb_edge_widget_with_comment iframe {
    width: 97px !important
}

body.ms-windows .fb_recommend {
    overflow: hidden;
    width: 88px
}

body.ms-windows .fb_like {
    overflow: hidden;
    width: 48px !important
}

body.ms-windows .lp-editor .fb_recommend {
    overflow: hidden;
    width: 90px
}

body.ms-windows .lp-editor .fb_like {
    overflow: hidden;
    width: 50px !important
}

@-moz-document url-prefix() {
    body.ms-windows .fb_recommend {
        width: 86px !important
    }

    body.ms-windows .lp-editor .fb_recommend {
        width: 90px !important
    }

    body.ms-windows .lp-editor .fb_like {
        width: 50px !important
    }
}

.fb_like .fb_edge_widget_with_comment iframe {
    width: 50px !important
}

.lp-pom-social-widget .vertical {
    margin-left: 0;
    overflow: hidden
}

.lp-pom-social-widget .horizontal.widget_container {
    margin-right: -5px
}

.lp-pom-social-widget .widget.horizontal.container {
    margin-right: 0;
    white-space: nowrap;
    float: left
}

.lp-pom-social-widget .facebook_container.horizontal.container {
    margin: 0
}

.lp-pom-social-widget .widget_container.horizontal.top .twitter_container {
    margin-top: 40px
}

.lp-pom-social-widget .widget_container.horizontal.top.widget-count-1 .twitter_container {
    margin-top: 0
}

div.lp-social-widget-overlay {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000
}

.lp-pom-video-background iframe {
    transition: opacity 200ms linear
}






































    body {
      color: #1c375b;
    }

    a {
      color: #6F8197;
      text-decoration: none;
    }

    #lp-pom-root {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: none;
      margin: auto;
      padding-top: 0px;
      border-radius: 0px;
      min-width: 1170px;
      /* height: 5639px; */
    }

    #lp-pom-block-11 {
      display: block;
      background: rgba(28, 55, 91, 0.6);
      background-image: url(../images/bg.jpg);
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 100%;
      height: 900px;
      position: relative;
    }

    #lp-pom-image-20 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 30px;
      z-index: 2;
      position: absolute;
    }

    #lp-pom-box-23 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 200px;
      z-index: 3;
      width: 1170px;
      height: 242px;
      position: absolute;
    }

    #lp-pom-text-24 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 435px;
      top: 0px;
      z-index: 4;
      width: 300px;
      height: 26px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-25 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 277px;
      top: 33px;
      z-index: 5;
      width: 616px;
      height: 77px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-26 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 307px;
      top: 103px;
      z-index: 6;
      width: 556px;
      height: 48px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-button-27 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: 460px;
      top: 177px;
      z-index: 7;
      width: 250px;
      height: 65px;
      position: absolute;
      background: rgba(205, 66, 54, 1);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: 1px;
      border-color: #0000;
      font-size: 20px;
      line-height: 24px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-30 {
      display: block;
      background: rgba(255, 255, 255, 0.1);
      border-style: dashed;
      border-width: 1px;
      border-color: #8f9aa9;
      border-radius: 4px;
      left: 185px;
      top: 500px;
      z-index: 8;
      width: 168px;
      height: 168px;
      position: absolute;
    }

    #lp-pom-image-31 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 59px;
      top: 39px;
      z-index: 1;
      position: absolute;
    }

    #lp-pom-button-35 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: -1px;
      top: 104px;
      z-index: 9;
      width: 170px;
      height: 26px;
      position: absolute;
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-36 {
      display: block;
      background: rgba(112, 67, 248, 1);
      border-style: none;
      border-radius: 2px;
      left: 125px;
      top: 9px;
      z-index: 10;
      width: 34px;
      height: 18px;
      position: absolute;
    }

    #lp-pom-text-37 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 3px;
      top: 0px;
      z-index: 11;
      width: 26px;
      height: 16px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-38 {
      display: block;
      background: rgba(255, 255, 255, 0.1);
      border-style: dashed;
      border-width: 1px;
      border-color: #8f9aa9;
      border-radius: 4px;
      left: 385px;
      top: 500px;
      z-index: 12;
      width: 168px;
      height: 168px;
      position: absolute;
    }

    #lp-pom-image-39 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 59px;
      top: 39px;
      z-index: 13;
      position: absolute;
    }

    #lp-pom-button-40 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: -1px;
      top: 106px;
      z-index: 16;
      width: 170px;
      height: 26px;
      position: absolute;
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-41 {
      display: block;
      background: rgba(239, 114, 19, 1);
      border-style: none;
      border-radius: 2px;
      left: 125px;
      top: 9px;
      z-index: 14;
      width: 34px;
      height: 18px;
      position: absolute;
    }

    #lp-pom-text-42 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 3px;
      top: 0px;
      z-index: 15;
      width: 26px;
      height: 16px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-46 {
      display: block;
      background: rgba(255, 255, 255, 0.1);
      border-style: dashed;
      border-width: 1px;
      border-color: #8f9aa9;
      border-radius: 4px;
      left: 785px;
      top: 500px;
      z-index: 17;
      width: 168px;
      height: 168px;
      position: absolute;
    }

    #lp-pom-image-47 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 59px;
      top: 39px;
      z-index: 18;
      position: absolute;
    }

    #lp-pom-button-48 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: -1px;
      top: 106px;
      z-index: 19;
      width: 170px;
      height: 26px;
      position: absolute;
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-49 {
      display: block;
      background: rgba(53, 191, 230, 1);
      border-style: none;
      border-radius: 2px;
      left: 125px;
      top: 9px;
      z-index: 20;
      width: 34px;
      height: 18px;
      position: absolute;
    }

    #lp-pom-text-50 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 3px;
      top: 0px;
      z-index: 21;
      width: 26px;
      height: 16px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-51 {
      display: block;
      background: rgba(255, 255, 255, 0.1);
      border-style: dashed;
      border-width: 1px;
      border-color: #8f9aa9;
      border-radius: 4px;
      left: 585px;
      top: 500px;
      z-index: 22;
      width: 168px;
      height: 168px;
      position: absolute;
    }

    #lp-pom-image-52 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 59px;
      top: 39px;
      z-index: 23;
      position: absolute;
    }

    #lp-pom-button-53 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: -1px;
      top: 104px;
      z-index: 24;
      width: 170px;
      height: 26px;
      position: absolute;
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-54 {
      display: block;
      background: rgba(93, 188, 44, 1);
      border-style: none;
      border-radius: 2px;
      left: 125px;
      top: 8px;
      z-index: 25;
      width: 34px;
      height: 18px;
      position: absolute;
    }

    #lp-pom-text-55 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 3px;
      top: 0px;
      z-index: 26;
      width: 26px;
      height: 16px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-61 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 965px;
      top: 498px;
      z-index: 27;
      position: absolute;
    }

    #lp-pom-box-453 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 598px;
      top: 10px;
      z-index: 177;
      width: 572px;
      height: 80px;
      position: absolute;
    }

    #lp-pom-button-455 {
      display: block;
      border-style: none;
      border-radius: 5px;
      left: 438px;
      top: 19px;
      z-index: 178;
      width: 127px;
      height: 42px;
      position: absolute;
      background: rgba(255, 255, 255, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-button-456 {
      display: block;
      border-style: none;
      border-radius: 5px;
      left: 315px;
      top: 19px;
      z-index: 179;
      width: 113px;
      height: 42px;
      position: absolute;
      background: rgba(255, 255, 255, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-button-457 {
      display: block;
      border-style: none;
      border-radius: 5px;
      left: 197px;
      top: 19px;
      z-index: 180;
      width: 117px;
      height: 42px;
      position: absolute;
      background: rgba(255, 255, 255, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-button-458 {
      display: block;
      border-style: none;
      border-radius: 5px;
      left: 0px;
      top: 19px;
      z-index: 181;
      width: 100px;
      height: 42px;
      position: absolute;
      background: rgba(255, 255, 255, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-button-459 {
      display: block;
      border-style: none;
      border-radius: 5px;
      left: 97px;
      top: 19px;
      z-index: 182;
      width: 90px;
      height: 42px;
      position: absolute;
      background: rgba(255, 255, 255, 0);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 16px;
      line-height: 19px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-block-12 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 1170px;
      height: 600px;
      position: relative;
    }

    #lp-pom-image-64 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 1000px;
      z-index: 28;
      position: absolute;
    }

    #lp-pom-box-65 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 600px;
      top: 1080px;
      z-index: 29;
      width: 570px;
      height: 173px;
      position: absolute;
    }

    #lp-pom-text-66 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 30;
      width: 300px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-67 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 36px;
      z-index: 31;
      width: 570px;
      height: 45px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-68 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 95px;
      z-index: 32;
      width: 570px;
      height: 48px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-69 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 168px;
      z-index: 33;
      position: absolute;
    }

    #lp-pom-box-73 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 600px;
      top: 1308px;
      z-index: 34;
      width: 270px;
      height: 112px;
      position: absolute;
    }

    #lp-pom-box-74 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 35;
      width: 270px;
      height: 24px;
      position: absolute;
    }

    #lp-pom-image-75 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 7px;
      z-index: 36;
      position: absolute;
    }

    #lp-pom-text-76 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 20px;
      top: 0px;
      z-index: 37;
      width: 250px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-77 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 34px;
      z-index: 38;
      width: 270px;
      height: 24px;
      position: absolute;
    }

    #lp-pom-image-78 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 7px;
      z-index: 39;
      position: absolute;
    }

    #lp-pom-text-79 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 20px;
      top: 0px;
      z-index: 40;
      width: 250px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-80 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 68px;
      z-index: 41;
      width: 270px;
      height: 24px;
      position: absolute;
    }

    #lp-pom-image-81 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 7px;
      z-index: 42;
      position: absolute;
    }

    #lp-pom-text-82 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 20px;
      top: 0px;
      z-index: 43;
      width: 250px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-85 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 900px;
      top: 1308px;
      z-index: 44;
      width: 270px;
      height: 112px;
      position: absolute;
    }

    #lp-pom-box-86 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 45;
      width: 270px;
      height: 24px;
      position: absolute;
    }

    #lp-pom-image-87 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 7px;
      z-index: 46;
      position: absolute;
    }

    #lp-pom-text-88 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 20px;
      top: 0px;
      z-index: 47;
      width: 250px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-89 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 34px;
      z-index: 48;
      width: 270px;
      height: 24px;
      position: absolute;
    }

    #lp-pom-image-90 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 7px;
      z-index: 49;
      position: absolute;
    }

    #lp-pom-text-91 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 20px;
      top: 0px;
      z-index: 50;
      width: 250px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-92 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 68px;
      z-index: 51;
      width: 270px;
      height: 24px;
      position: absolute;
    }

    #lp-pom-image-93 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 7px;
      z-index: 52;
      position: absolute;
    }

    #lp-pom-text-94 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 20px;
      top: 0px;
      z-index: 53;
      width: 250px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-block-13 {
      display: block;
      background: rgba(245, 245, 245, 1);
      background-image: url(images/25f790d1-01-pattern_1000000000000000000028.png);
      background-repeat: repeat;
      background-position: left top;
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 100%;
      height: 650px;
      position: relative;
    }

    #lp-pom-box-110 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 1838px;
      z-index: 54;
      width: 370px;
      height: 616px;
      position: absolute;
    }

    #lp-pom-image-111 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 0px;
      z-index: 55;
      position: absolute;
    }

    #lp-pom-box-112 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 300px;
      z-index: 56;
      width: 370px;
      height: 301px;
      position: absolute;
    }

    #lp-pom-text-115 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 67px;
      z-index: 57;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-117 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 110px;
      z-index: 58;
      width: 290px;
      height: 96px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-118 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: solid none none none;
      border-width: 2px;
      border-color: #f5f5f5;
      border-radius: 0px;
      left: 40px;
      top: 235px;
      z-index: 59;
      width: 290px;
      height: 48px;
      position: absolute;
    }

    #lp-pom-image-119 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 9px;
      z-index: 60;
      position: absolute;
    }

    #lp-pom-text-120 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 22px;
      top: 7px;
      z-index: 61;
      width: 85px;
      height: 22px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-127 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 154px;
      top: 7px;
      z-index: 62;
      width: 85px;
      height: 22px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-128 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 133px;
      top: 11px;
      z-index: 64;
      position: absolute;
    }

    #lp-pom-button-448 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: 30px;
      top: 35px;
      z-index: 65;
      width: 188px;
      height: 34px;
      position: absolute;
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      text-shadow: none;
      color: #1C375B;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 22px;
      line-height: 26px;
      font-weight: 700;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-113 {
      display: block;
      background: rgba(205, 66, 54, 1);
      border-style: none;
      border-radius: 4px;
      left: 40px;
      top: 40px;
      z-index: 63;
      width: 60px;
      height: 60px;
      position: absolute;
    }

    #lp-pom-text-134 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 7.5px;
      top: 13px;
      z-index: 66;
      width: 45px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-135 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 400px;
      top: 1838px;
      z-index: 67;
      width: 370px;
      height: 616px;
      position: absolute;
    }

    #lp-pom-image-136 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 0px;
      z-index: 68;
      position: absolute;
    }

    #lp-pom-box-137 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 300px;
      z-index: 69;
      width: 370px;
      height: 301px;
      position: absolute;
    }

    #lp-pom-text-139 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 67px;
      z-index: 70;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-140 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 110px;
      z-index: 71;
      width: 290px;
      height: 96px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-141 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: solid none none none;
      border-width: 2px;
      border-color: #f5f5f5;
      border-radius: 0px;
      left: 40px;
      top: 235px;
      z-index: 72;
      width: 290px;
      height: 48px;
      position: absolute;
    }

    #lp-pom-image-142 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 9px;
      z-index: 73;
      position: absolute;
    }

    #lp-pom-text-143 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 22px;
      top: 7px;
      z-index: 74;
      width: 85px;
      height: 22px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-144 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 154px;
      top: 7px;
      z-index: 75;
      width: 85px;
      height: 22px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-145 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 133px;
      top: 11px;
      z-index: 76;
      position: absolute;
    }

    #lp-pom-button-449 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: 30px;
      top: 35px;
      z-index: 77;
      width: 192px;
      height: 34px;
      position: absolute;
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      text-shadow: none;
      color: #1C375B;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 22px;
      line-height: 26px;
      font-weight: 700;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-146 {
      display: block;
      background: rgba(205, 66, 54, 1);
      border-style: none;
      border-radius: 4px;
      left: 40px;
      top: 40px;
      z-index: 78;
      width: 60px;
      height: 60px;
      position: absolute;
    }

    #lp-pom-text-147 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 7.5px;
      top: 14px;
      z-index: 79;
      width: 45px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-148 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 800px;
      top: 1838px;
      z-index: 80;
      width: 370px;
      height: 616px;
      position: absolute;
    }

    #lp-pom-image-149 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 0px;
      z-index: 81;
      position: absolute;
    }

    #lp-pom-box-150 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 300px;
      z-index: 82;
      width: 370px;
      height: 301px;
      position: absolute;
    }

    #lp-pom-text-152 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 67px;
      z-index: 83;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-153 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 110px;
      z-index: 84;
      width: 290px;
      height: 96px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-154 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: solid none none none;
      border-width: 2px;
      border-color: #f5f5f5;
      border-radius: 0px;
      left: 40px;
      top: 235px;
      z-index: 85;
      width: 290px;
      height: 48px;
      position: absolute;
    }

    #lp-pom-image-155 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 9px;
      z-index: 86;
      position: absolute;
    }

    #lp-pom-text-156 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 22px;
      top: 7px;
      z-index: 87;
      width: 85px;
      height: 22px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-157 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 154px;
      top: 7px;
      z-index: 88;
      width: 85px;
      height: 22px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-158 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 133px;
      top: 11px;
      z-index: 89;
      position: absolute;
    }

    #lp-pom-button-450 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: 28px;
      top: 35px;
      z-index: 90;
      width: 188px;
      height: 34px;
      position: absolute;
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      text-shadow: none;
      color: #1C375B;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 22px;
      line-height: 26px;
      font-weight: 700;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-159 {
      display: block;
      background: rgba(205, 66, 54, 1);
      border-style: none;
      border-radius: 4px;
      left: 40px;
      top: 40px;
      z-index: 91;
      width: 60px;
      height: 60px;
      position: absolute;
    }

    #lp-pom-text-160 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 7.5px;
      top: 13px;
      z-index: 92;
      width: 45px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-236 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 1500px;
      z-index: 93;
      width: 1170px;
      height: 338px;
      position: absolute;
    }

    #lp-pom-text-237 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 435px;
      top: 100px;
      z-index: 94;
      width: 300px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-238 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 302.5px;
      top: 135px;
      z-index: 95;
      width: 565px;
      height: 45px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-239 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 300px;
      top: 195px;
      z-index: 96;
      width: 570px;
      height: 48px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-240 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 553.5px;
      top: 268px;
      z-index: 97;
      position: absolute;
    }

    #lp-pom-block-14 {
      display: block;
      background: rgba(255, 255, 255, 0);
      background-image: url(../images/bg1.jpg);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 100%;
      height: 590px;
      position: relative;
    }

    #lp-pom-box-356 {
      display: block;
      background: rgba(28, 55, 91, 0.4);
      background-image: url(images/d49ecf34-video-bg.png);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      border-style: none;
      border-radius: 4px;
      left: 0px;
      top: 2670px;
      z-index: 145;
      width: 500px;
      height: 350px;
      position: absolute;
    }

    #lp-pom-button-382 {
      display: block;
      border-style: none;
      border-radius: 2px;
      left: 172.5px;
      top: 88.5px;
      z-index: 146;
      width: 155px;
      height: 173px;
      position: absolute;
      text-shadow: none;
      box-shadow: none;
      background-color: rgba(252, 77, 74, 0);
      background-image: url(images/7601fc2f-video-icon_1000000000000000000028.png);
      background-size: 100%;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 12px;
      line-height: 14px;
      font-weight: 400;
      font-family: Open Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-box-362 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 600px;
      top: 2755px;
      z-index: 141;
      width: 270px;
      height: 180px;
      position: absolute;
    }

    #lp-pom-text-360 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 108px;
      z-index: 142;
      width: 270px;
      height: 72px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-361 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 65px;
      z-index: 143;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-369 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 144;
      width: 137px;
      height: 58px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-378 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 900px;
      top: 2755px;
      z-index: 147;
      width: 270px;
      height: 180px;
      position: absolute;
    }

    #lp-pom-text-379 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 108px;
      z-index: 148;
      width: 270px;
      height: 72px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-380 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 65px;
      z-index: 149;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-381 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 150;
      width: 137px;
      height: 58px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-block-251 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 100%;
      height: 870px;
      position: relative;
    }

    #lp-pom-box-252 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 3478px;
      z-index: 98;
      width: 370px;
      height: 435px;
      position: absolute;
    }

    #lp-pom-image-253 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 0px;
      z-index: 99;
      position: absolute;
    }

    #lp-pom-box-254 {
      display: block;
      background: rgba(245, 245, 245, 1);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 300px;
      z-index: 100;
      width: 370px;
      height: 125px;
      position: absolute;
    }

    #lp-pom-text-255 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 35px;
      z-index: 101;
      width: 290px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-256 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 67px;
      z-index: 102;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-265 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 400px;
      top: 3478px;
      z-index: 103;
      width: 370px;
      height: 435px;
      position: absolute;
    }

    #lp-pom-image-266 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 0px;
      z-index: 104;
      position: absolute;
    }

    #lp-pom-box-267 {
      display: block;
      background: rgba(245, 245, 245, 1);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 300px;
      z-index: 105;
      width: 370px;
      height: 123px;
      position: absolute;
    }

    #lp-pom-text-268 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 35px;
      z-index: 106;
      width: 290px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-269 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 67px;
      z-index: 107;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-278 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 800px;
      top: 3478px;
      z-index: 108;
      width: 370px;
      height: 435px;
      position: absolute;
    }

    #lp-pom-image-279 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 0px;
      z-index: 109;
      position: absolute;
    }

    #lp-pom-box-280 {
      display: block;
      background: rgba(245, 245, 245, 1);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 300px;
      z-index: 110;
      width: 370px;
      height: 122px;
      position: absolute;
    }

    #lp-pom-text-281 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 35px;
      z-index: 111;
      width: 290px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-282 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 40px;
      top: 67px;
      z-index: 112;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-291 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 3140px;
      z-index: 113;
      width: 1170px;
      height: 338px;
      position: absolute;
    }

    #lp-pom-text-292 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 435px;
      top: 100px;
      z-index: 114;
      width: 300px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-293 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 302.5px;
      top: 135px;
      z-index: 115;
      width: 565px;
      height: 45px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-294 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 300px;
      top: 195px;
      z-index: 116;
      width: 570px;
      height: 48px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-295 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 553.5px;
      top: 268px;
      z-index: 117;
      position: absolute;
    }

    #lp-pom-block-15 {
      display: block;
      background: rgba(245, 245, 245, 1);
      background-image: url(images/25f790d1-01-pattern_1000000000000000000028.png);
      background-repeat: repeat;
      background-position: left top;
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 100%;
      height: 652px;
      position: relative;
    }

    #lp-pom-box-307 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 4010px;
      z-index: 118;
      width: 1170px;
      height: 338px;
      position: absolute;
    }

    #lp-pom-text-308 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 435px;
      top: 100px;
      z-index: 119;
      width: 300px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-309 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 300px;
      top: 134px;
      z-index: 120;
      width: 565px;
      height: 45px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-310 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 300px;
      top: 195px;
      z-index: 121;
      width: 570px;
      height: 48px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-image-311 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 553.5px;
      top: 268px;
      z-index: 122;
      position: absolute;
    }

    #lp-pom-box-312 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 4352px;
      z-index: 123;
      width: 570px;
      height: 215px;
      position: absolute;
    }

    #lp-pom-box-313 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: dashed;
      border-width: 2px;
      border-color: #dbdbdb;
      border-radius: 0px;
      left: 50px;
      top: 0px;
      z-index: 124;
      width: 516px;
      height: 211px;
      position: absolute;
    }

    #lp-pom-text-314 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 88px;
      top: 31px;
      z-index: 125;
      width: 290px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-315 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 88px;
      top: 65px;
      z-index: 126;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-316 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 88px;
      top: 108px;
      z-index: 127;
      width: 390px;
      height: 72px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-339 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: dashed;
      border-width: 2px;
      border-color: #cd4236;
      border-radius: 150px;
      left: -52px;
      top: 38px;
      z-index: 128;
      width: 96px;
      height: 96px;
      position: absolute;
    }

    #lp-pom-box-340 {
      display: block;
      background: rgba(255, 255, 255, 0);
      background-image: url(images/9fa68fe5-avatar.jpg);
      background-repeat: no-repeat;
      background-position: left top;
      border-style: none;
      border-radius: 142px;
      left: 2px;
      top: 2px;
      z-index: 129;
      width: 92px;
      height: 92px;
      position: absolute;
    }

    #lp-pom-box-341 {
      display: block;
      background: rgba(205, 66, 54, 1);
      border-style: none;
      border-radius: 159px;
      left: 62px;
      top: 0px;
      z-index: 130;
      width: 30px;
      height: 30px;
      position: absolute;
    }

    #lp-pom-image-342 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 9px;
      top: 10px;
      z-index: 131;
      position: absolute;
    }

    #lp-pom-box-345 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 600px;
      top: 4352px;
      z-index: 132;
      width: 570px;
      height: 215px;
      position: absolute;
    }

    #lp-pom-box-346 {
      display: block;
      background: rgba(255, 255, 255, 1);
      border-style: dashed;
      border-width: 2px;
      border-color: #dbdbdb;
      border-radius: 0px;
      left: 50px;
      top: 0px;
      z-index: 133;
      width: 516px;
      height: 211px;
      position: absolute;
    }

    #lp-pom-text-347 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 88px;
      top: 31px;
      z-index: 134;
      width: 290px;
      height: 34px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-348 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 88px;
      top: 65px;
      z-index: 135;
      width: 290px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-349 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 88px;
      top: 108px;
      z-index: 136;
      width: 390px;
      height: 72px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-350 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: dashed;
      border-width: 2px;
      border-color: #cd4236;
      border-radius: 150px;
      left: -52px;
      top: 38px;
      z-index: 137;
      width: 96px;
      height: 96px;
      position: absolute;
    }

    #lp-pom-box-351 {
      display: block;
      background: rgba(255, 255, 255, 0);
      background-image: url(images/d3ee2286-avatar-2jpg.jpg);
      background-repeat: no-repeat;
      background-position: left top;
      border-style: none;
      border-radius: 142px;
      left: 2px;
      top: 2px;
      z-index: 138;
      width: 92px;
      height: 92px;
      position: absolute;
    }

    #lp-pom-box-352 {
      display: block;
      background: rgba(205, 66, 54, 1);
      border-style: none;
      border-radius: 159px;
      left: 62px;
      top: 0px;
      z-index: 139;
      width: 30px;
      height: 30px;
      position: absolute;
    }

    #lp-pom-image-353 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 9px;
      top: 10px;
      z-index: 140;
      position: absolute;
    }

    #lp-pom-block-384 {
      display: block;
      background: rgba(28, 55, 91, 0.6);
      background-image: url(images/c8c29177-cta-bg_100000000000000000001o.jpg);
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 100%;
      height: 655px;
      position: relative;
    }

    #lp-pom-box-386 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 4812px;
      z-index: 151;
      width: 1170px;
      height: 242px;
      position: absolute;
    }

    #lp-pom-text-387 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 435px;
      top: 0px;
      z-index: 152;
      width: 300px;
      height: 26px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-388 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 277px;
      top: 33px;
      z-index: 153;
      width: 616px;
      height: 77px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-389 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 307px;
      top: 103px;
      z-index: 154;
      width: 556px;
      height: 48px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-button-390 {
      display: block;
      border-style: none;
      border-radius: 4px;
      left: 460px;
      top: 177px;
      z-index: 155;
      width: 250px;
      height: 65px;
      position: absolute;
      background: rgba(205, 66, 54, 1);
      box-shadow: none;
      text-shadow: none;
      color: #fff;
      border-width: undefinedpx;
      border-color: #undefined;
      font-size: 20px;
      line-height: 24px;
      font-weight: 600;
      font-family: Josefin Sans;
      font-style: normal;
      text-align: center;
      background-repeat: no-repeat;
    }

    #lp-pom-image-412 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 516px;
      top: 5082px;
      z-index: 156;
      position: absolute;
    }

    #lp-pom-block-16 {
      display: block;
      background: rgba(245, 245, 245, 1);
      border-style: none;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px;
      border-radius: 0px;
      width: 100%;
      height: 322px;
      position: relative;
    }

    #lp-pom-box-417 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 5407px;
      z-index: 157;
      width: 270px;
      height: 147px;
      position: absolute;
    }

    #lp-pom-image-418 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 0px;
      z-index: 158;
      position: absolute;
    }

    #lp-pom-text-419 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 89px;
      z-index: 159;
      width: 256px;
      height: 29px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-422 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 300px;
      top: 5407px;
      z-index: 160;
      width: 270px;
      height: 142px;
      position: absolute;
    }

    #lp-pom-text-423 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 161;
      width: 270px;
      height: 31px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-424 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 49px;
      z-index: 162;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-425 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 85px;
      z-index: 163;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-426 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 118px;
      z-index: 164;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-428 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 600px;
      top: 5407px;
      z-index: 165;
      width: 270px;
      height: 142px;
      position: absolute;
    }

    #lp-pom-text-429 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 166;
      width: 270px;
      height: 31px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-430 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 49px;
      z-index: 167;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-431 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 85px;
      z-index: 168;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-text-432 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 118px;
      z-index: 169;
      width: 270px;
      height: 24px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-433 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 900px;
      top: 5407px;
      z-index: 170;
      width: 270px;
      height: 90px;
      position: absolute;
    }

    #lp-pom-text-434 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 0px;
      z-index: 171;
      width: 270px;
      height: 31px;
      transform: none;
      transform-origin: 0 0;
      position: absolute;
    }

    #lp-pom-box-438 {
      display: block;
      background: rgba(255, 255, 255, 0);
      border-style: none;
      border-radius: 0px;
      left: 0px;
      top: 31px;
      z-index: 172;
      width: 238px;
      height: 54px;
      position: absolute;
    }

    #lp-pom-image-439 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 158px;
      top: 22px;
      z-index: 173;
      position: absolute;
    }

    #lp-pom-image-440 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 107px;
      top: 21px;
      z-index: 174;
      position: absolute;
    }

    #lp-pom-image-441 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 55px;
      top: 23px;
      z-index: 175;
      position: absolute;
    }

    #lp-pom-image-442 {
      display: block;
      background: rgba(255, 255, 255, 0);
      left: 0px;
      top: 22px;
      z-index: 176;
      position: absolute;
    }

    #lp-pom-root .lp-positioned-content {
      top: 0px;
      width: 1170px;
      margin-left: -585px;
    }

    #lp-pom-block-11 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 900px;
    }

    #lp-pom-block-12 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 600px;
    }

    #lp-pom-block-13 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 650px;
    }

    #lp-pom-block-14 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 590px;
    }

    #lp-pom-block-251 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 870px;
    }

    #lp-pom-block-15 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 652px;
    }

    #lp-pom-block-384 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 655px;
    }

    #lp-pom-block-16 .lp-pom-block-content {
      margin-left: auto;
      margin-right: auto;
      width: 1170px;
      height: 322px;
    }

    #lp-pom-image-20 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 149px;
      height: 40px;
    }

    #lp-pom-image-20 .lp-pom-image-container img {
      width: 149px;
      height: 40px;
    }

    #lp-pom-button-27:hover {
      background: rgba(195, 51, 41, 1);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-27:active {
      background: rgba(185, 43, 34, 1);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-27 .label {
      margin-top: -12px;
    }

    #lp-pom-image-31 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 50px;
      height: 51px;
    }

    #lp-pom-image-31 .lp-pom-image-container img {
      width: 50px;
      height: 51px;
    }

    #lp-pom-button-35:hover {
      background: rgba(195, 51, 41, 0);
      box-shadow: none;
      color: #CD4236;
    }

    #lp-pom-button-35:active {
      background: rgba(185, 43, 34, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-35 .label {
      margin-top: -10px;
    }

    #lp-pom-image-39 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 48px;
      height: 51px;
    }

    #lp-pom-image-39 .lp-pom-image-container img {
      width: 48px;
      height: 51px;
    }

    #lp-pom-button-40:hover {
      background: rgba(195, 51, 41, 0);
      box-shadow: none;
      color: #CD4236;
    }

    #lp-pom-button-40:active {
      background: rgba(185, 43, 34, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-40 .label {
      margin-top: -10px;
    }

    #lp-pom-image-47 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 50px;
      height: 42px;
    }

    #lp-pom-image-47 .lp-pom-image-container img {
      width: 50px;
      height: 42px;
    }

    #lp-pom-button-48:hover {
      background: rgba(195, 51, 41, 0);
      box-shadow: none;
      color: #CD4236;
    }

    #lp-pom-button-48:active {
      background: rgba(185, 43, 34, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-48 .label {
      margin-top: -10px;
    }

    #lp-pom-image-52 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 50px;
      height: 51px;
    }

    #lp-pom-image-52 .lp-pom-image-container img {
      width: 50px;
      height: 51px;
    }

    #lp-pom-button-53:hover {
      background: rgba(195, 51, 41, 0);
      box-shadow: none;
      color: #CD4236;
    }

    #lp-pom-button-53:active {
      background: rgba(185, 43, 34, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-53 .label {
      margin-top: -10px;
    }

    #lp-pom-image-61 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 132px;
      height: 97px;
    }

    #lp-pom-image-61 .lp-pom-image-container img {
      width: 132px;
      height: 97px;
    }

    #lp-pom-image-64 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 570px;
      height: 500px;
    }

    #lp-pom-image-64 .lp-pom-image-container img {
      width: 570px;
      height: 500px;
    }

    #lp-pom-image-69 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-69 .lp-pom-image-container img {
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-75 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-75 .lp-pom-image-container img {
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-78 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-78 .lp-pom-image-container img {
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-81 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-81 .lp-pom-image-container img {
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-87 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-87 .lp-pom-image-container img {
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-90 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-90 .lp-pom-image-container img {
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-93 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-93 .lp-pom-image-container img {
      width: 9px;
      height: 10px;
    }

    #lp-pom-image-111 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-111 .lp-pom-image-container img {
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-119 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 17px;
    }

    #lp-pom-image-119 .lp-pom-image-container img {
      width: 15px;
      height: 17px;
    }

    #lp-pom-image-128 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 15px;
    }

    #lp-pom-image-128 .lp-pom-image-container img {
      width: 15px;
      height: 15px;
    }

    #lp-pom-image-136 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-136 .lp-pom-image-container img {
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-142 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 17px;
    }

    #lp-pom-image-142 .lp-pom-image-container img {
      width: 15px;
      height: 17px;
    }

    #lp-pom-image-145 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 15px;
    }

    #lp-pom-image-145 .lp-pom-image-container img {
      width: 15px;
      height: 15px;
    }

    #lp-pom-image-149 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-149 .lp-pom-image-container img {
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-155 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 17px;
    }

    #lp-pom-image-155 .lp-pom-image-container img {
      width: 15px;
      height: 17px;
    }

    #lp-pom-image-158 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 15px;
    }

    #lp-pom-image-158 .lp-pom-image-container img {
      width: 15px;
      height: 15px;
    }

    #lp-pom-image-240 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-240 .lp-pom-image-container img {
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-253 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-253 .lp-pom-image-container img {
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-266 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-266 .lp-pom-image-container img {
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-279 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-279 .lp-pom-image-container img {
      width: 370px;
      height: 300px;
    }

    #lp-pom-image-295 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-295 .lp-pom-image-container img {
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-311 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-311 .lp-pom-image-container img {
      width: 63px;
      height: 10px;
    }

    #lp-pom-image-342 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 12px;
      height: 10px;
    }

    #lp-pom-image-342 .lp-pom-image-container img {
      width: 12px;
      height: 10px;
    }

    #lp-pom-image-353 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 12px;
      height: 10px;
    }

    #lp-pom-image-353 .lp-pom-image-container img {
      width: 12px;
      height: 10px;
    }

    #lp-pom-button-382:hover {
      text-shadow: none;
      box-shadow: none;
      background-color: rgba(34, 34, 34, 0);
      color: #fff;
    }

    #lp-pom-button-382:active {
      text-shadow: none;
      box-shadow: none;
      background-color: rgba(227, 49, 47, 0);
      background-image: url(images/7601fc2f-video-icon_1000000000000000000028.png);
      color: #fff;
    }

    #lp-pom-button-382 .label {
      margin-top: 0px;
    }

    #lp-pom-button-390:hover {
      background: rgba(195, 51, 41, 1);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-390:active {
      background: rgba(185, 43, 34, 1);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-390 .label {
      margin-top: -12px;
    }

    #lp-pom-image-412 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 161px;
      height: 84px;
    }

    #lp-pom-image-412 .lp-pom-image-container img {
      width: 161px;
      height: 84px;
    }

    #lp-pom-image-418 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 51px;
      height: 57px;
    }

    #lp-pom-image-418 .lp-pom-image-container img {
      width: 51px;
      height: 57px;
    }

    #lp-pom-image-439 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 13px;
    }

    #lp-pom-image-439 .lp-pom-image-container img {
      width: 15px;
      height: 13px;
    }

    #lp-pom-image-440 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 14px;
      height: 15px;
    }

    #lp-pom-image-440 .lp-pom-image-container img {
      width: 14px;
      height: 15px;
    }

    #lp-pom-image-441 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 15px;
      height: 12px;
    }

    #lp-pom-image-441 .lp-pom-image-container img {
      width: 15px;
      height: 12px;
    }

    #lp-pom-image-442 .lp-pom-image-container {
      border-style: none;
      border-radius: 0px;
      width: 9px;
      height: 16px;
    }

    #lp-pom-image-442 .lp-pom-image-container img {
      width: 9px;
      height: 16px;
    }

    #lp-pom-button-448:hover {
      background: rgba(195, 51, 41, 0);
      box-shadow: none;
      color: #CD4236;
    }

    #lp-pom-button-448:active {
      background: rgba(185, 43, 34, 0);
      box-shadow: none;
      color: #1C375B;
    }

    #lp-pom-button-448 .label {
      margin-top: -13px;
    }

    #lp-pom-button-449:hover {
      background: rgba(195, 51, 41, 0);
      box-shadow: none;
      color: #CD4236;
    }

    #lp-pom-button-449:active {
      background: rgba(185, 43, 34, 0);
      box-shadow: none;
      color: #1C375B;
    }

    #lp-pom-button-449 .label {
      margin-top: -13px;
    }

    #lp-pom-button-450:hover {
      background: rgba(195, 51, 41, 0);
      box-shadow: none;
      color: #CD4236;
    }

    #lp-pom-button-450:active {
      background: rgba(185, 43, 34, 0);
      box-shadow: none;
      color: #1C375B;
    }

    #lp-pom-button-450 .label {
      margin-top: -13px;
    }

    #lp-pom-button-455:hover {
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      color: #cd4236;
    }

    #lp-pom-button-455:active {
      background: rgba(230, 161, 161, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-455 .label {
      margin-top: -10px;
    }

    #lp-pom-button-456:hover {
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      color: #cd4236;
    }

    #lp-pom-button-456:active {
      background: rgba(230, 161, 161, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-456 .label {
      margin-top: -10px;
    }

    #lp-pom-button-457:hover {
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      color: #cd4236;
    }

    #lp-pom-button-457:active {
      background: rgba(230, 161, 161, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-457 .label {
      margin-top: -10px;
    }

    #lp-pom-button-458:hover {
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      color: #cd4236;
    }

    #lp-pom-button-458:active {
      background: rgba(230, 161, 161, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-458 .label {
      margin-top: -10px;
    }

    #lp-pom-button-459:hover {
      background: rgba(205, 66, 54, 0);
      box-shadow: none;
      color: #cd4236;
    }

    #lp-pom-button-459:active {
      background: rgba(230, 161, 161, 0);
      box-shadow: none;
      color: #fff;
    }

    #lp-pom-button-459 .label {
      margin-top: -10px;
    }

    #lp-pom-root-color-overlay {
      position: absolute;
      background: none;
      top: 0;
      width: 100%;
      /* height: 5639px;
      min-height: 100%; */
    }

    #lp-pom-block-11-color-overlay {
      position: absolute;
      background: rgba(28, 55, 91, 0.6);
      height: 900px;
      width: 100%;
      ;
    }

    #lp-pom-block-12-color-overlay {
      position: absolute;
      background: none;
      height: 600px;
      width: 1170px;
    }

    #lp-pom-block-13-color-overlay {
      position: absolute;
      background: none;
      height: 650px;
      width: 100%;
      ;
    }

    #lp-pom-block-14-color-overlay {
      position: absolute;
      background: rgba(255, 255, 255, 0);
      height: 590px;
      width: 100%;
      ;
    }

    #lp-pom-block-251-color-overlay {
      position: absolute;
      background: none;
      height: 870px;
      width: 100%;
      ;
    }

    #lp-pom-block-15-color-overlay {
      position: absolute;
      background: none;
      height: 652px;
      width: 100%;
      ;
    }

    #lp-pom-block-384-color-overlay {
      position: absolute;
      background: rgba(28, 55, 91, 0.6);
      height: 655px;
      width: 100%;
      ;
    }

    #lp-pom-block-16-color-overlay {
      position: absolute;
      background: none;
      height: 322px;
      width: 100%;
      ;
    }

    #lp-pom-box-23-color-overlay {
      position: absolute;
      background: none;
      height: 242px;
      width: 1170px;
    }

    #lp-pom-box-30-color-overlay {
      position: absolute;
      background: none;
      border-radius: 3px;
      height: 168px;
      width: 168px;
    }

    #lp-pom-box-36-color-overlay {
      position: absolute;
      background: none;
      border-radius: 2px;
      height: 18px;
      width: 34px;
    }

    #lp-pom-box-38-color-overlay {
      position: absolute;
      background: none;
      border-radius: 3px;
      height: 168px;
      width: 168px;
    }

    #lp-pom-box-41-color-overlay {
      position: absolute;
      background: none;
      border-radius: 2px;
      height: 18px;
      width: 34px;
    }

    #lp-pom-box-46-color-overlay {
      position: absolute;
      background: none;
      border-radius: 3px;
      height: 168px;
      width: 168px;
    }

    #lp-pom-box-49-color-overlay {
      position: absolute;
      background: none;
      border-radius: 2px;
      height: 18px;
      width: 34px;
    }

    #lp-pom-box-51-color-overlay {
      position: absolute;
      background: none;
      border-radius: 3px;
      height: 168px;
      width: 168px;
    }

    #lp-pom-box-54-color-overlay {
      position: absolute;
      background: none;
      border-radius: 2px;
      height: 18px;
      width: 34px;
    }

    #lp-pom-box-65-color-overlay {
      position: absolute;
      background: none;
      height: 173px;
      width: 570px;
    }

    #lp-pom-box-73-color-overlay {
      position: absolute;
      background: none;
      height: 112px;
      width: 270px;
    }

    #lp-pom-box-74-color-overlay {
      position: absolute;
      background: none;
      height: 24px;
      width: 270px;
    }

    #lp-pom-box-77-color-overlay {
      position: absolute;
      background: none;
      height: 24px;
      width: 270px;
    }

    #lp-pom-box-80-color-overlay {
      position: absolute;
      background: none;
      height: 24px;
      width: 270px;
    }

    #lp-pom-box-85-color-overlay {
      position: absolute;
      background: none;
      height: 112px;
      width: 270px;
    }

    #lp-pom-box-86-color-overlay {
      position: absolute;
      background: none;
      height: 24px;
      width: 270px;
    }

    #lp-pom-box-89-color-overlay {
      position: absolute;
      background: none;
      height: 24px;
      width: 270px;
    }

    #lp-pom-box-92-color-overlay {
      position: absolute;
      background: none;
      height: 24px;
      width: 270px;
    }

    #lp-pom-box-110-color-overlay {
      position: absolute;
      background: none;
      height: 616px;
      width: 370px;
    }

    #lp-pom-box-112-color-overlay {
      position: absolute;
      background: none;
      height: 301px;
      width: 370px;
    }

    #lp-pom-box-113-color-overlay {
      position: absolute;
      background: none;
      border-radius: 4px;
      height: 60px;
      width: 60px;
    }

    #lp-pom-box-118-color-overlay {
      position: absolute;
      background: none;
      height: 48px;
      width: 290px;
    }

    #lp-pom-box-135-color-overlay {
      position: absolute;
      background: none;
      height: 616px;
      width: 370px;
    }

    #lp-pom-box-137-color-overlay {
      position: absolute;
      background: none;
      height: 301px;
      width: 370px;
    }

    #lp-pom-box-141-color-overlay {
      position: absolute;
      background: none;
      height: 48px;
      width: 290px;
    }

    #lp-pom-box-146-color-overlay {
      position: absolute;
      background: none;
      border-radius: 4px;
      height: 60px;
      width: 60px;
    }

    #lp-pom-box-148-color-overlay {
      position: absolute;
      background: none;
      height: 616px;
      width: 370px;
    }

    #lp-pom-box-150-color-overlay {
      position: absolute;
      background: none;
      height: 301px;
      width: 370px;
    }

    #lp-pom-box-154-color-overlay {
      position: absolute;
      background: none;
      height: 48px;
      width: 290px;
    }

    #lp-pom-box-159-color-overlay {
      position: absolute;
      background: none;
      border-radius: 4px;
      height: 60px;
      width: 60px;
    }

    #lp-pom-box-236-color-overlay {
      position: absolute;
      background: none;
      height: 338px;
      width: 1170px;
    }

    #lp-pom-box-252-color-overlay {
      position: absolute;
      background: none;
      height: 435px;
      width: 370px;
    }

    #lp-pom-box-254-color-overlay {
      position: absolute;
      background: none;
      height: 125px;
      width: 370px;
    }

    #lp-pom-box-265-color-overlay {
      position: absolute;
      background: none;
      height: 435px;
      width: 370px;
    }

    #lp-pom-box-267-color-overlay {
      position: absolute;
      background: none;
      height: 123px;
      width: 370px;
    }

    #lp-pom-box-278-color-overlay {
      position: absolute;
      background: none;
      height: 435px;
      width: 370px;
    }

    #lp-pom-box-280-color-overlay {
      position: absolute;
      background: none;
      height: 122px;
      width: 370px;
    }

    #lp-pom-box-291-color-overlay {
      position: absolute;
      background: none;
      height: 338px;
      width: 1170px;
    }

    #lp-pom-box-307-color-overlay {
      position: absolute;
      background: none;
      height: 338px;
      width: 1170px;
    }

    #lp-pom-box-312-color-overlay {
      position: absolute;
      background: none;
      height: 215px;
      width: 570px;
    }

    #lp-pom-box-313-color-overlay {
      position: absolute;
      background: none;
      height: 211px;
      width: 516px;
    }

    #lp-pom-box-339-color-overlay {
      position: absolute;
      background: none;
      border-radius: 148px;
      height: 96px;
      width: 96px;
    }

    #lp-pom-box-340-color-overlay {
      position: absolute;
      background: rgba(255, 255, 255, 0);
      border-radius: 142px;
      height: 92px;
      width: 92px;
    }

    #lp-pom-box-341-color-overlay {
      position: absolute;
      background: none;
      border-radius: 159px;
      height: 30px;
      width: 30px;
    }

    #lp-pom-box-345-color-overlay {
      position: absolute;
      background: none;
      height: 215px;
      width: 570px;
    }

    #lp-pom-box-346-color-overlay {
      position: absolute;
      background: none;
      height: 211px;
      width: 516px;
    }

    #lp-pom-box-350-color-overlay {
      position: absolute;
      background: none;
      border-radius: 148px;
      height: 96px;
      width: 96px;
    }

    #lp-pom-box-351-color-overlay {
      position: absolute;
      background: rgba(255, 255, 255, 0);
      border-radius: 142px;
      height: 92px;
      width: 92px;
    }

    #lp-pom-box-352-color-overlay {
      position: absolute;
      background: none;
      border-radius: 159px;
      height: 30px;
      width: 30px;
    }

    #lp-pom-box-356-color-overlay {
      position: absolute;
      background: rgba(28, 55, 91, 0.4);
      border-radius: 4px;
      height: 350px;
      width: 500px;
    }

    #lp-pom-box-362-color-overlay {
      position: absolute;
      background: none;
      height: 180px;
      width: 270px;
    }

    #lp-pom-box-378-color-overlay {
      position: absolute;
      background: none;
      height: 180px;
      width: 270px;
    }

    #lp-pom-box-386-color-overlay {
      position: absolute;
      background: none;
      height: 242px;
      width: 1170px;
    }

    #lp-pom-box-417-color-overlay {
      position: absolute;
      background: none;
      height: 147px;
      width: 270px;
    }

    #lp-pom-box-422-color-overlay {
      position: absolute;
      background: none;
      height: 142px;
      width: 270px;
    }

    #lp-pom-box-428-color-overlay {
      position: absolute;
      background: none;
      height: 142px;
      width: 270px;
    }

    #lp-pom-box-433-color-overlay {
      position: absolute;
      background: none;
      height: 90px;
      width: 270px;
    }

    #lp-pom-box-438-color-overlay {
      position: absolute;
      background: none;
      height: 54px;
      width: 238px;
    }

    #lp-pom-box-453-color-overlay {
      position: absolute;
      background: none;
      height: 80px;
      width: 572px;
    }






























/**MOBILE**/
    @media only screen and (max-width: 600px) {
      #lp-pom-root {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: none;
        margin: auto;
        padding-top: 0px;
        border-radius: 0px;
        min-width: 320px;
        /* height: 9622px; */
      }

      #lp-pom-block-11 {
        display: block;
        background: rgba(28, 55, 91, 0.6);
        background-image: url(../images/bg.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 100%;
        height: 1414px;
        position: relative;
      }

      #lp-pom-image-20 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 85.5px;
        top: 30px;
        z-index: 2;
        position: absolute;
      }

      #lp-pom-box-23 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 200px;
        z-index: 3;
        width: 300px;
        height: 265px;
        position: absolute;
      }

      #lp-pom-text-24 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 4;
        width: 300px;
        height: 26px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-25 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 33px;
        z-index: 5;
        width: 616px;
        height: 77px;
        transform: scale(0.5);
        transform-origin: 0 0;
        -webkit-transform: scale(0.5);
        -webkit-transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-26 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 77px;
        z-index: 6;
        width: 300px;
        height: 96px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-button-27 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: 25px;
        top: 200px;
        z-index: 7;
        width: 250px;
        height: 65px;
        position: absolute;
        background: rgba(205, 66, 54, 1);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-30 {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border-style: dashed;
        border-width: 1px;
        border-color: #8f9aa9;
        border-radius: 4px;
        left: 75px;
        top: 535px;
        z-index: 8;
        width: 168px;
        height: 168px;
        position: absolute;
      }

      #lp-pom-image-31 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 59px;
        top: 39px;
        z-index: 1;
        position: absolute;
      }

      #lp-pom-button-35 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: -1px;
        top: 104px;
        z-index: 9;
        width: 170px;
        height: 26px;
        position: absolute;
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-36 {
        display: block;
        background: rgba(112, 67, 248, 1);
        border-style: none;
        border-radius: 2px;
        left: 125px;
        top: 9px;
        z-index: 10;
        width: 34px;
        height: 18px;
        position: absolute;
      }

      #lp-pom-text-37 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 3px;
        top: 0px;
        z-index: 11;
        width: 26px;
        height: 16px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-38 {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border-style: dashed;
        border-width: 1px;
        border-color: #8f9aa9;
        border-radius: 4px;
        left: 75px;
        top: 735px;
        z-index: 12;
        width: 168px;
        height: 168px;
        position: absolute;
      }

      #lp-pom-image-39 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 59px;
        top: 39px;
        z-index: 13;
        position: absolute;
      }

      #lp-pom-button-40 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: -1px;
        top: 106px;
        z-index: 16;
        width: 170px;
        height: 26px;
        position: absolute;
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-41 {
        display: block;
        background: rgba(239, 114, 19, 1);
        border-style: none;
        border-radius: 2px;
        left: 125px;
        top: 9px;
        z-index: 14;
        width: 34px;
        height: 18px;
        position: absolute;
      }

      #lp-pom-text-42 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 3px;
        top: 0px;
        z-index: 15;
        width: 26px;
        height: 16px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-46 {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border-style: dashed;
        border-width: 1px;
        border-color: #8f9aa9;
        border-radius: 4px;
        left: 75px;
        top: 1135px;
        z-index: 17;
        width: 168px;
        height: 168px;
        position: absolute;
      }

      #lp-pom-image-47 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 59px;
        top: 39px;
        z-index: 18;
        position: absolute;
      }

      #lp-pom-button-48 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: -1px;
        top: 106px;
        z-index: 19;
        width: 170px;
        height: 26px;
        position: absolute;
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-49 {
        display: block;
        background: rgba(53, 191, 230, 1);
        border-style: none;
        border-radius: 2px;
        left: 125px;
        top: 9px;
        z-index: 20;
        width: 34px;
        height: 18px;
        position: absolute;
      }

      #lp-pom-text-50 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 3px;
        top: 0px;
        z-index: 21;
        width: 26px;
        height: 16px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-51 {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border-style: dashed;
        border-width: 1px;
        border-color: #8f9aa9;
        border-radius: 4px;
        left: 75px;
        top: 935px;
        z-index: 22;
        width: 168px;
        height: 168px;
        position: absolute;
      }

      #lp-pom-image-52 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 59px;
        top: 39px;
        z-index: 23;
        position: absolute;
      }

      #lp-pom-button-53 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: -1px;
        top: 104px;
        z-index: 24;
        width: 170px;
        height: 26px;
        position: absolute;
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-54 {
        display: block;
        background: rgba(93, 188, 44, 1);
        border-style: none;
        border-radius: 2px;
        left: 125px;
        top: 8px;
        z-index: 25;
        width: 34px;
        height: 18px;
        position: absolute;
      }

      #lp-pom-text-55 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 3px;
        top: 0px;
        z-index: 26;
        width: 26px;
        height: 16px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-61 {
        display: none;
        background: rgba(255, 255, 255, 0);
        left: 320px;
        top: 571px;
        z-index: 27;
        position: absolute;
      }

      #lp-pom-box-453 {
        display: none;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 320px;
        top: 0px;
        z-index: 177;
        width: 189px;
        height: 336px;
        position: absolute;
      }

      #lp-pom-button-455 {
        display: none;
        border-style: none;
        border-radius: 5px;
        left: 45px;
        top: 146px;
        z-index: 178;
        width: 127px;
        height: 42px;
        position: absolute;
        background: rgba(255, 255, 255, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-button-456 {
        display: none;
        border-style: none;
        border-radius: 5px;
        left: 45px;
        top: 78px;
        z-index: 179;
        width: 113px;
        height: 42px;
        position: absolute;
        background: rgba(255, 255, 255, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-button-457 {
        display: none;
        border-style: none;
        border-radius: 5px;
        left: 45px;
        top: 19px;
        z-index: 180;
        width: 117px;
        height: 42px;
        position: absolute;
        background: rgba(255, 255, 255, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-button-458 {
        display: none;
        border-style: none;
        border-radius: 5px;
        left: 55px;
        top: 29px;
        z-index: 181;
        width: 100px;
        height: 42px;
        position: absolute;
        background: rgba(255, 255, 255, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-button-459 {
        display: none;
        border-style: none;
        border-radius: 5px;
        left: 55px;
        top: 88px;
        z-index: 182;
        width: 90px;
        height: 42px;
        position: absolute;
        background: rgba(255, 255, 255, 0);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 16px;
        line-height: 19px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-block-12 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 320px;
        height: 625px;
        position: relative;
      }

      #lp-pom-image-64 {
        display: none;
        background: rgba(255, 255, 255, 0);
        left: -300px;
        top: 1414px;
        z-index: 28;
        position: absolute;
      }

      #lp-pom-box-65 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 1513px;
        z-index: 29;
        width: 300px;
        height: 200px;
        position: absolute;
      }

      #lp-pom-text-66 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 30;
        width: 300px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-67 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 37px;
        z-index: 31;
        width: 570px;
        height: 45px;
        transform: scale(0.53);
        transform-origin: 0 0;
        -webkit-transform: scale(0.53);
        -webkit-transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-68 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 72px;
        z-index: 32;
        width: 300px;
        height: 96px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-69 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 190px;
        z-index: 33;
        position: absolute;
      }

      #lp-pom-box-73 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 1763px;
        z-index: 34;
        width: 270px;
        height: 100px;
        position: absolute;
      }

      #lp-pom-box-74 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 35;
        width: 270px;
        height: 24px;
        position: absolute;
      }

      #lp-pom-image-75 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 7px;
        z-index: 36;
        position: absolute;
      }

      #lp-pom-text-76 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 20px;
        top: 0px;
        z-index: 37;
        width: 250px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-77 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 32px;
        z-index: 38;
        width: 270px;
        height: 24px;
        position: absolute;
      }

      #lp-pom-image-78 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 7px;
        z-index: 39;
        position: absolute;
      }

      #lp-pom-text-79 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 20px;
        top: 0px;
        z-index: 40;
        width: 250px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-80 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 63px;
        z-index: 41;
        width: 270px;
        height: 24px;
        position: absolute;
      }

      #lp-pom-image-81 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 7px;
        z-index: 42;
        position: absolute;
      }

      #lp-pom-text-82 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 20px;
        top: 0px;
        z-index: 43;
        width: 250px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-85 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 1857px;
        z-index: 44;
        width: 270px;
        height: 100px;
        position: absolute;
      }

      #lp-pom-box-86 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 45;
        width: 270px;
        height: 24px;
        position: absolute;
      }

      #lp-pom-image-87 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 7px;
        z-index: 46;
        position: absolute;
      }

      #lp-pom-text-88 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 20px;
        top: 0px;
        z-index: 47;
        width: 250px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-89 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 32px;
        z-index: 48;
        width: 270px;
        height: 24px;
        position: absolute;
      }

      #lp-pom-image-90 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 7px;
        z-index: 49;
        position: absolute;
      }

      #lp-pom-text-91 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 20px;
        top: 0px;
        z-index: 50;
        width: 250px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-92 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 63px;
        z-index: 51;
        width: 270px;
        height: 24px;
        position: absolute;
      }

      #lp-pom-image-93 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 7px;
        z-index: 52;
        position: absolute;
      }

      #lp-pom-text-94 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 20px;
        top: 0px;
        z-index: 53;
        width: 250px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-block-13 {
        display: block;
        background: rgba(245, 245, 245, 1);
        background-image: url(images/25f790d1-01-pattern_1000000000000000000028.png);
        background-repeat: repeat;
        background-position: left top;
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 100%;
        height: 650px;
        position: relative;
      }

      #lp-pom-box-110 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 2399px;
        z-index: 54;
        width: 300px;
        height: 650px;
        position: absolute;
      }

      #lp-pom-image-111 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 0px;
        z-index: 55;
        position: absolute;
      }

      #lp-pom-box-112 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 243px;
        z-index: 56;
        width: 300px;
        height: 321px;
        position: absolute;
      }

      #lp-pom-text-115 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 72px;
        z-index: 57;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-117 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 115px;
        z-index: 58;
        width: 220px;
        height: 120px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-118 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: solid none none none;
        border-width: 2px;
        border-color: #f5f5f5;
        border-radius: 0px;
        left: 40px;
        top: 254px;
        z-index: 59;
        width: 220px;
        height: 40px;
        position: absolute;
      }

      #lp-pom-image-119 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 9px;
        z-index: 60;
        position: absolute;
      }

      #lp-pom-text-120 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 21px;
        top: 7px;
        z-index: 61;
        width: 85px;
        height: 22px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-127 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 140px;
        top: 7px;
        z-index: 62;
        width: 75px;
        height: 22px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-128 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 118px;
        top: 11px;
        z-index: 64;
        position: absolute;
      }

      #lp-pom-button-448 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: 30px;
        top: 35px;
        z-index: 65;
        width: 188px;
        height: 34px;
        position: absolute;
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        text-shadow: none;
        color: #1C375B;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 22px;
        line-height: 26px;
        font-weight: 700;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-113 {
        display: block;
        background: rgba(205, 66, 54, 1);
        border-style: none;
        border-radius: 4px;
        left: 40px;
        top: 40px;
        z-index: 63;
        width: 60px;
        height: 60px;
        position: absolute;
      }

      #lp-pom-text-134 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 7.5px;
        top: 13px;
        z-index: 66;
        width: 45px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-135 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 2994px;
        z-index: 67;
        width: 300px;
        height: 580px;
        position: absolute;
      }

      #lp-pom-image-136 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 0px;
        z-index: 68;
        position: absolute;
      }

      #lp-pom-box-137 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 243px;
        z-index: 69;
        width: 300px;
        height: 321px;
        position: absolute;
      }

      #lp-pom-text-139 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 72px;
        z-index: 70;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-140 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 115px;
        z-index: 71;
        width: 220px;
        height: 120px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-141 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: solid none none none;
        border-width: 2px;
        border-color: #f5f5f5;
        border-radius: 0px;
        left: 40px;
        top: 254px;
        z-index: 72;
        width: 220px;
        height: 40px;
        position: absolute;
      }

      #lp-pom-image-142 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 9px;
        z-index: 73;
        position: absolute;
      }

      #lp-pom-text-143 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 21px;
        top: 7px;
        z-index: 74;
        width: 85px;
        height: 22px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-144 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 140px;
        top: 7px;
        z-index: 75;
        width: 75px;
        height: 22px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-145 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 118px;
        top: 11px;
        z-index: 76;
        position: absolute;
      }

      #lp-pom-button-449 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: 30px;
        top: 35px;
        z-index: 77;
        width: 192px;
        height: 34px;
        position: absolute;
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        text-shadow: none;
        color: #1C375B;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 22px;
        line-height: 26px;
        font-weight: 700;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-146 {
        display: block;
        background: rgba(205, 66, 54, 1);
        border-style: none;
        border-radius: 4px;
        left: 40px;
        top: 40px;
        z-index: 78;
        width: 60px;
        height: 60px;
        position: absolute;
      }

      #lp-pom-text-147 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 7.5px;
        top: 14px;
        z-index: 79;
        width: 45px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-148 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 3589px;
        z-index: 80;
        width: 300px;
        height: 580px;
        position: absolute;
      }

      #lp-pom-image-149 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 0px;
        z-index: 81;
        position: absolute;
      }

      #lp-pom-box-150 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 243px;
        z-index: 82;
        width: 300px;
        height: 321px;
        position: absolute;
      }

      #lp-pom-text-152 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 72px;
        z-index: 83;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-153 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 115px;
        z-index: 84;
        width: 220px;
        height: 120px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-154 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: solid none none none;
        border-width: 2px;
        border-color: #f5f5f5;
        border-radius: 0px;
        left: 40px;
        top: 254px;
        z-index: 85;
        width: 220px;
        height: 40px;
        position: absolute;
      }

      #lp-pom-image-155 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 9px;
        z-index: 86;
        position: absolute;
      }

      #lp-pom-text-156 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 21px;
        top: 7px;
        z-index: 87;
        width: 85px;
        height: 22px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-157 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 140px;
        top: 7px;
        z-index: 88;
        width: 75px;
        height: 22px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-158 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 118px;
        top: 11px;
        z-index: 89;
        position: absolute;
      }

      #lp-pom-button-450 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: 28px;
        top: 35px;
        z-index: 90;
        width: 188px;
        height: 34px;
        position: absolute;
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        text-shadow: none;
        color: #1C375B;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 22px;
        line-height: 26px;
        font-weight: 700;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-159 {
        display: block;
        background: rgba(205, 66, 54, 1);
        border-style: none;
        border-radius: 4px;
        left: 40px;
        top: 40px;
        z-index: 91;
        width: 60px;
        height: 60px;
        position: absolute;
      }

      #lp-pom-text-160 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 7.5px;
        top: 13px;
        z-index: 92;
        width: 45px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-236 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 2039px;
        z-index: 93;
        width: 300px;
        height: 360px;
        position: absolute;
      }

      #lp-pom-text-237 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 100px;
        z-index: 94;
        width: 300px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-238 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0.5px;
        top: 137px;
        z-index: 95;
        width: 565px;
        height: 45px;
        transform: scale(0.53);
        transform-origin: 0 0;
        -webkit-transform: scale(0.53);
        -webkit-transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-239 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 172px;
        z-index: 96;
        width: 300px;
        height: 96px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-240 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 118.5px;
        top: 290px;
        z-index: 97;
        position: absolute;
      }

      #lp-pom-block-14 {
        display: block;
        background: rgba(255, 255, 255, 0);
        background-image: url(../images/bg1.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 100%;
        height: 990px;
        position: relative;
      }

      #lp-pom-box-356 {
        display: block;
        background: rgba(28, 55, 91, 0.4);
        background-image: url(images/d49ecf34-video-bg.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        border-style: none;
        border-radius: 4px;
        left: 10px;
        top: 4878px;
        z-index: 145;
        width: 300px;
        height: 260px;
        position: absolute;
      }

      #lp-pom-button-382 {
        display: block;
        border-style: none;
        border-radius: 2px;
        left: 88.5px;
        top: 41px;
        z-index: 146;
        width: 163px;
        height: 178px;
        position: absolute;
        text-shadow: none;
        box-shadow: none;
        background-color: rgba(252, 77, 74, 0);
        background-image: url(images/7601fc2f-video-icon_1000000000000000000028.png);
        background-size: 100%;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
        font-family: Open Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-box-362 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 4389px;
        z-index: 141;
        width: 300px;
        height: 180px;
        position: absolute;
      }

      #lp-pom-text-360 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 108px;
        z-index: 142;
        width: 300px;
        height: 72px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-361 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 65px;
        z-index: 143;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-369 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 144;
        width: 137px;
        height: 58px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-378 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 4629px;
        z-index: 147;
        width: 300px;
        height: 180px;
        position: absolute;
      }

      #lp-pom-text-379 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 108px;
        z-index: 148;
        width: 300px;
        height: 72px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-380 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 65px;
        z-index: 149;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-381 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 150;
        width: 137px;
        height: 58px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-block-251 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 100%;
        height: 1630px;
        position: relative;
      }

      #lp-pom-box-252 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 5619px;
        z-index: 98;
        width: 300px;
        height: 380px;
        position: absolute;
      }

      #lp-pom-image-253 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 0px;
        z-index: 99;
        position: absolute;
      }

      #lp-pom-box-254 {
        display: block;
        background: rgba(245, 245, 245, 1);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 243px;
        z-index: 100;
        width: 300px;
        height: 123px;
        position: absolute;
      }

      #lp-pom-text-255 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 35px;
        z-index: 101;
        width: 220px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-256 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 69px;
        z-index: 102;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-265 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 6013px;
        z-index: 103;
        width: 300px;
        height: 380px;
        position: absolute;
      }

      #lp-pom-image-266 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 0px;
        z-index: 104;
        position: absolute;
      }

      #lp-pom-box-267 {
        display: block;
        background: rgba(245, 245, 245, 1);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 243px;
        z-index: 105;
        width: 300px;
        height: 123px;
        position: absolute;
      }

      #lp-pom-text-268 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 35px;
        z-index: 106;
        width: 220px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-269 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 69px;
        z-index: 107;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-278 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 6408px;
        z-index: 108;
        width: 300px;
        height: 380px;
        position: absolute;
      }

      #lp-pom-image-279 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 0px;
        z-index: 109;
        position: absolute;
      }

      #lp-pom-box-280 {
        display: block;
        background: rgba(245, 245, 245, 1);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 243px;
        z-index: 110;
        width: 300px;
        height: 123px;
        position: absolute;
      }

      #lp-pom-text-281 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 35px;
        z-index: 111;
        width: 220px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-282 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 40px;
        top: 69px;
        z-index: 112;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-291 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 5259px;
        z-index: 113;
        width: 300px;
        height: 360px;
        position: absolute;
      }

      #lp-pom-text-292 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 100px;
        z-index: 114;
        width: 300px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-293 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0.5px;
        top: 137px;
        z-index: 115;
        width: 565px;
        height: 45px;
        transform: scale(0.53);
        transform-origin: 0 0;
        -webkit-transform: scale(0.53);
        -webkit-transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-294 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 172px;
        z-index: 116;
        width: 300px;
        height: 96px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-295 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 118.5px;
        top: 290px;
        z-index: 117;
        position: absolute;
      }

      #lp-pom-block-15 {
        display: block;
        background: rgba(245, 245, 245, 1);
        background-image: url(images/25f790d1-01-pattern_1000000000000000000028.png);
        background-repeat: repeat;
        background-position: left top;
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 100%;
        height: 1270px;
        position: relative;
      }

      #lp-pom-box-307 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 6889px;
        z-index: 118;
        width: 300px;
        height: 360px;
        position: absolute;
      }

      #lp-pom-text-308 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 100px;
        z-index: 119;
        width: 300px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-309 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0.5px;
        top: 137px;
        z-index: 120;
        width: 565px;
        height: 45px;
        transform: scale(0.53);
        transform-origin: 0 0;
        -webkit-transform: scale(0.53);
        -webkit-transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-310 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 172px;
        z-index: 121;
        width: 300px;
        height: 96px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-image-311 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 118.5px;
        top: 290px;
        z-index: 122;
        position: absolute;
      }

      #lp-pom-box-312 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 7251px;
        z-index: 123;
        width: 300px;
        height: 394px;
        position: absolute;
      }

      #lp-pom-box-313 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: dashed;
        border-width: 2px;
        border-color: #dbdbdb;
        border-radius: 0px;
        left: 0px;
        top: 50px;
        z-index: 124;
        width: 296px;
        height: 329px;
        position: absolute;
      }

      #lp-pom-text-314 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 38px;
        top: 86px;
        z-index: 125;
        width: 220px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-315 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 38px;
        top: 120px;
        z-index: 126;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-316 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 38px;
        top: 163px;
        z-index: 127;
        width: 220px;
        height: 120px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-339 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: dashed;
        border-width: 2px;
        border-color: #cd4236;
        border-radius: 150px;
        left: 38px;
        top: -52px;
        z-index: 128;
        width: 96px;
        height: 96px;
        position: absolute;
      }

      #lp-pom-box-340 {
        display: block;
        background: rgba(255, 255, 255, 0);
        background-image: url(images/9fa68fe5-avatar.jpg);
        background-repeat: no-repeat;
        background-position: left top;
        border-style: none;
        border-radius: 142px;
        left: 2px;
        top: 2px;
        z-index: 129;
        width: 92px;
        height: 92px;
        position: absolute;
      }

      #lp-pom-box-341 {
        display: block;
        background: rgba(205, 66, 54, 1);
        border-style: none;
        border-radius: 159px;
        left: 62px;
        top: 0px;
        z-index: 130;
        width: 30px;
        height: 30px;
        position: absolute;
      }

      #lp-pom-image-342 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 9px;
        top: 10px;
        z-index: 131;
        position: absolute;
      }

      #lp-pom-box-345 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 7665px;
        z-index: 132;
        width: 300px;
        height: 394px;
        position: absolute;
      }

      #lp-pom-box-346 {
        display: block;
        background: rgba(255, 255, 255, 1);
        border-style: dashed;
        border-width: 2px;
        border-color: #dbdbdb;
        border-radius: 0px;
        left: 0px;
        top: 50px;
        z-index: 133;
        width: 296px;
        height: 329px;
        position: absolute;
      }

      #lp-pom-text-347 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 38px;
        top: 86px;
        z-index: 134;
        width: 220px;
        height: 34px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-348 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 38px;
        top: 120px;
        z-index: 135;
        width: 220px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-349 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 38px;
        top: 163px;
        z-index: 136;
        width: 220px;
        height: 120px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-350 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: dashed;
        border-width: 2px;
        border-color: #cd4236;
        border-radius: 150px;
        left: 38px;
        top: -52px;
        z-index: 137;
        width: 96px;
        height: 96px;
        position: absolute;
      }

      #lp-pom-box-351 {
        display: block;
        background: rgba(255, 255, 255, 0);
        background-image: url(images/d3ee2286-avatar-2jpg.jpg);
        background-repeat: no-repeat;
        background-position: left top;
        border-style: none;
        border-radius: 142px;
        left: 2px;
        top: 2px;
        z-index: 138;
        width: 92px;
        height: 92px;
        position: absolute;
      }

      #lp-pom-box-352 {
        display: block;
        background: rgba(205, 66, 54, 1);
        border-style: none;
        border-radius: 159px;
        left: 62px;
        top: 0px;
        z-index: 139;
        width: 30px;
        height: 30px;
        position: absolute;
      }

      #lp-pom-image-353 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 9px;
        top: 10px;
        z-index: 140;
        position: absolute;
      }

      #lp-pom-block-384 {
        display: block;
        background: rgba(28, 55, 91, 0.6);
        background-image: url(images/c8c29177-cta-bg_11810gt0go0gt0do00001o.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 100%;
        height: 605px;
        position: relative;
      }

      #lp-pom-box-386 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 8279px;
        z-index: 151;
        width: 300px;
        height: 265px;
        position: absolute;
      }

      #lp-pom-text-387 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 152;
        width: 300px;
        height: 26px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-388 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 33px;
        z-index: 153;
        width: 616px;
        height: 77px;
        transform: scale(0.5);
        transform-origin: 0 0;
        -webkit-transform: scale(0.5);
        -webkit-transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-389 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 77px;
        z-index: 154;
        width: 300px;
        height: 96px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-button-390 {
        display: block;
        border-style: none;
        border-radius: 4px;
        left: 25px;
        top: 200px;
        z-index: 155;
        width: 250px;
        height: 65px;
        position: absolute;
        background: rgba(205, 66, 54, 1);
        box-shadow: none;
        text-shadow: none;
        color: #fff;
        border-width: undefinedpx;
        border-color: #undefined;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        font-family: Josefin Sans;
        font-style: normal;
        text-align: center;
        background-repeat: no-repeat;
      }

      #lp-pom-image-412 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 88.5px;
        top: 8559px;
        z-index: 156;
        position: absolute;
      }

      #lp-pom-block-16 {
        display: block;
        background: rgba(245, 245, 245, 1);
        border-style: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        border-radius: 0px;
        width: 100%;
        height: 858px;
        position: relative;
      }

      #lp-pom-box-417 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 8854px;
        z-index: 157;
        width: 270px;
        height: 147px;
        position: absolute;
      }

      #lp-pom-image-418 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 0px;
        top: 0px;
        z-index: 158;
        position: absolute;
      }

      #lp-pom-text-419 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 89px;
        z-index: 159;
        width: 256px;
        height: 58px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-422 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 9060px;
        z-index: 160;
        width: 270px;
        height: 142px;
        position: absolute;
      }

      #lp-pom-text-423 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 161;
        width: 220px;
        height: 31px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-424 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 49px;
        z-index: 162;
        width: 270px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-425 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 85px;
        z-index: 163;
        width: 270px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-426 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 118px;
        z-index: 164;
        width: 270px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-428 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 9261px;
        z-index: 165;
        width: 270px;
        height: 142px;
        position: absolute;
      }

      #lp-pom-text-429 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 166;
        width: 220px;
        height: 31px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-430 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 49px;
        z-index: 167;
        width: 270px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-431 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 85px;
        z-index: 168;
        width: 270px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-text-432 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 118px;
        z-index: 169;
        width: 270px;
        height: 24px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-433 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 10px;
        top: 9462px;
        z-index: 170;
        width: 270px;
        height: 90px;
        position: absolute;
      }

      #lp-pom-text-434 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 0px;
        z-index: 171;
        width: 220px;
        height: 31px;
        transform: none;
        transform-origin: 0 0;
        position: absolute;
      }

      #lp-pom-box-438 {
        display: block;
        background: rgba(255, 255, 255, 0);
        border-style: none;
        border-radius: 0px;
        left: 0px;
        top: 30px;
        z-index: 172;
        width: 172px;
        height: 52px;
        position: absolute;
      }

      #lp-pom-image-439 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 130px;
        top: 21px;
        z-index: 173;
        position: absolute;
      }

      #lp-pom-image-440 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 89px;
        top: 20px;
        z-index: 174;
        position: absolute;
      }

      #lp-pom-image-441 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: 44px;
        top: 21px;
        z-index: 175;
        position: absolute;
      }

      #lp-pom-image-442 {
        display: block;
        background: rgba(255, 255, 255, 0);
        left: -2px;
        top: 20px;
        z-index: 176;
        position: absolute;
      }

      body {
        color: #1c375b;
      }

      a {
        color: #6F8197;
        text-decoration: none;
      }

      #lp-pom-root .lp-positioned-content {
        top: 0px;
        width: 320px;
        margin-left: -160px;
      }

      #lp-pom-block-11 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 1414px;
      }

      #lp-pom-block-12 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 625px;
      }

      #lp-pom-block-13 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        /* height: 2230px; */
      }

      #lp-pom-block-14 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 990px;
      }

      #lp-pom-block-251 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 1630px;
      }

      #lp-pom-block-15 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 1270px;
      }

      #lp-pom-block-384 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 605px;
      }

      #lp-pom-block-16 .lp-pom-block-content {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 858px;
      }

      #lp-pom-image-20 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 149px;
        height: 40px;
      }

      #lp-pom-image-20 .lp-pom-image-container img {
        width: 149px;
        height: 40px;
      }

      #lp-pom-button-27:hover {
        background: rgba(195, 51, 41, 1);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-27:active {
        background: rgba(185, 43, 34, 1);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-27 .label {
        margin-top: -12px;
      }

      #lp-pom-image-31 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 50px;
        height: 51px;
      }

      #lp-pom-image-31 .lp-pom-image-container img {
        width: 50px;
        height: 51px;
      }

      #lp-pom-button-35:hover {
        background: rgba(195, 51, 41, 0);
        box-shadow: none;
        color: #CD4236;
      }

      #lp-pom-button-35:active {
        background: rgba(185, 43, 34, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-35 .label {
        margin-top: -10px;
      }

      #lp-pom-image-39 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 48px;
        height: 51px;
      }

      #lp-pom-image-39 .lp-pom-image-container img {
        width: 48px;
        height: 51px;
      }

      #lp-pom-button-40:hover {
        background: rgba(195, 51, 41, 0);
        box-shadow: none;
        color: #CD4236;
      }

      #lp-pom-button-40:active {
        background: rgba(185, 43, 34, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-40 .label {
        margin-top: -10px;
      }

      #lp-pom-image-47 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 50px;
        height: 42px;
      }

      #lp-pom-image-47 .lp-pom-image-container img {
        width: 50px;
        height: 42px;
      }

      #lp-pom-button-48:hover {
        background: rgba(195, 51, 41, 0);
        box-shadow: none;
        color: #CD4236;
      }

      #lp-pom-button-48:active {
        background: rgba(185, 43, 34, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-48 .label {
        margin-top: -10px;
      }

      #lp-pom-image-52 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 50px;
        height: 51px;
      }

      #lp-pom-image-52 .lp-pom-image-container img {
        width: 50px;
        height: 51px;
      }

      #lp-pom-button-53:hover {
        background: rgba(195, 51, 41, 0);
        box-shadow: none;
        color: #CD4236;
      }

      #lp-pom-button-53:active {
        background: rgba(185, 43, 34, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-53 .label {
        margin-top: -10px;
      }

      #lp-pom-image-61 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 132px;
        height: 97px;
      }

      #lp-pom-image-61 .lp-pom-image-container img {
        width: 132px;
        height: 97px;
      }

      #lp-pom-image-64 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 300px;
        height: 263px;
      }

      #lp-pom-image-64 .lp-pom-image-container img {
        width: 300px;
        height: 263px;
      }

      #lp-pom-image-69 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-69 .lp-pom-image-container img {
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-75 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-75 .lp-pom-image-container img {
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-78 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-78 .lp-pom-image-container img {
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-81 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-81 .lp-pom-image-container img {
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-87 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-87 .lp-pom-image-container img {
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-90 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-90 .lp-pom-image-container img {
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-93 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-93 .lp-pom-image-container img {
        width: 9px;
        height: 10px;
      }

      #lp-pom-image-111 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-111 .lp-pom-image-container img {
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-119 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 17px;
      }

      #lp-pom-image-119 .lp-pom-image-container img {
        width: 15px;
        height: 17px;
      }

      #lp-pom-image-128 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 15px;
      }

      #lp-pom-image-128 .lp-pom-image-container img {
        width: 15px;
        height: 15px;
      }

      #lp-pom-image-136 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-136 .lp-pom-image-container img {
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-142 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 17px;
      }

      #lp-pom-image-142 .lp-pom-image-container img {
        width: 15px;
        height: 17px;
      }

      #lp-pom-image-145 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 15px;
      }

      #lp-pom-image-145 .lp-pom-image-container img {
        width: 15px;
        height: 15px;
      }

      #lp-pom-image-149 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-149 .lp-pom-image-container img {
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-155 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 17px;
      }

      #lp-pom-image-155 .lp-pom-image-container img {
        width: 15px;
        height: 17px;
      }

      #lp-pom-image-158 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 15px;
      }

      #lp-pom-image-158 .lp-pom-image-container img {
        width: 15px;
        height: 15px;
      }

      #lp-pom-image-240 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-240 .lp-pom-image-container img {
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-253 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-253 .lp-pom-image-container img {
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-266 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-266 .lp-pom-image-container img {
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-279 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-279 .lp-pom-image-container img {
        width: 300px;
        height: 243px;
      }

      #lp-pom-image-295 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-295 .lp-pom-image-container img {
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-311 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-311 .lp-pom-image-container img {
        width: 63px;
        height: 10px;
      }

      #lp-pom-image-342 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 12px;
        height: 10px;
      }

      #lp-pom-image-342 .lp-pom-image-container img {
        width: 12px;
        height: 10px;
      }

      #lp-pom-image-353 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 12px;
        height: 10px;
      }

      #lp-pom-image-353 .lp-pom-image-container img {
        width: 12px;
        height: 10px;
      }

      #lp-pom-button-382:hover {
        text-shadow: none;
        box-shadow: none;
        background-color: rgba(34, 34, 34, 0);
        color: #fff;
      }

      #lp-pom-button-382:active {
        text-shadow: none;
        box-shadow: none;
        background-color: rgba(227, 49, 47, 0);
        background-image: url(images/7601fc2f-video-icon_1000000000000000000028.png);
        color: #fff;
      }

      #lp-pom-button-382 .label {
        margin-top: 0px;
      }

      #lp-pom-button-390:hover {
        background: rgba(195, 51, 41, 1);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-390:active {
        background: rgba(185, 43, 34, 1);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-390 .label {
        margin-top: -12px;
      }

      #lp-pom-image-412 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 161px;
        height: 84px;
      }

      #lp-pom-image-412 .lp-pom-image-container img {
        width: 161px;
        height: 84px;
      }

      #lp-pom-image-418 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 51px;
        height: 57px;
      }

      #lp-pom-image-418 .lp-pom-image-container img {
        width: 51px;
        height: 57px;
      }

      #lp-pom-image-439 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 13px;
      }

      #lp-pom-image-439 .lp-pom-image-container img {
        width: 15px;
        height: 13px;
      }

      #lp-pom-image-440 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 14px;
        height: 15px;
      }

      #lp-pom-image-440 .lp-pom-image-container img {
        width: 14px;
        height: 15px;
      }

      #lp-pom-image-441 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 15px;
        height: 12px;
      }

      #lp-pom-image-441 .lp-pom-image-container img {
        width: 15px;
        height: 12px;
      }

      #lp-pom-image-442 .lp-pom-image-container {
        border-style: none;
        border-radius: 0px;
        width: 9px;
        height: 16px;
      }

      #lp-pom-image-442 .lp-pom-image-container img {
        width: 9px;
        height: 16px;
      }

      #lp-pom-button-448:hover {
        background: rgba(195, 51, 41, 0);
        box-shadow: none;
        color: #CD4236;
      }

      #lp-pom-button-448:active {
        background: rgba(185, 43, 34, 0);
        box-shadow: none;
        color: #1C375B;
      }

      #lp-pom-button-448 .label {
        margin-top: -13px;
      }

      #lp-pom-button-449:hover {
        background: rgba(195, 51, 41, 0);
        box-shadow: none;
        color: #CD4236;
      }

      #lp-pom-button-449:active {
        background: rgba(185, 43, 34, 0);
        box-shadow: none;
        color: #1C375B;
      }

      #lp-pom-button-449 .label {
        margin-top: -13px;
      }

      #lp-pom-button-450:hover {
        background: rgba(195, 51, 41, 0);
        box-shadow: none;
        color: #CD4236;
      }

      #lp-pom-button-450:active {
        background: rgba(185, 43, 34, 0);
        box-shadow: none;
        color: #1C375B;
      }

      #lp-pom-button-450 .label {
        margin-top: -13px;
      }

      #lp-pom-button-455:hover {
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        color: #cd4236;
      }

      #lp-pom-button-455:active {
        background: rgba(230, 161, 161, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-455 .label {
        margin-top: -10px;
      }

      #lp-pom-button-456:hover {
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        color: #cd4236;
      }

      #lp-pom-button-456:active {
        background: rgba(230, 161, 161, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-456 .label {
        margin-top: -10px;
      }

      #lp-pom-button-457:hover {
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        color: #cd4236;
      }

      #lp-pom-button-457:active {
        background: rgba(230, 161, 161, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-457 .label {
        margin-top: -10px;
      }

      #lp-pom-button-458:hover {
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        color: #cd4236;
      }

      #lp-pom-button-458:active {
        background: rgba(230, 161, 161, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-458 .label {
        margin-top: -10px;
      }

      #lp-pom-button-459:hover {
        background: rgba(205, 66, 54, 0);
        box-shadow: none;
        color: #cd4236;
      }

      #lp-pom-button-459:active {
        background: rgba(230, 161, 161, 0);
        box-shadow: none;
        color: #fff;
      }

      #lp-pom-button-459 .label {
        margin-top: -10px;
      }

      #lp-pom-root-color-overlay {
        position: absolute;
        background: none;
        top: 0;
        width: 100%;
        /* height: 9622px; */
        /* min-height: 100%; */
      }

      #lp-pom-block-11-color-overlay {
        position: absolute;
        background: rgba(28, 55, 91, 0.6);
        height: 1414px;
        width: 100%;
        ;
      }

      #lp-pom-block-12-color-overlay {
        position: absolute;
        background: none;
        height: 625px;
        width: 320px;
      }

      #lp-pom-block-13-color-overlay {
        position: absolute;
        background: none;
        /* height: 2230px; */
        width: 100%;
        ;
      }

      #lp-pom-block-14-color-overlay {
        position: absolute;
        background: rgba(255, 255, 255, 0);
        height: 990px;
        width: 100%;
        ;
      }

      #lp-pom-block-251-color-overlay {
        position: absolute;
        background: none;
        height: 1630px;
        width: 100%;
        ;
      }

      #lp-pom-block-15-color-overlay {
        position: absolute;
        background: none;
        height: 1270px;
        width: 100%;
        ;
      }

      #lp-pom-block-384-color-overlay {
        position: absolute;
        background: rgba(28, 55, 91, 0.6);
        height: 605px;
        width: 100%;
        ;
      }

      #lp-pom-block-16-color-overlay {
        position: absolute;
        background: none;
        height: 858px;
        width: 100%;
        ;
      }

      #lp-pom-box-23-color-overlay {
        position: absolute;
        background: none;
        height: 265px;
        width: 300px;
      }

      #lp-pom-box-30-color-overlay {
        position: absolute;
        background: none;
        border-radius: 3px;
        height: 168px;
        width: 168px;
      }

      #lp-pom-box-36-color-overlay {
        position: absolute;
        background: none;
        border-radius: 2px;
        height: 18px;
        width: 34px;
      }

      #lp-pom-box-38-color-overlay {
        position: absolute;
        background: none;
        border-radius: 3px;
        height: 168px;
        width: 168px;
      }

      #lp-pom-box-41-color-overlay {
        position: absolute;
        background: none;
        border-radius: 2px;
        height: 18px;
        width: 34px;
      }

      #lp-pom-box-46-color-overlay {
        position: absolute;
        background: none;
        border-radius: 3px;
        height: 168px;
        width: 168px;
      }

      #lp-pom-box-49-color-overlay {
        position: absolute;
        background: none;
        border-radius: 2px;
        height: 18px;
        width: 34px;
      }

      #lp-pom-box-51-color-overlay {
        position: absolute;
        background: none;
        border-radius: 3px;
        height: 168px;
        width: 168px;
      }

      #lp-pom-box-54-color-overlay {
        position: absolute;
        background: none;
        border-radius: 2px;
        height: 18px;
        width: 34px;
      }

      #lp-pom-box-65-color-overlay {
        position: absolute;
        background: none;
        height: 200px;
        width: 300px;
      }

      #lp-pom-box-73-color-overlay {
        position: absolute;
        background: none;
        height: 100px;
        width: 270px;
      }

      #lp-pom-box-74-color-overlay {
        position: absolute;
        background: none;
        height: 24px;
        width: 270px;
      }

      #lp-pom-box-77-color-overlay {
        position: absolute;
        background: none;
        height: 24px;
        width: 270px;
      }

      #lp-pom-box-80-color-overlay {
        position: absolute;
        background: none;
        height: 24px;
        width: 270px;
      }

      #lp-pom-box-85-color-overlay {
        position: absolute;
        background: none;
        height: 100px;
        width: 270px;
      }

      #lp-pom-box-86-color-overlay {
        position: absolute;
        background: none;
        height: 24px;
        width: 270px;
      }

      #lp-pom-box-89-color-overlay {
        position: absolute;
        background: none;
        height: 24px;
        width: 270px;
      }

      #lp-pom-box-92-color-overlay {
        position: absolute;
        background: none;
        height: 24px;
        width: 270px;
      }

      #lp-pom-box-110-color-overlay {
        position: absolute;
        background: none;
        height: 650px;
        width: 300px;
      }

      #lp-pom-box-112-color-overlay {
        position: absolute;
        background: none;
        height: 321px;
        width: 300px;
      }

      #lp-pom-box-113-color-overlay {
        position: absolute;
        background: none;
        border-radius: 4px;
        height: 60px;
        width: 60px;
      }

      #lp-pom-box-118-color-overlay {
        position: absolute;
        background: none;
        height: 40px;
        width: 220px;
      }

      #lp-pom-box-135-color-overlay {
        position: absolute;
        background: none;
        height: 580px;
        width: 300px;
      }

      #lp-pom-box-137-color-overlay {
        position: absolute;
        background: none;
        height: 321px;
        width: 300px;
      }

      #lp-pom-box-141-color-overlay {
        position: absolute;
        background: none;
        height: 40px;
        width: 220px;
      }

      #lp-pom-box-146-color-overlay {
        position: absolute;
        background: none;
        border-radius: 4px;
        height: 60px;
        width: 60px;
      }

      #lp-pom-box-148-color-overlay {
        position: absolute;
        background: none;
        height: 580px;
        width: 300px;
      }

      #lp-pom-box-150-color-overlay {
        position: absolute;
        background: none;
        height: 321px;
        width: 300px;
      }

      #lp-pom-box-154-color-overlay {
        position: absolute;
        background: none;
        height: 40px;
        width: 220px;
      }

      #lp-pom-box-159-color-overlay {
        position: absolute;
        background: none;
        border-radius: 4px;
        height: 60px;
        width: 60px;
      }

      #lp-pom-box-236-color-overlay {
        position: absolute;
        background: none;
        height: 360px;
        width: 300px;
      }

      #lp-pom-box-252-color-overlay {
        position: absolute;
        background: none;
        height: 380px;
        width: 300px;
      }

      #lp-pom-box-254-color-overlay {
        position: absolute;
        background: none;
        height: 123px;
        width: 300px;
      }

      #lp-pom-box-265-color-overlay {
        position: absolute;
        background: none;
        height: 380px;
        width: 300px;
      }

      #lp-pom-box-267-color-overlay {
        position: absolute;
        background: none;
        height: 123px;
        width: 300px;
      }

      #lp-pom-box-278-color-overlay {
        position: absolute;
        background: none;
        height: 380px;
        width: 300px;
      }

      #lp-pom-box-280-color-overlay {
        position: absolute;
        background: none;
        height: 123px;
        width: 300px;
      }

      #lp-pom-box-291-color-overlay {
        position: absolute;
        background: none;
        height: 360px;
        width: 300px;
      }

      #lp-pom-box-307-color-overlay {
        position: absolute;
        background: none;
        height: 360px;
        width: 300px;
      }

      #lp-pom-box-312-color-overlay {
        position: absolute;
        background: none;
        height: 394px;
        width: 300px;
      }

      #lp-pom-box-313-color-overlay {
        position: absolute;
        background: none;
        height: 329px;
        width: 296px;
      }

      #lp-pom-box-339-color-overlay {
        position: absolute;
        background: none;
        border-radius: 148px;
        height: 96px;
        width: 96px;
      }

      #lp-pom-box-340-color-overlay {
        position: absolute;
        background: rgba(255, 255, 255, 0);
        border-radius: 142px;
        height: 92px;
        width: 92px;
      }

      #lp-pom-box-341-color-overlay {
        position: absolute;
        background: none;
        border-radius: 159px;
        height: 30px;
        width: 30px;
      }

      #lp-pom-box-345-color-overlay {
        position: absolute;
        background: none;
        height: 394px;
        width: 300px;
      }

      #lp-pom-box-346-color-overlay {
        position: absolute;
        background: none;
        height: 329px;
        width: 296px;
      }

      #lp-pom-box-350-color-overlay {
        position: absolute;
        background: none;
        border-radius: 148px;
        height: 96px;
        width: 96px;
      }

      #lp-pom-box-351-color-overlay {
        position: absolute;
        background: rgba(255, 255, 255, 0);
        border-radius: 142px;
        height: 92px;
        width: 92px;
      }

      #lp-pom-box-352-color-overlay {
        position: absolute;
        background: none;
        border-radius: 159px;
        height: 30px;
        width: 30px;
      }

      #lp-pom-box-356-color-overlay {
        position: absolute;
        background: rgba(28, 55, 91, 0.4);
        border-radius: 4px;
        height: 260px;
        width: 300px;
      }

      #lp-pom-box-362-color-overlay {
        position: absolute;
        background: none;
        height: 180px;
        width: 300px;
      }

      #lp-pom-box-378-color-overlay {
        position: absolute;
        background: none;
        height: 180px;
        width: 300px;
      }

      #lp-pom-box-386-color-overlay {
        position: absolute;
        background: none;
        height: 265px;
        width: 300px;
      }

      #lp-pom-box-417-color-overlay {
        position: absolute;
        background: none;
        height: 147px;
        width: 270px;
      }

      #lp-pom-box-422-color-overlay {
        position: absolute;
        background: none;
        height: 142px;
        width: 270px;
      }

      #lp-pom-box-428-color-overlay {
        position: absolute;
        background: none;
        height: 142px;
        width: 270px;
      }

      #lp-pom-box-433-color-overlay {
        position: absolute;
        background: none;
        height: 90px;
        width: 270px;
      }

      #lp-pom-box-438-color-overlay {
        position: absolute;
        background: none;
        height: 52px;
        width: 172px;
      }

      #lp-pom-box-453-color-overlay {
        position: absolute;
        background: none;
        height: 336px;
        width: 189px;
      }
    }







