@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
:root {
  --bg-color: #ffffff;
  --dark-color: #000000;
  --blackgrey-main-text: #282828;
  --red-color-btn: #dc4133;
  --grey-color: #d9d9d9;
  --aqua-color: #249eb8;
  --aqualight-color: #27a8c4;
}


[class*=__container] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

[class*=_container] {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body {
  font-family: Raleway;
  font-size: 16px;
}

body.__lock {
  overflow: hidden;
}

.main__title {
  width: 100%;
  display: flex;
  padding: 64px 0 64px 0;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
  font-size: 64px;
  font-weight: 600;
  line-height: 110%;
}
@media (max-width: 500px) {
  .main__title {
    height: 78px;
    font-size: 33px;
    font-weight: 600;
    line-height: 110%;
  }
}

.blog__nav{
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  background: #249EB8;
  justify-content: center;
}

.blog__nav_link{
  color: #fff;
  display: block;
  font-size: 40px;
  font-weight: 600;
  padding: 50px 45px;
  font-family: Raleway;
  line-height: 46.96px;
}
@media (max-width: 769.98px){
  .blog__nav_link{
    font-size: 24px;
    line-height: 28.18px;
    padding: 30px 19px;
  }
}

.blog {
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  padding: 63px 0 108px 0;
}

.blog__textContent {
  display: flex;
  flex-direction: column;
  gap: 63px;
}

.blog__title {
  color: var(--blackgrey-main-text);
  font-size: 41px;
  font-weight: 400;
  line-height: 48px;
  text-align: center;
  max-width: 761px;
  margin: 0 auto;
}

.blog__subtitle {
  color: var(--aqua-color);
  font-size: 25px;
  font-weight: 600;
  line-height: 29px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 75px;
}

.blog__columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 10px;
}

.blog__column {
  display: flex;
  flex-direction: column;
  gap: 49px;
  margin-bottom: 40px;
}

.hiddenBlog {
  display: none;
}

.showBlog {
  display: block;
}

@media (max-width: 769.98px) {
  .blog__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 23px;
  }
}
@media (max-width: 500px) {
  .blog {
    padding: 31px 0 36px 0;
  }
  .blog__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
  }
  .blog__textContent {
    gap: 25px;
  }
  .blog__subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    margin-bottom: 31px;
    max-width: 351px;
  }
}
.blog__item{
  width: 360px;
  /*display: block;*/
  position: relative;
  border-radius: 24px;
  background-color: var(--grey-color);
}

.blog__item img{
  width: 100%;
  height: 214px;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
}


.blog__item span {
  color: #8b8989;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.blog__item p {
  line-height: 137.2%;
}

.blog__item_title {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}

.blog__item_text {
  color: #696969;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  margin-bottom: 12px;
}

.blog__max {
  position: relative;
  height: 310px;
  width: 360px;
}

.blog__content {
  position: relative;
  background-color: var(--grey-color);
  border-radius: 24px;
  padding: 26px 15px 11px 15px;
}
.blog__item img ~ .blog__content {
  margin-top: -24px;
}
.blog__content span {
  color: #8b8989;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.blog__content canvas {
  background-image: url("../assets/icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  width: 45px;
  height: 45px;
  bottom: -8px;
  right: -8px;
}

.blog__btn {
  width: 211px;
  height: 51px;
  border-radius: 25px;
  border: 1px solid var(--dark-color);
  background-color: transparent;
  color: #696969;
  font-size: 20px;
  font-weight: 500;
  line-height: 137.2%;
  text-align: center;
  margin: 0 auto;
  margin-top: 156px;
}

@media (max-width: 500px) {
  .blog__btn {
    margin-top: 0px;
  }
}
.services {
  background-color: #f3f3f3;
  padding: 91px 0 114px 0;
}

.services__content {
  position: relative;
  z-index: 10;
}

.services__title {
  display: flex;
  justify-content: center;
  color: var(--blackgrey-main-text);
  font-size: 51px;
  font-weight: 600;
  line-height: 60px;
  margin: 0 auto;
  margin-bottom: 36px;
}

.services__block {
  position: relative;
  display: flex;
  align-items: center;
  height: 417px;
  overflow: hidden;
}

.arrow-left {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 60%;
  transform: translate(-60%, 0);
  left: -40px;
  cursor: pointer;
  z-index: 10;
}

.arrow-right {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 60%;
  transform: translate(-60%, 0);
  right: -80px;
  cursor: pointer;
}

.services__block-content {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  left: 0;
  transition: all 1s ease 0s;
}

.slide__content {
  position: relative;
  width: 430px;
  height: 294px;
  background-color: var(--bg-color);
  border-radius: 43px;
  padding: 60px 44px 31px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}
.slide__content canvas {
  position: absolute;
  width: 73px;
  height: 73px;
  top: -36px;
  left: 42%;
  z-index: 999;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid rgb(0, 0, 0);
  background: rgba(255, 255, 255, 0.4980392157);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-image: url("../assets/icon/services.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
}

.services__block-content > .slide__content:nth-child(2) {
  padding-top: 50px;
  gap: 22px;
}

.slider__title {
  color: var(--aqua-color);
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}

.slider__subtext {
  color: #696969;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

#services-btn {
  width: 276px;
  height: 51px;
  color: #696969;
  font-size: 20px;
  font-weight: 500;
  line-height: 137.2%;
  border-radius: 25px;
  border: 1px solid var(--dark-color);
  background-color: transparent;
  margin: 56px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*@media (max-width: 1359.98px) {
  .arrow-left {
    top: 100%;
    left: 45vw;
  }
  .arrow-right {
    top: 100%;
    right: 35vw;
  }
}
@media (max-width: 662.98px) {
  .arrow-left {
    top: 95%;
    left: 40vw;
  }
  .arrow-right {
    top: 95%;
    right: 28vw;
  }
}*/
@media (max-width: 425px) {
  .services {
    padding: 33px 0 43px 0;
  }
  .services__title {
    color: var(--blackgrey-main-text);
    font-size: 33px;
    font-weight: 600;
    line-height: 39px;
    margin-bottom: 0;
  }
  .services__block-content {
    margin-left: 18px;
  }
  .slide__content {
    max-width: 360px;
    gap: 0;
    padding: 50px 22px 20px 24px;
  }
  .slide__content canvas {
    position: absolute;
    width: 73px;
    height: 73px;
    top: -36px;
    left: 39%;
    z-index: 999;
    box-sizing: border-box;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4980392157);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    background-image: url("../assets/icon/services.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
  }
  .slider__title {
    font-size: 27px;
    font-weight: 600;
    line-height: 1;
    max-width: 300px;
    text-align: center;
    margin-bottom: 19px;
  }
  .slider__subtext {
    color: #696969;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }
  .slider-btn {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
}
.example-blog {
  padding: 20px 0 0;
}

.example-blog__content a {
  color: var(--blackgrey-main-text);
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: left;
}

.content__exmp-1 {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
}

.bottom-text {
  display: none;
}

.exmp-1__ls {
  flex: 0 1 500px;
}
.exmp-1__ls span {
  color: #8b8989;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  text-align: left;
}
.exmp-1__ls .exmp-1__teaser {
  margin-top: 60px;
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 137.2%;
  text-align: left;
  max-width: 461px;
}

#bookmark {
  display: flex;
  gap: 25px;
  align-items: center;
}

.bookmark-big {
  display: block;
  cursor: pointer;
}

.mark rect {
  fill-opacity: 1;
}

.bookmark-min {
  display: none;
}

.exmp-1__ls-title {
  color: var(--dark-color);
  font-size: 64px;
  font-weight: 600;
  line-height: 110%;
  text-align: left;
  margin-bottom: 8px;
  position: relative;
}

.bookmarkIcon {
  fill: white;
}

.exmp-1__rs {
  flex: 0 1 647px;
  height: 317px;
  background-color: #999999;
  border-radius: 58px;
  overflow: hidden;
}
.exmp-1__rs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grey__title {
  height: 159px;
  width: 100%;
  background-color: #d9d9d9;
  padding-top: 30px;
}
.grey__title div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.grey__title div > p:first-child {
  color: var(--dark-color);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  text-align: left;
}
.grey__title div > p:not(:first-child) {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 300;
  line-height: 110%;
  text-align: left;
}

.content__exmp-2 {
  margin: 70px 0 162px 0;
}

.content__exmp-2__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.content__exmp-2__content h2 {
  color: var(--blackgrey-main-text);
  font-size: 40px;
  font-weight: 600;
  line-height: 47px;
  margin-bottom: 28px;
}
.content__exmp-2__content h3 {
  color: var(--blackgrey-main-text);
  font-size: 28px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 28px;
}
.content__exmp-2__content h4 {
  color: var(--blackgrey-main-text);
  font-size: 28px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 28px;
}
.content__exmp-2__content p {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 137.2%;
  margin-bottom: 28px;
}

.content__exmp-2__content ul{
  margin-bottom: 28px;
}

.content__exmp-2__content ul li{
  font-size: 18px;
  font-weight: 500;
  position: relative;
  line-height: 137.2%;
  padding-left: 20px;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.content__exmp-2__content ul li::before{
  content: "";
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  position: absolute;
  border-radius: 50%;
  background: rgba(39, 168, 196, 0.35);
}
.content__exmp-2__content table{
  margin-bottom: 28px;
}
.content__exmp-2__content table p{
  margin-bottom: 0;
}
.content__exmp-2__content table td{
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.3);
}


.first-let {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 137.2%;
  margin-bottom: 84px;
}

.second-let {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 137.2%;
  margin-bottom: 28px;
}

.third-let {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 137.2%;
}

@media (max-width: 1200px) {
  .exmp-1__ls-title {
    color: var(--dark-color);
    font-size: 46px;
    font-weight: 600;
  }
}
@media (max-width: 900px) {
  .exmp-1__ls-title {
    color: var(--dark-color);
    font-size: 36px;
    font-weight: 600;
  }
}
@media (max-width: 734.98px) {
  #bookmark {
    gap: 0;
    justify-content: space-between;
  }
  .content__exmp-1 {
    display: flex;
    flex-direction: column;
  }
  .content__exmp-1 p {
    display: block;
    margin-top: 49px;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 137.2%;
    text-align: left;
  }
  .bookmark-big {
    display: none;
  }
  .bookmark-min {
    display: block;
  }
  .exmp-1__rs {
    margin-top: 12px;
    max-height: 214px;
  }
  .exmp-1__ls {
    flex: 0 1 auto;
  }
  .exmp-1__ls p {
    display: none;
  }
  .example-blog {
    padding: 0px 0 20px 0;
  }
  .link-bread {
    display: none;
  }
  .content__exmp-2 {
    margin: 34px 0 34px 0;
  }
  .first-let {
    margin-bottom: 29px;
  }
  .second-let {
    margin-bottom: 28px;
  }
  .third-let {
    display: none;
  }
  .content__exmp-2__content h4 {
    display: none;
  }
}
:root {
  --bg-color: #ffffff;
  --dark-color: #000000;
  --blackgrey-main-text: #282828;
  --red-color-btn: #dc4133;
  --grey-color: #d9d9d9;
  --aqua-color: #249eb8;
  --aqualight-color: #27a8c4;
}



.footer__bottom{
  padding: 110px;
  background: #005777;
}

.footer__container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 10px;
}

.footer__item{
  display: flex;
  flex-direction: column;
  gap: 49px;
  margin-bottom: 40px;
}

.footer__item_link{
  font-size: 16px;
  font-weight: 500;
  font-family: Raleway;
  line-height: 21.95px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
}
.footer__item_link:hover{
  color: rgb(255,255,255);
}
.footer__item_link.first{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 27.44px;
  font-family: Raleway;
  display: inline-block;
  text-decoration: none;
  color: rgb(255,255,255);
}