@import url(reset.css);
	
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;700&display=swap');

.wrap-320{
    min-width: 320px;
    width: 100%;
    overflow: hidden;
}
body{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}
body.no-scroll{
    overflow-y: hidden;
    height: 100vh;
}
*{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
b,strong{
    font-weight: 700;
}
i{
    font-style: italic;
}

.c-width{
	width: 100%;
    max-width: 1542px;
    padding: 0 30px;
    margin: 0 auto;
}
@media screen and (max-width: 750px){
    .c-width{
        padding: 0 20px;
    }
}

/* Main Style */
nav{
    background: #c62a83;
}
.nav-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding-top: 0;
}
.nav li:nth-child(2){
    margin-left: -15px;
}
.nav a{
    font: 20px 'Bitter', serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.8px;
    display: block;
    padding: 23px 15px 24px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.nav a:hover,
.nav a.show{
    color: #edab2d;
    background-color: rgba(0,0,0,.2);
}
.nav-btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
}
.nav-btn{
    width: 71px;
    height: 71px;
    display: block;
    background: center no-repeat rgba(0,0,0,.2);
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    cursor: pointer;
}
.nav-btn:hover{
    background-color: rgba(0,0,0,.3);
}
.nav-btn.glasses{
    background-image: url(../img/glasses-ico.png);
}
.nav-btn.search{
    background-image: url(../img/search-ico.png);
}
.nav-input__search{
    width: calc(100% - 71px);
    height: 71px;
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 40px;
   display: none;
}
@media screen and (max-width: 750px){
    .nav-btns{
        margin-right: -20px;
    }
    .nav-input__search{
        width: calc(100% - 31px);
        left: -20px;
    }
}

.menu-btn{
    position: relative;
    display: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 37px;
    height: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    background: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}
.menu-btn:focus{
    outline: none;
}
.menu-btn span{
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 4px;
    background: #fff;
    -webkit-transition: background 0 0.3s;
    transition: background 0 0.3s;
}
.menu-btn span::before,
.menu-btn span::after{
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    content: "";
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0;
    transition-delay: 0.3s, 0;
}
.menu-btn span::before{
    top: -10px;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}
.menu-btn span::after{
    bottom: -10px;
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}
.menu-btn.active{
    width: 67px;
    height: 67px;
    background: #9e2269;
    position: absolute;
    top: 35px;
    right: 0px;
    z-index: 101;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.menu-btn.active span{
    background: none;
    position: relative;
    top: 0;
}
.menu-btn.active span::before{
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
}
.menu-btn.active span::after{
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #fff;
}
.menu-btn.active span::before,
.menu-btn.active span::after{
    -webkit-transition-delay: 0, 0.3s;
    transition-delay: 0, 0.3s;
}
.mob-logo{
    width: 100%;
    width: 143px;
    display: none;
}
.mob-logo img{
    width: 100%;
    height: auto;
}
ul.second-lvl{
    list-style: none;
    display: none;
    background-color: rgba(0,0,0,.2);
    padding-top: 0;
}
.second-lvl li a{
    color: #fff;
    padding-left: 60px;
    font-weight: 500;
    letter-spacing: 0px;
}
@media screen and (max-width: 1450px){
    .nav li:nth-child(2){
        margin-left: -10px;
    }
    .nav a{
        font-size: 17.5px;
        padding: 25px 10px 25px;
    }
}
@media screen and (max-width: 1279px){
    .nav-flex{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nav-wrap{
        width: 100%;
        height: 100%;
        top: 0;
        position: relative;
        left: 0;
        z-index: 100;
        position: fixed;
        background: #c62a83;
        display: none;
        overflow-y: auto;
    }
    .menu-btn.active{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .nav{
        width: 100%;
        height: auto;
        display: block;
    }
    .nav li:nth-child(2){
        margin-left: 0;
    }
    .nav a{
        font-size: 24px;
        padding: 16px 30px 16px;
        position: relative;
    }
    .nav a:hover{
        color: #fdb52b;
    }
    .menu-btn{
        display: block;
    }
    .mob-logo{
        margin: 35px 0 37px 30px;
        display: block;
    }
    .second-tab:after{
        width: 19px;
        height: 11px;
        content: '';
        display: block;
        position: absolute;
        top: 25px;
        right: 30px;
        background: url(../img/menu-arrow.png);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .show.second-tab:after{
        top: 30px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .second-lvl li a{
        padding: 13px 30px 14px 60px;
    }
    .second-lvl li:last-child{
        padding-bottom: 7px;
    }
}
@media screen and (max-width: 650px){
    .mob-logo{
        width: 105px;
        margin: 20px 0 18px 20px;
    }
    .menu-btn.active{
        width: 43px;
        height: 43px;
        top: 20px;
        right: 0px;
    }
    .menu-btn span {
        width: 30px;
        height: 2px;
    }
    .menu-btn span::before,
    .menu-btn span::after{
        height: 2px;
    }
    .nav a{
        padding: 10px 20px 12px;
        font-size: 16px;
    }
    .second-tab:after{
        top: 14px;
        right: 20px;
    }
    .show.second-tab:after{
        top: 14px;
    }
    .second-lvl li a{
        color: #fff;
        padding-left: 40px;
    }
    .nav a.show{
        padding-bottom: 5px;
    }
    .second-lvl li a{
        padding: 8px 30px 9px 60px;
    }
}

/* Footer */
footer{
    background: #c72883;
    padding: 50px 0;
}
.footer-flex{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-logo{
    width: 256px;
}
.footer-logo img{
    width: 100%;
    height: auto;
    display: block;
}
.footer-list{
    margin: 0 30px 0;
    list-style: none;
    padding-top: 0;
}
.footer-list li{
    margin-bottom: 17px;
}
.footer-list li:last-child{
    margin-bottom: 0;
}
.footer-list li a{
    font: 15.98px 'Bitter', serif;
    font-weight: 700;
    color: #fff;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.footer-list li a:hover{
    color: #edab2d;
}
.footer-right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.footer-txt{
    font-size: 14px;
    line-height: 22.8px;
    color: #fff;
    text-align: right;
    font-weight: 500;
    margin-bottom: 14px;
}
footer .i-header__social{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: auto;
}
footer .i-header__social a{
    margin: 0 0 0 28px;
}
.footer-bottom{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 57px;
}
.footer-copy{
    width: 50%;
    max-width: 256px;
    padding-right: 20px;
    font-size: 12px;
    color: #e4abc7;
    font-weight: 500;
}
.footer-bottom__right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footer-dev{
    font-size: 12px;
    line-height: 18px;
    color: #e4abc7;
    font-weight: 500;
    margin-right: 30px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.footer-dev:hover{
    color: #edab2d;
}
.footer-bottom__right div{
    margin-left: 10px;
}
.footer-count{
    display: flex;
}
@media screen and (max-width: 1100px){
    .footer-copy{
        width: 40%;
    }
}
@media screen and (max-width: 850px){
    .footer-list{
        display: none;
    }
    .footer-dev{
        margin-right: 0px;
    }
}
@media screen and (max-width: 750px){
    .footer-flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .footer-right{
        margin-top: 36px;
    }
    .footer-txt{
        text-align: center;
    }
    .footer-bottom{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-bottom__right{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-dev{
        text-align: center;
        margin: 36px 0 0;
    }
    .footer-copy{
        width: 100%;
        text-align: center;
        margin-top: 34px;
        padding-right: 0;
    }
    .footer-bottom__right div{
        margin: 0 5px;
    }
}
@media screen and (max-width: 650px){
    .footer-logo{
        width: 165px;
    }
}
/* Main Style */

/*Index Style*/
.header{
    background: url(../img/header-index.jpg) center no-repeat;
    background-size: cover;
	position: relative;
}
.video-block {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;	
}
.video-block video {
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.header-block{
    width: 462px;
    background: rgba(0,0,0,.4);
    padding: 51px 70px 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
	z-index: 1;
	position: relative;	
}
.header-weather{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-weather__ico{
    width: 27px;
    height: 27px;
    margin-right: 12px;
}
.header-weather__ico.sun{
    background: url(../img/sun-ico.png);
}
.header-weather__temp{
    color: #fff;
    font-size: 32.01px;
    font-weight: 700;
    margin-right: 10px;
}
.header-weather__temp span{
    font-size: 21.09px;
    position: relative;
    top: -8px;
}
.header-weather__desc{
    font-size: 12.16px;
    line-height: 13.09px;
    color: #fff;
    font-weight: 500;
}
.i-header-date{
    font-size: 13.95px;
    color: #fff;
    margin-top: 23px;
}
.i-header__logo{
    width: 279px;
    margin-top: 46px;
}
.i-header__logo img{
    width: 100%;
    height: auto;
    display: block;
}
.i-header__logo-desc{
    width: 100%;
    margin-top: 47px;
    text-align: center;
}
.i-header__headline{
    font: 46.06px 'Bitter', serif;
    line-height: 52.06px;
}
.i-header__secline{
    font-size: 18.02px;
    line-height: 22.03px;
    font-weight: 500;
    margin-top: 18px;
}
.i-header__social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 37px;
}
.i-header__social a{
    height: 23px;
    background: url(../img/header-social.png);
    -webkit-transition: background linear .2s;
    transition: background linear .2s;
    margin: 0 9px;
    display: block;
}
.i-header__social a:hover{
    background-image: url(../img/header-social-hover.png);
}
.i-header__social a.vk{
    width: 24px;
    background-position: 0px 0px;
}
.i-header__social a.insta{
    width: 24px;
    background-position: -43px 0px;
}
.i-header__social a.youtube{
    width: 19px;
    background-position: -86px 0px;
}
.i-header__social a.rss{
    width: 19px;
    background-position: -124px 0px;
}
@media screen and (max-width: 1279px){
    .header-block{
        width: 100%;
        padding: 52px 30px 69px;
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header-weather{
        display: none;
    }
    .i-header-date{
        position: absolute;
        top: 42px;
        right: 208px;
        margin-top: 0;
    }
    .header .i-header__social{
        position: absolute;
        top: 34px;
        right: 23px;
        margin-top: 0;
    }
    .i-header__logo,
    .i-header__logo-desc{
        margin-top: 0;
    }
    .i-header__logo-desc{
        width: calc(100% - 279px);
        max-width: 520px;
        margin: 0 auto;
        padding-left: 25px;
        text-align: left;
        padding-top: 40px;
    }
    .i-header__secline{
        margin-top: 10px;
    }
}
@media screen and (max-width: 850px){
    .i-header__logo{
        margin-top: 0px;
    }
    .i-header__logo-desc{
        margin: auto 0;
        padding-left: 40px;
        padding-top: 64px;
    }
    .i-header__headline{
        font-size: 34px;
        line-height: 38px;
    }
    .i-header__secline{
        font-size: 14px;
        margin-top: 10px;
    }
}
@media screen and (max-width: 750px){
    .header-block{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 26px 20px 40px;
    }
    .i-header-date,
    .i-header__social{
        display: none;
    }
    .i-header__logo-desc{
        width: 100%;
        padding: 0;
        text-align: center;
        margin-top: 26px;
    }
}
@media screen and (max-width: 650px){
    .i-header__logo{
        width: 165px;
    }
    .i-header__logo-desc{
        font-size: 34px;
        line-height: 40px;
    }
    .i-header__secline{
        margin-top: 18px;
    }
}

.i-about{
    background: #fbeef5;
    padding: 73px 0 80px;
}
.i-headline{
    font: 50.01px 'Bitter', serif;
    line-height: 58px;
    font-weight: 700;
    text-align: center;
}
.i-about__flex{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 34px;
    position: relative;
}
.i-about__item{
    width: calc(50% - 10px);
    height: 329px;
    margin: 16px 20px 0 0;
    text-align: center;
    color: #fff;
    font: 30px 'Bitter', serif;
    line-height: 34px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.i-about__item .hover{
    width: 100%;
    height: 100%;
    background: rgba(198, 42, 131, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    z-index: 1;
}
.i-about__item:nth-child(2n){
    margin-right: 0;
}
.i-about__item:hover .hover{
    opacity: 1;
}
.i-about__item .txt{
    position: relative;
    z-index: 3;
}
@media screen and (max-width: 1200px){
    .i-headline{
        font-size: 46px;
    }
    .i-about{
        padding: 68px 0 80px;
    }
    .i-about__flex{
        margin-top: 31px;
    }
}
@media screen and (max-width: 850px){
    .i-about{
        padding: 39px 0 50px;
    }
    .i-headline{
        font-size: 40px;
    }
    .i-about__flex{
        margin-top: 17px;
    }
    .i-about__item{
        width: 100%;
        margin-right: 0;
    }
}
@media screen and (max-width: 650px){
    .i-about{
        padding: 46px 0 50px;
    }
    .i-headline{
        font-size: 34px;
        line-height: 40px;
    }
    .i-about__flex{
        margin-top: 23px;
    }
}
@media screen and (max-width: 500px){
    .i-about__item{
        font-size: 20px;
        line-height: 24px;
    }
}

.i-banner{
    width: 100%;
    background: url(../img/banner-index.jpg) center no-repeat;
    background-size: cover;
    display: block;
}
.i-banner__flex{
    width: 100%;
    height: 291px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.i-banner__headline{
    font: 50px 'Bitter', serif;
    line-height: 58px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.i-banner__ico{
    width: 154px;
    height: 130px;
    position: absolute;
    top: 83px;
    left: 103px;
    background: url(../img/banner-index-ico.png);
}
@media screen and (max-width: 1350px){
    .i-banner__flex{
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 0 68px;
    }
    .i-banner__ico{
        position: static;
    }
    .i-banner__headline{
        margin: 0 auto;
    }
}
@media screen and (max-width: 950px){
    .i-banner__headline{
        font-size: 40px;
        line-height: 46px;
        width: calc(100% - 154px);
    }
    .i-banner__headline br{
        display: none;
    }
}
@media screen and (max-width: 700px){
    .i-banner__flex{
        padding: 0;
    }
    .i-banner__ico{
        display: none;
    }
    .i-banner__headline{
        width: 100%;
        padding: 0;
        text-align: center;
    }
}
@media screen and (max-width: 550px){
    .i-banner__flex{
        height: 194px;
    }
    .i-banner__headline{
        font-size: 34px;
        line-height: 40px;
    }
}

.i-headline__wrap{
    width: 100%;
    position: relative;
}
.i-all__link{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 12px 30px 12px 18px;
    border-radius: 5px;
    background: #fbe3cd;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.i-all__link:after{
    width: 8px;
    height: 12px;
    content: '';
    display: block;
    background: url(../img/all-link-decor-news.png);
    position: absolute;
    top: 13px;
    right: 13px;
}
.i-all__link:hover{
    color: #fff;
    background: #fdb52b;
}
.i-all__link:hover:after{
    background: url(../img/all-link-decor-hover.png);
}
.i-news__flex{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 29px;
}
.news__item{
    width: calc(25% - 15px);
    min-height: 433px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px 20px 0 0;
    padding: 10px 10px 69px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
a.news__item:hover{
    text-decoration: none!important;
}
.news__item:nth-child(4n){
    margin-right: 0;
}
.news__item-date{
    width: 63px;
    height: 76px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fdb52b;
    padding-top: 6px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
	z-index: 2;
}
.news__item-date .day{
    font-size: 32px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
}
.news__item-date .month,
.news__item-date .year{
    font-size: 12px;
    line-height: 14px;
    color: #000;
    font-weight: 600;
}
.news__item-name{
    font-size: 20px;
    line-height: 26px;
    font-weight: 800;
    color: #fff;
    padding: 20px 25px 0;
    margin-top: auto;
    position: relative;
    z-index: 3;
}
.news-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    opacity: 0.4;
    top: 0;
    left: 0;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    z-index: 1;
    background-size: cover;
	background-position: center;
}
.news__item:hover .news-hover{
    background: url(../img/i-news-hover.png) center no-repeat;
    background-size: cover;
    opacity: 1;
}
.news__item:hover .news__item-date{
    opacity: 0;
}
@media screen and (max-width: 1280px){
    .i-news .i-news__flex, .i-events .i-news__flex{
        height: 453px;
        overflow: hidden;
    }
    .news__item{
        width: calc(100% / 3 - 13.34px);
    }
    .news__item:nth-child(4n){
        margin-right: 20px;
    }
    .news__item:nth-child(3n){
        margin-right: 0px;
    }
}
@media screen and (max-width: 1024px){
    .news__item{
        width: calc(50% - 10px);
    }
    .news__item:nth-child(3n){
        margin-right: 20px;
    }
    .news__item:nth-child(2n){
        margin-right: 0px;
    }
}

.i-events{
    background: #fbeef5;
    position: relative;
    padding: 74px 0 30px;
}
.i-events .i-all__link{
    background: #d5e1cc;
}
.i-events .i-all__link:hover{
    color: #fff;
    background: #3baf29;
}
.i-events .i-all__link:after{
    background: url(../img/all-link-decor-events.png);
}
.i-events .news__item-date{
    background: #3baf29;
}
.i-events .news-hover{
}
.i-events .news__item:hover  .news-hover{
    background: url(../img/i-events-hover.png) center no-repeat;
    background-size: cover;
	opacity: 1;
}

.i-news{
    background: #fbeef5;
    padding: 39px 0 80px;
    position: relative;
}
@media screen and (max-width: 850px){
    .i-events{
        padding: 35px 0 83px;
    }
    .i-news__flex{
        overflow: visible;
        height: auto;
        margin-top: 13px;
    }
    .i-headline__wrap{
        position: static;
    }
    .i-all__link{
        position: absolute;
        left: 30px;
        bottom: 0;
        top: auto;
        right: auto;
    }
    .i-news{
        padding: 7px 0 104px;
    }
    .i-all__link.news{
        bottom: 21px;
    }
}
@media screen and (max-width: 750px){
    .i-events {
        padding: 46px 0 104px;
    }
    .i-news {
        margin-top: -7px;
        padding: 0px 0 104px;
    }
    .i-all__link{
        left: 20px;
        transform: none;
        bottom: 40px;
    }
    .i-all__link.news {
        bottom: 40px;
    }
}
@media screen and (max-width: 650px){
    .i-news__flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 17px;
    }
    .news__item{
        width: 100%;
        margin-right: 0px;
        min-height: 353px;
        padding: 10px 10px 42px;
    }
    .news__item:nth-child(3n){
        margin-right: 0px;
    }
    .news__item.no-mob{
        display: none;
    }
    .news__item-name{
        font-size: 18px;
        line-height: 24px;
        padding: 20px 15px 0;
    }
}
/*Index Style*/

/* Inner page */
h1{
    font: 50px 'Bitter', serif;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 43px
}
h2{
    font: 28px 'Montserrat';
    font-weight: 800;
    line-height: 31px;
    margin: 38px 0 26px;
}
h3{
    font: 22px 'Montserrat';
    font-weight: 800;
    line-height: 27px;
    margin: 39px 0 -2px;
}
@media screen and (max-width: 1000px){
    h1{
        font-size: 36px;
        line-height: 44px;
    }
}
@media screen and (max-width: 800px){
    h1{
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 31px;
    }
    h2{
        font-size: 22px;
        line-height: 28px;
        margin: 32px 0 21px;
    }
    h3{
        font-size: 20px;
        line-height: 22px;
        margin: 32px 0 20px;
    }
}
a{
    color: #c62a83;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.inner-c a:hover{
    text-decoration: underline;
}
b,strong{
    font-weight: 700;
}
i{
    font-style: italic;
}
.breadcrumb{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
    padding-top: 19px;
    list-style: none;
}
.breadcrumb__link{
    color: #000;
    text-decoration: none;
}
.breadcrumb__link:after{
    content: '•';
    margin: 0 15px;
}
.breadcrumb__stat{
    color: #8b909d;
}

.inner-c{
    font-size: 20px;
    color: #000;
    background: #fbeef5;
    padding: 0px 0 80px;
}
.i-content{
    padding: 60px 0 0;
}
.inner-c p{
    margin-top: 23px;
    line-height: 30px;
}
ul{
    list-style: disc;
}
ol{
    list-style: decimal;
}
ul,
ol{
    padding: 28px 0 0;
    margin-top: 0;
    list-style-position: inside;
    line-height: 29px;
}
.inner-c table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
    margin-top: 34px;
}
.inner-c tr:nth-child(2n+1) td{
    background: #fdf2f8;
}
.inner-c tr:nth-child(2n) td{
    background: #f5e5ed;
}
.inner-c th{
    font-size: 16px;
    text-align: center;
    border: 1px solid #e5d0db;
    padding: 9px 10px 7px;
    line-height: 20px;
    font-weight: 700;
    background: #f5e5ed;
}
.inner-c td{
    font-size: 16px;
    border: 1px solid #e5d0db;
    padding: 20px 24px 17px;
    line-height: 20px;
}
.inner-c td.center{
    text-align: center;
}
.table-scroll{
    margin-top: 34px;
    position: relative;
    overflow-x: auto;
}
.table-scroll span{
    margin-bottom: -20px;
}

.inner-header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.inner-header .left-bl{
    width: 461px;
    height: 443px;
    padding: 31px 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background: #0b2768;
}
.in-header__logo{
    width: 224px;
}
.in-header__logo img{
    width: 224px;
    height: auto;
    display: block;
}
.in-header__txt-1{
    font: 36px 'Bitter', serif;
    line-height: 42px;
    text-align: center;
    color: #fff;
    margin-top: 39px;
}
.in-header__txt-2{
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    margin-top: 12px;
}
.in-header__slider{
    width: calc(100% - 461px);
}
.header__slider {
    display: none;
}
.header__slider .slide{
    width: 590px;
    height: 443px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.header__slider .slide-txt{
    font: 18px 'Bitter', serif;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,.5);
    padding: 35px 30px 30px 30px;
    position: absolute;
    bottom: 0;
    min-height: 123px;
}
@media screen and (max-width: 1100px){
    .inner-header .left-bl{
        width: 294px;
        height: 352px;
        padding: 27px 20px 0px;
    }
    .in-header__logo,
    .in-header__logo img{
        width: 178px;
    }
    .in-header__slider{
        width: calc(100% - 294px);
    }
    .header__slider .slide{
        width: 468px;
        height: 352px;
    }
    .header__slider .slide-txt{
        font-size: 14px;
        line-height: 18px;
        min-height: 68px;
        padding: 30px 30px 30px 30px;
    }
    .in-header__txt-1{
        font-size: 28px;
        line-height: 34px;
        margin-top: 29px;
    }
    .in-header__txt-2{
        font-size: 12px;
        line-height: 16px;
        margin-top: 7px;
    }
}
@media screen and (max-width: 1023px){
    .inner-c{
        padding-bottom: 51px;
    }
    .breadcrumb{
        display: none;
    }
}
@media screen and (max-width: 800px){
    .inner-c{
        font-size: 17px;
        padding: 0px 0px 40px;
    }
    .i-content{
        padding: 47px 0 0;
    }
    .inner-c p{
        line-height: 26px;
        margin: 10px 0 20px;
    }
    .inner-c th{
        font-size: 14px;
        line-height: 26px;
    }
    .inner-c td{
        font-size: 14px;
        line-height: 17px;
        line-height: 26px;
    }
    .table-scroll{
        margin-top: 30px;
    }
    
    .inner-header .left-bl{
        width: 266px;
        height: 317px;
        padding: 22px 20px 0px;
    }
    .in-header__logo,
    .in-header__logo img{
        width: 161px;
    }
    .in-header__slider{
        width: calc(100% - 266px);
    }
    .header__slider .slide{
        width: 468px;
        height: 317px;
    }
    .header__slider .slide-txt{
        padding: 28px 30px 25px 30px;
    }
    .in-header__txt-1{
        font-size: 25px;
        line-height: 30px;
        margin-top: 28px;
    }
    .in-header__txt-2{
        font-size: 11px;
        line-height: 14px;
        margin-top: 7px;
    }
}
@media screen and (max-width: 600px){
    .inner-c ul,
    .inner-c ol{
        padding: 10px 0 0;
    }
    .table-scroll{
        margin-top: 20px;
    }
}
@media screen and (max-width: 550px){
    .inner-header .left-bl{
        width: 100%;
    }
    .in-header__slider{
        display: none;
    }
}
/* Inner page */

/* Article Page */
.article__date{
    font: 16px 'Montserrat';
    color: #c62a83;
    padding: 0px 0 11px;
    line-height: 22.07px;
    margin-top: -6px!important;
}
.long{
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0 0;
}
p.article__foto-description{
    color: #636363;
    font-size: 16px;
    line-height: 20px;
    margin: 15px 0 25px;
    padding: 0;
}
.article__gallery{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px 0 -22px;
}
.article__gallery-item{
    width: calc(25% - 21px);
    margin-right: 28px;
    margin-bottom: 24px;
}
.article__gallery-item:nth-child(4n){
    margin-right: 0;
}
.article__gallery-foto{
    position: relative;
    cursor: pointer;
}
.article__gallery-foto img{
    width: 100%;
    height: auto;
    display: block;
}
.article__gallery-foto .hover{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    opacity: 0;
}
.article__gallery-foto .hover:hover{
    opacity: 1;
}
.article__gallery-foto .zoom-ico{
    width: 51px;
    height: 51px;
    border-radius: 50%;
    background: url(../img/zoom-ico.png) center no-repeat rgba(210,76,117,0.65);
}
p.article__gallery-description{
    font-size: 16px;
    line-height: 20px;
    margin: 11px 0 0;
    color: #636363;
}
.back-link{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    text-transform: uppercase;
    background: #f3d0e4;
    border-radius: 5px;
    margin-top: 48px;
    padding: 12px 20px 12px 38px;
    position: relative;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
a.back-link:hover{
    color: #fff;
    background: #c62a83;
    text-decoration: none;
}
.back-link:before{
    content: '';
    display: block;
    position: absolute;
    background: url(../img/back-arrow.png);
    width: 8px;
    height: 12px;
    top: 13px;
    left: 20px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.back-link:hover:before{
    background: url(../img/back-arrow-hover.png);
}
@media screen and (max-width: 1300px){
    .article__gallery-item{
        width: calc(100% / 3 - 14px);
        margin-right: 21px;
    }
}
@media screen and (max-width: 900px){
    .article__date{
        display: none;
    }
    .article__gallery-item{
        width: calc(50% - 10px);
        margin-right: 20px;
    }
    .article__gallery-item:nth-child(3n){
        margin-right: 20px;
    }
    .article__gallery-item:nth-child(2n){
        margin-right: 0px;
    }
    .long{
        margin-top: 26px;
    }
    p.article__foto-description,
    p.article__gallery-description{
        font-size: 14px;
        line-height: 18px;
    }
    p.article__gallery-description{
        margin-top: 11px;
    }
    ul, ol{
        padding-top: 0;
    }
}
@media screen and (max-width: 550px){
    .article__gallery{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 0;
    }
    .article__gallery-item{
        width: 100%;
        max-width: 400px;
        margin-right: 0;
        margin-top: 15px;
    }
    .article__gallery-item:nth-child(3n){
        margin-right: 0px;
    }
}
/* Article Page */

/* Pages Page */
.pages-flex{
    width: calc(100% + 20px);
    margin-left: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -10px;
}
.pages-link{
    width: calc(25% - 20px);
    height: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font: 22px 'Bitter';
    font-weight: 700;
    line-height: 26px;
    margin: 16px 10px 0;
    padding: 0 40px;
    text-align: center;
    color: #000;
    background: #fff;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
a.pages-link:hover{
    text-decoration: none;
    color: #fff;
    background: #c62a83;
}
@media screen and (max-width: 1050px){
    .pages-link{
        width: calc(50% - 20px);
        height: 180px;
    }
}
@media screen and (max-width: 550px){
    .pages-link{
        height: 150px;
        font-size: 18px;
        line-height: 22px;
    }
}
@media screen and (max-width: 450px){
    .pages-flex{
        width: 100%;
        margin-left: 0px;
    }
    .pages-link{
        width: 100%;
        margin: 16px 0 0;
    }
}
/* Pages Page */

/* Contacts Page */
.contacts-block{
    margin-top: -6px;
}
.contacts-item{
    margin-top: 38px;
}
.label-contacts{
    font-size: 18px;
    display: block;
    color: #c62a83;
    text-transform: uppercase;
}
.txt-contacts{
    font-size: 18px;
    color: #000;
    display: block;
    margin-top: 10px;
}
.map{
    width: 100%;
    height: 460px;
    margin-top: 38px;
    background: #ccc;
    margin-bottom: 69px;
}
@media screen and (max-width: 800px){
    .label-contacts{
        font-size: 16px;
    }
    .txt-contacts{
        font-size: 16px;
    }
    .map{
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-top: 25px;
        margin-bottom: 40px;
        height: 350px;
    }
}
/* Contacts Page */

/* Form Page */
.form-wrap{
    width: 100%;
    margin-top: 54px;
    max-width: 753px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.form-wrap .input-wrap{
    position: relative;
    margin-bottom: 13px;
}
.form-wrap input[type=text]{
    width: 100%;
    height: 38px;
    background: #fff;
    padding-left: 17px;
    font: 14px 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000;
    border: none;
    outline: none;
}
.form-wrap input[type=text].error{
    color: #ca378b;
    box-shadow: inset 0 0 0 2px #ca378b;
}
.form-wrap textarea{
    width: 100%;
    height: 184px;
    background: #fff;
    padding:10px 0 0 17px;
    font: 14px 'Montserrat', sans-serif;
    font-weight: 300;
    color: #000;
    border: none;
    outline: none;
    margin-bottom: 0px;
}
.form-wrap textarea.error{
    color: #ca378b;
    box-shadow: inset 0 0 0 2px #ca378b;
}
.form-wrap input[type=text].error::-webkit-input-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #ed1c26;
}
.form-wrap input[type=text].error::-moz-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #ed1c26;
}
.form-wrap input[type=text].error:-ms-input-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #ed1c26;
}
.form-wrap input[type=text].error:-moz-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #ed1c26;
}
.form__error-txt{
    text-align: right;
    color: #c62a83;
    font-size: 13px;
    margin: 5px 0 0!important;
    padding: 0;
}
.form-btn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top:19px;
}
.form-wrap input[type=submit],
.reset-btn{
    width: 161px;
    height: 42px;
    border-radius: none;
    border: none;
    color: #fff;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    background: #c62a83;
    border-radius: 0px;
    margin-right: 10px;
    text-align: center;
    line-height: 42px;
}
.form-wrap input[type=submit]:hover,
.reset-btn:hover{
    color: #fff;
    background: #9e2269;
}
.reset-btn{
    margin-right: 0;
}
.form-wrap .clean-input{
    width: 15px;
    height: 15px;
    position: absolute;
    display: none;
    top: 12px;
    right: 15px;
    background: url(../img/close-ico.png);
    background-size: 100% 100%;
    cursor: pointer;
}
.input-file__desc{
    font-size: 14px;
    line-height: 18px!important;
    color: #777d87;
}
.form-soglasiye{
    font-size: 16px;
    line-height: normal;
}
.form__file-upload{
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 41px;
    margin-bottom: 24px;
}
.form__file-upload input[type="file"]{
    display: none;
}
.form__file-upload_btn{
    width: 139px;
    height: 38px;
    display: block;
    font-size: 14px;
    background: #fdf8fb;
    text-align: center;
    color: #000;
    line-height: 38px;
    cursor: pointer;
    margin-right: 12px;
}
.form__file-upload_text{
    font-size: 14px;
    line-height: 38px;
    color: #777d87;
    width: calc(100% - 151px);
}
@media screen and (max-width: 800px){
    .form-wrap{
        margin-top: 20px;
    }
}
@media screen and (max-width: 500px){
    .form-btn{
        margin-top: 20px;
    }
    .form__file-upload{
        padding: 3px 3px 10px 3px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 0;
    }
    .form__file-upload label{
        width: 100%;
    }
    .form__file-upload_btn{
        width: 100%;
    }
    .form__file-upload_text{
        width: 100%;
        margin-top: 10px;
        padding-left: 6px;
    }
    .form-soglasiye{
        font-size: 15px;
    }
}
/* Form Page */

/* Catalog Page */
.inner-nav{
    width: calc(100% + 2px);
    padding-top: 25px;
    margin: 0px 0px 22px -2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
a.inner-nav__link{
    width: calc(10% - 4px);
    margin: 4px 2px 0;
    height: 99px;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    font-weight: 700;
    position: relative;
    text-align: center;
    padding: 0 10px;
}
a.inner-nav__link .txt{
    position: relative;
    z-index: 2;
}
a.inner-nav__link .hover{
    width: 100%;
    height: 100%;
    background: rgba(198, 42, 131, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
a.inner-nav__link:hover{
    text-decoration: none;
}
a.inner-nav__link:hover .hover{
    opacity: 1;
}
@media screen and (max-width: 1350px){
    a.inner-nav__link{
        width: calc(20% - 4px);
    }
}
@media screen and (max-width: 1000px){
    .inner-nav{
        margin-bottom: 0;
    }
}
@media screen and (max-width: 850px){
    a.inner-nav__link{
        width: calc(33.3% - 4px);
    }
}
@media screen and (max-width: 500px){
    a.inner-nav__link{
        width: calc(50% - 4px);
    }
}

.catalog-search{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 49px;
}
.catalog-search__label{
    width: 165px;
    font-size: 16px;
    line-height: 42px;
    font-weight: 700;
}
.catalog-search__inp{
    width: calc(100% - 348px);
    height: 42px;
    background: #fff;
    padding-left: 20px;
    font: 14px 'Montserrat';
    font-weight: 500;
}
.catalog-search_btn{
    width: 173px;
    height: 42px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 10px;
    background: #c62a83;
    cursor: pointer;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.catalog-search_btn:hover{
    background: #9e2269;
}
.catalog-flex{
    width: calc(100% + 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-top: 30px;
}
.catalog-item{
    width: calc(25% - 20px);
    margin: 20px 10px 0;
    background: #fff;
}
.catalog-img{
    width: 100%;
    height: auto;
    display: block;
}
.catalog-desc{
    width: 100%;
    padding: 18px 20px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 166px;
}
a.catalog-name{
    font-size: 20px;
    font-weight: 800;
    color: #000;
    display: block;
}
a.catalog-name:hover{
    text-decoration: none;
    color: #c62a83;
}
.catalog-view{
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    display: block;
    margin: 15px 0 10px 5px;
}
.catalog-view:before{
    content: '';
    width: 19px;
    height: 11px;
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    background: url(../img/view-ico.png);
}
.catalog-link{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: auto;
}
a.catalog-more{
    font-size: 14px;
    font-weight: 600;
    color: #c62a83;
}
a.catalog-more:hover{
    color: #9e2269;
    text-decoration: none;
}
a.catalog-onmap{
    font-size: 14px;
    font-weight: 600;
    color: #3baf29;
}
a.catalog-onmap:hover{
    color: #349525;
    text-decoration: none;
}
@media screen and (max-width: 1250px){
    .catalog-flex{
        margin-top: 20px;
    }
    .catalog-item{
        width: calc(100% / 3 - 20px);
    }
}
@media screen and (max-width: 950px){
    .catalog-item{
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 850px){
    .catalog-search{
        margin-top: 20px;
    }
}
@media screen and (max-width: 700px){
    .catalog-search{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .catalog-search__label{
        width: 100%;
    }
    .catalog-search__inp{
        width: calc(100% - 183px);
    }
}
@media screen and (max-width: 600px){
    .catalog-item{
        width: calc(100% - 20px);
    }
}
@media screen and (max-width: 550px){
    .catalog-search__inp{
        width: 100%;
    }
    .catalog-search_btn{
        margin-left: 0;
        margin-top: 10px;
    }
}

ul.pagination{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
}
.pagination a{
    width: 48px;
    height: 48px;
    background: #fff;
    font: 16px 'Montserrat';
    text-align: center;
    line-height: 48px;
    margin-right: 9px;
    color: #000;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.pagination a:hover,
.pagination a.active{
    background: #c72883;
    border-color: #c72883;
    color: #fff;
    text-decoration: none;
}
.pagination a:last-child{
    margin-right: 0;
}
.pagination a.first,
.pagination a.last,
.pagination a.prev,
.pagination a.next{
    border-color: transparent;
}
.pagination a.first,
.pagination a.first:hover{
    background: no-repeat center url(../img/pagination-first.png);
}
.pagination a.prev,
.pagination a.prev:hover{
    background: no-repeat center url(../img/pagination-prev.png);
}
.pagination a.next,
.pagination a.next:hover{
    background: no-repeat center url(../img/pagination-next.png);
}
.pagination a.last,
.pagination a.last:hover{
    background: no-repeat center url(../img/pagination-last.png);
}
@media screen and (max-width: 700px){
    .pagination{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media screen and (max-width: 450px){
    .pagination a.first,
    .pagination a.last{
        display: none;
    }
}
/* Catalog Page */

/* Catalog-2 Page */
.catalog-search.hotel{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.hotel .catalog-search__label{
    width: 192px;
}
.hotel .catalog-search__inp{
    width: calc(100% - 375px);
}
.cat-tags{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 7px 0 -3px;
}
.cat-tag{
    height: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 0px 10px;
    border-radius: 3px;
    line-height: 25px;
    margin-top: 4px;
    margin-right: 4px;
}
.cat-tag.star{
    background: #c62a83;
}
.cat-tag.pool{
    background: #3baf29;
}
@media screen and (max-width: 750px){
    .hotel .catalog-search__inp{
        width: calc(100% - 183px);
    }
}
@media screen and (max-width: 550px){
    .hotel .catalog-search__inp{
        width: 100%;
    }
}
/* Catalog-2 Page */

/* News Page */
.news__filter{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: -5px;
}
.news__filter-search{
    width: calc(100% - 744px);
    position: relative;
    margin-right: 20px;
}
.news__filter-search-btn{
    position: absolute;
    top: 12px;
    right: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
}
.news__filter-search-btn svg{
    width: 16px;
    height: 16px;
    fill: #9f9f9f;
}
.news__filter input[type=text]{
    width: 100%;
    height: 42px;
    background: #fff;
    padding: 0 5px 0 20px;
    font: 14px 'Montserrat';
    font-weight: 500;
    color: #000;
    border: none;
    outline: none;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.news__filter input[type=text]:focus{
    box-shadow: inset 0 0 0 1px #c62a83;
}
.news__filter-calendar{
    position: relative;
    width: 184px;
    margin-right: 8px;
}
.news__filter-calendar-ico{
    width: 19px;
    height: 19px;
    background: url(../img/calendar-news.svg);
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    z-index: 5;
    cursor: pointer;
    outline: none;
    border: none;
    position: absolute;
    top: 11px;
    right: 15px;
}
.news__filter-calendar-input:focus{
    box-shadow: inset 0 0 0 1px #c62a83;
}
/*.news__filter-calendar-input:focus + .news__filter-calendar-ico{
    background: url(../img/calendar-news-hover.svg);
}*/
.filter-btn{
    width: 161px;
    height: 41px;
    text-align: center;
    color: #ffffff;
    background: #c62a83;
    font-size: 14px;
    padding: 7px 12px 7px 12px;
    margin: 0px 10px 0px 0;
    cursor: pointer;
    font-weight: 600;
    line-height: 27px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    border: none;
    text-transform: uppercase;
}
.filter-btn:last-child{
    margin-right: 0;
}
.filter-btn:hover{
    background: #9e2269;;
}
@media screen and (max-width: 1200px){
    .news__filter-search{
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 1000px){
    .news__filter{
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 780px){
    .news__filter-calendar{
        width: calc(50% - 4px);
        margin-bottom: 15px;
    }
    .news__filter-calendar:last-of-type{
        margin-right: 0;
    }
}
@media screen and (max-width: 450px){
    .news__filter-calendar{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .filter-btn{
        width: calc(50% - 5px);
        font-size: 13px;
    }
}
/* News Page */

/* Catalog-3 Page */
.hotel-desc{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 48px 0 50px;
}
.hotel-foto{
    width: calc(52% - 25px);
}
.hotel-foto img{
    width: 100%;
    height: auto;
    display: block;
}
.hotel-right{
    width: calc(48% - 25px);
    margin-left: 50px;
}
.hotel-map{
    width: 100%;
    border: 18px solid #fff;
    position: relative;
    display: block;
}
.hotel-map img{
    width: 100%;
    height: auto;
    display: block;
}
.hotel-link{
    width: 180px;
    padding: 15px 0 13px;
    text-align: center;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    color: #000;
    position: absolute;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
a.hotel-link:hover{
    text-decoration: none;
    color: #c62a83;
}
.hotel-desc__txt{
    margin-top: 36px;
}
p.hotel-txt{
    margin-top: 0;
}
p.hotel-txt span{
    font-weight: 700;
}
.reviews-ico{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 33px;
}
.reviews-ico a{
    margin-right: 6px;
}
.slick-slider.hotel-gallery{
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-top: 32px;
    margin-bottom: 50px;
}
.hotel-slide{
    margin: 0 14px;
}
.map.hotel{
    margin-bottom: 0;
}
@media screen and (max-width: 1150px){
    .hotel-desc{
        display: block;
    }
    .hotel-foto{
        width: 100%;
    }
    .hotel-right{
        width: 100%;
        margin-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        margin-top: 30px;
    }
    .hotel-desc__txt{
        width: calc(55% - 15px);
        margin-right: 15px;
        margin-top: 0;
    }
    .hotel-map{
        width: 45%;
    }
}
@media screen and (max-width: 950px){
    .hotel-right{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .hotel-desc__txt{
        width: 100%;
        margin-right: 0px
    }
    .hotel-map{
        width: 100%;
        max-width: 400px;
        margin-top: 30px;
    }
}
@media screen and (max-width: 800px){
    p.hotel-txt{
        margin-bottom: 0;
    }
    .hotel-map{
        border: 10px solid #fff;    
    }
}
/* Catalog-3 Page */