*{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}
html, body{
    height: 100%;
}
body.overflow{
    overflow: hidden;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
  }
.promo{
    height: 35px;
    line-height: 35px;
    background-color: #49A8B8;
    position: relative;
    color: #fff;
    text-align: center;
    display: block;
    text-decoration: none;
}
.promo span{
    opacity: 0.96;
}
.header{
    height: 92px;
    padding: 0 83px;
}
.logo{
    float: left;
    height: 32px;
    margin-top: 30px;
}
.mobile_menu_button{
    display: none;
}
.lang_select{
    float: right;
    position: relative;
    padding-right: 20px;
    font-weight: 500;
    height: 32px;
    line-height: 32px;
    margin-top: 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: #0A0A0A;
    cursor: pointer;
    transition: 0.3s;
}
.lang_select:hover{
    color: #49A8B8;
}
.lang_select img{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
}
.lang_dropdown_container{
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 10px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    z-index: 100;
}
.lang_select:hover .lang_dropdown_container{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}
.lang_dropdown{
    background: #FFFFFF;
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    padding: 10px 0;
}
.lang_dropdown_item{
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    text-transform: uppercase;
    display: block;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    color: #0A0A0A;
    transition: 0.3s;
}
.lang_dropdown_item:hover{
    background-color: rgba(73,168,184,0.2);
    color: #49A8B8;
}
.menu_item{
    float: right;
    margin-right: 30px;
    display: block;
    position: relative;
    font-weight: 500;
    height: 32px;
    line-height: 32px;
    margin-top: 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: #0A0A0A;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.menu_item_link{
    color: #0A0A0A;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    width: 100%;
    height: 100%;
}
.menu_item_link:hover{
    color: #49A8B8;
}
.menu_item.parent{
    position: relative;
    padding-right: 20px;
}
.menu_item.parent::after{
    content: '';
    width: 10px;
    height: 7px;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
}
.menu_item_dropdown_container{
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 10px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    width: 219px;
    z-index: 100;
}
.menu_item.parent:hover .menu_item_dropdown_container{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.menu_item_dropdown{
    background: #FFFFFF;
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    padding: 10px 0;
    display: inline-block;
}
.menu_item_dropdown_item{
    line-height: 24px;
    padding: 11px 20px 5px;
    text-transform: uppercase;
    display: block;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    color: #0A0A0A;
    transition: 0.3s;
}
.menu_item_dropdown_item:hover{
    background-color: rgba(73,168,184,0.2);
    color: #49A8B8;
}
.wrapper{
    width: 1200px;
    margin: 0 auto;
}
.wrapper.main{
    display: flex;
    justify-content: space-between;
    height: calc(100% - 180px);
    align-items: center;
}
.wrapper.wrapper_promo{
    height: calc(100% - 215px);
}
.main_photo{
    width: 588px;
    height: 553px;
    background-position: center;
    background-size: cover;
}
.main_info{
    height: 553px;
    width: 535px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.main_title{
    width: 100%;
    line-height: 60px;
    font-size: 56px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
}
.main_subtitle{
    width: 100%;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    margin-bottom: 30px;
    font-family: 'PT Serif', serif;
    font-weight: 400;
    opacity: 0.96;
}
.buttons{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
}
.button{
    width: 299px;
    height: 70px;
    line-height: 70px;
    color: #fff;
    background-color: #49A8B8;
    border-radius: 2px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}
.button:hover{
    background-color: #3A8794;
}
.opacity_button{
    width: 221px;
    height: 70px;
    line-height: 70px;
    background-color: rgba(73,168,184,0.2);
    color: #49A8B8;
    border-radius: 2px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}
.opacity_button:hover{
    background-color: rgba(73,168,184,0.3);
}
.btn-art{
  text-align: center;
  margin: auto;
}
.footer{
    height: 88px;
    padding: 0 83px;
    padding-top: 30px;
    width: 100%;
    box-sizing: border-box;
}
.rights{
    line-height: 20px;
    font-size: 14px;
    color: #000000;
    float: left;
}
.footer_item{
    float: left;
    margin-left: 30px;
    line-height: 20px;
    font-size: 14px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.5;
    transition: 0.3s;
    text-decoration: none;
}
.footer_item:hover{
    text-decoration: underline;
}
.studio{
    line-height: 20px;
    font-size: 14px;
    color: #000000;
    float: right;
    text-decoration: none;
}
.studio:hover{
    text-decoration: underline;
}


/* mobile menu */

.mobile_menu{
    position: fixed;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    top: 71px;
    left: 100%;
    width: 100%;
    height: calc(100% - 71px);
    background-color: #fff;
    z-index: 111;
    text-align: center;
    padding-top: 30px;
    box-sizing: border-box;
}
.mobile_menu.active{
    left: 0;
    overflow: scroll;
}
.mobile_menu_item{
    display: block;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    text-transform: uppercase;
    color: #0A0A0A;
    margin-bottom: 20px;
}
.mobile_menu_item_link{
    text-transform: uppercase;
    color: #0A0A0A;
    text-decoration: none;
    transition: 0.3s;
}
.mobile_menu_item.parent{
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile_menu_item_link.active{
    color: #49A8B8;
}
.mobile_menu_item.parent::after{
    content: '';
    width: 10px;
    height: 7px;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    margin-left: 10px;
}
.mobile_dropdown{
    display: none;
}
.mobile_dropdown_item{
    display: block;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    text-transform: uppercase;
    color: #0A0A0A;
    margin-bottom: 20px;
    text-decoration: none;
}

/* blog */

.blog_title{
    font-weight: bold;
    line-height: 60px;
    font-size: 56px;
    text-align: center;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-top: 30px;
    margin-bottom: 60px;
}
.wrapper.blog{
    display: flex;
    justify-content: space-between;
    width: 792px;
}
.blog_right{
    width: 180px;
}
.blog_search{
    width: 100%;
    position: relative;
    padding-bottom: 5px;
    height: 28px;
    border-bottom: 1px solid #49A8B8;
    margin-bottom: 20px;
}
.blog_search:hover{
    border-color: #3A8794;
}
.search_icon{
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
}
.clear_btn{
    position: absolute;
    bottom: 12px;
    right: 0;
    height: 12px;
    width: 12px;
    background-image: url(../img/clear.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s;
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    pointer-events: none
}
.clear_btn.active{
    opacity: 1;
    pointer-events: all;
}
.clear_btn:hover{
    background-image: url(../img/clear-hover.svg);
}
.search_input{
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 20px;
    line-height: 28px;
    font-size: 20px;
    font-family: 'PT Serif', serif;
    color: #49A8B8;
    height: 28px;
    border: none;
    width: 100%;
}
.search_input::placeholder{
    color: #49A8B8;
}
.blog_category{
    display: block;
    text-decoration: none;
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    font-family: 'PT Serif', serif;
    color: #49A8B8;
    transition: 0.3s;
}
.blog_category:hover{
    color: #3A8794;
}
.blog_left{
    width: 572px;
}
.post{
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    margin-bottom: 30px;
    display: block;
    text-decoration: none;
}
.post_title{
    font-weight: bold;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}
.post_title:hover{
    color: #49A8B8;
}
.post_cat_block{
    margin-bottom: 10px;
}
.post_cat{
    float: left;
    display: block;
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #49A8B8;
    mix-blend-mode: normal;
    text-decoration: none;
    font-family: 'PT Serif', serif;
    transition: 0.3s;
}
.post_cat:hover{
    color: #3A8794;
}
.post_date{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.4;
    font-family: 'PT Serif', serif;
    margin-left: 10px;
    float: left;
}
.post_text{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    font-family: 'PT Serif', serif;
}
.footer.blog{
    position: relative;
}
body.blog{
    height: auto;
    padding-bottom: 0;
}
.paginator{
    height: 40px;
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 70px;
}
.paginator_left{
    width: 40px;
    height: 40px;
    background-image: url(../img/paginator-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s;
    cursor: pointer;
}
.paginator_left:hover{
    background-image: url(../img/paginator-left-active.svg);
}
.paginator_right{
    width: 40px;
    height: 40px;
    background-image: url(../img/paginator-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s;
    cursor: pointer;
}
.paginator_right:hover{
    background-image: url(../img/paginator-right-active.svg);
}
.paginator_item{
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #49A8B8; 
    display: block;
    width: 40px;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}
.paginator_item:hover{
    color: #3A8794;
}
.paginator_item.active{
    background-color: #49A8B8;
    color: #fff;
}
.empty{
    widows: 330px;
    margin: 40px 0 auto;
    text-align: center;
    font-family: 'PT Serif', serif;
    line-height: 28px;
    font-size: 20px;
    text-align: center;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
}

/* post */

.wrapper_post{
    width: 760px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 80px;
}
/* .wrapper_post *{
    font-family: 'PT Serif', serif;
} */
.wrapper_post h1{
    font-weight: bold;
    line-height: 60px;
    font-size: 56px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}
.wrapper_post h2{
    font-weight: bold;
    line-height: 36px;
    font-size: 28px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.wrapper_post h3{
    font-weight: bold;
    line-height: 28px;
    font-size: 26px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.wrapper_post h4{
    font-weight: bold;
    line-height: 28px;
    font-size: 24px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.wrapper_post h5{
    font-weight: bold;
    line-height: 28px;
    font-size: 22px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.wrapper_post h6{
    font-weight: bold;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.wrapper_post p{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'PT Serif', serif;
}
.wrapper_post p b{
    font-weight: bold;
}
.wrapper_post a{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #49A8B8;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'PT Serif', serif;
    text-decoration: none;
}
.wrapper_post a:hover{
    text-decoration: underline;
}
.wrapper_post a.button.btn-art{
    color: #fff;
    line-height: 70px;
    font-family: 'Montserrat', sans-serif;
    height: 70px;
    background-color: #49A8B8;
    border-radius: 2px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}
.wrapper_post a.button.btn-art:hover{
    text-decoration: none;
    background-color: #3A8794;
}
.wrapper_post a.opacity_button.btn-art{
    width: 221px;
    height: 70px;
    line-height: 70px;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(73,168,184,0.2);
    color: #49A8B8;
    border-radius: 2px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}
.wrapper_post a.opacity_button.btn-art:hover{
    background-color: rgba(73,168,184,0.3);
}
.wrapper_post p *{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    font-family: 'PT Serif', serif;
}
.wrapper_post em{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    margin-bottom: 20px;
    font-family: 'PT Serif', serif;
}
.wrapper_post ul{
    padding-left: 22px;
    margin-bottom: 20px;
}
.wrapper_post p img{
    width: 100%;
}
.wrapper_post iframe{
    display: block;
    margin: 0 auto;
}
.wrapper_post ul li{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    font-family: 'PT Serif', serif;
    margin-bottom: 6px;
}
.wrapper_post ol{
    padding-left: 22px;
    margin-bottom: 20px;
}
.wrapper_post ol li{
    font-weight: normal;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.96;
    font-family: 'PT Serif', serif;
    margin-bottom: 6px;
}
.wrapper_post blockquote{
    padding-left: 26px;
    border-left: 3px solid #49A8B8;
    font-size: 20px;
    font-family: 'PT Serif', serif;
    font-style: italic;
    margin-bottom: 20px;
}
.wrapper_post .p_underline{
    background-color: rgba(73,168,184,0.2);
    padding: 20px;
    box-sizing: border-box;
}

/* table style */

table{
    border: 1px solid #0A0A0A;
    border-collapse: collapse;
    width: 100%;
    font-family: 'PT Serif', serif;
}
th{
    border: 1px solid #0A0A0A;
    padding: 10px;
    font-weight: 700;
}
tr{
    border: 1px solid #0A0A0A;
}
td{
    border: 1px solid #0A0A0A;
    padding: 10px;
}

@media screen and (max-width: 1260px){
    .wrapper{
        width: 1024px;
    }
    .header{
        padding: 0 52px;
    }
    .main_photo{
        width: 488px;
        height: 453px;
    }
    .main_info{
        height: 553px;
        width: 488px;
    }
    .main_title{
        width: 100%;
        line-height: 50px;
        font-size: 46px;
        color: #000000;
        margin-bottom: 30px;
        font-weight: 700;
    }
    .button{
        width: 269px;
        font-size: 14px;
    }
    .opacity_button{
        width: 198px;
        font-size: 14px;
    }
}
@media screen and (max-width: 1100px){
    html{
        height: auto;
    }
    body{
        height: auto;
        padding-bottom: 0;
    }
    .promo{
        display: none;
    }
    .header{
        height: 72px;
        padding: 0 20px;
    }
    .logo{
        margin-top: 20px;
    }
    .mobile_menu_button{
        display: block;
        width: 20px;
        height: 14px;
        margin-top: 29px;
        float: right;
        position: relative;
        transition: 0.3s;
    }
    .mobile_menu_button.active .mobile_menu_bar.top{
        transform: rotate(45deg);
        top: 6px;
    }
    .mobile_menu_button.active .mobile_menu_bar.bottom{
        transform: rotate(-45deg);
        bottom: 6px;
    }
    .mobile_menu_button.active .mobile_menu_bar.middle{
        opacity: 0;
    }
    .mobile_menu_bar{
        width: 20px;
        height: 2px;
        background-color: #49A8B8;
        position: absolute;
        left: 0;
        transition: 0.3s;
    }
    .mobile_menu_bar.top{
        top: 0;
    }
    .mobile_menu_bar.middle{
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .mobile_menu_bar.bottom{
        bottom: 0;
    }
    .wrapper{
        width: 100%;
    }
    .wrapper.main{
        flex-direction: column-reverse;
        justify-content: flex-start;
    }
    .lang_select{
        display: none;
    }
    .menu_item{
        display: none;
    }
    .main_photo{
        width: 100%;
        height: 453px;
        margin-bottom: 30px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .main_info{
        height: auto;
        width: 100%;
        padding: 0 20px;
        display: block;
        margin: 0 auto 30px;
        box-sizing: border-box;
    }
    .main_title{
        width: 100%;
        line-height: 50px;
        font-size: 46px;
        color: #000000;
        margin-bottom: 30px;
        font-weight: 700;
    }
    .buttons{
        width: 100%;
        height: auto;
        display: block;
    }
    .button{
        width: 100%;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .opacity_button{
        width: 100%;
        font-size: 16px;
    }
    .footer{
        padding: 30px 20px;
        height: auto;
        position: relative;
        box-sizing: border-box;
        text-align: center;
    }
    .rights{
        float: none;
        margin-bottom: 15px;
    }
    .footer_item{
        float: none;
        margin-bottom: 10px;
        display: block;
        margin-left: 0;
    }
    .studio{
        float: none;
    }
}
@media screen and (max-width: 800px){
    .main_photo{
        height: 300px;
        margin-bottom: 30px;
    }
    .main_title{
        line-height: 40px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    .blog_title{
        line-height: 40px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    .main_subtitle{
        margin-bottom: 20px;
    }
    .wrapper.blog{
        width: 100%;
        flex-direction: column-reverse;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .blog_left{
        width: 100%;
    }
    .blog_right{
        width: 100%;
        margin-bottom: 10px;
    }
    .blog_category{
        display: none;
    }
    .wrapper_post{
        width: 100%;
        box-sizing: border-box;
        padding: 20px 20px 60px;
    }
    /* .wrapper_post h1{
        line-height: 40px;
        font-size: 32px;
    }
    .wrapper_post p{
        font-size: 18px;
    } */
}