@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Montserrat+Alternates:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Nunito:wght@200;300;400;500;600&display=swap');



body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    /* background: rgba(247, 222, 164, 0.25); */
    /* background: rgba(250, 241, 225, 1); */
    background: #efefef;
    color:#2B2B2B;

}
a{
  text-decoration: none;
  color: inherit;
  margin: 0;
}
a:-webkit-any-link:focus-visible {
  outline-offset: none;
  outline: none;
}
h1, h2, h3, h4, p{
  margin:0;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 500;
}
ul{
  list-style-type: none;
}
.fading{
  animation: fadeIn ease 0.7s;
  -webkit-animation: fadeIn ease 0.7s;
/*  opacity:0; /*Элемент полностью прозрачный (невидимый)*/
/*	transition: 0.5s; /*Скорость перехода состояния элемента*/
/*	animation: show 1s 1; /* Указываем название анимации, её время и количество повторов*/
/*  animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@keyframes show{
	 0% {opacity:0;}
	 100% {opacity:1;}
}
.muted{
  color: #808080;
}

.main-container{
  display: flex;
  flex-direction: column;
  width: 100%;

}
.menu-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #3a3a3a;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
}
.menu-block {
  display: flex;
      width: 100%;
      height: 54px;
      max-width: 1250px;
      z-index: 1;
      justify-content: space-between;
      align-items: center;
      margin: auto;
      color: #ffffff
}
.lable{
  /* width: 180px;
  padding: 0 15px;
  margin-top: auto;
  margin-bottom: auto; */
  margin: auto 30px;
}
.lable a{
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Montserrat Alternates', sans-serif;
}
.variable-title{
  font-family: 'Montserrat Alternates', sans-serif;
}
.menu-list {
display: flex;
padding: 0;
color: #000000;
}
.menu-list-item{
  padding: 0 4px;
  align-items: center;
  cursor: pointer;
}
.menu-list-item .extended-item-menu,
.menu-list-item a{
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  /* text-transform: uppercase; */
}
.menu-list-item a:hover{
  /* border-top: 1px solid #13b8aa; */
  color: #e0e0e0!important;
}

/* старый вариант меню */

.menu-list > li {
  margin: 0 0.8rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #ffffff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  /* border: 1px solid #ffffff; */
  margin-right: 30px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
  border: none;
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 850px) {
  .menu-button-container {
    display: flex;
  }
  .menu-list {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
  }
  #menu-toggle ~ .menu-list li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu-list li {
    /* border: 1px solid #333; */
    height: 2.5em;
    padding: 0.3em 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu-list-item p.extended-item-menu,
  .menu-list-item > a{
    color:#ffffff;
    font-size: 16px;
    padding-left: 30px;
    display: inline-block;
    width: 104px;
  }
  .menu-list > li {
    display: flex;
    justify-content: center;
    justify-content: left;
    margin: 0;
    padding-top: 0.7em;
    padding-bottom: 0.7em;
    width: 100%;
    color: #ffffff;
    background-color:rgba(0,0,0,0.6);
  }

}

/* старый вариант меню */

.main-container {
  display: flex;
  width: 100%;
  margin-top: 68px;
  position: relative;
  min-height: calc(100vh - 108px);
}
.content-container{
  width: 1200px;
  /* height: 100%; */
  margin: 0 auto;
  /* background-color: red; */
  /* border: 1px solid red; */
  display:flex;
  flex-direction: column;
  position: relative;
}
.page-header,
.offer-page-header{
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-header::after {
    content: "";
    position: absolute;
    left: 140px;
    top: 32px;
    bottom: 0px;
    right: 0px;
    width: 250px;
    height: 650px;
    border: 8px solid #ffffff;
    border-radius: 15px;
    z-index: -1;
}
.offer-page-header::after {
    content: "";
    position: absolute;
    left: 140px;
    top: 32px;
    bottom: 0px;
    right: 0px;
    width: 200px;
    height: 226px;
    border: 8px solid #FBDCBC;
    border-radius: 15px;
    z-index: -1;
}
.block-offer-content::after,
.block-offer-content-2::after {
    content: "";
    position: absolute;
    left: 420px;
    top: 16px;
    bottom: 0px;
    right: 0px;
    width: 650px;
    height: 220px;
    border: 8px solid #ffffff;
    border-radius: 15px;
    z-index: -1;
}
.block-offer-content-2::after{
  height: 180px;
}

.block1{
  margin: 68px auto 30px auto;
}
.block1 h2 {
  /* font-family: 'Montserrat Alternates', sans-serif; */
  font-size: 62px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;

}
.block1 h1{
  /* font-family: 'Montserrat Alternates', sans-serif; */
  font-size: 44px;
  line-height: 115%;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 50px;
}
.block2-wrapper{
  margin-top: 32px;
  display: flex;
}
.block2-left{
  flex-direction: column;
  justify-content: center;
  text-align: left;

}
.block2-left,
.block2-right {
  width: 50%;
  display: flex;
  padding: 30px;

}
.block2-left h1{
  /* font-family: 'Montserrat Alternates', sans-serif; */
  font-size: 55px;
  line-height: 115%;
  font-weight: 500;
  letter-spacing: -0.01em;

}
.block2-right{
  justify-content: flex-end;
  position: relative;
}
.photo_header{
  right: 0;
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* box-shadow: 0 2px 18px rgb(0 0 0 / 30%); */
  border-radius: 10px;
  position: relative;
  z-index: 1
}
.block2-right::after {
    content: "";
    position: absolute;
    left: 100px;
    top: 50px;
    bottom: 0px;
    right: 0px;
    width: 452px;
    height: 294px;
    border: 7px solid #FBDCBC;
    border-radius: 15px;
    z-index: 0;
}
.block2-right::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 452px;
  height: 294px;
  border: 7px solid #A5AED4;
  border-radius: 15px;
  z-index: 0;
}
.photo_frame {
  position: absolute;
}

.block3 {
  width: 850px;
  margin: 40px auto;
  text-align: left;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
}

.block4 {
  margin: 30px auto;
}
.block4 h2 {
  font-size: 40px;
    line-height: 115%;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: center;
}


.cover1-text{
  padding-left: 20px;
  padding-top: 50px;
  background-color: red;
}
.cover1-text h1{
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 55px;
  line-height: 1.23;
  font-weight: 500;
}
.cover1-text h2{
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 65px;
  line-height: 1.2;
  font-weight: 500;
}
.hr_green{
  background-color: #13b8aa;
  border: none;
  height: 3px;
}

.photo_cover1 {
  position: absolute;
  height:400px;
  right: 20px;
  top: 250px;
  box-shadow: 0 2px 18px rgb(0 0 0 / 30%);
  border-radius: 10px;
}

.cover1_bottom{
    width: 700px;
    margin-bottom: 0;
    margin-top: 150px;
    padding-left: 20px;
    color: #000000;
    font-size: 26px;
    font-weight: 500;

}
.cover1_element1{
    position: absolute;
    top: 70px;
    right: 100px;
    width: 50px;
}
.cover1_element2{
    position: absolute;
    top: 45px;
    right: 181px;
    width: 40px;
}
.cover1_element3{
    position: absolute;
    top: 450px;
    left: 150px;
    width: 80px;
}

.hr_pink{
  background-color: #FF6262;
  border: none;
  height: 3px;
  margin: 0;
}
.block5_container{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

}
.block5_container h2 {
  font-size: 30px;
  padding-top: 50px;
}
.block5_wrapper {
  padding: 30px;
  display: flex;
  margin: 20px auto;
  justify-content: space-between;
  position: relative;
}
.block5_content{
  width: 45%;
  display: flex;

}
.block5_content_text,
.block5_content_text_3{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
}
.block5_content_text h3,
.block5_content_text_3 h3{
  padding: 20px 0;
  font-size: 24px;
}
.block5_content_text p,
.block5_content_text_3 p{
  font-size: 18px;
  padding-bottom: 2px;
}
.block5_img{
  width: 85%;
  -o-object-fit: contain;
  object-fit: contain;
  /* box-shadow: 0 2px 18px rgb(0 0 0 / 30%); */
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  z-index: 1;
}
.block5_content_img_right,
.block5_content_img_left{
  justify-content: flex-end;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.block5_content_img_left{
  justify-content: flex-start;
}
.block5_content_img_right::after {
      content: "";
      position: absolute;
      left: 30px;
      top: 50px;
      bottom: 0px;
      right: 0px;
      width: 440px;
      height: 268px;
      border: 7px solid #FBDCBC;
      border-radius: 15px;
      z-index: 0;
}
.block5_content_img_left::after {
      content: "";
      position: absolute;
      left: 23px;
      top: 27px;
      bottom: 0px;
      right: 0px;
      width: 460px;
      height: 295px;
      border: 7px solid #FBDCBC;
      border-radius: 15px;
      z-index: 0;
}

.block5_content_text::before,
.block5_content_text_3::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 470px;
    height: 300px;
    border: 8px solid #ffffff;
    /* border: 7px solid #A5AED4; */
    border-radius: 15px;
    z-index: -1;
}
.text-link {
    color: #36468A;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    border: 4px solid #A5AED4;
    border-radius: 10px;
    padding: 6px 10px;
    margin-left: -10px;
    margin-top: 8px;
    display:inline-block;
}
.connect_btn{
  padding-bottom: 1px;
}
.connect-btn{
    width: 250px;
    height: 75px;
    background-color: #36468A;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 30px auto;
    color: #ffffff;
    font-family: 'Montserrat Alternates', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}
.connect-btn:hover{
  box-shadow: 8px 7px #FBDCBC, -8px -7px #A5AED4;
  cursor: pointer;
}
.connect-btn:active{
background-color: rgba(54, 70, 138, 0.9);
}
.block6 {
  display: flex;
  width: auto;
  margin-top: 50px;
  position: relative;
  border: 7px solid #A5AED4;
  border-radius: 15px;
  position: relative;
}
.block6::after {
    content: "";
    position: absolute;
    left: 166px;
    top: 24px;
    bottom: 0px;
    right: 0px;
    width: 350px;
    height: 350px;
    border: 8px solid #ffffff;
    border-radius: 15px;
    z-index: -1;
}

.block6_left{
  width: 60%;
}
.block6-text,
.block6-text-mobile{
  margin: 50px;
}
.block6-text-mobile {
  margin: 20px;
}
.block6-text h3{
  margin: 30px 0;
  font-size: 24px;
}
.block6-text p,
.block6-text-mobile p{
  font-size: 20px;
  padding: 10px 0;
}
.block6-text-mobile{
  display: none;
}

.block6_right{
  display: flex;
    justify-content: flex-start;
    justify-items: flex-start;
    align-items: flex-end;
    margin: 100px 50px 0 50px;
}
.block6_photo {
    height: 430px;
}

.reviews{
  padding-top: 1px;
  margin-bottom: 100px;
  position: relative;
}
.reviews::after {
  content: "";
  position: absolute;
  left: 220px;
    top: 45px;
    bottom: 0px;
    right: 0px;
    width: 300px;
    height: 490px;
  border: 8px solid #ffffff;
  border-radius: 15px;
  z-index: -1;
}
.hr_line{
  width: 1200px;
  margin: 50px auto;
}
.footer {
	align-items: center;
	background-color: #3a3a3a;
	color: #ffffff;
	display: flex;
	font-size: 20px;
	min-height: 54px;
	justify-content: center;
	width: 100%;
}
.footer-content{
  display: flex;
  justify-content: space-around;
}
.footer-content li,
.footer-content a{
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    /* text-transform: uppercase; */
}




.counter-line {
      display: flex;
      align-items: center;
      width: 100%;
      margin: 60px auto;

}
.count {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin: auto;
  text-align: center;
}
.count_1, .count_2, .count_3 {
    width: 200px;
    font-size: 20px;
    position: relative;
}
.count_1::after,
.count_2::after,
.count_3::after {
      content: "";
      position: absolute;
      left: -25px;
      top: 55px;
      bottom: 0px;
      right: 0px;
      width: 250px;
      height: 123px;
      border: 7px solid #FBDCBC;
      border-radius: 15px;
      z-index: -1;
}
.number {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 500;
	font-size: 50px;
  padding-top: 20px;
}
/* .cover2::after {
  content: "";
  position: absolute;
  background-color: #0BB9AC;
  top: 500px;
  bottom: -15px;
  right: 70%;
  left: 0;
}
.cover2::before {
  content: "";
  position: absolute;
  background-color: #0BB9AC;
  top: -10px;
  bottom: 500px;
  right: 0;
  left: 0;
} */




.serviceTilesArea,
.cover4 {
    align-items: center;
    width: 100%;
    margin-top: 40px;
}
.serviceTilesArea{
  margin-bottom: 60px;
}

.serviceTiles,
.cover4_contentarea{
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  justify-content: space-around;
  margin: auto;
  text-align: center;
}
.serviceTile{
  width: 270px;
  height: 270px;
  border: 1px solid #6f93a2;
  background-color: #13b8aa;
}

.serviceTiles h3{
  font-size: 26px;
  font-weight: normal;
  text-transform: uppercase;
  text-shadow: 3px 0px 5px #13b8aa;
  padding-bottom: 50px;
}
.serviceTiles img{
  padding-top: 30px;
}
.serviceTiles p{
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  padding-top: 15px;
}
.serviceTile:hover{
  box-shadow: 0 30px 35px 0 #6f93a254;
  -webkit-box-shadow: 0 30px 35px 0 #6f93a254;
}
.cover3{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #13b8aa;
    margin: 10px auto;
    padding-bottom: 40px;
    padding-top: 20px;
    color: #ffffff;
}
.cover3 h3{
    font-size: 26px;
    font-weight: medium;
    text-transform: uppercase;
    padding-top: 20px;
    padding-left: 10%;
}
.cover3_contentarea{
  display: flex;
  margin: 50px 20px 10px 20px;
}
.cover3_contentarea h4{
  text-transform: uppercase;
  line-height: 1.5;
}
.cover3_contentarea_left{
    display: flex;
    width: 40%;
    text-align: center;
}
.cover3_banner_box {
      position: relative;
      margin: auto;
      background-color: transparent;
      width: 360px;
      height: 400px;
}
.cover3_banner{
    position: relative;
     width: 100%;
     height: 100%;
     text-align: center;
     transition: transform 7s;
     transform-style: preserve-3d;
     -webkit-transform-style: preserve-3d;
     perspective: 2000px;
}
.cover3_banner_box:hover .cover3_banner_front {
     transform: rotateY(180deg);
     -webkit-transform: rotateY(180deg);
}
.cover3_banner_box:hover .cover3_banner_back {
          transform: rotateY(0deg);
          -webkit-transform: rotateY(0deg);
}
.cover3_banner_front,
.cover3_banner_back {
  transition: transform 0.7s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
      position: absolute;
       width: 100%;
       height: 100%;
       backface-visibility: hidden;
       -webkit-backface-visibility: hidden;
      /* -webkit-transform: translate3d(0,0,0); */
      /* visibility:visible; */
}
.cover3_banner_front{
  background-image: url("../img/cover4_banner-1.png") ;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #3a3a3a;
}
.cover3_banner_front ul{
  text-align: left;
}
.cover3_banner_front li{
  font-weight: 300;
  line-height: 1.4;
}
.cover3_banner_front li::before{
    font-family: 'FontAwesome';
    content: '\f006';
    margin:0 10px 0 -18px;
    color: #ffffff;
}
.cover3_banner_back{
  background-image: url("../img/cover4_banner-2.png") ;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #3a3a3a;
  margin: auto;
  color: #ffffff;
   transform: rotateY(-180deg);
   -webkit-transform: rotateY(-180deg);
}
.cover3_banner_back a{
  display: block;
  margin-top: 40px;
  font-weight: 300;
  border-bottom: 1px solid #ffffff;
}
.cover3_banner_back a:hover,
.promoCode:hover {
  text-shadow: 2px 0px 2px #13b8aa;
}
.inner,
.inner_back {
  transform: translateZ(30px) scale(0.94);
  -webkit-transform: translateZ(30px) scale(0.94);
  -moz-transform: translateZ(30px) scale(0.94);
  will-change: transform;
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
    /* z-index: 2; */
}
.inner_back{
  margin-top: 30px;
}

p#text{
  padding-bottom: 10px;
}
.promoCode {
  cursor: pointer;
}
.cover3_contentarea_right {
    width: 50%;
    font-size: 18px;
    font-weight: 300;
    padding-left: 30px;
}
.cover3_contentarea_right p{
  margin-bottom: 0.3em;
}
.hr_cover3{
  background-color: #ffffff;
  width: 30%;
  margin-left: 25%;
  margin-top: 20px;
  border: none;
  height: 3px;
}
.cooperationTitle{
  display: flex;
  margin: 70px 20px 70px 20px;
 justify-content: space-around;
}
.cooperationTitle h2{
  font-size: 50px;
  font-weight: 500;
  text-align: center;

}
.cover4{
  min-height: 480px;
  display: flex;
  background-image: url("../img/cover4.png") ;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.cover4_contentarea{
  margin: auto;
}
.cover4_left_tile,
.cover4_middle_tile,
.cover4_rigth_tile {
  width: 270px;
  height: 270px;
  margin: 100px auto;
  background-color: #13b8aa;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cover4_left_tile {
  background-image: url("../img/4technique-start-getcouse.png") ;
}
.cover4_middle_tile {
  background-image: url("../img/4webinar-getcouse.png") ;
}
.cover4_rigth_tile {
  background-image: url("../img/4lendings-getcouse.png") ;
}
.cover4_tile{
  text-transform: uppercase;
  color: #ffffff;
}
.cover4_tile,
.cover4_tile_big {
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.5;
  position: relative;
   display: flex;
   flex-direction: column;
  justify-content: center;
  align-items: center;
   backface-visibility: hidden;
   -webkit-backface-visibility: hidden;
   will-change: visibility;

  /* transition: 0.3s; */
}
.cover4_tile_big {
  position: absolute;
  top: -30px;
}

.cover4_left_tile .cover4_tile_big {
  left: 0px;
}

.cover4_middle_tile .cover4_tile_big {
  left:-75px;
}

.cover4_rigth_tile .cover4_tile_big {
  right: 0;
}
.cover4_tile_big {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -webkit-transform: translate3d(0,0,0);
  visibility: hidden;
  will-change: transform, visibility;
  width: 380px;

}
.cover4_left_tile:hover .cover4_tile,
.cover4_middle_tile:hover .cover4_tile,
.cover4_rigth_tile:hover .cover4_tile {
  visibility: hidden;
	transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -webkit-transform: translate3d(0,0,0);
  will-change: transform, visibility;
}
.cover4_tile_big{
  /* color: #1A1A1A; */
  margin: auto;
  color: #13b8aa;
}
.cover4_left_tile:hover .cover4_tile_big,
.cover4_middle_tile:hover .cover4_tile_big,
.cover4_rigth_tile:hover .cover4_tile_big {
  /* -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg); */
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -webkit-transform: translate3d(0,0,0);
  visibility: visible;
  will-change: transform, visibility;
  background-image: url("../img/4technique-start-getcouse.png") ;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, .3);
  color: #000;
  /* color: #1A1A1A; */
  width: 380px;
  height: 370px;
  z-index: 4;
  transition: 0.5s;
}
.cover4_middle_tile:hover .cover4_tile_big{
  background-image: url("../img/4webinar-getcouse.png");
  box-shadow: 0px 0px 10px 15px rgba(0, 0, 0, .3);
}
.cover4_rigth_tile:hover .cover4_tile_big{
  background-image: url("../img/4lendings-getcouse.png") ;
  box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, .3);

}


.cover4_tile_big h4{
  text-transform: uppercase;
  margin: 15px;
}
.cover4_tile h4{
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.cover4_tile p{
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}
.hr_white{
  background-color: #FFFFFF;
  /* opacity: 0.6; */
  border: none;
  height: 3px;
  /* padding: 0; */
  margin: 10px auto 28px auto;
  width: 50px;
}

.block5{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px auto;
  padding-bottom: 40px;
  padding-top: 20px;
  position: relative;;
}

.contact-form{
  display: flex;
  flex-direction: column;
  margin: auto;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
}
/* Форма обратной связи */

/* конец фрагмента css для формы обратной связи */

/* кнопки возврата наверх и Телеграмм */

.telega{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 3%;
  bottom: 20px;
  display: flex;
  /* align-content: center; */
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 60px;
  background: radial-gradient(circle, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
  z-index: 9999;
}
.telega img{
  width: 50px;
  height: 50px;

}
.telega img:hover{
    opacity: 0.8;
    -webkit-transition: 0.33s all ease-out;
    -o-transition: 0.33s all ease-out;
    transition: 0.33s all ease-out;
}
div.scrollup {
  width: 50px;
  height: 50px;
  position: fixed;
  left: 4%;
  bottom: 20px;
  border-radius: 50px;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: #fff; /* цвет текста */
  background-color: #949494; /* цвет заднего фона */
  font-size: 20px; /* размер шрифта (иконки) */
  cursor: pointer; /* форма курсора */
  display: flex;
  display: none;  /* не отображать элемент */
  text-align: center; /*выравнивание содержимого элемента по центру */
  z-index: 9999;
}
div.scrollup:hover {
  background-color: #626262; /* цвет заднего фона при наведении */
}
div.scrollup i{
  padding-top: 0px;
}
/* конец кнопки возврата наверх и Телеграмм */

.block-offer {
  display: flex;
  flex-direction: column;
  width: auto;
  min-height: 100px;
  margin: 50px 0;
  position: relative;
  border: 7px solid #A5AED4;
  border-radius: 15px;
}
.block-offer-content,
.block-offer-content-2,
.block-offer-content-3{
  margin: 0 50px;
}

.block-offer-content p,
.block-offer-content-2 p,
.block-offer-content-3 p{
  padding: 10px 0;
  font-size: 18px;
}
.block-offer-content p:nth-last-child(1),
.block-offer-content-2 p:nth-last-child(1),
.block-offer-content-3 p:nth-last-child(1){
  padding-bottom:30px;
}
.block-offer-content h2,
.block-offer-content-2 h2,
.block-offer-content-3 h2{
  font-size: 40px;
    line-height: 115%;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 30px 0;
}
.block-offer-content li,
.block-offer-content-2 li,
.block-offer-content-3 li{
    font-size: 18px;
    line-height: 1.4;
    list-style-type: square;
    list-style-position: inside;
}
details {
    display:block;
    font-size: 18px;
    border: 7px solid #FBDCBC;
    border-radius: 10px;
    padding: 10px;
  }
  details[open] summary ~ * {
  animation: sweep .5s ease-in-out;
  }

  @keyframes sweep {
    0%    {opacity: 0; margin-left: -10px}
    100%  {opacity: 1; margin-left: 0px}
  }



  summary::-webkit-details-marker{display:none;}
  summary::-moz-list-bullet{list-style-type:none;}
  summary::marker{display:none;}
  summary {
     padding: .3em .5em .3em .4em;
     display:inline-block;
     cursor: pointer;
     transition: transform 1s;
  }
  summary:after {
    content: "(раскрыть список)";
    margin-left: .3em;
    display: inline-block;
    transition: transform 1s;
  }
  details[open] > summary:after {
    content: "(скрыть список)";
      transition: transform 1s;

  }


.block-offer-content details p,
.block-offer-content-2 details p,
.block-offer-content-3 details p{
  padding-left: 0.9em;
  padding-right: 0.9em;
}
.offer-individual{
  position: relative;
}
.offer-individual:after{
    content: "";
      position: absolute;
      left: 30px;
      top: 10px;
      bottom: 0px;
      right: 0px;
      width: 550px;
      height: 135px;
      border: 7px solid #ffffff;
      border-radius: 15px;
      z-index: -1;
}
.offer-individual:nth-child(2):after{
      height: 180px;
}
.offer-individual:nth-child(3):after{
      height: 90px;
}
.offer-individual:nth-child(4):after{
      height: 90px;
}
.offer-individual:nth-child(5):after{
      height: 90px;
}

@media (min-width: 560px){
  .block3 .connect-button{
    width: 250px;
  }
  .article-body .connect-button{
        min-height: 120px;
  }
  .block3 .connect-btn{
    width: 120px;
    height: 118px;
    margin: 0 auto;
    text-align: center;
  }
  .btn-high{
    width: 120px;
    height: 118px;
    margin: 0 auto;
    text-align: center;
  }
  .offer-header-wrapper{
    display: flex;
    align-items: center;
  }
  .offer-header{
    padding-right: 20px;
  }
  .block3-text{
    display: flex;
    width: 550px;
    margin: auto 0px auto 30px;
  }
}

@media (max-width: 1250px){
  .content-container {
  max-width: 1100px;
  }
  .page-header::after {
    left: 130px;
    top: 50px;
    bottom: 0px;
    right: 0px;
    width: 251px;
    height: 680px;
  }
  .block1 h2 {
    font-size: 60px;
  }
  .block2-left h1,
  .block1 h1 {
    font-size: 50px;

  }
  .block2-right::after {
    width: 405px;
    height: 262px;
  }
  .block2-right::before {
    left: 57px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 405px;
    height: 270px;
  }
  .block3 {
    font-size: 22px;
  }
  .block4 h2 {
    font-size: 36px;
  }
  .block5_content_text::before,
  .block5_content_text_3::before {
      width: 425px;
      height: 290px;
  }
  .block5_content_img_right::after {
    left: 37px;
    top: 39px;
    bottom: 0px;
    right: 0px;
    width: 409px;
    height: 250px;
  }
  .block5_content_img_left::after {
        width: 410px;
        height: 263px;

  }
  .block6::after {
    top: 24px;
    width: 314px;
    height: 380px;
  }


}
@media (max-width: 1100px){
  .content-container {
  max-width: 900px;
  }
  .page-header::after {
    left: 100px;
    top: 50px;
    bottom: 0px;
    right: 0px;
    width: 205px;
    height: 550px;
}
  .block1{
    margin-top: 80px;
  }
  .block1 h2,
  .block1 h1 {
    font-size: 52px;
  }
  .block2-left h1,
  .block1 h1 {
    font-size: 44px;
  }
  .block2-right::after {
    width: 300px;
    height: 200px;
    left: 80px;
    top: 50px;
    border: 5px solid #FBDCBC;
  }
  .block2-right::before {
    left: 55px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 300px;
    height: 215px;
    border: 5px solid #A5AED4;
  }
  .block3 {
    font-size: 22px;
    width: 750px;
  }
  .block4 h2 {
    font-size: 29px;
  }
  .block5_img {
    width: 95%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .block5_content_text h3,
  .block5_content_text_3 h3 {
    padding-top: 0;
  }
.block5_content_img_right::after {
    left: -11px;
    top: 34px;
    bottom: 0px;
    right: 0px;
    width: 375px;
    height: 234px;
  }
  .block5_content_img_left::after {
    width: 374px;
    height: 242px;
  }

  .block5_content_text::before,
  .block5_content_text_3::before {
    left: 45px;
    width: 361px;
    height: 325px;
    top: -24px;
  }
  .block6-text{
  margin-right: 0;
  }
  .block6::after {
    left: 116px;
    top: 33px;
    bottom: 0px;
    right: 0px;
    width: 305px;
    height: 422px;
  }
  .block-offer-content::after{
    width: 400px;
    height: 275px;
  }
  .block-offer-content-2::after{
    width: 400px;
    height: 180px;
  }
}

@media (max-width: 560px){
  .main-container {
    margin-top: 61px;
  }
  .menu-block{
    height: 60px;
  }
  .menu-list{
    padding: 10px 0 0 0;
  }
  .menu-list-item{
    align-items: center;
  }
  .lable{
    margin: auto 20px;
  }
  .lable a{
    font-size: 24px;
    cursor: pointer;
  }
  .content-container {
    width: 90%;
  }
  .page-header::after {
    left: 10px;
    top: 15px;
    bottom: 0px;
    right: 0px;
    width: 216px;
    height: 460px;
    border: 6px solid #ffffff;
  }
  .block1 {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .block2-left h1 {
    font-size: 42px;
  }
  .block1 h2 {
    font-size: 9vw;
  }
  .block1 h1{
    margin: 0 30px;
  }
  .block-offer-content,
  .block-offer-content-2,
  .block-offer-content-3 {
    margin: 0 30px;
  }
  .block2-wrapper {
    flex-direction: column;
  margin-top: 0px;
  }
  .block2-left, .block2-right {
    width: auto;
    padding: 30px;
  }
  .block2-right {
    padding: 30px 0;
    justify-content: center;
  }
  .photo_header {
    width: 100%;
  }
  .block2-right::after {
    width: 240px;
    height: 200px;
    left: 57px;
    top: 54px;
  }
  .block2-right::before {
    width: 245px;
    left: -7px;
    top: 10px;
    bottom: 0px;
    right: 0px;
    height: 200px;
  }
  .block3 {
    width: auto;
    font-size: 22px;
    margin: 0px;
    flex-direction: column-reverse;
  }
  .block3-text{
    margin: 0px 20px;
  }
  .block4 h2{
    font-size: 28px;
    text-align: left;
    padding: 0 10px;
  }
  .block5_wrapper{
    flex-direction: column;
    padding: 0px;
  }
  .block5_wrapper:nth-child(2){
    flex-direction: column-reverse;
  }

  .block5_content{
    width: auto;
  }
  .block5_content_text,
  .block5_content_text_3{
    padding: 10px;
  }
  .block5_content_img_right,
  .block5_content_img_left {
    justify-content: center;
    padding: 10px;
  }
  .block5_content_img_right::after,
  .block5_content_img_left::after {
    left: 6px;
    top: -9px;
    bottom: 0px;
    right: 0px;
    width: 245px;
    height: 245px;
  }
  .block5_content_text::before,
  .block5_content_text_3::before {
    left: 45px;
    width: 161px;
    height: 125px;
    top: -24px;
  }
  .block5_content_text_3::before {
    height: 225px;
  }

  .block6{
    flex-direction: column;
    width: auto;
  }
  .block6::after {
    left: 15px;
    width: 190px;
    height: 250px;
    top: 20px;
  }
  .block6_left{
    width: 100%;
  }
  .block6-text{
    display: none;
  }
  .block6-text-mobile{
    display: block;
  }
  .block6_right{
    justify-content: center;
    margin-top: 50px;
  }
  .block6_photo {
      height: 358px;
  }
  .counter-line{
    margin: 30px auto;
  }
  .count{
    display: block;
  }
  .count_1, .count_2, .count_3{
    display: flex;
    align-items: center;
    margin: 20px auto;
    width: 230px;
  }
  .count_1::after, .count_2::after, .count_3::after {
    left: 6px;
    top: -7px;
    width: 240px;
    height: 70px;
  }
  .number{
    padding: 0;
  }
  .count_text_mobile{
    text-align: right;
  }
  .reviews::after{
    left: 210px;
    width: 100px;
    height: 251px;
  }
  .cooperationTitle h2{
    text-align: left;
  }
  .slider__item_comment{
    text-align: left;
  }
  .block-offer-content h2,
  .block-offer-content-2 h2,
  .block-offer-content-3 h2 {
    font-size: 26px;
  }
  .block1 h1 {
    font-size: 8vw;
    font-weight: 600;
  }
  .offer-page-header::after {
    left: 0px;
    top: 20px;
    width: 200px;
    height: 250px;
  }
  .block-offer-content::after,
  .block-offer-content-2::after {
    left: 100px;
    top: 16px;
    bottom: 0px;
    right: 0px;
    width: 210px;
    height: 375px;
  }
  .block-offer-content-2::after {
    height: 255px;
  }
  .btn-high {
    width: 180px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
  }
  .offer-individual:after {
    left: 16px;
    width: 170px;
    height: 160px;
  }
  .offer-individual:nth-child(2):after{
        height: 205px;
  }
  .offer-individual:nth-child(3):after{
        height: 130px;
  }
  .offer-individual:nth-child(4):after{
        height: 105px;
  }
  .offer-individual:nth-child(5):after{
        height: 105px;
  }

}
@media (max-width: 389px){
  summary:after {
    margin-left: 0;
  }
}
/* статьи */
