@media (min-width: 1365px){
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1300px;
    }
}
.delay-1s{
    animation-delay: 1s;
}
.delay-2s{
    animation-delay: 2s;
}
.delay-3s{
    animation-delay: 3s;
}
.home p{
    font-size: clamp(16px, 1.1vw, 17px);
    line-height: 176%;
    color: #071530;
}
:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 60px #fff inset!important;
}
:focus{
    outline: none!important;
    box-shadow: none!important;
    border: none!important;
}

.pad-box{
    padding-top: 15vh;
    padding-bottom: 15vh;
}
/*preloader*/
.background {
    -webkit-filter: url("#goo");
    filter: url("#goo");
    width: 100vw;
    height: 100vh;
    position: relative;
}

.loader {
    -webkit-filter: url("#goo");
    filter: url("#goo");
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: calc(50% - 4rem / 2);
    left: calc(50% - 4rem / 2);
    background: #2E86FF;
    border-radius: 50%;
}

.loader-left {
    -webkit-animation: rotateLeft 2s cubic-bezier(0.35, 0, 0.25, 1) infinite, color 2s cubic-bezier(0.35, 0, 0.25, 1) infinite;
    animation: rotateLeft 2s cubic-bezier(0.35, 0, 0.25, 1) infinite, color 2s cubic-bezier(0.35, 0, 0.25, 1) infinite;
}

.loader-right {
    -webkit-animation: rotateRight 2s cubic-bezier(0.35, 0, 0.25, 1) infinite, color 2s cubic-bezier(0.35, 0, 0.25, 1) infinite;
    animation: rotateRight 2s cubic-bezier(0.35, 0, 0.25, 1) infinite, color 2s cubic-bezier(0.35, 0, 0.25, 1) infinite;
}

@-webkit-keyframes rotateLeft {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: -50% -50%;
        transform-origin: -50% -50%;
    }
}

@keyframes rotateLeft {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: -50% -50%;
        transform-origin: -50% -50%;
    }
}
@-webkit-keyframes rotateRight {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 150% 150%;
        transform-origin: 150% 150%;
    }
}
@keyframes rotateRight {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 150% 150%;
        transform-origin: 150% 150%;
    }
}
@-webkit-keyframes color {
    0% {
        background: #ec8e3c;
    }
    50% {
        background: #0099A9;
    }
    100% {
        background:#F7872E;
    }
}
@keyframes color {
    0% {
        background: #ec8e3c;
    }
    50% {
        background: #0099A9;
    }
    100% {
        background:#F7872E;
    }
}
.header{
    position: fixed;
    width: 100%;
    z-index: 999;
}

.home .item-slider{
    background-size: 50%;
    background-position: top right;
    background-repeat: no-repeat;
}
.nav > li:not(:last-child):after{
    content: '';
    height: 2px;
    position: absolute;
    left:0;
    bottom:0;
    background:#F7872E;
    width: 0;
    transition: .6s all linear;
}
.nav > li:hover:after{
    width: 100%;
}
.nav-link {
    padding: .7rem 1rem;
}
.dropdown-menu{
    padding: 0;
}
.dropdown-menu li a{
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav-item,
.dropdown-submenu{
    position: relative;
}
.dropdown-item {
    padding: 1rem 1.5rem;
}
.dropdown > .dropdown-toggle::after {
    content: '';
    border: none;
    background: url(/web/img/caret.svg) no-repeat center/contain;
    width: 10px;
    height: 6px;
    position: relative;
    top: 2px;
    transition: .4s;
}
.dropdown:hover > .dropdown-toggle::after {
    background: url(/web/img/caret-orange.svg) no-repeat center/contain;
    transform: rotate(180deg);
}
.dropdown:hover > .dropdown-submenu{
    position: absolute;
    left: 150px;
    list-style-type: none;
    background: #fff;
    padding: 0;
    width: 100%;
    max-width: 250px;
    min-width: 155px;
    top: 0;
    display: none;
    transition: .1s all linear;
    z-index:-1;
}
.dropdown:hover > .dropdown-submenu{
    display: block;
    left: 174px;
    z-index: 2;
    top: -1px;
}

.registration-link a.nav-link:hover,
.button,
.dropdown-submenu.open > a{
    background:#F7872E!important;
}
.dropdown-submenu a{
    padding: 1rem;
    display: block;
}

.registration-link a.nav-link,
.button{
     border-radius: 100px;
     font-weight: 600;
     font-size: 16px;
     line-height: 24px;
     text-transform: uppercase;
     color: #FFFFFF;
    min-width: 266px;
     text-align: center;
     padding: 12px 20px;
    display: inline-block;
     transition: .4s;
    border: none;
 }

.navbar-nav > .registration-link.active > a.nav-link{
    display: none;
}
.navbar-nav  .nav-item{
    margin: 0 10px;
}
.registration-link a.nav-link {
    background: #0099A9;
    margin-left: 30px;
    min-width: 180px;
}
.registration-link a.nav-link:hover{
    color: #ffffff!important;
}
.button:hover{
    background: #0099A9!important;
    color: #FFFFFF;
}
.navbar-toggler-icon i {
    background-color: #0099A9;
}
.home h1, .home.h1{
    font-weight: bold;
    font-size:clamp(50px, 5vw, 85px);
    line-height:  106%;
    color: #071530;
    position: relative;
}
.home h2, .home .h2 {
    font-weight: bold;
    font-size: clamp(30px, 3vw, 60px);
    line-height:  146%;
    color: #071530;
    position: relative;
}
.home .h2 > span.light{
    font-weight: 300;
}
.home h3{
    font-weight: bold;
    font-size:  clamp(25px, 2.5vw, 55px);
    line-height: 173%;
    color: #071530;
    position: relative;
}
.home h3:before,
.register-page h1:before,
.raffle-page h1:before,
.home h1:before, .home .h1:before,
.home h2:before, .home .h2:before {
    content: '';
    background:#F7872E;
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    top: -30px;
    left: 0;
    transition: .5s;
}
.home h3.is-visible:before,
.raffle-page h1.is-visible:before,
.register-page h1.is-visible:before,
.home h1.is-visible:before, .home .h1.is-visible:before,
.home h2.is-visible:before, .home .h2.is-visible:before {
    width: 109px;
}
.register-page h1{
    font-weight: bold;
    font-size: clamp(25px, 3vw, 45px);
    line-height: 129%;
    color: #071530;

}
.register-page{
    padding-top: 100px;
    background: url("/web/img/register-bg.png") no-repeat 0 70px/cover;
}

.grand-title{
    margin-bottom: 60px;
    /*overflow: hidden;*/
    display: inline-block;
    min-height: 65px;
}
#about-us {
    min-height: 500px;
    background: url("/web/img/group-violet.svg") no-repeat left top/50%;
    position: relative;
}
#about-us .row{
    align-items: center;
    justify-content: flex-end;
}
.value-item{
    display: flex;
    align-items: center;
}
.value-item p{
    font-weight: 500;
    font-size: 23px;
    line-height: 130%;
    color: #071530;
    margin-bottom: 0;
    margin-left: 20px;
    max-width: 160px;
}
#segments{
    background: #F2FBFB;
}
.segment-items{
   display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    width: 100%;
    gap: 50px;
    padding: 50px 0;
    position: relative;
    z-index: 3;
}

.segment-item{
    cursor: pointer;
    position: relative;
    border: 2px dashed #16A3B2;
    border-radius: 50%;
    overflow: hidden;
    max-width: 380px;
    min-width: 327px;
}

.segment-item .about-box{
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.front,
.back{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    min-height: 320px;
    height: auto;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.front img, .back img{
    border-radius: 50%;
}
.front:after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.segment-item .about-box:hover .front,
.segment-item .about-box:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.back__layer{
    /*position: absolute;*/
    /*z-index:1;*/
    /*left:0;*/
    /*right:0;*/
    /*top:0;*/
    /*bottom: 0;*/
    /*background: rgba(255,255,255,0.7);*/
}
.inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    right: 0;
    padding: 1rem!important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 5;
}
.baby{
    background-image: url("/web/img/baby-and-toys.jpg")!important;
}
.house {
    background-image: url("/web/img/home-and-garden.jpg")!important;
}

.pet {
    background-image: url("/web/img/pets.jpg")!important;
}
.technology {
    background-image: url("/web/img/technology.jpg")!important;
}
.art{
    background-image: url("/web/img/art.jpg")!important;
}
.industrial{
    background-image: url("/web/img/industrial.jpg")!important;
}
.about-box .inner{
    background: rgba(255,255,255,.9);
    box-shadow: 5px 5px 50px 0 rgba(0,0,0,0.25);
    margin: auto;
    width: 100%;
}
.about-box .inner p{
    font-weight: 500;
    font-size:clamp(24px, 1.5vw, 28px);
    line-height: 101%;
    text-align: center;
    color: #071530;
    margin-bottom: 0;
}
.segment-item .about-box .back{
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.segment-item .about-box .front{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.segment-item .about-box:hover .back{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.segment-item .about-box:hover .front{
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.brands-grid{
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    margin: 40px 0;
}
.brand-image {
    position: relative;
    height: 100%;
    display: flex!important;
    align-items: center;
    background: #F2FBFB;
    border-radius: 20px;
    padding: 20px 0;
    min-height: 165px;
    margin: 0 20px;
    transition: .6s;
    border: 1px solid #F2FBFB;
    box-sizing: border-box;
}
.brand-image:hover{
    background: #FFF;
    border: 1px solid #51C5D2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}
.brand-image img {

    max-width: 250px;
    margin: auto;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.product-image{
    position: relative;
    transition: .6s all ease-in-out;
    cursor: pointer;
    min-height: 500px;
    width: 500px;
    margin: 0 20px;
    text-align: center;
    height: 100%;
    background: #F2FBFB;
    border-radius: 20px;
    border: 1px solid #F2FBFB;
    box-sizing: border-box;
    padding: 40px;
    flex-direction: column;
    display: flex!important;
    justify-content: space-between;
}
.product-image .image {
    max-width: 350px;
    display: flex;
    align-items: center;
    min-height: 250px;
}
.product-image .image img{
    max-height: 250px;
    width: auto;
}
.product-image__front{
    opacity: 0;
    background: rgba(255,255,255,.7);
    transition: .6s all ease-in-out;
    position: absolute;
    height: 500px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
}
.product-image__front:after,
.product-image__front:before{
    border: 10px solid transparent;
    box-sizing: inherit;
    content: '';
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 9;
}

.product-image__front:hover::after {
    border-bottom-color: #ec8e3c;
    border-left-color: #ec8e3c;
    transition: height .25s ease-out,width .25s ease-out .25s;
}
.product-image__front:hover::before {
    border-right-color: #ec8e3c;
    border-top-color: #ec8e3c;
    transition: width .25s ease-out, height .25s ease-out .25s;
}
.product-image__front:hover::after,
.product-image__front:hover::before{
    height: 100%;
    width: 100%;
}
.product-image:hover .product-image__front{
    opacity: 1;
    box-shadow: 5px 5px 50px 0 rgba(0,0,0,0.25);
    z-index: 3;
}
.product-image__front p{
    max-width: 280px;
    margin: 25px auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    white-space: pre-wrap;
}
.product-image__front .inner{
    max-width: 280px;
    margin: auto;
}
.product-image img{
    margin: auto;
    position: relative;
    z-index: 2;
}
#raffle-bg{
    background-color:#1D2547;
    background-image:url("/web/img/raffle-bg.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 60%;
    min-height: 590px;
    display: flex;
    align-items: center;
    color: #fff;
}
#raffle-bg .h2{
    color: #fff;
}
.home #raffle-bg .h2:before {
    content: none;
}
.slick-dots{
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-top: 110px;
    position: relative;
    z-index: 9;
}
.slick-dots li {
    list-style-type: none;
    color: transparent;
    margin: 15px;
    display: flex;
    align-items: center;
}
.slick-dots li.slick-active button{
    width: 14px;
    border: 2px solid #FE9800;
    height: 14px;
    background:#FE9800;
}
.slick-dots button{
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border: 2px solid #E3E2E2;
    border-radius: 50%;
    background: #E3E2E2;
    padding: 0;
    color: transparent;
}
#contact-us{
    background-color: #F2FBFB;
}
.invalid-feedback,
.help-block{
    position: absolute;
    left: 30px;
    font-size: 12px;
    bottom: 5px;
}
.register-page textarea.form-control,
.form-control{
    height: 65px;
    border: none;
    background: transparent;
    padding: 1rem 1.95rem;
}
.form-group{
    border: 1px solid #1996A4;
    box-sizing: border-box;
    border-radius: 40px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 30px;
}
.form-group.field-contactform-verifycode,
.form-group.field-registerform-verifycode{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}
.form-group.field-contactform-verifycode label,
.form-group.field-registerform-verifycode label{
    width: 30%;
    text-align: center;
    margin-bottom: 0;
    color:  rgba(18, 25, 54, .5);
}
.slick-track{
    display: flex;
    align-items: center;
}

.raffle-bottom-dot{
    left: 2%;
    bottom: 9%;
}
.raffle-top-dot{
    left: 20%;
    top: 5%;
}
fieldset label {
    position: absolute;
    top: 50%;
    left: 3rem;
    -webkit-transform: translate(0, -140%);
    transform: translate(0, -140%);
    z-index: 5;
    font-size: 16px;
    transition: all 0.25s;
    color:  rgba(18, 25, 54, .5);
    pointer-events: none;
    font-weight: normal;
    line-height: .9;
}
fieldset .field-contactform-body label{
    top: 25%;
}
fieldset label.active {
    font-size: 12px;
    margin-top: -1.7rem;
}
.contacts-list a{
    color: #121936;
}
.person img{
   margin: auto;
    position: relative;
    z-index: 3;
}
.person.slick-current .person-image-back{
    background: #F2FBFB;
    border-radius: 35px;
    position: relative;
    z-index: 2;
}
.person.slick-current .person-image-back:after {
    content: '';
    border: 2px solid rgba(81, 197, 210, .5);
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 35px;
    display: block;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.person p{
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #AFACAC;

}
.person p.person-name{
    font-size: 30px;
    line-height:1;
    text-align: center;
    color: #000000;
    margin-top: 20px;
    font-weight: bold;
}
.product-image p{
    font-weight: 500;
    font-size: 24px;
    line-height:  125%;
    text-align: center;
    color: #121936;
}
.arrow {
    background: url(/web/img/arrow.svg) no-repeat center;
    width: 30px;
    height: 20px;
    display: inline-block;
    position: relative;
    z-index: 9;
    top: 4px;
    left: 10px;
}
.product-image:hover{
    background: #51C5D2;

}
.product-image:hover p{
    color: #fff;
}
.product-image:hover .button{
    background: #FFFFFF!important;
    color: #121936;
}
.product-image:hover .arrow {
    filter: invert(1);
}

.people1{
    top: 5%;
    left: 25%;
    width: 23%;
}
.people2{
    top: 18%;
    right: 14%;
    width: 22%;
}
.people3{
    bottom: 41%;
    left: 20%;
    width: 30%;
}
.people4{
    bottom: 35%;
    right: 23%;
    width: 10%;
}
#apDiv2 img,
#apDiv4 img,
#apDiv8 img,
#apDiv10 img{
    width: 80%;
    height: auto;
}
/*#apDiv1 {*/
/*    top: -25%;*/
/*    left: 15%;*/
/*    width: 21%;*/
/*}*/
/*#apDiv2 {*/
/*    top: 10%;*/
/*    left: 8%;*/
/*    width: 15%;*/
/*}*/
/*#apDiv3{*/
/*    top: 46%;*/
/*    left: 13%;*/
/*    width: 25%;*/
/*}*/
/*#apDiv4{*/
/*    bottom: -10%;*/
/*    left: 36%;*/
/*    width: 10%;*/
/*}*/
/*#apDiv5{*/
/*    bottom: -32%;*/
/*    right: 13%;*/
/*    width: 22%;*/
/*}*/
/*#apDiv6{*/
/*    bottom: -27%;*/
/*    right: -35%;*/
/*    width: 28%;*/
/*}*/
.field-leadform-product {
    position: relative;
}
.field-leadform-product:after{
    content: '';
    background: url("/web/img/select-arrow.svg") no-repeat center right/contain;
    width: 15px;
    height: 8.55px;
    position: absolute;
    display: block;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.form-group.field-login-form-rememberme{
    border: none;
    overflow: visible;
    border-radius: 0;
}
@media (min-width: 992px) {

    .home .item-slider{
        background-image: none!important;
        margin-top: 80px;
    }
    .raffle-page .main-info-title,
    .home .main-info-title{
        padding-top: 10vh;
    }
}
@media (min-width: 1660px) {
    #apCenterDiv{
        right: -25%;
        top:-5%;
    }
}
@media (max-width: 1366px) {
    .item-slider{
        min-height: 768px;
    }
    .home .item-slider:before{
        background-size: 30% !important;
    }
    .register-page textarea.form-control, .form-control {
        height: 55px;
    }
    .candles#section1{
        display: flex;
        align-items: center;
        min-height: 700px;
    }
    #apCenterDiv {
        top: 0%;
        right: -25%;
        max-width: 90%;
    }
    .circle {
        right: -20%;
        top: -13%;
        width: 550px;
    }
    /*#apCenterDiv img.pc{*/
    /*    width: 80%;*/
    /*}*/
    /*#apDiv1 {*/
    /*    top: -35%;*/
    /*    left: 12%;*/
    /*    width: 25%;*/
    /*}*/
    /*#apDiv1 img {*/
    /*    width: 60%;*/
    /*    height: auto;*/
    /*}*/
    /*#apDiv2 {*/
    /*    top: 5%;*/
    /*    left: 7%;*/
    /*    width: 15%;*/
    /*}*/
    /*#apDiv2 img{*/
    /*    width: 70%;*/
    /*    height: auto;*/
    /*}*/
    /*#apDiv3 {*/
    /*    top: 41%;*/
    /*    left: 10%;*/
    /*    width: 25%;*/
    /*}*/
    /*#apDiv3 img{*/
    /*    width: 55%;*/
    /*    height: auto;*/
    /*}*/
    /*#apDiv4 {*/
    /*    bottom: -5%;*/
    /*    left: 25%;*/
    /*    width: 15%;*/
    /*}*/
    /*#apDiv5 {*/
    /*    bottom: -25%;*/
    /*    right: 30%;*/
    /*    width: 20%;*/
    /*}*/
    /*#apDiv5 img{*/
    /*    width: 75%;*/
    /*    height: auto;*/
    /*}*/
    /*#apDiv6 {*/
    /*    bottom: -24%;*/
    /*    right: -10%;*/
    /*    width: 28%;*/
    /*}*/
    /*#apDiv6 img{*/
    /*    width: 70%;*/
    /*    height: auto;*/
    /*}*/
    .people1 {
        top: 7%;
        left: 20%;
        width: 18%;
    }
    .people2 {
        top: 19%;
        right: 18%;
        width: 20%;
    }
    .people3{
        left: 20%;
        width: 30%;
        bottom: 45%;
    }
    .people4 {
        bottom: 39%;
        right: 35%;
    }
    .segment-item{
        max-width: 280px;
    }
}
@media (max-width: 1024px) {
    .circle{
        width: 470px;
        top: -22%;
    }
}
@media (max-width: 991px) {
    .registration-link a.nav-link {
        margin-left: 0;
        margin-top: 20px;
    }
    .navbar-nav .dropdown-menu {
        position: relative;
        float: none;
        border: none;
        border-radius: 0;
        left: 0;
    }
    .home h3:before, .register-page h1:before, .home h1:before, .home .h1:before, .home h2:before, .home .h2:before{
        top: -20px;
    }
    .segment-items{
        grid-template-columns: repeat(2, 1fr);
    }
    .segment-item {
        width: 90%;
        margin: 20px auto;
    }
    .values{
        max-width: 80%;
        margin: 40px auto 0;
        flex-wrap: wrap;
    }
    .value-item{
        margin-bottom: 50px;
    }
    .about-info svg{
        right: 50px!important;
        bottom: 0;
    }
    .navbar.opened{
        background-color: #F2FBFB!important;
        min-height: 100vh;
        align-items: flex-start;
    }
    #raffle-bg {
        background-position: bottom center;
        background-size: 100%;
        padding-bottom: 300px;
    }
    .button{
        min-width: 200px;
    }
    #candle .description {
        font-size: 1.5em;
    }

    #section5{
        height: 650px !important;
    }
    .candles{
        text-align: center;
    }
    .candles img.main-candle-img  {
        max-width: 400px;
    }

    #candle .description.new-price{
        margin-bottom: 20px;
    }
    #section5 .row,
    #section5 .container,
    #section5 .col-sm-4{
        height: 100%;
    }
    #candle .description {
        margin-top: 0;
    }
    .candle-left{
        bottom: -150px;
        left: -20%;
    }
    .candles#section3 .row{
        flex-direction: column-reverse;
    }
    .slick-dots{
        margin-top: 40px;
    }
}
@media (max-width:812px) {
    .candles#section5{
        background-size: 130%!important;
        align-items: flex-start!important;
        background-position: center bottom!important;
    }
    .candles#section5 .price-bubble {
        right: 0;
        bottom: auto;
    }
    #candle #section1 .row {
        flex-direction: column-reverse;
    }
    .candles#section2{
        background-position: center 100%!important;
        background-size: 120%!important;
    }
    .candle-top {
        top: -20%;
    }
}
@media (max-width:812px) and (orientation: landscape) {

    .item-slider {
        min-height: 368px;
    }
}
@media (max-width:768px) {

    .home .item-slider {
        background-size: 55%;
        background-position: center right;

    }

    .home .main-info-title .blue-circle-mob {
        top: 10% !important;
        right: 0 !important;
    }

    .home .main-info-title .orange-circle-mob {
        top: -140px !important;
        right: 40% !important;
    }
    #about-us{
        background-position: bottom left;
        background-size: 55%;
        padding-bottom: 350px;
    }
}
@media (max-width:767px) {
    .registration-link a.nav-link {
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-top: 20px;
    }
    .home .item-slider {
        background-size: 95%;
        align-items: flex-start;
        padding-top: calc(7vh + 77px);
        padding-bottom: 403px;
        height: auto;
        max-height: 100%;
        background-position: bottom right;
    }
    #about-us{
        background-size: 100%;
    }
    .segment-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .form-group.field-contactform-verifycode label,
    .form-group.field-registerform-verifycode label{
        display: none;
    }
    #section1.candles{
        align-items: flex-start;
        padding-top: 10vh;
        background:rgba(255, 225, 187, 0.1) url("/web/img/candle-main-mob.png") no-repeat center/cover!important;
        max-height: 100vh;
    }
    .candles .home-button {
        margin-bottom: 0;
    }
    .circle {
        right: -20%;
        top: -13%;
        width: 250px;
    }

}
@media (max-width:600px) {
    #candle h1 {
        font: bold 2em "HelveticaNeueCyr-Bold", sans-serif;
        text-align: center;
    }
    .candles img.logo,
    .candles img {
        margin: 20px auto;
    }
    .candles img.logo{
        width: 60%;
        margin-bottom: 40px;
    }
    #candle h2, #candle .h2 {
        line-height: 110%;
        font-size: 26px;
    }
    .candles img.main-candle-img{
        width: 100%;
    }
    .candles#section1 .price-bubble{
        padding: 25px;
    }
    .button{
        width: 100%;
    }
}
@media (max-width:375px) {
    #about-us{
        padding-bottom: 300px;
    }

}
@media (max-width:320px) {
    #about-us{
        padding-bottom: 250px;
    }
}