﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

img {
  max-width: 100%;
}

#wrapper {
  position: relative;
  max-width: 910px;
  margin: 12px auto;
  border: 1px solid #777;
  padding: 0;
  overflow: hidden;
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
  color: rgb(10, 26, 79);
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  padding: 16px;
}

article {
  padding: 16px;
}

footer {
  margin: 0;
  padding: 0;
}

.title {
  background-color: #C8DAFF;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.flex {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

p {
  margin: 0 0 16px;
}

h1 {
  margin: 16px 0 16px 0;
  padding: 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
}

h2 {
  margin: 9px 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}

h3 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

h4 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

h5 {
  font-size: 20px;
  line-height: 1.25;
}

a {
  color: rgb(10, 26, 79);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: "\25A0";
  color: rgb(10, 26, 79);
  float: left;
  margin-top: -0;
  font-size: 12px;
  text-indent: -20px;
  line-height: 1;
}

.btn {
  padding: 16px;
  background-color: #32dc5a;
  border-radius: 24px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #C8DAFF;
}

a.btn:hover {
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgb(10, 26, 79);
}

sup {
    font-size: 20px;
}

.icon {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  grid-gap: 12px;
  border-radius: 16px;
}

.icon>div {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.flexbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.flexbox>div {
  width: 48%;
}

.avatar {
  padding: 16px;
  border-radius: 9px;
  border: 1px solid rgb(10, 26, 79);
  display: flex;
  max-width: 280px;
}

.avatar div {
  flex-direction: column;
}

.benefits {
  display: flex;
  justify-content: space-between;
  margin: 0 11px;
  position: relative;
}

.benefits::after {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #C8DAFE;
  left: 0;
  top: 45%;
  content: "";
}


.benefits img {
  z-index: 1;
  position: relative;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip1 .tooltip-text {
  left: 130%;
}

.tooltip6 .tooltip-text {
  left: 5%;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 235px;
  background-color: #E5FF29;
  padding: 12px;
  border-radius: 6px;
  position: absolute;
  bottom: 112%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  z-index: 1;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: #E5FF29 transparent transparent transparent;
}

.tooltip1 .tooltip-text::after {
  left: 15%;
}

.tooltip6 .tooltip-text::after {
  left: 70%;
}

.tooltip:hover .tooltip-text,
.tooltip-text:hover {
  visibility: visible;
  opacity: 1;
}

@media all and (max-width:908px) {
  #wrapper {

    margin: 0;
    border: none;
  }

  footer br {
    display: inline;
  }

  .benefits {
    gap: 5px;
  }
}

@media all and (max-width:767px) {
  .benefits {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .flexbox {
    flex-direction: column;
  }
  .flexbox>div {
    width: 100%;
  }
 .benefits::after {
  background: none;
 }

.tooltip-text {
  left: 20% !important;!i;!;
}

.tooltip1 .tooltip-text::after {
  left: 50%;
}

.tooltip6 .tooltip-text::after {
  left: 50%;
}
}