:root {
  --primary-red: #d14836;
  --gray-0-background: #fff;
  --primary-text: #fff;
  --gray-10-background: #ececec;
  --gray-70-divider: #bcbcbc;
  --gray-80-secondary-text: #747474;
  --gray-100-primary-text: #131313;
  --background: #131313;
  --system-error: #e42e2e;
  --system-info: #108ce5;
  --system-warning: #ffb11a;
  --system-success: #0da480;

  --font-family: "Libre Baskerville", sans-serif;
  --second-family: "Figtree", sans-serif;
  --third-family: "SF Pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  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(--gray-100-primary-text);
  background: var(--gray-10-background);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-mgo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-mgo {
  position: relative;
  width: 375px;
  padding: 60px 16px;
}

.section-title-mgo {
  font-weight: 400;
  font-size: 42px;
  line-height: 110%;
  text-align: center;
  color: var(--gray-100-primary-text);
  margin-bottom: 16px;
}

.section-subtitle-mgo {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: var(--gray-80-secondary-text);
  margin-bottom: 40px;
}

@media screen and (min-width: 1440px) {
  .container-mgo {
    width: 1440px;
    padding: 100px 50px;
  }

  .section-subtitle-mgo {
    margin-bottom: 60px;
  }
}
