.countrybanner {
  width: 100%;
  margin: 0;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  background: #fff7f6;
}
.bannerfig {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  box-shadow: 5px 5px #0b2a44;
}
.bannerfig img {
  width: 100%;
  height: auto;
  border-radius: 0 0 6px 6px;
}
.aboutcaption {
  width: 100%;
  height: 100%;
  position: relative;
}
.aboutcaption .caption {
  position: relative;
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.aboutcaption .shrtdesc p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.factnfigurebg {
  width: 100%;
  margin: 0;
  padding: 60px 0;
  overflow: hidden;
}
.services-grid {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}
.services-grid-block {
  height: 100%;
  background-color: #fff;
  border: 1px solid #e9eef1;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 24px;
  text-decoration: none;
  transition: all 0.25s;
  display: block;
}
.icon-block {
  width: 80px;
  height: 80px;
  background-color: #f4f8fc;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto;
  margin-bottom: 16px;
  box-sizing: border-box;
  padding: 20px;
}
.icon-block img {
  width: 100%;
  height: auto;
}
.service-title {
  color: #000;
  margin-bottom: 22px;
  font-size: 38px;
  font-weight: 600;
  line-height: 38px;
  text-transform: uppercase;
}
.service-paragraph {
  color: rgba(44, 44, 44, 0.75);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.services-grid-block:hover {
  border: 1px solid #e86221;
  border-radius: 5px;
}
.services-grid-block:hover .service-title {
  color: #e86221;
}
.aboutcontainer {
  width: 100%;
  margin: 0;
  padding: 0 0 60px 0;
  overflow: hidden;
}
.aboutcontainer .row {
  margin: 0;
}
.aboutcontainer [class*='col'] {
  padding: 0;
  background: #fff7f6;
}
.aboutcontainer .caption {
  display: block;
  width: 100%;
  height: auto;
  min-height: 330px;
  box-sizing: border-box;
  padding: 35px 30px;
}
.aboutcontainer .figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.aboutcontainer .shrtdesc p {
  font-size: 1.2rem;
  line-height: 1.7;
}
.aboutcontainer .figteam {
  background: url(../images/our-team.webp) no-repeat center center;
}
.aboutcontainer .figmarketing {
  background: url(../images/marketing-expert.webp) no-repeat center center;
}
.aboutcontainer .management {
  background: url(../images/project-managment.webp) no-repeat center center;
}
.aboutcontainer .planning {
  background: url(../images/design-plan.webp) no-repeat center center;
}
.aboutcontainer .fabrication {
  background: url(../images/production-house.webp) no-repeat center center;
}
.aboutcontainer .logistik {
  background: url(../images/logistick.webp) no-repeat center center;
}
@media screen and (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .countrybanner {
    text-align: center;
    padding: 40px 0;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .aboutcontainer .caption {
    min-height: auto;
    text-align: center;
  }
  .aboutcontainer .figure {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
