/* ------------------- */
/* styles for new nav  */
/* -------------------  */

.body-wrapper {
    overflow-x: hidden;
    position: relative;
}

header {
    box-shadow: 0 6px 12px 0 rgba(0,0,0,0.08);
}

.new-header {
    height: auto;
    padding: 20px 0;
    position: relative;
    z-index: 1010;
}

.new-header::after {
    background-color: #FF9933;
    border-radius: 50%;
    content: '';
    height: 63px;
    left: -35px;
    position: absolute;
    top: -35px;
    width: 63px;
}

body.admin-bar .new-header::after  {
    display: none;
}

@media screen and (min-width: 1290px) { 
    .new-header::after {
        height: 180px;
        left: -100px;
        top: -100px;
        width: 180px;
    }
}

.new-header .new-header__logo {
    display: inline-block;
    width: 130px;
}

.logo-wrapper {
    display: inline-block;
    position: relative;
}

.logo-wrapper img {
    height: 33px!important;
    width: auto;
}

@media screen and (min-width: 1100px) { 
    .logo-wrapper img {
        height: 49px!important;
    }
}

/* overwrite bootstrap  */
.navbar {
    background-color: #51B9FB;
    display: flex;
    height: 100vh;
    justify-content: center;
    margin-bottom: 0;
    min-height: auto;
    overflow: scroll;
    padding-bottom: 109px;
    padding-top: 80px;
    position: fixed;
    top: -3000px;
    transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 10000;
    overflow: visible;
}

/* item no actives opacity on mobile menu  */

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

    .navbar.dropdown-open .nav-item:not(.open) {
        opacity: 0.3;
    }
    .navbar.dropdown-open .menu-item .menu-item {
        opacity: 1;
    }
}

.navbar-collapse {
    border: none;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.navbar.is-active {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: scroll;
    top: 0;
}

@media screen and (min-width: 1100px) { 
    .navbar {
        background-color: transparent;
        height: auto;
        overflow: unset;
        padding: 0;
        position: relative;
        top: 0;
        width: auto;
    }
}

.main-menu-wrap.collapse {
    display: block;
}

@media screen and (min-width: 1100px) { 
    .wrapper-navbar {
        display: inline-block;
        position: relative;
    }
}

.main-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

@media screen and (min-width: 1100px) { 
    .main-menu {
        flex-direction: row;
        padding-left: 32px;
    }
}    

.main-menu li {
    margin-right: 22px;
    text-align: center;
}

@media screen and (min-width: 1100px) { 
    .main-menu li {
        text-align: left;
    }
}


/* mdr use max  */
@media screen and (max-width: 1100px) { 
    .main-menu li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-right: 0;
    }
}   

.main-menu li a {
    color: #fff;
    font-family: 'VarelaRound-Regular', sans-serif;
    font-size: 22px;
    margin-top: 18px;
}

@media screen and (min-width: 1100px) { 
    .main-menu li a {
        color: #666;
        font-size: 18px;
        transition: color 0.3s 0s ease-in-out;
    }

    .main-menu li a:hover {
        color: #23527c;
    }
}

@media screen and (min-width: 1100px) { 
    .main-menu li a.dropdown-item {
        margin-top: 15px;
    }
}

.main-menu li a.dropdown-item {
    font-size: 18px;
}

@media screen and (min-width: 1100px) { 
    .main-menu li a.dropdown-item {
        font-size: 16px;
    }
}

.main-menu .dropdown-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
    position: relative;
}

@media screen and (min-width: 1100px) { 
    .main-menu .dropdown-menu {
        background-color: #fff;
        border: 1.5px solid #51B9FB;
        border-radius: 9px;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,0.09);
        left: 50%;
        padding: 8px 0 35px 20px;
        position: absolute;
        top: 36px;
        transform: translateX(-50%);
        z-index: 1010;
    }

    .main-menu .dropdown-menu::after {
        background-color: #fff;
        border-left: 1.5px solid #51B9FB;
        border-top: 1.5px solid #51B9FB;
        content: '';
        height: 15px;
        left: 50%;
        position: absolute;
        top: -9px;
        transform: translateX(-50%) rotate(45deg);
        width: 15px;
    }
}

@media screen and (min-width: 1100px) { 
    .main-menu .dropdown-menu .dropdown-item {
        color:  #666;
        padding-left: 0;
        transition: color 0.3s 0s ease-in-out;
    }

    .main-menu .dropdown-menu .dropdown-item:hover {
        color: #23527c;
    }
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: transparent;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: transparent;
}

@media screen and (min-width: 1100px) { 
    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
        color:  #51B9FB;
    }
}

.main-menu li.dropdown .dropdown-toggle::after {
    border-color: #fff;
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 7px;
    position: relative;
    right: -5px;
    top: 10px;
    transform: rotate(135deg);
    transition: transform 0.3s 0s ease-in-out;
    vertical-align: top;
    width: 7px;
}

@media screen and (min-width: 1100px) { 
    .main-menu li.dropdown .dropdown-toggle::after {
        border-color: #666;
        top: 7px;
    }
}

.main-menu li.dropdown.open .dropdown-toggle::after {
    transform: rotate(315deg);
}

.main-menu li.dropdown {
    margin-right: 3px;
}


@media screen and (min-width: 1100px) { 
    .main-menu li.dropdown a {
        padding-right: 24px;
    }
}

.new-header__wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

@media screen and (min-width: 1100px) { 
    .new-header__wrapper {
        justify-content: flex-start;
    }
}

/* toggler button on mobile  */

    .new-header__wrapper .navbar-toggler {
        background-color: transparent; 
        border: none;
        display: block;
        left: 0;
        position: absolute;
        top: 2px;
    }

    @media screen and (min-width: 1100px) { 
        .new-header__wrapper .navbar-toggler { 
            display: none;
            top: 15px;
        }
    }

    .new-header__wrapper .navbar-toggler.navbar-toggler__open {
        left: auto;
        right: 25px;
        top: 25px;
    }

    .navbar-toggler-icon {
        background-color: #fff;
        display: inline-block;
        height: 3px;
        position: relative;
        top: -4px;
        transition: background 0.3s 0s ease-in-out;
        width: 28px;
   }

    .navbar-toggler-icon::before, .navbar-toggler-icon::after {
        background-color: #fff;
        content: '';
        display: inline-block;
        height: 3px;
        left: 0;
        position: absolute;
        transform-origin: 14px center;
        transition: top 0.3s 0.6s ease-in-out, transform 0.3s ease-in-out, background 0.3s 0s ease-in-out;
        width: 28px;
    }

    .navbar-toggler.navbar-toggler__close .navbar-toggler-icon,
    .navbar-toggler.navbar-toggler__close .navbar-toggler-icon::before,
    .navbar-toggler.navbar-toggler__close .navbar-toggler-icon::after {
        background-color: #51B9FB;
    }

    .navbar-toggler-icon::before {
        top: 8px;
    }
    .navbar-toggler-icon::after {
        top: -8px;
    }

    .navbar.is-active .navbar-toggler-icon {
        background: transparent !important;
        transition: background 0.3s 0s ease-in-out;
    }

    .navbar.is-active .navbar-toggler-icon::before, .navbar.is-active .navbar-toggler-icon::after {
        top: 0;
        transition: top 0.3s ease-in-out,transform 0.3s 0.5s ease-in-out;
    }

    .navbar.is-active .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }

    .navbar.is-active .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }

/* End toggler button on mobile  */

/* main-info ( log and telf)  */

    .main-info--mob {
        align-items: center;
        border-top: 3px solid #fff;
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        padding: 32px 0;
        width: 276px;
    }

    @media screen and (min-width: 1100px) { 
        .main-info--mob {
            display: none;
        }
    }

    .main-info--mob .main-info__sign a,
    .main-info--mob .main-info__telf a {
        color: #fff;
        display: block;
        font-family: 'VarelaRound-Regular', sans-serif;
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .main-info--mob .main-info__telf a::before {
        background-image: url("../svg/phone.svg");
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        height: 17px;
        left: -27px;
        position: absolute;
        top: 5px;
        width: 17px;
    }

    .main-info--mob .main-info__sign a::before {
        background-image: url("../svg/profile.svg");
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        height: 18px;
        left: -27px;
        position: absolute;
        top: 3px;
        width: 18px;
    }

/* End main-info ( log and telf)  */

/* new-header and card on the right menu contact Desktop */

    .main-info--desk {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        right: 0;
    }

    @media screen and (min-width: 1100px) { 
        .main-info--desk {
            background-color: #51B9FB;
            border-radius: 10px;
            margin-left: auto;
            max-height: 43px;
            padding: 10px 10px 10px 30px;
        }
    }

    .main-info--desk .main-info__telf a::before {
        background-image: url("../svg/phone.svg");
        background-size: contain;
        background-repeat: no-repeat;
        content: '';
        height: 17px;
        left: -27px;
        position: absolute;
        top: 5px;
        width: 17px;
    }

    .main-info--desk .main-info__basket a::before {
        background-image: url("../svg/basket--blue.svg");
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        height: 21px;
        left: -27px;
        position: absolute;
        top: 0;
        width: 21px;
    }

    @media screen and (min-width: 1100px) { 
        .main-info--desk .main-info__basket a::before {
            background-image: url("../svg/basket.svg");
        }
    }

	.main-info__basket {
        align-items: center;
        background-color: #333;
        border-radius: 50%;
        display: flex;
        height: 23px;
        justify-content: center;
        margin-left: 45px;
        position: relative;
        width: 23px;
    }

    .main-info__basket__count {
        color: #fff;
        font-family: 'VarelaRound-Regular', sans-serif;
        font-size: 14px;
    }

    .main-info--desk .main-info__sign {
        display: none;
        height: 23px;
        margin-left: 20px;
        position: relative;
        width: 23px;
    }

    @media screen and (min-width: 1100px) { 
        .main-info--desk .main-info__sign {
            display: block;
        }
    }

    .main-info--desk .main-info__sign::before {
        background-image: url("../svg/profile.svg");
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        height: 20px;
        position: absolute;
        width: 20px;
    }

    .main-info--desk .main-info__telf {
        color: #fff;
        display: none;
        font-family: 'VarelaRound-Regular', sans-serif;
        font-size: 16px;
        position: relative;
    }

    @media screen and (min-width: 1100px) { 
        .main-info--desk .main-info__telf {
            display: block;
        }
    }

    .main-info--desk .main-info__telf::before {
        background-image: url("../svg/phone.svg");
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        height: 15px;
        left: -19px;
        position: absolute;
        top: 3px;
        width: 15px;
    }
/* End new-header and card on the right menu contact  */

/* hero block */
    .block.block-home.hero-block {
        background-color: #fff;
        height: auto;
        margin-top: -20px;
        position: relative;
    }

    @media screen and (min-width: 1100px) { 
        .block.block-home.hero-block {
            height: 900px;
            margin-top: -150px;
        }
    }

    .hero-block__bg {
        background-image: url("../png/hero-background.png");
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        bottom: 0;
        display: block;
        height: 250px;
        position: absolute;
        right: -52px;
        width: 300px;
    }
    
    @media screen and (min-width: 992px) { 
        .hero-block__bg {
            height: 500px;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
        }
    }

    @media screen and (min-width: 1100px) { 
        .hero-block__bg {
            display: block;
            height: 1124px;
            right: -310px;
            top: -110px;
            transform: none;
            width: 1124px;
        }
    }

    @media screen and (min-width: 1280px) { 
        .hero-block__bg {
            right: calc(((100vw - 1140px)/2) - 343px);
            top: -82px;
        }
    }

    .hero-block__bg-circle {
        display: block;
        height: 100%;
        position: relative;
        width: 100%;
    }

    .hero-block__bg-circle::after { 
        background-color: #FF9933;
        border-radius: 50%;
        bottom: 6px;
        content: '';
        height: 20px;
        left: 45px;
        position: absolute;
        width: 20px;
    }

    @media screen and (min-width: 992px) { 
        .hero-block__bg-circle::after { 
            height: 67px;  
            width: 67px;
        }
    }

    @media screen and (min-width: 1100px) { 
        .hero-block__bg-circle::after { 
            bottom: 150px;
            left: 150px;
        }
    }
    
    .hero-block-wraper {
        height: auto;
    }

    @media screen and (min-width: 1280px) { 
        .hero-block-wraper {
            height: 900px;
        }
    }

    .block-hero__content {
        margin-bottom: 30px;
        margin-top: 0;
        position: relative;
    }

    @media screen and (min-width: 1100px) { 
        .block-hero__content {
            margin-top: 200px;
        }

        .block-hero__content:before {
            background-color: rgba(81,185,251,0.2);
            border-radius: 50%;
            bottom: -400px;
            content: '';
            height: 400px;
            left: -230px;
            position: absolute;
            width: 400px;
        }
    }

    .block.block-home p.block-hero__intro {
        font-size: 10px;
        margin-bottom: 13px;
        position: relative;
    }
    
    @media screen and (min-width: 500px) { 
        .block.block-home p.block-hero__intro {
            font-size: 14px;
            margin-bottom: 16px;
        }
    }

    .block-hero__intro::after {
        background-color: #51B9FB;
        border-radius: 50%;
        content: '';
        display: none;
        height: 36px;
        left: -11px;
        opacity: .13;
        position: absolute;
        top: -10px;
        width: 36px;
    }

    @media screen and (min-width: 992px) {
        .block-hero__intro::after {
            display: block;
        }
    }

    .block-hero__intro::before {
        background-color: #666;
        border-radius: 50%;
        content: '';
        display: none;
        height: 85px;
        opacity: .17;
        position: absolute;
        right: 0;
        top: -70px;
        width: 85px;
    }

    @media screen and (min-width: 992px) {
        .block-hero__intro::before {
            display: block;
        }
    }

    @media screen and (min-width: 1100px) {
        .block-hero__intro::before {
            display: block;
            right: 30px;
            top: -100px;
        }
    }

    .block-hero__title {
        color: #333;
        font-size: 30px;
        margin-bottom: 18px;
        margin-top: 0;
    }

    @media screen and (min-width: 992px) { 
        .block-hero__title {
            font-size: 60px;
        }
    }

    .block-hero__text {
        color: #666;
        font-size: 14px;
        margin-bottom: 14px;
        margin-top: 0;
        opacity: 0.8;
    }

    @media screen and (min-width: 992px) { 
        .block-hero__text {
            font-size: 16px;
            margin-bottom: 30px;
            background-color: #fff;
        }
    }

    .hero-block__img {
        display: block;
        height: 142px;
        margin-left: auto;
        margin-top: 20px;
        padding-right: 50px;
        position: relative;
    }

    @media screen and (min-width: 992px) { 
        .hero-block__img {
            height: 238px;
            margin-right: 136px;
            margin-top: 140px;
        }
    }

    @media screen and (min-width: 1100px) { 
        .hero-block__img {
            height: 500px;
            margin-right: 90px;
            margin-top: 154px;
        }
    }

    .hero-block__img-wraper::after {
        background-image: url("../png/decorative-01.png");
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        height: 80px;
        position: absolute;
        right: 140px;
        top: -5px;
        width: 80px;
    }

    @media screen and (min-width: 992px) { 
        .hero-block__img-wraper::after {
            height: 150px;
            right: 299px;
            top: 77px;
            width: 150px;
        }
    }

    @media screen and (min-width: 1100px) { 
        .hero-block__img-wraper::after {
            height: 150px;
            right: 480px;
            top: 100px;
            width: 150px;
        }
    }

    .block-hero__content .link__btn {
        margin-right: 27px;
    }

    .block-hero__content .link__btn:hover {
        
    }

    .block-hero__content .text-link {
        color: #333;
        display: block;
        margin-top: 18px;
        font-size: 16px;
    } 
    
    @media screen and (min-width: 500px) { 
        .block-hero__content .text-link {
            background-color: #fff;
            display: inline-block;
            margin-top: 0;
        } 

        .block-hero__content .text-link:hover {
            color: #23527c;
        }
    }

/* End hero block  */ 


/* start testimonial slider  */

    .new-testimonial-block {
        margin: 25px 0;
    }

    @media screen and (min-width: 992px) { 
        .new-testimonial-block {
            margin: 50px 0;
        }
    }

    .new-testimonial__heading {
        text-align: center;
    }

    .new-testimonial__heading .new-testimonial__head {
        color: #333;
        font-size: 24px;
        margin-bottom: 28px;
    }

    @media screen and (min-width: 992px) { 
        .new-testimonial__heading .new-testimonial__head {
            font-size: 30px;
            margin-bottom: 60px;
        }
    }

    @media screen and (min-width: 992px) { 
        .slider-testimonial-wrapper {
            padding-top: 200px;
        }
    }

    .slider-testimonial {
        background-color: #f2f2f2;
        border-radius: 15px;
        text-align: center;
    }

    .slider-testimonial .testimonial-slide {
        padding: 26px;
    }

    @media screen and (min-width: 992px) { 
        .slider-testimonial .testimonial-slide {
            padding: 40px 60px;
        }
    }

    .slick-dots {
        display: none!important;
        justify-content: space-around;
        top: -200px;
    }

    @media screen and (min-width: 992px) { 
        .slick-dots {
            display: flex!important; 
            height: 200px!important;
        }

        .slick-dots li {
            align-items: center!important;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            display: flex!important;
            height: 170px!important;
            justify-content: center!important;
            padding: 20px;
            position: absolute;
            transition: transform 0.2s ease-in-out;
            width: 140px!important;
            z-index: 10;
        }

        .slick-dots li.slick-active,
        .slick-dots li:hover {
            transform: translateY(-25px);
        }

        .slick-dots li:hover {
            transform: translateY(-25px);
        }
  
        .slick-dots li::after {
            background-color: blue;
            border-radius: 50%;
            bottom: 0;
            content: '';
            height: 140px;
            opacity: .3;
            position: absolute;
            width: 140px;
            z-index: 5;
        }

        .slick-dots li:first-child::after {
            background-color: #51B9FB;
        }

        .slick-dots li:nth-child(2)::after {
            background-color: #333;
        }

        .slick-dots li:nth-child(3)::after {
            background-color: #FF9933;
        }

        .slick-dots li:nth-child(4)::after {
            background-color: rgba(224,32,32,0.5);
        }

        .slick-dots li button {
            background-position: center!important;
            background-repeat: no-repeat!important;
            background-size: contain!important;
            height: 80%!important;
            width: 80%!important;
            z-index: 10;
        }

        .slick-dots li:first-child button {
            background-image: url("../png/blue-bibo.png");
        }

        .slick-dots li:nth-child(2) button {
            background-image: url("../png/bibo-black-b.png");
        }

        .slick-dots li:nth-child(3) button {
            background-image: url("../png/bibo-orange.png");
        }

        .slick-dots li:nth-child(4) button {
            background-image: url("../png/bibo-red.png");
        }
    }

    .slick-dots li.slick-active button::before,
    .slick-dots li button::before {
        color: transparent!important;
    }

    .testimonial-stars,
    .testimonial-icon {
        display: flex;
        justify-content: center;
    }

    .testimonial-stars img {
        height: 20px;
        margin-bottom: 15px;
        width: auto;
    }

    @media screen and (min-width: 992px) { 
        .testimonial-stars { 
            margin-bottom: 30px;
        }
    }

    .testimonial-text p {
        font-size: 20px!important;
        margin-bottom: 20px;
        position: relative;
        text-indent: 20px;
    }

    .testimonial-text .testimonial-text__close-quote:after, 
    .testimonial-text .testimonial-text__open-quote:before {
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        height: 26px;
        position: absolute;
        width: 26px;
    }

    .testimonial-text .testimonial-text__open-quote:before {
        background-image: url("../png/quote-01.png");
        top: -4px;
        transform: translateX(-29px);
    }

    .testimonial-text .testimonial-text__close-quote:after {
        background-image: url("../png/quote-02.png");
        bottom: 1px;
        margin-left: 5px;
    }

    .testimonial-name p{
        font-size: 20px!important;
        margin-bottom: 23px;
    }

    .testimonial-link {
        width: 100%;
    }

    .testimonial-link .text-link {
        color: #51B9FB;
        display: inline-flex;
        font-size: 16px;
        position: relative;
    }

    .testimonial-link .text-link .text-image-left__arrow {
        height: 15px;
        margin-left: 5px;
        margin-top: 4px;
        position: absolute;
        right: -25px;
    }

    .slider-button {
        height: 35px;
        position: absolute;
        top: 36%;
        width: 35px;
    }

    @media screen and (min-width: 992px) { 
        .slider-button {
            height: 51px;
            top: calc(50% + 52px);
            width: 51px;
        }
    }

    .slider-button--prev {
        left: 0;
    }

    .slider-button--next {
        right: 0;
    }

    @media screen and (min-width: 992px) { 
        .slider-button--prev {
            left: -14px;
        }
    
        .slider-button--next {
            right: -14px;
        }
    }

    .slider-btn {
        background-color: transparent;
        background-image: url("../svg/big-arrow-rightsvg.svg");
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        border: none;
        display: block;
        height: 35px;
        opacity: .8;
        position: absolute;
        transition: opacity 0.2s ease-in-out;
        width: 35px;
    }

    .slider-btn:hover {
        opacity: 1;
    }

    @media screen and (min-width: 992px) { 
        .slider-btn {
            height: 50px;
            width: 50px;
        }
    }

    .slider-btn.prev-btn {
        transform: rotate(180deg);
    }

/* start testimonial slider  */

/*--------------------------------------------------------------
# Elements to hide focus input on click
--------------------------------------------------------------*/
/* no focus style for non-keyboard-inputs elements */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) a:focus,
body:not(.user-is-tabbing) .slick-slide:focus{
	box-shadow: none;
	outline: none;
}

/* and for keyboard users, override everything with
a Big Blue Border when focused on any element */
body.user-is-tabbing *:focus {
	outline: 2px solid #7AACFE !important; /* for non-webkit browsers */
	outline: 5px auto -webkit-focus-ring-color !important;
}