@charset "UTF-8";
@font-face {
    font-family: 'Raleway';
    src: url("../fonts/Raleway-Bold.eot");
    src: local("☺"), url("../fonts/Raleway-Bold.woff") format("woff"), url("../fonts/Raleway-Bold.ttf") format("truetype"), url("../fonts/Raleway-Bold.svg") format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url("../fonts/Raleway-Medium.eot");
    src: local("☺"), url("../fonts/Raleway-Medium.woff") format("woff"), url("../fonts/Raleway-Medium.ttf") format("truetype"), url("../fonts/Raleway-Medium.svg") format("svg");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url("../fonts/Raleway-SemiBold.eot");
    src: local("☺"), url("../fonts/Raleway-SemiBold.woff") format("woff"), url("../fonts/Raleway-SemiBold.ttf") format("truetype"), url("../fonts/Raleway-SemiBold.svg") format("svg");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Philosopher';
    src: url("../fonts/Philosopher-Regular.eot");
    src: local("☺"), url("../fonts/Philosopher-Regular.woff") format("woff"), url("../fonts/Philosopher-Regular.ttf") format("truetype"), url("../fonts/Philosopher-Regular.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Philosopher';
    src: url("../fonts/Philosopher-Bold.eot");
    src: local("☺"), url("../fonts/Philosopher-Bold.woff") format("woff"), url("../fonts/Philosopher-Bold.ttf") format("truetype"), url("../fonts/Philosopher-Bold.svg") format("svg");
    font-weight: 700;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
body {
    font-family: 'Raleway';
    font-size: 16px;
    background-color: white;
    color: black;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 1300px;
    margin: 0 auto;
}

.header__top {
    position: fixed;
    left: 0;
    width: 100%;
    transition: 0.5s linear;
    z-index: 1001;
}

.header__top-wrapper {
    position: relative;
    z-index: 1002;
}

.header__top-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    border-bottom: 1px solid #FFFFFF;
}

.header__logo {
    height: 100%;
}

.logo-pic img {
    height: 100%;
}

.header__top .social-networks {
    display: flex;
    align-items: center;
}

.header_active {
    /* transition: 0.5s linear; */
    top: 0;
}

.header_active .header__top-wrapper {
    background-image: url(../img/PNG/header-act.png);
    /* background-color: #000; */
    background-size: contain;
}

.header_active_sec .header__top-wrapper {
    background-image: url(../img/PNG/header-act.png);
    /* background-color: #000; */
    background-size: contain;
    transition: 0.5s linear;
    top: 0;
}

.header__top .nav__items {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mus {
    display: none;
}

.header__top .nav__items .nav__item {
    list-style-type: none;
    max-width: 360px;
}

.header__top .nav__items .nav__item a {
    color: white;
    /* color: #000; */
    text-decoration: none;
    font-weight: 500;
    margin-right: 45px;
    transition: all 0.3s;
    font-size: 1.125em;
    position: relative;
}

.header__top .nav__items .nav__item.under a {
    margin-right: 60px;
}

.under-part {
    position: absolute;
    opacity: 0;
    transition: 0.3s all;
    pointer-events: none;
}

.under-ul {
    margin-top: 14px;
    background: #FFFFFF;
    border-radius: 10px;
    width: 180px;
    color: #000000;
    padding: 5px 0px;
    border: 1px solid rgb(211, 208, 208);
}

.under {
    position: relative;
}

.under>a:after {
    content: '';
    background-image: url(../img/SVG/header_arr_bot.svg);
    background-size: 9px;
    height: 9px;
    width: 9px;
    position: absolute;
    top: 40%;
    right: -17px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.under-ul li {
    color: #000000;
    list-style-type: none;
}

.under-ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header__top .nav__items .under-ul li>a {
    text-decoration: none;
    font-size: 0.95em !important;
    padding: 15px 10px;
    width: 100%;
    display: block;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(51, 51, 51, 0.8);
}

.under-ul li:hover a {
    color: #000000 !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}

.under-ul li:hover {
    background-color: white;
    transition: color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}

.nav ul li:hover .under-part {
    transition: color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
    opacity: 1;
    transition: 0.5s all;
    pointer-events: auto;
}

.lang_choice:after {
    content: '';
    background-image: url(../img/SVG/lang-icon.svg);
    background-size: 7px;
    height: 7px;
    width: 7px;
    margin-left: 5px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.header__language a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.header__top .nav__items .nav__item a:hover {
    color: #C8AF8B;
}

.lang_block {
    position: relative;
    margin-left: 20px;
    font-size: 16px;
    z-index: 2;
    text-transform: uppercase;
}

.lang_choice {
    display: block;
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 500;
    border-radius: 3px;
    text-decoration: none;
    padding: 7px 25px 7px 10px;
    /* background: url('../img/lang_arr.svg') right 8px center / 11px no-repeat, rgba(255, 255, 255, 0.3); */
}

.other_lang {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    z-index: 2;
    top: 100%;
    overflow: hidden;
    border-top: none;
    border-radius: 10px;
}

.lang {
    display: block;
    color: white;
    padding: 5px 10px;
    transition: 0.2s;
    text-decoration: none;
    background-color: #DFA871;
}

.lang.active,
.lang.active:hover {
    color: #fff;
    /*background-color: #2F90C9;*/
    background-color: #24A7FF;
}

.lang:hover {
    color: #24A7FF;
    background-color: white;
}

.social-network {
    height: 25px;
    width: 25px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    margin: 0px 0 0 10px;
    border-radius: 50%;
    padding: 18px;
    border: 1px solid #FFFFFF;
}

.social-network:hover {
    background-color: rgb(36, 167, 255);
}

.social-network.youtube {
    background-image: url(../img/SVG/youtube.svg);
}

.social-network.instagram-icon {
    background-image: url(../img/SVG/insta.svg);
}

.social-network.facebook {
    background-image: url(../img/SVG/facebook.svg);
    background-size: 10px;
}

.burger {
    display: none;
    width: 25px;
    height: 25px;
    background: url(../img/SVG/menu.svg) no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.burger_active {
    background: url(../img/SVG/menu-close.svg) no-repeat center;
    background-size: contain;
}

.header__center-wrapper .container {
    border-bottom: 1px solid #FFFFFF;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s linear;
}

.header_active_sec .header__center-wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header_active .header__center-wrapper .container {
    border-top: transparent;
    border-bottom: transparent;
    height: 0;
    transition: 0.5s linear;
    margin-top: -30px;
}

.header_active .header__top-wrapper .container {
    border-top: transparent;
    border-bottom: transparent;
}

.header_active_sec .museums .nav__items .nav__item a {
    font-weight: 500;
    font-size: 0.9em;
    letter-spacing: 0.02em;
     color: #333333; 
    /*color: #fff;*/
}

.header_active_sec .museums .nav__items .nav__item a:hover {
    color: #24A7FF;
}

.museums .nav__items .nav__item a {
    font-weight: 500;
    font-size: 0.9em;
    letter-spacing: 0.02em;
    color: white;
    margin-right: 0px;
}

.museums .nav__items .nav__item {
    margin-right: 35px;
}

.museums .nav__items .nav__item:last-child {
    margin-right: 0px;
}

.museums .nav__items .nav__item:last-child a {
    margin-right: 0px;
}



/* .header_active_sec .museums .nav__items .nav__item:not(:first-child)::before{
  content: "\2022";  
  background-color: #AAB1BE; 
  color: #AAB1BE; 
  font-weight: bold; 
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  width: 5px; 
  height: 5px;
  border-radius: 100%;
  margin-right: 18px; 
}
.museums .nav__items .nav__item:not(:first-child)::before{
  content: "\2022";
  background-color: white; 
  color: white;
  font-weight: bold; 
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  width: 5px; 
  height: 5px;
  border-radius: 100%;
  margin-right: 18px; 
} */

.background-pic {
    position: relative;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
}

.museum {
    padding-top: 30px !important;
}

.background-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.background-pic:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.background-pic_text {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
}

.header-bottom {
    position: relative;
}

.header-bottom__title {
    font-family: 'Philosopher';
    font-style: normal;
    font-weight: bold;
    font-size: 4.6em;
    line-height: 110%;
    color: #FFFFFF;
}

.background-images .not .header-bottom__title {
    margin-left: 220px;
    text-indent: -220px;
}

/* .background-images .slick-slide:first-child .header-bottom__title {
    margin-left: 220px;
    text-indent: -220px;
}*/

.header-bottom__title span {
    font-weight: 400;
}

.header-bottom__subtitle {
    font-weight: 700;
    font-size: 1.4em;
    line-height: 130%;
    color: #FFFFFF;
    width: 180px;
    margin-top: -80px;
}

.header-bottom-elements {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.header__arrow {
    display: flex;
    align-items: center;
}


/* .header__arrows{
  position: absolute;
  left: 0;
  bottom: 50px;
} */

.numm span {
    font-weight: bold;
    font-size: 1.5em;
    letter-spacing: 0.02em;
    color: white;
}

.pic-bottom {
    height: 130px !important;
    margin: 0 auto;
    overflow: hidden;
}

.pic-bottom .background-image {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.header-bottom__wrapper .numbers {
    color: white;
}

.otstup {
    width: 50%;
}

.header__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    border-left: 1px solid #FFFFFF;
    padding-left: 20px;
}

.header__arrow-left:hover,
.header__arrow-right:hover {
    cursor: pointer;
}

.header-bottom__wrapper {
    position: absolute;
    width: 100%;
    bottom: 40px;
}


/* .background-image{
  width: 90%;
  margin: 0 auto;
} */

.section {
    padding-top: 120px;
    overflow: hidden;
}

.info-block__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-block__title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 3em;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    transition: 1s all;
}

.info-block__title.way {
    opacity: 0;
    transform: translateY(-200px)
}

.info-block__title.way-active {
    opacity: 1;
    transform: none;
}

.info-block__title.way:nth-child(1) {
    transition-delay: 0.3s;
}

.info-block__titles {
    width: 48%;
}

.info-block__right {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-block__right .numm {
    margin-bottom: 30px;
}

.info-right-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-block__texts {
    width: 80%;
}

.info-block__text {
    font-size: 1.125em;
    line-height: 170%;
    color: rgba(0, 0, 0, 0.8);
    transition: 1s all;
}

.info-block__text.way {
    opacity: 0;
    transform: translateY(200px)
}

.info-block__text.way-active {
    opacity: 1;
    transform: none;
}

.info-block__text.way:nth-child(1) {
    transition-delay: 1.2s;
}

.info-right-button {
    background-image: url(../img/SVG/Arrow-next.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 60px;
    height: 60px;
    display: block;
    background-color: #24A7FF;
    transition: 0.8s all;
}

.info-right-button.way {
    opacity: 0;
    transform: translateX(200px);
}

.info-right-button.way-active {
    opacity: 1;
    transform: none;
}

.info-right-button.way:nth-child(1) {
    transition-delay: 1.7s;
}

.info-right-button:hover {
    cursor: pointer;
    background-color: #348cc7;
}

.numbers {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 1.5em;
    letter-spacing: 0.02em;
    color: #AAB1BE;
}

.info-block__texts .slick-prev {
    display: none !important;
}

.info-block__texts .slick-next {
    display: none !important;
}

.line {
    border-top: 1px solid #AAB1BE;
    width: 120px;
    margin: 12px 15px 0 15px;
}

.numm {
    display: flex;
    margin: 0 5px;
    transition: 1.1s all;
}

.numm.way {
    opacity: 0;
    transform: translateX(250px)
}

.numm.way-active {
    opacity: 1;
    transform: none;
}

.numm.way {
    transition-delay: 1.4s;
}

.news {
    background-color: #EEEEEE;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.news__title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 2.5em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
}

.for-reverse {
    display: flex;
    justify-content: space-between;
    flex: 2 0 0;
}

.news__header .numm {
    flex: 1.7;
}

.info-block {
    padding-bottom: 120px !important;
}

.all-news {
    font-family: 'Philosopher';
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 20px 30px;
    background: #24A7FF;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    margin-top: 40px;
    transition: all 0.3s;
}

.all-news:hover {
    background-color: #D4BFA0;
}

.last-news-item {
    margin-top: 50px;
}

.last-news-item .news__text,
.last-news-item .news__item-btn {
    display: none;
}


/* .news__item{
  margin: 0 13px;
} */

.news__item-pic {
    height: 270px;
    overflow: hidden;
    display: block;
}

.news-page .news__item-pic {
    margin-bottom: 15px;
}

.news__body {
    display: flex;
    justify-content: space-between;
}

.news__left-item {
    width: 35%;
}

.news__item {
    transition: 1.1s all;
}

.news__items .news__item.way {
    opacity: 0;
    transform: translateY(250px);
}

.news__left-item.news__item.way {
    transform: translateX(-350px);
    transition: 1.1s all;
    opacity: 0;
}

.news__left-item.news__item.way-active {
    opacity: 1;
    transform: none;
}

.news__items .news__item.way-active {
    opacity: 1;
    transform: none;
}

.news__left-item.news__item.way {
    transition-delay: 0.3s;
}

.news__items .news__item.way:nth-child(1) {
    transition-delay: 1.2s;
}

.news__items .news__item.way:nth-child(2) {
    transition-delay: 1s;
}

.news .container {
    position: relative;
}

.news__items {
    /*position: absolute;*/
    position: relative;
    /*top: -170px;*/
    right: 0;
    width: 55%;
}

.news__item-img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    object-fit: cover;
}

.news-item-info {
    background-color: #fff;
    padding: 30px 25px;
}

.news__item-pic:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.news__item-title {
    font-weight: bold;
    font-size: 1.125em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: 0.3s all;
}

.news__item-title:hover {
    color: #24A7FF;
}

.news__text {
    font-weight: 500;
    line-height: 150%;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 20px;
}

.news__item-btn {
    display: block;
    background-size: contain;
    font-size: 1.125em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    color: #333333;
    font-family: 'Oswald';
}

.news__item-btn:hover {
    color: #24A7FF;
}

.news__item-btn:after {
    content: '';
    position: absolute;
    background-image: url(../img/SVG/news-read.svg);
    background-size: 20px;
    height: 100%;
    width: 20px;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.address__title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 2.5em;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
}

.address__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.address__item {
    padding: 0 15px;
    transition: 1.1s all;
}

.address__item.way {
    opacity: 0;
    transform: translateY(250px)
}

.address__item.way-active {
    opacity: 1;
    transform: none;
}

.address__item.way:nth-child(1) {
    transition-delay: 0.3s;
}

.address__item.way:nth-child(2) {
    transition-delay: 0.7s;
}

.address__item.way:nth-child(3) {
    transition-delay: 1.2s;
}

.address__item.way:nth-child(4) {
    transition-delay: 1.7s;
}

.address__item-pic {
    height: 270px;
    overflow: hidden;
    margin-bottom: 18px;
    display: block;
}

.address__item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.address__item-title {
    font-weight: bold;
    font-size: 0.9em;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: 0.3s all;
    overflow: hidden;
    min-height: 80px;
}

.address__item-title:hover {
    color: #24A7FF;
}

.address__tel-title,
.address__address-title,
.address__social-net-text {
    font-weight: 500;
    font-size: 1.125em;
    line-height: 150%;
    color: rgba(51, 51, 51, 0.5);
    margin-bottom: -8px;
    background-color: white;
    padding-right: 5px;
}

.address__social-net-icons,
.address__address-location,
.address__tel-number {
    margin-bottom: -3px;
    background-color: white;
    display: block;
    padding-left: 3px;
    width: 123px;
    text-align: right;
}

.address__social-net,
.address__tel,
.address__address {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px dashed #C8AF8B;
    margin-bottom: 13px;
}

.address__tel-number,
.address__address-location {
    color: #333333;
    font-weight: 500;
    text-decoration: none;
    text-align: right;
}

.address__address-location {
    width: 65%;
}

.address__tel-number {
    white-space: nowrap;
}

.address__tel-number:hover {
    color: #24A7FF;
}

.address__arrow img {
    height: 15px;
    object-fit: contain;
}

.address__arrow img:hover {
    cursor: pointer;
}

.address__arrows {
    width: 84px;
}

.address__gesture-icon {
    display: flex;
    justify-content: center;
    margin: 5px 0 15px 0;
}

.address__gesture-icon img {
    width: 25px;
    object-fit: contain;
}

.address__arrow {
    display: flex;
    justify-content: space-between;
}

.address__gesture-text {
    font-weight: 600;
    line-height: 110%;
    text-align: right;
    color: rgba(51, 51, 51, 0.5);
}

.address__body .slick-arrow {
    display: none !important;
}

.slick-dots {
    display: none !important;
}

.address__social-net-icon {
    height: 25px;
    width: 25px;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    margin: 0px 0 0 5px;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: -8px;
    border: 1px solid #333333;
}

.address__social-net-icon:hover {
    background-color: #24A7FF;
}

.add-insta {
    background-image: url(../img/SVG/insta-address.svg);
}

.add-facebook {
    background-image: url(../img/SVG/facebook-address.svg);
    background-size: 10px;
}

.section_sec {
    padding: 85px 0;
}

.order {
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), linear-gradient(0deg, rgba(27, 49, 89, 0.7), rgba(27, 49, 89, 0.4)), url(../img/PNG/order.png); */
    background-image: url(../img/PNG/order.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.order__title {
    font-family: 'Philosopher';
    font-weight: bold;
    text-align: center;
    font-size: 2.5em;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.order__subtitle {
    font-weight: bold;
    font-size: 1.25em;
    line-height: 170%;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 50px;
}

.name-form input,
.phone-form input,
.email-form input {
    background-color: white;
    border-radius: 50px;
    padding: 20px 40px;
    width: 280px;
    border: none;
    font-weight: 600;
    font-size: 1.125em;
    color: #000000;
    outline: none !important;
    font-style: normal;
    color: #000000;
}

.order .form {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.btn-line {
    padding: 20px 50px;
    width: 250px;
    display: block;
    background: #24A7FF;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
    cursor: pointer;
    transition: all 2s;
    border: none;
}

.btn-line:hover {
    background: #0a4f7d;
}

.form-request_text {
    font-weight: 500;
    font-size: 1.125em;
    line-height: 110%;
    color: #333333;
    display: flex;
}

.form-req_text {
    width: 192px;
}

.form-req_text a {
    color: #333333;
}

.form-req_text a:hover {
    color: #24A7FF;
}

.form-request_text input {
    margin-right: 8px;
    width: 25px;
    height: 25px;
}

.footer {
    padding: 60px 0 20px 0;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.footer__logo {
    width: 160px;
    margin-right: 150px;
}

.footer__logo img {
    width: 100%;
}

.footer-nav__items li {
    list-style-type: none;
    margin-bottom: 10px;
}

.footer-nav__item a {
    font-weight: 500;
    text-decoration: none;
    color: rgba(51, 51, 51, 0.8);
}

.footer-nav__item a:hover {
    text-decoration: underline;
}

.footer-nav__title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 1.3em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.footer-nav:not(:last-child) {
    margin-right: 80px;
}

.footer__bottom {
    border-top: 1px solid #D4BFA0;
    border-bottom: 1px solid #D4BFA0;
    display: flex;
    justify-content: space-between;
}

.to-top {
    width: 40%;
    border-right: 1px solid #D4BFA0;
    border-left: 1px solid #D4BFA0;
    text-align: center;
}

.footer__creators {
    text-align: end;
}

.to-top a {
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.to-top a::before {
    display: inline-block;
    content: '';
    left: -26px;
    top: 0;
    position: absolute;
    height: 20px;
    width: 20px;
    background-image: url(../img/SVG/Arrow-to-top.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.to-top a {
    transition: 0.2s all;
}

.to-top a:hover {
    color: #24A7FF;
}

.footer__rights,
.to-top,
.footer__creators {
    padding: 30px 0;
}

.footer__creators,
.footer__rights {
    font-weight: 500;
    line-height: 150%;
    color: rgba(51, 51, 51, 0.8);
}

.footer__creators a {
    color: inherit;
}

.footer__creators a:hover {
    text-decoration: none;
}

.hidden {
    display: none;
    width: 30%;
    border-radius: 10px;
}

.request-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    padding: 40px 30px 30px;
    width: 100%;
    border-radius: 10px;
    left: 0;
    top: 0;
}

.request-title {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 30px;
    color: #DFA871;
}

.request-title span {
    font-weight: bold;
}

.form {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.form_input {
    outline-color: #DFA871;
    border: none;
    resize: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-style: italic;
    background-color: #F9F9F9;
}

.form-btn {
    background-color: #DFA871;
    color: white;
    padding: 15px;
    width: 100%;
    border: 0px;
    margin: 0 auto 20px auto;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.form-btn:hover {
    background-color: #fff;
    color: #DFA871;
    border: 1px solid #DFA871;
    padding: 14px;
    transition: color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}

.request_text {
    text-align: center;
    color: #646464;
}

.request_text a {
    color: #DFA871;
}

.request_text a:hover {
    text-decoration: underline #DFA871;
}

.box-size {
    box-sizing: border-box;
}

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.alert--error,
.alert--warning,
.alert--active {
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #373767;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 28px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}

.background-images .slick-arrow {
    position: absolute;
    font-size: 0;
    width: 50px;
    height: 50px;
    top: 50%;
    background-color: transparent;
    border-radius: 50%;
    z-index: 10;
    border: none;
}

.background-images .slick-arrow.slick-prev {
    display: none;
}

.background-images .slick-arrow.slick-next {
    display: none;
}

.card-mus .address-card {
    width: 52%;
}

.add-loc a {
    color: #333333;
}

.add-loc a:hover {
    color: #24A7FF;
}


/* about */

.page__titles {
    padding-top: 180px;
}

.page__titles-wrapper>div {
    display: block;
}

.page__titles-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.way__page {
    background-image: url(../img/SVG/home.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    display: inline-block;
}

.page__title,
.arrow__icon-to-right {
    font-family: ' Philosopher';
    font-weight: bold;
    font-size: 1.125em;
    letter-spacing: 0.02em;
    color: #AAB1BE;
    margin-right: 8px;
    text-decoration: none;
}

.page-big-title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 2.7em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
}

.date-creation__data {
    font-family: 'Philosopher';
    font-weight: normal;
    font-size: 2em;
    line-height: 150%;
    letter-spacing: 0.115em;
    text-transform: uppercase;
    color: #637089;
    padding-right: 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.date-creation__data span {
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #24A7FF;
}

.date-creation__text {
    font-size: 1.8em;
    line-height: 150%;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #000000;
    padding-left: 40px;
}

.date-creation__text span {
    font-family: 'Philosopher';
    color: #C8AF8B;
}

.date-creation {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 30px 40px;
}

.about .address__item-title {
    display: block;
}

.about .address__item-title:hover {
    color: #24A7FF;
}

.about .address__item-pic {
    display: block;
    width: 100%;
}

.address__item-pic:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.about-us {
    background: #EAEEF6;
    overflow: hidden;
}

.brown {
    color: #C8AF8B;
}

.our-missions,
.our-purpose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 65px 0;
    position: relative;
}

.our-missions::after {
    content: '';
    height: 1px;
    position: absolute;
    bottom: 0;
    width: 500%;
    left: -200%;
    border-bottom: 1px solid rgba(200, 175, 139, 0.5);
}

.our-missions__title,
.our-purpose__title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 2.7em;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    width: 15%;
    flex-shrink: 0;
}

.our-missions__text,
.our-purpose__text {
    font-size: 1.125em;
    line-height: 170%;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 10px;
}

.our-missions__right,
.our-purpose__right {
    width: 70%;
}

.tasks__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.tasks__title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 2.7em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
}

.tasks-nav-item {
    position: relative;
    padding: 20px 40px 20px 120px;
    min-height: 80px;
}

ul {
    /* -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2; */
    padding-left: 0;
    counter-reset: myCounter;
}

.tasks-nav-item::before {
    position: absolute;
    content: counter(myCounter);
    counter-increment: myCounter;
    width: 1.8em;
    top: 0;
    bottom: 0;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    color: #fff;
    background: #C8AF8B;
    border-radius: 30px 0px 0px 30px;
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 1.5em;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.tasks-nav-item {
    list-style-type: none;
    font-size: 1.3em;
    color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    border-radius: 30px 30px 30px 30px;
    margin-bottom: 30px;
}

ul {
    /* -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2; */
    padding-left: 0;
    counter-reset: myCounter;
}


/* ==============================================  */


/* news */

.news-fl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-items {
    display: flex;
    flex-wrap: wrap
}

.news-items .news__item {
    width: 23%;
    margin: 0 1% 30px 1%;
}

.data-pub {
    margin-bottom: 12px;
}

.data-pub-text {
    font-weight: 500;
    color: rgba(51, 51, 51, 0.5);
    margin-right: 15px;
}

.data-pub-data {
    font-family: 'Philosopher';
    font-weight: bold;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #24A7FF;
}

.pag {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pag-arr-left {
    display: block;
    background-image: url(../img/SVG/pag-arr-left.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 20px;
    position: relative;
}

.pag-arr-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: -7px;
    display: inline-block;
    background-image: url(../img/SVG/pag-arr-left.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.pag-arr-right {
    display: block;
    background-image: url(../img/SVG/pag-arr-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 20px;
    position: relative;
}

.pag-arr-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: -7px;
    display: inline-block;
    background-image: url(../img/SVG/pag-arr-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.pagination {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.pagination li {
    width: 50px;
    height: 50px;
    border: 1px solid #D9D9D9;
    list-style-type: none;
    transition: 0.5s all;
}

.pagination li:hover {
    background: #C8AF8B;
}

.pagination li:hover a {
    color: #FFFFFF;
}

.pagination li:first-child {
    border-radius: 30px 0px 0px 30px;
}

.pagination li:last-child {
    border-radius: 0px 30px 30px 0px;
}

.pagination li.active {
    background: #C8AF8B;
}

.pagination li.active a {
    color: #FFFFFF;
}

.address__subtitle {
    margin: 10px 30px;
}

.pagination li a {
    font-family: 'Philosopher';
    font-size: 1.2em;
    color: #AAB1BE;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}


/* ==============================================  */


/* news-view */

.news-view__header-bottom {
    position: relative;
}

.news-view__header-bottom .page__titles-wrapper {
    display: none;
}

.news-view__background {
    /* position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0; */
}

.gos ul li {
    list-style-type: none;
}

.gos ul li a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

.gos ul li a:hover {
    text-decoration: underline;
}

.gos ul li a:before {
    content: "";
    margin-right: 5px;
    background-image: url(../img/SVG/excel.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 15px;
    width: 15px;
    display: inline-block;
}

.news-view__header-bottom .page__titles-wrapper span {
    color: white;
}

.news-view__background img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
}

.news-view-slider {
    position: relative;
    margin-bottom: 30px;
}

.news-view-slider .slick-arrow {
    position: absolute;
    font-size: 0;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 23px;
    border: none;
    background-color: transparent;
    z-index: 3;
}

.news-view-slider .slick-arrow.slick-next {
    right: 15px;
    background-image: url(../img/SVG/slickArrow-rig.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    height: 35px;
    width: 35px;
    cursor: pointer;
    transform: rotate(180deg);
}

.news-view-slider .slick-arrow.slick-prev {
    left: 15px;
    background-image: url(../img/SVG/slickArrow-rig.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    padding-bottom: 3px;
    height: 35px;
    width: 35px;
    cursor: pointer;
}

.news-view-slide {
    height: 500px;
    width: 100%;
}

.news-view-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-view__background::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.news-view__header-bottom .page__title {
    color: white;
    text-decoration: none;
    transition: 0.3s all;
}

.news-view__header-bottom .page__title:hover {
    color: rgb(36, 167, 255);
}

.news-view__header-bottom .page-big-title {
    font-size: 3.1em;
    padding: 100px 0;
    color: white;
    width: 50%;
    text-transform: none;
}


/* .header_active_news .museums .nav__items .nav__item:not(:first-child)::before{
  content: "\2022";  
  background-color: white; 
  color: white; 
  font-weight: bold; 
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5px; 
  height: 5px;
  border-radius: 100%;
  margin-right: 18px; 
} */

.header_active_news .museums .nav__items .nav__item a {
    color: white;
}

.header_active_sec .header__top-wrapper .container {
    border-bottom: none;
}

.header_active_news .header__center-wrapper {
    border-bottom: none;
}

.news-view__header-bottom .way__page {
    background-image: url(../img/SVG/home-news.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    display: inline-block;
}

.news-view-header-footer {
    background: #EEEEEE;
    padding: 30px 0;
}

.news-view-header-footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.news-view-header-footer__wrapper div {
    margin: 10px 0;
}

.news-data-pub {
    margin: 10px 25px !important;
}

.category-text,
.news-data-pub-text,
.share-text {
    font-weight: 500;
    font-size: 1em;
    color: rgba(51, 51, 51, 0.6);
}

.category-type,
.news-data-pub-data {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 1.125em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #333333;
    margin-top: 8px;
}

.social-net-share {
    display: flex;
    justify-content: flex-end;
    margin-left: 20px;
}

.share {
    display: flex;
    align-items: center;
}

.soc-net {
    border-radius: 100%;
    border: 1px solid #333333;
    width: 30px;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center;
    margin-left: 10px;
    transition: 0.5s all;
}

.soc-net.facebook {
    background-image: url(../img/SVG/facebook-share.svg);
    background-size: 10px;
}

.soc-net.vkontakte {
    background-image: url(../img/SVG/vk.svg);
}

.soc-net.telegram {
    background-image: url(../img/SVG/tg.svg);
}

.soc-net.ok {
    background-image: url(../img/SVG/ok.svg);
    background-size: 13px;
}

.soc-net.twitter {
    background-image: url(../img/SVG/twitter.svg);
    display: none;
}

.soc-net:hover {
    background-color: rgb(36, 167, 255);
}

.news-view__wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-view__left {
    width: 65%;
}

.news-view__title {
    font-weight: bold;
    font-size: 2.4em;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.news-view__texts p {
    font-weight: 500;
    font-size: 1em;
    line-height: 165%;
    color: #353535;
    margin-bottom: 18px;
    text-align: justify;
}

.news-view__texts p img {
    width: 100%;
    object-fit: cover;
}

.news-view__right-title {
    display: block;
}

.news-view__right-title:hover {
    color: rgb(36, 167, 255);
}

.news-view__right .address__item-title {
    font-size: 1em;
}

.news-view__right-item {
    margin-bottom: 20px;
}

.news-view__right-pic {
    height: 230px;
    width: 100%;
    display: block;
}

.news-view__right-pic:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.news-view__right-item {
    padding: 0;
}

.news-view__right {
    width: 20%;
    margin: 50px 10% 0 5%;
}


/* ==============================================  */


/* contacts */

.contacts__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-contacts {
    position: relative;
}

.order-contacts .form {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.order-contacts .order__wrapper {
    /*  padding-right: 50%;*/
    width: 49%;
    margin-top: 80px;
}

.address-info {
    width: 49%;
}

.order-contacts .name-form input,
.order-contacts .phone-form input,
.order-contacts .email-form input {
    background-color: #EAEEF6;
}

.message {
    width: 100%;
}

.creation {
    padding-top: 60px;
}

#message {
    padding: 15px 15px 40px 35px;
    margin-bottom: 20px;
    outline: none;
    border: none;
    resize: none;
    background: #EAEEF6;
    border-radius: 50px;
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 1.125em;
    color: #000000;
    width: 100%;
}

.order-contacts .name-form,
.order-contacts .phone-form,
.order-contacts .email-form,
.order-contacts .btn-form {
    width: 45%;
    margin-bottom: 20px;
}

.order-contacts .name-form input,
.order-contacts .phone-form input,
.order-contacts .email-form input,
.order-contacts .btn-form input {
    width: 100%;
}

.req-text {
    display: flex;
    align-items: center;
}

.order-pic {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 27%;
    display: none;
}

.order-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.padding {
    padding-top: 145px;
}

.card-mus {
    background: #EEEEEE;
}

.card-mus .tel-text,
.card-mus .email-text,
.card-mus .address-loc-text {
    background-color: #EEEEEE;
}

.card-mus .tel_num,
.card-mus .email-add,
.card-mus .add-loc {
    background-color: #EEEEEE;
}

.card-mus .address__social-net-text,
.card-mus .address__social-net-icons {
    background-color: #EEEEEE;
}

.contacts-page__titles {
    padding-top: 30px;
}

.card__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-info__title {
    font-family: 'Philosopher';
    font-weight: bold;
    font-size: 2.7em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 30px;
}

.address-card {
    width: 100%;
    height: 400px;
}

.address-card iframe {
    width: 100%;
    height: 100%;
}

.address-info {
    width: 40%;
}

.tel-text,
.email-text,
.address-loc-text {
    font-weight: 500;
    font-size: 1.125em;
    color: rgba(51, 51, 51, 0.5);
    background-color: white;
    margin-bottom: -4px;
    margin-right: 15px;
}

.tel_num,
.email-add,
.add-loc {
    text-decoration: none;
    font-family: 'Philosopher';
    font-size: 1.125em;
    color: #333333;
    display: block;
    background-color: white;
    margin-bottom: -4px;
    text-align: end;
}

.tel_num:hover,
.email-add:hover {
    text-decoration: underline;
}

.address-info>div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.add_tel,
.add-email,
.address-loc {
    border-bottom: 1px dashed #C8AF8B;
}

.order-contacts .btn-line {
    width: 100% !important;
}

.news__item_center {
    width: 100%;
    display: flex;
    justify-content: center;
}

.news__item.centered {
    text-align: center;
}
@media screen and (max-width: 1400px) {
    .container {
        width: 95%;
    }
    .section_sec {
        padding: 65px 0;
    }
}

@media screen and (max-width: 1250px) {
    .burger {
        display: block;
    }
    .mus {
        display: block;
    }
    .header__top .nav__items .under-ul li>a {
        font-size: 1.1em !important;
    }
    .nav__items {
        flex-direction: column;
        position: fixed;
        top: -60px;
        right: 0;
        width: 260px;
        background-color: #24A7FF;
        margin-top: 135px;
        padding: 37px;
        transform: translateX(320px);
        transition: 1s;
        align-items: flex-start;
        z-index: 5;
    }
    .under-part {
        position: static;
        opacity: 1;
        display: none;
        transition: none;
    }
    .nav ul li:hover .under-part {
        transition: none;
    }
    .under-ul {
        background-color: transparent;
        border: none;
    }
    .under-ul li:not(:last-child) {
        border-bottom: none;
    }
    .header__top .nav__items {
        align-items: flex-start;
    }
    .under-ul li a {
        color: white !important;
    }
    /* .header_active .nav__items{
    margin-top: 85px;
  } */
    .nav__item>a {
        color: white;
    }
    .nav__items_active {
        transform: none;
    }
    .nav__items .nav__item:not(:last-child) {
        margin-bottom: 10px;
    }
    .header__lang {
        border-left: none;
    }
    .header__top .nav__items .nav__item a {
        font-size: 1.3em;
    }
    .to-top {
        width: 30%;
    }
    .name-form input,
    .phone-form input,
    .email-form input {
        padding: 20px 25px;
        width: 230px;
    }
    .btn-line {
        padding: 20px 25px;
        width: 230px;
    }
    .footer__logo {
        width: 200px;
        margin-right: 100px;
    }
    .header__center-wrapper {
        display: none;
    }
    .padding {
        padding-top: 75px;
    }
    .page__titles {
        padding-top: 105px;
    }
    .header__right {
        border-left: none;
    }
}

@media screen and (max-width: 1100px) {
    /*.address-info__title{
    margin-left: 50%;
    transform: translateX(-50%);
  }*/
    .padding {
        padding-top: 0px !important;
    }
    .footer__museums {
        display: none;
    }
    .footer__contacts {
        margin-right: 0px !important;
    }
    .header-bottom__title {
        font-size: 4.3em;
    }
    .header-bottom__subtitle {
        font-size: 1.4em;
    }
    .info-block__title {
        font-size: 2.7em;
    }
    .news__item-pic,
    .address__item-pic {
        height: 220px;
    }
    .order .form {
        flex-direction: column;
    }
    .name-form input,
    .phone-form input,
    .btn-line,
    .email-form input {
        padding: 20px 40px;
        width: 50%;
        /* margin-left: 50%;
    transform: translateX(-50%); */
    }
    .btn-form {
        margin-top: 20px;
    }
    .order .form>div {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .btn-line {
        margin: 0 auto;
    }
    .section_sec {
        padding: 40px 0;
    }
    .section {
        padding-top: 100px;
    }
    .footer__logo {
        width: 170px;
        margin-right: 80px;
    }
    .otstup {
        width: 75%;
    }
    .order-pic {
        width: 40%;
    }
    .order-pic {
        width: 100%;
        z-index: -2;
    }
    .order-contacts::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgb(255 255 255 / 80%);
        z-index: -1;
    }
    /*.order-contacts  .order__wrapper {
    padding-right: 20%;
  }*/
    .card__wrapper {
        flex-direction: column-reverse;
    }
    .address-info {
        width: 500px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .address-card {
        width: 100%;
    }
    .order-contacts .btn-form {
        margin-bottom: 72px;
    }
    .req-text {
        /* width: 100%; */
        justify-content: center;
        margin-bottom: 20px;
    }
    .news-view__header-bottom .page-big-title {
        width: 80%;
        font-size: 3em;
        padding: 80px 0;
    }
    .news-view__right {
        width: 30%;
        margin: 50px 0% 0 5%;
    }
    .page-big-title {
        font-size: 2.4em;
    }
    .news__text,
    .data-pub {
        font-size: 0.9em;
    }
    .contacts__container {
        flex-direction: column;
        justify-content: center;
    }
    .order-contacts .order__wrapper {
        width: 100%;
    }
    .address-info {
        width: 100%;
    }
    .card-mus .address-card {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .footer__logo {
        width: 150px;
        margin-right: 60px;
    }
    .info-block__title {
        font-size: 2.3em;
    }
    .info-right-button {
        background-size: 15px;
        width: 50px;
        height: 50px;
    }
    .news-items .news__item {
        width: 31%;
    }
}

@media screen and (max-width: 820px) {
    body {
        font-size: 14px;
    }
    .news__header {
        flex-direction: column-reverse;
    }
    .for-reverse {
        margin-bottom: 20px;
        width: 100%;
    }
    .social-network {
        height: 20px;
        width: 20px;
        background-size: 17px;
        padding: 16px;
    }
    .lang_choice {
        font-size: 1.2em;
    }
    .page-big-title,
    .our-missions__title,
    .our-purpose__title,
    .tasks__title,
    .address-info__title,
    .news-view__title {
        font-size: 2.5em;
    }
    .order-contacts .order__wrapper {
        margin-top: 55px;
    }
    .order-contacts .btn-form {
        margin-bottom: 55px;
    }
    .share-text {
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 760px) {
    .section_sec {
        padding: 60px 0;
    }
    .section {
        padding-top: 80px;
    }
    .info-block__wrapper {
        flex-direction: column;
    }
    .info-block__wrapper>div {
        width: 100%;
    }
    .info-block__right .numm {
        margin: 18px 0;
    }
    .footer__logo {
        width: 120px;
    }
    .footer__bottom {
        flex-direction: column;
        padding: 10px 0;
    }
    .footer__rights,
    .to-top,
    .footer__creators {
        border: none;
        text-align: center;
        width: 100%;
        padding: 0 0 0 0;
    }
    .to-top {
        display: none;
    }
    .footer__rights {
        margin-bottom: 10px;
    }
    .address__arrow img {
        height: 12px;
    }
    .address__gesture-icon img {
        width: 22px;
    }
    .address__gesture-text {
        font-size: 0.8em;
    }
    .address__arrows {
        width: 59px;
    }
    .address__header {
        flex-direction: column;
    }
    .address__header>div {
        text-align: center;
        margin: 0 auto 20px auto;
    }
    .header-bottom__title {
        font-size: 3.5em;
        margin-left: 0px;
        text-indent: 0px;
        text-align: center;
        margin-bottom: 20px;
    }
    .header-bottom__subtitle {
        width: auto;
        margin-top: 0px;
        text-align: center;
        font-size: 1.5em;
    }
    .header-bottom-elements {
        flex-direction: column-reverse;
    }
    .otstup {
        width: 100%;
        margin-bottom: 30px;
    }
    .address__header {
        margin-bottom: 5px;
    }
    .footer {
        padding-bottom: 0px;
    }
    .order-contacts .order__wrapper {
        padding-right: 0%;
    }
    .page-big-title,
    .our-missions__title,
    .our-purpose__title,
    .tasks__title,
    .address-info__title,
    .news-view__title {
        font-size: 2.4em;
    }
    .date-creation {
        flex-direction: column;
        padding: 20px;
    }
    .date-creation__data {
        border-right: none;
        padding-right: 0px;
        margin-bottom: 15px;
    }
    .date-creation__text {
        padding-left: 0px;
        text-align: center;
    }
    .our-missions,
    .our-purpose {
        flex-direction: column;
    }
    .our-missions__right,
    .our-purpose__right {
        width: 100%;
    }
    .our-missions__title,
    .our-purpose__title {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .our-missions,
    .our-purpose {
        padding: 60px 0;
    }
    .tasks__header {
        flex-direction: column-reverse;
    }
    .tasks__title {
        margin-bottom: 20px;
    }
    .news-view__right {
        width: 100%;
        margin: 50px 0% 0 0%;
    }
    .news-view__left {
        width: 100%;
    }
    .news-view-header-footer {
        padding: 20px 0;
    }
    .news-view__right-content {
        display: flex;
        flex-wrap: wrap;
    }
    .news-view__right-content>div {
        width: 31%;
        margin: 0 1% 25px 1%;
    }
    .news-view__header-bottom .page-big-title {
        width: 100%;
        font-size: 3em;
    }
    .news__items {
        /*top: -130px;*/
        width: 45%;
    }
    .news__left-item {
        width: 40%;
    }
}

@media screen and (max-width: 600px) {
    .footer__menu {
        display: none;
    }
    .for-reverse {
        flex-direction: column;
    }
    .news__title {
        text-align: center;
    }
    .all-news {
        margin-left: 0;
    }
    /* .news__btn{
    text-align: end;
  } */
    .news__header .numm {
        width: 100%;
        text-align: end;
        display: none;
    }
    .news__header {
        margin-bottom: 20px;
    }
    .name-form input,
    .phone-form input,
    .btn-line,
    .email-form input {
        width: 300px;
        max-width: 100%;
    }
    .header__top-wrapper .container {
        height: 65px;
    }
    .nav__items {
        margin-top: 125px;
    }
    /* .header_active .nav__items{
    margin-top: 74px;
  } */
    .address-card {
        height: 320px;
    }
    .order-contacts .name-form,
    .order-contacts .phone-form,
    .order-contacts .email-form,
    .order-contacts .btn-form {
        width: 100%;
    }
    .req-text {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }
    .page-big-title,
    .our-missions__title,
    .our-purpose__title,
    .tasks__title,
    .address-info__title,
    .news-view__title {
        font-size: 2.2em;
    }
    .order__wrapper {
        margin-top: 30px;
    }
    .padding {
        padding-top: 65px;
    }
    .order-contacts .btn-form {
        margin-bottom: 35px;
    }
    .our-missions__text,
    .our-purpose__text {
        font-size: 1em;
    }
    .tasks-nav-item {
        padding: 10px 15px 10px 100px;
    }
    .tasks-nav-item::before {
        padding: 10px;
        font-size: 1.3em;
    }
    .news-items .news__item {
        width: 48%;
    }
    .news-fl-header {
        flex-direction: column;
    }
    /* .page-big-title{
    margin-bottom: 15px;
  } */
    .news-view__right-content>div {
        width: 48%;
        margin: 0 1% 25px 1%;
    }
    .news-view__header-bottom .page-big-title {
        width: 100%;
        font-size: 2.7em;
    }
    .soc-net {
        width: 30px;
        height: 30px;
        background-size: 15px;
    }
    .news__items {
        position: static;
    }
    .news__body {
        flex-direction: column;
    }
    .news__body>div {
        width: 100%;
    }
    .news__left-item {
        margin-bottom: 30px;
    }
    .last-news-item {
        margin-top: 30px;
    }
    .info-block {
        padding-bottom: 60px !important;
    }
    .soc-net.ok {
        background-size: 10px;
    }
    .soc-net.facebook {
        background-size: 9px;
    }
}

@media screen and (max-width: 420px) {
    .header__top .social-networks {
        display: none;
    }
    .footer__logo {
        width: 90px;
        margin-right: 40px;
    }
    .info-block__title {
        font-size: 1.8em;
        line-height: 140%;
    }
    .news__title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .news__header {
        margin-bottom: 10px;
    }
    .section {
        padding-top: 60px;
    }
    .address__title {
        font-size: 2.2em;
    }
    .numbers {
        font-size: 1.3em;
    }
    .address__header>div {
        margin: 0 auto 15px auto;
    }
    .order__title {
        font-size: 2.2em;
        margin-bottom: 10px;
    }
    .order__subtitle {
        line-height: 130%;
    }
    .all-news:after {
        height: 12px;
    }
    .page-big-title,
    .our-missions__title,
    .our-purpose__title,
    .tasks__title,
    .address-info__title,
    .news-view__title {
        font-size: 2em;
    }
    .our-missions,
    .our-purpose {
        padding: 40px 0;
    }
    .news-items .news__item {
        width: 100%;
    }
    .news-view__right-content>div {
        width: 100%;
    }
    .news-view__header-bottom .page-big-title {
        width: 100%;
        font-size: 2.3em;
    }
    .footer__top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer__logo {
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .footer-nav__items {
        text-align: center;
    }
    .info-block__text {
        font-size: 1.1em;
        line-height: 150%;
        color: rgba(0, 0, 0, 0.8);
    }
    .tasks-nav-item {
        font-size: 1.1em;
        padding-left: 70px;
    }
    .news-view-header-footer__wrapper {
        flex-direction: column;
    }
    .news-view-header-footer__wrapper div {
        margin: 2px 0;
        text-align: center;
    }
}
.news-view__texts video {
    width: 100%;
    height: 500px;
}