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

@font-face {
 font-family: "Akzidenz Grotesk";
 src: url("/webfonts/AkzidenzGroteskPro-Super.woff") format("woff");
 font-weight: 700;
}
    
    
:root {
  --main-container: 1200px;
  --small-container: 1000px;
  --radzel-margin: 100px;
  --radzel-dop: 130px;
  --offset-container: 50px;  
  --offset-content: 60px;    
}

::selection {
    color:#fff;
    background:#245F79; 
}

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

html,
body {
    font-size: 18px;
    font-family: 'Helvetica', serif;
    color: #424242;
    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: 700px;
    padding-right: 40px;
}

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

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


h1, h2, h3, h4 {
    font-family: 'Akzidenz Grotesk', serif;
    font-weight: 800;    
}

h1 {
    font-size: 80px;
    margin-bottom: 40px;
    line-height: 0.95;
}

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

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

h4 {
    font-size: 16px;
}

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: #fff;
    transition: 0.7s;
}

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

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

.aLinkActive {
    color: #245F79;
}

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


.modal-test-full {
    visibility: hidden;
    opacity: 0.7;
    position: fixed; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    color: #000;
    background-color: green; 
    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;
}


.modal {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  top: -1000px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow-y: scroll;
  padding: 60px 15px;
}

.modal_active {
  position: fixed;
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: .3s;
  transition: .3s;
}

.modal__content {
  width: 100%;
  max-width: 560px;
  height: 460px;
  padding-top: 30px;
  padding-bottom: 40px;
  background: #f9f9f9;
  -webkit-box-shadow: 0 5px 15px black;
          box-shadow: 0 5px 15px black;
  border-radius: 3px;
  position: relative;
}

.modal__close-button {
  background: #245F79;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  outline: none;
}

.modal__close-button:hover {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.modal__title {
  margin: 0 0 15px;
}



.modal__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

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

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


.modal__test {
    padding: 20px;
}

.modal__test p {
    margin-bottom: 10px;
}

.modal__test-select {
    margin-top: 20px;
}

.modal__footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    bottom: 20px;
    left: 0px;
}

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

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


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


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

.content-index {
    position: relative;
    width: 100%;
}

.content-index-vopros {
    font-family: 'Akzidenz Grotesk', serif;
    font-weight: 800;        
    font-size: 400px;  
    color: rgba(52, 136, 173, 0.25);
    position: absolute;
    right: -50px;
    top: -95px;
}

.content-index-foto {
    padding-top: 20px;
}


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

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

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

.div-pogress {
    overflow: hidden;
    width: 100%;
    height: 5px;
    background-color: #C4C4C4;
}

.div-pogress-step {
    height: 5px;    
    background-color: #245F79;        
    float: left;
}
#div-test-step-2 {
    visibility: hidden;
    opacity: 0;                    
}

.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-small {
    font-size: 18px;
    font-weight: 400; 
    width: 130px;
    height: 45px;
}


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

.button-large {
    font-size: 38px;
    font-weight: 700;     
    width: 100%;
    height: 90px;
}

.button-long {
    width: 210px;    
}

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

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

.button-test:hover {
    background-color: #245F79;
    border: 1px solid #245F79;    
    transition: 0.5s;
}

.button-motion-brand {
}

.button-motion-brand:before {
}

.button-navigation {
   color: #fff ;
   background-color: #3488AD;
   cursor: pointer;
   border: 1px solid #3488AD;
   border-radius: 20px;    
}

.button-navigation:hover {
    background-color: #245F79;
    border: 1px solid #245F79;    
    transition: 0.5s;
}

.button-gray {
   color: #fff ;
   background-color: #C4C4C4;
   cursor: pointer;
   border: 1px solid #C4C4C4;
   border-radius: 20px;    
}


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



.input__bottom {
    padding-bottom: 20px;
}

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

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

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

.p-form-description {
    
    margin-bottom: 50px;
}

.p-brand-bold {
    font-family: 'Akzidenz Grotesk', serif;
    font-weight: 800;        
} 


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

.span-brand {
    color: #3488AD;
}

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


.form-index {
    margin-top: 81px;
    padding: 40px 50px;
    background-color: #EBEBEB;
    border-radius: 20px;
}


.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: 100px;
  width: 50px;
  position: absolute;
  top: -8px;
  transform: skewX(-45deg);
  animation: shine 1s linear infinite;
}


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



/* для элемента input c type="radio" */
  .custom-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  /* для элемента label связанного с .custom-radio */
  .custom-radio+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }
  /* создание в label псевдоэлемента  before со следующими стилями */
  .custom-radio+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #3488AD;
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }
  /* стили при наведении курсора на радио */
  .custom-radio:not(:disabled):not(:checked)+label:hover::before {
    border-color: #3488AD;
  }
  /* стили для активной радиокнопки (при нажатии на неё) */
  .custom-radio:not(:disabled):active+label::before {
    background-color: #3488AD;
    border-color: #3488AD;
  }
  /* стили для радиокнопки, находящейся в фокусе */
  .custom-radio:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
  .custom-radio:focus:not(:checked)+label::before {
    border-color: #80bdff;
  }
  /* стили для радиокнопки, находящейся в состоянии checked */
  .custom-radio:checked+label::before {
    border-color: #3488AD;
    background-color: #3488AD;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  }
  /* стили для радиокнопки, находящейся в состоянии disabled */
  .custom-radio:disabled+label::before {
    background-color: #e9ecef;
  }




