:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Chakra Petch", sans-serif;
  --third-family: "DM Sans", 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: rgba(255, 255, 255, 0.8);
  background: #060911;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-pcr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-pcr {
  width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-pcr {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

/* glide controls */

.glide-controls-pcr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.glide-arrow-pcr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  transition: all 0.3s ease;

  .glide-arrow-icon-pcr {
    width: 24px;
    height: 24px;
    stroke: #fff;
    transition: all 0.3s ease;
  }
}

.glide-arrow-pcr:hover {
  border: 1px solid #f472b6;

  .glide-arrow-icon-pcr {
    stroke: #f472b6;
  }
}

.glide-arrow-right-pcr {
  transform: rotate(180deg);
}

.glide-bullets-wrap-pcr {
  display: flex;
  align-items: center;
  gap: 7px;
}

.glide-bullet-pcr {
  width: 4px;
  height: 4px;
}

.glide-bullet-pcr.glide__bullet--active {
  width: 6px;
  height: 6px;
}

@media screen and (min-width: 1440px) {
  .container-pcr {
    width: 1440px;
  }

  .section-title-pcr {
    font-size: 60px;
    line-height: 80%;
    margin-bottom: 50px;
  }

  .glide {
    cursor: default;
  }

  .glide-controls-pcr {
    display: none;
  }
}
