.intec-content{
    max-width: 1330px !important;
}


*::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}
*::-webkit-scrollbar-thumb {
    background-color: #FE4B1B;
    border: 2px solid #fff;
    border-radius: 4px;
}
*::-webkit-scrollbar-track {
    background: #fff;
}
::selection {
    background: #FE4B1B;
    color: #fff;
}

/* FOLLOW BUTTON */
.widget-follow-button-background{
    position: fixed;
    width: 251px;
    height: 251px;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99;
    overflow: hidden;
    opacity: 0;

    transition: opacity .3s ease-out;
}
.widget-follow-button-background .widget-follow-button-background-wrapper{
    background-color: #FE4B1B;
    border-radius: 50%;
    width: 100%;
    height: 100%;

    transition: transform .4s ease-out;
}
.widget-follow-button-text{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    color: #FDFFFD;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    pointer-events: none;
    z-index: 99;
    width: 190px;
    height: 190px;
    padding: 20px;
    opacity: 0;

    transition: opacity .3s ease-out;
}
.widget-follow-button-text .widget-follow-button-text-wrapper{
    text-align: center;

    transition: transform .4s ease-out;
}

@media all and (max-width: 1000px) {
    .widget-follow-button-background{
        width: 158px;
        height: 158px;
    }
    .widget-follow-button-text{
        width: 158px;
        height: 158px;
        font-size: 16px;
    }
}
/* end FOLLOW BUTTON */


/* NAVBAR */
.widget-navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 31px 0 0;
}
.widget-navbar .widget-pagination{
    display: flex;
    align-items: flex-end;
    color: #1B1B1B;
    font-size: 31px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.widget-navbar .widget-pagination .swiper-pagination-current{
    font-size: 30px;
    font-weight: bold;
    line-height: 100%;
    margin: 0 2px 0 0;
}
.widget-navbar .widget-pagination .swiper-pagination-total{
    font-size: 20px;
}
.widget-navbar .widget-navigations{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 150px;
    height: 63px;
    border-radius: 32px;
    border: 1px solid #C9CACB;
    background: #FFF;
}
.widget-navbar .widget-navigations:after,
.widget-navbar .widget-navigations:before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1px;
    height: 14px;
    background-color: #C9CACB;
}
.widget-navbar .widget-navigations:after{
    top: auto;
    bottom: 0;
}
.widget-navbar .widget-navigation{
    display: flex;
    justify-content: center;
    padding: 23px 20px;
    width: 100%;

    transition: opacity .3s ease-out;
}
.widget-navbar .widget-navigation.swiper-button-disabled{
    opacity: .5;
    pointer-events: none;
}
.widget-navbar .widget-navigation svg path{
    transition: stroke .3s ease-out;
}
.widget-navbar .widget-navigation:not(.swiper-button-disabled):hover path{
    stroke: #FE4B1B;
}
/* end NAVBAR */


/* BANNER */
@keyframes circleTextRotate {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(-360deg);
    }
}
.widget-banner{
    position: relative;
    overflow: hidden;
    padding: clamp(81px, 12vw, 136px) 0 clamp(20px, 12vw, 136px);
}
.widget-banner .widget-header{}
.widget-banner .widget-header-under-title{
    color: #1B1B1B;
    font-size: clamp(20px, 4vw, 56.7px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: .5px;
    text-transform: lowercase;
    text-align: left;
    margin: 0 0 6px;
}
.widget-banner .widget-header-title{
    color: #FE4B1B;
    font-size: clamp(53px, 8vw, 120px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
}
.widget-banner .widget-header-blocks{
    margin: 63px 0 0;
}
.widget-banner .widget-header-description{
    color: #1B1B1B;
    font-size: clamp(20px, 3vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: 142.5%;
    text-align: left;
}
.widget-banner .widget-header-call-form-wrap{
    margin: 58px 0 0;
}
.widget-banner .btn {
    display: inline-block;
    padding: 37.5px;
    position: relative;
    color: #FE4B1B;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.widget-banner .btn-circle,
.widget-banner .btn-text,
.widget-banner .btn-white-circle {
    position: absolute;
}
.widget-banner .btn-circle {
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 100%;
    width: 100%;
    box-shadow: 0 0 1px 1px #FE4B1B;
    transition: .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-banner .btn-white-circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background: #FE4B1B;
    display: flex;
    transition: .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-banner .btn-white-circle svg {
    width: 24px;
    height: 24px;
    margin: auto;
}
.widget-banner .btn-text {
    top: 50%;
    transform: translate(-3px, -50%);
    white-space: nowrap;
    z-index: 2;
    padding: 22.5px 0;
    transition: .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-banner .btn:hover .btn-circle {
    transform: scale(0);
}
.widget-banner .btn:hover .btn-white-circle {
    transform: translate(-50%, -50%) scale(1);
}
.widget-banner .btn:hover .btn-text {
    transform: translate(48px, -50%);
}
.widget-banner .widget-header-link-wrap{
    margin: 30px 0 0 100px;
}
.widget-banner .widget-header-link{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 18px;
    font-weight: 900;
    line-height: normal;
    text-decoration: none;
    color: #1B1B1B;
    width: 168px;
    height: 168px;
    margin: 0;
}
.widget-banner .widget-header-link span{
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-banner .widget-header-link:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FE4B1B;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;

    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-banner .widget-header-link div{
    -webkit-animation: linear 20s circleTextRotate infinite;
    animation: linear 20s circleTextRotate infinite;
}
.widget-banner .widget-header-link div span{
    opacity: 1;
}

@media all and (max-width: 1000px) {
    .widget-banner .widget-header-under-title br{
        display: none;
    }
    .widget-banner .btn-text {
        white-space: normal;
        width: 260px;
    }
}
@media all and (max-width: 720px) {
    .widget-banner .widget-header-link-wrap{
        margin: 23px auto 0;
    }
    .widget-banner .widget-header-under-title{
        margin: 0 0 11px;
    }
    .widget-banner .widget-header-blocks{
        margin: 0;
    }
    .widget-banner .widget-header-call-form-wrap{
        margin: 24px 0 0;
    }
}
@media all and (max-width: 350px) {
    .widget-banner .widget-header-description br{
        display: none;
    }
}
/* end BANNER */

.widget-about-wrap[data-follow-text]{
    cursor: pointer;
}

/* ADVANTAGES 2 */
.widget-advantages-2{
    position: relative;
    overflow: hidden;
}
.widget-advantages-2 .widget-content{
    height: 750vh;
}
.widget-advantages-2 .widget-items-wrap{
    position: relative;
}
.widget-advantages-2 .widget-items{
    height: 100vh;
    position: relative;
}
.widget-advantages-2 .widget-preview-item{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #1B1B1B;
    background-image: none;
}
.widget-advantages-2 .widget-preview-item .widget-item-name{
    color: #FDFFFD;
    font-size: clamp(30px, 5vw, 90px);
    font-style: normal;
    font-weight: 900;
    line-height: 142.5%;
    text-transform: lowercase;
}
.widget-advantages-2 .widget-preview-item .widget-item-name span{
    display: block;
    color: #FDFFFD;
    font-size: clamp(30px, 4vw, 50px);
    font-style: normal;
    font-weight: 400;
    line-height: 142.5%;
    text-transform: lowercase;
}
.widget-advantages-2 .widget-items-wrapper{
    position: relative;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    clip-path: circle(0% at 50% 50%);
}
.widget-advantages-2 .widget-item{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    opacity: 0;
}
.widget-advantages-2 .widget-item:first-child{
    opacity: 1;
}
.widget-advantages-2 .widget-item-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.widget-advantages-2 .widget-item-name{
    color: #1B1B1B;
    text-align: center;
    font-size: calc((1vw + 1vh) * 2.6);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.widget-advantages-2 .widget-box{
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
.widget-advantages-2 .widget-item-colors-lines{
    position: absolute;
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.widget-advantages-2 .widget-item-colors-line{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.widget-advantages-2 .widget-item-colors-line:nth-child(odd){
    transform: translateY(100%);
}
.widget-advantages-2 .widget-item-colors-line:nth-child(even){
    transform: translateY(-100%);
}
.widget-advantages-2 .widget-item-color-wrap{
    padding: clamp(10px, 2vw, 30px);
}
.widget-advantages-2 .widget-item-color{
    /*flex: 0 0 154px;*/
    width: clamp(66px, 12vw, 154px);
    height: clamp(66px, 12vw, 154px);
    border-radius: clamp(13px, 3vw, 42px);
}

.widget-advantages-2 .widget-item-words-lines{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.widget-advantages-2 .widget-item-words-line{
    display: flex;
}
.widget-advantages-2 .widget-item-words-line:nth-child(odd){
    transform: translateX(100%);
}
.widget-advantages-2 .widget-item-words-line:nth-child(even){
    transform: translateX(-100%);
}
.widget-advantages-2 .widget-item-word-wrap{
    padding: clamp(10px, 1vw, 30px);
}
.widget-advantages-2 .widget-item-word{
    padding: clamp(29px, 4vw, 56px) clamp(44px, 8vw, 85px);
    border-radius: clamp(21px, 3vw, 42px);
    border: 1px solid #C9CACB;
    background: #FFF;
    color: #545654;
    text-align: center;
    font-size: clamp(16px, 3vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    text-transform: lowercase;
    white-space: nowrap;
}

@media all and (min-width: 2000px) {
    .widget-advantages-2 .widget-item-color{
        width: 200px;
        height: 200px;
    }
    .widget-advantages-2 .widget-item-name{
        font-size: 62px;
    }
    .widget-advantages-2 .widget-item-word{
        font-size: 36px;
    }
}
@media all and (max-width: 768px) {
    .widget-advantages-2 .widget-item-colors-line{
        min-height: 100vh;
    }
    .widget-advantages-2 .widget-item-color-wrap{
        height: 100%;
    }
}
@media all and (max-width: 550px) {
    .widget-advantages-2 .widget-item-name{
        font-size: 28px;
        max-width: 80%;
    }
}
/* end ADVANTAGES 2 */


/* SHARE */
.widget-share{
    position: relative;
    overflow: hidden;
    background-color: #F3F3F3;
    padding: clamp(56px, 14vw, 200px) 0 clamp(50px, 21vw, 312px);
}
.widget-share .widget-background-icon{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    width: 100%;
}
.widget-share .widget-background-icon svg{
    width: 100%;
    height: auto;
}
.widget-share .widget-item{
    position: relative;
}
.widget-share .widget-item-title{
    color: #1B1B1B;
    font-size: clamp(30px, 6vw, 86px);
    font-style: normal;
    font-weight: 900;
    line-height: 108%;
    text-align: right;
}
.widget-share .widget-item-title span{
    display: block;
    font-size: clamp(16px, 3vw, 38px);
    font-weight: 700;
    margin: 28px 0 0;
}
.widget-share .widget-item-description{
    color: #1B1B1B;
    text-align: right;
    font-size: clamp(16px, 2.8vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin: 70px 0 0;
}
.widget-share .widget-item-socials{
    display: flex;
    align-items: flex-start;
    position: relative;
    margin: -97px 0 0;
    transform: translateX(calc(-17% + 4px));
}
.widget-share .widget-item-social-wrap{
    display: inline-block;
    position: relative;
    border-radius: 50%;
    text-decoration: none;
}
.widget-share .widget-item-social-wrap:first-child{
    transform: translate(131px, -233px);
}
.widget-share .widget-item-social{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #1B1B1B;
    background: #F3F3F3;
    overflow: hidden;
    cursor: pointer;
}
.widget-share .widget-item-social:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1B1B1B;
    pointer-events: none;

    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget-share .widget-item-social:hover:before{
    transform: translate(-50%, -50%) scale(1);
}
.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social{
    width: clamp(138px, 26vw, 412px);
    height: clamp(138px, 26vw, 412px);
}
.widget-share .widget-item-social-wrap[data-role="telegram"] .widget-item-social{
    width: clamp(174px, 40vw, 632px);
    height: clamp(174px, 40vw, 632px);
}
.widget-share .widget-item-social-icon{
    position: relative;
    display: flex;
	width: calc(20% - 2.8px);
    height: calc(20% - 2.8px);
    max-width: 98px;
    max-height: 98px;
    min-width: 48px;
    min-height: 48px;
}
.widget-share .widget-item-social-icon svg{
	width: 100%;
	height: auto;
}
.widget-share .widget-item-social-icon svg .wrap,
.widget-share .widget-item-social-icon svg .icon{
    transition: fill .6s ease-out;
}
.widget-share .widget-item-social:hover .widget-item-social-icon svg .wrap{
    fill: #FFF;
}
.widget-share .widget-item-social:hover .widget-item-social-icon svg .icon{
    fill: #1B1B1B;
}

.widget-share .widget-item-social-icon-bird{
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-100%, -60px);
    opacity: 1;
	width: 74%;
    height: 57%;

    transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.widget-share .widget-item-social-icon-bird svg{
	width: 100%;
    height: auto;
}
.widget-share .widget-item-social:hover .widget-item-social-icon-bird{
    transition-delay: .1s;
    transform: translate(-128px, -60px);
    opacity: 1;
}

.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social .widget-item-social-icon-bird{
	left: auto;
	right: 0;
	transform: translate(115%, -34px) scale(-1, 1);
}
.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social:hover .widget-item-social-icon-bird{
	transform: translate(78px, -34px) scale(-1, 1);
}

.widget-share .widget-item-text{
    color: #545654;
    text-align: center;
    font-size: clamp(16px, 2.8vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin: -259px 37px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.widget-share .widget-item-text svg{
    transform: translate(-166px, 21px);
}
.widget-share .widget-icon-mobile{
	display: none;
}
@media all and (max-width: 1440px){
	.widget-share .widget-item-socials{
		transform: translateX(calc(-8% + 4px));
	}
}
@media all and (max-width: 1250px){
	.widget-share .widget-item-social-icon-bird{
		transform: translate(-100%, -48px);
	}
	.widget-share .widget-item-social:hover .widget-item-social-icon-bird{
		transform: translate(-94px, -48px);
	}
	.widget-share .widget-item-socials {
		transform: translateX(calc(-12% + 4px));
	}
	.widget-share .widget-item-description{
		margin: 56px 0 0;
	}
	.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social .widget-item-social-icon-bird{
		transform: translate(115%, -26px) scale(-1, 1);
	}
	.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social:hover .widget-item-social-icon-bird{
		transform: translate(56px, -26px) scale(-1, 1);
	}
}
@media all and (max-width: 1000px){
	.widget-share .widget-item-socials{
		margin: 0;
		margin-top: 80px;
	}
	.widget-share .widget-item-text{
		margin: 0;
		margin-top: 16px;
		padding-top: 27px;
	}
	.widget-share .widget-item-socials{
		transform: none;
		justify-content: center;
	}
	.widget-share .widget-item-social-wrap:first-child{
		transform: translate(0, -43px);
	}
	.widget-share .widget-item-text{
		position: relative;
		text-align: left;
		flex-direction: row;
		justify-content: flex-start;
	}
	.widget-share .widget-item-text svg{
		display: none;
	}
	.widget-share .widget-item-text svg.widget-icon-mobile{
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(40px, -100%);
	}
	.widget-share .widget-item-title,
	.widget-share .widget-item-description{
		text-align: left;
	}
	.widget-share .widget-item-description{
		margin: 30px 0 0;
	}
	.widget-share .widget-item-title{
		font-weight: 600;
	}
	.widget-share .widget-item-social-icon-bird{
		transform: translate(-100%, -30px);
	}
	.widget-share .widget-item-social:hover .widget-item-social-icon-bird{
		transform: translate(-60px, -30px);
	}
	.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social .widget-item-social-icon-bird{
		transform: translate(115%, -26px) scale(-1, 1);
	}
	.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social:hover .widget-item-social-icon-bird{
		transform: translate(44px, -26px) scale(-1, 1);
	}
}
@media all and (max-width: 550px){
	.widget-share{
		padding: clamp(56px, 14vw, 200px) 0 50px;
	}
    .widget-share .widget-background-icon{
        width: 140%;
    }
	.widget-share .widget-item-title span{
		margin-top: 8px;
	}
	.widget-share .widget-item-description{
		margin: 24px 0 0;
	}
	.widget-share .widget-item-description br {
		display: none;
	}
	.widget-share .widget-item-social-icon-bird{
		transform: translate(-100%, -16px);
	}
	.widget-share .widget-item-social:hover .widget-item-social-icon-bird{
		transform: translate(-37px, -16px);
	}
	.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social .widget-item-social-icon-bird{
		transform: translate(115%, -22px) scale(-1, 1);
	}
	.widget-share .widget-item-social-wrap[data-role="whatsapp"] .widget-item-social:hover .widget-item-social-icon-bird{
		transform: translate(34px, -22px) scale(-1, 1);
	}
}
/* end SHARE */


/* BLACK CIRCLE */
.widget-black-circle-wrap{
    position: relative;
    overflow: hidden;
}
/* end BLACK CIRCLE */


.popup-window.sw24PopupPro .popup-window-close-icon{
    background: none;
    transform: translate(-36px, 36px);
    opacity: 1 !important;
}
.popup-window.sw24PopupPro .popup-window-close-icon:before,
.popup-window.sw24PopupPro .popup-window-close-icon:after{
    background-color: #C9CACB;

    transition: background-color .3s ease-out;
}
.popup-window.sw24PopupPro .popup-window-close-icon:hover:before,
.popup-window.sw24PopupPro .popup-window-close-icon:hover:after{
    background-color: #FE4B1B;
}

/* LEAVE BLOCK */
.widget-leave-block{
    position: relative;
    background-color: #fff;
    padding: 87px 85px;
    overflow: hidden;
    width: 910px;
    margin: 0 auto;
}
.widget-leave-block .widget-leave-block-background{
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    pointer-events: none;
}
.widget-leave-block .widget-leave-block-background svg{
    height: auto;
}
.widget-leave-block .widget-leave-block-title{
    position: relative;
    color: #1B1B1B;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 144%;
}
.widget-leave-block .widget-leave-block-description{
    position: relative;
    color: #545654;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 46px;
}
.widget-leave-block .widget-leave-block-description span{
    font-weight: 500;
    color: #1B1B1B;
}
.widget-leave-block .widget-leave-block-social-networks{
    position: relative;
    display: flex;
    gap: 11px;
    margin-top: 52px;
}
.widget-leave-block .widget-leave-block-social-network{
    display: block;
    padding: 0 36px;
    text-decoration: none;
}
.widget-leave-block .widget-leave-block-social-network-icon{
    display: flex;
    justify-content: center;
}
.widget-leave-block .widget-leave-block-social-network-text{
    color: #1B1B1B;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
    margin-top: 16px;

    transition: color .3s ease-out;
}
.widget-leave-block .widget-leave-block-social-network:hover .widget-leave-block-social-network-text{
    color: #FE4B1B;
}
@media all and (max-width: 950px) {
    .widget-leave-block{
        width: calc(100vw - 40px);
        padding: 40px;
    }
    .widget-leave-block .widget-leave-block-background{
        justify-content: flex-end;
        align-items: flex-end;
        height: 100%;
        width: 100%;
    }
    .widget-leave-block .widget-leave-block-background svg{
        width: 30%;
    }
}
@media all and (max-width: 768px) {
    .widget-leave-block .widget-leave-block-description{
        margin-top: 16px;
    }
    .widget-leave-block .widget-leave-block-social-networks{
        margin-top: 34px;
        gap: 20px;
    }
    .widget-leave-block .widget-leave-block-social-network{
        padding: 0;
    }
    .widget-leave-block .widget-leave-block-background svg{
        width: 26%;
    }
    .popup-window.sw24PopupPro .popup-window-close-icon{
        transform: translate(-20px, 20px);
    }
}
@media all and (max-width: 600px) {
    .widget-leave-block{
        height: 100%;
        width: 100%;
        padding: 40px 20px;
    }
    .widget-leave-block .widget-leave-block-social-networks{
        justify-content: center;
    }
    .widget-leave-block .widget-leave-block-title,
    .widget-leave-block .widget-leave-block-description{
        text-align: center;
    }
    .widget-leave-block .widget-leave-block-background svg{
        width: 18vh;
    }
}
/* end LEAVE BLOCK */


@media all and (max-width: 600px) {
    #skyweb24_html_default{
        height: 100%;
    }
}
.ns-bitrix.c-news-list.c-news-list-reviews-list-1 .news-list-item-date{display:none;}