*{
    font-family: 'Exo 2', 'PT Sans', sans-serif;
    font-weight: normal;
}
body:has(.show) {
    overflow-y: hidden;
}
ul{
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}
a{color:inherit;text-decoration: none;}
a:hover{color:inherit}
button,select,input{
    -webkit-appearance: none;
}
button:focus,button:hover{
    border:none;
    outline:none
}
button{
    border:none;
    background:none
}

.about-content iframe {
    width: 100%;
    height: 400px;
    padding: 0;
    border-radius: 6px;
    border: 3px solid white;
    box-shadow: 0px 0px 25px 0px #e4e4e4;
}

nav.fixed {
    position: fixed;
    width: 100%;
    background: white;
    z-index: 99;

}

nav.navbar:has(.show) {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    
}
.nav-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 133.3333333333%;
    color: #090909;
    text-underline-offset: 3px;
    text-decoration: underline transparent;
    transition: 0.3s ease text-decoration 0s;
    cursor: pointer;
}
.nav-link:hover{
    text-decoration: underline #51a03c;
    color:#51a03c;
}
.navbar-nav {
    width: 100%;
    justify-content: center;
}

/*sub_menu*/
.navbar .company {
  position: relative;
}
.navbar .company .fa-caret-down {
  transition: transform 0.5s;
}
.navbar .company:has(.active)  .fa-caret-down {
  transform: rotate(180deg);
}


ul.sub_menu {
    display: none;

    /*padding: 10px;*/
}
ul.sub_menu.active {
    display: flex;
    flex-direction: column;
}
ul.sub_menu .nav-link {
    margin: 15px 0px;
    display: inline-flex;
    width: 100%;
    padding: 0px !important;
    justify-content: center;
}

.sub-menu li a{
    font-weight: 500;
    color: #090909;
    font-size: 15px;
    line-height: 20px;
    padding: 16px 24px;
    display: inline-block;
    transition:0.5s all ease;
    width:100%;
}
.sub-menu li a:hover{
    background:#fafafa;
}

.logo-text{
    font-size: 10px;
    line-height: 116.6666666667%;
    color: #595959;
}
.logo-text {
    font-size: 10px;
    line-height: 116.6666666667%;
    color: #595959;
    display: inline-block;
    vertical-align: middle;
    margin-left: 25px;
}
.navbar-nav .nav-item:last-child .nav-link{
    padding-right:0 !important
}
.icon-globe {
    font-size: 20px;
    line-height: 100%;
    margin-right: 3px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1px;
}
@font-face {
    font-family: "icomoon";
    src: url("../fonts/icomoon.eot?1dogmf");
    src: url("../fonts/icomoon.eot?1dogmf#iefix") format("embedded-opentype"), url("../fonts/icomoon.woff?1dogmf") format("woff"), url("../fonts/icomoon.svg?1dogmf#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
.icon-globe:before {
    content: "\e92e";
    font-weight: normal;
    font-style: normal;
    font-family: "icomoon" !important;
}
.language{
    font-weight: 500;
    position: relative;
}
.language>a{cursor:pointer;}
.nav-button{
    background-color: #46c269;
    color: #ffffff;
    border-radius: 11px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease all 0s;
    font-size:14px;
    font-weight: 600;
    display:inline-block;
    margin-left: 75px;
}
.nav-button:hover{
    color:white;
    background-color: #1d9f3a;
}
.language:hover i {
    animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
@keyframes shake-bottom{
    0%, 100% {
        transform: rotate(0deg);
        transform-origin: 50% 100%;
    }
    10% {
        transform: rotate(2deg);
    }
    20%, 40%, 60% {
        transform: rotate(-4deg);
    }
    30%, 50%, 70% {
        transform: rotate(4deg);
    }
    80% {
        transform: rotate(-2deg);
    }
    90% {
        transform: rotate(2deg);
    }
}
.language .sub-menu {
    position: absolute;
    z-index: 1;
    top: 100%;
    transform: translateY(0px);
    background: #ffffff;
    box-shadow: 4px 8px 34px rgb(29 29 80 / 10%);
    border-radius: 10px;
    /*width: 100%;*/
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease all 0s;
    overflow:hidden;
}
.language .sub-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(8px);
}

.language a i{
    margin-right:2px;
}
.language a span {
    text-decoration: underline transparent;
    text-underline-offset: 3px;
    transition: 0.3s ease text-decoration 0s;
}
.language:hover a span {
    text-decoration: underline #090909
}
.language a span{
    font-size: 15px;
}
/* end */
/* slider */
.img-wrapper {
    position: relative;
}
#slider .carousel-item {
    height: 80vh;
    /* display: flex;
    align-items: center; */
}
#slider{
    background-color: #f5f5f5;
}
.custom-container {
    padding: 0 80px;
    width: 100%;
}
#slider .text-wrapper {
    height: 100%;
    color: white;
}
.carousel-item img {
    position: relative;
    object-fit: contain;
    height: 421px;
    margin: 0 auto;
    width: 100%;
}
#slider .carousel-item:nth-of-type(2) img, #slider .carousel-item:nth-of-type(3) img{
    object-fit: cover;
    border-radius: 50%;
    width: 400px;
    height: 400px;
}
#slider .title{
    font-weight: 800;
    font-size: 38px;
    line-height: 46px;
    color: #090909;
    margin-bottom: 74px;
}
.text-wrapper p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #090909;
}
.text-wrapper strong a {
    color: #1d9f3a;
    text-decoration: underline transparent;
    text-underline-offset: 3px;
    transition: 0.3s ease text-decoration 0s;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
}
.text-wrapper strong a:hover {
    text-decoration: underline #1d9f3a;
}
.carousel-item .circle-wrap {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.circle {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    transition-delay: .1s;
    transition: transform .8s;
}
.animate__delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.control-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 15%;
    display: flex;
    justify-content: flex-end;
}

element.style {
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
main .carousel-control-prev {
    left: auto;
    right: 70px;
}
 .carousel-control-next, .carousel-control-prev {
    width: 55px;
    height: 55px;
    background: #000;
    opacity: 1;
    margin: 0 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: static;
}
.carousel-control-prev {
    left: auto;
    right: 70px;
}
.carousel-control-next {
    right: 0;
    margin-right: 0;
}
 .carousel-control-next-icon, .carousel-control-prev-icon {
    width: 25px;
    filter: invert(1);
    background-size: contain;
    background-repeat: no-repeat;
}
.carousel-control-next-icon {
    background-image: url(../img/next.png);
}
.carousel-control-prev-icon {
    background-image: url(../img/left.png);
}
.control-btn:hover {
    background-color: #51a03c;
}
/* end */
/* advantages */
#advantages {
    padding: 70px 0;
    background: rgb(241 240 238);
    background: linear-gradient(180deg, rgba(255,255,255,1) 30%, #f2f1ef 30%);
}
.advantages-big-box{
    position: relative;
    padding: 40px;
    width: 100%;
    height: 324px;
    border-radius: 15px;
    overflow: hidden;
}
#advantages h2.advantages-title,#products h2.product-title,.useful-title,.partners-title{
    text-align:center;
    font-size:35px;
    font-weight: 600;
    margin-bottom: 40px;
}
.advantages-big-box img{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width:100%;
    object-fit: cover;
}
.advantages-head-title{
    font-size: 19px;
    line-height: 27px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    color: white;
}
.advantages-titles{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 40px 36px;
    font-weight: 500;
    line-height: 1.5;
    font-size: 18px;
    letter-spacing: .01em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.advantages-title-wrap{
    width: 40%;
    color: #fff;
    font-size:13px;
}
.advantages-text{
    font-weight: 300;
    font-size: 50px;
    line-height: 61px;
    margin-bottom: 5px;
    color: #fff;
}
.advantages-small-box{
    width: calc(50% - 1px);
    position: relative;
    padding: 40px;
    background-color:white;
    height: 324px;
    border-radius: 15px;
    margin-left: 1px;
    margin-bottom: 1px;
    position: relative;
    overflow: hidden;
    white-space: normal;
}
.advantages-small-title1{
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
}
.link-advantages{
    border-bottom:1px solid #dfdfdf;
    padding-bottom:6px;
    color:#b1b1b1;
    display:inline;
    transition:.5s all ease;
}
.link-advantages:hover{
    border-bottom:1px solid transparent;
}
.advantages-small-title2{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 40px 36px;
    font-weight: 500;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: .01em;
}
.advantages-small-title2 strong{
    display: block;
    font-weight: 300;
    font-size: 30px;
    line-height: 66px;
    margin-bottom: 10px;
}
/* end */
/* products */
#products{
    padding:70px 0
}
.product-text h2{
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.27;
    letter-spacing: 0;
    color: #191919;
}
.product-text p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.33;
    color: #b2b2b2;
    font-weight: 300;

}
.product-img{
    width:60%;
    height: 150px;
    object-fit: contain;
    margin:0 auto;
    transition:.5s all ease;
}
.product:hover .product-img{
    transform:translateY(-5px);
}
.product-img-wrap {
    text-align: center;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
}
.product-text {
    text-align: center;
    padding:0 14px
}
.small-row{
    max-width:90%;
    justify-content: center;
    margin:0 auto
}
.detail-button{
    position: relative;
    padding: 15px 39px;
    display: inline-block;
    max-width: 100%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    color: #000;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    -webkit-border-radius: 54px;
    border-radius: 54px;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    border-color: #979797;
}
.detail-button:hover{
    border-color:#1d9f3a
}
.see-all-product {
    margin-top: 40px;
    display: inline-block;
    color: #51a03c;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    transition:.5s all ease
}
.see-all-product:hover{
    color:#67c64d
}
.see-all-product:after {
    content: "\e923";
    font-family: "TwocanIcons" !important;
    -webkit-transition: -webkit-transform 0s ease;
    -moz-transition: transform 0s ease,-moz-transform 0s ease;
    -o-transition: -o-transform 0s ease;
    transition: -webkit-transform 0s ease;
    transition: transform 0s ease;
    transition: transform 0s ease,-webkit-transform 0s ease,-moz-transform 0s ease,-o-transform 0s ease;
    position: relative;
    top: 2px;
}
.product-circle {
    width: 200px;
    height: 200px;
    position: absolute;
    background: #f3f3f3;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
}
/* end */
/* services */
#services,.serv-content{
    /* padding:70px 0; */
    background-color: #f2f1ef;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/ustunluk1.jpeg);
    position:relative;
}
#services::before,.serv-content::before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
background: #00000075;
}
#services .activity_box,.cat-content .activity_box {
    height: 500px;
    position: relative;
    color: white;
}
#services .row>div:not(:last-child) .activity_box,.cat-content .row>div:not(:last-child) .activity_box {
    border-right: 1px solid #ebeef4;
}
.cat-content .row>div:not(:last-child) .activity_box {
    border-bottom: 1px solid #ebeef4;
}
.activity_box::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
}
.activity_box .bg-img {
    display: none;
}
.activity_box a {
    display: block;
    height: 100%;
    color: white;
    position: relative;
}
.activity_box .box_info {
    position: absolute;
    bottom: 50px;
    left: 45px;
    right: 45px;
}
 .activity_box .box_title {
    letter-spacing: normal;
    line-height: 1.06;
    margin-bottom: 38px;
    font-size: 24px;
    font-weight: 600;
}
.box_info p span {
    padding-right: 15px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 15px;
    transition: 0.3s ease;
    color: #f9423a;
    opacity: 0;
}
.activity_box .box_info i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid white;
    border-radius: 50%;
    font-size: 15px;
    transform: translateX(-80px);
    transition: transform 0.2s ease;
}
.activity_box:hover::before {
    background: rgba(0, 0, 0, 0.4);
}
.activity_box:hover .box_info p span {
    opacity: 1;
}
.activity_box:hover .box_info p i {
    transform: translateX(0px);
}
/* end */
/* useful */
#useful{
    padding:70px 0;
}
.useful-box img{
    width: 100%;
    height: 206px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 42px;
}
.useful-box{
    position: relative;
}
.useful-box h2{
    margin-bottom: 28px;
    font-weight: 600;
    font-size: 26px;
    line-height: 33px;
}
.useful-box p{
    margin-bottom: 28px;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}
.tags{
    font-weight: 100;
    font-size: 16px;
    line-height: 21px;
    color:#d5d5d5;
    pointer-events:none;
}
/* end */
/* partners */
#partners{
    padding:70px 0;
}
#partners img,.references-content img{
    width: calc(20% - 20px);
    margin: 0 10px 20px;
    height: 100px;
    opacity: .8;
    -webkit-transition: opacity .15s ease,-webkit-filter .15s ease;
    -moz-transition: filter .15s ease,opacity .15s ease;
    -o-transition: filter .15s ease,opacity .15s ease;
    transition: opacity .15s ease,-webkit-filter .15s ease;
    transition: filter .15s ease,opacity .15s ease;
    transition: filter .15s ease,opacity .15s ease,-webkit-filter .15s ease;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    padding: 25px;
    cursor: pointer;
    object-fit: contain;
}
#partners .container{
    max-width: 996px;
}
#partners img:hover,.references-content img:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
}
#partners:after,#partners:before{
    content:"";
    background-color: #e6e9ed;
    width:70%;
    height:1px;
    display:block;
    margin:0 auto
}
#partners:before{margin-bottom:30px}
/* end */
/* call to action  */
.call-to-action {
    padding: 3rem 0 2rem;
}
.call-to-action h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}
.call-to-action p {
    font-size: 18px;
}
.call-to-action .btn_wrapper {
    margin-top: 30px;
}
.call-to-action .resp-svg {
    display: none;
    width: 25px;
    margin: auto;
}
.call-to-action .icon {
    width: 45px;
    margin-left: -82px;
    margin-right: 30px;
}
.call-to-action .row {
    text-align: center;
}
.call-to-action a {
    padding: 22px 60px;
    background: #01ac6a;
    font-size: 16px;
    color: white;
    border-radius: 100px;
    transition: 0.3s ease;
    display: inline-block;
    width: max-content;
    margin: auto;
    margin-top: 10px;
}
.call-to-action a:hover {
    background: #007548;
}
/* end */
/* footer */
footer{
    padding-top: 100px;
    padding-bottom: 94px;
    background: #2C2C2C;
}
.footer-number{
    color: #fff;    
}

.footer-number p{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1px;
}
.footer-number a{
    font-size: 18px;
    font-weight: 600;
}
.footer-number-descr{
    font-size: 14px;
    padding-top: 18px;
}
.footer-top-button{
    color: #F76951;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    font-size: 14px;
    display: block;
    border-radius: 50px;
    text-align: center;
    position: relative;
    z-index: 4;
    font-weight: 600;
    line-height: 70px;
    max-height: 70px;
}
.footer-top-button:before,.footer-top-button:after{
    content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.footer-top-button:before {
    border: 2px solid #F76951;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.kataloq:before {
    border: 2px solid #4dac6b !important;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.kataloq {
    color: #4dac6b !important;
     margin-top: 20px;
    min-width: 192px;
}
.footer-top-button:hover::before {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}
.footer-top-button:hover::after {
    background: #fff;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.footer-top-button:after {
    border: 2px solid transparent;
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}
.footer-center,.footer-bottom{
    margin-top: 60px;
}
.footer-center ul li{
    display:inline-block;
    padding-right: 55px;
}
.footer-center ul li:last-of-type{
    padding-right:0
}
.footer-center ul li a{
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    position: relative;
}
.footer-center ul li a:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
    background: #F76A51;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: opacity 0.2s, -webkit-transform 0s 0.2s;
    transition: opacity 0.2s, -webkit-transform 0s 0.2s;
    transition: transform 0s 0.2s, opacity 0.2s;
    transition: transform 0s 0.2s, opacity 0.2s, -webkit-transform 0s 0.2s;
}
.footer-center ul li a:hover:before{
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.2s;
    transition: opacity 0.1s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.1s;
    transition: transform 0.2s, opacity 0.1s, -webkit-transform 0.2s;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.footer-center ul li a:hover span
{
    -webkit-animation: anim-trinculo 0.4s forwards;
    animation: anim-trinculo 0.4s forwards;
    display: block;
}
@keyframes anim-trinculo{
50% {
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}
51% {
    opacity: 0;
    color: #F76A51;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
75% {
    opacity: 1;
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
}
100% {
    opacity: 1;
    color: #F76A51;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}
.copy{
    color: #fff;
    font-size: 14px;
}
.copy a{
    transition: .5s all ease;
    display:inline-block;
    text-underline-offset: 2px;
}
.copy a:hover{
    text-decoration: underline;
}
.footer-social{
    text-align: right;
}
.footer-social li{
    display: inline-block;
    margin-right: 20px;
}
.footer-social li:last-of-type{
    margin-right: 0;
}
.footer-social li a i{
    color:white;
    font-size: 22px;
    transition:.5s all ease
}
.footer-social li i:hover{
    color:#1d9f3a
}
/* end */
/*static pages*/
.about-content img{
    margin:0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    padding:0;
}



@media (min-width: 1200px){
    .small-container {
        max-width: 716px;
    }
    .references-content .container {
        max-width: 1000px;
    }
}
.head {
    background-image: url(/img/all_fruits.jpg);
    background-position: 0 58%;
    padding: 20px 60px;
    color: black;
    background-size: cover;
}

.head h1 {
    position: relative;
    z-index: 10;
    text-align:center;
}
.page-content {
    padding: 50px 0;
} 
/*end*/
.gallery .highslide{
    width:25%;
    display:inline-block;
    margin-bottom:30px;
}
.gallery .highslide img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: 0.5s all ease;
    border-radius: 20px;
}
.gallery .highslide img:hover{
    opacity:0.8;
}
/*highslide*/
.highslide-viewport-size {
    background-color: #000;
}
.highslide-loading{
    display:none !important;
    left: 0 !important;
}
.highslide-container {
    z-index: 9999999 !Important;
}
.highslide-controls {
width: 195px;
height: 40px;
background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) 0 -90px no-repeat;
margin-right: 15px;
margin-bottom: 10px;
margin-top: 10px;
}
.highslide-controls ul {
position: relative;
left: 15px;
height: 40px;
list-style: none;
margin: 0;
padding: 0;
background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) right -90px no-repeat;
}
.highslide-controls li {
float: left;
padding: 5px 0;
}
.highslide-controls a {
background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif);
display: block;
float: left;
height: 30px;
width: 30px;
outline: none;
}
.highslide-controls a.disabled {
cursor: default;
}
.highslide-controls a span {
/* hide the text for these graphic buttons */
display: none;
}
/* The CSS sprites for the controlbar */
.highslide-controls .highslide-previous a {
background-position: 0 0;
}
.highslide-controls .highslide-previous a:hover {
background-position: 0 -30px;
}
.highslide-controls .highslide-previous a.disabled {
background-position: 0 -60px !important;
}
.highslide-controls .highslide-play a {
background-position: -30px 0;
}
.highslide-controls .highslide-play a:hover {
background-position: -30px -30px;
}
.highslide-controls .highslide-play a.disabled {
background-position: -30px -60px !important;
}
.highslide-controls .highslide-pause a {
background-position: -60px 0;
}
.highslide-controls .highslide-pause a:hover {
background-position: -60px -30px;
}
.highslide-controls .highslide-next a {
background-position: -90px 0;
}
.highslide-controls .highslide-next a:hover {
background-position: -90px -30px;
}
.highslide-controls .highslide-next a.disabled {
background-position: -90px -60px !important;
}
.highslide-controls .highslide-move a {
background-position: -120px 0;

}
.highslide-controls .highslide-move a:hover {
background-position: -120px -30px;
}
.highslide-controls .highslide-full-expand a {
background-position: -150px 0;
}
.highslide-controls .highslide-full-expand a:hover {
background-position: -150px -30px;
}
.highslide-controls .highslide-full-expand a.disabled {
background-position: -150px -60px !important;
}
.highslide-controls .highslide-close a {
background-position: -180px 0;
}
.highslide-controls .highslide-close a:hover {
background-position: -180px -30px;
}
/*end*/
/*category page*/
.cat-content .product-text{
    margin-bottom:30px;
}

.full-content img{
    max-width:100%;
}
.blog-content,.serv-full{
    width:50%;
    margin:0 auto;
}
.blog-content img,.serv-full img{
    border-radius: 5px;
    height:340px;
    width:100%;
    object-fit:cover;
}
.product-full .row{
    justify-content:center
}
.product-full .quote {
    margin-bottom:15px;
    display: inline-block;
    width: 25%;
    text-align: center;
    color: #46c269;
    font-weight: 600;;
}
.product-full .quote img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
    margin-bottom: 15px;
    transition: 0.5s all ease;
    border-radius: 20px;
}
.product-full .quote img:hover{
   opacity:0.8;
}
/*end*/
/*contact*/
.contact-content {
    background: #F5F5F5;
}
#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-top:70px;
        overflow: hidden;
    box-shadow: rgb(0 0 0 / 12%) 0px 1px 2px 0px;
}
/*end*/
.hamburger {
    cursor: pointer;
    margin: auto;
    transform: rotate(0);
    transition: .5s ease-in-out;
    -webkit-transform: rotate(0);
    width: 30px;
    height: 20px;
}
.hamburger div {
    background: #21257f;
    border-radius: 9px;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transform: rotate(0);
    transition: .25s ease-in-out;
    -webkit-transform: rotate(0);
    width: 100%;
}
.hamburger div:nth-child(1) {
    top: 0;
}
.hamburger div:nth-child(2), .hamburger div:nth-child(3) {
    top: 10px;
}
.hamburger div:nth-child(4) {
    top: 20px;
    width: 85%;
}
.navbar-toggler{border:none;}
.navbar-toggler:focus{
    box-shadow:none;
}

.blog-content li,.serv-full li{
   margin-left:30px;
    padding-left: 30px;
    margin-top:10px;
     position:relative;
}
.blog-content li::before,.serv-full li::before{
    content:"";
    position:absolute;
   width: 16px;
    height: 16px;
    border-radius: 50%;
   left: 0;
    top: 5px;
    border: 3px solid #3c8854;
}

/*highslider*/
.highslide-container.active {
    height: 100%;
    position: fixed !important;
    /*transform: translate(-50%, -50%);*/
    /*top: 50% !important;*/
    /*left: 50% !important;*/
    
}
.highslide-wrapper {
    transform: translate(-50%, -50%);
    top: 50% !important;
    left: 50% !important;
}
.highslide-container table:nth-of-type(1) {
    transform: translate(-50%, -50%);
    top: 50% !important;
    left: 50% !important;
}
.highslide-dimming {
    position: fixed;
    height: 100vh;
}

/*-------------------*/
/*media queries*/
@media (min-width: 991.98px) and (max-width: 1199.98px) {
    .nav-button{margin-left:15px;}
    .nav-link{
        padding: 0 20px 0 0 !important;
    }

    .advantages-small-box{padding:20px;}
    .advantages-small-title2 strong{font-size:25px;}
    .advantages-small-title2{font-size:13px;}
}
@media (min-width: 1199.98px) {
    #services .row>div:not(:last-child) .activity_box {
    border-bottom: 1px solid #ebeef4;
}
    #services .row>div:nth-child(even) .activity_box {
    border-right: none;
    }
    .nav-link{ 
    padding: 35px 35px 35px 0 !important;
    }

    .product-text{padding:0;}
    .carousel-item img{height:265px;}
    .carousel-item .circle-wrap {
        width: 365px;
        height: 365px;
    }
    #slider .title {
    font-size: 25px;
    line-height: 33px;
    }
}
@media (min-width: 992px) {
      ul.sub_menu:is(.active)  {
    top: 88px;
    left: -75px;    
    position: absolute;
    width: 200px;
    background:#efefef;
    z-index: 2;
}
}
@media (max-width: 991.98px) {
    .blog-content,.serv-full{width:100%;}
    .product-full .quote{width:33.333333%;}
    #useful {
    padding: 50px 0;
    }
      .navbar-nav .nav-link {
    margin-bottom: 30px;
    padding: 20px 0;
  }
  ul.sub_menu:is(.active) {
position: static;
padding-left: 20px;
    align-items: flex-start;
}
    .product {
     margin-bottom: 30px;
    }
    .advantages-small-title1 {
        font-size: 13px;
        line-height: 20px;
       
    }
    .advantages-small-box{width:100%;height: auto;padding: 30px}
    .advantages-small-title2{position:static;padding:0;}
    .advantages-small-title2 strong{font-size:30px;}
    .carousel-item .circle-wrap {
        width: 370px;
        height: 370px;
    }
    .custom-container {
        padding: 0 50px;
    }
    .carousel-item img {
        height: 200px;
    }
    #slider .title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom:20px;
    }
    .img-box{margin-bottom: 5px;}
    .text-wrapper p,.text-wrapper strong a{font-size:14px;}
    .carousel-control-next, .carousel-control-prev {
        width: 40px;
        height: 40px;
    }
    .navbar-toggler{
        position:absolute;
        right: 0;
        top: 24px;
    }
    .navbar-brand img{
        height: 50px;
    }
    .language a span{display:none;}
    .nav-button {
        padding: 10px 15px;
        font-size: 11px;
        margin-left: 30px;
        position: absolute;
        left: 38%;
        top:20px;
    }
    .language{
        position: absolute;
        left: 35%;
        top: 25px;
    }
    #partners{padding:50px 0;}
    .call-to-action {
    padding: 0;
}
.call-to-action .btn_wrapper {
    margin-top: 0;
}
.call-to-action h2 {
    font-size: 30px;}
    .call-to-action p {
    font-size: 14px;
}
.call-to-action a {
    padding: 15px 30px;
    background: #01ac6a;
    font-size: 14px;
}
.call-to-action .icon {
    margin-left: -30px;
    margin-right: 0;
}
.footer-top-button{top:30px;}
.footer-center ul li {
    display: inline-block;
    padding-right: 5px;
    width: calc(33.333333% - 10px);
    margin-bottom:10px;
}
.footer-bottom{margin-top:30px;}
.footer-top-button {
    width: fit-content;
    height: 55px;
    font-size: 13px;
    line-height: 55px;
    padding: 0 15px;
}
.footer-top .col-lg-3:nth-child(2) .footer-number {
    color: #fff;
    margin-top: 20px;
}
footer{padding:50px 0;}
.footer-social {
    text-align: center;
    margin-top: 20px;
}
.navbar-nav{padding:30px 15px 20px;}
.navbar-nav .nav-link{
    margin-bottom:0;
}
.about-content {
    padding: 50px 15px;
}
.head{
    background-repeat: no-repeat;
}
.gallery .highslide{width:33.333333%;}
.gallery .highslide img {
    height: 200px;
}
}
@media (min-width: 768px) {
        .product-text h2{
        margin-top: 20px;
    }
    

.frutris {
    width: 200px!important;
    height: 200px !important;
    position: absolute !important;
    top: -110px !important;
    left: 0;
    right: 0;
}
}
@media (max-width: 767.98px) {
        /* changes*/
        #slider .text-wrapper {
        margin-top: 4rem;
    }
    /* end of changes*/
   #slider .carousel-item:nth-of-type(2) img, #slider .carousel-item:nth-of-type(3) img {
    width: 200px;
    height: 200px;
}
.frutris {
    width: 100px!important;
    height: 100px !important;
    position: absolute !important;
    top: -77px !important;
   left: 0;
    right: 0;
}
    
  .product-full .quote,.gallery .highslide{width:50%;}
    #partners img, .references-content img {
    width: calc(33.333333% - 20px);
    }
    .useful-box{margin-bottom:30px;}
    #services .activity_box a {
    display: flex;
    align-items: center;
    }
    #services .box_info p {
        margin-bottom: 0;
    }
    .upper-side{
    flex-direction:column;
}
.upper-side .input-label{
    width:100% !important;
}
.button{
    width:100%;
}
     #services .activity_box .box_title {
    margin-bottom: 15px;
    }
    #services .activity_box .box_info {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding-left: 40px;
    }
    .product-text h2{
        margin-top:40px;
    }
    .useful-box img{
        margin-bottom:14px;
    }
    .ad-count{
        font-size:32px;
    }
    #advantages h2.advantages-title, #products h2.product-title, .useful-title, .partners-title{font-size:30px;}
    .useful-title{margin-bottom:22px}
    #products h2.product-title{margin-bottom: 0;}
    #products {
    padding: 50px 0;
    }
    .product {
    margin-bottom: 0;
    margin-top:60px;
}
    #services .activity_box {
    height: 140px;
    }
    .custom-container {
        padding: 0 30px;
    }
    .carousel-item .circle-wrap {
        width: 250px;
        height: 250px;
    }
    .carousel-item img {
        height: 165px;
    }
    .product-circle {
    width: 160px;
    height: 160px;
    }
    .product-img-wrap{height:100px;}
    .product-text p{
        font-size:13px;
    }
    .detail-button {
    padding: 15px 25px;
    font-size: 12px;
    }
    .product-img{height:80px;}
}
@media (max-width: 575.98px) {
        #partners img, .references-content img {
    width: calc(50% - 20px);
    }
}
@media (max-width: 400px) {
    .product-circle {
    width: 120px;
    height: 120px;
    }
   
 
    .carousel-item img {
    height: 135px;
    }
    .carousel-item .circle-wrap {
    width: 200px;
    height: 200px;
    }
   
    #slider .carousel-item {
    height: 70vh;
}
}



    /* changes*/
@media (max-width: 767.99px) {
  .product-text p {
    height: 65px;
  }
}
@media (min-width: 768px) {
  .product-text p {
    height: 80px;
  }
}

    /* end changes*/

/*end*/




