/* Commnon css starts here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: 'Titillium Web', sans-serif;
}

p {
  font-size: 18px;
  color: #525252;
  margin: 0;
}

h3,
h4,
h5 {
  font-size: 36px;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.padding-sec {
  padding: 60px 0;
}

.primary-btn {
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #D9916A;
  padding: 14px 15px;
  /* border-color: #D9916A; */
  border: none;
}

.primary-btn:hover {
  color: #fff;
  background-color: #1E2E3E;
}

.section_heading {
  color: #D9916A;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.section_sub_heading {
  position: relative;
  font-size: 50px;
  font-weight: 500;
  /* margin: 25px 0; */
}

.section_sub_heading::before {
  position: absolute;
  left: 50%;
  top: 25px;
  width: 50%;
  height: 100%;
  content: "";
  border-bottom: 2px dashed #1E2E3Ec2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section_sub_heading::after {
  position: absolute;
  left: 50%;
  top: 35px;
  width: 40%;
  height: 100%;
  content: "";
  border-bottom: 2px dashed #1E2E3Ec2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* Commnon css end here */


/* topbar start here */
.top_bar {
  background-color: #1E2E3E;
}

.top_bar a {
  margin: 0 15px;
  color: #fff;
  display: inline-block;
}

.top_bar a:hover {
  color: #D9916A;
}

.top_bar i {
  margin-right: 7px;
}

/* topbar end here */

/* bottom bar starts here */
.navbar-brand img {
  width: 165px;
}

.bottom_bar .navbar {
  padding: 0;
}

.navbar-collapse {
  flex-grow: 0 !important;
}

.navbar-nav .nav-item .nav-link {
  padding: 35px 20px;
  display: inline-block;
  color: #323232;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #D9916A;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: #D9916A;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: baseline;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  border: none;
}

/* bottom bar ends here */

/* hero section start here */


.owl-carousel.owl-drag .owl-item .item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #040128;
  content: "";
  opacity: 0.4;
  z-index: 1;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {

  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  /* line-height: 60px; */
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.7;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  position: absolute;
  top: 50%;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;

}

.owl-carousel .owl-nav button.owl-prev {
  left: 25px;
}

.owl-carousel .owl-nav button.owl-prev span {
  display: none;
}

.owl-carousel .owl-nav button.owl-next span {
  display: none;
}

.owl-carousel .owl-nav button.owl-prev:before {
  content: "\f060";
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next:before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next {
  right: 25px;
}

.owl-theme .owl-nav {
  margin: 0;
}

.img-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.img-content h3 {
  font-size: 58px;
  color: #fff;
  margin-bottom: 40px;
}

.hero-btn {
  position: relative;
}

.hero-btn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5px;
  left: -5px;
  border: 2px dotted #D9916A;
}

.hero-btn:hover::before {
  border-color: #1E2E3E;
}

/* hero section end here */

/* about section start here */
.about_left {
  margin-right: 40px;
}

.about_left h4 {
  font-size: 40px;
  font-weight: 500;
  margin: 25px 0;
}

.about_left p {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: #525252;
  margin-bottom: 30px;
}

.about-right-item a {
  margin-top: 20px;
  color: #D9916A;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.about-right-item a:hover {
  color: #1E2E3E;
}

.about-right-item {
  margin-left: 49px;
}

.about-right-item p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 37px;
  color: #525252;
}

.about-right-item p span {
  font-family: "titillium";
  font-size: 50px;
  font-weight: 400;
  color: #1E2E3E;
}

.about_left .section_sub_heading::before {
  content: unset;
}

.about_left .section_sub_heading::after {
  content: unset;
}

/* about section end here */

/* service section start here */
.service {
  padding: 30px 0;
  position: relative;
  background: #efa47b url(../images/service/topography-background.png) repeat;
  z-index: 10;
  margin-bottom: 60px;
}

.service_c_wrap {
  margin-bottom: 30px;
}




.service-wrap {
  margin-top: 90px;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-item-wrap {
  flex-basis: 50%;
}

.service-item {
  border: 2px dashed #0000004d;
  display: flex;
  justify-content: space-between;
  padding: 40px 28px;
  padding-bottom: 20px;
  background: #fff;
  max-width: 400px;
  margin-bottom: 30px;
}

.service-item .icon {
  margin-top: 10px;
  flex-basis: 20%;
}

.service-item .text {
  padding-left: 15px;
  text-align: left;
  flex-basis: 80%;
}

.service-item .text h3 a {
  color: #262626;
  font-weight: 400;
  font-size: 30px;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-wrap .bg-image {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 990px;
  height: 745px;
  z-index: -1;
}

.service-item-wrap:nth-child(even) .service-item {
  margin-left: auto;
}

/* service section end here */

/* gallery section start here */

.gallery_link_wrap a {
  color: #D9916A;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.gallery_h_wrap {
  margin: 0 20px;
}


.gallery_wrap {
  padding-top: 50px;
}

/* gallery section end here */

/* footer section start here */
#footer {
  padding-top: 30px;
  background-color: #1E2E3E;
}

.footer_wrap {
  border-bottom: 1px dashed #30465C;
}

h5.footer_heading {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}



.footer-list li {
  margin-bottom: 7px;
}

.footer-list li a {
  color: #fff;
}

.footer-list li a {
  color: #fff;
}

.footer-list li i {
  padding-right: 10px;
}

/* bottom footer start here */
.b-footer {
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  font-size: 13px;
  background-color: #1E2E3E;
}

.b-footer ul li a {
  color: #ffffff !important;
  padding: 0 15px;
  text-transform: capitalize;
  letter-spacing: 1.5px;
}

.footer-heading {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin-top: 10px;
}

.footer-text {
  margin: 20px 0;
  letter-spacing: 1.5px;
  line-height: 1.7;
}

.footer-icons i {
  color: #ffffff;
  font-size: 18px;
  padding: 15px;
}

.t-footer ul li a {
  margin-top: 5px;
}

.f-services {
  flex-wrap: wrap;
}

.f-services li a {
  border-right: 1px solid white;
}

.footer-add {
  padding-left: 20px;
}



.footer-email {
  word-break: break-all;
}

.b-footer p,
.b-footer ul {
  margin: 0;
}

.b-footer a {
  display: inline-block;
}

/* bottom footer end here */

/* footer section end here */


/* Responsive css starts here */
@media screen and (max-width:1399px) {
  .service-wrap .bg-image {
    width: 755px;
    height: 100%;
  }

  .service-item {
    margin-right: 0;
    padding: 20px;
  }

  .service-item .text {
    padding-left: 20px;
  }

  .gallery_h_wrap h4 {
    font-size: 39px;
  }
}

@media screen and (max-width:1199.5px) {
  .service-wrap .bg-image {
    width: 660px;
  }

  .about_left,
  .about-right-item {
    margin: 0;
  }

  .about-right-item {
    padding-top: 15px;
  }

  .about_left h4 {
    font-size: 30px;
    margin: 15px 0;
  }

  .about_left p {
    margin-bottom: 15px;
  }

  .about-right-item a {
    margin-bottom: 15px;
  }

  .navbar-nav .nav-item .nav-link {
    padding: 10px;
  }

  .service-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .service-item .text {
    padding-left: 15px;
  }

  .service-item .text h3 a {
    font-size: 22px;
  }

  .service-wrap {
    margin-top: 30px;
  }

  .service_c_wrap {
    margin-bottom: 60px;
  }
}

@media screen and (max-width:991.5px) {
  .service-wrap .bg-image {
    width: 640px;
  }

  .service-item-wrap {
    flex-basis: 48%;
  }

  /* .gallery {
    margin-top: 75px;
  } */

  .gallery_h_wrap h4::before {
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
  }

  .gallery_h_wrap h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
  }

  .gallery_c_wrap {
    margin-bottom: 35px;
  }

  .gallery_link_wrap {
    margin-top: 20px;
  }

  /* .section_sub_heading {
    margin: 0;
  } */

  .img-content h3 {
    font-size: 40px;
  }
}

@media screen and (max-width:768.5px) {
  .service-wrap .bg-image {
    display: none;
  }

  .section_sub_heading {
    font-size: 32px;
  }

  .service-item-wrap {
    flex-basis: 100%;
  }

  .service-item {

    margin: 0 auto;
    margin-bottom: 30px;
  }

  .padding-sec {
    padding: 30px 0;
  }

  .service {
    margin-bottom: 30px;
  }

  /* 
  .gallery {
    margin-top: 40px;
  } */

  .service {
    padding: 0;
    padding-top: 20px;
  }

  #footer {
    padding-top: 20px;
  }

}

@media screen and (max-width:575.5px) {
  .gallery_h_wrap h4 {
    font-size: 25px;
  }

  .about_left h4 {
    font-size: 30px;
    margin: 10px 0;
  }

  .service-wrap {
    margin: 0;
  }

  .gallery_wrap {
    margin-top: 20px;
  }
  .gallery_wrap {
    padding-top: 0px;
  }

  .img-content {
    display: none;
  }

  .about_middle {
    display: none;
  }

  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
  }

  p {
    font-size: 15px;
  }

  .hero {
    margin-top: 10px;
  }


}

@media screen and (min-width:992px) {
  .dropdown-menu {
    min-width: 13rem;
    font-size: 1.2rem;

  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-item:hover {
    color: #fff;
    background-color: #D9916A;
  }
}

/* Responsive css ends here */


/* ======== About-us page start here ======== */

.wpo-page-title {
  background: url(../images/breadcrumb/breadcrumbbg.jpg) no-repeat center top/cover;
  min-height: 280px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  align-items: center;
  padding-bottom: 0;
}

.wpo-page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #262626;
  content: "";
  z-index: -1;
  opacity: .50;
}

.wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
  margin-top: 10px;
}

.wpo-page-title .wpo-breadcumb-wrap h3 {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 400;
}

.wpo-page-title .wpo-breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}

.wpo-page-title .wpo-breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  padding-right: 20px;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a {
  color: #fff;
  font-size: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:first-child::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 5px;
  background: #fff;
  border-radius: 30px;
}

.about-content .section_sub_heading {
  margin-bottom: 60px;
}

.about-content p {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;

}

/* Responsive css for about page */

@media screen and (max-width: 767px) {
  .wpo-page-title {
    min-height: 200px;
    margin-top: 5px;
  }

  .wpo-page-title .wpo-breadcumb-wrap h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
  }

  .wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 18px;
  }
}

/* ======== Gallery page starts ======== */

.grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  font-size: 17px;
  font-weight: 500;
}

.grid-item img {
  border-radius: 15px;
}



@media screen and (max-width: 440px) {
  .grid-box {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}


/* ======== Contact us page starts ======== */

.contact-us-sec {
  background-color: #f5f5f5;
}

.contact-tile-wrap {
  text-align: center;
  padding: 40px;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  min-height: 290px;
  background-color: #fff;
}

.contact-tile-wrap .icon-box {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 90px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 20px;
  border-radius: 50%;
}

.contact-tile-wrap .icon-box i {
  font-size: 30px;
  color: #efa47b;
}

.contact-tile-wrap .tile-content a {
  font-size: 18px;
  color: #262626;
  display: inline-block;
}

.form-box {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
}


.form-box input,
.form-box textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 0px;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}

.form-box textarea {
  height: 120px;
}

@media screen and (max-width:575.5px) {
  .form-box {
    padding: 20px;
  }
  .soe-tag4 {
    font-size: 19px !important;
  }
  .seo-tag1 {
    font-size: 16px !important;
    color: #fff;
  }
  .seo-tag2 {
    font-size: 16px !important;
    color: #fff;
  }
}

/* ======= service page start =======*/

.service_page_left h4 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.service_page_left h4::before,
.service_page_left h4::after {
  content: unset;
}
.soe-tag3 {
  font-size: 21px;
  margin-top: 50px;
}
.soe-tag4 {
  font-size: 23px;
  margin-top: 50px;
}
.service_page_left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #525252;
  margin-bottom: 15px
}

.form-box{ margin-bottom: 50px;}

.soe-tag1 {
  font-size: 18px;
}
.soe-tag2 {
  font-size: 18px;
}

.seo-tag1 {

  display: none;
}
.seo-tag2 {

  display: none;
}