:root {
  --text-color: #787878;
  --heading-color: #232426;
  --link-color: #7d7d7d;
  --link-color-active: #fee45b;

  --menu-color: #787878;
  --menu-color-active: #232426;
  --hamburger-color: #232426;
  --hamburger-duration: 0.2s;

  --btn-bg: #fee45b;
  --btn-bg-active: #dcc239;
  --btn-text-color: #232426;
  --btn-2-bg: #dedede;
  --btn-2-bg-active: #dedede;
  --btn-2-text-color: #232426;

  --yellow-500: #fee45b;
  --gray-800: #232426;
  --gray-500: #787878;
  --gray-400: #a6a6a6;
  --gray-300: #dedede;
  --gray-200: #f2f2f2;
  --gray-1: #e1e1e1;
  --gray-2: #7d7d7d;
  --gray-3: #8b8b8b;
  --transition: 0.2s;
  --radius: 2px;
}

body {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
strong {
  font-weight: 500;
}

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

a {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition) all;
}
a:hover {
  text-decoration: none !important;
  color: var(--link-color-active);
}

.btn {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--btn-text-color);
  line-height: 20px;
  box-shadow: none !important;
  border-radius: var(--radius);
}
.btn.btn-primary {
  background: var(--btn-bg);
  border: none;
  color: var(--btn-text-color);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: var(--btn-bg-active);
}
.btn.btn-outline-primary {
  border: 1px solid var(--btn-2-bg);
  color: var(--btn-2-text-color);
  padding-left: 50px;
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
  background: var(--btn-2-bg-active);
  border-color: var(--btn-2-bg-active);
  color: var(--btn-2-text-color);
}

.btn.btn-arrow {
  display: inline-flex;
  align-items: center;
}
.btn.btn-arrow:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 20px;
  background: var(--btn-text-color);
  mask-image: url("../images/arrow.svg");
  -webkit-mask-image: url("../images/arrow.svg");
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  transition: var(--transition);
}

.lead {
  font-size: 32px;
  color: var(--gray-800);
  line-height: 1.25;
}

.img-wide {
  max-width: 1240px;
  border-radius: var(--radius);
  position: relative;
  left: 50%;
  margin: 20px 0 20px 0;
  transform: translateX(-50%);
}

.mt-100 {
  margin-top: 100px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}
.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.pt-100 {
  padding-top: 100px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

.decoration-title {
  display: inline-block;
  margin: 0;
  padding: 0 2px;
  font-size: 23px !important;
  font-weight: 400;
  color: var(--gray-400) !important;
  position: relative;
  z-index: 1;
}

.decoration-title:before {
  content: "";
  display: block;
  width: 100%;
  height: 13px;
  background: var(--yellow-500);
  position: absolute;
  bottom: 6px;
  z-index: -1;
}

.decoration-description {
  color: #dedede !important;
}

@media only screen and (max-width: 1280px) {
  .img-wide {
    max-width: calc(100vw - 3rem);
  }
}

@media only screen and (max-width: 767px) {
  .mt-100 {
    margin-top: 60px !important;
  }
  .mb-100 {
    margin-bottom: 60px !important;
  }

  .pt-100 {
    padding-top: 60px !important;
  }
  .pb-100 {
    padding-bottom: 60px !important;
  }

  .lead {
    font-size: 26px;
  }
}
