/*  */
body {
  background-color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-info {
  display: flex;
  flex-grow: 1;
  /*justify-content: center;*/
}

.texts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* styles for My Statistic from Vkontakte text */
.my-statistic-from-vkontakte {
  display: flex;
  flex-grow: 1;
  margin: 31px 0 0 0;
  height: 105px;
}

.my-statistic-from-vkontakte-text {
  color: #568ff3;
  opacity: 1;
  font-family: "Roboto", sans-serif;
  font-size: 52pt;
  font-weight: 500;
  /* line-height: 48px;  */
  /* margin: 0 0 50px;  */
  /* text-align: center;  */
  /* text-shadow: 1px 1px 2px #082b34; */
}

/* styles for Track activities on your Vkontake profile! text */

.track-activities {
  display: flex;
  flex-grow: 1;
  /* margin: 31px 100px 70px 0; */
  /* height: 105px; */
}

.track-activities-text {
  color: #568ff3;
  opacity: 1;
  font-family: "Roboto", sans-serif;
  font-size: 32pt;
  font-weight: 500;
  /* line-height: 48px;  */
  /* margin: 0 0 50px;  */
  /* text-align: center;  */
  /* text-shadow: 1px 1px 2px #082b34; */
}

/* styles for button Need Help */

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  /* width: 12rem;
      height: auto; */
  width: 261px;
  height: 66px;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #568ff3;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.025rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #568ff3;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 20pt;
  text-decoration: none;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}

/* styles for Main Image */

.main-image-container {
  display: flex;
  margin: 67px 0 0 35px;
}

.main-image {
  display: flex;
  width: 391px;
  height: 418px;
  filter: drop-shadow(0px 2px 4px);
  border-radius: 30px;
}

/* styles for Privacy Policy + Terms of Conditions */

.footer-text {
  display: flex;
  margin: 10px 0 0 0;
  flex-direction: row;
  flex-grow: 1;
}

/* styles for Privacy Policy */

.privacy-policy-link {
  display: flex;
  height: 25px;
  text-decoration: none;
}

.privacy-policy-text {
  color: #568ff3;
  opacity: 1;
  font-family: "Roboto", sans-serif;
  font-size: 15pt;
  font-weight: bold;
}

/* styles for Terms of Conditions */

.terms-of-conditions-link {
  display: flex;
  flex-grow: 1;
  margin: 0 0 0 40px;
  height: 25px;
  text-decoration: none;
}

.terms-of-conditions-text {
  color: #568ff3;
  opacity: 1;
  font-family: "Roboto", sans-serif;
  font-size: 15pt;
  font-weight: bold;
}

/* Mobile */

@media (max-width: 420px) {
  .my-statistic-from-vkontakte {
    display: flex;
    flex-grow: 1;
    margin: 202px 0 0 0;
    height: 100%;
  }

  .my-statistic-from-vkontakte-text {
    font-size: 18pt;
    margin: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 1;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 12pt;
    font-weight: 500;
  }

  button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  button.learn-more {
    /* width: 12rem;
        height: auto; */
    width: 141px;
    height: 53px;
  }
  button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 1.7rem;
    height: 1.7rem;
    background: #568ff3;
    border-radius: 1.625rem;
  }
  button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 0.675rem;
    height: 0.125rem;
    background: none;
  }
  button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.025rem;
    width: 0.425rem;
    height: 0.425rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 0;
    margin: 0 0 0 1.85rem;
    color: #568ff3;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 12pt;
  }
  button:hover .circle {
    width: 100%;
  }
  button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
  }
  button:hover .button-text {
    color: #fff;
  }

  .footer-text {
    display: flex;
    margin: 11px 0 30px 0;
    flex-grow: 1;
    flex-direction: row;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 10pt;
    font-weight: bold;
  }

  .terms-of-conditions-link {
    display: flex;
    text-decoration: none;
    flex-grow: 1;
    margin: 0 0 0 12px;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 10pt;
    font-weight: bold;
  }

  .main-image-container {
    display: flex;
    margin: 10px 0 0 0;
    position: absolute;
  }

  .main-image {
    display: flex;
    width: 165px;
    height: 179px;
    filter: drop-shadow(0px 2px 4px);
  }

  .main-info {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  .texts {
    margin: 0;
  }
}

/* Mobile 421 - 480px */

@media (min-width: 421px) and (max-width: 480px) {
  .my-statistic-from-vkontakte {
    display: flex;
    flex-grow: 1;
    margin: 202px 0 0 0;
    height: 100%;
  }

  .my-statistic-from-vkontakte-text {
    font-size: 24pt;
    margin: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 1;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 16pt;
    font-weight: 500;
  }

  button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  button.learn-more {
    /* width: 12rem;
            height: auto; */
    width: 141px;
    height: 53px;
  }
  button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 1.7rem;
    height: 1.7rem;
    background: #568ff3;
    border-radius: 1.625rem;
  }
  button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 0.475rem;
    height: 0.125rem;
    background: none;
  }
  button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.025rem;
    width: 0.425rem;
    height: 0.425rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 0;
    margin: 0 0 0 1.85rem;
    color: #568ff3;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 12pt;
  }
  button:hover .circle {
    width: 100%;
  }
  button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(0.5rem, 0);
    width: 12px;
  }
  button:hover .button-text {
    color: #fff;
  }

  .footer-text {
    display: flex;
    margin: 11px 0 30px 0;
    flex-grow: 1;
    flex-direction: row;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 12pt;
    font-weight: bold;
  }

  .terms-of-conditions-link {
    display: flex;
    text-decoration: none;
    flex-grow: 1;
    margin: 0 0 0 12px;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 12pt;
    font-weight: bold;
  }

  .main-image-container {
    display: flex;
    margin: 10px 0 0 0;
    position: absolute;
  }

  .main-image {
    display: flex;
    width: 165px;
    height: 179px;
    filter: drop-shadow(0px 2px 4px);
  }

  .main-info {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  .texts {
    margin: 0;
  }
}

/* Mobile 480 - 600px */

@media (min-width: 481px) and (max-width: 600px) {
  .my-statistic-from-vkontakte {
    display: flex;
    flex-grow: 1;
    margin: 229px 0 0 0;
    height: 100%;
  }

  .my-statistic-from-vkontakte-text {
    font-size: 27.5pt;
    margin: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 1;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 18pt;
    font-weight: 500;
    margin: 0;
  }

  button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  button.learn-more {
    width: 150px;
    height: 63px;
  }
  button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 1.7rem;
    height: 1.7rem;
    background: #568ff3;
    border-radius: 1.625rem;
  }
  button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 0.475rem;
    height: 0.125rem;
    background: none;
  }
  button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.025rem;
    width: 0.425rem;
    height: 0.425rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0;
    margin: 0 0 0 1.85rem;
    color: #568ff3;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 14pt;
  }
  button:hover .circle {
    width: 100%;
  }
  button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(0.5rem, 0);
    width: 12px;
  }
  button:hover .button-text {
    color: #fff;
  }

  .footer-text {
    display: flex;
    margin: 5px 0 30px 0;
    flex-grow: 1;
    flex-direction: row;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 14pt;
    font-weight: bold;
  }

  .terms-of-conditions-link {
    display: flex;
    text-decoration: none;
    flex-grow: 1;
    margin: 0 0 0 12px;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 14pt;
    font-weight: bold;
  }

  .main-image-container {
    display: flex;
    margin: 10px 0 0 0;
    position: absolute;
  }

  .main-image {
    display: flex;
    width: 195px;
    height: 204px;
    filter: drop-shadow(0px 2px 4px);
  }

  .main-info {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  .texts {
    margin: 0;
  }
}

/* Mobile 600 - 700px */

@media (min-width: 601px) and (max-width: 700px) {
  .my-statistic-from-vkontakte {
    display: flex;
    flex-grow: 1;
    margin: 229px 0 0 0;
    height: 100%;
  }

  .my-statistic-from-vkontakte-text {
    font-size: 34pt;
    margin: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 1;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 22pt;
    font-weight: 500;
    margin: 0;
  }

  button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  button.learn-more {
    width: 150px;
    height: 63px;
  }
  button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 1.7rem;
    height: 1.7rem;
    background: #568ff3;
    border-radius: 1.625rem;
  }
  button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 0.475rem;
    height: 0.125rem;
    background: none;
  }
  button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.025rem;
    width: 0.425rem;
    height: 0.425rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 0;
    margin: 0 0 0 1.85rem;
    color: #568ff3;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
  }
  button:hover .circle {
    width: 100%;
  }
  button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(0.5rem, 0);
    width: 12px;
  }
  button:hover .button-text {
    color: #fff;
  }

  .footer-text {
    display: flex;
    margin: 5px 0 30px 0;
    flex-grow: 1;
    flex-direction: row;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
  }

  .terms-of-conditions-link {
    display: flex;
    text-decoration: none;
    flex-grow: 1;
    margin: 0 0 0 12px;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
  }

  .main-image-container {
    display: flex;
    margin: 10px 0 0 0;
    position: absolute;
  }

  .main-image {
    display: flex;
    width: 195px;
    height: 204px;
    filter: drop-shadow(0px 2px 4px);
  }

  .main-info {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  .texts {
    margin: 0;
  }
}

/* Mobile 701 - 800px */

@media (min-width: 701px) and (max-width: 800px) {
  .my-statistic-from-vkontakte {
    display: flex;
    flex-grow: 1;
    margin: 253px 0 0 0;
    height: 100%;
  }

  .my-statistic-from-vkontakte-text {
    font-size: 40pt;
    margin: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 1;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 25pt;
    font-weight: 500;
    margin: 0;
  }

  button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  button.learn-more {
    width: 165px;
    height: 66px;
  }
  button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 1.7rem;
    height: 1.7rem;
    background: #568ff3;
    border-radius: 1.625rem;
  }
  button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 0.475rem;
    height: 0.125rem;
    background: none;
  }
  button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.025rem;
    width: 0.425rem;
    height: 0.425rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.8rem 0;
    margin: 0 0 0 1.85rem;
    color: #568ff3;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 17pt;
  }
  button:hover .circle {
    width: 100%;
  }
  button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(0.5rem, 0);
    width: 12px;
  }
  button:hover .button-text {
    color: #fff;
  }

  .footer-text {
    display: flex;
    margin: 5px 0 30px 0;
    flex-grow: 1;
    flex-direction: row;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
  }

  .terms-of-conditions-link {
    display: flex;
    text-decoration: none;
    flex-grow: 1;
    margin: 0 0 0 12px;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
  }

  .main-image-container {
    display: flex;
    margin: 10px 0 0 0;
    position: absolute;
  }

  .main-image {
    display: flex;
    width: 230px;
    height: 236px;
    filter: drop-shadow(0px 2px 4px);
  }

  .main-info {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  .texts {
    margin: 0;
  }
}

/* Mobile 801 - 900px */

@media (min-width: 801px) and (max-width: 900px) {
  .my-statistic-from-vkontakte {
    display: flex;
    flex-grow: 1;
    margin: 275px 0 0 0;
    height: 100%;
  }

  .my-statistic-from-vkontakte-text {
    font-size: 45pt;
    margin: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 1;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 28pt;
    font-weight: 500;
    margin: 0;
  }

  button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  button.learn-more {
    width: 185px;
    height: 66px;
  }
  button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 2rem;
    height: 2rem;
    background: #568ff3;
    border-radius: 1.625rem;
  }
  button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 0.625rem;
    height: 0.125rem;
    background: none;
  }
  button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.025rem;
    width: 0.525rem;
    height: 0.525rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem 0;
    margin: 0 0 0 1.85rem;
    color: #568ff3;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 19pt;
  }
  button:hover .circle {
    width: 100%;
  }
  button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(0.5rem, 0);
    width: 16px;
  }
  button:hover .button-text {
    color: #fff;
  }

  .footer-text {
    display: flex;
    margin: 5px 0 30px 0;
    flex-grow: 1;
    flex-direction: row;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 17pt;
    font-weight: bold;
  }

  .terms-of-conditions-link {
    display: flex;
    text-decoration: none;
    flex-grow: 1;
    margin: 0 0 0 12px;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 17pt;
    font-weight: bold;
  }

  .main-image-container {
    display: flex;
    margin: 10px 0 0 0;
    position: absolute;
  }

  .main-image {
    display: flex;
    width: 264px;
    height: 264px;
    filter: drop-shadow(0px 2px 4px);
  }

  .main-info {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  .texts {
    margin: 0;
  }
}

/* Table 901 - 1023px */

@media (min-width: 901px) and (max-width: 1023px) {
  .my-statistic-from-vkontakte {
    display: flex;
    flex-grow: 1;
    margin: 305px 0 0 0;
    height: 100%;
  }

  .my-statistic-from-vkontakte-text {
    margin: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 1;
  }

  .track-activities-text {
    margin: 0;
  }

  .footer-text {
    display: flex;
    margin: 5px 0 30px 0;
    flex-grow: 1;
    flex-direction: row;
  }

  .terms-of-conditions-link {
    display: flex;
    text-decoration: none;
    flex-grow: 1;
    margin: 0 0 0 12px;
  }

  .main-image-container {
    display: flex;
    margin: 10px 0 0 0;
    position: absolute;
  }

  .main-image {
    display: flex;
    width: 295px;
    height: 300px;
    filter: drop-shadow(0px 2px 4px);
  }

  .main-info {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  .texts {
    margin: 0;
  }
}

/* Laptop 1024 - 1100px */

@media (min-width: 1024px) and (max-width: 1100px) {
  .my-statistic-from-vkontakte {
    display: flex;
    margin: 70px 0 0 0;
    flex-grow: 0;
    height: 130px;
  }

  .my-statistic-from-vkontakte-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 38pt;
    font-weight: 500;
    margin-block-end: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 0;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 25pt;
    font-weight: 500;
    margin-block-end: 0;
    margin-block-start: 0;
  }

  #container {
    margin: 25px 0 10px 0;
  }

  .footer-text {
    display: flex;
    margin: 25px 0 0px 0;
    flex-direction: row;
    flex-grow: 1;
  }

  .privacy-policy-link {
    display: flex;
    text-decoration: none;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
    margin-block-end: 0;
    margin-block-start: 0;
  }

  .terms-of-conditions-link {
    display: flex;
    flex-grow: 1;
    margin: 0 0 0 40px;
    text-decoration: none;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
    margin-block-end: 0;
    margin-block-start: 0;
  }

  .main-image-container {
    display: flex;
    margin: 67px 0 0 35px;
  }

  .main-image {
    display: flex;
    width: 340px;
    height: 375px;
    filter: drop-shadow(0px 2px 4px);
    border-radius: 30px;
  }

  .texts {
    margin: 0;
  }
}

/* Laptop 1101 - 1308px */

@media (min-width: 1101px) and (max-width: 1200px) {
  .my-statistic-from-vkontakte {
    display: flex;
    margin: 70px 0 0 0;
    flex-grow: 0;
    height: 130px;
  }

  .my-statistic-from-vkontakte-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 41pt;
    font-weight: 500;
    margin-block-end: 0;
  }

  .track-activities {
    display: flex;
    flex-grow: 0;
  }

  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 27pt;
    font-weight: 500;
    margin-block-end: 0;
    margin-block-start: 0;
  }

  #container {
    margin: 25px 0 10px 0;
  }

  .footer-text {
    display: flex;
    margin: 25px 0 0px 0;
    flex-direction: row;
    flex-grow: 1;
  }

  .privacy-policy-link {
    display: flex;
    text-decoration: none;
  }

  .privacy-policy-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
    margin-block-end: 0;
    margin-block-start: 0;
  }

  .terms-of-conditions-link {
    display: flex;
    flex-grow: 1;
    margin: 0 0 0 40px;
    text-decoration: none;
  }

  .terms-of-conditions-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 15pt;
    font-weight: bold;
    margin-block-end: 0;
    margin-block-start: 0;
  }

  .main-image-container {
    display: flex;
    margin: 67px 0 0 35px;
  }

  .main-image {
    display: flex;
    width: 361px;
    height: 393px;
    filter: drop-shadow(0px 2px 4px);
    border-radius: 30px;
  }

  .texts {
    margin: 0;
  }
}

@media (min-width: 1201px) and (max-width: 1307px) {
  .track-activities-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 29pt;
    font-weight: 500;
  }
  .my-statistic-from-vkontakte-text {
    color: #568ff3;
    opacity: 1;
    font-family: "Roboto", sans-serif;
    font-size: 45pt;
    font-weight: 500;
  }

  .texts {
    margin: 0;
  }
}
