@font-face {
  font-family: "Eurostile";
  src: url("./eurostile_extended_black.ttf");
}
@font-face {
  font-family: "EuroStile-regular";
  src: url("./EurostileBQ-Regular.otf");
}

:root {
  --primary-color: rgb(253, 181, 43);
  --primary-font: "Eurostile", sans-serif;
  --paragraph-font--: "EuroStile-regular";
  ---paragraph-weight--: 500;
}
.servicesDiv1 {
  background: url("../image/whychoose/img.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 225px;
  padding-bottom: 80px;
  margin-bottom: 30px;
}
.sectionDiv {
  padding: 0px 7vw;
}
.choose-heading {
  font-family: var(--primary-font);
}
.servicesDiv-top h1 {
  /* font-family: "Outfit"; */
  font-family: var(--primary-font);
  font-size: 4rem;
  color: white;
  text-transform: uppercase;
}
.servicesDiv-top p a {
  color: white;
  text-decoration: none;
  /* font-family: "Poppins"; */
  font-family: var(--primary-font);
  font-size: 1.2rem;
  padding-right: 12px;
}
.servicesDiv-top p i {
  color: white;
  padding-right: 12px;
}
.services-text {
  color: var(--primary-color) !important;
}

.box {
  position: relative;
  width: 100%;
  padding: 40px;
  background: white;
  box-shadow: 0 5px 15px #b5b5b5;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.box .icon {
  position: relative;
  height: 80px;
  width: 80px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 80%;
  font-size: 50px;
  font-weight: 600;
  transition: 1s;
}
.box .icon {
  box-shadow: 0 0 0 0 #fdb52b;
  background: #fdb52b;
}
.box:hover .icon {
  box-shadow: 0 0 0 400px #fdb52b;
  background: #fdb52b;
}
.box .content {
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.box .icon img {
  width: 52px;
}
.box .content h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  padding: 0;
  line-height: 1.8;
  /* font-family: "Nunito"; */
  font-family: var(--primary-font);
}
.box .content p {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  /* font-family: "Nunito"; */
  font-family: var(--paragraph-font--);
  font-weight: var(---paragraph-weight--);
  font-size: 16px;
}
.box:before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

@media (max-width: 580px) {
  .servicesDiv-top h1 {
    font-size: 3rem;
  }
}
@media (max-width: 350px) {
  .servicesDiv-top h1 {
    font-size: 2rem;
  }
  .servicesDiv-top p {
    font-size: 0.8rem;
  }
}
