body {
  --space-110: 110px;
}

h2 {
  font-size: 40px;
  text-transform: uppercase;
}
h3 {
  font-size: 30px;
  text-transform: uppercase;
}

.bg-light {
  background: #f5f5f5;
}

.text-center {
  text-align: center;
}

.get_start,
.primary-button {
  display: inline-block;
  padding: 12px 22px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--color-primary);
  border-radius: 10px;
}

.py-110 {
  padding-block: var(--space-110);
}

.pt {
  padding-top: var(--space-110);
}

.pb {
  padding-bottom: var(--space-110);
}

/* --------------------------------------------------------------------- */

.main {
  margin-top: 116px;
}

.banner {
  position: relative;
  z-index: 0;
}
.banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/banner-bg.jpg) no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.banner-inner {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.banner-content h1 {
  font-size: 56px;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 300;
}
.banner-content h1 span{
  color: var(--color-primary);
  font-weight: 600;
}
.banner-content p {
  font-size: 20px;
  line-height: 1.7;
}
.banner-content .primary-button {
  padding: 15px 20px;
  margin-top: 20px;
}

.about-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap:80px;
}
.about-inner h2 {
  margin-bottom: 25px;
}
.about-inner h2 span {
  color: var(--color-primary);
  position: relative;
}
/* .about-inner p {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
}
.about-inner p + p {
  margin-top: 30px;
} */

.about-inner h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

.why-choose-block {
  margin-top: 90px;
}

.why-choose-block h3 {
  text-align: center;
  margin-bottom: 40px;
}

.why-choose {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-choose .item {
  border: 2px solid #ed1c24;
  padding: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
}
.why-choose .item span {
  line-height: 1.3;
}

/* --------------------------------------------------------------------- */

.services .mySwiper {
  margin-top: 40px;
}

.services .section-title-span {
  color: var(--color-primary);
  text-transform: uppercase;
  text-decoration: underline;
}

.service-card {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.service-card-image img {
  width: 100%;
}
.service-card-content {
  padding: 20px;
  text-align: center;
}
.service-card-content h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  min-height: 63px;
  line-height: 1.3;
}

/* --------------------------------------------------------------------- */

.question-inner {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.question-inner h2 {
  margin-bottom: 20px;
}

.question-inner .primary-button {
  margin-top: 10px;
}


/* --------------------------------------------------------------------- */

.service-card-list > div {
  background: #ffffff;
}
.service-card-list{
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

.footer {
  background: #050708;
}
.footer-top {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid #f5f5f54b;
}
.footer-bottom p {
  margin: 0;
  color: #b9b7b7;
  text-align: center;
}

.footer-first,
.footer-third {
  width: 23%;
}
.footer-first {
  padding-right: 30px;
}

.footer-first p {
  margin: 0;
  color: #b9b7b7;
}

.footer-first img {
  margin-bottom: 25px;
}

.footer-second {
  width: 47%;
}
.footer-second ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}
.footer-second ul li {
  font-size: 18px;
  color: #b9b7b7;
}
.footer-second ul li:not(:first-child) {
  padding-left:15px;
  border-left: 1px solid #8e8e8e;
}

.footer-third h4,
.footer-second h4 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 30px;
}

.site-call,
.site-mail {
  font-size: 18px;
  display: block;
  color: #b9b7b7;
}

.site-mail {
  margin-top: 20px;
}
.site-mail + p {
  color: #b9b7b7;
  margin-top: 20px;
  position: relative;
  font-size: 18px;
  padding-left: 40px;
}
.site-mail + p img {
  width: 25px;
  position: absolute;
  left: 0;
  top: 3px;
}

.site-call img,
.site-mail img {
  width:25px;
  margin-right: 12px;
}

.site-social {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
