@import "https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700,800&amp;subset=cyrillic,cyrillic-ext";

:root {
  --main-container: 1200px;
  --radzel-margin: 170px;
}

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

* {
	margin: 0;
	padding: 0;
}

html,
body {
	font-size: 18px;
    font-family: "Inter", "Roboto", sans-serif;
    font-weight: 300;
    color: #424242;
}

a {
	color: #4B8AD6;
}

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

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

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

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

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

.aLinkWhite:hover {
    color: #f3f3f3;
    font-weight: 700;
    text-decoration: none;
}

.aLinkBlack {
    color: #424242;
    text-decoration: none;
}

.aLinkBlack:hover {
    color: #ee0a2d;
    text-decoration: none;
}

h1 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    line-height: 130%; 
}

h3 {
    font-size: 34px;
    font-weight: 800;
    color: #000;
    line-height: 130%; 
}

h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 130%; 
    margin-bottom: 20px;
}

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

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

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 70px;
    font-weight: bold;
}

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

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

.main {
    margin-top: 70px;
    margin-bottom: 170px;
    text-align: center;
}

.main-description {
    margin-top: 50px;
    font-size: 24px;
    line-height: 130%;
}

.main-foto {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 90px;
}

.main-foto-item__center {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;    
}

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

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

.razdel-smm {
    margin-top: 90px;
}

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

.map-description {
    margin-top: 10px;
    margin-bottom: 40px;
}

.razdel-smm {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

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

footer {
   background: #787878;
   color: #fff;
}

.content-kontakt {
    padding-top: 130px;
    padding-bottom: 130px;
}

.content-kontakt-smm {
    width: calc((var(--main-container) - 120px - 120px)/3);
    float: right;
}

.content-kontakt-smm p {
    font-size: 24px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

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

.p-phone {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

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


