:root {
    --font-family-default: 'Spartan', sans-serif;
    --font-family-title: 'Termina';
    --primary: #014046;
    --secondary: #f5bbb3;
    --default-transition: all 0.3s ease-in-out
}

::-webkit-scrollbar {
    display: none;
}

*:focus {
    outline: none !important;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
input,
button,
img,
canvas {
    transition: var(--default-transition);
}

.img-wrapper {
    position: relative;
    z-index: 1;
}

.img-wrapper canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.bg-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.bg-wrapper canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-wrapper.fixed canvas {
    background-attachment: fixed;
}

.lp-title {}

.lp-title h2 {
    font-family: var(--font-family-title);
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
}

.lp-title.center h2 {
    text-align: center;
    padding: 0 0 0 0.1em;
}

.lp-title.light h2 {
    color: #fff;
}

.lp-title span {
    display: block;
    font-family: var(--font-family-default);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-transform: uppercase;
    margin: 11px 0 0;
}

.lp-title.center span {
    text-align: center;
    padding: 0 0 0 0.05em;
}

.lp-title.light span {
    color: #fff;
}

.lp-button {
    display: flex;
}

.lp-button.center {
    justify-content: center;
}

.lp-button a,
.lp-button button,
.lp-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: fit-content;
    background: transparent;
    border: 2px solid var(--primary);
    font-family: var(--font-family-title);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    padding: 7px 30px 6px;
    position: relative;
    transition: var(--default-transition);
}

.lp-button a:hover,
.lp-button button:hover,
.lp-button span:hover {
    background: var(--primary);
    color: #fff;
}

.lp-button a::before,
.lp-button button::before,
.lp-button span::before {
    content: '';
    width: 29px;
    height: 38px;
    background: var(--primary);
    -webkit-mask-image: url('../images/lp-button-icon-new.png');
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: var(--default-transition);
}

.lp-button a:hover::before,
.lp-button button:hover::before,
.lp-button span:hover::before {
    background: #fff;
}

.lp-button.light a,
.lp-button.light button,
.lp-button.light span {
    border-color: #fff;
    color: #fff;
}

.lp-button.light a:hover,
.lp-button.light button:hover,
.lp-button.light span:hover {
    background: #fff;
    color: var(--primary);
}

.lp-button.light a::before,
.lp-button.light button::before,
.lp-button.light span::before {
    background: #fff;
}

.lp-button.light a:hover::before,
.lp-button.light button:hover::before,
.lp-button.light span:hover::before {
    background: var(--primary);
}

.lp-arrow {}

.lp-arrow a {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 18px;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.1em;
}

.lp-arrow.light a {
    color: #fff;
}

.lp-arrow.prev a::before,
.lp-arrow.next a::after {
    content: '';
    width: 29px;
    height: 12px;
    background: var(--primary);
    -webkit-mask-image: url('../images/lp-arrow.png');
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: var(--default-transition);
}

.lp-arrow.light.prev a::before,
.lp-arrow.light.next a::after {
    background: #fff;
}

.lp-arrow.prev a::before {
    transform: scale(-1);
}

.lp-arrow a:hover {
    color: var(--secondary) !important;
}

.lp-arrow.prev a:hover::before,
.lp-arrow.next a:hover::after {
    background: var(--secondary) !important;
}

.lp-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0 15px;
}

.lp-header-inner {
    max-width: 1400px;
    margin: auto;
    padding: 18px 0;
}

.lp-header-logo {}

.lp-header-logo a {
    display: block;
}

.lp-header-logo a img {
    width: 131px;
    filter: brightness(0) invert(1);
}

.lp-header-navigation {}

.lp-header-navigation > div {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.lp-header-split-nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: calc(50% - 183px);
}

.lp-header-split-nav.left {
    justify-content: flex-end;
}

.lp-header-nav {
    display: flex;
    flex-flow: row wrap;
    gap: 50px;
}

.lp-header-nav > li {
    position: relative;
}

.lp-header-nav > li.menu-item-184081,
#fixednav li.menu-item-184081 {
    display: none;
}

.lp-header-nav > li > a,
#fixednav > li > a {
    display: block;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.1em;
}

.lp-header-nav > li:hover > a {}

.lp-header-nav .sub-menu {
    width: 230px;
    position: absolute;
    left: -200%;
    right: -200%;
    z-index: 1;
    margin: auto;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--default-transition);
    padding: 30px 0 0;
}

.lp-header-nav li:hover > .sub-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.lp-header-nav .sub-menu .sub-menu {
    top: 0;
    left: 0;
    padding: 0;
    margin: 0 0 0 calc(100% + 1px);
}

.lp-header-nav .sub-menu > li {
    background: var(--primary);
    margin: 0 0 1px;
    transition: var(--default-transition);
    position: relative;
}

.lp-header-nav .sub-menu > li:hover {
    background: #fff;
}

.lp-header-nav .sub-menu li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 16px 13px 12px calc(15px + 0.1em);
}

.lp-header-nav .sub-menu > li:hover > a {
    color: var(--primary);
}

.lp-header-button {}

.lp-header-button a {
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 20px 20px 20px calc(20px + 0.1em);
}

.lp-header-button a::before {
    display: none;
}

.lp-banner {}

.lp-banner-inner {
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.lp-banner-photo {
    margin: 0 calc(calc(-100vw + 100%) / 2);
    position: relative;
}

.lp-banner-photo::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(83, 83, 83, 0.26) 32%, rgba(146, 146, 146, 0.12) 56%, rgba(206, 206, 206, 0.02) 79%, rgba(255, 255, 255, 0) 98%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.lp-banner-photo canvas {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#lp-trt {}

.lp-trt {
    padding: 0 15px;
}

.lp-trt-inner {
    display: flex;
    flex-flow: row wrap;
    max-width: 1400px;
    margin: auto;
    padding: 74px 0 118px;
    position: relative;
}

.lp-trt-bg-1 {
    width: calc(50% + calc(calc(100vw - 100%) / 2));
    left: calc(calc(-100vw + 100%) / 2);
}

.lp-trt-bg-2 {
    width: calc(50% + calc(calc(100vw - 100%) / 2));
    left: auto;
    right: calc(calc(-100vw + 100%) / 2);
}

.lp-trt-title-text {
    width: 50%;
    margin: 119px 0 0;
    padding: 0 140px 0 0;
    position: relative;
    z-index: 1;
}

.lp-trt-title {
    margin: 0 0 59px;
    position: relative;
    z-index: 1;
}

.lp-trt-title h2 {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 7px 8px;
}

.lp-trt-title h2::before {
    content: '';
    width: 88px;
    height: 40px;
    background-image: url(../images/lp-title-icon.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.lp-trt-title h2 span {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.lp-trt-title h2 span::before {
    content: '';
    flex-grow: 1;
    max-width: 287px;
    height: 3px;
    background: #f7c1b9;
}

.lp-trt-text {
    max-width: 530px;
    position: relative;
    z-index: 1;
}

.lp-trt-text p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.714;
    color: #fff;
}

.lp-trt-jovl {
    width: calc(calc(50% + calc(calc(100vw - 100%) / 2)) + 85px);
    margin: 0 calc(calc(-100vw + 100%) / 2) 0 -85px;
    padding: 65px 81px 63px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.lp-trt-jovl-title {
    display: flex;
    flex-flow: column;
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
}

.lp-trt-jovl-title::after {
    content: '';
    width: 229px;
    height: 3px;
    background: #f7c1b9;
    margin: 20px 0 0;
}

.lp-trt-jovl-title h2 {
    font-size: 28px;
    font-weight: 400;
    color: #014046;
    text-transform: uppercase;
}

.lp-trt-jovl-title h2 span {
    font-weight: 600;
}

.lp-trt-jovl-text {
    margin: 0 0 46px;
    position: relative;
    z-index: 1;
}

.lp-trt-jovl-text p {
    font-size: 16px;
    font-weight: 400;
    color: #3f3f3f;
    text-transform: uppercase;
}

.lp-trt-jovl-form {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.lp-trt-jovl-form-inner {}

.lp-trt-jovl-form-inputs {
    display: flex;
    flex-flow: row wrap;
    gap: 25px 0;
    margin: 0 -30px;
}

.lp-trt-jovl-form-input {
    width: 50%;
    padding: 0 30px;
}

.lp-trt-jovl-form-input input,
.lp-trt-jovl-form-input textarea {
    display: block;
    width: 100%;
    max-height: 49px;
    resize: none;
    background: transparent;
    border: none;
    border-bottom: 2px solid #d7d7d7;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #3f3f3f;
    text-transform: uppercase;
    padding: 15px 0;
}

.lp-trt-jovl-form-button {
    justify-content: flex-end;
    margin: 42px 0 0;
}

.lp-trt-jovl-form .wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    margin: auto !important;
}

.lp-trt-jovl-form .wpcf7-response-output {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-width: 1px !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    text-transform: none;
    padding: 5px 15px !important;
    position: absolute;
    margin: 15px auto 0 !important;
}

.lp-trt-jovl-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-width: 1px !important;
    font-size: 12px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #dc3232;
    text-align: center;
    text-transform: none;
    padding: 5px 15px !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 1;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

#lp-fl {
    margin: -32px 0 0;
    position: relative;
    z-index: 1;
}

.lp-fl {
    padding: 0 15px;
}

.lp-fl-inner {
    max-width: 1466px;
    margin: auto;
}

.lp-fl-slides {
    margin: 0 -1px;
}

.lp-fl-slides:not(.slick-initialized) {
    display: flex;
    flex-flow: row wrap;
}

.lp-fl-slide {
    width: 33.33%;
    padding: 0 1px;
}

.lp-fl-slide a {
    display: block;
}

.lp-fl-slide-inner {
    position: relative;
    overflow: hidden;
}

.lp-fl-slide-photo {}

.lp-fl-slide-photo::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 46, 52, 0) 0%, rgba(2, 46, 52, 0) 2%, rgba(2, 46, 52, 0) 9%, rgba(2, 46, 52, 0.06) 22%, rgba(2, 46, 52, 0.23) 43%, rgba(2, 46, 52, 0.34) 54%, rgba(2, 46, 52, 0.5) 67%, rgba(2, 46, 52, 0.86) 89%, rgba(2, 46, 52, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.lp-fl-slide-photo::after {
    content: '';
    width: 27px;
    height: 25px;
    background-image: url('../images/lp-fl-slide-icon-4.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.lp-fl-slide-photo canvas {
    min-height: 346px;
}

.lp-fl-slide-info {
    width: 100%;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transform: translateY(56px);
    transition: var(--default-transition);
}

.lp-fl-slide a:hover .lp-fl-slide-info {
    transform: translateY(0);
}

.lp-fl-slide-info > h2 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

.lp-fl-slide-info > span {
    display: block;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    margin: 27px 0 0;
}

.lp-fl-slide-info > div {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 18px;
    margin: 10px 0 0;
    opacity: 0;
    transition: var(--default-transition);
}

.lp-fl-slide a:hover .lp-fl-slide-info > div {
    opacity: 1;
}

.lp-fl-slide-info ul {
    display: flex;
    flex-grow: 1;
    flex-flow: row wrap;
    gap: 20px;
    border-top: 1px solid #fff;
    margin: 13px 0 0;
    padding: 26px 0 0;
}

.lp-fl-slide-info ul li {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

#lp-about {}

.lp-about {
    padding: 0 15px;
}

.lp-about-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    padding: 105px 0 100px;
}

.lp-about-photo {
    width: calc(50% + calc(calc(1600px - 100%) / 2));
    margin: 0 0 0 calc(calc(-1600px + 100%) / 2);
}

.lp-about-title-text-button {
    width: 50%;
    padding: 0 0 16px 76px;
}

.lp-about-title {
    margin: 0 0 25px;
}

.lp-about-text {
    max-width: 580px;
}

.lp-about-text p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.714;
    color: #000;
}

.lp-about-button {
    margin: 34px 0 0;
}

#lp-testi {}

.lp-testi {
    padding: 0 15px;
    position: relative;
}

.lp-testi::before,
.lp-testi::after {
    content: '';
    width: 292px;
    height: 201px;
    background-image: url('../images/lp-testi-quote.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 2;
}

.lp-testi::before {
    top: 53px;
    left: -17px;
}

.lp-testi::after {
    transform: rotate(180deg);
    bottom: 75px;
    right: -12px;
}

.lp-testi-inner {
    max-width: 1400px;
    margin: auto;
    padding: 93px 0 101px;
    position: relative;
}

.lp-testi-bg {
    width: calc(100% + calc(100vw - 100%));
    left: calc(calc(-100vw + 100%) / 2);
}

.lp-testi-bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(114deg, rgba(1, 64, 70, 1) 0%, rgba(1, 64, 70, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.lp-testi-title {
    margin: 0 0 53px;
    position: relative;
    z-index: 10;
}

.lp-testi-slides {
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 10;
}

.lp-testi-slide {}

.lp-testi-slide-inner {}

.lp-testi-slide-inner span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    padding: 0 0 0 0.1em;
    margin: 0 0 34px;
}

.lp-testi-slide-inner p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #fff;
    text-align: center;
    padding: 0 0 0 0.1em;
}

.lp-testi-slide-inner h2 {
    font-family: var(--font-family-title);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.714;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.1em;
    margin: 39px 0 0;
}

.lp-testi-arrows-button {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 45px 0 0;
    position: relative;
    z-index: 10;
}

.lp-footer-bottom {
    padding: 0 15px;
}

.lp-footer-bottom-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: auto;
    padding: 68px 0;
    position: relative;
}

.lp-footer-bg {
    width: calc(100% + calc(100vw - 100%));
    left: calc(calc(-100vw + 100%) / 2);
}

.lp-footer-bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.lp-footer-logo {
    position: relative;
    z-index: 1;
}

.lp-footer-logo a {
    display: block;
}

.lp-footer-logo a img {
    width: 251px;
    filter: brightness(0) invert(1);
}

.lp-footer-contact-smi-address-navigation {
    display: flex;
    flex-flow: row wrap;
    gap: 39px 50px;
    max-width: 940px;
    margin: 26px 0 0;
    position: relative;
    z-index: 1;
}

.lp-footer-contact-smi {}

.lp-footer-contact {
    display: flex;
    flex-flow: column;
    gap: 27px;
}

.lp-footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: #fff;
}

.lp-footer-contact a:hover {
    color: var(--secondary);
}

.lp-footer-contact a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
}

.lp-footer-contact a i.ai-font-envelope {
    font-size: 14px;
}

.lp-footer-smi {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 25px;
    margin: 27px 0 0 5px;
}

.lp-footer-smi a {
    display: block;
    color: #fff;
}

.lp-footer-smi a:hover {
    color: var(--secondary);
}

.lp-footer-smi a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.lp-footer-address {
    display: flex;
    flex-flow: column;
    gap: 27px;
}

.lp-footer-address a {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.lp-footer-address a:hover {
    color: var(--secondary);
}

.lp-footer-address a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    top: 1px;
}

.lp-footer-navigation {
    width: 100%;
}

.lp-footer-navigation::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 0 0 41px;
}

.lp-footer-nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.lp-footer-nav li {}

.lp-footer-nav li a {
    display: block;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.lp-footer-nav li:hover a {
    color: var(--secondary);
}

.aiosp-bg {
    background: #000;
}

.aiosp-ref-lp-popup {
    padding: 0 15px;
}

.aiosp-ref-lp-popup .aios-popup-body {
    width: 100% !important;
    max-width: 1400px;
    min-height: auto !important;
    padding: 0 !important;
}

.aiosp-ref-lp-popup .aiosp-close {
    visibility: hidden;
}

.lp-popup {}

.lp-popup-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    background: #fff;
    position: relative;
}

.lp-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    cursor: pointer;
}

.lp-popup-close i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary);
    transition: var(--default-transition);
}

.lp-popup-close:hover i {
    color: var(--secondary);
}

.lp-popup-photo {
    width: 50%;
}

.lp-popup-logo-title-text-form {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 32px 30px 30px;
}

.lp-popup-logo {
    margin: 0 0 42px;
}

.lp-popup-logo a {
    display: block;
}

.lp-popup-logo a img {
    width: 131px;
}

.lp-popup-title {
    max-width: 510px;
    margin: 0 auto 36px;
}

.lp-popup-title h2 {
    font-size: 40px;
}

.lp-popup-title span {
    font-size: 14px;
    margin: 11px 0 0;
}

.lp-popup-form {
    max-width: 500px;
    margin: auto;
    position: relative;
}

.lp-popup-form-inner {}

.lp-popup-form-inputs {
    display: flex;
    flex-flow: row wrap;
    gap: 18px 0;
    margin: 0 -10px;
}

.lp-popup-form-input {
    width: 100%;
    padding: 0 10px;
}

.lp-popup-form-input:not(:first-child) {
    width: 50%;
}

.lp-popup-form-input .wpcf7-form-control-wrap {
    display: block;
}

.lp-popup-form-input input {
    display: block;
    width: 100%;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
    padding: 0 15px;
}

.lp-popup-form-button {
    margin: 18px 0 0;
}

.lp-popup-form .wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    margin: auto !important;
}

.lp-popup-form .wpcf7-response-output {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-width: 1px !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    text-transform: none;
    padding: 5px 15px !important;
    position: absolute;
    margin: 15px auto 0 !important;
}

.lp-popup-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-width: 1px !important;
    font-size: 12px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #dc3232;
    text-align: center;
    text-transform: none;
    padding: 5px 15px !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 1;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.fixed-header {
    display: none;
}

@media only screen and (max-width: 991px) {
    .fixed-header {
        display: block;
    }
    .lp-title h2 {
        text-align: center;
        padding: 0 0 0 0.1em;
    }
    .lp-button {
        justify-content: center;
    }
    .lp-banner-inner {
        max-width: 720px;
    }
    .lp-banner-photo canvas {
        min-height: 500px;
    }
    .lp-trt-inner {
        max-width: 720px;
        padding: 0;
    }
    .lp-trt-bg-1 {
        width: calc(100% + calc(100vw - 100%));
    }
    .lp-trt-bg-2 {
        width: calc(100% + calc(100vw - 100%));
    }
    .lp-trt-title-text {
        width: 100%;
        margin: 0;
        padding: 100px 0;
    }
    .lp-trt-title h2 {
        flex-flow: column;
        justify-content: center;
    }
    .lp-trt-title h2 span {
        flex-flow: column;
        justify-content: center;
        margin: 0;
    }
    .lp-trt-title h2 span::before {
        width: 100%;
    }
    .lp-trt-text {
        max-width: none;
    }
    .lp-trt-text p {
        text-align: center;
    }
    .lp-trt-jovl {
        width: 100%;
        margin: 0;
        padding: 100px 0;
    }
    .lp-trt-jovl-title {
        align-items: center;
    }
    .lp-trt-jovl-title h2 {
        text-align: center;
    }
    .lp-trt-jovl-text p {
        text-align: center;
    }
    .lp-fl-inner {
        max-width: 720px;
    }
    .lp-about-inner {
        max-width: 720px;
    }
    .lp-about-photo {
        width: 100%;
        margin: 60px 0 0;
        order: 1;
    }
    .lp-about-title-text-button {
        width: 100%;
        padding: 0;
    }
    .lp-about-text {
        max-width: none;
    }
    .lp-testi-inner {
        max-width: 720px;
    }
    .lp-footer-bottom-inner {
        justify-content: center;
        max-width: 720px;
    }
    .lp-footer-contact-smi-address-navigation {
        flex-flow: column;
        align-items: center;
    }
    .lp-footer-contact a {
        justify-content: center;
        text-align: center;
    }
    .lp-footer-smi {
        justify-content: center;
        margin: 27px 0 0;
    }
    .lp-footer-address a {
        justify-content: center;
        text-align: center;
    }
    .lp-footer-nav {
        flex-flow: column;
        gap: 15px;
    }
    .aiosp-ref-lp-popup .aios-popup-body {
        max-width: 720px;
    }
    .lp-popup-photo {
        display: none;
    }
    .lp-popup-logo-title-text-form {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .lp-title h2 {
        font-size: 36px;
    }
    .lp-banner-title h2 {
        font-size: 36px;
    }
    .lp-trt-jovl-text p {
        line-height: 1.714;
    }
    .lp-trt-jovl-form-input {
        width: 100%;
    }
    .lp-fl-slide-info {
        transform: translateY(130px);
    }
    .lp-popup-form-input:not(:first-child) {
        width: 100%;
    }
}