

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

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


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


::selection {
    color:#fff;
    background:#3A7FE5; 
}

* {
	margin: 0;
	padding: 0;
}

html,
body {
	font-size: 16px;
    font-family: 'Avenir-Next', serif;
    color: #000;
}


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

.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-gird {
   display: grid;
   grid-template-columns: 33% 64%;
}

.content-gird-3 {
   display: grid;
   grid-template-columns: 20% 30% 40% 10%;
}

h1 {
    font-size: 94px;
    font-family: 'Oranienbaum', serif;    
    text-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1;
    width: 400px;
}

h2 {
    font-size: 94px;
    font-family: 'Oranienbaum', serif;
}

h3 {
    font-size: 30px;
    font-family: 'Oranienbaum', serif;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    font-family: 'Oranienbaum', serif;
    color: #E2A543;
    text-transform: uppercase;
}

h5 {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

a {
	color: #4B8AD6;
    transition: 0.7s;
}

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

.aLinkBrand {
    color: #425400;
    text-decoration: none;
}

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

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

.aLinkGray {
  color: #525252;
}

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

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

.aLinkWhite:hover {
    color: #e1e1e1;
    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: #DC5736; /*задаём цвет линии*/
    content: "";
    transition: width 0.3s ease-out; /*задаём время анимации*/
}

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

.aLinkZoom {
    width: 84px;
    transition: transform .5s; 
}

.aLinkZoom:hover {
    transform: scale(1.3) translateX(10px);
}

.divMenu {
    padding-top: 0px;
    margin-bottom: 20px;
    padding-left: 0px;
}

.divMenuLeftItem {
    font-size: 24px;    
    flex-wrap: nowrap;
    margin-top: 20px;
    margin-bottom: 15px;
    padding-right: 80px;
    font-weight: 500;
}

.divMenuLeftItemMenu {
    padding-right: 0px;
}

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

.divMenuFullContent {
    margin-top: 100px;
    margin-left: 0px;
}

.divMenuLogo {
    margin-right: 50px;
}

.divMenuLogo img {
    height: 86px;
}

.divMenuRightLogo {
    margin-top: 10px;
    margin-right: 20px;    
}

.divMenuTop {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #53A1E8;
}

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

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

.div-link-left  {
    justify-content: flex-start;
}

.div-link-left {
    justify-content: flex-end;
}

.div-link-left-name {
    display: flex;
    flex-direction: column;
}

.div-link-left-footer {
    font-size: 16px;
    color: #FFF;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-left: 30px;
}

.div-link-left-footer-item {
    margin-left: 60px;    
}

.div-link-left-footer-item p {
    margin-bottom: 8px;    
}

.div-link-right {
    height: 40px;
    margin-top: 8px;
}

.div-link-right-img {
   margin-left: 20px;
}

.div-link-right-img img {
   height: 40px;
}

.menu-desktop {
    display: flex;
    height: 100px;
    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 {
    font-size: 16px;
    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: 24px;
    font-family: 'Oranienbaum', serif;    
    color: #fff;
    width: 232px;
    margin-left: 32px;
}

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

.divHidden {
    display: none;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 5;
}


.div-contact-item {
    display: flex;
    flex-direction: row;  
    margin-top: 40px;
}

.div-contact-item-icon {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.div-contact-item-text p {
    margin: 0;
    padding: 0;
}

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

.main {
    height: 100vh;
    padding-top: 0px;
    padding-bottom: 0px;
    color: #fff;
    background-color: #020202;
    background-image: url(../images/page/01-main/vadim-electric.jpg); 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
}

.main-desсription  {
    padding-top: 0px;
    margin-bottom: 0px;
}

.main-desсription  p {
    line-height: 1.3; 
    width: 550px;
}

.main-foto {
    padding: 0px;
    padding-left: 15px;
}

.main-desсription__width {
    width: calc(var(--main-container)/2 - 30px);
    float: right;
}

.main-header {
    margin-top:50px;    
}

.main-important {
    font-size: 20px;
    width: 600px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 0px;
    padding-bottom: 25px;
    border-radius: 20px;
    border: 1px solid #B2AFAF;
    margin-top: 50px;
}

.main-important-header {
    position: relative;
    top:-19px;
    font-size: 24px;
    font-weight: 600; 
    text-align: center;
    z-index: 10;
}

.main-important-header-line {
    position: relative;
    top: -1px;
    height: 1px;
    width: 336px;
    background-color: #545454;
    margin: auto;
    z-index: 9;
}

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

.razdel-about-foto {
    margin-top: 50px;  
    padding-left: calc((100% - var(--main-container)) / 2 + 15px);
}

.razdel-map {
    margin-top: 30px;
}

.razdel-map__height {
    width: 100%; 
    height: 780px;
}

.razdel-advantages__title {
    padding-bottom: 40px;
}

.razdel-advantages__row {
    padding: 20px 0;    
}

.razdel-who-item {
    width: 250px;
}


.razdel-who-item-img {
    position: relative;
    top: 150px;
    left: 80px;  
    text-align: right;
    z-index: 5;
}

.razdel-who-item-img-2 {
    position: relative;
    top: 65px;
    left: 115px;  
    text-align: right;
    z-index: 4;
}


.razdel-foto {
    color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    background: #22282A;
}

.razdel-foto-text {
    font-size: 20px;
    width: 310px;
    padding-bottom: 30px;
}

.razdel-foto-text p {
    font-size: 20px;
    width: 310px;
    margin-bottom: 30px;
}

.razdel-foto-img {
    border: 20px solid #FFF;
}

.razdel-foto-img-1 {
    background-image: url(../images/page/03-foto/foto-vadim-1.jpg); 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
    width: 600px;
    height: 400px;
}

.razdel-foto-img-2 {
    background-image: url(../images/page/03-foto/foto-vadim-2.jpg); 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;    
    width: 600px;
    height: 400px;
    transform: rotate(6deg);
    position: relative;
    left: -70px;
    bottom: 20px;
}

.razdel-telegram {
    color: #fff;
    background: #22282A;
    padding-bottom: 80px;
}

.razdel-telegram-header {
    width: 840px;
    margin-bottom: 80px;
}


.razdel-telegram-text {
    font-size: 20px;
    width: 360px;
    padding-bottom: 30px;
}

.razdel-telegram-text p {
}

.razdel-telegram-img {
    position: relative;
    bottom: 150px;
    left: 40px;  
    text-align: center;
}

.razdel-telegram-img img {
    filter: drop-shadow(0 12px 10px rgba(0,0,0,.5));
}

.razdel-link {
    background: #22282A;
    padding-bottom: 100px;
}

.razdel-end {
    font-size: 20px;
    font-family: 'Oranienbaum', serif;    
    height: 60px;
    display: flex;
    align-items: center;
    text-align: center;
    background: #E2A543;
    color: #000000;
}

.razdel-end-close {
    padding-right: 30px;
    cursor: pointer;
}

.razdel-footer {
    margin-top: 110px;
    height: 200px;
    background-color: #D9D9D9;
}

.footer-end-link {
    display: flex;
    align-items: flex-start;
}

.footer-end-link div {
     margin-right: 50px;
}

.footer-end {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #425400;
}

.line__border {
    border-bottom: 1px solid #E5E5E5;
}

.line__border2 {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

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

.p-desсription {
    font-size: 20px;
    font-weight:  400;
    text-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.container__rightno {
    margin-right: 0px;
}

.row__rightno {
    padding-right: 0px;
}

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

.p-menu-full-item {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 0px !important;
    line-height: 130% !important;
    font-weight: 500;    
}

.p__middle {
    font-size: 24px;
    margin-bottom: 0;
    width: 340px;
}

.p__normal {
    margin-bottom: 0;
}

.p-footer__name {
    font-size: 34px;
    font-weight: 500; 
    line-height: 1; 
    text-transform: uppercase;
    width: 560px;
    margin-bottom: 25px;
}

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

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

.p-desсription-1 {
    font-size: 16px;
    line-height: 150%;
    text-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-desсription-1 b {
    font-weight: 800; 
}

.p-menu-phone {
    margin-top: 7px;
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 700;    
}

.pMenuFullItem {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.5; 
}

.p-number {
    font-size: 16px;
    font-family: 'Oranienbaum', serif;   
}

.p-number-margin {
    margin-top: 30px;    
}

.p-copyright {
    font-size: 14px;
    color: #525252;
    margin-top: 20px;
}

.spanBrand {
    color: #E0500C;
}

.span-spacing10 {
    letter-spacing: 0.1em;
}

.span-spacing50 {
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.span-right20 {
    margin-right: 20px;
}

.span-saparated20 {
    margin-left: 20px;
    margin-right: 20px;
}

.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-spacing20 {
    letter-spacing: 0.2em;
}

.span-big {
    margin-top: 10px;
    font-size: 24px;
}

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

.button-dark {
    font-size: 14px;
    font-family: 'Avenir-Next', serif;
    color: #fff ;
    background-color: #1B1D1F;
    cursor: pointer;
    border-radius: 60px;
    height: 40px;
    width: 120px;
    border: 0px solid #1B1D1F;
    transition: 0.5s;
}

.button-dark:hover {
    color: #E2A543;
    transition: 0.5s;
}

.button-margin {
    margin-left: 20px;
}

.button-work {
    font-size: 20px;
    font-family: 'Avenir-Next', serif;
    color: #fff;
    background-color: #36ADE1;
    cursor: pointer;
    height: 70px;
    width: 350px;
    border: 0px solid #36ADE1;
}

.button-work:hover {
    color: #36ADE1;
    background-color: #fff;
    transition: 0.5s;
}

.button-brand {
    font-size: 20px;
    font-family: 'Oranienbaum', serif;
    height: 50px;
    width: 280px;
    background-color: #E2A543;
    border: 0px solid #E2A543;
    border-radius: 20px;
}

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

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

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

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