@import url("./fonts.scss");
@import url("./_reset.scss");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  color: #151f28;
}

.header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  align-content: center;
  font-size: 14px;
  gap: 8px;
}
.header__logo-title {
  font-weight: 600;
  font-size: 14px;
}

.input-menu {
  display: none;
}

.input-menu:checked + .window__menu {
  opacity: 1;
  visibility: visible;
}

.input-menu:checked + .window__menu .window__menu-aside {
  transform: translateX(0%);
}

#menu {
  display: none;
  position: relative;
  cursor: pointer;
}

.window__menu {
  position: fixed;
  background-color: rgba(75, 75, 75, 0.301);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}

.window__menu-aside {
  padding: 15px;
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  transform: translateX(100%);
  transition: 1s;
  background-color: #fff;
  box-shadow: -2px 0px 15px rgb(75, 75, 75);
}

.window__menu-nav {
  display: flex;
  flex-direction: column;
  line-height: 2;
  margin-left: auto;
}

.window__menu-link {
  font-size: 20px;
}

.label-menu {
  display: flex;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: auto;
}

.label-close {
  position: absolute;
  top: 35px;
  right: 10px;
}

.label-left-area {
  display: flex;
  width: 100%;
  height: 100%;
}

.wrapper {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-box {
  border-left: 2px solid #151f28;
  max-width: 500px;
  padding-left: 20px;
}

.nav {
  max-width: 620px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #151f28;
}
.nav__link {
  padding: 14px;
  transition: 0.5s;
}
.nav__link:hover {
  background-color: #151f28;
  color: #fff;
}

.main {
  line-height: 1.5;
}
.main__img {
  width: 600px;
  box-shadow: 1px 1px 12px #151f28;
  transition: 0.8s;
  margin: 40px auto;
  opacity: 0.9;
}
.main__img:hover {
  scale: 1.05;
  opacity: 1;
}

.cards {
  margin: 60px auto;
}

.cards .wrapper {
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.card {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
}
.card__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
}
.card__text {
  text-indent: 60px;
  font-size: 18px;
  border-left: 2px solid #151f28;
  padding-left: 14px;
}
.card__img {
  width: 500px;
}
.card__link {
  margin-top: 20px;
  border: 1px solid #151f28;
  padding: 16px;
}

.left-page-link {
  position: fixed;
  top: 50%;
  left: 5%;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid rgb(21, 31, 40);
  padding: 4px;
  font-size: 14px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: 0.6s;
}

.left-page-link:hover {
  box-shadow: 1px 1px 10px rgba(21, 31, 40, 0.4196078431);
}

.footer {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 80px;
}
.footer__item {
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 250px;
}
.footer .footer .wrapper {
  border-top: 1px solid rgba(21, 31, 40, 0.4117647059);
  padding-top: 30px;
}
.footer__contacts {
  display: flex;
  align-items: center;
  max-width: 370px;
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.up {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid rgb(21, 31, 40);
  padding: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}

.up:hover {
  box-shadow: 1px 1px 10px rgba(21, 31, 40, 0.4196078431);
}

@media (max-width: 1190px) {
  .header {
    padding: 0px 10px;
  }
}
@media (max-width: 960px) {
  .nav {
    display: none;
  }
  #menu {
    display: block;
  }
  .burger {
    display: block;
  }
  .footer .wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-top: 50px;
  }
  .footer .header__logo {
    flex-direction: column;
  }
}
@media (max-width: 725px) {
  .header__logo {
    font-size: 11px;
  }
  .header__logo-title {
    font-weight: 400;
    max-width: 250px;
    font-size: 11px;
  }
  .window__menu-link {
    font-size: 12px;
  }
  .window__menu-aside {
    width: 40%;
  }
  .left-page-link {
    width: 40px;
    height: 40px;
    font-size: 10px;
    left: 2%;
  }
  .card {
    max-width: 350px;
  }
  .card__img{
  width: 300px;
  margin: 0 auto;
}
}/*# sourceMappingURL=style2.css.map */

.max {
  display: flex;
flex-direction: row;
align-items: center;
gap: 5px;
}