:root {
  --d-blue: #07446b;
  --blue: #1667fa;
  --l-blue: #6d90d1;
  --ll-blue: #c0d6ee;
  --white: #fff;
  --gray: #b1b1b1;
  --brown: #603714;
  --d-orange: #c97937;
  --orange: #eba715;
  --yellow: #fcc51e;

  --font-family: "Fredoka", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Albert Sans", 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;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--d-blue);
  background: linear-gradient(180deg, #dae9f9 0%, #c0d6ee 100%);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-sqp {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-sqp {
  position: relative;
  width: 375px;
  padding: 80px 16px;
}

.section-title-wrap-sqp {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;

  svg {
    width: 59px;
    height: 44px;
  }
}

.section-title-sqp {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: var(--blue);
}

@media screen and (min-width: 1440px) {
  .container-sqp {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1440px;
    padding: 80px 160px;
  }

  .section-title-wrap-sqp {
    margin-bottom: 80px;
    width: 100%;

    svg {
      width: 78px;
      height: 58px;
    }
  }

  .section-title-sqp {
    font-size: 48px;
  }
}
