
root {
  --colorFonDefault: #007263; 
  --radius: 10px;
  --box-shadow_top:     0 -10px 5px -5px rgba(0, 0, 0, .2); 
  --box-shadow_bottom:  0 10px  5px -5px rgba(0, 0, 0, .2);
  
  
  --main-container: 1200px;
  --small-container: 1000px;
  --radzel-margin: 170px;
  --radzel-dop: 130px;
}

::selection {
    color: #fff;
    background: #007263; 
}

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

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


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

.content {
    display: flex;
}

.content__left {
    width: 33%;
    padding-right: 40px;
}

.content__right {
    width: 67%;
    padding-left: 40px;
}

.content-menu {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #007263;
}

.content-menu a {
    color: white;
}


.content-form {
    background-color: #676666;      
    padding-top: 40px;
    padding-bottom: 40px;  
}

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


.content-item {
  width: calc(1/2*100% - (1 - 1/2)*40px);
  margin: 0 0 40px;
    
}

.content-item-3 {
  width: calc(1/3*100% - (1 - 1/3)*40px);
  margin: 0 0 0px;
}

.content-center {
    margin: 0 auto; 
    width: 800px;
}
  

h1, h2, h3, h4, h5, h6 {
    font-family: 'Museo Cyrl', serif;
    font-weight: 900;
}

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

h2 {
    font-size: 72px;
    line-height: 1.1;
}

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

h4 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 40px;    
    margin-bottom: 20px;  
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}


p {
   line-height: 140%;
   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;
    text-decoration: none;
    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;
}

.aLinkBrand {
    color: #007263;
}

.aLinkBrand:hover {
    color: #F96D00;
    text-decoration: 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: 1000; 
    -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 {
    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;
}

.menu-active a {
    color: #C4C4C4;
}

.header-top {
    overflow: hidden;
    background-color: white; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-top__left {
    float: left;
}

.header-top__right {
    float: right;
}

.header-logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;    
}

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

.header-logo-left {
    justify-content: flex-start;
}

.header-logo-right {
    justify-content: flex-end;
}

.header-logo-right a {
    margin-left: 10px;
}

.header-logo-foto {
    margin-right: 20px;
}

.header-logo-slogan {
    margin-top: 20px;
    padding-right: 20px;
    width: 200px;
    font-size: 16px;    
    font-weight: 700;
}

.header-logo-foto-brand {
margin-top: 3px;    
}

.header-logo-text {
    
}

.footer-fon {
    margin-top: 60px;
    padding-top: 45px;
    padding-bottom: 0px;
    color: white;
    background-color: #007263; 
}

.footer-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

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

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

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

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

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

.footer-adress a {
    color: white;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer-smm {
    display: flex;
    flex-direction: row;    
    justify-content: flex-start;
}

.footer-smm a {
    margin-right: 10px;
}


.footer__title::after {
    background-color: #ff3052;
    content: "";
    display: block;
    height: 2px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
    width: 32px;
}

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

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

.razdel-additional__underscore {
    padding-top: 0px;
    margin-bottom: 25px;
    width: 40px;
    border-bottom: 1px solid #000;
}

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

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

.div-shadow {
    -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-shadow2 {
    -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);
    border: 1px solid #E5E5E5; 
    border-radius: 10px;
}

.div-galery-foto {
    overflow: hidden;
}

.div-galery-foto-item {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.div-contact-separated {
    margin-top: 1rem;    
    background: #1D1D1D; 
    height: 1px; 
    margin-top: 0px;   
    margin-bottom: 10px;   
}

.div-flex3{
    display:flex;
    flex-wrap:wrap;
}

.div-flex3-item {
    height: 200px;
    width:calc( ( 100% - 140px ) / 3 );
    margin:0 0 80px;
}
.div-flex3-item:nth-child(3n-1){
    margin-left:70px;
    margin-right:70px;
}

.div-flex3-item h4 {
    margin-top: 10px;
    text-transform: uppercase;
}

.div-catalog-item {
    width:calc( ( 100% - 3*20px ) / 4 );
    margin:0 0 80px;
    margin-right:20px;
}
.div-catalog-item:nth-child(4n){
    margin-right:0px;
}

.div-catalog-item p {
    margin-top: 10px;
    text-align: center;
}

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

.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;
    border-width: 0px;
}

.button-middle {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 16px;
    width: 250px;
    height: 50px;
}

.button-small {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 16px;
    width: 160px;
    height: 50px;
}

.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-medical {
   color: #fff !important;
   font-weight: 300; 
   background-color: #01835D;
   border-color: #01835D;
   cursor: pointer;
}

.button-medical:hover {
  color: #fff !important;
  background-color: #19624C;
  border-color: #19624C;
  transition: 0.5s;
}

.input__bottom {
    padding-bottom: 20px;
}

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

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

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

.pKontaktAdressName  {
    padding-bottom: 0px !important;
    margin-bottom: 0px  !important; 
    line-height: 1.0;    
    font-weight: 800;
}

.pKontaktAdress {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 10px;
    line-height: 1.1;
    font-weight: 300;
}

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

.p-footer-link {
    font-weight: 500; 
    margin-bottom: 7px;
}

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

.span-big {
    font-size: 26px;
}

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

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

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

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

.form-control, .form-control-textarea, .form-control-full, .form-control-textarea-full {
    height: 80px;
    padding: 5px 10px;
    line-height: 1.5;
    background-clip: padding-box;
    border: 1px solid #676666;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control, .form-control-textarea {
    width: 350px;
}

.form-control-full, .form-control-textarea-full {
    width: 100%;
}

.form-control-textarea-full {
    height: auto;
}

.form-control-textarea-full {
    width: 100%;
}

.breadcrumb {
    font-size: 15px;    
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}

.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 {
  text-decoration: none;
  outline: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: .2s ease-in-out;
}

.button-motion-brand:before {
 content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.5));
  height: 80px;
  width: 50px;
  position: absolute;
  top: -8px;
  transform: skewX(-45deg);
  animation: shine 2s linear infinite;
}


table, td, th {    
    border: 1px solid #ddd;
    text-align: left;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 15px;
}

.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 {
    margin-bottom: 8px;
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

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

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

@media (max-width: 1110px)  {
    .hidden-3 {
    visibility: hidden;
    opacity: 0;
    display: none;        
    }
    
}

