html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.btn,
a {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  text-decoration: none;
}

.btn:hover,
a:hover {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  outline: none;
  box-shadow: none;
}

.slider,
.slide {
  height: 100vh;
}

.slide {
  position: relative;
}

.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.slide .slide__content.slide__content__left {
  left: 0;
  transform: none;
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #fff;
}

.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
  font-family: "Playball", cursive;
  font-size: 2.5rem;
}

.slide .slide__content--headings .title {
  font-size: 3.5rem;
}

.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}

.slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}

.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  animation-name: zoomInImage;
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  animation-name: zoomOutImage;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}

.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slick-nav i:before {
  transform: rotate(-40deg);
}

.slick-nav i:after {
  transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.slick-nav.animate svg {
  animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
  animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
  animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
  animation: arrowDown 1.6s ease forwards;
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrowUp {
  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {
  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.slide01 {
  bottom: -10px;
  top: inherit !important;
}

.ban-text {
  position: absolute;
  bottom: 17%;
  right: 10%;
  transform: translateY(-50%);
}

.ban-text h3 {
	/*background: linear-gradient(to left, #8e1b1b, #ab4225);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;*/
	font-size: 3.4rem;
	color: #FFFFFF;
	text-shadow: 2px 2px 3px #000;
	font-weight: 500;
	font-family: "Prata", serif;
}

.ban-text h4 {
  font-size: 2.5rem;
  color: #fff;
  /* -webkit-text-stroke: 2px #fde7bd; */
  /* text-shadow: -1px -1px 0 #fde7bd, 1px -1px 0 #fde7bd, -1px 1px 0 #fde7bd, 1px 1px 0 #fde7bd; */
  font-weight: 500;
  letter-spacing: 1px;
  /* -webkit-text-stroke: 1px #fff; */
  /* -webkit-text-fill-color: #8d1b1b; */
  font-family: "Prata", serif;
  text-shadow: 2px 2px 2px #000;
}

.ban-text h4 span{
    font-family: sans-serif;
    font-weight: normal;
}

.light {
  animation: fadeIn 8s;
  -webkit-animation: fadeIn 8s;
  -moz-animation: fadeIn 8s;
  -o-animation: fadeIn 8s;
  -ms-animation: fadeIn 8s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.navbar-brand {
  font-family: "Prata", serif;
  font-size: 2.5rem;
  position: relative;
  z-index: 999;
  margin-right: 0;
}

header .container-fluid {
  width: 98%;
}

.bg-dark {
  background: #ffff !important;
}

.bg-dark::before {
  content: "";
  background: linear-gradient(to left, #8e1b1b, #ab4225);
  width: 23rem;
  height: 5.4rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-link {
  color: #000;
  margin-left: 3rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: #b23716;
}

.nav-link:focus,
.nav-link:hover {
  color: #b23716;
}

.know-us .container-fluid {
  width: 90%;
}

.know-us {
  margin-top: 6rem;
  background: #ececec;
  padding: 8rem 0;
}

.watermark {
  font-size: 8rem;
  color: #d6d6d6;
  transform: rotate(90deg);
  text-transform: uppercase;
  letter-spacing: 1.5rem;
  margin-top: 4rem;
}

.about-txt {
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid #ecad2d;
  position: absolute;
  top: 10rem;
  left: 7rem;
  padding: 0.2rem 1.5rem;
  width: 23rem;
}

.about-txt h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 1rem;
}

.about-txt h4 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
}

.know-us h4 {
  color: #fff;
  font-size: 2rem;
}

.know-us h5 {
  color: #686868;
  font-size: 1.6rem;
}

.know-us h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #3a3a3a;
}

.know-us p {
  color: #3a3a3a;
  font-size: 1.7rem;
}

.know-us p span {
  color: #a02621;
}

.btn-danger {
  background: #8d1b1b;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0;
  display: block;
  font-weight: 500;
  width: max-content;
}

.btn-danger i {
  font-size: 2.5rem;
  vertical-align: middle;
}

.linel {
  width: 60px;
  height: 2px;
  background: #8d1b1b;
  display: block;
  margin-bottom: 5px;
}

.liner {
  width: 60px;
  height: 2px;
  background: #8d1b1b;
  display: block;
  float: right;
  margin-top: 5px;
}

.butondesign {
  width: max-content;
}

.btn-danger:hover {
  background: #000;
}

.btn-danger:hover .liner {
  background: #000;
}

/* .aboutcontent {
    margin-top: 10rem;
} */

.architecturebg {
  background: url(../images/line-drawing.png) no-repeat;
  background-position: 6rem -28rem;
  background-color: #ececec;
  background-size: cover;
  padding: 8rem 0;
  margin-top: 6rem;
}

.architecturebg .container-fluid {
  width: 95%;
}

.title h5 {
  color: #686868;
  font-size: 2rem;
}

.title h3 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #3a3a3a;
}

.serviceblock {
  border: 2px solid #bdbcbc;
  background: #fff;
  padding: 3.5rem 2rem;
}

.serviceblock img {
  margin: auto;
  display: block;
}

.serviceblock h4 {
  font-size: 2rem;
  font-weight: 600;
}

.serviceblock a {
  color: #982020;
  font-weight: 600;
  width: max-content;
}

.serviceblock a:hover {
  color: #000;
  padding-left: 1rem;
}

.services {
  margin-top: 15rem;
}

.services:before {
  content: "";
  background: #fff;
  width: 100%;
  height: 13rem;
  display: block;
  position: absolute;
  bottom: 0;
}

.topspace {
  margin-top: 7rem;
}

.content {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  height: 30rem;
}

.content .content-image {
  height: 100%;
  object-fit: cover;
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
  opacity: 1;
}

.content-image {
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.fadeIn-bottom {
  top: 80%;
}

.content-details i {
  font-size: 4rem;
  color: #fff;
}

.hgal .col {
  padding: 0;
}

.hgal h3 {
  color: #8d230d;
  font-size: 2.8rem;
  font-family: "Prata", serif;
}

.hgal h3 span {
  color: #000;
}

.hgal {
  margin-top: 6rem;
  background: #f0f0f0;
  padding: 8rem 0;
}

footer {
  background: url(../images/footerbg.png) no-repeat;
  background-size: cover;
  background-color: #eeeeee;
  padding-top: 5rem;
  margin-top: 6rem;
}

footer .container-fluid {
  width: 95%;
}

footer h3 {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Prata", serif;
  color: #8d230d;
}

/* footer h3 span {
  color: #8d230d;
} */

.footertop ul li {
  display: inline-block;
  margin-right: 0.3rem;
}

.footertop h4 {
  float: left;
  margin-right: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.footersocial {
  float: right;
  width: max-content;
}

footer hr {
  border-top: 3px dotted #999999;
  opacity: 1;
}

.fspace {
  margin-top: 5rem;
}

footer h4 {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Prata", serif;
}

footer h4 span {
  color: #8d230d;
}

/* footer h4:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #8e1b1b;
  display: block;
} */

footer ul li a {
  color: #626262;
  margin-bottom: 1rem;
  display: block;
  font-size: 1.5rem;
  width: max-content;
}

footer ul li a i {
  margin-right: 0.5rem;
  color: #626262;
}

footer ul li a:hover {
  color: #ab4225;
  padding-left: 1rem;
}

footer ul li a:hover i {
  color: #ab4225;
}

.copyright {
  border-top: 1px solid #ab4225;
  margin-top: 5rem;
}

.copyright a {
  color: #982020;
}

.copyright a:hover {
  color: #000;
}

.fixed-top.navbar {
  border-bottom: 1px dotted #901e1c;
}

.aboutcontent ul li::marker {
  color: #a02621;
  font-size: 2rem;
}

.architecturebg h4 {
  font-size: 1.6rem;
  color: #494949;
}

.architecturebg h3 {
  color: #8d230d;
  font-size: 2.8rem;
  font-family: "Prata", serif;
  border-bottom: 1px solid #000;
}

.architecturebg h3 span {
  color: #000;
}

.architecturebg h3::after {
  content: "";
  background: #8d1b1b;
  width: 100%;
  display: block;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.architecturebg .slide {
  height: 100%;
}

.carousel-control-next-icon {
  background-image: url(../images/next.png);
}

.carousel-control-prev-icon {
  background-image: url(../images/next.png);
  transform: rotate(-180deg);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 3rem;
  height: 3rem;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.clientlist h3 {
  color: #8d230d;
  font-size: 4rem;
  font-family: "Prata", serif;
}

.clientlist h3 span {
  color: #000;
}

.clientlist ul li {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  display: flex;
}

.clientlist i {
  color: #952317;
  margin-top: 3px;
}

.custom-con {
  width: 95%;
}

.contactus {
  margin-top: 6rem;
  background: #f0f0f0;
  padding: 8rem 0;
}

.contactus .form-control {
  height: 4.5rem;
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

textarea {
  height: auto !important;
}

.btn-outline-danger {
  border-color: #8d1b1b;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #8e1b1b;
}

.btn-outline-danger:hover {
  background: #8d1b1b;
  border-color: #8d1b1b;
}

.contactus h3 {
  color: #8d230d;
  font-size: 2.8rem;
  font-family: "Prata", serif;
}

.contactus h3 span {
  color: #000;
}

address p {
  display: flex;
}

address p i {
  font-size: 2rem;
  margin-right: 1rem;
  color: #fff;
  background: #8e1b1b;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  text-align: center;
  line-height: 5rem !important;
  color: #fff;
}

address p a {
  color: #000;
}

address p a:hover {
  color: #8d230d;
}

.navbar-nav .nav-link.active {
  color: #8d1b1b;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 99999;
  background: rgb(125 14 12);
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  transition: all 0.4s;
  text-decoration: none;
}

.back-to-top i {
  font-size: 1.6rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible !important;
  opacity: 1 !important;
}

.modal-title {
  font-size: 2.8rem;
  color: #a02621;
  font-weight: 700;
}

.thankyou {
  padding-top: 6rem;
}

.thankyou h1 {
  margin-top: 5rem;
  margin-bottom: 8rem;
  font-weight: 600;
}

.modal-content {
  padding: 4rem;
  border-radius: 4rem;
}

.greybg {
  margin: 8rem 0;
  background: #f0f0f0;
  padding: 10rem 0;
}

.accordion {
  --bs-accordion-bg: #f0f0f0 !important;
  --bs-accordion-btn-icon-width: 3.25rem;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #fff;
  box-shadow: none;
}

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-button:focus {
  border: 0;
}

.modal-body p {
  text-align: justify;
}

.topsocial ul li {
  display: inline-block;
  margin-left: 0.5rem;
}

/* gallery */

#lightbox {
  display: flex;
  flex-direction: column-reverse;
}

.isotope-toolbar button {
  display: inline-block;
  padding: 10px 20px;
  margin: 0px 5px;
  background-color: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.5s;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}

.isotope-toolbar button:hover {
  outline: none;
  background-color: #901e1c;
  color: #fff;
}

.isotope-toolbar button.active {
  outline: none;
  background-color: #901e1c;
  color: #fff;
}

/*    isotope       */

.isotope-wrapper {
  display: block;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin: auto;
}

.isotope-toolbar span {
  text-transform: capitalize;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  transform: ease-in-out 0.5s;
  cursor: pointer;
  flex: 1;
}

.isotope-box {
  position: relative;
  width: 100%;
  flex: 1;
}

.isotope-toolbar {
  text-align: center;
  margin: 10px;
}

.isotope-item {
  position: inherit !important;
  width: 23.8%;
  left: inherit !important;
  top: inherit !important;
  display: inline-block;
  margin: 0.5rem;
}

.isotope-item img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

figure {
  overflow: hidden;
  text-align: center;
  -webkit-perspective: 50em;
  perspective: 50em;
  height: 25rem;
  overflow: hidden;
  margin-bottom: 0;
}

figure * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

figure figcaption {
  top: 50%;
  left: 20px;
  right: 20px;
  position: absolute;
  opacity: 0;
  z-index: 1;
}

figure h4 {
  color: #fff;
}

figcaption a {
  background: rgba(0, 0, 0, 0.3);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: block;
  margin: auto;
  color: #fff;
}

figcaption a:hover {
  color: #ecad2d;
}

figcaption i {
  font-size: 2.3rem;
  line-height: 5rem !important;
}

figure:after {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
}

figure:hover figcaption,
figure.hover figcaption {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure:hover:after,
figure.hover:after {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 0.9;
}

/* .d-none1 {
    display: none;
} */

.insidetop {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin-bottom: 5rem;
}

.insidetxt h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #8d230d;
  font-family: "Prata", serif;
  border-bottom: 1px solid #000;
}

.insidetxt h2::after {
  content: "";
  background: #8d1b1b;
  width: 100%;
  display: block;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.insidetxt h2 span {
  color: #000;
}

.head2 {
  font-size: 2.3rem;
  font-weight: 600;
  font-family: "Prata", serif;
  letter-spacing: 1px;
}

.accordion-button {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.accordion-body {
  font-size: 1.4rem;
}

.accordion-button:not(.collapsed) {
  color: #901e1c;
}

.accordion-button:hover {
  background: #f2d6d6;
}

.accordion-button::after {
  width: 2.5rem;
  height: 2.5rem;
  background-size: cover;
}

/* Responsive */

@media screen and (max-width: 768px) {
  html {
    font-size: 58%;
  }
  .navbar-brand {
    font-size: 2.2rem;
    margin-left: 1rem;
  }
  .bg-dark::before {
    width: 19rem;
    height: 5rem;
  }
  header .container-fluid {
    width: 100%;
  }
  .nav-link {
    margin-left: 1rem;
    font-size: 1.5rem;
  }
  .building {
    width: 70%;
  }
  .light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .slide01 {
    bottom: 0;
  }
  .watermark {
    font-size: 5rem;
  }
  .know-us h1 {
    font-size: 2.5rem;
  }
  .know-us .container-fluid {
    width: 100%;
  }
  .about-txt {
    left: 0;
    top: 4rem;
  }
  .about-txt h3 {
    font-size: 2.3rem;
  }
  .know-us h4 {
    font-size: 1.7rem;
  }
  .btn-danger {
    font-size: 1.5rem;
  }
  .hgal h3,
  .contactus h3,
  .clientlist h3,
  .architecturebg h3 {
    font-size: 3rem;
  }
  address p i {
    width: 4rem;
    height: 4rem;
    line-height: 4rem !important;
    font-size: 1.5rem;
  }
  footer h3 {
    font-size: 3rem;
  }
  footer h4 {
    font-size: 1.7rem;
  }
  footer ul li a {
    font-size: 1.4rem;
  }
  .copyright p {
    font-size: 1.4rem;
  }
  .clientlist ul li {
    font-size: 1.5rem;
  }
  .architecturebg {
    margin-top: 10rem;
  }
  .contactus {
    margin: 4rem 0;
  }
  .isotope-item {
    width: 30.9%;
  }
  .slider,
  .slide {
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .ban-text h3 {
    font-size: 4rem;
  }
  .ban-text h4 {
    font-size: 3rem;
  }
  .modal-title {
    font-size: 2rem;
  }
  .modal-content {
    padding: 3rem;
  }
  .navbar-toggler i {
    color: #000 !important;
    font-size: 2rem;
  }
  .custom-con {
    width: 95%;
  }
  .architecturebg h4 {
    margin-top: 2rem;
  }
  .contactus {
    padding: 6rem 0;
  }
  .clientlist {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .aboutcontent {
    margin-top: 5rem;
  }
  .watermark {
    font-size: 4rem;
  }
  .btn-danger {
    font-size: 1.4rem;
  }
  .ban-text {
    bottom: 5%;
    left: 2%;
  }
  .know-us h4 {
    font-size: 2.2rem;
  }
  .contactus .form-control {
    margin-bottom: 2rem;
  }
  .btn-outline-danger {
    margin-bottom: 5rem;
  }
  footer h4 {
    margin-top: 3rem;
  }
  .navbar-collapse {
    padding-top: 3rem;
  }
  .nav-link {
    padding-bottom: 2rem;
  }
  #cboxLoadedContent {
    width: 100vw !important;
    height: auto !important;
  }
  #cboxContent {
    width: 100vw !important;
    height: auto !important;
  }
  .cboxPhoto {
    width: 100vw !important;
    height: auto !important;
  }
  .topsocial {
    float: left;
    padding-bottom: 2rem;
  }
  figure {
    height: 20rem;
  }
  .hgal,
  footer,
  .contactus,
  .architecturebg {
    margin-top: 10rem;
  }
  .slide .slide__img img {
    object-fit: cover;
    object-position: left;
  }
  iframe {
    margin-top: 3rem;
  }
  .head2 {
    margin-top: 2rem;
  }
  .mob-top {
    margin-top: 4rem;
  }
  .insidetop {
    height: 50vh;
  }
  .insidetop img {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 480px) {
  .watermark {
    font-size: 3rem;
  }
  .know-us h1 {
    font-size: 2.2rem;
  }
  .know-us h5 {
    font-size: 1.8rem;
  }
  .know-us h4 {
    font-size: 1.8rem;
  }
  .ban-text h3 {
    font-size: 2rem;
  }
  .ban-text h4 {
    font-size: 1.2rem;
  }
  .architecturebg {
    margin-top: 7rem;
    padding: 5rem 0;
  }
  .hgal h3,
  .contactus h3,
  .clientlist h3,
  .architecturebg h3 {
    font-size: 2.5rem;
  }
  .architecturebg h4 {
    font-size: 1.8rem;
  }
  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 3px;
  }
  .slide .slide__img {
    height: 90vh;
  }
  .slide .slide__img img {
    object-fit: cover;
    object-position: left;
    height: 100%;
  }
  .navbar-toggler i {
    font-size: 2.8rem;
  }
  .isotope-toolbar button {
    padding: 5px 10px;
  }
  .isotope-toolbar {
    margin: 0;
  }
  .isotope-item {
    width: 46%;
  }
  figure {
    height: 15rem;
  }
  footer h3 {
    font-size: 2.2rem;
  }
  .footersocial {
    float: left;
  }
  .isotope-toolbar span {
    font-size: 1.3rem;
  }
  .isotope-toolbar button {
    margin: 0 2px;
  }
}






























































.accent {
  position: relative;
  display: inline-block;
}
.accent::before {
  content: "-";
  position: absolute;
  top: -27px; /* Adjust this value for vertical position */
  left: 1px; /* Adjust this value for horizontal positioning */
  font-size: 2em; /* Size of the hyphen */
  margin-right: 0.2em; /* Space between hyphen and A */
}

.accent-1 {
  position: relative;
  display: inline-block;
}
.accent-1::before {
  content: "-";
  position: absolute;
  top: -29px; /* Adjust this value for vertical position */
  left: 1px; /* Adjust this value for horizontal positioning */
  font-size: 2em; /* Size of the hyphen */
  margin-right: 0.2em; /* Space between hyphen and A */
}