@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --bg-primary: #2b9ea3;
  --bg-primary-hover: #268c91;
  --main-bg-color: rgba(128, 128, 128, 0.3);
  --header-bg-color: #fff;
  --text-primary: rgba(0, 0, 0, 0.85);
  --shadow-color: #e7eafa;
  --light-gray: #f2f3f7;
  --medium-gray: #d9d9d9;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: var(--main-bg-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.block {
  background-color: var(--header-bg-color);
  border-radius: 24px;
  padding: 56px 48px;
  overflow: hidden;
  margin-bottom: 10px;
}

h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  color: var();
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.btn_primary {
  padding: 12px 24px;
  background-color: var(--bg-primary);
  color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  border: transparent;
}

.btn_primary:hover {
  background-color: var(--bg-primary-hover);
}

.main {
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1216px;
  margin: 0 auto;
}

.section_block {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
  background-color: var(--header-bg-color);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 56px 48px;
  overflow: hidden;
  margin-bottom: 10px;
}

.hero_title {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  margin-bottom: 15px;
}

.hero_bages {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 392px;
  margin-bottom: 46px;
}

.hero_bage_text {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.hero_bage {
  padding: 9px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--header-bg-color);
  box-shadow: 0px 2px 8px 0px var(--shadow-color);
}

.hero_btn {
  margin-bottom: 10px;
}

.hero_text_under_btn {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.hero_right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circles {
  align-self: flex-start;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.first_circle {
  width: 280px;
  height: 280px;
  top: 20%;
  left: 20%;
}

.second_circle {
  width: 560px;
  height: 560px;
  top: -10%;
  left: -5%;
}

.third_circle {
  width: 840px;
  height: 840px;
  top: -41%;
  left: -27%;
}

.hero_phone {
  position: relative;
  z-index: 2;
  justify-self: center;
}
.app_icon {
  width: 30px;
  height: 30px;
}

.burger_menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.burger_menu:hover svg {
  color: var(--bg-primary-hover);
}

.hero_noties {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 600px;
  flex-direction: column;
  gap: 94px;
}

.hero_noty {
  width: 275px;
  border-radius: 18.93px;
  border: 1px solid #fff;
  background: linear-gradient(10deg, #535252 0%, #d6d6d6 100%), rgba(166, 166, 166, 0.8);
  background-blend-mode: color-dodge, normal;
  opacity: 0.85;
  display: flex;
  padding: 11.042px 11.042px 9.465px 11.042px;
  gap: 7.887px;
  box-shadow: 0px 2px 52px 0px rgba(0, 0, 0, 0.14);
}

.noty_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.noty_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.noty_title {
  font-size: 11.831px;
  font-style: normal;
  font-weight: 600;
  line-height: 15.775px; /* 133.333% */
  letter-spacing: -0.315px;
}

.noty_time {
  font-size: 10.254px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.775px;
  color: rgba(127, 127, 127, 0.5);
}

.noty_text {
  font-size: 11.831px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.775px; /* 133.333% */
  letter-spacing: -0.315px;
}
.noty_second {
  align-self: flex-start;
}

.noty_first {
  align-self: flex-end;
}

.iphone {
  display: none;
}
.burger_menu {
  display: none;
}
