.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.d-block {
    display: block
}

.d-inline-block {
    display: inline-block
}

.d-none {
    display: none
}

.lt {
    text-decoration: line-through
}

.green {
    color: green
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-al-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.f-direction-row-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.full-width {
    width: 100%
}

.full-mw {
    max-width: 100%
}

.w-100 {
    width: 100%
}

.f-w-default {
    font-weight: 400
}

.f-w-500 {
    font-weight: 500
}

a {
    text-decoration: none
}

.is-center {
    text-align: center
}

.center-photo {
    display: block;
    margin: 0 auto
}

.is-left {
    text-align: left
}

.is-right {
    text-align: right
}

.is-justify {
    text-align: justify
}

.b {
    font-weight: bold
}

.i {
    font-style: italic
}

.u {
    text-decoration: underline
}

.through-red-line {
    position: relative;
    display: inline
}

.through-red-line:after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 100%;
    height: 5px;
    background: rgba(255, 0, 0, .6392156863)
}

.has-underline {
    color: #1a2d5c;
    background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(15%, transparent), color-stop(15%, #72AAEC), color-stop(35%, #72AAEC), color-stop(35%, transparent));
    background-image: linear-gradient(to top, transparent 0%, transparent 15%, #72AAEC 15%, #72AAEC 35%, transparent 35%);
    display: inline
}

.p-relative {
    position: relative
}

.uppercase {
    text-transform: uppercase
}

.clear {
    clear: both
}

.contain {
    -o-object-fit: contain;
    object-fit: contain
}

.no-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.ov-hidden {
    overflow: hidden
}

hr {
    border: 0px;
    height: 2px
}

.float-left {
    float: left
}

.float-right {
    float: right
}

.flex-w {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.order-1 {
    -webkit-box-ordinal-group: inherit;
    -ms-flex-order: inherit;
    order: inherit
}

.font-xs {
    font-size: 12px;
    line-height: 22px
}

.font-sm {
    font-size: 15px;
    line-height: 25px
}

.font-default {
    font-size: 18px;
    line-height: 28px
}

.font-md {
    font-size: 23px;
    line-height: 33px
}

.font-lg {
    font-size: 27px;
    line-height: 37px
}

.font-xl {
    font-size: 33px;
    line-height: 43px
}

.font-xxl {
    font-size: 35px;
    line-height: 45px
}

@media screen and (max-width: 700px) {
    .font-xxl {
        font-size: 30px;
        line-height: 40px
    }
}

.bg-dark {
    background: #1c1c1c
}

.bg-white {
    background: #fff
}

.bg-red {
    background: #c00
}

.bg-red hr {
    background: #fff
}

.bg-green {
    background: #208411
}

.bg-primary-dark {
    background: #073014
}

.bg-primary {
    background: #169940
}

.bg-blue {
    background: #e3eff6
}

.bg-light-blue {
    background: #f0f8ff
}

.bg-yellow {
    background: #fff1ae
}

.bg-orange {
    background: #fcb332
}

.bg-orange hr {
    background: #fff
}

.bg-light-blue {
    background: #f0f8ff
}

.bg-light-orange {
    background: #ffefd0
}

.bg-light-green {
    background: rgba(22, 153, 64, .1215686275)
}

.bg-intensive-green {
    background: #469956
}

.bg-light-gray {
    background: #f8f8f8
}

.bg-light-gradient-yellow-blue {
    background: linear-gradient(1deg, #e1e9f1, #fff1ae)
}

.bg-book-1 {
    background: #ecbea2
}

.bg-book-1 hr {
    background: #fff
}

.bg-book-2 {
    background: #659350
}

.bg-book-2 hr {
    background: #fff
}

.color-white {
    color: #fff
}

.color-red {
    color: #c00
}

.color-yellow {
    color: #fabe40
}

.color-green {
    color: #208411
}

.color-blue {
    color: #4266b2
}

.color-orange {
    color: #fcb332
}

.color-black {
    color: #000
}

.color-primary {
    color: #169940
}

.color-gray {
    color: #606060
}

.color-book-1 {
    color: #ecbea2
}

.color-book-2 {
    color: #659350
}

.border-radius-10 {
    border-radius: 10px !important
}

.border-radius-20 {
    border-radius: 20px !important
}

.border-xs {
    border-width: 5px
}

.border-sm {
    border-width: 8px
}

.border-solid {
    border-style: solid
}

.border-red {
    border-color: #c00
}

.border-orange {
    border-color: #fcb332
}

.border-light-orange {
    border-color: #ffefd0
}

.border-book-1 {
    border-color: #ecbea2
}

.border-book-2 {
    border-color: #659350
}

.mw-150 {
    max-width: 150px
}

.mw-200 {
    max-width: 200px
}

.mw-250 {
    max-width: 250px
}

.mw-300 {
    max-width: 300px
}

.mw-350 {
    max-width: 350px
}

.mw-400 {
    max-width: 400px
}

.mw-450 {
    max-width: 450px
}

.mw-500 {
    max-width: 500px
}

.mw-550 {
    max-width: 550px
}

.mw-600 {
    max-width: 600px
}

.mw-650 {
    max-width: 650px
}

.ls-1 {
    letter-spacing: 1px
}

.ls-2 {
    letter-spacing: 2px
}

.ls-3 {
    letter-spacing: 3px
}

.p-10 {
    padding: 10px
}

.p-20 {
    padding: 20px
}

.p-v-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

.p-v-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important
}

.p-v-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important
}

.p-h-10 {
    padding-left: 10px !important;
    padding-right: 10px !important
}

.p-h-20 {
    padding-left: 20px !important;
    padding-right: 20px !important
}

.p-h-30 {
    padding-left: 30px !important;
    padding-right: 30px !important
}

.p-b-0 {
    padding-bottom: 0px !important
}

.p-b-5 {
    padding-bottom: 5px !important
}

.p-b-15 {
    padding-bottom: 15px !important
}

.p-b-20 {
    padding-bottom: 20px !important
}

.p-b-40 {
    padding-bottom: 40px !important
}

.p-b-50 {
    padding-bottom: 50px !important
}

.p-b-60 {
    padding-bottom: 60px !important
}

.p-b-70 {
    padding-bottom: 70px !important
}

.p-t-0 {
    padding-top: 0px !important
}

.p-t-10 {
    padding-top: 10px !important
}

.p-t-15 {
    padding-top: 15px !important
}

.p-t-20 {
    padding-top: 20px !important
}

.p-t-30 {
    padding-top: 30px !important
}

.p-t-40 {
    padding-top: 40px !important
}

.p-t-45 {
    padding-top: 45px !important
}

.p-t-50 {
    padding-top: 50px !important
}

.p-t-70 {
    padding-top: 70px !important
}

.p-r-5 {
    padding-right: 5px !important
}

.p-r-10 {
    padding-right: 10px !important
}

.p-r-15 {
    padding-right: 15px !important
}

.p-r-50 {
    padding-right: 50px !important
}

.p-l-0 {
    padding-left: 0px !important
}

.p-l-5 {
    padding-left: 5px !important
}

.p-l-10 {
    padding-left: 10px !important
}

.p-l-15 {
    padding-left: 15px !important
}

.p-l-20 {
    padding-left: 20px !important
}

.m-t-0 {
    margin-top: 0px
}

.m-t-5 {
    margin-top: 5px !important
}

.m-t-10 {
    margin-top: 10px !important
}

.m-t-15 {
    margin-top: 15px
}

.m-t-20 {
    margin-top: 20px !important
}

.m-t-25 {
    margin-top: 25px
}

.m-t-30 {
    margin-top: 30px !important
}

.m-t-35 {
    margin-top: 35px !important
}

.m-t-40 {
    margin-top: 40px !important
}

.m-t-45 {
    margin-top: 45px !important
}

.m-r-auto {
    margin-right: auto
}

.m-r-0 {
    margin-right: 0px
}

.m-r-5 {
    margin-right: 5px
}

.m-r-10 {
    margin-right: 10px
}

.m-r-15 {
    margin-right: 15px
}

.m-b-0 {
    margin-bottom: 0px
}

.m-b-5 {
    margin-bottom: 5px !important
}

.m-b-10 {
    margin-bottom: 10px
}

.m-b-15 {
    margin-bottom: 15px
}

.m-b-25 {
    margin-bottom: 25px
}

.m-b-40 {
    margin-bottom: 40px !important
}

.m-b-45 {
    margin-bottom: 45px !important
}

.m-b-50 {
    margin-bottom: 50px
}

.m-l-auto {
    margin-left: auto
}

.m-l-0 {
    margin-left: 0px
}

.m-l-5 {
    margin-left: 5px
}

.m-l-10 {
    margin-left: 10px
}

.m-l-15 {
    margin-left: 15px
}

.m-0-auto {
    margin: 0 auto
}

.w-33 {
    width: calc(33.3333% - 5px * 2)
}

.w-50 {
    width: calc(50% - 5px * 2)
}

.w-66 {
    width: calc(66.6666% - 5px * 2)
}

.w-100 {
    width: 100%
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/poppins/thin-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/poppins/thin-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/poppins/light-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/poppins/extralight-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/poppins/light-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/poppins/light-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/poppins/regular-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/poppins/regular-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/poppins/medium-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/poppins/medium-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/poppins/semibold-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/poppins/semibold-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/poppins/bold-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/poppins/bold-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/poppins/black-le.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/poppins/black-l.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

h1 {
    font-size: 35px;
    line-height: 45px
}

h2 {
    font-size: 24px;
    line-height: 34px
}

h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin: 10px 0px
}

@-webkit-keyframes cookieAnimate {
    0% {
        opacity: 0;
        width: 0px;
        height: 0px;
        padding: 0px
    }
    100% {
        opacity: 1;
        width: 35px;
        height: 35px;
        padding: 10px;
        margin: 6px
    }
}

@keyframes cookieAnimate {
    0% {
        opacity: 0;
        width: 0px;
        height: 0px;
        padding: 0px
    }
    100% {
        opacity: 1;
        width: 35px;
        height: 35px;
        padding: 10px;
        margin: 6px
    }
}

@-webkit-keyframes cookieContentAnimate {
    0% {
        position: relative;
        top: -10px;
        opacity: 0
    }
    100% {
        position: relative;
        top: 0px;
        opacity: 1
    }
}

@keyframes cookieContentAnimate {
    0% {
        position: relative;
        top: -10px;
        opacity: 0
    }
    100% {
        position: relative;
        top: 0px;
        opacity: 1
    }
}

body, html {
    margin: 0px;
    padding: 0px;
    font-family: "LatoR", sans-serif;
    background: #fff;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    font-size: 18px
}

h1, h2, h3, h4, h5, h6 {
    color: #000
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.btn, button, input[type=submit] {
    outline: none;
    border: none;
    cursor: pointer;
    padding: 20px 40px;
    border-radius: 10px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.btn:hover, button:hover, input[type=submit]:hover {
    opacity: .8;
    margin: 0 auto
}

.btn-default {
    font-size: 18px
}

.btn-md {
    font-size: 18px
}

.btn-lg {
    font-size: 24px
}

.btn-xl {
    font-size: 33px;
    line-height: 43px
}

.btn-small {
    padding: 10px
}

.buy-now {
    display: block;
    max-width: 430px;
    width: 100%;
    font-size: 24px;
    line-height: 28px;
    text-decoration: none;
    background-color: #61b1c8;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1.25px;
    padding: 10px;
    opacity: .9;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    margin: 15px auto 0px
}

.buy-now:hover {
    opacity: 1;
    border-radius: 5px
}

.hover-underline:hover {
    text-decoration: underline
}

.buy-btn {
    max-width: 440px;
    width: 100%;
    background-color: #4266b2;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    padding: 25px 10px 25px 10px;
    border: none;
    border-radius: 10px;
    letter-spacing: .25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.buy-btn i {
    color: #1a4082;
    font-size: 26px
}

.order-button {
    max-width: 570px;
    width: 100%;
    font-family: "Poppins";
    font-size: 38px;
    line-height: 48px;
    padding: 10px 20px !important;
    border-radius: 10px !important
}

@media screen and (max-width: 700px) {
    .buy-now {
        margin: 0 auto;
        margin-top: 25px
    }
}

@media screen and (max-width: 500px) {
    .order-button {
        font-size: 32px
    }

    .buy-btn {
        font-size: 32px
    }
}

@media screen and (max-width: 380px) {
    .buy-btn {
        font-size: 24px
    }
}

.custom-list {
    text-align: left
}

.custom-list ul {
    list-style-type: none;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 40px
}

.custom-list ul li {
    position: relative;
    padding-left: 40px;
    margin-top: 12px;
    margin-bottom: 12px
}

.custom-list ul li:first-child {
    margin-top: 0px
}

.custom-list ul li:last-child {
    margin-bottom: 0px
}

.custom-list ul li:before {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-size: 18px
}

.custom-list .list-article-dot li:before {
    content: "•";
    width: 30px;
    height: 30px;
    font-weight: 900;
    font-size: 25px;
    color: #2489b0
}

.custom-list .list-check li:before {
    content: "";
    width: 30px;
    height: 30px;
    font-weight: 900;
    font-size: 25px;
    color: green
}

.custom-list .list-check-circle-list li:before {
    content: "";
    width: 30px;
    height: 30px;
    font-weight: 900;
    font-size: 25px;
    color: #259108
}

.custom-list .list-check-circle-fa li:before {
    content: "";
    width: 25px;
    height: 30px;
    font-weight: 400;
    color: #77b611
}

.custom-list .list-check-square li:before {
    content: "";
    width: 25px;
    height: 30px;
    font-weight: 400;
    color: #2489b0
}

.custom-list .list-check-circle-fill-fa li:before {
    content: "";
    width: 25px;
    height: 30px;
    font-weight: 900
}

.custom-list .list-caret-right li:before {
    content: "";
    width: 25px;
    height: 30px;
    font-weight: 900;
    color: #2489b0;
    font-size: 32px
}

.custom-list .list-cross li:before {
    content: "";
    width: 30px;
    height: 30px;
    font-weight: 900;
    font-size: 25px;
    color: #d40000
}

.custom-list .list-hand li:before {
    content: "";
    width: 30px;
    height: 30px;
    font-weight: 900;
    font-size: 25px;
    color: #000
}

.custom-list .list-arrow-orange li:before {
    content: "";
    width: 30px;
    height: 30px;
    font-weight: 900;
    color: #eea84c
}

ul {
    list-style-type: none
}

@media screen and (max-width: 550px) {
    .custom-list {
        padding-left: 0px
    }

    .custom-list ul {
        padding-left: 5px
    }
}

.images {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.images > .img {
    margin: 0px 10px
}

.side-img {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13)
}

.img {
    border-radius: 5px;
    border: 8px solid #fff;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    line-height: 0
}

.img-max-width img {
    width: 100%;
    height: auto
}

.img-right {
    float: right;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px
}

.img-left {
    float: left;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px
}

.img > a {
    display: block;
    position: relative;
    z-index: 100
}

.img > a > img {
    cursor: pointer
}

.img > img, .img > a > img {
    max-width: 100%;
    border-radius: 5px
}

.img.no-frames {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0)
}

@media screen and (max-width: 768px) {
    .img.small-on-mobile {
        max-width: 250px
    }

    img {
        max-width: 100%
    }
}

.frame {
    padding: 25px 25px;
    border-width: 5px;
    border-style: solid;
    border-color: #000
}

.frame-red {
    border-color: #c00
}

.frame-dashed {
    border-style: dashed
}

.thankyou-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: absolute;
    background-image: url(../img/popups/background.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.article-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
    color: #ed2040;
    margin-top: 0px;
    margin-bottom: 20px
}

.four-photos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    row-gap: 30px
}

.four-photos img {
    max-width: 320px;
    width: 100%
}

div.mainContainer {
    width: 720px;
    padding: 0px;
    margin: 0 auto;
    margin-top: 65px;
    margin-bottom: 65px;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: 0px 0px 35px 0px rgba(4, 5, 5, .13);
    max-width: 100%
}

div.sideBoxes {
    width: 100%
}

.sideboxes-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff
}

.thank-title {
    font-size: 36px;
    line-height: 46px;
    color: #4266b2;
    font-weight: bold;
    letter-spacing: .25px
}

.successMsg {
    font-size: 28px;
    line-height: 38px
}

.thank-photo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eff4ff;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.thank-photo {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 100%;
    position: relative;
    top: 20px;
    left: 30px
}

.thank-photo-background {
    display: inline-block
}

.thank-button {
    width: 100%;
    background-color: #4266b2 !important;
    font-size: 30px !important;
    font-weight: 500;
    line-height: 40px !important;
    border-radius: 10px !important
}

.fa-star {
    color: #ffd500;
    -webkit-filter: drop-shadow(-1px 1px 3px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-1px 1px 3px rgba(0, 0, 0, 0.4))
}

.check-box {
    background: #aecab9
}

.dashed-box {
    width: 100%;
    margin: 0 auto;
    border: 3px dashed #2489b0;
    padding: 20px 20px 20px 40px;
    margin-top: 20px
}

.dashed-box ul {
    padding-left: 0px !important
}

.swiper {
    width: 600px;
    height: 300px
}

.number-rates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px
}

.half-flex {
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.half-flex .half-flex-item > img {
    width: 600px;
    border-radius: 100px 0 100px 0
}

.half-flex .second-img {
    max-width: 428px;
    border-radius: inherit !important
}

.guarantee-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px
}

.background-buy {
    position: relative
}

.background-buy:before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(80, 70, 33, 0.2)), to(rgba(80, 70, 33, 0.2))), url("../img/background_order.jpg");
    background: linear-gradient(rgba(80, 70, 33, 0.2), rgba(80, 70, 33, 0.2)), url("../img/background_order.jpg");
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover
}

.half-width {
    width: calc(50% - 20px)
}

.ingredient {
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden
}

.ingredient-content {
    border-left: 1px solid #000;
    padding: 10px;
    width: calc(100% - 400px);
    margin-left: auto
}

.half-width .ingredient-content {
    width: calc(100% - 200px)
}

.ingredient .ingredient-title {
    margin-bottom: 10px;
    margin-top: 0px;
    text-align: center
}

.ingredient .ingredient-description {
    margin-top: 0px
}

.ingredient-img {
    width: 400px;
    height: auto;
    position: relative;
    overflow: hidden
}

.half-width .ingredient-img {
    width: 200px
}

.ingredient-img img {
    position: absolute;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
    margin: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    min-height: 100%
}

.ingredient h4 {
    font-size: 23px;
    margin-bottom: 15px
}

.prod-3-img {
    border-radius: inherit !important;
    max-width: 430px;
    width: 100% !important
}

.product-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px
}

.product-list {
    row-gap: 3px
}

.product-list img {
    border-radius: inherit !important
}

.product-list .product-list-item {
    gap: 20px
}

.third-img {
    width: inherit !important;
    border-radius: inherit !important
}

.buy-now-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 85px
}

.buy-now-wrapper .buy-item {
    width: 485px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px;
    background-color: #fcfbfb;
    border-radius: 0px 100px 0px 100px;
    margin-top: 30px
}

.buy-now-wrapper .buy-item:nth-child(even) {
    border-radius: 100px 0 100px 0
}

.buy-now-wrapper .buy-item:nth-child(even) img {
    border-radius: 80px 0px 80px 0px
}

.buy-now-wrapper .buy-item img {
    border-radius: 0px 80px 0px 80px;
    max-width: 100%
}

.buy-now-wrapper .buy-item .item-price {
    color: #259108;
    font-size: 45px;
    font-weight: 900
}

.buy-now-wrapper .buy-item .product-name {
    font-size: 30px
}

.buy-now-wrapper .buy-item .product-price-font {
    font-size: 35px
}

.add-info {
    font-size: 15px
}

.number-item {
    width: calc(25% - 20px);
    text-align: center;
    min-width: 230px
}

.number-item i {
    font-size: 40px
}

.number-item h2 {
    margin: 15px;
    font-size: 40px;
    font-weight: 400;
    color: #3dce6b
}

.number-item p {
    margin-top: 0px
}

.has-left-icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.has-left-icon i {
    font-size: 3.125rem;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 30px
}

.text-flex-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

.text-flex-boxes .img-right {
    margin-left: auto
}

.custom-block-section-half {
    max-width: 70%
}

.custom-flex-blocks {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: inherit !important;
    -ms-flex-align: inherit !important;
    align-items: inherit !important;
    gap: 50px
}

.custom-flex-blocks-half .flex-block {
    width: calc(50% - 50px);
    background: rgba(255, 255, 255, .1607843137);
    padding: 15px;
    border-radius: 10px
}

.custom-flex-blocks-half .flex-block h3 {
    text-transform: uppercase
}

.custom-flex-blocks-half .flex-block h3, .custom-flex-blocks-half .flex-block p {
    margin-top: 0px;
    margin-bottom: 10px
}

.box {
    position: relative;
    -webkit-box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13)
}

.box ~ .text {
    padding-top: 40px
}

.box-head {
    padding: 35px 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.box-head.has-icon {
    position: relative;
    padding: 35px 20px 55px
}

.box-head.has-icon ~ .box-body {
    padding-top: 30px
}

.box-head.has-icon span.icon-border {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -40px;
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 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
}

.box-head.has-icon span.icon {
    border-width: 2x;
    width: 70px;
    height: 70px;
    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;
    left: 0px;
    right: 0px;
    bottom: -40px;
    margin: auto;
    border-radius: 50%;
    font-size: 33px
}

.box-head h2, .box-head h3 {
    margin-top: 0px;
    margin-bottom: 0px
}

.box-secondary-headline {
    border-radius: 10px
}

.box .head-small {
    padding: 5px
}

.box-body {
    padding: 20px 35px;
    padding-bottom: 40px
}

.bordered-arrow {
    padding-bottom: 40px
}

.arrow {
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    top: 10px
}

.arrow-down {
    border-left-width: 130px;
    border-left-color: rgba(0, 0, 0, 0);
    border-right-width: 130px;
    border-right-color: rgba(0, 0, 0, 0);
    border-top-width: 60px;
    border-bottom-color: rgba(0, 0, 0, 0);
    left: 0px;
    right: 0px;
    margin: auto
}

.guarantees {
    padding: 15px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    -webkit-box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13)
}

.guarantees h2 {
    margin: 20px 0px
}

.guarantees p {
    margin: 10px 0px !important
}

.ebook-box {
    background: #fff;
    -webkit-box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px
}

.ebook-box-header {
    padding: 20px;
    background: #469956;
    color: #fff;
    text-align: center
}

.ebook-box-content {
    margin-right: 30px;
    margin-top: 40px
}

.ebook-box-content p {
    margin-left: 20px
}

.ebook-box-img {
    max-width: 50%
}

.ebook-box-img img {
    width: 100%
}

.ebook-box .book-ribbon {
    position: relative;
    background: linear-gradient(45deg, #4e9484, #88ca6f);
    overflow: hidden;
    display: inline-block;
    padding: 15px 100px 15px 15px;
    font-weight: bold;
    font-size: 22px
}

.ebook-box .book-ribbon:after {
    content: "";
    background: #fff;
    width: 100px;
    height: 100px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    bottom: 0px;
    right: -50px;
    margin: auto
}

@media screen and (max-width: 1300px) {
    .ways-item br {
        display: none
    }
}

@media screen and (max-width: 1200px) {
    .custom-block-section-half {
        max-width: 60%
    }

    .custom-flex-blocks-half .flex-block {
        width: 100%
    }

    .second-img {
        width: inherit !important;
        max-width: 390px !important
    }
}

@media screen and (max-width: 990px) {
    .section-blocks-center {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .boxes.multiple-col .box {
        max-width: 600px;
        width: 100%
    }

    .custom-block-section-half {
        max-width: 100%;
        text-align: center
    }

    .custom-flex-blocks-half .flex-block {
        width: 100%
    }

    .boxes.multiple-col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .buy-now-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .buy-now-wrapper .buy-item {
        max-width: 485px;
        width: 100%
    }

    .ingredient.half-width {
        width: 100%
    }

    .ingredient.half-width .ingredient-img {
        width: 400px
    }
}

@media screen and (max-width: 950px) {
    .guarantee-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media screen and (max-width: 860px) {
    .header-prod {
        min-width: initial !important;
        width: 100% !important
    }

    .benefits-list .benefit-item {
        width: 100%;
        max-width: 600px
    }

    .second-img {
        width: 100% !important;
        max-width: 330px !important
    }

    .third-img {
        max-width: 330px !important
    }

    .gift-img {
        max-width: 280px
    }

    .text-flex-boxes {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .text-flex-boxes .img-right {
        margin-right: auto
    }

    .product-list {
        padding-left: 0 !important
    }

    .mobile-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .mobile-text-align {
        text-align: left !important
    }

    .padding-r-reset {
        padding-right: 0 !important
    }

    .reverse-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .product-flex {
        gap: 20px
    }

    .ingredient .ingredient-img {
        width: 200px !important
    }
}

@media screen and (max-width: 800px) {
    .ways-item {
        width: inherit !important
    }

    .add-info {
        padding-top: 0 !important
    }
}

@media screen and (max-width: 768px) {
    .multiple-col {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .multiple-col .box {
        max-width: 575px;
        width: 100% !important
    }

    .ebook-box-content {
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        margin-right: 0px
    }

    .ebook-box-content .ebook-box-img {
        float: none;
        width: 100%;
        margin-top: 20px;
        max-width: 100%
    }

    .ebook-box-content .ebook-box-img .book-ribbon {
        padding: 15px;
        display: block;
        border-radius: 10px
    }

    .ebook-box-content .ebook-box-img .book-ribbon::after {
        content: none
    }

    .ebook-box-content .ebook-box-img img {
        max-width: 400px
    }
}

@media screen and (max-width: 550px) {
    .dashed-box {
        padding: 20px
    }

    .product-list {
        -webkit-box-align: left !important;
        -ms-flex-align: left !important;
        align-items: left !important
    }

    .padding-reset-resp {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .box-body {
        padding: 10px 10px;
        padding-top: 0px
    }

    .box-body h3 {
        margin-top: 5px;
        margin-bottom: 5px
    }

    .buy-item {
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    .buy-item .product-name {
        font-size: 25px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        margin-top: 0px !important;
        margin-bottom: 0 !important
    }

    .buy-item .item-price {
        padding-bottom: 10px !important
    }

    .buy-item .product-price-font {
        margin-top: 15px !important;
        font-size: 30px !important
    }
}

@media screen and (max-width: 450px) {
    .gift-img {
        max-width: 100%
    }

    .mobile-column {
        text-align: center
    }
}

.order-background {
    z-index: 1;
    position: relative
}

.order-background:after {
    content: "";
    background: url(../img/popups/background.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: fixed;
    z-index: -1
}

.over-form p {
    font-size: 17px;
    margin: 5px
}

.over-form h3 {
    margin-top: 5px
}

.errors2-title {
    text-align: center;
    margin-bottom: 2px;
    font-weight: bold
}

.errors2 {
    background: #ffe5e5;
    text-align: center;
    border: 1px solid #c00;
    max-width: 400px;
    margin: 10px auto 20px;
    padding: 10px
}

.errors2 p {
    margin: 0px;
    font-size: 16px;
    line-height: 29px
}

.order-box {
    padding: 40px 75px;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: 0px 0px 35px 0px rgba(4, 5, 5, .13);
    background-color: #fff;
    padding-bottom: 0px
}

.formGroup-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.formGroup-half .form-group {
    width: 50%
}

.formGroup-3-1 .form-group:first-child {
    width: 70%
}

.formGroup-3-1 .form-group:last-child {
    width: 30%
}

.purchase-sum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.sum-products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.sum-product-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #b4c9f4;
    border-radius: 10px;
    max-width: 90px;
    width: 100%
}

.sum-product-img:after {
    content: "1";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #4266b2;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.sum-product-img img {
    max-width: 43px;
    width: 100%;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px
}

h2.order-title {
    text-transform: uppercase;
    color: #ed2024;
    margin-top: 0px;
    font-weight: bold;
    font-size: 25px
}

.verified > i {
    display: inline-block;
    background: url(../img/verified.png) no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px
}

.verified {
    font-size: 16px
}

.radioGroup {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.order-box p {
    font-size: 18px
}

@media screen and (max-width: 700px) {
    .formGroup-half, .formGroup-3-1 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0px !important
    }

    .form-group {
        width: 100%
    }

    .form-group:first-child {
        width: 100% !important
    }

    .form-group:last-child {
        width: 100% !important
    }

    .order-box {
        padding: 20px 20px
    }
}

@media screen and (max-width: 500px) {
    .sum-product-img {
        max-width: inherit
    }

    .flex-w {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .sum-product-prices {
        padding-left: 0 !important
    }

    .label-150w {
        max-width: 150px !important
    }

    .border {
        border-bottom: 1px dashed
    }

    .responsive-m-b {
        margin-bottom: auto
    }
}

.popupBox {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5490196078);
    z-index: 100000;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000
}

.popupContent {
    width: 750px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 10px #000;
    box-shadow: 0px 0px 10px #000;
    max-width: 750px
}

span.closePopup {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer
}

.popupLeftText {
    width: 100%;
    background: rgba(255, 255, 255, .6);
    position: relative
}

.popupProduct {
    position: absolute;
    right: 20px;
    bottom: 0px;
    width: 220px;
    height: auto;
    top: 0px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.popupProduct img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.popupText span.otherStyle {
    padding: 3px 10px
}

.popupText {
    font-family: "Roboto", sans-serif
}

.popupText h3 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 700;
    text-align: center;
    padding-top: 0px
}

.popupText span.otherStyle {
    font-size: inherit
}

.popupText span.text {
    font-size: 22px
}

.popupText input, .popupText a.promo, .popupText button.promo {
    width: 100%
}

.popupText a.defaultBtn.promo {
    margin: 0px;
    text-decoration: none;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000
}

.popupText a.defaultBtn {
    text-align: center;
    display: block;
    width: 100%;
    text-decoration: none;
    color: rgba(68, 114, 196, .7098039216)
}

.priceDiscPopup {
    position: absolute;
    background: #28a745;
    border-radius: 50%;
    padding: 41px 7px;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    top: -7px;
    -webkit-transform: rotate(-17deg);
    transform: rotate(-17deg);
    left: -13px
}

span.otherStyle {
    background: #f9cb37;
    padding: 5px 10px;
    font-weight: 900;
    margin-top: 10px;
    display: inline-block;
    color: #000
}

.promo, .popupText button.promo {
    background: #28a745;
    padding: 15px 25px;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    font-size: 26px;
    line-height: 33px;
    font-weight: 500;
    text-align: center;
    margin: 20px auto
}

@media screen and (max-width: 800px) {
    .popupBox-img.popup_01 {
        position: absolute;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: -1;
        opacity: .15
    }

    .popupBox {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .popupBox-content {
        padding-left: 0px;
        margin-right: 0px;
        margin-top: 15px;
        text-align: center
    }
}

@media screen and (max-width: 700px) {
    .popupContent {
        width: 95% !important
    }

    .mainPopupTextCont {
        width: 100% !important
    }

    .popupProduct {
        display: none
    }
}

.section-center.rules-section {
    width: 1000px;
    max-width: 100%;
    overflow-wrap: break-word
}

.section-center.rules-section .rules p {
    font-size: 18px;
    line-height: 28px
}

.section-center.rules-section .rules ul {
    list-style-type: initial;
    padding-left: 20px
}

.section-center.rules-section .rules ul li {
    margin: 5px 0px
}

.opinions-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.opinions-list .btn {
    background: #ffa900;
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 35px
}

.opinions-list > div:last-child {
    margin-bottom: 20px
}

.opinion-content p {
    font-weight: 400;
    line-height: 28px;
    font-size: 18px
}

.opinion-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
    background: #fff1ae;
    padding: 20px
}

.opinion-item .opinion-content {
    width: calc(100% - 280px)
}

@media screen and (max-width: 768px) {
    .opinions-list .btn {
        font-size: 22px;
        line-height: 30px
    }

    .opinion-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px
    }

    .opinion-item .img {
        width: auto
    }

    .opinion-item .opinion-content {
        width: 100%;
        text-align: center
    }
}

.section-center-product {
    margin-top: 70px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px
}

.section-center-product .product-presentation {
    position: relative
}

.section-center-product .product-presentation:before {
    content: "";
    position: absolute;
    background-image: url(../img/ellips_shape.png);
    width: 578px;
    height: 578px;
    background-repeat: no-repeat;
    z-index: -1;
    left: -50%;
    right: -50%;
    margin: auto;
    top: -20px
}

.section-center-product .product-details-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0px
}

.section-center-product .product-details-item p {
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 16px
}

.section-center-product .product-details-item .product-item-content {
    width: calc(100% - 100px)
}

.section-center-product .product-details-item .title {
    font-weight: bold;
    font-size: 18px;
    color: #062a4d
}

.section-center-product .product-details-item .product-item-icon {
    width: 80px;
    height: 80px;
    font-size: 24px;
    border-radius: 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;
    border: 2px dashed #062a4d;
    color: #062a4d
}

.section-center-product .product-details {
    position: relative;
    z-index: 1
}

.section-center-product .product-details:first-child .product-details-item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.section-center-product .product-details:first-child .product-item-content {
    text-align: right
}

@media screen and (max-width: 1200px) {
    .section-center-product {
        gap: 20px;
        margin-top: 20px
    }

    .section-center-product .product-presentation {
        position: absolute;
        display: none;
        bottom: 40px;
        z-index: 0;
        opacity: .1
    }

    .section-center-product .product-presentation:before {
        display: none
    }
}

@media screen and (max-width: 768px) {
    .section-center-product {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .section-center-product .product-details {
        width: 100%
    }

    .section-center-product .product-details-item {
        gap: 10px !important;
        margin: 50px 0px
    }

    .section-center-product .product-details-item:first-child {
        margin-top: 0px
    }

    .section-center-product .product-details-item:last-child {
        margin-bottom: 30px
    }

    .section-center-product .product-details .product-details-item {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center
    }

    .section-center-product .product-details:last-child .product-details-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .section-center-product .product-details .product-item-content {
        text-align: center !important
    }
}

.ingredients-list {
    max-width: 1080px;
    margin: 0 auto
}

.ingredients-list, .benefits-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
    -webkit-box-align: initial !important;
    -ms-flex-align: initial !important;
    align-items: initial !important
}

.ingredient-item {
    width: 30%;
    min-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    background: #fff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13);
    box-shadow: -0.872px 9.962px 35px 0px rgba(4, 5, 5, .13)
}

.ingredient-item img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 230px;
    border-bottom: 3px solid #ccc
}

.ingredient-item h3 {
    margin-bottom: 0px;
    padding: 0px 20px
}

.ingredient-item p {
    margin-top: 10px;
    padding: 20px
}

.benefit-item {
    width: calc(50% - 30px);
    min-width: 300px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    background: #fff;
    padding: 25px 15px;
    -webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, .08);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, .08)
}

.benefit-item i {
    color: #169940;
    font-size: 40px
}

.benefit-item h3 {
    margin-bottom: 0px
}

.benefit-item p {
    margin-top: 10px
}

@media screen and (max-width: 680px) {
    .ingredients-list .ingredient-item, .benefits-list .benefit-item {
        width: 100%
    }
}

.closeCookieBox {
    opacity: 0
}

.cookieBox {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    max-width: 100%;
    text-align: center;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    z-index: 1000
}

.cookieBox.display {
    display: block
}

.cookieBox.display.closeCookieBox {
    display: none
}

.cookieBox .cookieBoxContent {
    background: rgba(0, 0, 0, .7607843137)
}

.cookieBox .cookieBoxContent {
    color: #fff;
    padding: 20px;
    font-size: 12px;
    line-height: 22px;
    -webkit-animation: cookieContentAnimate .5s 1 .4s;
    animation: cookieContentAnimate .5s 1 .4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    position: relative;
    -webkit-transition: 1s linear;
    transition: 1s linear;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.cookieBox .cookieBoxContent p {
    padding: 0px;
    margin: 0px;
    font-size: 12px
}

.cookieBox .cookieBoxContent p:first-child {
    width: calc(100% - 190px)
}

.cookieBox .cookieBoxContent p:last-child {
    margin-left: auto
}

.cookieBox .cookieBoxContent a.readMore {
    color: #0d8d36
}

.cookieBox .cookieBoxContent a.readMore:hover {
    text-decoration: underline
}

.cookieBox .cookieBoxContent a.closeCookies {
    background: #169940;
    padding: 7px 20px;
    border-radius: 5px;
    color: #fff
}

@media screen and (max-width: 800px) {
    .cookieBox .cookieBoxContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .cookieBox .cookieBoxContent p:first-child {
        width: 100%
    }

    .cookieBox .cookieBoxContent p:last-child {
        margin-left: 0px;
        margin-top: 20px
    }
}

.order-section {
    padding: 20px 15px
}

div.form {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center
}

div.buyForm.main-site div.form {
    margin-left: auto;
    padding: 15px 30px
}

div.buyForm.main-site div.form h2.order-title {
    text-transform: uppercase;
    color: red;
    letter-spacing: 0px;
    font-family: "LatoBo";
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-weight: bold
}

.verified {
    color: #166534;
    font-size: 12px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 10px;
    padding-top: 5px
}

.verified span {
    margin-right: 5px;
    padding: 5px 8px;
    border-radius: 15px;
    background-color: #dcfce7
}

.verified span i {
    margin-right: 5px
}

.regulationsBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.regulationsBox label {
    padding-left: 15px
}

.regulationsBox label a {
    color: #000
}

.regulationsBox input[type=checkbox] {
    width: 23px;
    height: 23px;
    border-radius: 5px;
    -webkit-appearance: none
}

.regulationsBox input[type=checkbox]:checked {
    background-color: #3b82f6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
    background-position: center;
    border: 1px solid #3b82f6 !important
}

.under-regulations-text {
    color: #787878;
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
    padding-left: 43px
}

.under-regulations-text a {
    color: #787878
}

.formGroup-half, .formGroup-3-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.formGroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5px 0px
}

.formGroup-half .formGroup {
    width: 50%
}

label {
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding-left: 5px
}

.formContent {
    width: 100%
}

.formContent input {
    width: 100%
}

input, select {
    border: 1px solid #b1aeaf !important;
    font-size: 15px;
    padding: 8px 10px;
    background: #fff;
    outline: none;
    border: 1px solid #b1b1b1;
    border-radius: 10px
}

.formGroup-3-1.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

input:last-of-type {
    margin-right: 0px
}

.formGroup-3-1 .formGroup:first-child {
    width: 70%
}

.formGroup-3-1 .formGroup:last-child {
    width: 30%
}

.col-sm-1 {
    width: 100%
}

select {
    padding: 8px 10px;
    background: #fff;
    outline: none;
    border: 1px solid #b1b1b1;
    border-radius: 10px
}

.radio-flex {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    gap: 3px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    padding-bottom: 15px;
    padding-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.radio-flex .radioGroup {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.summary p {
    font-size: 18px !important;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left
}

.pullLeft {
    float: left
}

.buyForm {
    /*padding-bottom: 20px*/
}

.radioGroup label {
    width: 100%;
    margin-left: 10px
}

div.form input[type=submit] {
    width: 100%;
    background: #166534;
    font-weight: bold;
    color: #fff;
    border: inherit !important
}

input[type=submit] {
    margin: 0 auto;
    display: inline-block;
    border: none;
    padding: 10px 40px;
    font-size: 25px
}

.form-icons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.form-icons img {
    width: initial !important
}

.form-icons .form-single-icon {
    max-height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 15px
}

.product-price {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 35px
}

.product-price .old-price {
    text-decoration: line-through
}

.product-price .new-price {
    font-weight: bold
}

.product-price span {
    margin: 15px
}

.product-price i {
    color: #c00
}

@media screen and (max-width: 700px) {
    .formGroup-half, .formGroup-3-1 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0px
    }

    .formContent {
        width: 100%
    }

    .form-group {
        display: block
    }

    .formGroup-half .formGroup {
        width: 100%
    }

    .formGroup-3-1 .formGroup:first-child, .formGroup-3-1 .formGroup:last-child {
        width: 100%
    }
}

@media screen and (max-width: 500px) {
    div.buyForm.main-site div.form {
        padding: 15px 5px
    }

    .order-background {
        padding-left: 0px !important;
        padding-right: 0px !important
    }
}

.bg-header {
    background: url("../img/background_header.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.bg-header:before, .bg-header:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin: auto;
    z-index: -1
}

.bg-header:before {
    width: 100%;
    background: rgba(239, 243, 255, .8);
    top: 0px;
    height: 100%
}

.header, .section-box {
    width: 100%;
    max-width: 1050px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px
}

.header .header-title, .section-box .header-title {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    background-color: #61b1c8;
    text-align: center;
    width: 100%;
    padding: 23px 10px
}

.header .header-content, .section-box .header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 190px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.header .header-content .header-text, .section-box .header-content .header-text {
    max-width: 440px
}

.header .header-content .header-text h2, .section-box .header-content .header-text h2 {
    font-size: 22px;
    line-height: 28px
}

.header .header-content img, .section-box .header-content img {
    max-width: 220px;
    width: 100%
}

.header h2.font-xxl, .section-box h2.font-xxl {
    font-size: 35px;
    line-height: 45px;
    margin-top: 0px
}

.header sup, .section-box sup {
    font-size: 14px
}

.section-box {
    padding-left: 20px;
    padding-right: 20px
}

.product-image {
    display: none;
    max-width: 160px
}

.adversite-info {
    display: block;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.6875rem;
    color: #808081;
    font-weight: bold;
    padding-bottom: 15px
}

.header {
    text-align: left;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px
}

.header-list {
    padding-left: 15px;
    text-align: left
}

.header-list li {
    padding-bottom: 5px;
    padding-left: 40px;
    position: relative
}

.header-list li::before {
    content: "•";
    color: #61b1c8;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.header-list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0px
}

.header-list-item p {
    line-height: 1.4
}

.list-img {
    line-height: 0;
    width: 25px;
    max-height: 24px;
    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
}

@media screen and (max-width: 1200px) {
    .header h2.font-xxl, .section-box h2.font-xxl {
        font-size: 35px;
        line-height: 45px
    }

    .couple-img {
        width: 400px !important
    }
}

@media screen and (max-width: 950px) {
    .header .header-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .bg-header {
        background-position: right
    }

    .bg-header::before {
        background: rgba(255, 255, 255, .7607843137);
        right: 0px;
        width: 100%
    }

    .couple-img {
        width: 350px !important
    }
}

@media screen and (max-width: 700px) {
    .header-content .buy-now {
        margin-left: auto;
        margin-right: auto
    }

    .header-center {
        width: 100%
    }

    .product-image {
        display: block;
        margin: 0 auto
    }

    .bg-header {
        padding: 15px 15px !important
    }

    .header {
        padding-left: 0px;
        padding-right: 0px
    }
}

.section {
    padding: 10px 15px;
    z-index: 10 !important;
    position: relative
}

.section-center {
    margin: 0 auto;
    width: 1000px;
    max-width: 100%
}

.section-bg {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    overflow: hidden
}

.section-img-bg {
    z-index: -1;
    position: relative
}

.section-img > .bg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    width: 100%;
    min-height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    opacity: .1
}

.section-img > .bg-01 {
    background-image: url("../img/bg/sec-bg-01.jpg")
}

.section-img > .bg-02 {
    background-image: url("https://images.unsplash.com/photo-1568391712865-ee6b14e4a8ef?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=711&q=80")
}

.section-img > .bg-03 {
    background-image: url("https://images.unsplash.com/photo-1442528010304-834a5d4f3925?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=736&q=80");
    opacity: .2
}

.section-img > .bg-04 {
    background-image: url("../img/bg/bg_04.avif");
    opacity: .2
}

.section.comparison {
    background: -webkit-gradient(linear, left top, right top, from(rgba(152, 70, 70, 0.4)), color-stop(25%, rgba(152, 70, 70, 0.1)), color-stop(45%, rgba(152, 70, 70, 0.4)), color-stop(55%, rgba(70, 152, 86, 0.4)), color-stop(75%, rgba(70, 152, 86, 0.1)), to(rgba(70, 152, 86, 0.4)));
    background: linear-gradient(90deg, rgba(152, 70, 70, 0.4) 0%, rgba(152, 70, 70, 0.1) 25%, rgba(152, 70, 70, 0.4) 45%, rgba(70, 152, 86, 0.4) 55%, rgba(70, 152, 86, 0.1) 75%, rgba(70, 152, 86, 0.4) 100%)
}

.custom-section-01 .text {
    max-width: 1100px
}

.custom-section-01 .img {
    position: absolute;
    right: 30vh;
    bottom: -10px
}

.custom-section-01 .img img {
    width: 280px
}

@media screen and (max-width: 1500px) {
    .custom-section-01 .text {
        max-width: 900px
    }

    .custom-section-01 .img {
        right: 5vh
    }
}

@media screen and (max-width: 1200px) {
    .custom-section-01 .text {
        max-width: 700px
    }

    .custom-section-01 .img {
        right: 0vh
    }

    .custom-section-01 .img img {
        width: 330px
    }

    .section-chart {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    .section-chart img.chart {
        max-width: 100%
    }
}

@media screen and (max-width: 1000px) {
    .custom-section-01 .text {
        max-width: 700px
    }

    .custom-section-01 .img {
        right: 0vh;
        opacity: .1
    }

    .custom-section-01 .img img {
        max-width: 330px !important;
        width: 330px !important
    }
}

footer {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    text-align: center;
    font-size: 12px !important;
    line-height: 22px;
    color: #000;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px
}

footer p {
    font-size: 12px !important;
    line-height: 22px
}

footer .footer-menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

footer .footer-menu > a {
    margin: 10px;
    color: #000
}

.source {
    font-size: 17px;
    line-height: 27px
}

.source span {
    display: block
}

.source a {
    word-wrap: break-word;
    color: #000
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 33px;
        line-height: 43px
    }

    .images {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .images > .img {
        width: 80%;
        max-width: 80% !important;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto
    }

    .images > .img img {
        width: 100%
    }

    .img {
        float: none !important;
        margin: 10px auto !important
    }
}

@media screen and (max-width: 700px) {
    .effect-info {
        text-align: center
    }

    .form-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .form-group.selection-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .form-group label {
        width: auto;
        margin-bottom: 5px
    }

    .form-group .form-control {
        width: 100%
    }
}

@media screen and (max-width: 450px) {
    .images > .img {
        width: 100%;
        max-width: 100% !important
    }

    .img {
        max-width: 100% !important;
        width: 100%
    }

    form .multiple-fields {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    form .multiple-fields input {
        width: 100% !important
    }

    form .multiple-fields input:first-child {
        margin-bottom: 5px
    }
}
.name-link,
.name-link:hover{
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

/*# sourceMappingURL=styles.min.css.map */