@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* =============================================  Global-CSS  ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.form-control:focus {
  box-shadow: none;
}

a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

.hero_section.main_sec {
  padding: 100px 0 0;
  margin-bottom: 100px;
}

.main_sec {
  padding: 100px 0;
}

.section_p1 {
  padding: 50px 0;
  /* margin-top: 100px; */
}

.primary_color {
  color: #1c1c25;
}

.secondary_color {
  color: #98273c;
}

.gray_color {
  color: #7b7e86;
}

#our_services {
  scroll-margin-top: 70px;
}

#about_us {
  scroll-margin-top: 100px;
}

#contact_us {
  scroll-margin-top: -50px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* ================================================= Header section ======================== */
.hero_section {
  background-image: url(../images/hero_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  position: absolute;
  width: 100%;
  z-index: 99999;
  transition: .4s all;
  /* background-color: #fff; */
}

header.fix_style {
  position: fixed;
  top: 0;
  backdrop-filter: blur(5px);
  background-color: #fff;
  padding: 15px 0;
  transition: none;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.10);
  /* height: 120px; */
}

header.fixed {
  pointer-events: all;
  opacity: 1;
  transition: .4s all;
}

header.fixed .navbar {
  padding: 0;
}

/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.6s;
  z-index: 100000;
} */

.navbar.sticky {
  padding: 5px 100px;
  background-color: #fff;
}

.navbar.sticky ul li a {
  color: #000;
}

.navbar-nav {
  position: relative;
}

.navbar_brand img {
  cursor: pointer;
  max-width: 100%;
  height: 120px;
}

.navbar-nav .nav-item .active {
  color: #98273c;
  font-weight: bold;
}

.navbar-nav .nav-item {
  position: relative;
  margin-right: 25px;
}

.navbar-nav .nav-item a {
  transition: all 0.3s ease 0s;
  font-weight: 600;
}

.navbar-nav .nav-item a:hover {
  color: #98273c;
}

.navbar-nav .nav-item .active::after,
.navbar-nav .nav-item a:hover::after {
  content: '';
  /* width: 80%; */
  background-color: #98273c;
  height: 2px;
  position: absolute;
  bottom: 9px;
  left: 8px;
  transition: all 0.3s ease 0s;
}

.navbar-collapse {
  justify-content: end;
}

.nav-link {
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}

.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}

.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}

.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}

/* ================================================= hero section ============================== */

.hero_content .lead {
  font-weight: 700;
  font-size: 22px;
  line-height: 17px;
}

.hero_content h1 {
  color: #1c1c25;
  font-weight: 600;
  font-size: 70px;
}

.hero_content h1 span {
  font-weight: 700;
  font-size: 70px;
}

.hero_content .paragraph {
  font-size: 20px;
}

.red_btn {
  background-color: #98273c;
  border-radius: 40px;
  outline: none;
  border: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid;
}

.red_btn:hover {
  border: 1px solid #98273c;
  color: #98273c;
  background-color: transparent;
}

/* ================================================= section_two ============================== */

.section_two {
  background-image: url(../images/sec-2_bg.jpg);
  /* padding-top: 100px; */
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 523px;
  width: 100%;
  margin-bottom: 100px;
}

.our-service {
  padding-top: 100px;
}

.text_content h2 {
  font-weight: 500;
  font-size: 70px;
}

.service_card {
  flex-wrap: wrap;
  width: 100%;
  margin: 80px 0;
  display: flex;
  justify-content: center;
}

.service_card .card {
  width: 20%;
  margin: 0 10px;
  padding: 20px 20px;
  border-radius: 15px;
  background-color: #ffff;
  border: 1px solid #e3e8f4;
}

.card-title {
  font-size: 22px;
  font-weight: 500;
}

.arrow_icon i {
  font-size: 30px;
  margin-left: -12px;
  font-weight: 400;
}

/*============================================================= service three =============================*/

.section_three {
  margin: 300px 0 100px;
  background-color: #ffffff;
  position: relative;
}

.text_content .lead {
  font-size: 18px;
  font-weight: 500;
}

.about_content h2 {
  font-size: 3rem;
}

img.about-bg-img {
  position: absolute;
  right: 0;
  top: -80px;
}

/*============================================================= Counter section =============================*/
.counter_section {
  background-image: url(../images/counter_bg.png);
  position: relative;
  display: block;
  padding: 20px 0px 50px 0px;
  background-repeat: no-repeat;
  background-size: cover;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}

.projectFactsWrap {
  display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}

.projectFactsWrap .item {
  display: flex;
  align-items: center;
  width: 25%;
  height: 100%;
  padding: 50px 0px;
}

.projectFactsWrap .item p.number {
  font-size: 40px;
  padding: 0;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}

.projectFactsWrap .item p {
  color: #fff;
  font-size: 18px;
}

/*============================================================= Counter section =============================*/

.testimonial_section {
  padding-top: 100px;
  position: relative;
}

.testi_card {
  margin: 80px 0 100px;
}

.testi_card .card {
  margin-right: 25px;
  border-radius: 12px;
}

.card_subtitle {
  padding: 28px;
  font-size: 18px;
}

.gow-img-div {
  background-color: #303030;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.testimonial_body .item {
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.testimonial_body h3 {
  color: #fff;
  font-size: 2rem;
}

.testimonial_body p {
  color: #fff;
}

img.customer-bg-img {
  position: absolute;
  top: -7px;
}

/*============================================================= contact section =============================*/
.contact-section {
  margin-top: -240px;
  background-image: url(../images/contact_bg.jpg);
  height: 793px;
}

.mt-100 {
  margin-top: 100px;
}

.contact-detail h1 {
  font-size: 3rem;
  font-weight: 500;
}

.contact-detail p {
  width: 67%;
  color: black;
  font-size: 1.1rem;
}

.list_benefit li {
  font-size: 18px;
  margin: 15px 0;
}

.list_benefit li i {
  padding-right: 8px;
}

.sec-pad {
  align-items: center;
  display: flex;
}

form.contFrm {
  max-width: 100%;
  margin: auto;
}

.inptFld {
  width: 100%;
  height: 60px;
  border: 0;
  margin: 0 0 10px;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 16px;
  color: #000;
}

.inptFld:focus {
  outline-offset: -4px;
  outline: 1px solid #98273c;
}

.contFrm textarea {
  height: 200px;
  padding-top: 20px;
  resize: none;
}

.inptBtn {
  height: 50px;
  border: 0;
  background: #98273c;
  font-size: 16px;
  color: #fff;
  margin: auto;
  letter-spacing: 1px;
  cursor: pointer;
  width: 30%;
  max-width: 100%;
  border-radius: 30px;
  border: 1px solid #98273c;
}

.inptBtn:hover {
  background: transparent;
  border: 1px solid #98273c;
  color: #98273c;
}

/*================================================== footer =====================================*/

.footer {
  background-color: #303030;
  padding: 50px 0;
}

.single_footer img {
  max-width: 100%;
  height: auto;
}

.single_footer ul li {
  padding: 8px 0;
}

.single_footer ul li img {
  margin-right: 15px;
}

.single_footer ul li i {
  margin-right: 14px;
}

.single_footer ul li, .single_footer ul li a {
  color: #fff;
  line-height: 36px;
  font-size: 1.3rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  word-wrap: break-word;
}

.copyright {
  color: white;
}

hr {
  color: #fff;
  margin: 30px;
}

.privcy-policy ul{
  padding-left: 30px;
  list-style: disc;
}

.privcy-policy a{
  text-decoration: underline;
  color: #98273c;
}

/* media query */

@media (min-width: 1200px) and (max-width: 1439px){
  .about_content{
    width: 45%;
    margin-left: 40px;
  }
  img.about-bg-img{
    width: 400px;
  }
}

@media only screen and (max-width: 1199px){
  .hero_content {text-align: center;}
  .hero_img img { width: 100%;}
  .hero_content h1 { font-size: 46px;}
  .hero_content h1 span {font-size: 69px;}
  .service_card .card {width: 47%; margin: 10px;}
.section_two {height: 100%;background-image: none;background-color: #eaf2ff;}
.service_card {padding: 40px 0;margin: 40px 0;}
.about_img img{ width: 100%;}
.about_content h2 {font-size: 35px;}
.projectFactsWrap .item {
  width: 50%;
  justify-content: center;
}
.contact-detail p {
  width: 100%;
}
.section_three {
  margin: 100px 0 100px;
}
.section_three .section_p1 {
  padding: 0 0 100px;
}
.section_two {
  margin-bottom: 0;
}

}

@media only screen and (max-width: 991px) {
  .navbar {
    background-color: #fff;
  }

  .hero_content {
    text-align: center;
  }

  .hero_img img {
    width: 100%;
  }

  .red_btn {
    margin-bottom: 30px;
    margin-top: 30px !important;
  }

  .service_card .card {
    width: 47%;
    margin: 10px;
  }

  .service_card {
    padding: 40px 0;
    margin: 40px 0;
  }

  .section_two {
    height: 100%;
    background-image: none;
    background-color: #eaf2ff;
  }

  .section_three {
    margin-top: 0;
  }

  .section_p1 {
    padding: 0;
    margin-top: 0;
  }

  .about_img img {
    width: 100%;
    margin-bottom: 20px;
  }

  .projectFactsWrap .item {
    width: 50%;
    justify-content: center;
  }

  .hero_content h1, .hero_content h1 span, .text_content h2 {
    font-size: 55px;
    line-height: 65px;
  }

  .hero_content, .card_subtitle, .about_content {
    text-align: center;
  }

  .testi_card {
    margin: 40px 0;
  }

  .testi_card .card {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-section {
    margin-top: 0;
    margin-bottom: 70px;
    height: 100%;
  }

  .contact-detail {
    text-align: center;
  }

  .contact-detail p {
    width: 100%;
  }

  .list_benefit {
    margin-bottom: 20px;
  }

  .mt-100 {
    margin: 50px 0;
  }

  .testimonial_body h3 {
    font-size: 22px;
    line-height: 22px;
  }

  .testimonial_body p {
    margin-bottom: 0;
  }
  .card-title{font-size: 24px; line-height: 34px;}
  .card-subtitle{font-size: 18px; line-height: 28px;}
  .card_subtitle{padding: 15px; font-size: 17px;}
}

@media only screen and (max-width: 767px) {
  .navbar {
    background-color: #fff;
  }

  #contact_us, #about_us {
    scroll-margin-top: 100px;
  }

  .single_footer {
    margin-bottom: 30px;
  }

  .main_sec {
    padding: 50px 0;
  }

  .hero_section.main_sec {
    margin-bottom: 50px;
    padding: 136px 0 0;
  }

  .hero_img img {
    width: 100%;
  }

  .hero_content h1, .hero_content h1 span, .text_content h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .red_btn {
    margin-bottom: 30px;
    margin-top: 30px !important;
  }

  .service_card {
    flex-direction: column;
  }

  .service_card .card {
    width: 100%;
    margin: 15px 0;
  }

  .section_three {
    margin-top: 0;
  }

  .section_p1 {
    padding: 0;
    margin-top: 0;
  }

  .section_two {
    height: 100%;
    background-image: none;
    background-color: #eaf2ff;
  }

  .about_img img {
    width: 100%;
    margin-bottom: 20px;
  }

  .about_content h2 {
    font-size: 32px;
    line-height: 45px;
  }

  .projectFactsWrap .item {
    width: 100%;
    justify-content: center;
  }

  .testi_card {
    margin: 40px 0;
    flex-direction: column;
  }

  .testi_card .card {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-section {
    margin-top: 0;
    margin-bottom: 70px;
    height: 100%;
  }

  .contact-detail {
    text-align: center;
  }

  .contact-detail p {
    width: 100%;
  }

  .list_benefit {
    margin-bottom: 20px;
  }

  .mt-100 {
    margin: 50px 0;
  }

  .testimonial_body h3 {
    font-size: 22px;
    line-height: 22px;
  }

  .testimonial_body p {
    margin-bottom: 0;
  }
}