/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-family: "Outfit", sans-serif;
    line-height: 1.5;
    color: rgba(65, 64, 71, 1);
    background: #fff;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

.layouts-title {
    font-size: 26px;
    margin: 15px 0px;
}

.layouts ul li {
    margin-bottom: 5px;
}

.layouts ul li a {
    font-size: 17px;
    display: inline-block;
    padding: 3px 10px;
}

.layouts ul li a:hover {
    background: #000;
    color: #fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
    float: left;
}

/* -- main styles -- */

.nopad {
    padding: 0px;
}

.nopadleft {
    padding-left: 0px;
}

.nopadright {
    padding-right: 0px;
}

strong,
b {
    font-weight: bold;
}

i {
    font-style: italic;
}

em {
    font-style: italic;
}

.clear {
    clear: both;
}

.left {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.right {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 15px;
}

.invi {
    visibility: hidden;
    opacity: 0;
}

.object-fit {
    position: relative;
}

.object-fit>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.object-fit.object-contain>img {
    -o-object-fit: contain;
    object-fit: contain;
}

.object-fit>video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.submitting button,
.submitting input[type="button"] {
    pointer-events: none;
}

/* preloader */
.preloader {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 3px solid hsla(0, 0%, 100%, .3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ccc !important;
    -webkit-animation: a 1s ease-in-out infinite;
    animation: a 1s ease-in-out infinite;
    z-index: 50;
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    float: right;

    display: none;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.grid-container {
    width: 100%;
    max-width: 1290px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
}

.grid-container-md {
    max-width: 1040px;
}

.grid-container-sm {
    max-width: 870px;
}

.dflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.dflex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dflex-between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.dflex-cbetween {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.main-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -ms-flex-line-pack: justify;
    align-content: space-between;
    min-height: 100vh;
}

main {
    width: 100%;
}

footer {
    width: 100%;
    padding: 54px 0;
    background: rgba(237, 236, 237, 1);
}

.footer-left {
    gap: 48px;
}

.footer-logo {
    padding-right: 31px;
}

.footer-logo img {
    max-height: 26px;
}


.footer-title {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.footer-nav ul li:not(:last-child) {
    margin-bottom: 18px;
}

.footer-nav ul li a {
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    color: rgba(65, 64, 71, 1);
    transition: 0.2s;
}

.footer-nav ul li a:hover {
    color: rgba(65, 64, 71, 1);
    opacity: 0.6;
}

.socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -5px;
}

.socials ul li:not(:last-child) {
    margin-right: 11px;
}

.socials ul li a {
    transition: 0.2s;
}

.socials ul li a:hover {
    opacity: 0.6;
}

.home-carousel-section {
    padding: 207px 0 158px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}

.home-carousel.owl-carousel .owl-nav button.owl-next,
.home-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.home-carousel.owl-carousel .owl-nav button.owl-next:before,
.home-carousel.owl-carousel .owl-nav button.owl-prev:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.home-carousel.owl-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.home-carousel.owl-carousel .owl-nav button.owl-next {
    right: 10px;
}

.home-carousel .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

.home-carousel.owl-carousel button.owl-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-carousel.owl-carousel button.owl-dot span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(237, 236, 237, 1);
    margin: 5px;
    transition: 0.2s;
}

.home-carousel.owl-carousel button.owl-dot.active span {
    background: rgba(65, 64, 71, 1);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
    padding: 34px 0 35px;
    background: rgba(237, 236, 237, 1);
}

.logo img {
    max-height: 31px;
}

.home header {
    padding-top: 68px;
    padding-bottom: 0;
    background: transparent;
}

.home .logo {
    text-align: center;
}

.home .logo img {
    max-height: 67px;
}

.single-promo-section {
    padding: 98px 0 98px;
}

.hero-promo-image {
    margin-bottom: 50px;
}

.title-40 {
    font-size: 40px;
    line-height: 1.23;
    margin-bottom: 50px;
}

.single-promo-section .title-40 {
    padding: 0 5%;
}

.promo-steps ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -29px;
    width: calc(100% + 58px);
    margin-bottom: -40px;
}

.promo-steps ul li {
    text-align: center;
    margin: 0 29px 40px;
}

.promo-step-title {
    font-size: 30px;
    line-height: 1.23;
    border-bottom: 2px solid rgba(65, 64, 71, 1);
    padding-bottom: 9px;
    margin-bottom: 11px;
}

.promo-step-text {
    font-size: 22px;
    line-height: 1.23;
    max-width: 185px;
    margin: 0 auto;
    padding: 0 5px;
}

.promo-step-icon {
    height: 185px;
    margin-bottom: 30px;
}

.promo-step-icon img {
    max-height: 100%;
    width: auto;
}

.promo-steps {
    margin-bottom: 70px;
}

.text-18 {
    font-size: 18px;
    line-height: 1.23;
}

.promo-desc {
    max-width: 904px;
    margin: 0 auto 50px;
}

.btn-grey,
.btn-grey:focus,
.btn-grey:active {
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
    background: rgba(65, 64, 71, 1);
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 25px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: 0.2s;
}

.btn-grey:hover {
    background: rgba(237, 236, 237, 1);
    color: rgba(65, 64, 71, 1);
}

.promo-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: -20px;
}

.promo-links ul li {
    margin: 0 20px 20px;
}

.promo-links ul li .btn-grey,
.promo-links ul li .btn-grey:focus,
.promo-links ul li .btn-grey:active {
    min-width: 220px;
}

main {
    position: relative;
    overflow: hidden;
}

.text-page-section {
    padding: 166px 0 100px;
    background: #fff;
    color: rgba(65, 64, 71, 1);
}


.entry p {
    font-size: 18px;
    line-height: 1.23;
    margin-bottom: 22px;
}

.entry ul {
    margin-bottom: 22px;
}

.entry ul li {
    font-size: 18px;
    line-height: 1.23;
    position: relative;
    padding-left: 28px;
}

.entry ul li:before {
    content: '•';
    position: absolute;
    top: 0;
    left: 10px;
}

.entry h2,
.entry h3,
.entry h4 {
    line-height: 1.23;
    font-weight: 700;
    margin-bottom: 24px;
}

.entry h2 {
    font-size: 28px;
}

.entry h3 {
    font-size: 22px;
}

.entry h4 {
    font-size: 18px;
}

.entry h2:not(:first-child),
.entry h3:not(:first-child),
.entry h4:not(:first-child) {
    margin-top: 24px;
}

.entry p:has(img) {
    margin-top: 32px;
    margin-bottom: 32px;
}

.entry a {
    color: #000;
    text-decoration: underline;
}

.entry a:hover {
    color: #000;
    text-decoration: none;
}

.entry>*:last-child {
    margin-bottom: 0;
}

.form-page-section {
    padding: 140px 0 100px;
}

.form-hold-left {
    width: 50%;
    padding-top: 6px;
    padding-right: 5px;
}

.form-hold-right {
    width: 50%;
    padding-left: 55px;
    padding-right: 25px;
}

.form-wrapper {
    position: relative;
}

.form-success-hold {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: rgba(237, 236, 237, 1);
    z-index: 10;
    color: rgba(65, 64, 71, 1);
    font-size: 18px;
    text-align: center;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.form-success-hold.close {
    opacity: 1;
    visibility: visible;
}

.form-wrapper,
.form-wrapper form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.form-element {
    margin-bottom: 14px;
}

.form-element-half {
    width: calc(50% - 7px);
}

.form-element-sm {
    width: calc(25% - 10px);
}

.form-element-full {
    width: 100%;
}

.form-element input,
.form-element input:focus {
    outline: none;
    box-shadow: none;
    margin: 0;
    border: 1px solid rgba(65, 64, 71, 1);
    border-radius: 5px;
    height: 60px;
    font-size: 18px;
    color: #000;
    padding: 2px 29px;
}

.form-element textarea::-webkit-input-placeholder,
.form-element input::-webkit-input-placeholder {
    color: rgba(65, 64, 71, 1);
    opacity: 1;
}

.form-element textarea::-moz-placeholder,
.form-element input::-moz-placeholder {
    color: rgba(65, 64, 71, 1);
    opacity: 1;
}

.form-element textarea:-ms-input-placeholder,
.form-element input:-ms-input-placeholder {
    color: rgba(65, 64, 71, 1);
    opacity: 1;
}

.form-element textarea:-moz-placeholder,
.form-element input:-moz-placeholder {
    color: rgba(65, 64, 71, 1);
    opacity: 1;
}

.form-checkbox {
    margin-top: 18px;
}

.form-checkbox label input {
    display: none;
}

.form-checkbox label span {
    display: block;
    font-size: 18px;
    color: rgba(65, 64, 71, 1);
    line-height: 1.23;
    position: relative;
    cursor: pointer;
    padding-left: 46px;
}

.form-checkbox label span:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(65, 64, 71, 1);
}

.form-checkbox label span:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(65, 64, 71, 1);
    opacity: 0;
}

.form-checkbox label input:checked+span:after {
    opacity: 1;
}

.form-checkbox label span a {
    color: rgba(65, 64, 71, 1);
    text-decoration: underline;
}

.form-checkbox label span a:hover {
    color: rgba(65, 64, 71, 1);
    text-decoration: none;
}

.mw-200,
.mw-200:focus,
.mw-200:active {
    min-width: 200px
}

.form-submit {
    margin-top: 22px;
}

.form-hold-right .title-40 {
    margin-bottom: 30px;
}


.hero-promo-image video {
    width: 100%;
}

.form-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-file>label {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: none;
    border: none;
    cursor: pointer;
    background: #fff;
    color: rgba(65, 64, 71, 1);
    font-size: 18px;
    line-height: 24px;
    padding: 12px 30px;
    border-radius: 25px;
    transition: 0.2s;
    border: 1px solid rgba(65, 64, 71, 1);
    border-radius: 60px;
}

.form-file>label:hover {
    opacity: 0.7;
}

.form-file>label:after {
    content: '';
    width: 26px;
    height: 23px;
    background: url(../img/icon-upload.svg) no-repeat center center;
    margin-left: 15px;
}

.form-file input {
    display: none;
}

.form-file-text {
    padding: 10px 0;
    font-size: 18px;
    line-height: 1.23;
    font-size: 18px;
    color: rgba(65, 64, 71, 1);
    margin-left: 24px;
}

.form-checkbox .wpcf7-list-item {
    margin-left: 0;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
    border: none !important;
    float: left !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    color: #ef586b !important;
}

div.wpcf7-mail-sent-ok {
    float: left !important;
    border: none !important;
    padding: 0 !important;
    margin: 10px 0 !important;
}

span.wpcf7-not-valid-tip {
    display: none !important;
}

span.wpcf7-list-item {
    margin: 0 !important;
}

.form-element input.wpcf7-not-valid,
.form-element input.wpcf7-not-valid:focus,
.form-element textarea.wpcf7-not-valid,
.form-element textarea.wpcf7-not-valid:focus,
.form-element.wpcf7-not-valid.form-file > label {
    border-color: rgba(220, 50, 50, 1);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.form-checkbox .wpcf7-not-valid label span:before {
    border: 1px solid #dc3232;
}

/* Media */
@media only screen and (max-width: 1500px) {
    .home .logo img {
        max-width: 200px;
    }

    .home-carousel-section {
        padding: 140px 0 120px;
    }

    .home header {
        padding-top: 45px;
    }
}

@media only screen and (max-width: 1199px) {

    .form-element input,
    .form-element input:focus {
        padding: 2px 15px;
    }

    .form-hold-right {
        padding-left: 40px;
        padding-right: 0;
    }

    .form-hold-left {
        padding-right: 0;
    }

    .promo-step-icon {
        height: 150px;
    }

    .promo-steps ul {
        margin-left: -20px;
        width: calc(100% + 40px);
    }

    .promo-steps ul li {
        margin: 0px 20px 40px;
    }

    .home-carousel.owl-carousel .owl-nav button.owl-next,
    .home-carousel.owl-carousel .owl-nav button.owl-prev {
        top: calc(50% - 25px);
    }

    .home-carousel .owl-dots {
        margin-top: 26px;
    }

    .home header {
        padding-top: 32px;
    }

    .home .logo img {
        max-width: 155px;
    }

    .home-carousel-section {
        padding: 100px 0 90px;
    }
}

@media only screen and (max-width: 1023px) {
    .form-hold-right {
        padding-left: 0;
        width: 100%;
    }

    .form-hold-left {
        width: 100%;
        padding-top: 0;
        margin-bottom: 40px;
    }

    .promo-links ul li .btn-grey,
    .promo-links ul li .btn-grey:focus,
    .promo-links ul li .btn-grey:active {
        min-width: 200px;
    }

    .title-40 {
        font-size: 32px;
    }

    .footer-grid-item:first-child {
        margin-right: 0;
        width: 100%;
        margin-bottom: 50px;
    }

    .footer-right {
        padding-top: 77px;
    }

    .promo-step-text {
        font-size: 18px;
        max-width: 140px;
        padding: 0;
    }

    .promo-step-title {
        font-size: 24px;
    }

    .promo-step-icon {
        height: 120px;
        margin-bottom: 24px;
    }

    .promo-links ul li {
        margin: 0 10px 20px;
    }
}

@media screen and (max-width:639px) {

    .home-carousel.owl-carousel .owl-nav button.owl-next:before,
    .home-carousel.owl-carousel .owl-nav button.owl-prev:before {
        width: 40px;
        height: 40px;
    }

    .form-element-sm {
        width: calc(50% - 7px);
    }

    .form-element input,
    .form-element input:focus {
        padding: 2px 20px;
        height: 50px;
    }

    .form-element-half {
        width: 100%;
    }

    .form-page-section {
        padding: 74px 0 70px;
    }

    .entry ul li:before {
        left: 0;
    }

    .entry ul li {
        font-size: 16px;
        padding-left: 20px;
    }

    .text-page-section {
        padding: 140px 0 70px;
    }

    .entry p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .text-18 {
        font-size: 16px;
    }

    .promo-links ul li .btn-grey,
    .promo-links ul li .btn-grey:focus,
    .promo-links ul li .btn-grey:active {
        min-width: 240px;
    }

    .promo-links ul li {
        width: 100%;
    }

    .promo-step-title {
        font-size: 22px;
    }

    .promo-steps ul {
        margin-left: -15px;
        width: calc(100% + 30px);
    }

    .promo-steps ul li {
        margin: 0px 15px 40px;
        width: calc(50% - 30px);
        min-width: calc(50% - 30px);
    }

    .promo-step-icon {
        height: 80px;
        margin-bottom: 20px;
    }

    .single-promo-section .title-40 {
        padding: 0;
    }

    .title-40 {
        font-size: 26px;
    }

    .home-carousel.owl-carousel .owl-nav button.owl-next,
    .home-carousel.owl-carousel .owl-nav button.owl-prev {
        top: calc(50% - 22px);
    }

    .home-carousel .owl-dots {
        margin-top: 20px;
    }

    .home-carousel.owl-carousel .owl-nav button.owl-prev {
        left: 5px;
    }

    .home-carousel.owl-carousel .owl-nav button.owl-next {
        right: 5px;
    }

    .home-carousel.owl-carousel .owl-nav button.owl-next svg,
    .home-carousel.owl-carousel .owl-nav button.owl-prev svg {
        height: 21px;
        width: auto;
    }

    .home-carousel-section {
        padding: 74px 0 70px;
    }

    header {
        padding: 24px 0;
    }

    .home header {
        padding-top: 24px;
    }

    .home .logo img {
        max-width: 120px;
    }

    .logo img {
        max-width: 120px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-grid-item:last-child {
        margin-bottom: 0px;
    }

    .entry iframe {
        max-width: 100%;
    }

    .footer-right {
        padding-top: 50px;
        width: 100%;
    }

    .single-promo-section {
        padding: 74px 0 70px;
    }
}