@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700;800;900&display=swap');

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-100.woff") format("woff");
 font-weight: 100;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-300.woff") format("woff");
 font-weight: 300;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-400.woff") format("woff");
 font-weight: 400;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-500.woff") format("woff");
 font-weight: 500;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-700.woff") format("woff");
 font-weight: 700;
}

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

::selection {
    color:#fff;
    background:#0065B3; 
}

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

html,
body {
    font-size: 20px;
    font-family: 'Helvetica', serif;
    color: #1D1D1D;
    font-weight: 300;
    line-height: 1.3; 
    background-color: #0065B3;
}

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

.content {
    display: flex;
}

.content__left {
    width: 67%;
    padding-right: 0px;
}

.content__right {
    width: 33%;
    padding-left: 0px;
}

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

.content-menu {
    background-color: #090909;     
}
.content__center {
    display: flex;
    justify-content: center;
}

.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: 'Playfair Display', serif;
}

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

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

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

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

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

b, strong {
    font-weight: 700;
}

ol, ul {
    padding-left: 1rem;
    padding-bottom: 1rem;
}
li {
    margin-bottom: 7px;
}

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

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

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: #393E46;
    text-decoration: none;
}
.aLinkBlack:hover {
    color: #F96D00;
    text-decoration: none;
}

.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-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: none;
}

.menu-logo {
    display: flex;
}

.menu-icon {
   
}

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

.menu-desktop {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;    
    padding-top: 30px;
    padding-bottom: 25px;
}

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

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

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

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

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

.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: white;
}

.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;
}

.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 {
   font-size: 22px;
   font-weight: 700;
   padding-bottom: 10px;   
}

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

.spanPromo {
    font-size: 20px;
    display: inline-block;
    font-weight: 400;
}
  
.spanImportant {
    border-left-color: #17b8bf;
    border-left-style: solid;
    border-left-width: 3px;
    display: inline-block;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 40px;        
    padding-left: 40px;
}

.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;}
}