@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --p-color: #4c4c4c;
  --text-gray: #696969;
  --font-family: "DM Sans", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --heading-font-2: "Barlow", sans-serif;
}
body {
  font-family: var(--font-family);
  color: var(--p-color);
}

img {
  max-width: 100%;
  height: auto;
}

section,
.section,
footer, header {
  padding: 100px 30px;

  @media (max-width: 1200px) {
    padding: 70px 30px;
  }

  @media (max-width: 767px) {
    padding: 50px 20px;
  }
}

.wrapper {
  width: 100%;
  max-width: 1576px;
  margin: 0 auto;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--bs-black);
  font-family: var(--heading-font);
  font-style: normal;
  line-height: normal;
  margin-bottom: 0;

  span {
    color: var(--text-gray);
  }
}

h1,
.h1 {
  font-size: 60px;
  font-weight: 900;
}

h2,
.h2 {
  font-size: 40px;
  font-weight: 900;
}

h3,
.h3 {
  font-size: 30px;
  font-weight: 700;
}

p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
}

p:last-of-type {
  margin-bottom: 0;
}

.text-gray {
  color: var(--text-gray);
}

.g-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-black {
  background-color: var(--bs-black);
  color: var(--bs-white);
  border: 1px solid var(--bs-black);
}

.btn-black:hover {
  background-color: transparent;
  color: var(--bs-black);
}

.btn-white {
  background-color: var(--bs-white);
  color: var(--bs-black);
  border: 1px solid var(--bs-white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--bs-white);
}

