@font-face {
  font-family: GTreg;
  src: url(fonts/GTWalsheimProRegular.ttf);
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: GTbold;
  src: url(fonts/GTWalsheimProBold.ttf);
  font-weight: 700;
  font-style: normal
}

:root {
  --primary-color: #fff;
  --primary-bg-color: #11282d;
  --animate-duration: 1500ms;
  --primary-font: 'GTbold', sans-serif;
  --secondary-color: #133a42;
  --secondary-font: 'GTreg', sans-serif;
  --trinary-color: #CE2029;
}

body {
  background-color: var(--primary-bg-color);
}

.trinary {
  color: var(--trinary-color);
}

.contact-page ul {
  list-style: none;
}

.contact-page ul li a {
  color: #000;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  text-decoration: none;
}

.contact-page ul li a span {
  color: #000;
  display: block;
  padding-right: 10px;
  padding-top: 5px;
}

.contact-page ul li .map {
  padding-bottom: 10px;
  max-width: 238px;

}

.galc {
  width: 90%;
  height: 400px;
}

.galci {
  width: 100%;
  height: 400px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 100%;
}

.sbg {

  padding: 30px 30px;
  border-radius: 20px 0px;
  background-color: var(--secondary-color);
  text-align: center;
  font-family: var(--secondary-font);
}

/* testimonials */


.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.client_section .box .img_container {
  width: auto;
  height: auto;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.client_section .box .img_container .img-box {
  width: auto;
  height: auto;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.client_section .box .img_container .img-box .img_box-inner img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 25px;
  color: #fff;
}

.client_section .box .detail-box h5 {
  font-size: 20px;
  font-weight: 600;
}

.client_section .box .detail-box h6 {
  font-size: 15px;
  color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  top: 43%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  width: auto;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  opacity: 1;
  color: #000;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
}

.client_section .carousel-control-prev-icon,
.client_section .carousel-control-next-icon {

  color: #000;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #212121;
}

.client_section .carousel-control-prev {
  /* left: 25%; */
}

.client_section .carousel-control-next {
  /* right: 25%; */
}

/* flip service */

.flipcard-holder {
  height: 320px;
  margin-bottom: 20px;
  min-width: 420px;
}

.flipcard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 320px;
  margin: -160px -210px -160px -210px;
  float: left;
  perspective: 500px;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

  transition: transform 1s;
  transform-style: preserve-3d;
}

.flipcard:hover .content {
  transform: rotateY(180deg);
  transition: transform 0.5s;
}

.front,
.back {
  position: absolute;
  height: 320px;
  width: 420px;
  background: white;
  /* line-height: 300px; */
  color: #03446A;
  text-align: center;
  /* font-size: 60px; */
  border-radius: 5px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.back {
  background: #03446A;
  color: white;
  transform: rotateY(180deg);
  padding: 10px;
}

.back h4 {
  font-size: 22px;
  font-weight: 600;

}

.back p {
  font-size: 16px;
}

.front .service-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;

}

.front h4 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 1px rgba(0, 0, 0, .4), 0 0 18px rgba(0, 0, 0, .4);


}

.back ul,
.back li {
  font-size: 16px;
  text-align: start;
}

.text-50 {
  font-size: 60px;

  position: absolute;
  top: 0;
  z-index: 100;
}

.minus-50 {
  margin-top: 35px;
}

.over-text {
  position: absolute;
  top: 60%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.overlay {
  position: absolute;
  width: 78%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;

}

.text-60 {
  font-size: 80px;
  letter-spacing: -2px;
  margin-top: -40px;
  margin-bottom: 5rem;
  line-height: 60px;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;


}

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

.m-v img {
  width: 100%;
  height: 400px;
  object-position: center;
  object-fit: cover;
}

.m-v h2 {
  font-size: 60px;
  font-family: var(--primary-font);
  text-align: center;
  position: absolute;
  top: -30px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;

}

.m-v p {
  font-size: 18px;
  line-height: 24px;
  margin-top: 50px;
  text-align: start;
}

@media (max-width:600px) {
  .flipcard-holder {
    height: 300px;
    margin-bottom: 20px;
    min-width: 300px;
  }

  .flipcard {
    width: 300px;
    margin: -150px;
  }

  .front,
  .back {

    height: 300px;
    width: 300px;
  }

  .text-60 {
    font-size: 35px;
    margin-top: -16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
  }

  .homes-margin {
    margin-top: -40px;
  }
}