.section {
  /* min-height: 100vh; */
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* grid-template-rows: repeat(3, 1fr); */
  grid-template-rows: auto;
}
.image1 {
  background-image: url("/assets/cabinet/1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
.image2 {
  background-image: url("/assets/cabinet/2.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
.image3 {
  background-image: url("/assets/team/IMG_3973.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
.image4 {
  background-image: url("/assets/cabinet/5.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
.image5 {
  background-image: url("/assets/cabinet/3.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
/* removed */
.image6 {
  background-image: url("/assets/team/IMG_3129.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
.image7 {
  background-image: url("/assets/team/IMG_3734.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
.image8 {
  background-image: url("/assets/team/melissa.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 197px;
}
#image-box1 {
  grid-area: image-box1;
}
#image-box2 {
  grid-area: image-box2;
}
#image-box3 {
  grid-area: image-box3;
}
#image-box4 {
  grid-area: image-box4;
}
#image-box5 {
  grid-area: image-box5;
}
#image-box6 {
  grid-area: image-box6;
}
#image-box6 .image2{
  display: none;
}
#image-box7 {
  grid-area: image-box7;
}
#empty-box1 {
  grid-area: empty-box1;
}
#empty-box2 {
  grid-area: empty-box2;
}
#empty-box3 {
  grid-area: empty-box3;
}
#empty-box4 {
  grid-area: empty-box4;
}
#empty-box5 {
  grid-area: empty-box5;
}
#box1 {
  grid-area: box1;
}
#box2 {
  grid-area: box2;
}
#box3 {
  grid-area: box3;
}
#box4 {
  grid-area: box4;
}
#box5 {
  grid-area: box5;
}
#box6 {
  grid-area: box6;
}
#box7 {
  grid-area: box7;
}

#company-section {
  display: grid;
  grid-template-areas:
    "image-box1 image-box1 box1 empty-box1 box2 image-box5"
    "empty-box3 box3 image-box2 box4 empty-box4 box5"
    "box6 image-box3 box7 box7 image-box4 image-box4";
  padding-top: 55px;
  padding-bottom: 150px;
}
#company-section-responsive {
  display: none;
}

.showcase {
  min-height: 94vh;
  background-image: url("/assets/showcase.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* min-height: 970px; */
}
/* .showcase-overlay{
  width: 100%;
  height: 94vh;
  min-height: 970px;
  position: absolute;
  background: #326df8;
  opacity: 0.3;
  z-index: 1;
} */
.showcase-content {
  /* position: relative;
  z-index: 2; */
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  padding-bottom: 50px;
}
.showcase-content h1 {
  width: 70%;
  text-transform: uppercase;
  padding: 115px 0 40px 0;
}
.showcase-buttons-block {
  margin-top: 50px;
  /* margin-bottom: 50px; */
}
.showcase-buttons-block a {
  margin-right: 20px;
}
.box-content {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.box-number {
  font-size: 48px;
  line-height: 58px;
  color: #7af292;
}
.box-text {
  font-family: Montserrat;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}
.box-text-grn {
  font-size: 28px;
  line-height: 34px;
  color: #7af292;
  width: 90%;
  text-transform: uppercase;
}

/* Box styles */

/*  */
.box-left {
  height: 220px;
  position: relative;
  padding: 10px;
}
.box-left::after,
.box-left::before {
  content: "";
  position: absolute;
  pointer-events: none;
  /* to click through anytime */
  border: 1px solid #707070;
}

.box-left::after {
  left: 10px;
  right: 10px;
  top: 0;
  bottom: 0;
  border-left: none;
  border-right: none;
}

.box-left::before {
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  border-top: none;
  border-bottom: none;
}
/* Box right */
.box-right {
  height: 220px;
  position: relative;
  padding: 10px;
}
.box-right::after,
.box-right::before {
  content: "";
  position: absolute;
  pointer-events: none;
  /* to click through anytime */
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  border-left: none;
}

.box-right::after {
  left: 10px;
  right: 10px;
  top: 0;
  bottom: 0;
  border-left: none;
  border-right: none;
}

.box-right::before {
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  border-top: none;
  border-bottom: none;
}
/* Box Center */
.box-center {
  height: 220px;
  position: relative;
  padding: 10px;
}
.box-center::after,
.box-center::before {
  content: "";
  position: absolute;
  pointer-events: none;
  /* to click through anytime */
  border-top: none;
  border-bottom: none;
}

.box-center::after {
  left: 10px;
  right: 10px;
  top: 0;
  bottom: 0;
  border-left: none;
  border-right: none;
}

.box-center::before {
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  border-top: none;
  border-bottom: none;
}

/* services */
.services-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 0 150px 0;
}
.services-items a {
  color: #fff;
  text-decoration: none;
}
.services-item a:hover {
  color: #fff !important;
  text-decoration: none;
}
.services-item {
  border-radius: 25px;
  height: 453px;
  display: grid;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.servise1 {
  background-image: url("/assets/img3.png");
  background-position: center;
  background-size: cover;
}
.servise2 {
  background-image: url("/assets/image2.png");
  background-position: center;
  background-size: cover;
}
.servise3 {
  background-image: url("/assets/showcase.png");
  background-position: center;
  background-size: cover;
}
/* See all */
.see-all-services {
  border: 1px solid #326df8;
  height: 100%;
}
.see-all-header {
  display: flex;
  justify-self: end;
  padding: 30px 45px 0 45px !important;
}
.see-all-title {
  font-size: 16px;
  line-height: 19px;
  color: #326df7;
  text-transform: uppercase;
  text-align: center;
}
.see-all-link {
  text-align: end;
}
.see-all-services:hover {
  background-color: #fff !important;
}

.services-external-link {
  color: #fff;
  transition-duration: 0.3s;
}

.services-item-header {
  display: flex;
  justify-content: space-between;
  padding: 45px 45px 0 45px;
}
.services-item-footer {
  background-color: #326df7;
  padding: 30px 20px;
  border-radius: 25px;
  margin-top: auto;
  transition-duration: 0.3s;
}
.services-footer-text {
  font-size: 16px;
  font-family: Montserrat;
  line-height: 19px;
}
.services-item:hover {
  /* background-color: #326df7; */
  /* background-image: none; */
  text-decoration: none;
}

.services-item:hover .services-item-footer {
  transform: translateY(-30px);
}

.services-item:hover .services-external-link {
  transform: scale(1.1);
}

/* Our Values */
.our-values {
  background: linear-gradient(
    165deg,
    rgb(122, 242, 146) -50%,
    rgb(50, 109, 248) 180%,
    rgb(0, 0, 0)
  );
  padding-top: 100px;
}
.our-values-content {
  padding: 100px 20px 100px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1480px;
  margin: auto;
}
.our-values-content-item {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  justify-content: center;
  padding: 60px 50px 50px 60px;
}
.content-border-right {
  border-right: none;
}
.content-border-top {
  border-top: none;
  border-bottom: none;
}
.our-values-content-item h4 {
  padding: 50px 0 30px 0;
}
.our-values-content-item p {
  font-size: 18px;
}

.instalations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.instalations-content {
  padding: 50px 0 40px 0;
  width: 93%;
}
.instalations p {
  font-size: 16px;
}
.instalation-image {
  background-image: url("/assets/bg/installations.jpeg");
  border-radius: 25px;
  max-height: 500px;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.full-screen-img-separator {
  min-height: 85vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  margin: auto;
  margin-top: 40px;
  max-width: 1480px;
}
#cabinet.full-screen-img-separator {
  background-image: url("/assets/showcase2.jpeg");
}

@media (max-width: 1510px) {
  .showcase {
    height: 100%;
    min-height: 0px;
  }
  .showcase-overlay {
    height: 100%;
    min-height: 0px;
  }
  .showcase-content {
    padding: 0 20px 50px 20px;
  }
  .full-screen-img-separator {
    margin: auto 20px;
  }
}

@media (max-width: 1100px) {
  .section {
    grid-template-columns: repeat(3, 1fr);
  }
  #company-section {
    display: none;
  }
  #company-section-responsive {
    display: grid;
    grid-template-areas:
      "image-box1 image-box1 box1"
      "empty-box1 box2 image-box2"
      "box3 image-box3 box4"
      "box5 box6 box6"
      "image-box4 image-box4 box7"
      "image-box6 empty-box2 image-box7";
    padding-top: 55px;
    padding-bottom: 150px;
  }
  #image-box6::after, #image-box7::after{
    /* border-bottom: 1px solid #707070;
    border-right: 1px solid #707070;
    border-left: 1px solid #707070; */
    border-bottom: 1px solid #707070;

  }
  #empty-box2 {
    grid-area: empty-box2;
    border-bottom: 1px solid #707070;

    /* display: none; */
  }
  #empty-box3 {
    grid-area: empty-box3;
    display: none;
  }
  #empty-box4 {
    grid-area: empty-box4;
    display: none;
  }

  /* services */
  .services-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .instalations {
    grid-template-columns: 1fr;
  }
  .instalation-image {
    grid-area: 1/1;
    height: 450px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .our-values-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-values-content-item {
    border-bottom: 1px solid #fff;
    border-right: none;
  }
}

@media (max-width: 750px) {
  .showcase-buttons-block {
    display: flex;
  }
  #showcase-sec-btn{
    display: none;
  }
  .showcase-buttons-block a {
    margin-right: 0px;
  }
  .services-items {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .services-item {
    height: 375px;
  }
  .our-values-content {
    grid-template-columns: 1fr;
  }
  .our-values-content-item {
    padding: 40px 20px;
  }
  .section {
    grid-template-columns: repeat(2, 1fr);
  }
  #image-box2 {
    display: none;
  }
  #box4 {
    display: none;
  }
  #empty-box2 {
    grid-area: empty-box2;
    display: none;
  }
#image-box7{
    border-left: none;

  }
  #image-box6 .image2{
    display: block;
  }
  #company-section-responsive {
    display: grid;
    grid-template-areas:
      "image-box1 box1"
      "empty-box1 box2"
      "box3 image-box3"
      "box5 box6"
      "image-box4 box7"
      "image-box6 image-box7";
    padding-top: 55px;
    padding-bottom: 50px;
  }
}

@media (max-width: 450px) {
  .showcase-content h1 {
    width: 100%;
  }
  .showcase-buttons-block {
    display: grid;
    gap: 30px;
  }
  .box-number {
    font-size: 38px;
    line-height: 1;
  }
}
