@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500&family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');


:root {
  --main-container: 1200px;
  --small-container: 1000px;
  --radzel-margin: 170px;
  --radzel-dop: 130px;
  --offset-container: 50px;  
  --offset-content: 60px;    
}

::selection {
    color:#fff;
    background:#5f5f5f; 
}

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

html,
body {
    font-size: 18px;
    font-family: 'Noto Serif', serif;
    color: #1D1D1D;
    font-weight: 400;
    line-height: 1.5; 
    background-color: #c0c0c0;
}

.container {
    width: var(--main-container);
    margin: 0 auto; 
    padding: 40px;
}

.container-menu {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 0;
}

.container img {
    margin-top: 50px;
    margin-bottom: 50px;
}

.content {
    display: flex;
}

.content__left{
    width: calc((var(--main-container) - 120px)/3);
}

.content__right {
    margin-left: 60px;
    width: calc(2*(var(--main-container) - 60px)/3);
}

.content-text__left{
    width: calc(2*(var(--main-container) - 60px)/3);
}

.content-foto__right {
    margin-left: 60px;
    width: calc((var(--main-container) - 120px)/3);
}

.content__center {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

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

.content-menu {
    background-color: #090909;     
}


.content-quote {
    font-family: 'Times News Romans', serif;
    font-size: 24px;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 50px;
}

.content-annotation p {
    margin-left: 150px;
    margin-right: 150px;
}

h1, h2 {
    font-family: 'Noto Serif', serif;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1;
}

h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;    
}

h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

p {
   line-height: 150%;
   margin-bottom: 20px;
}

b, strong {
    font-weight: 700;
}

ul, ol {  
    padding-left: 4rem;
    line-height: 170%;
    padding-bottom: 60px;
}

.ul-2 {
    padding-bottom: 0px;
}

img {
	max-width: 100%;
	display:block; 
}

input, textarea {
    font-size: 18px;
} 

.table {
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #dddddd;
	border-collapse: collapse; 
}
.table th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}
.table td {
	border: 1px solid #dddddd;
	padding: 5px;
}

a {
	color: blue;
    transition: 0.7s;
}

a:hover {
	color: #FF0000; 
	text-decoration: none;
    transition: 0.3s;
}

.aLinkWhite {
  color: #fff;
  text-decoration: none;
}

.aLinkWhite:hover {
    color: #e1e1e1;
    text-decoration: none;
}

.aLinkBlack {
    color: #1D1D1D;
    text-decoration: none;
}
.aLinkBlack:hover {
    color: #FF0000;
    text-decoration: none;
}

.aLinkDark {
    color: #424242;
    text-decoration: none;
    transition: 0.5s;
}
   
.aLinkDark:hover {
    color: #f00000; 
}

.aLinkMotion {
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.aLinkMotion:after {
    display: block;
    position: absolute;
    left: 0; /*изменить на right:0;, чтобы изменить направление подчёркивания */
    width: 0; /*задаём длинну линии до наведения курсора*/
    height: 2px; /*задаём ширину линии*/
    background-color: #FF0000; /*задаём цвет линии*/
    content: "";
    transition: width 0.3s ease-out; /*задаём время анимации*/
}

.aLinkMotion:hover:after,
.aLinkMotion:focus:after {
	width: 100%; /*устанавливаем значение 100% чтобы ссылка подчёркивалась полностью*/
}

.aLinkActive {
    color: #FF0000;
}

.menu {
    display: none;
}


.menu-smart {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #090909;    
}

.menu-full, .modal-full {
    visibility: hidden;
    opacity: 0;
    position: fixed; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    color: #000;
    background-color: white; 
    padding-top: 5px;
    z-index: 10; 
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.menu-full-content {
    margin-top: 20px;
    margin-left: 0px;
}

.menu-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.menu-logo {
    display: flex;
    align-items: center;
}

.menu-icon {
   
}

.menu-logo-img img {
    margin-top: 0px;
    margin-bottom: 0px;    
}

.menu-icon-svg path {
  fill: #fff;;
}

.menu-desktop {
    display: flex;
    background-color: white;
    height: 60px;
    align-items: center;
    justify-content: space-between;
}

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


.menu-left, .menu-right  {
    display: flex;
    flex-direction: row;
}

.menu-left  {
    justify-content: flex-start;
}

.menu-right {
    justify-content: flex-end;
}

.menu-right-item {
    margin-left: 45px;
}

.menu-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.menu-logo {
    display: flex;
    align-items: center;
}

.menu-logo-name {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3; 
    margin-left: 10px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-img {

}

.logo-name {
    font-size: 18px;
    padding-left: 15px;
    padding-right: 40px;
    white-space: nowrap;
    font-weight: bold;
    color: #1D1D1F;
}

.logo-description {
    font-size: 12px;
    color: #1D1D1F;
    font-weight: 300;
}

.menu-full {
    visibility: hidden;
    opacity: 0;
    position: fixed; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    background-color: white; 
    z-index: 10; 
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.menu-full-content {
    margin-top: 50px;
    margin-left: 0px;
}


.form-message {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 20px;
}

.form-message-left, .form-message-right  {
    display: flex;
    flex-direction: row;
    margin-top: 0px;
}

.form-message-left, .form-message-right  {
    justify-content: flex-start;
}

.form-message-right {
    justify-content: flex-end;    
}

.form-message-left-item {
    margin-right: 40px;
}

.form-message-right-item {
    margin-left: 40px;
}

.razdel {
    margin-top: var(--radzel-margin);
}

.razdel-dop {
    margin-top: 100px;
}

.razdel-foto {
    margin-top: 50px;    
}

.div-smart {
    visibility: hidden;
    display: none; 
    opacity: 0;
}

.div-desktop {
    visibility: visible;
    display: block; 
    opacity: 1;
}

.div-shadows {
    margin-bottom: 100px;    
    border-radius: 7px;
    background-color: #fdf7e5;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);    
}

.div-footer, .div-footer a {
    color: #1d1d1d;
}


.divHidden {
    display: none;
}

.fixed-top-2 {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
}

.active {
    color: #0D7175 !important;
    border-bottom: 3px solid #0D7175;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    margin-bottom: 10px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-white {
    border: 18px solid #FFFFFF;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 0px rgba(34, 60, 80, 0.2);    
}

.page-background {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 720px;
}

.page-main-text {
    padding-left: 50px;
    width: 50%;
}

.page-index-main-text {
    padding-top: 120px;
}

.сover {
    height: 100vh;
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
    color: white;
    background-image: url(../images/page/01-main/hichvin-2023.jpg); 
    background-position: center; 
    background-repeat: no-repeat;     
}

.cover-content {
    padding-top: 30px;
}

.сover-description {
    padding-top: 30px;
    padding-bottom: 30px;
}

.сover-end {
    padding-top: 30px;
    padding-bottom: 30px;
}


.bg-ok {
    background-color: greenyellow;
}

.bg-work {
    background-color: yellow;
}

.bg-none {
    background-color: red;
}

.selected {
    color: #FF0000 !important;
    border-bottom: 3px solid #FF0000;
}

.button-normal {
    font-size: 24px;
    font-weight: 700; 
    width: 380px;
    height: 80px;
}

.button-large {
    font-size: 24px;
    font-weight: 700;     
    width: 320px;
    height: 70px;
}

.button-border-no {
    border-radius: 0;
}

.button-red {
   color: #fff ;
   font-weight: 700; 
   background-color: #FF0000;
   cursor: pointer;
   border: 1px solid #FF0000;
   box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
   border-radius: 3px;
}

.button-red:hover {
    background-color: #cc0000;
    border: 1px solid #cc0000;    
    transition: 0.5s;
}

.button-motion-brand {
}

.button-motion-brand:before {
}

.input__bottom {
    padding-bottom: 20px;
}

.p-big {
    font-size: 24px;
}

.p-small {
    font-size: 14px;
}

.p-right {
    text-align: right;
}

.p-center {
    text-align: center;
}

.p-foto {
   font-size: 14px;
   padding-top: 7px;   
   padding-bottom: 40px;
}

.p-desсription {
   padding-top: 10px;
   padding-bottom: 10px;   
}

.span-shadow {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.span-menu-item {
    margin-top: 20px;
    margin-bottom: 15px;
    padding-right: 80px;
    font-size: 24px;
    font-weight: 500;    
}

.span-menu {
    font-size: 16px;
    margin-right: 40px;
}

.span-i {
    font-weight: 600;
    font-style: italic; 
}

.button-cursor:hover {
    cursor: pointer;
}

.svgLine2 {
    margin-left: -15px;
}

.svgLine21 {
    stroke-dasharray: 40;
    stroke-dashoffset: 25;
} 

.svgLine2:hover {
    stroke-dashoffset: 0;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

@keyframes shine {
  from {left: -75px;}
  to {left: 320px;}
}



.resp-tab {
    border-radius: 5px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
}
.resp-tab th, .resp-tab td {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border: 1px solid #c0c0c0;
    vertical-align: top;
}
.resp-tab th {
    color: #FFF;
    background: #a0a0a0;
    font-weight: bold;
    border: 1px solid #c0c0c0;   
    text-transform: uppercase;   
    text-align: center;   
}

.resp-tab td span {
    background: #5f5f5f;
    color: #FFF;
    display: none;
    font-size: 11px;
    font-weight: bold;
    font-family: Verdana, sans-serif;   
    text-transform: uppercase;       
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;   
}
@media(max-width: 768px) {
    .resp-tab thead {
        display: none;
    }
    .resp-tab tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .resp-tab td {
        margin: 0 -1px -1px 0;
        padding-top: 35px;
        position: relative;
        width: 50%;
    }
    .resp-tab td span {
        display: block;
    }
}
@media(max-width: 480px) {
    .resp-tab td {
        width: 100%;
    }
}



.element-animation {
  /* Скроем элемент в начальном состоянии */
  opacity: 0;
  transform: translateY(20px);
}

.element-animation.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateY(0%);
}

.block-photo.element-animation {
    -webkit-transform: rotate(-5deg) scale (0.95);
    -ms-transform: rotat (-5deg) scale (0.95);
    transform: rotate(-5deg) scale (0.95);
    -webkit-transition: -webkit-transform 1.5s;
    transition: -webkit-transform 1.5s;
    -o-transition: transform 1.5s;
    transition: transform 1.5s;
}

.block-photo.element-animation.element-show {
    -webkit-transform: rotate(0) scale (1);
    -ms-transform: rotate(0) scale (1);
    transform: rotate(0) scale (1);
}

.block-photo.element-animation:nth-of-type(2).element-show {
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.block-photo.element-animation:nth-of-type(3).element-show {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.blog-item.element-animation.element-show {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.blog-item.element-animation {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

.blog-item-margin50 {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
}