:root{
	--primary-color			: #F29215;
	--secondery-color		: #F8F8F8;
	--text-color			: #000000;
	--accent-color			: #F29215;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: 'SFProDisplayMedium';
}
* {
	box-sizing: border-box;
  }
 
  body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #fff;
    position: relative;
    max-width: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #767676;
}
.container{
    width: 100%;
    max-width: 1680px;
}
.container-fluid {
    width: 100%;
    padding: 0 120px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
section {
  padding: 120px 0;
}
h1{
    font-size: 96px;
    line-height: 86px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    font-family: "Manrope", sans-serif;
}
h2{
    font-weight: 600;
    font-size: 64px;
    line-height:60px;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
    font-family: "Manrope", sans-serif;
}
h3{
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 0;
    font-family: "Manrope", sans-serif;
}
h4{
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: "Manrope", sans-serif;
}
h5{
    font-size:19px;
    line-height: 26px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: "Manrope", sans-serif;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: "Manrope", sans-serif;
}
p{
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #919191;
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: "Manrope", sans-serif;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* btns */
.common-btn,
.appointment-btn {
 text-transform: capitalize;
  position: relative;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  height: 68px;
  width:194px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:20px 24px;
  background: linear-gradient(157.37deg, #FEAA00 14.25%, #F8D900 80.85%);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #000000;
}
.common-btn:hover,
.common-btn:focus,
.appointment-btn:hover,
.appointment-btn:focus{
	color: #000;
	transition: all 0.3s linear;
	background: linear-gradient(157.37deg, #F8D900 14.25%, #FEAA00 80.85%);
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 50px;
  z-index: 100;
  width: 100%;
  background:transparent;
}
.outer-menu {
    padding: 0;
    height: 98px;
    max-height: 98px;    
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(40px);
    border-radius: 64px;
}
.outer-menu ul li{
    margin:0 12px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 22px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:var(--white-color);
    padding:10px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color:var(--accent-color);
}
.contact-phone,
.contact-message {
  padding: 10px;
  margin-right: 3px;
}
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  max-height: 70px;
  width: auto;
  height: 50px;
  display: none;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 80px !important;
  max-height: 80px !important;
  background-color:transparent!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
}
.is-sticky .common-btn {
  background-color: #fff;
  color: #000;
}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;
}
.navbar-brand  {
  /* max-width: 230px; */
  padding: 0;
}
.navbar-brand img {
  height: 80px;
  width: auto;
}
.menu-logo {
  display: none;
}
@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }
/* header */

/* Hero */

.hero-section {
  position: relative;
  padding: 0;
}
.hero-image {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 259px 0 120px;
}
.hero-section h1 {
  margin:0 0 27px;
  color: var(--white-color);
  font-weight: 400;
  max-width: 708px;
  text-transform: none;
}
.hero-section p {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 40px;
  color: var(--white-color);
  letter-spacing: 0;
  max-width: 672px;
}
.hero-content {
  max-width: 780px;
  margin: 0;
}
.hero-content .common-btn {
  cursor: pointer;
}
.hero-content .btn-wrap {
  gap: 8px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.hero-content .project-btn {
  color: #fff;
  background: transparent;
  text-decoration: underline;
  text-transform:capitalize;
  padding: 24px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}

/* why choose */

.why-choose-section {
  position: relative;
  padding: 160px 0;
}

/* about  */

.about-section {
  position: relative;
  background: #F2F2F2;
}
.about-section .common-btn {
  margin: 0 auto;
  display: table;
}
.about-image {
  width:calc(35.8% - 60px);
  background: #91258E;
  box-shadow: 0px 4px 54px 12px rgba(145, 37, 142, 0.35);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 356px;
}
.about-content {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 120px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.about-text h2 {
   color: #000000;
    text-transform: capitalize;
    margin: 0;
}
.about-text p {
  margin:0;
  text-align: justify;
}
.about-logo {
  align-items: center;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width:calc(64.2% - 60px);
}


/* services-section */


.services-section .common-btn {
  display: table;
  margin: 0 auto;
}
.section-title {
  margin-bottom: 56px;
  text-align: center;
}
.section-title h2 {
  margin-bottom: 16px;  
  position: relative;
}
.section-title h3 {
  text-transform: uppercase;
  margin-bottom: 0;
}
.why-choose-section h2 {
  padding-bottom: 32px;
}
.why-choose-section .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0) rotate(180deg);
  width: 174px;
  height: 16px;
  background: linear-gradient(134.9deg, #FEAA00 26.54%, #F8D900 73.89%);
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.section-title p {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 12px;
  color: #2A2A2A;
  font-weight: 500;
}
.why-choose-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0px;
  gap: 24px;
}
.why-choose-item {
  width: calc(25% - 18px);
  padding: 16px 16px 24px;
  background: #FAFAFA;
  border-radius: 32px;
  padding: 0px 0px 32px;
}
.why-choose-text {
  padding: 0 15px;
  text-align: center;
}
.why-choose-item p {
    margin: 0 auto;
    font-size: 20px;
    color: #646464;
    font-weight: 500;
    max-width: 280px;
}
.why-choose-item img {
  margin: 0 auto 24px;
}
.why-choose-text h3 {
  margin-bottom: 16px;
  font-weight: 600;
}

/* services */

.services-section {
  position: relative;
  background: #FAFAFA;
}
.services-section .services-title {
  text-align: left;
}
.services-title h3 {
  text-transform: uppercase;
  margin-bottom: 0;
}
.services-title h2 {
  line-height: 72px;
  max-width: 740px;
  letter-spacing: -0.02em;
  color: #0D0D0D;
  margin: 0 0 10px;
}
.services-title p {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  max-width: 830px;
  color: #2A2A2A;
  margin: 0;
}
.service-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0px;
  gap: 24px;
  row-gap: 32px;
  flex-wrap: wrap;
  align-self: stretch;
}
.service-item {
  width: calc(25% - 18px);
  padding:0;
  text-align: center;
}
.services-text {
  padding: 0 15px;
  text-align: center;
}
.service-item img {
  margin: 0 auto 16px;
  border-radius: 26px;
}
.services-text h4 {
  margin-bottom: 0;
  font-weight: 600;
}
.border-btn {
  padding: 16px 55px 16px 31px;
  border: 2px solid #000000;
  border-radius: 32px;
  width: 272px;
  height: 52px;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  background: url(../images/arrow-up.svg) no-repeat center right 24px;
  background-color: transparent;
  margin: -56px 0 56px auto;
  display: block;
}

/* product */

.product-section {
  position: relative;
}
.product-wrap {
  max-width: 1048px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin: 0 auto;
}
.product-item {
  background: #F6F6F6;
  border-radius: 48px;
  padding: 16px;
}
.product-image img {
  border-radius: 32px;
}
.product-text h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 16px;
  text-align: left;
}
.product-text p {
  font-weight: 600;
  text-align: left;
  margin-bottom: 24px;
}
.product-item .common-btn {
  width: 100%;
}
/* projects */

.project-section {
  position: relative;
}

.project-section .section-title h2 {
  line-height: 69px;
}
.project-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px;
  gap: 56px;
  flex-wrap: wrap;
}
.project-image img {
  border-radius: 32px;
}
.project-accordion .accordion-item {
  padding: 32px 24px;
  background: #FFFFFF;
  border-bottom: 2px solid #C7C7C7;
  border-radius: 0;
  margin-bottom: 0;
}
.project-accordion .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 32px;
  line-height: 24px;
  color: #0D0D0D;
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.project-accordion .accordion-header .accordion-button span {
 font-weight: 600;
 font-size: 24px;
 line-height: 33px;
 width: 109px;
 color: #0D0D0D;
}
.project-accordion .accordion-button:not(.collapsed) {
  padding-bottom: 0;
}
.project-accordion .accordion-item .accordion-button::after,
.project-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 18px;
  font-weight: 900;
  color: #000;
  text-align: right;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.project-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.project-accordion .accordion-body {
  padding-right: 35px;
  padding-left: 109px;
  padding-top: 16px;
}
.project-accordion .accordion-body p {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #0D0D0D;
}
.project-accordion,
.project-image {
  width: calc(50% - 28px);
}
.read-more {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  background: url(../images/arrow-up.svg) no-repeat center right 0px;
  background-size: 20px auto;
  padding-right: 20px;
  text-decoration: underline;
}

/*  testimonials */
.testimonials {
  background:#FAFAFA;
  background-size: cover;
  position: relative;
}
.testimonials p {
  max-width: 830px;  
}
.testimonials .section-title {
  margin-bottom: 52px;
  text-align: left;
}

/* Slick slide wrapper */
.testimonial-slider .slick-slide {
  display: flex !important;
  padding: 0 16px;
  box-sizing: border-box;
}
.testimonial-slider .slick-list {
  margin: 0 -12px; 
}
.testimonial-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-content {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(20px);
  padding: 40px 48px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  position: relative;
}
.testimonial-content::before {
  width: 40px;
  height: 40px;
  background:url(../images/google-icon.svg) no-repeat center;
  padding: 0;
  content: "";
  right: 48px;
  top: 40px;
  position: absolute;
}


/* Text */
.testimonial-text p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0 !important;
  color: #202020;
}
.testimonial-author,
.testimonial-location {
  text-align: left;
  font-size: 32px;
  line-height: 32px;
  color: #202020;
  font-weight: 600;  
}
.testimonial-location p {
  font-size: 18px;
  line-height: 18px;
  color: #202020;
  font-weight: 400;
  margin: 0 !important;
}
.testimonial-top-content {
  position: relative;
  padding:0 0 0 0;
}
.ratings {
  margin-top: 10px;
}
.ratings li {
  display: inline-block;
  vertical-align: top;
  margin:0 7px 0 0;
}
.slick-slider {
  position: relative;
}
.slick-prev, .slick-next {
  position: absolute !important;
  top: 10px;
  z-index: 10;
}
.slick-slider {
  position: relative;
}
.testimonial-slider .slick-prev, .testimonial-slider .slick-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(108, 108, 108, 0.3);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 3.58594px 35.8594px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(9.41309px);
  width: 72px;
  height: 72px;
  border-radius: 72px;
  padding: 8px;
  text-align: center;
  font-size: 0;
  display: none !important;
}
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
  left: 0;
  top: 0;
  background-image: url(../images/arrow-right-slider.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-slider .slick-prev {
  right: 52px;
  left: auto;
  display: none !important;
}
.testimonial-slider .slick-next {
  right:-36px;
}
.testimonial-text {
  margin-top: 32px;
}
.testimonial-slider button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EAEAEA;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 2.5px;
  font-size: 0;
}
.testimonial-slider .slick-active button {
  background: #F6BB06;
}
.testimonial-slider .slick-dots {
  margin-top: 24px;
  text-align: center;
}
.testimonial-slider .slick-dots li{
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

/* cta  */

.cta-section {
  position: relative;
}
.cta-wrap {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 40px;
  gap: 32px;
  flex-wrap: wrap;
  display: flex;
}
.cta-content {
  max-width: 575px;
  margin: 0;
}
.cta-content h2{
font-weight: 700;
font-size: 48px;
line-height: 56px;
color: #fff;
}
.cta-content p {
color: #FFFFFF;
font-weight: 500;;
margin: 0 0 26px;
}
.cta-content .common-btn {
  background:transparent;
  border: 2px solid #FFFFFF;
  margin-right: 10px;
  color: #fff;  
  padding: 16px 24px;
  border-radius: 8px;
  height: 44px;
  font-size: 16px;
  width: auto;
}
.cta-content .common-btn.white-btn {
  background: #ffffff;
  color: #000;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  border: none;
}
.cta-img {
  width: calc(58% - 28px);
} 
.cta-img img {
  border-radius:40px;  
}

/* Faq */

.our-faqs {
  position: relative;
}
.our-faqs .section-title p {
  max-width: 1080px;
  margin: 0 auto;
}
.faq-accordion .accordion-item {
  padding: 32px 24px;
  background: rgba(205, 205, 205, 0.16);
  border-radius: 24px;
  border: none;
  margin-bottom: 16px;
}
.faq-accordion .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #0D0D0D;
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.faq-accordion .accordion-header .accordion-button span {
  margin-right: 7px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  padding-bottom: 15px;
}
.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 18px;
  font-weight: 900;
  color: #000;
  text-align: right;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq-accordion .accordion-body {
  padding-right: 35px;
  padding-top: 16px;
}
.faq-accordion .accordion-body p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #AAAAAA;
}

/* contact */

  .contact-section {
     position: relative;
     padding: 120px 0;
  }

  .contact-info {
    margin-top:56px;
    max-width: 488px;
  }
  .contact-img{
    background: #E8E8E8;
    border-radius: 32px;
    padding: 0px 32px;
    height: 100%;
    margin: 0;
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
    .contact-info h4 {
      text-transform: capitalize;
      font-size: 24px;
      line-height: 28px;
      margin-bottom: 15px;
    }
     .contact-info p {
      font-size: 22px;
      line-height: 30px;
      margin-bottom: 16px;
     }
   .contact-content {
      background: rgba(13, 13, 13, 0.001);
      border: 2px solid rgba(189, 189, 189, 0.4);
      border-radius: 32px;
      padding: 56px 40px;
  }
  h2.contact-title {
      margin-bottom: 40px;
      font-size: 48px;
      line-height: 60px;
      text-transform: capitalize;
      color: #942790;
  }
  .contact-page-section .contact-title {
    max-width: 575px;
  }
  .contact-description {
      color: #373737;
  }
  .contact-form,
  .contact-content form {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  .form-row {
      display: flex;
      gap: 32px;
  }
  .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
  }
  .form-label {
      font-size: 16px;
      line-height: 16px;
      color: #942790;
      opacity: 0.5;
      margin-bottom: 8px;
  }
  .required {
      color: #ff0000;
  }
  .form-input,
  .contact-content input[type="text"],
  .contact-content input[type="email"],
  .contact-content input[type="tel"],
  .contact-content select,
  .contact-content textarea {
      background: rgba(225, 225, 225, 0.73) !important;
      border: 1px solid #A6A6A6 !important;
      border-radius: 8px !important;
      padding: 24px 16px !important;
      font-size: 20px !important;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 26px;
      color: rgba(130, 130, 130, 0.5);
      outline: none;
      width: 100%;
  }
  .contact-content .form-group p {
    margin: 0 !important;
  }
  .form-input:focus {
      outline:none;
      color: #000000;
  }
  .phone-input {
      display: flex;
      align-items: center;
      background-color: #f7f7f7;
      border-radius: 8px;
      overflow: hidden;
  }
  .country-picker {
      display: flex;
      align-items: center;
      gap: 8px;
      padding:17px 16px;
      cursor: pointer;
      position: relative;
  }
  .country-picker::after {
    position: absolute;
    top: 50%;
    right:0;
    content: "";
    width: 1px;
    height: 32px;
    background-color: #7E7E7E;
    transform: translate(0, -50%);
  }
  .country-flag {
      width: 24px;
      height: 24px;
  }
  .dropdown-arrow {
      width: 12px;
      height: 12px;
  }
  .phone-number {
      flex: 1;
      border: none;
      background: transparent;
      padding:17px 16px;
      font-size: 20px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 28px;
      color: rgba(130, 130, 130, 0.5);
      width: 100%;
  }
  .phone-number:focus {
      outline: none;
      color: #000000;
  }
  .dropdown-input {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: url(../images/arrow-down.svg) no-repeat right 15px center #f7f7f7;
      /* background-color: #f7f7f7; */
      border: none;
      border-radius: 8px;
      padding:17px 16px;
      font-size: 20px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 28px;
      color: rgba(130, 130, 130, 0.5);
      cursor: pointer;
      appearance: none;
  }
  .dropdown-input:focus {
      outline:none;
  }
  .contact-content .textarea {
      min-height: 134px;
      resize: vertical;
  }
  .contact-content .common-btn {
      background-color: #F29215;
      color: #ffffff;
      padding: 20px 40px;
      border-radius: 16px;
      border: none;
      font-size: 24px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      text-transform: capitalize;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background-color 0.3s ease;
      margin-top: 28px;
      width: 100%;
      height: 72px;
  }
  .submit-btn:hover {
      background-color: #333333;
  }
  .submit-btn img {
      width: 24px;
      height: 24px;
  }
    .contact-content form p {
      margin: 0 !important;
    }
    .contact-phone, .contact-address, .contact-email {
      padding:15px 10px 10px 64px;
      position: relative;
    }
    .contact-phone::before, .contact-email::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 56px;
      height: 56px;
      border-radius: 56px;
      padding: 10px;
      background: url(../images/phone-icon.svg) no-repeat center #FFFFFF;
      text-align: center;
    }
    .contact-email::before {
      background: url(../images/mail-icon.svg) no-repeat center #FFFFFF;
    }
    .contact-img img {
      margin: 0 auto;
    }
.map {
  padding: 0 !important;
}
   /* Footer */
  .footer {
      background: linear-gradient(90deg, #00316B 0%, #015BA3 73.8%);
      color: #ffffff;
      padding: 80px 0 166px;
      padding-bottom: 20px !important;
      position: relative;
  }
    .footer-logo {
       position: absolute;
       right: 0;
       bottom: 0;
       display: none;       
    }
  .footer-logo p {
    font-size: 22px;
    line-height:30px;
    color: #FFFFFF;
    max-width: 294px;
    font-weight: 500;
  }
  .footer-content {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
  }
  .footer-section {
      display: flex;
      flex-direction: column;
  }
  .footer-address {
    max-width: 290px;
  }
  .footer-title {
      font-size: 24px;
      line-height: 28px;
      font-weight: bold;
      text-transform: capitalize;
      color: #fff;
      margin: 0 0 15px;
       text-align: left;
  }
  .footer-section li {
    margin: 0;
    margin-bottom: 7px;
  }
  .footer-section li:last-child {
    margin-bottom: 0;
  }
  .footer-link,
    .footer-section li a {
      font-size: 22px;
      font-weight: 500;
      line-height: 26px;
      color:#fff;
      text-decoration: none;
      margin-bottom: 7px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5;
      text-transform: capitalize;
  }
  .social-icon li {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px 0 0;
  }
  footer .social-icon li a {
    background:transparent;
    color: #fff !important;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
   }
    .footer-link a {
      color:var(--primary-color);
    }
  .footer-link:hover,
  .footer-section li a:hover {
      color:var(--primary-color);
  }  
  .footer-copyright {
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      color:#fff;
      border-top: 1px solid #fff;
      padding: 16px 0;
      opacity: 0.7;
  }
  .designed {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#fff;
     margin: 0;
     text-align: right;
  }
  .designed a  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }
  .footer-link {
    line-height: 30px;
  }
  .footer-link a {
    color: #fff;
  }

  /* inner banner */
   .inner-hero-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    border-radius: 0 0 24px 24px;
    margin: 0 19px;
  }
  .inner-hero-content h1 {
   font-size: 64px;
    line-height: 71px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 32px;
  }
   .inner-hero-content h1::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 174px;
    height: 16px;
    border-radius: 16px;
    background-color: #FFFFFF;
   }
  .inner-hero-section {
    padding:60px 0 0;
  }

  /* About page */

  .about-page-section .about-content {
    margin-bottom: 0;
  }
  .founder-section {
    position: relative;
    background: #F2F2F2;
    padding: 0;
  }
  .founder-section h2 {
    text-align: right;
    max-width: 394px;
    margin:0 0 0 auto;    
  }
  .founder-section p {
    color: #919191;
    background:url(../images/founder-quote.svg) no-repeat left top;
    padding-top: 72px;
    padding-left: 72px;
    margin-bottom: 20px;
  }
  .founder-section  h4 {
    font-size: 24px;
    line-height: 32px;
    color: #737070;
    text-align: right;
    margin: 0;
  }
  .vission-mision {
    position: relative;
    background: #F2F2F2;
    padding:80px 0;
  }
  .vission-mision-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    flex-wrap: wrap;
  }
  .vission-mision-item {
    padding: 16px;
    background: #FFFFFF;
    border-radius: 32px;
    width: calc(50% - 16px);
  }
  .vission-icon {
    width: 128px;
    height: 128px;
    background: #91258E;
    border-radius: 24px;
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
  }
    .vission-mision-item h3{
      color: #91258E;
      font-family: 'SFProDisplayMedium';
      margin-bottom: 7px;
      text-transform: capitalize;
    }
     .vission-mision-item p {
      color: #919191;
      margin: 0;
     }

  /* Service section */

.service-page-section,
.testimonials-page-section {
  position: relative;
  padding: 96px 0;
}
.service-page-section .section-title {
  text-align: left;
}
.service-page-section h2 {
  font-size: 48px;
  line-height: 32px;
  text-transform: capitalize;
}
.service-page-section p{
  color: #646464;
}
.service-page-section .service-wrap {
  justify-content: start;
  align-items: stretch;
  margin: 0;
}
.service-page-section .service-item {
  width: calc(33.3% - 16px);
  background: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 24px;
  padding: 0;
}
.service-page-section .service-item .services-image img {
  border-radius: 24px 24px 0 0;
  width: 100%;
  height: auto;
}
.service-page-section .service-item .services-text {
  padding: 12px 24px 24px;
}
.service-page-section .service-item .services-text h4 {
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.service-page-section .service-item .services-text p {
  font-size: 16px;
  line-height: 16px;
  color: #7E7E7E;
  margin-bottom: 12px;
}
.service-page-section .service-item .services-text .common-btn {
  height: 48px;
  font-size: 16px;
  color: #fff;
}
.service-cat-education .cta-wrap {
  background: linear-gradient(90deg, #2800B7 0%, #752582 100%);
}
.service-cat-education .cta-wrap h2 {
  color: #C4E8FF;
}
/* Contact page */

.contact-page-section {
  position: relative;
  padding: 64px 0;
}
.contact-info h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 28px;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.contact-info p {
  color: #383838;
  line-height: auto;
  opacity: 0.5;
  margin-bottom: 13px;
}
.contact-info p a {
  color: #383838;
}
.social-icon ul li {
  margin: 0;
  margin-right: 4px;
  display: inline-block;
  vertical-align: top;
}
.social-icon ul li a {
  width: 44px;
  height: 44px;
  background: #444444;
  border-radius: 44px;
  font-size: 20px;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 41px;
}
.social-icon {
  margin-top: 20px;
}
.social-icon p {
  margin-bottom: 15px;
}
.social-icon ul li a:hover {
   background: #646464;
   color: #fff;
}
.contact-info p {
  display: flex;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
.contact-info p span:first-child {
  width: 17%;
}
.contact-info p span:last-child {
  width: 83%;
  padding-left: 10px;
}
.map {
  padding-bottom: 120px;
}



.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
  .jobPopup .modal-dialog .modal-content .modal-body form select {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
  .jobPopup .modal-dialog .modal-content .modal-body form p {
    margin-bottom: 10px;
  }
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
  .jobPopup .modal-dialog .modal-content .modal-body form select::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 45px;
		font-size: 15px;
		width: 100%;
    text-decoration: none;
    background-color: #000 !important;
    color: var(--white-color);
    border-radius: 8px !important;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color: var(--primary-color);
		color: var(--white-color);
	}
  .wpcf7-spinner {
    display: none;
  }
  /* media query */
  
  @media only screen and (max-width: 1800px){	
    .container-fluid {
      padding: 0 100px;
    }
    .service-hero .inner-hero-img {
        padding: 250px 60px;
     }
     .service-hero h1 {
        font-size: 110px;
        line-height: 100px;
      }
      .stat-label {
        font-size: 16px;
        width: 91%;
      }
     
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 80px;
    }
    .hero-image {
      padding: 240px 0 100px;
    }
    h1 {
      font-size: 90px;
      line-height:80px;
    }
    h3 {
      font-size: 28px;
      line-height: 30px;
    }
    h4 {
      font-size: 22px;
      line-height: 22px;
    }
    .hero-section h1 {
      max-width: 660px;
    }
    .hero-section p {
      font-size: 30px;
      line-height: 38px;
    }
    section {
      padding: 100px 0;
    }
    .why-choose-section {
      padding: 120px 0;
    }
   .why-choose-item img {
    height: 300px;
    width: auto;
   }
   .testimonial-content {
    padding: 40px;
   }
   .testimonial-text p {
      font-size: 18px;
      line-height: 28px;
   }
  }
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }
    .hero-image {
      padding: 200px 0 80px;
    }
    h2 {
      font-size: 60px;
      line-height: 56px;
    }
    p {
      font-size: 22px;
      line-height: 30px;
    }   
     h1 {
      font-size: 84px;
      line-height: 84px;
    }
    .hero-section h1 {
      max-width: 620px;
    }
     .hero-section p {
      font-size: 26px;
      line-height: 34px;
    }
    .hero-content {
      max-width:640px;
    }      
    section,
    .why-choose-section {
      padding: 90px 0;
    }   
     
    .footer {
      padding: 70px 0 150px;
    }
    .footer h3 {
      font-size: 38px;
      line-height: 38px;
      margin-bottom: 50px;
    }
    .footer-title {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-link,
      .footer-section li a {
      font-size: 20px;
    }
    .footer-section li {
      margin-bottom: 5px;
    }
    .testimonial-author, .testimonial-location {
      font-size: 30px;
      line-height: 30px;
    }
    .services-title h2 {
      line-height: 66px;
      max-width: 690px;
    }
    .services-title p {
      font-size: 30px;
      line-height: 38px;
      max-width: 752px;
    }
    .section-title p {
      font-size: 30px;
      line-height: 38px;
    }
    .testimonial-content {
      padding: 30px 30px;
    }
    .cta-wrap {
      padding: 100px 40px;
    }
    .why-choose-item img {
      height: 290px;
      width: auto;
    }
  }
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    }     
    .hero-image {
      padding: 180px 0 70px;
    }     
    .why-choose-item img {
      height: 250px;
      width: auto;
    }
    h3 {
      font-size: 26px;
      line-height: 28px;
    }
    .project-accordion .accordion-header .accordion-button span {
      width: 90px;
    }
    .project-accordion .accordion-body {
      padding-left: 90px;
    }
    .project-accordion .accordion-header .accordion-button {
      font-size: 28px;
    }
  }
  @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    }
    .outer-menu {
      padding: 10px 20px;
    }
    .outer-menu ul li a {
      font-size: 18px;
      line-height: 18px;
    }
    .hero-image {
      padding: 160px 0 60px;
    }
    h2 {
      font-size: 54px;
      line-height: 50px;
    }
    p {
      font-size: 20px;
      line-height: 28px;
    }
    h1 {
      font-size: 80px;
      line-height: 80px;
      max-width: 1012px;
    }
      .hero-section h1 {
      max-width: 580px;
      }
     .hero-section p {
      font-size: 24px;
      line-height: 30px;
     }
      .hero-content {
        max-width: 600px;
      }
    .gallery h3 {
      font-size: 20px;
    }
    section,
    .why-choose-section {
      padding: 80px 0;
    }
   .common-btn {
    height: 60px;
   }
   .navbar-brand img {
  height: 70px;
  width: auto;
}
  .section-title p,
  .services-title p {
    font-size: 28px;
    line-height: 36px;
  }
  .section-title {
  margin-bottom: 50px; 
  }
  .why-choose-item {
    padding-bottom: 25px;
  }
   .services-title h2 {
    line-height: 62px;
    max-width: 620px;
  }
  h4 {
    font-size: 20px;
    line-height: 20px;
  }
  .project-section .section-title h2 {
  line-height: 60px;
}
.project-accordion .accordion-header .accordion-button span {
    width: 70px;
  }
  .project-accordion .accordion-body {
    padding-left: 70px;
  }
  .testimonials .section-title {
  margin-bottom: 45px;
  }
   .testimonial-content {
    padding: 25px 22px;
  }
  .testimonial-text {
  margin-top: 25px;
}
.cta-content h2 {
  font-size: 44px;
  line-height: 50px;
}
.cta-content {
  max-width: 500px;
}
.cta-wrap {
    padding: 80px 30px;
  }
  .faq-accordion .accordion-header .accordion-button {
    font-size: 22px;
    line-height: 30px;
  }
   .footer {
    padding: 60px 0 120px;
  }
  .footer-logo img {
    height: 100px;
    width: auto;
  }
   .testimonial-author, .testimonial-location {
    font-size: 28px;
    line-height: 28px;
  }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 8px;
    }   
   h2 {
      font-size: 52px;
      line-height: 50px;
    }
  .project-accordion .accordion-header .accordion-button span {
    width: 50px;
  }
  .project-accordion .accordion-body {
    padding-left: 50px;
  }
  }
  @media only screen and (max-width: 1200px){	
    .outer-menu ul li a {
      font-size: 18px;
      line-height: 18px;
    }    
    .outer-menu {
      padding: 10px 15px;
      height: 80px;
    }
    .main-header {
      top: 30px;
    }
     .hero-image {
      padding: 140px 0 50px;
    }
    h2 {
      font-size: 48px;
      line-height: 48px;
    }
    p{
      font-size: 18px;
      line-height: 26px;
    }   
    section,
    .why-choose-section {
      padding: 70px 0;
    }
    h1 {
      font-size: 70px;
      line-height: 70px;
    }
     .hero-section h1 {
      max-width: 520px;
     }
     .hero-section p {
      font-size: 22px;
      line-height: 30px;
     }
      .hero-content {
        max-width: 540px;
      } 
    
    .footer {
        padding:50px 0 80px;
      }
       .footer-logo img {
    height: 80px;
    width: auto;
  }
    .footer-title {
    font-size: 20px;
    line-height: 24px;
  }
    .footer-link,
    .footer-section li a {
      font-size: 18px;
    }
    .why-choose-text {
  padding: 0 10px;
}
  h3 {
    font-size: 24px;
    line-height: 26px;
  }
  .why-choose-wrap {
    gap: 14px;
  }
  .why-choose-item {
  width: calc(25% - 11px);
  }
  .why-choose-item p {
    font-size: 18px;
  }
   .why-choose-item img {
    height: 200px;
    width: auto;
    margin-bottom: 15px;
  }
   .section-title p, .services-title p {
    font-size: 26px;
    line-height: 35px;
  }
  .service-wrap {
    gap: 14px;
  }
  .service-item {
  width: calc(25% - 11px);
  }
   h4 {
    font-size: 18px;
    line-height: 20px;
  }
    .section-title {
    margin-bottom: 40px;
  }
  .project-wrap {
    gap: 40px;
  }
    .project-accordion .accordion-header .accordion-button {
    font-size: 26px;
  }
  .project-accordion .accordion-item {
  padding: 24px 16px;
  }
  .project-accordion .accordion-header .accordion-button span {
    width: 40px;
  }
    .project-accordion .accordion-body {
    padding-left: 40px;
  }
  .project-section .section-title h2 {
    line-height: 54px;
  }
   .testimonial-author, .testimonial-location {
    font-size: 26px;
    line-height: 26px;
  }
  .testimonial-slider .slick-slide {
    padding: 0 10px;
  }
    .cta-content {
    max-width: 483px;
  }
   .cta-wrap {
    padding: 60px 20px;
  }
  .faq-accordion .accordion-item {
  padding: 25px 20px;
  }
  .faq-accordion .accordion-body {
  padding-right: 15px;
  padding-top: 5px;
}
 .section-title {
    margin-bottom: 35px;
  }
  .services-title p {
    max-width: 644px;
  }
  .border-btn {
      margin: -40px 0 40px auto;
  }
  .product-text h4 {
    font-size: 20px;
  line-height: 22px;
  }
  .testimonial-content::before { 
    right: 22px;
  }
  }
    @media only screen and (max-width: 1100px){	
     
    }
  @media only screen and (max-width: 991px){
 
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 20px;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--white-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--white-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
   .navbar-brand img {
    height: 60px;
    width: auto;
  }  
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #000;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
  .outer-menu {
    backdrop-filter: none;
  }
	.main-menu ul li a {
	  color:var(--white-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
	}  
  .hero-image {
    padding: 130px 0 50px;
  }
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
  section {
    padding: 50px 0;
  }
  h2 {
    font-size: 40px;
    line-height: 42px;
  }
  h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .hero-section h1 {
    max-width: 500px;
  }
   .hero-section p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .section-title p, .services-title p {
    font-size: 24px;
    line-height: 33px;
  }
  .why-choose-item {
    width: calc(50% - 11px);
  }
  .border-btn {
    margin: 15px 0 40px 0;
  }
  .service-item {
    width: calc(33.3% - 10px);
  }
   .product-text h4 {
    font-size: 17px;
    line-height: 20px;
  }
   .project-section .section-title h2 {
    line-height: 48px;
  }
  .project-accordion, .project-image {
  width: 100%;
}
 .project-wrap {
    gap: 20px;
  }
  .footer .col-md-4 {
    width: 50%;
  }
  .footer .col-md-4:first-child {
    width: 100%;
  }
  .footer-logo img {
    height: 50px;
    width: auto;
  }
   .footer {
    padding: 40px 0 50px;
  }
  .social-icon {
  margin-top: 0;
}
  section, .why-choose-section {
    padding: 60px 0;
  }
  .menu-logo {
    display: block;
  }
}
@media only screen and (max-width: 767px){
 
  p {
    font-size: 16px;
    line-height: 24px;
  }
 h2 {
    font-size: 36px;
    line-height: 38px;
  }
  h1 {
    font-size: 50px;
    line-height: 50px;
  }  
   .hero-image {
    padding: 100px 0 50px;
    border-radius: 0;
  } 
  .services-title h2 {
    line-height: 36px;
    max-width: 620px;
  } 
    .section-title p, .services-title p {
    font-size: 20px;
    line-height: 26px;
  }
   h3 {
    font-size: 20px;
    line-height: 26px;
  }
  section, .why-choose-section {
    padding: 40px 0;
  } 
  .footer-copyright {
    margin-top: 30px;
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 5px;
  }
  .footer-logo {
    display: none;
  }
  .footer-link, .footer-section li a {
    font-size: 16px;
  }
  .service-item {
    width: calc(50% - 7px);
  }
  .product-wrap {
    flex-wrap: wrap;
  }
  .product-item {
    width: 100%;
  }
  .product-image img {
    width: 100%;
    height: auto;
  }
  .project-accordion .accordion-header .accordion-button {
    font-size: 22px;
  }
   .project-accordion .accordion-header .accordion-button span {
    width: auto;
    margin-right: 10px;
  }
   .project-accordion .accordion-body {
    padding-left: 0;
  }
   .project-accordion .accordion-item {
    padding: 16px 10px;
  }
   .cta-wrap {
    padding: 30px 15px;
    border-radius: 30px;
  }
   .faq-accordion .accordion-item {
    padding: 20px 15px;
  }
   .faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    line-height: 26px;
  }
  .faq-accordion .accordion-body p {
    font-size: 16px;
    line-height: 24px;
  }
    .footer {
    padding: 40px 0 0;
  }
    .cta-content h2 {
    font-size: 36px;
    line-height: 40px;
    max-width: 329px;
  }
}
@media only screen and (max-width: 600px){   
  .hero-image {
    padding: 80px 0 30px;
    border-radius: 0;
  }
 h1 {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 40px;
  } 
  h2 {
    font-size: 30px;
    line-height: 35px;
  }     
    .is-sticky .outer-menu {
      height: 60px;
      padding: 8px 15px;
    }
    .is-sticky {
      height: 60px !important;
    }
    .main-header {
    top: 0;
  }
    .navbar-brand img {
    height: 50px;
    width: auto;
  }
    .outer-menu {
    padding: 10px 15px;
    height: 70px;
  }
  .why-choose-section .section-title h2::after { 
    width: 145px;
  height: 10px;
  }

.why-choose-section h2 {
  padding-bottom: 20px;
}
.why-choose-text h3 {
  margin-bottom: 10px;
  font-weight: 600;
}
 .why-choose-item {
    width: 100%;
  }
   .project-accordion .accordion-header .accordion-button {
    font-size: 18px;
  }
  .cta-content p {
    margin-bottom: 15px;
  }
  .cta-content .common-btn.white-btn {
    margin-bottom: 10px;
  }
  .section-title {
    margin-bottom: 30px;
  }
   .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 500px){   
   .hero-section h1 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 34px;
  }
   h2,
   .cta-content h2 {
    font-size: 26px;
    line-height: 28px;
   }
   p {
    font-size: 15px;
    line-height: 22px;
  }  
   .cta-img h2 {
    font-size: 24px;
    line-height: 26px;
  }
    .cta-img p {
    font-size: 18px;
    line-height: 24px;
  }
  .hero-content .project-btn {
    padding: 15px;
  }
.outer-menu {
    padding: 6px 15px;
    height: 54px;
  }
   .section-title p, .services-title p {
    font-size: 18px;
    line-height: 24px;
  }   
  .common-btn, .appointment-btn,
  .border-btn {
    width: auto;
    padding: 15px 15px;
    font-size: 18px;
    height: 50px;
  } 
  .hero-content .project-btn {
    font-size: 18px;
  }
    .service-item {
    width: 100%;
    margin-bottom: 10px;
  }
    .project-section .section-title h2 {
    line-height: 36px;
  }
   .testimonial-author, .testimonial-location {
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 400px){
  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    line-height: 22px;
  }
   h3 {
    font-size: 16px;
    line-height: 20px;
  }
    .why-choose-item p {
    font-size: 14px;
  }
}