:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Lora", sans-serif;
  --third-family: "Montserrat", sans-serif;
  --font3: "Quicksand", 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: #fff;
  background: linear-gradient(136deg, #103734 0%, #0c4b3e 50%, #103734 100%);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-msw {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-special-msw {
  background: #007c52;
}

.polygon-msw {
  position: absolute;
  width: 998px;
  height: 192px;
  background-position: center;
  background-size: cover;
}

.polygon-top-msw {
  top: -165px;
  background: url(/images/polygons/polygon-top-mob.png);
}

.polygon-bottom-msw {
  bottom: -150px;
  background: url(/images/polygons/polygon-bottom-mob.png);
}

.container-msw {
  position: relative;
  width: 375px;
  padding: 32px 20px;
}

.section-title-msw {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .polygon-msw {
    width: 2065px;
    height: 321px;
  }

  .polygon-top-msw {
    top: -255px;
    background: url(/images/polygons/polygon-top-desk.png);
  }

  .polygon-bottom-msw {
    bottom: -259px;
    background: url(/images/polygons/polygon-bottom-desk.png);
  }
}

@media screen and (min-width: 1440px) {
  .container-msw {
    padding: 90px 72px;
    width: 1440px;
  }

  .section-title-msw {
    font-size: 64px;
    margin-bottom: 48px;
  }
}
