.imgloading-container{
	display: none!important;
}
#main-content{
	position: relative;
	z-index: 2;
}
footer.et-l.et-l--footer{
	position: relative;
	z-index: 1;
}

#phonering-alo-phoneIcon{
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 1rem;
  width:6rem;
  height: 6rem;
  cursor: pointer;
}
.phonering-alo-ph-circle {
    width:6rem;
    height:6rem;
    top:0px;
    left:0px;
    position:absolute;
    border-radius:100% !important;
    border-width:2px;
    border-style: solid;
    opacity:.1;
    -webkit-animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition:all .5s;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%
}
.phonering-alo-phone:hover .phonering-alo-ph-circle {
    opacity:.5;
}
.phonering-alo-ph-circle-fill {
    width:4.5rem;
    height:4.5rem;
    top:0.75rem;
    left:0.75rem;
    position:absolute;
    border-radius:100% !important;
    border-width:2px;
    border-style: solid;
    opacity: 1;
    -webkit-animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition:all .5s;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%
}

.phonering-alo-phone:hover .phonering-alo-ph-circle-fill {
    opacity:.75!important;
}

.phonering-alo-ph-img-circle {
    width:3rem;
    height:3rem;
    top:1.5rem;
    left:1.5rem;
    position:absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('icon-phone.png');
    border-radius:100% !important;
    border-width:2px;
    border-style: solid;
    border-color: transparent;
    -webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%
}

/* Colors */
.phonering-alo-ph-circle {
  background-color:transparent;
  border-color: #6fb5cf;
}
.phonering-alo-phone:hover .phonering-alo-ph-circle {
    border-color:#41667e;
}
.phonering-alo-ph-circle-fill {
  background-color: #6fb5cf;
  border-color: transparent;
}
.phonering-alo-phone:hover .phonering-alo-ph-circle-fill {
    background-color:#41667e;
}
.phonering-alo-ph-img-circle {
    background-color: #6fb5cf;
}
.phonering-alo-phone:hover .phonering-alo-ph-img-circle {
    background-color:#41667e;
}


@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
        -webkit-opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        -webkit-opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
        -webkit-opacity:.1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }

    100% {
        opacity:1;
        -webkit-transform:none;
        -ms-transform:none;
        transform:none
    }
}

@keyframes fadeInRight {
    0% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }

    100% {
        opacity:1;
        -webkit-transform:none;
        -ms-transform:none;
        transform:none
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity:1
    }

    100% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity:1
    }

    100% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
                transform:rotate(0) scale(.5) skew(1deg);
        opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.1
    }
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
                transform:rotate(0) scale(.5) skew(1deg);
        opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }
}


/* FIXED HEADER */
header.et-l.et-l--header{
    position: fixed!important;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    box-shadow: 0px -2px 5px 0px #0000007d;
}
.logged-in.admin-bar header.et-l.et-l--header{
    top: calc(0px + 32px);
}
#main-content{
    margin-top: auto;
}
@media (max-width: 782px) {
    header.et-l.et-l--header{
        height: auto;
    }
    #main-content{
        margin-top: auto;
    }
    .logged-in.admin-bar header.et-l.et-l--header{
        top: calc(0px + 46px);
    }


}
/* /FIXED HEADER */

@media (max-width: 600px) {
	.header-logo.et_pb_image_0_tb_footer.et_pb_module{
		margin-left: auto!important;
		margin-right: auto!important;
	}
}

/* Default Sidebar and Leftarea */

@media (min-width: 981px) {
    #main-content > .container #left-area{
        width: 100%!important;
        padding-right: 30px;
        margin-right: 0!important;
    }
    #main-content > .container #sidebar {
        padding: 0;
        width: 0%!important;
        display: none;

    }
}
@media (max-width: 980px) {
    #main-content > .container #sidebar{
        padding-top: 30px;
        border-top: 1px solid #eee;
        display: none;
    }
}
#main-content > .container{
    width: 100%;
    /*max-width: 1030px;*/
    padding: 0 15px;
}
#main-content > .container #sidebar{
    padding-right: 0;
    border-right: 0;
    display: none;
}
#main-content > .container #sidebar  .et_pb_widget{
    width: 100%;
}
#main-content > .container #sidebar  .et_pb_widget ul li{

}
#main-content > .container #sidebar .et_pb_widget .widgettitle{
 
}
#main-content > .container #sidebar  .et_pb_widget ul li a{

}
#main-content > .container:before{
    display: none;
}

/* /Divi Builder Layout - Classic Header _ Logo and Menu ONLY */

.mobile_nav.opened .mobile_menu_bar:before {
    content: "\4d";
}

@media (max-width: 980px) {

    /* remove top and bot padd */
    .custom-main-menu .et_mobile_menu {
        padding: 0;
    }

    /* mobile-menu ul styling */
    .custom-main-menu .et_mobile_menu {
        min-width: 250px;
        left: auto;
        right: 0;
        z-index: 100;
        list-style: none;
        overflow-y: auto;
        max-height: 80vh;
        padding-left: 0;
        padding-bottom: 0;
        width: auto;
        text-align: left;
    }

    .custom-main-menu .et_pb_menu__wrap {
        margin: 0!important
    }

    .custom-main-menu .et_mobile_nav_menu {
        display: block!important;
        margin-top: 5px;
    }

    .custom-main-menu .et_pb_menu__menu {
        display: none!important;
    }

    /* FOOTER always desk / mobile-menu mobile hide */
    .custom-footer-menu .et_mobile_nav_menu {
        display: none!important
    }

    /* FOOTER always desk / mobile-menu mobile hide */
    .custom-footer-menu .et_pb_menu__menu {
        display: block!important
    }
}
h1, h2, h3, h4, h5, h6{
	padding-bottom: 0;
	margin-bottom: 0;
}



.header-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-row-col-1{
	width: 275px!important;
	margin-right: 10px!important;
	margin-bottom: 0!important;
	margin-left: 0!important;
}
.header-row-col-2{
	width: calc(100% - 285px - 285px)!important;
	margin-bottom: 0!important;
	margin-left: 0!important;
	margin-right: 0!important;
	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}
@media (max-width: 1120px){
	.header-row-col-1{
		width: 200px!important;
	}
	.header-row-col-2{
		width: calc(100% - 210px - 285px)!important;
	}
}
.header-row-col-3{
	width: 275px!important;
	margin-left: 10px!important;
	margin-bottom: 0!important;
	margin-right: 0!important;
	
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row;
}

.header-menu{
	margin-bottom: 0!important;
	padding-left: 10px!important;
	padding-right: 10px!important;
	padding-top: 0!important;
	padding-bottom: 0!important;
}
.header-menu ul.et-menu.nav li{
	margin: 0!important;
	padding: 0 10px!important;
}
.header-menu ul.et-menu.nav li a{
	margin: 0!important;
	padding: 0!important;

	font-size:22px!important;
	line-height: 27px!important;
}

.et_pb_button.header-tel{
	margin-bottom: 0!important;
	padding-left: calc(2rem + 20px)!important;
	padding-right: 10px!important;
	padding-top: 0!important;
	padding-bottom: 0!important;
	line-height: 42px!important;
	border: none!important;

	font-size:22px!important;
	line-height: 27px!important;
}
.header-row-col-2 .et_pb_button_module_wrapper.et_pb_button_0_tb_header_wrapper.et_pb_module {
	margin-bottom: 0!important;
}
.header-socials{
	margin-bottom: 0!important;
	padding-left: 10px!important;
	padding-right: 10px!important;
	padding-top: 0!important;
	padding-bottom: 0!important;
	display: flex;
	align-items: center;
	justify-content: flex-end;

	font-size:22px!important;
	line-height: 27px!important;
}
.header-socials.et_pb_social_media_follow li{
	margin-bottom: 0!important;
	margin-top: 0px;
}
.header-socials.et_pb_social_media_follow li a{
	margin-right: 0!important;
}
.header-lang{
	margin-bottom: 0!important;
	padding-left: 20px!important;
	padding-right: 0px!important;
	padding-top: 0!important;
	padding-bottom: 0px!important;

	font-size:22px!important;
	line-height: 27px!important;
}
ul.header-lang-ul{
	padding: 0!important;
	margin: 0;
	list-style: none!important;
	list-style-type: none!important;
    line-height: 1!important;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
ul.header-lang-ul li{
	padding: 0 10px;
	margin: 0;
}
ul.header-lang-ul li a{
	color: #000;
	display: inline-block;

	font-size:22px!important;
	line-height: 27px!important;
}
.et_pb_button_0_tb_header, .et_pb_button_0_tb_header:after{
	transition: none!important;
}

.header-messengers .et_pb_code_inner{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-messanger-link{
	display: inline-block;
	line-height: 1;
	vertical-align: bottom;
}
.header-messengers .et_pb_code_inner .header-messanger-link:first-child{
	margin-right: 25px;
}

.header-messanger-link-viber{
	display: inline-block;
}
.header-messanger-link-viber-mob{
	display: none;
}
@media (max-width: 782px) {
	.header-messanger-link-viber{
		display: none;
	}
	.header-messanger-link-viber-mob{
		display: inline-block;
	}
}

.intro-row{
	display: flex;
	align-items: stretch;
	height: 100%;
	justify-content: space-between;
}
.intro-row-col-1{
	width: 60%!important;
	margin-right: 0!important;
	margin-bottom: 0!important;
}
.intro-row-col-2{
	width: 40%!important;
	margin-right: 0!important;
	margin-bottom: 0!important;
}
.intro-row-img{

}


.intro-blocks{

}
.intro-blocks .et_pb_text_inner{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.intro-block-wrap{
	/*flex: 1;*/
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 120px;
	padding-left: 10px;
	padding-right: 10px;
}
.intro-block-wrap.intro-block-wrap-1{
	text-align: center;
	background-image: url('intro-bg-1.png');
}
.intro-block-wrap.intro-block-wrap-2{
	text-align: center;
	background-image: url('intro-bg-2.png');
}
.intro-block-wrap.intro-block-wrap-3{
	text-align: left;
	background-image: url('intro-bg-3.png');
}

.intro-block-title{
	margin-bottom: 0px;
	padding-bottom: 0;
	font-size: 0.75em;
}
.intro-block-price{
	display: inline-block;
	width: 100%;

	
}



.li-img-text .et_pb_text_inner{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.li-img-wrap{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-right: 20px;
	margin-bottom: 20px;
}
.li-img{
	margin-right: 10px;
	width: 1em;
	height: 1em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.li-img-mikrob{
	background-image: url('mikrob.png');
}
.li-img-clean-serv{
	background-image: url('clean-serv.png');
}
.li-img-mask{
	background-image: url('mask.png');
}


.section-title{
	/*text-align: center;*/
}
h1.title{
	position: relative;
	display: inline-block;
	width: auto;

	margin-bottom: 0.5em;
	padding-bottom: 0.4em;
}
h1.title:after{
	content: '';
	width: 100%;
	max-width: 190px;
	height: 5px;
	background-color: #6FB5CF;
	border-radius: 10px;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}

.offers-row{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	height: 100%;
}
.offers-row-col-1{
	flex: 1;
}
.offers-row-col-2{
	flex: 1;
}
.offers-row-col-3{
	flex: 1;
}

.offer-block{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	margin-bottom: 20px;

	cursor: pointer;
	transition: all .2s ease;
}
.offer-block:hover{
	box-shadow: 0px -2px 20px -5px #6fb5cfcc;
	transition: all .2s ease;
}
.offer-title{
	text-align: center;
	margin-bottom: 30px;
}
.offer-price{

}

.popup-title{
	background-size: contain;
	background-position: 15px center;
	background-repeat: no-repeat; 
}

#popup-offer-1-section .popup-title{
	background-image: url('offer1-icon.png');
	background-size: 120px auto;
	padding-left: calc(120px + 15px + 15px)!important;
}
#popup-offer-2-section .popup-title{
	background-image: url('offer2-icon.png');
	background-size: 100px auto;
	padding-left: calc(100px + 15px + 15px)!important;
}
#popup-offer-3-section .popup-title{
	background-image: url('offer3-icon.png');
	background-size: 80px auto;
	padding-left: calc(80px + 15px + 15px)!important;
}
#popup-offer-4-section .popup-title{
	background-image: url('offer4-icon.png');
	background-size: 50px auto;
	padding-left: calc(50px + 15px + 15px)!important;
}
#popup-offer-5-section .popup-title{
	background-image: url('offer5-icon.png');
	background-size: 45px auto;
	padding-left: calc(45px + 15px + 15px)!important;
}
#popup-offer-6-section .popup-title{
	background-image: url('offer6-icon.png');
	background-size: 70px auto;
	padding-left: calc(70px + 15px + 15px)!important;
}
#popup-offer-7-section .popup-title{
	background-image: url('offer7-icon.png');
	background-size: 70px auto;
	padding-left: calc(70px + 15px + 15px)!important;
}
#popup-offer-8-section .popup-title{
	background-image: url('offer8-icon.png');
	background-size: 150px auto;
	padding-left: calc(150px + 15px + 15px)!important;
}
#popup-offer-9-section .popup-title{
	background-image: url('offer9-icon.png');
	background-size: 100px auto;
	padding-left: calc(100px + 15px + 15px)!important;
}

.popup-row-col-1:after{
	position: absolute;
	content: '';
	
	width: 200px;
	height: 150px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;

	bottom: 0;
	right: 0;
	background-image: url('popup-cat-2.png');
}
#popup-offer-8-section .popup-row-col-1:after{
	right: -60px;
}

.popup-row-col-2:after{
	position: absolute;
	content: '';
	
	width: 200px;
	height: 150px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;

	top: 0;
	right: 100%;
	background-image: url('popup-cat-1.png');
}
.popup-row-col-2 .et_pb_module.et_pb_text.contact-form-module.et_pb_text_align_center.et_pb_bg_layout_light{
	margin-left: 0!important;
	margin-right: 0!important;
}
.et_pb_module .mobile_menu_bar:before{
	top: 1px;
}

.popup-row-col-1 .et_pb_module.et_pb_text.text-dot {
	margin-bottom: 15px!important;
	z-index: 2;
}
html body {
    line-height: 1.2;
}
@media (max-width: 980px){
	.popup-row-col-1:after{
		display: none;
	}
	.popup-row-col-2:after{
		display: none;
	}
	.text-dot .et_pb_text_inner p{
		flex: 1;
	}
}


.cat{
	position: relative;
}
.cat:after{
	position: absolute;
	content: '';
	
	width: 200px;
	height: 150px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.cat.cat-1:after{
	top: 0;
	left: 0;
	background-image: url('cat1.png');
}
.cat.cat-2:after{
	top: -40px;
	right: 0;
	background-image: url('cat2.png');
}
.cat.cat-3:after{
	top: 0px;
	left: 0;
	background-image: url('cat3.png');
}
.cat.cat-4:after{
	top: -100px;
    right: 10%;
	background-image: url('cat4.png');
}


.price{
	font-size: 1.4em;
	font-family: 'gilroy-extrabold',Helvetica,Arial,Lucida,sans-serif;
	font-weight: 800;
}

ul.flex-ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
ul.flex-ul li{
	margin: 0;
	padding: 10px;
	position: relative;
}


.img-text-row{
	display: flex;
	align-items: stretch;
	height: 100%;
	justify-content: space-between;
}
.img-text-row-col-1{
	width: 40%!important;
	margin-bottom: 0!important;
	margin-right: 0!important;
}
.img-text-picture{
	height: 100%;
}
.img-text-picture .et_pb_image_wrap {
	height: 100%;
}
.img-text-picture .et_pb_image_wrap img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.img-text-row-col-2{
	flex: 1;
	width: 60%!important;
	margin-bottom: 0!important;
	margin-right: 0!important;
}
.img-text-row-col-2 h1.title{
	/*margin-bottom: 0.3em;
    padding-bottom: 0.2em;*/
}
.text-check-row{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 10px;
	padding-bottom: 0px;
}
.text-check-row-col-1{
	padding-right: 20px;
	padding-bottom: 20px;
	flex: 1;
}
.text-check-row-col-2{
	padding-left: 20px;
	padding-bottom: 20px;
	flex: 1;
}
.text-check-row-col-title{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-bottom: 10px;
}
.text-check-row-col-title img{
	height: 30px;
	margin-right: 10px;
	width: auto;
}
.text-check-row-col-title h3{
	white-space: nowrap;
}

.text-dot .et_pb_text_inner{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.dot{
	font-size: 1em;
	height: 1em;
	width: 1em;
	border-radius: 100%;
	margin-right: 20px;
	background: #41667E;
}


.review-block{
	height: 100%;
}
.review-block .et_pb_text_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}
.review-circle-wrap{
	padding: 60px 0;
	width: 100%;
	margin-bottom: 30px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.review-row .offers-row-col-1 .review-block .review-circle-wrap{
	background-image: url('review1.png');
}
.review-row .offers-row-col-2 .review-block .review-circle-wrap{
	background-image: url('review2.png');
}
.review-row .offers-row-col-3 .review-block .review-circle-wrap{
	background-image: url('review3.png');
}
.review-circle-wrap .offer-title{
	margin-bottom: 0;
}

.section-title-full.section-title h1.title:after{
	
	max-width: 100%;

}

.img-text-row-col-2-mission{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.li-check-wrap{
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
}
.li-check{
	height: 1em;
	width: 1em;
	background-image: url('check.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 10px;
}


.team-block{

}
.team-img-wrap{
	margin-bottom: 30px;
	text-align: center;
}
.team-img-wrap img{
	height: 200px;
	width: auto;
	max-height: 100%;
	max-width: 100%;
}


.contact-wrap{
	display: flex;
	align-items: center;
	justify-content: center;

}
.contact-phone{
	margin-right: 10px;
	margin-left: 10px;
}
.contact-email{
	margin-left: 10px;
}
.contact-phone-p{
	padding-bottom: 0;
}
.contact-block{
	font-size: 35px;
}
.contact-block a{
	font-size: 35px;
	line-height: 1.2em;
	color: #000;
	font-weight: 700;
}
.contact-icon{
	font-size: 1em;
	height: 1em;
	width: 1em;

	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.contact-icon-phone{
	background-image: url('phone.png');
}
.contact-icon-telegram{
	background-image: url('telegram.png');
}
.contact-icon-viber{
	background-image: url('viber.png');
}
.contact-icon-email{
	background-image: url('email.png');
}
	
.gradient-btn:not(.phonering-alo-phone){
	line-height: 1.5!important;
	transition: all 0ms ease 0ms, background-image .2s ease, background .2s ease, box-shadow .1s ease!important;
}
.gradient-btn:not(.phonering-alo-phone):hover{
	box-shadow: 0px -2px 20px -5px #6fb5cfcc;
	transition: box-shadow .1s ease;
}


.footer-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-row-col-1{

}
.footer-row-col-2{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}


.before-from-col-center{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.contact-form-wrap{
	padding-top: 20px;
}
.contact-form-wrap p{
	padding-bottom: 0;
}
.contact-form-wrap .submit-wrap{
	position: relative;
}
.contact-form-wrap  .wpcf7-not-valid-tip{
	font-size: 18px;
	line-height: 1.1;
	padding-bottom: 10px;
	color: #41667E;
}
.contact-form-wrap .ajax-loader{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
}
.contact-form-wrap  .wpcf7-response-output{
	border-color: #b1cfdf33!important;
	background-color: #41667E;
	color: #fff;
	margin: 20px 0em!important;
    padding: 10px!important;
    font-size: 18px;
    line-height: 1.2;
    border-radius: 30px;
}
.contact-form-wrap input.wpcf7-form-control{
	background-color: #b1cfdf33;
	border-radius: 30px;
	padding: 20px 30px;
	line-height: 1;
	display: inline-block;
	width: 100%;
	text-align: center;
	border: 0;
	outline: none;
	font-size:22px;
	margin-bottom: 10px;
}
.contact-form-wrap input.wpcf7-form-control::placeholder{
	color: #000;
}
.contact-form-wrap input.wpcf7-submit{
	margin-top: 10px;
	background-color: #B1CFDF;
	font-weight: 700;
	color: #fff;
	text-align: center;
	font-size: 30px;
	padding: 18px 30px;
	cursor: pointer;
	transition: all .2s ease;
}
.contact-form-wrap textarea.wpcf7-form-control{
	background-color: #b1cfdf33;
	border-radius: 30px;
	padding: 20px 30px;
	line-height: 1;
	display: inline-block;
	width: 100%;
	text-align: center;
	border: 0;
	outline: none;
	font-size:22px;
	margin-bottom: 10px;
	resize: none;
	height: 10rem;
}
.contact-form-wrap textarea.wpcf7-form-control::placeholder{
	color: #000;
}

.contact-form-wrap input.wpcf7-submit:hover{
	transition: all .2s ease;
	box-shadow: 0px -2px 20px -5px #6fb5cfcc;
}


.popup-section{
	height: 100%;
	width: 100%;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;

	display: none;
}
.popup-section{
  /*display: flex;*/
  align-items: center;
  justify-content: center;
}
.popup-row{
  height: auto;
  padding: 30px;
  display: flex;
}
.popup-row{
	/*height: 100%;*/
}
.popup-row-col-1{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.popup-row-col-2{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.popup-close-row{
	position: absolute;
	right: 15px;
	width: 70px!important;
	height: 70px!important;
}
.popup-close{
	cursor: pointer;
}
.popup-close-row{
    top: calc(15px + 32px);
}
@media (max-width: 782px) {
    .popup-close-row{
        top: calc(20px + 46px);
    }
}
@media (max-width: 768px){
	.popup-row-col-1{
		align-items: flex-start;
		justify-content: center;
	}
	.popup-row-col-2{
		align-items: center;
		justify-content: center;
	}
	.popup-row-col-2 .et_pb_text_8_tb_footer.et_pb_module{
		margin-left: auto!important;
		margin-right: auto!important;
	}
}

.popup-section{
	overflow: auto;
}

@media (max-width: 1200px) {
	.intro-row-col-1{
		width: 70%!important;
	}
	.intro-row-col-2{
		width: 30%!important;
	}
	.header-menu ul.et-menu.nav li a{
		font-size: 20px!important;
	}
	.header-lang{
		padding-left: 0px!important;
	}
}
@media (max-width: 1030px) {
	.header-menu ul.et-menu.nav li a{
		font-size: 17px!important;
	}
}
@media (max-width: 980px) {
	.header-row-col-1{
		width: auto!important;
	}
	.header-row-col-2{
		display: none;
	}
	.header-row-col-3{
		width: auto!important;
		flex: 1;
	}
	.header-lang{
		padding-right: 20px!important;
	}

	.cat:after{
		display: none;
	}


	.intro-row-col-1{
		width: 100%!important;
	}
	.intro-row-col-2{
		display: none;
	}
	.intro-blocks .et_pb_text_inner{
		justify-content: center;
		flex-wrap: wrap;
	}
	.intro-block-wrap{
		padding-left: 20px;
    	padding-right: 20px;
    	margin-bottom: 20px;
    	padding-top: 100px;
	}

	.li-img-text .et_pb_text_inner{
		justify-content: center;
	}
	.offers-row-col-1{
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 0;
	}
	.offers-row-col-2{
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 0;
	}
	.offers-row-col-3{
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 0;
	}

	.img-text-row-col-1{
		display: none;
	}
	.img-text-row-col-2{
		width: 100%;
	}
	.before-from-col-center{
		justify-content: center;
		align-items: center;
	}
	.contact-form-module.et_pb_text_26.et_pb_module{
		margin-right: auto!important;
		margin-left: auto!important;
	}
	.footer-row-col-1{
		margin-bottom: 0;
	}
	.team-img-wrap img{
		height: auto;
		max-height: 200px;
	}
	.contact-form-module.et_pb_text_6_tb_header.et_pb_module{
		margin-right: auto!important;
		margin-left: auto!important;
	}
	.contact-form-module.et_pb_text_12_tb_header.et_pb_module{
		margin-right: auto!important;
		margin-left: auto!important;
	}
}
@media (max-width: 767px) {

	.popup-row{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.header-lang{
		padding-right: 15px!important;
		padding-left: 15px!important;
	}
	ul.header-lang-ul{
		margin-bottom: 5px;
	}
	ul.header-lang-ul li{
		padding-right: 5px!important;
		padding-left: 5px!important;
	}
	ul.header-lang-ul li a{
		font-size: 20px!important;
    	line-height: 1!important;
	}
	.header-messengers .et_pb_code_inner .header-messanger-link:first-child{
		margin-right: 10px;
	}
	.header-messengers .contact-icon{
		font-size: 18px;
	    height: 18px;
	    width: 18px;
	}
	.header-menu{
		padding-right: 0px!important;
		padding-left: 0px!important;
	}
	.header-socials{
		padding-right: 0px!important;
		padding-left: 0px!important;
	}
	.header-socials.et_pb_social_media_follow li{
		margin-top: 0;
	}
	.et_pb_menu__wrap .mobile_menu_bar{
		transform: none;
	}
	.custom-main-menu .et_mobile_nav_menu{
		margin-right: 0;
		margin-left: 0;
		margin-top: 0;
	}
	.header-row-col-1{
		margin-right: 0!important;
	}
	.header-row-col-3{
		margin-left: 5px!important;
	}

	.intro-blocks .et_pb_text_inner{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.li-img-wrap{
		align-items: flex-start;
	}
	.li-img{
		margin-top: 5px;
	}
	.offers-row{
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		flex-direction: row;
		/*margin-right: -10px;
		margin-left: -10px;*/
	}
	.offers-row-col-1{
		padding-left: 5px;
    	padding-right: 5px;
		flex: 50%;
		flex-grow: inherit;
		flex-shrink: 1;
		width: 50%!important;
		margin-bottom: 0px;
	}
	.offers-row-col-2{
		padding-left: 5px;
    	padding-right: 5px;
		flex: 50%;
		flex-grow: inherit;
		flex-shrink: 1;
		width: 50%!important;
		margin-bottom: 0px;
	}
	.offers-row-col-3{
		padding-left: 5px;
    	padding-right: 5px;
		flex: 100%;
		flex-grow: inherit;
		flex-shrink: 1;
		width: 100%!important;
		margin-bottom: 0px;

		display: flex;
		flex-wrap: wrap;
	    justify-content: flex-start;
	    align-items: center;
	    flex-direction: row;
	}
	.offers-row-col-3 .offer-block{
		flex: calc(50% - 5px - 5px);
		margin-left: 5px;
		margin-right: 5px;
		flex-grow: inherit;
		flex-shrink: 1;
		width: calc(50% - 5px - 5px)!important;
		margin-bottom: 0px;
	}
	.offer-block{
		height: 300px!important;
	}
	.offer-block .offer-title{
		font-size: 30px;
	}
	.offer-block .offer-price{
		font-size: 20px;
	}

	.text-check-row{
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	.text-check-row-col-1{
		padding-right: 0;
	}
	.text-check-row-col-2{
		padding-left: 0;
	}

	.contact-form-wrap input.wpcf7-form-control{
		font-size: 20px;
		padding: 15px 20px;
	}
	.contact-form-wrap input.wpcf7-submit{
		font-size: 25px;
		padding: 12px 20px 15px 20px;
	}
	.text-dot .et_pb_text_inner p{
		flex: 1;
	}
	.before-from-col-center{
		align-items: flex-start;
	}
	.mob-title-center{
		width: 100%;
		
	}
	.mob-title-center h4{
		text-align: center!important;
	}

	.review-row{
		align-items: stretch;
	}
	.review-row .offers-row-col-1{
		flex: 100%;
		flex-grow: inherit;
		flex-shrink: 1;
		width: 100%!important;
		margin-bottom: 20px;
	}
	.review-row .offers-row-col-2{
		flex: 100%;
		flex-grow: inherit;
		flex-shrink: 1;
		width: 100%!important;
		margin-bottom: 20px;
	}
	.review-row .offers-row-col-3{
		flex: 100%;
		flex-grow: inherit;
		flex-shrink: 1;
		width: 100%!important;
		margin-bottom: 20px;
	}

	.popup-close-row{
		width: 50px!important;
		height: 20px!important;
		right: 5px;
		padding-top: 3px;
	}
	.text-dot .et_pb_text_inner{
		/*flex-direction: column;*/
	}

	.contact-block a{
		font-size: 30px;
	}

}

@media (max-width: 500px) {
	.offer-block{
		height: 250px!important;
	}
	.offer-block .offer-title{
		font-size: 25px;
		margin-bottom: 20px;
	}
	.offer-block .offer-price{
		font-size: 18px;
		white-space: nowrap;
	}
	body #page-container .et_pb_section .et_pb_button_1.gradient-btn{
		white-space: nowrap;
		font-size: 22px!important;
	}
	.header-lang{
		padding-right: 0px!important;
		padding-left: 0px!important;
	}
	.footer-row{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer-row-col-1 .et_pb_module.et_pb_image.et_pb_image_0_tb_footer{
		text-align: center;
	}
	.footer-row-col-2{
		margin-top: 20px;
		justify-content: center;
		align-items: center;
	}
}
@media (max-width: 400px) {
	.offer-block{
		height: 225px!important;
	}
	.offer-block .offer-title{
		font-size: 20px;
		margin-bottom: 20px;
		white-space: nowrap;
	}
	.offer-block .offer-price{
		font-size: 16px;
		white-space: nowrap;
	}
}

@media (min-width: 981px) {
	.custom-main-menu-mob{
		display: none!important;
	}
}

.wp-block-wpzoom-instagram-block .zoom-instagram-widget__item, .zoom-instagram .zoom-instagram-widget__item{
	display: inline-block;
margin-right: 10px;
}

.info__list {
	padding:0 !important;
  margin-bottom: 0
}
.info__item {
  display: flex;
  align-items: center;
  gap: 15px
}
.info__item:not(:last-child) {
  margin-bottom: 16px
}
.info__item p {
  margin-bottom: 0
}
.info__item-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #6fb5cf;
  display: grid;
  place-items: center
}
.info__item-icon svg {
  width: 50%
}
@media (min-width:75em) {
  .info__item p {
    font-size: 24px;
    line-height: 1.3
  }
  .info__item-icon {
    width: 52px;
    height: 52px
  }
}
@media (min-width:47.98em) {
	.section-info {
		padding: 0 !important;
	}
	.section-info {
		display:flex;
		align-items: center;
	}
	.section-info:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url(/wp-content/uploads/2025/03/promo-decor.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center
	}
	.section-info .et_pb_column  .et_pb_image_wrap img{
		clip-path: ellipse(100% 130% at 100% 50%)
	}
}