@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
/*font-family: "Host Grotesk", sans-serif;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  overflow-x: hidden;
  font-family: "Host Grotesk", sans-serif;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

a {
  color: #1b70bb;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

/*#### Common css start ####*/
.common-btn1 {
  position: relative;
  background-color: #ff9c03;
  border-color: #ff9c03;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}
.common-btn1:hover {
  background-color: #ff9c03;
  border-color: #ff9c03;
  color: #fff;
}

.common-btn2 {
  position: relative;
  background-color: #fff;
  border-color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
}
.common-btn2:hover {
  background-color: #fff;
  border-color: #fff;
}

.common-outline-btn1 {
  border: 1px solid rgba(255, 255, 255, 0.2196078431);
  background-color: transparent;
  color: #fff;
  font-size: 18px;
}
.common-outline-btn1:hover {
  border: 1px solid rgba(255, 255, 255, 0.2196078431);
  background-color: transparent;
  color: #fff;
}

.common-title {
  position: relative;
  width: 100%;
}
.common-title h4 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.common-title h4::before {
  content: "\f111";
  position: relative;
  font-size: 8px;
  font-family: "fontawesome";
  margin-right: 6px;
  vertical-align: middle;
}
.common-title h3 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-weight: 300;
  font-size: 50px;
  margin-bottom: 15px;
}
.common-title p {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 16px;
  margin-bottom: 10px;
}

/*#### Common css end ####*/
/*### Header css start ###*/
.header-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  padding: 5px 0px;
  z-index: 10;
}
.header-wrapper .navbar {
  position: relative;
  justify-content: space-between;
}
.header-wrapper .navbar .logo-wrap {
  position: relative;
}
.header-wrapper .navbar .main-menu {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 8px;
}
.header-wrapper .navbar .main-menu li {
  position: relative;
}
.header-wrapper .navbar .main-menu li a {
  position: relative;
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
}
.header-wrapper .navbar .main-menu li a:hover {
  color: #fff;
  border-bottom-color: #ff9c03;
  transition: all 0.5s;
}
.header-wrapper .navbar .main-menu li.current a, .header-wrapper .navbar .main-menu li.current_page_item > a, .header-wrapper .navbar .main-menu li.current_page_parent > a{
  color: #fff;
  border-bottom-color: #ff9c03;
  transition: all 0.5s;
}
.header-wrapper .navbar .head-right-btn {
  position: relative;
}
.header-wrapper .navbar .head-right-btn ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.header-wrapper .navbar .head-right-btn ul li {
  position: relative;
  padding-left: 5px;
}
.header-wrapper a.navbar-brand img {
  max-width: 786px;
}

@media (max-width: 991px) {
  .desktop-logo {
    display: none;
  }
}
@media (min-width: 992px) {
  .mobile-logo {
    display: none;
  }
}
/*##*/
.header-wrapper .navbar .menu-wrap {
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  align-items: center;
}

.header-wrapper .navbar .main-menu > li {
  padding: 0px 12px;
}

.header-wrapper .navbar .main-menu li.current > a {
  color: #fff !important;
}

.header-wrapper .navbar .main-menu li > a {
  color: #fff;
  font-size: 15px;
  transition: 0.5s;
  padding: 0;
}

.header-wrapper .navbar .main-menu li > a:hover {
  color: #ff9c03;
  transition: 0.5s;
}

.header-wrapper .navbar .main-menu > li.sub-dropdown {
  padding-right: 16px;
}

.header-wrapper .navbar .main-menu > li.sub-dropdown:after {
  content: "\f107";
  font-family: fontawesome;
  position: absolute;
  top: 20%;
  right: 0px;
  display: inline-block;
  color: #ff9c03;
  font-size: 12px;
}

.header-wrapper .navbar .main-menu > li .sub-menu {
  background-color: rgba(255, 156, 3, 0.7);
  text-align: left;
  padding: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  border: 0;
}

.header-wrapper .navbar .main-menu > li .sub-menu li a {
  padding: 4px 2px;
  color: #fff;
  font-size: 14px;
}
.header-wrapper .navbar .main-menu > li .dropdown-menu{
  background: #000000c4;
  backdrop-filter: blur(12px);
  padding: 14px 12px;
}
.header-wrapper .navbar .main-menu > li .dropdown-menu li{
  padding: 4px 0px;
}
.header-wrapper .navbar .main-menu > li .dropdown-menu li > a{
  background-color: transparent;
}
/*####*/
/*### Header css end ###*/
/*#### Banner css start ####*/
.banner-wrapper {
  position: relative;
  width: 100%;
}
.banner-wrapper .banner-sld-items {
  position: relative;
}
.banner-wrapper .banner-sld-items img {
  position: relative;
  width: 100%;
}
.banner-wrapper .banner-sld-items::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8117647059);
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.34) 30%,
    rgba(0, 0, 0, 0) 84%,
    rgba(252, 70, 107, 0) 100%
  );
  z-index: 1;
}
.banner-wrapper .banner-sld-items::after{
  content: "";
  position: absolute;
  left: 25%;
  top: 0;
  width: 60%;
  height: 60%;
  background: rgba(0, 0, 0, 0.8117647059);
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.34) 30%,
    rgba(0, 0, 0, 0) 84%,
    rgba(252, 70, 107, 0) 100%
  );
  z-index: 1;
}
.banner-wrapper .banner-content-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  top: 65%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .banner-wrapper .banner-content-wrap {
    top: 75%;
  }
  .banner-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 50px;
  }
}
.banner-wrapper .banner-content-wrap .banner-content {
  position: relative;
  width: 100%;
}
.banner-wrapper .banner-content-wrap .banner-content h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
.banner-wrapper .banner-content-wrap .banner-content h1 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 60px;
  font-weight: 300;
  margin-bottom: 15px;
}

#banner-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  padding: 15px 10px;
}
#banner-slider .slick-dots li {
  position: relative;
  margin: 0px 4px;
}
#banner-slider .slick-dots li button {
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
#banner-slider .slick-dots li button:before {
  content: "";
  width: 25px;
  height: 3px;
  background-color: transparent;
  border: 3px solid rgba(43, 53, 96, 0.96);
  display: block;
  border-radius: 5px;
}
#banner-slider .slick-dots li.slick-active button:before {
  width: 35px;
  height: 3px;
  background-color: #ff9c03;
  border: 3px solid #ff9c03;
}

/*### dots css end*/
/*#### Banner css end ####*/
/*#### about section css start ####*/
.about-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.about-img-expert-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 15px;
}
.about-img-expert-wrap h5 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 20px;
  margin-bottom: 10px;
}
.about-img-expert-wrap .about-left-img {
  position: relative;
  /* width: calc(60% - 15px); */
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.about-img-expert-wrap .about-left-img img{
  position: relative;
  width: 100%;
}
.about-img-expert-wrap .about-expert-count {
  position: relative;
  width: 40%;
  height: auto;
  padding: 15px 15px;
  padding-top: 20%;
  background-color: #fff5e6;
}
.about-img-expert-wrap .about-expert-count h4 {
  position: relative;
  width: 100%;
  color: #ff9c03;
  font-size: 40px;
  margin-bottom: 10px;
}
.about-img-expert-wrap .about-expert-count h6 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 16px;
  margin-bottom: 5px;
}
.about-img-expert-wrap p {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 12px;
  border-left: 2px solid #ff9c03;
  border-radius: 8px;
}

.about-right-wrap {
  position: relative;
  width: 100%;
}
.about-right-wrap h3 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 25px;
}
.about-right-wrap p{
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 12px;
  border-left: 2px solid #ff9c03;
  border-radius: 8px;
}
.about-right-wrap .about-right-img {
  position: relative;
  width: 60%;
  border-radius: 15px;
  overflow: hidden;
  margin-left: auto;
}

.home-about-bottom-wrapper{
  position: relative;
  width: 100%;
  padding-bottom: 50px;
}
.home-about-bottom-img{
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.home-about-bottom-content{
  position: relative;
  width: 100%;
  text-align: center;
}
.home-about-bottom-content h3{
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 20px;
}
.home-about-bottom-content h4{
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 20px;
  margin-bottom: 10px;
}
.home-about-bottom-content p{
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 15px;
  margin-bottom: 15px;
}
/*#### about section css end ####*/
/*#### services section css start ####*/
.services-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #3c3c3c;
}
.services-wrapper .common-title h4 {
  color: #fff;
}
.services-wrapper .common-title h3 {
  color: #fff;
}
.services-wrapper .common-title p {
  color: #b8b8b8;
}

.services-list {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 520px;
  overflow: hidden;
  background-color: #454545;
  padding: 10px 10px;
  border-radius: 15px;
}
.services-list .services-img {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 10px;
  /* transition: all 0.5s; */
}
.services-list .services-img img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.services-list .services-content {
  position: relative;
  width: 100%;
  background-color: #4e4e4e;
  padding: 15px 15px;
  border-radius: 15px;
  transition: all 0.5s;
}
.services-list .services-content h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}
.services-list .services-content p {
  position: relative;
  width: 100%;
  color: #b8b8b8;
  font-size: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.services-list .services-content .learn-btn {
  position: relative;
  color: #ff9c03;
  font-size: 16px;
  font-weight: 500;
}
.services-list:hover .services-img {
  height: 100%;
  transition: all 0.5s;
}
.services-list:hover .services-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(255, 156, 3, 0) 42.95%,
    #ff9c03 76.34%
  );
  z-index: 1;
}
.services-list:hover .services-img img {
  position: relative;
  width: 100%;
  height: 100%;
}
.services-list:hover .services-content {
  position: absolute;
  width: calc(100% - 20px);
  bottom: 10px;
  left: 10px;
  background-color: transparent;
  z-index: 2;
}
.services-list:hover .services-content p {
  color: #fff;
}
.services-list:hover .services-content .learn-btn {
  color: #fff;
}

/*#### services section css end ####*/
/*#### process section css start ####*/
.process-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.process-wrap .process-list {
  border-right: 1px solid #e9e6e6;
  border-bottom: 1px solid #e9e6e6;
}

.process-wrap .col-12:nth-child(2n) .process-list {
  border-right: 0px;
}

.process-wrap .col-12:last-child .process-list {
  border-bottom: 0px;
}

.process-wrap .col-12:nth-last-child(2) .process-list {
  border-bottom: 0px;
}

.process-list {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px 15px;
}
.process-list .icon {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.process-list h3 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 20px;
  margin-bottom: 10px;
}
.process-list p {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 16px;
  margin-bottom: 10px;
}

.process-right-images {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/*#### process section css end ####*/
/*#### testimonials css start ####*/
.testimonials-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-image: url(../images/team-pattern-bg.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.testimonials-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff9c03;
  mix-blend-mode: multiply;
}
.testimonials-wrapper .common-title h4 {
  color: #fff;
}
.testimonials-wrapper .common-title h3 {
  color: #fff;
}

#testimonials-slider {
  position: relative;
}
#testimonials-slider .testimonials-sld-items {
  position: relative;
  padding: 0px 10px;
}

.testimonials-wrap {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 20px 15px;
  border-radius: 15px;
}
.testimonials-wrap p {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 15px;
  margin-bottom: 15px;
}
.testimonials-wrap .testimonials-auth-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.testimonials-wrap .testimonials-auth-wrap .auth-img {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials-wrap .testimonials-auth-wrap .auth-details {
  position: relative;
  width: calc(100% - 60px);
  padding-left: 8px;
}
.testimonials-wrap .testimonials-auth-wrap .auth-details h4 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 18px;
  margin-bottom: 5px;
}
.testimonials-wrap .testimonials-auth-wrap .auth-details h5 {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 16px;
  margin-bottom: 0;
}

#testimonials-slider .slick-dots {
  position: relative;
  width: 100%;
  z-index: 9;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 10px;
}
#testimonials-slider .slick-dots li {
  position: relative;
  margin: 0px 4px;
}
#testimonials-slider .slick-dots li button {
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
#testimonials-slider .slick-dots li button:before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: transparent;
  border: 2px solid rgba(64, 84, 178, 0.33);
  display: block;
  border-radius: 5px;
}
#testimonials-slider .slick-dots li.slick-active button:before {
  width: 35px;
  height: 2px;
  background-color: #3c3c3c;
  border: 2px solid #3c3c3c;
}

/*### dots css end*/
/*#### testimonials css end ####*/
/*##### faq section css start ###*/
.faq-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.faq-left-images-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-left-images-wrap .faq-img1 {
  position: relative;
  width: calc(50% - 10px);
  border-radius: 10px;
  overflow: hidden;
}
.faq-left-images-wrap .faq-img2 {
  position: relative;
  width: calc(50% - 10px);
  border-radius: 10px;
  overflow: hidden;
}
.faq-left-images-wrap .faq-img3 {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.faq-right-wrap {
  position: relative;
  width: 100%;
}

.faq-wrap {
  position: relative;
  width: 100%;
}
.faq-wrap .accordion-item {
  position: relative;
  width: 100%;
  background-color: transparent;
  border: 0px solid #f5f5f5;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 0px;
}
.faq-wrap .accordion-item .accordion-collapse {
  border: 1px solid transparent;
  border-radius: 0px 0px 10px 10px;
  transition: all 0.5s;
}

.faq-wrap .accordion-button {
  position: relative;
  background-color: #f5f5f5;
  color: #3c3c3c;
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
  padding-right: 42px;
  border-radius: 10px 10px 0px 0px;
}

.faq-wrap .accordion-button::after {
  content: "+";
  font-family: "fontawesome";
  background-color: transparent;
  color: #ff9c03;
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.faq-wrap .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0);
  font-family: "fontawesome";
}

.faq-wrap .accordion-button:not(.collapsed) {
  background-color: transparent;
  background-color: #fff5e6;
  border: 1px solid #ff9c03;
  border-bottom: 0;
}

.faq-wrap .accordion-collapse.show {
  background-color: #fff5e6;
  border: 1px solid #ff9c03;
  border-top: 0;
}

/*##### faq section css end ###*/
/*##### business section css start ####*/
.business-wrapper {
  position: relative;
  width: 100%;
  background-image: url(../images/business-section-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.business-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8117647059);
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(252, 70, 107, 0) 100%
  );
}

.business-content-wrap {
  position: relative;
  width: 100%;
  padding: 80px 0px;
}
.business-content-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 15px;
}

/*##### business section css end ####*/
/*##### Footer css start ####*/
.footer-wrapper {
  position: relative;
  width: 100%;
  background-image: url(../images/team-pattern-bg.png);
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 20px;
}
.footer-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3c3c3c;
  mix-blend-mode: multiply;
}

.footer-inner-wrap {
  position: relative;
  width: 100%;
}
.footer-inner-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-inner-wrap .footer-logo {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.footer-menu {
  position: relative;
  width: 100%;
}
.footer-menu ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.footer-menu ul li {
  position: relative;
  width: 100%;
  padding: 5px 0px;
}
.footer-menu ul li a {
  position: relative;
  color: #a6a6a6;
  font-size: 15px;
  font-weight: 300;
}
.footer-menu ul li a:hover{
  color: #ff9c03;
}
.footer-menu.column2 li {
  position: relative;
  width: 50%;
}

/**/
.footer-inner-wrap .contact-det-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 20px;
}

.footer-inner-wrap .contact-det-list .icon {
  position: relative;
  color: #a6a6a6;
  background-color: transparent;
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-inner-wrap .contact-det-list .content {
  position: relative;
  width: calc(100% - 35px);
  padding-left: 5px;
}

.footer-inner-wrap .contact-det-list .content h4 {
  position: relative;
  width: 100%;
  color: #a6a6a6;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-inner-wrap .contact-det-list .content p {
  position: relative;
  font-size: 15px;
  word-break: break-all;
  margin-bottom: 0px;
  color: #a6a6a6;
}

.footer-inner-wrap .contact-det-list .content p a {
  color: #a6a6a6;
}

/****/
/**/
.footer-social-icon {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.footer-social-icon ul {
  position: relative;
  display: flex;
  /* flex-wrap: wrap; */
  margin: 0px;
}

.footer-social-icon ul li {
  position: relative;
  padding: 0px 10px;
}

.footer-social-icon ul li:first-child {
  padding-left: 0;
}

.footer-social-icon ul li a {
  position: relative;
  background-color: #ff9c03;
  color: #3c3c3c;
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s;
}
.footer-social-icon ul li a:hover {
  color: #fff;
}

/**/
.footer-line {
  position: relative;
  width: 100%;
}
.footer-line hr {
  color: #e2e2e2;
  opacity: 0.3;
}

.footer-copyright {
  position: relative;
  width: 100%;
}
.footer-copyright p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px;
  margin-bottom: 0;
}

/*##### Footer css end ####*/
/*#### inner-banner css start #####*/
.inner-banner-wrapper {
  position: relative;
  width: 100%;
  padding: 0px 0px;
  z-index: 1;
}
.inner-banner-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      357.11deg,
      rgba(0, 0, 0, 0) 61.45%,
      rgba(0, 0, 0, 0.74) 94.71%
    ),
    linear-gradient(
      270.51deg,
      rgba(0, 0, 0, 0) 46.41%,
      rgba(0, 0, 0, 0.4) 109.72%
    );
  z-index: 2;
}

.inner-banner-wrapper img {
  position: relative;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  z-index: 1;
}  

.inner-banner-wrapper .inner-banner-content {
  position: absolute;
  bottom: 10%;
  width: 100%;
  left: 0;
  z-index: 2;
}

.inner-banner-wrapper .inner-banner-content h1 {
  position: relative;
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.main-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.cms-content {
  position: relative;
  width: 100%;
}

.cms-content h2 {
  position: relative;
  width: 100%;
  color: #ff9c03;
  font-size: 35px;
  margin-bottom: 25px;
}

.cms-content h3 {
  position: relative;
  width: 100%;
  color: #ff9c03;
  font-size: 30px;
  margin-bottom: 15px;
}

.cms-content h4 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h5 {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content p {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 15px;
  margin-bottom: 10px;
}

.cms-content ul {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.cms-content ul li {
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
  color: #5d5d5d;
  margin-bottom: 8px;
}

.cms-content ul li:before {
  content: "\f111";
  font-family: fontawesome;
  font-size: 10px;
  position: absolute;
  left: 0px;
  top: 4px;
  color: #ff9c03;
}

/*#### inner-banner css end #####*/
/*##### About us page css start ####*/
.about-process-wrapper {
  background-color: #fff5e6;
}
.about-process-wrapper .process-left-content-wrap{
  position: relative;
  width: 100%;
}
.about-process-wrapper .process-left-content-wrap ul{
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
.about-process-wrapper .process-left-content-wrap ul li{
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
  color: #5d5d5d;
  margin-bottom: 8px;
}
.about-process-wrapper .process-left-content-wrap ul li:before {
  content: "\f111";
  font-family: fontawesome;
  font-size: 10px;
  position: absolute;
  left: 0px;
  top: 4px;
  color: #ff9c03;
}
/*##### About us page css end ####*/
/*##### Services pages css start #####*/
.services-details-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.services-left-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #454545;
  padding: 10px 10px;
  border-radius: 15px;
}
.services-left-img img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

/*##### Services pages css end #####*/
/*##### personal bios page css start #####*/
.personal-bios-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.personal-bios-left-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.personal-bios-left-img img {
  position: relative;
  width: 100%;
}

.personal-bios-right-content {
  position: relative;
  width: 100%;
}

/*##### personal bios page css end #####*/
/*###### testimonials page css start ######*/
.testimonials-page-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}
.testimonials-page-wrapper .testimonials-wrap {
  background-color: #fff5e6;
  height: 100%;
}

/*###### testimonials page css end ######*/
/*###### FAQ Page css start ####*/
.faq-page-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

/*###### FAQ Page css end ####*/
/*###### Gallery page css start ####*/
.gallery-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.gallery-list {
  position: relative;
  width: 100%;
  padding: 10px 10px;
  background-color: #3c3c3c;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-list .gallery-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-list .gallery-img img {
  position: relative;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.gallery-list .gallery-img .hover {
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.gallery-list:hover .gallery-img .hover {
  opacity: 1;
  visibility: visible;
  top: 0;
}

/*###### Gallery page css end ####*/
/*###### Contact us css start #####*/
.contact-us-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.contact-pg-info-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.contact-pg-info-list .icon {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #ff9c03;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.contact-pg-info-list .content {
  position: relative;
  width: calc(100% - 40px);
  padding-left: 10px;
}
.contact-pg-info-list .content p {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  word-break: break-all;
}
.contact-pg-info-list .content p a {
  color: #3c3c3c;
}

.contact-form-wrap {
  position: relative;
  width: 100%;
}
.contact-form-wrap .form-group {
  position: relative;
  width: 100%;
}
.contact-form-wrap .form-group .form-control {
  position: relative;
  width: 100%;
  padding: 12px 10px;
  background-color: #fff5e6;
}
.contact-form-wrap .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ff9c03;
}
.contact-form-wrap .form-group .wpcf7-spinner {
  position: absolute;
  z-index: 1;
  top: 10px;
}
.contact-form-wrap .wpcf7-response-output {
	margin-left: 0 !important;
	width: 100%;
	margin-top: 5px !important;
  font-size: 15px;
}

.map-wrap {
  position: relative;
  width: 100%;
}
.map-wrap iframe {
  position: relative;
  width: 100%;
  height: 400px;
  border: 3px solid #ff9c03;
}

/*###### Contact us css end #####*/
/*###### Blog page css start ####*/
.blog-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.blog-list {
  position: relative;
  width: 100%;
  background-color: #fff5e6;
  box-shadow: 1px 2px 15px rgba(137, 137, 137, 0.5);
  border-radius: 15px;
  overflow: hidden;
}
.blog-list .blog-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.blog-list .blog-img img {
  position: relative;
  width: 100%;
  transition: all 0.5s;
}
.blog-list .blog-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 0px;
  background-color: #fff5e6;
  padding: 15px 15px;
}
.blog-list .blog-content h6 {
  position: relative;
  width: 100%;
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.blog-list .blog-content h3 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-list .blog-content h3 a {
  color: #3c3c3c;
}
.blog-list .blog-content p {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 10px;
}
.blog-list .blog-content .common-btn1 {
  color: #3c3c3c;
  padding: 8px 20px;
  font-weight: 500;
}
.blog-list .blog-content .common-btn1:hover {
  border-color: #ff9c03;
  color: #fff;
}
.blog-list:hover .blog-img img {
  transform: scale(1.1);
}

/*###### Blog page css end ####*/
/*###### Blog details page css start ####*/
.blog-details-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.blog-details-content {
  position: relative;
  width: 100%;
}
.blog-details-content h1 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.blog-details-content .entry-meta {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 15px;
  margin-bottom: 10px;
}
.blog-details-content .entry-meta a {
  color: #ff9c03;
}
.blog-details-content .blog-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}
.blog-details-content .blog-img img {
  position: relative;
  width: 100%;
  transition: all 0.5s;
}
.blog-details-content .blog-img .blog-date {
  position: absolute;
  bottom: 0px;
  right: 0;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}
.blog-details-content .blog-img .blog-date p {
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 2px;
}
.blog-details-content .blog-img:hover img {
  transform: scale(1.1);
}
.blog-details-content h3 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 26px;
  margin-bottom: 15px;
}
.blog-details-content h4 {
  position: relative;
  width: 100%;
  color: #ff9c03;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.blog-details-content h5 {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-details-content p {
  position: relative;
  width: 100%;
  color: #5d5d5d;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
}
.blog-details-content ul {
  position: relative;
  width: 100%;
}
.blog-details-content ul li {
  position: relative;
  width: 100%;
  padding: 4px 0px;
  color: #5d5d5d;
  font-size: 16px;
  padding-left: 20px;
}
.blog-details-content ul li:before {
  content: "\f111";
  font-family: fontawesome;
  font-size: 10px;
  position: absolute;
  left: 0px;
  top: 9px;
  color: #ff9c03;
}

/*###### Blog details page css end ####*/
/*##### cyclone-rated-doors page css start ####*/
.cyclone-rated-doors-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}
.cyclone-rated-doors-wrapper .img-box {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}

.cyclone-rated-project-list {
  position: relative;
  width: 100%;
  background-color: #fff5e6;
  padding: 15px;
  box-shadow: 0px 3px 10px rgba(116, 116, 116, 0.45);
}
.cyclone-rated-project-list .cyclone-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.cyclone-rated-project-list h4 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
}

.cyclone-img-box{
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cyclone-img-box img{
  position: relative;
  width: 100%;
}
/*##### cyclone-rated-doors page css end ####*/ /*# sourceMappingURL=style.css.map */

/* 404 Page css */

.common-section404 {
  padding: 40px 0px;
  position: relative;
  overflow: hidden;
}
.section-404 {
  text-align: center;
}
.section-404 .error {
  font-size: 150px;
  color: #ff9c03;
  text-shadow: 1px 1px 1px #ff9c03, 2px 2px 1px #ff9c03, 3px 3px 1px #ff9c03,
    4px 4px 1px #ff9c03, 5px 5px 1px #ff9c03, 6px 6px 1px #ff9c03,
    7px 7px 1px #ff9c03, 8px 8px 1px #ff9c03, 25px 25px 8px rgba(0, 0, 0, 0.1);
}
.section-404 .page {
  margin: 2rem 0;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}


/* pagination css */
.pagination-wrap {
  position: relative;
  width: 100%;
  padding-top: 15px;
}
.pagination-wrap .pagination {
  justify-content: center;
  margin-bottom: 0;
}
.pagination-wrap .pagination li {
  position: relative;
  padding: 0px 5px;
}
.pagination-wrap .pagination li .page-numbers {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #d3d3d3;
  border-radius: 3px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.pagination-wrap .pagination li .page-numbers.current {
  background-color: #ff9c03;
  color: #fff;
}
/* pagination css end*/

.testimonials-wrap .testimonials-auth-wrap .auth-img {
    display: none;
}
.about-left-imghm {
	width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.about-left-imghm img{
  width: 100%;
  height: 490px;
  object-fit: cover;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: #fff;
	background-color: #fc9d22;
	border-color: #fc9d22;
}
.nav-tabs {
	border-bottom:1px solid #fc9d22;
}

.nav-tabs .nav-link {
  color:#000;
	border-bottom:1px solid #fc9d22;
}

/* .page-template-cyclone-rated-doors .inner-banner-wrapper img {
	-o-object-fit: contain;
	object-fit: contain;
} */
 

.services-left-img img {
    max-height: 400px;
    object-fit: contain;
}


.single-services .services-left-img img {

	max-height: 538px;
	object-fit: cover;
}