:root {
  --main-bg--txt-light: #fefcf6;
  --bg2: #eee9db;
  --cards-lines: #5c6aae;
  --txt-body: #182335;
  --also-txt: #354661;
  --accent: #47addb;
  --accent2: #3283a7;
  --playmarket-google-yelllow: #fabc13;
  --playmarket-google-red: #eb4335;
  --playmarket-google-blue: #547dbf;
  --playmarket-google-green: #30a851;
  --microsoft-btn-microsoft-green: #7fba00;
  --microsoft-btn-microsoft-red: #f25022;
  --microsoft-btn-microsoft-blue: #00a4ef;
  --microsoft-btn-microsoft-yellow: #ffb900;

  --font-family: "Mona Sans", sans-serif;
  --second-family: "Manrope", sans-serif;
  --third-family: "Lexend", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

dl,
dt,
dd,
figure,
p {
  margin: 0;
}

dt,
dd {
  display: inline;
}

dd::after {
  content: "";
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  color: inherit;
  background-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--txt-body);
  background: var(--main-bg--txt-light);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-svr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-svr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 375px;
  padding: 64px 16px;
}

.section-title-wrap-svr {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 120px 120px 0 0;
  padding: 16px;
  width: 303px;
  height: 84px;

  .section-title-img-svr {
    width: 49px;
    height: 52px;
  }

  .section-title-svr {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: var(--main-bg--txt-light);
    text-shadow: 0 1px 2px 0 rgba(54, 42, 31, 0.5);
  }
}

.section-content-wrap-svr {
  box-shadow: 0 4px 4px 0 rgba(127, 61, 158, 0.2);
  background: var(--bg2);
  border-radius: 16px;
  padding: 32px;
  width: 100%;

  .section-subtitle-svr {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    color: var(--also-txt);
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 1440px) {
  .container-svr {
    width: 1440px;
    padding: 80px 120px;
  }

  .section-title-wrap-svr {
    padding: 16px 120px;
    width: auto;
  }

  .section-content-wrap-svr {
    border-radius: 32px;
    padding: 48px;
  }
}
