:root {
  --gra-font-body: "Inter", sans-serif;  
  --gra-primary-color: #D30A0B;
  --gra-primary-color-h: #B80708;
  --gra-secondary-color: #01101E;
  --gra-white-color: #ffffff;
  --gra-black-color: #000000;
  --gra-heading-color: #171D26;
  --gra-text-color: #24282E;
  
}

body {
  	margin: 0px;
	  padding: 0px;
  	font-family: var(--gra-font-body);
	background-color: var(--gra-white-color) !important;
}

a {
	text-decoration: none;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

a:hover {
	text-decoration: none;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	cursor: pointer
}

a:focus, a:hover {
	text-decoration: none
}

button:focus:not(:focus-visible) {
	outline: 0px;
	box-shadow: none;
}
.form-control:focus {
	box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gra-font-heading);
	margin: 0;
	padding: 0;
}

p {
	font-family: var(--gra-font-body);
	font-weight: 400;
	margin: 0;
	padding: 0;
}

/* Header Navigation Style */

header {  
  transition: all 0.4s ease;  
  width: 100%;
  background: #fff;
}

.navbar {
	padding: 1rem 2rem;
}


.navbar .nav-item {
	padding: 7px 22px;
}

.navbar .nav-item .nav-link {
	color: var(--gra-text-color);
  text-transform: uppercase;  
  padding: 0;
  font-size: 15px;
  font-weight: 600;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
	color: var(--gra-primary-color);
}

.navbar .nav-item .nav-link i {
  font-size: 14px;
  padding-left: 4px;
}

.navbar .navbar-brand img {
	width: 300px;
}


.call_circle {
  color: var(--gra-text-color);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.call_circle i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  color: var(--gra-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;  
  border: 1px solid var(--gra-primary-color);
  margin-right: 10px;
}

.navbar .book_btn {
	font-family: var(--gra-font-heading);
	font-weight: 400;
	font-size: 16px;
	background-color: var(--gra-primary-color);
  border: 2px solid var(--gra-primary-color);
	color: var(--gra-white-color);
	padding: 0.75rem 1rem;
  text-transform: uppercase;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.navbar .book_btn img {
  padding-right: 7px;
}

.navbar .book_btn:hover {
	background-color: var(--gra-primary-color-h);
  border: 2px solid var(--gra-primary-color-h);
}


header.header_sticky {	
	z-index:999;	
	-webkit-box-shadow:0px 5px 6px 0px rgba(0,0,0,0.2);
	-moz-box-shadow:0px 5px 6px 0px rgba(0,0,0,0.2);
	box-shadow:0px 5px 6px 0px rgba(0,0,0,0.2);
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;	
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}


.dropdown .dropdown-menu {
	border-radius: 0;
	background-color: var(--gra-primary-color);
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
  margin-top: 8px;
  min-width: 13rem;
}

.dropdown .dropdown-menu .nav-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 12px;
}

.dropdown .dropdown-menu .nav-item:last-child {
	border-bottom: none;
}

.dropdown .dropdown-menu .nav-link {
	color: var(--gra-white-color);
}

.dropdown .dropdown-menu .nav-link::after {
  display: none;
}

.dropdown .dropdown-menu .nav-link:hover, .dropdown .dropdown-menu .nav-link.active {
	color: var(--gra-black-color);
  font-weight: 700;
}

.dropdown:hover .dropdown-menu {
	display: block;	
}

.mobile_menu {
	max-width: 300px;
}

.mobile_menu .offcanvas-header {	
	padding: 0.75rem;
}

.mobile_menu .navbar-brand img {
	width: 200px;
}

.mobile_menu .offcanvas-body {
	padding: 0.75rem;
}

.mobile_menu .nav-item {
	border-bottom: 1px solid #7700151f;	
}

.mobile_menu .nav-item .nav-link {
	padding: 0.75rem 0;
}


.mobile_menu .dropdown:hover .dropdown-menu {
	display: none;	
}

.mobile_menu .dropdown.active .dropdown-menu {
  display: block;
  background-color: var(--gra-white-color);
  border: none;
  border: none;
  padding: 0 15px;
  margin: 0;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.mobile_menu .dropdown.active .dropdown-menu .nav-link {
  color: var(--gra-black-color);
}

.mobile_menu .dropdown.active .dropdown-menu .nav-link:hover, .mobile_menu .dropdown.active .dropdown-menu .nav-link.active {
  color: var(--gra-primary-color);
}

.mobile_menu .dropdown.active .dropdown-menu .nav-item {
  border-bottom: 1px solid #7700151f;
}

.mobile_menu .dropdown.active .dropdown-menu .nav-item:last-child {
  border-bottom: 0;
}

.mobile_menu .dropdown.active i {
  transform: rotate(180deg);
  top: 5px;
  position: relative;
}

/* .mobile_menu .dropdown-menu.show {	
	display: block !important;
	padding: 0rem 1rem;
} */

.mobile_menu .book_btn {
	font-family: var(--gra-font-heading);
	font-weight: 400;
	font-size: 22px;
	background-color: var(--gra-primary-color);
  border: 2px solid var(--gra-primary-color);
	color: var(--gra-white-color);
	padding: 0.4rem 1.75rem;
  width: 100%;
}

.mobile_menu .book_btn:hover {
	background-color: var(--gra-primary-color-h);  
  border: 2px solid var(--gra-primary-color-h);
}

.mobile_menu .call_circle {
  margin-right: 0;
  text-align: center;
  margin-bottom: 15px;
  justify-content: center;
}



/* Hero Banner CSS */

main .container, footer .container {
  max-width: 1700px;
}

.banner_wrap {
	width: 100%;
	height: 725px;
  position: relative;
}

.banner_wrap .image_box {
	overflow: hidden;
	position: relative;
}

.banner_wrap .image_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}


.banner_content {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column wrap;
	z-index: 2;	
}


.banner_content .hero_kicker {
  color: #EF6566;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

.banner_content .hero_title {  
  font-weight: 700;
  font-size: 50px;
  line-height: 1.3;
  margin: 1.25rem 0 0;
}

.banner_content .hero_title span {
  color: var(--gra-primary-color);
}

.banner_content .hero_copy {
  max-width: 500px;
  color: var(--gra-text-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin: 2rem 0;
}

.banner_content .banner_btn {	
	font-weight: 600;
	font-size: 16px;
	background-color: transparent;
  border: 1px solid #B5B7BC;
	color: var(--gra-text-color);
	padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  margin-right: 15px;
}

.banner_content .banner_btn i {
  padding-right: 5px;
  font-size: 25px;
  position: relative;
  top: 2px;
}

.banner_content .banner_btn:hover {
	background-color: var(--gra-primary-color);
  border: 1px solid var(--gra-primary-color);
  color: var(--gra-white-color);
}


.banner_content .banner_btn.call_btn {
  background-color: var(--gra-primary-color);
  color: var(--gra-white-color);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gra-primary-color);
}

.banner_content .banner_btn.call_btn img {
  padding-right: 5px;
  position: relative;
  top: -2px;
}

.mobile_banner {
  display: none;
}

.statistic_sec {  
  padding: 15px 0;
  margin-top: -75px;
  position: relative;
  z-index: 99;
}

.statistic_sec .left_sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
  margin-top: 50px;
}

.statistic_sec .left_sec .item_info {
  display: flex;
  align-items: center;
}

.statistic_sec .left_sec .item_info img {
  padding-right: 15px;
}

.statistic_sec .left_sec .item_info span {
  font-size: 18px;
  color: var(--gra-text-color);
}

.statistic_sec .right_sec {
  border: 1px solid #E6E5E6;
  border-radius: 6px;
  padding: 15px;
  background-color: var(--gra-white-color);
}

.stat_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
}

.stat_wrap .stat_item {
  text-align: center;  
}

.stat_wrap .stat_item .stat_icon {
  min-height: 80px;
  display: grid;
  place-content: center;
}

/* .stat_wrap .stat_item .stat_icon img {
  height: 65px;
  width: auto;
} */

.stat_wrap .stat_item .number_record {
  margin: 0 0 5px;
}

.stat_wrap .stat_item .number_record span {
  font-size: 24px;
  font-weight: 700;  
  color: var(--gra-black-color);
}

.stat_wrap .stat_item .number_record span.counter_up{
  font-size: 24px;
  font-weight: 700;  
  color: var(--gra-black-color);
}


.stat_wrap .stat_item .stat_content {
  font-size: 16px;
  line-height: 1.5;
  color: #3A3E42;
  max-width: 125px;
  margin: 0 auto;
}


.results_sec {
  padding: 3rem 0;
}

.results_sec h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: var(--gra-text-color);
  margin-bottom: 20px;
}

.results_sec .result_item {  
  margin: 2.5rem auto 0;
  text-align: center;
  max-width: 300px;
}

.results_sec .result_item .item_title {
  color: var(--gra-primary-color);
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  margin: 15px 0;
}

.results_sec .result_item .item_content {
  font-size: 16px;
  line-height: 25px;
  color: var(--gra-text-color);
}


.why_sec {
  padding: 3rem 0;
  background-color: #F3EEEE;
}

.why_sec .image_box {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.why_sec .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why_sec .why_content {
  padding-left: 15%;
}

.why_sec .outer_why {
  display: flex;
  align-items: center;
  height: 100%;
}

.why_sec .why_content h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: var(--gra-text-color);
}

.why_sec .why_content .list_item {
  display: flex;
  align-items: center;
  margin: 2rem 0 0;
}

.why_sec .why_content .list_item .icon_box {
  width: 70px;
  padding-right: 20px;
}

.why_sec .why_content .list_item .icon_box img {
  width: 40px;
  height: 40px;
}

/* .why_sec .why_content .list_item .icon_box .info_area {
  max-width: 50%;
  flex: 0 0 50%;
} */

.why_sec .why_content .list_item .info_area h3 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: var(--gra-text-color);
}

.why_sec .why_content .list_item .info_area p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: var(--gra-text-color);
}

.client_sec {
  padding: 3rem 0 2rem;
}

.client_sec h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: var(--gra-text-color);
  margin-bottom: 40px;
}

.client_sec .review_box {
  border: 0px solid red;
}

.client_sec .review_box .rating_area {
  display: flex;
  align-items: center;
}

.client_sec .review_box .rating_area ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 10px;
}

.client_sec .review_box p {
  font-size: 16px;
  line-height: 25px;
  color: var(--gra-text-color);
  margin: 15px 0;
  min-height: 85px;
}

.client_sec .review_box .client_name {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  line-height: 20px;
  color: var(--gra-text-color);
}

.client_sec .review_box .client_role {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 20px;
  color: var(--gra-text-color);
}

.client_review {
	padding-bottom: 50px;
}

.client_review .swiper-pagination {
	bottom: 0;
}

.client_review .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #959595;
  opacity: 1;
}

.client_review .swiper-pagination-bullet-active {
	background-color: var(--gra-primary-color);
}

.grow_sec {
  padding: 1rem 0 2rem;
}

.grow_sec .grow_innerbox {
  background-color: var(--gra-text-color);
  border-radius: 10px;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grow_sec .grow_innerbox .left_sec {
  display: flex;
  align-items: center;
}

.grow_sec .grow_innerbox .left_sec .icon_box {
  background-color: var(--gra-primary-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.grow_sec .grow_innerbox .left_sec .content_box {
  margin-left: 15px;
}

.grow_sec .grow_innerbox .left_sec .content_box h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: var(--gra-white-color);
  margin: 0 0 5px;
}

.grow_sec .grow_innerbox .left_sec .content_box p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #fafafa;
}

.grow_sec .grow_innerbox .right_sec a {
  background-color: var(--gra-primary-color);
  color: var(--gra-white-color);
  padding: 0.75rem 2rem;
  border: 1px solid var(--gra-primary-color);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.grow_sec .grow_innerbox .right_sec a:hover {
  background-color: var(--gra-primary-color-h);
  border: 1px solid var(--gra-primary-color-h);
}

.grow_sec .grow_innerbox .right_sec a img {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.bottom_sec {
  padding: 0 0 2rem;
}

.bottom_sec .left_sec {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.bottom_sec .left_sec .item_info {
  display: flex;
  align-items: center;
}

.bottom_sec .left_sec .item_info img {
  margin-right: 15px;
}

.bottom_sec .left_sec .item_info p {
  font-size: 18px;
  line-height: 22px;
  color: var(--gra-text-color);
  font-weight: 400;
}

footer.full_width {
  background-color: #F9F9F9;
  padding: 40px 0;
}

.fter_logo img {
	width: 300px;
}

.ftr_links {
  display: flex;  
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftr_links li a {
  font-size: 20px;
  font-weight: 500;
}

.ftr_links li:last-child {
  margin-left: 15px;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fter_social {
  display: flex;
  align-items: end;
  max-width: 15%;
  flex: 0 0 15%;
}

.fter_social ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fter_social ul li i {
  color: var(--gra-primary-color);
  font-size: 30px;
}

.terms_sec {
  padding: 4rem 0;
}

.terms_sec h2 {
  text-align: center;
  font-size: 32px;
  color: var(--gra-text-color);
  font-weight: 700;
  margin: 0 0 30px;
}

.terms_sec p {
  font-size: 16px;
  line-height: 25px;
  color: var(--gra-text-color);
  font-weight: 400;
  margin: 0 0 15px;
}

.terms_sec p.heading_title {
  margin-bottom: 0;
}

.terms_sec h3 {
  font-size: 24px;
  color: var(--gra-text-color);
  font-weight: 700;
  margin: 0 0 10px;
}

.terms_sec h4 {
  font-size: 20px;
  color: var(--gra-text-color);
  font-weight: 700;
  margin: 0 0 10px;
}

.terms_sec h5 {
  font-size: 18px;
  color: var(--gra-text-color);
  font-weight: 700;
  margin: 0 0 10px;
}



/* Responsive CSS */
@media only screen and (max-width: 1680.99px) {
  main .container, footer .container {
    max-width: 1600px;
  }
}

@media only screen and (max-width: 1440.99px) {
  main .container, footer .container {
    max-width: 1360px;
  }
}

@media only screen and (max-width: 1366.99px) {
  .banner_wrap {
    height: 650px;
  }
  .navbar {
    padding: 1rem 0.5rem;
  }
  .navbar .nav-item {
    padding: 7px 15px;
  }

}

@media only screen and (max-width: 1280.99px) {
  .navbar .navbar-brand img {
    width: 250px;
  }
  .navbar .nav-item {
    padding: 7px 10px;
  }
  .navbar .nav-item .nav-link {
    font-size: 14px;
  }
  .call_circle {
    font-size: 14px;
    margin-left: 10px;
  }

  .call_circle i {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .navbar .book_btn {
    font-size: 15px;
  }
  .statistic_sec .left_sec .item_info span {
    font-size: 16px;
  }
  .banner_content .banner_btn {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 1199.99px) {
  .banner_wrap {
    height: 600px;
  }
}

@media only screen and (max-width: 1024.99px) {
  .navbar {
    padding: 1rem 0;
  }
  .navbar .navbar-brand img {
    width: 200px;
  }
   .navbar .nav-item {
    padding: 7px 5px;
  }
  .navbar .nav-item .nav-link {
    font-size: 13px;
  }
  .navbar .book_btn {
    padding: 0.5rem;
    font-size: 14px;
  }
  .banner_wrap {
    height: 525px;
  }
  .statistic_sec {
    margin-top: -35px;
  }
  .banner_content .hero_kicker {
    font-size: 18px;
  }
  .banner_content .hero_title {
    font-size: 42px;
    line-height: 1.2;
    margin: 1rem 0 0;
  }
  .banner_content .hero_copy {
    margin: 1rem 0;
    font-size: 18px;
  }
  .why_sec .why_content {
    padding-left: 8%;
  }

  .why_sec .why_content .list_item .info_area {
    max-width: 75%;
  }

}

@media only screen and (max-width: 991.99px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar .navbar-brand img {
    width: 275px;
  }

	.navbar-toggler {
		border: none;
		background-color: transparent !important;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.navbar-toggler-icon {
		background-image: none;
		width: 30px;
		height: 2px;
		background-color: #1E1E1E;
		position: relative;
	}
	.navbar-toggler-icon::after {
		position: absolute;
		content: '';
		width: 30px;
		height: 2px;
		background-color: #1E1E1E;
		left: 0;
		top: -11px;
	}
	.navbar-toggler-icon::before {
		position: absolute;
		content: '';
		width: 30px;
		height: 2px;
		background-color: #1E1E1E;
		left: 0;
		bottom: -11px;
	}

	
	.navbar-toggler-icon.animate {
		background-color: transparent;
	}
	.navbar-toggler-icon.animate:after {
		top:0;
		transform:rotate(45deg);
		transition:top 300ms cubic-bezier(0.23,1,0.32,1),transform 300ms 300ms cubic-bezier(0.23,1,0.32,1);
	}
	.navbar-toggler-icon.animate:before { 
		bottom:0;
		transform:rotate(-45deg);
		transition:bottom 300ms cubic-bezier(0.23,1,0.32,1),transform 300ms 300ms cubic-bezier(0.23,1,0.32,1);
	}

  .mobile_menu .nav-item .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
  }

  .mobile_menu .nav-item .dropdown-menu .nav-link {
    justify-content: flex-start;
  }

  .mobile_menu .dropdown.active .dropdown-menu i {
    transform: rotate(0deg);
    top: 1px;
    margin-right: 7px;
    font-size: 14px;
  }
	
	.mobile_menu .btn-close {
		background-color: transparent !important;
	}

  .banner_wrap {
    height: 500px;
  }

  .banner_content .hero_kicker {
    font-size: 18px;
  }

  .banner_content .hero_copy {
    max-width: 400px;
    font-size: 18px;
    line-height: 1.5;
    margin: 1.25rem 0;
  }

  .banner_content .hero_title {
    margin: 1rem 0 0;
    font-size: 40px;
    line-height: 1.2;
  }

 .banner_content .banner_btns {
    display: flex;    
    width: 40%;
    flex-wrap: wrap;
 }

 

 .banner_content .banner_btns .banner_btn {
  width: 100%;
  margin-right: 0;
 }

 .banner_content .banner_btns .banner_btn.call_btn {
  margin-bottom: 15px;
 }

  .statistic_sec {
    margin-top: 0;
  }

  .statistic_sec .left_sec {
    margin-top: 25px;
  }

  .statistic_sec .left_sec .item_info {
    justify-content: center;
  }

  .why_sec .why_content {
    padding-left: 0;    
  } 

  .grow_sec .grow_innerbox {
    padding: 20px;
  }

  .ftr_links {
    margin-left: 10px;
  }

  
}


@media only screen and (max-width: 840.99px) {
 .banner_wrap {
    height: 425px;
  }

  .banner_content .hero_title {
    margin-top: 0px;
  }

  .banner_content .hero_copy {
    margin: 0.75rem 0;
  }

  .grow_sec .grow_innerbox {
    padding: 20px 10px;
  }

  .grow_sec .grow_innerbox .left_sec {
    max-width: 80%;
    flex: 0 0 80%;
  }

  .grow_sec .grow_innerbox .right_sec {
    max-width: 20%;
    flex: 0 0 20%;
  }

  .grow_sec .grow_innerbox .left_sec .icon_box {
    width: 70px;
    height: 70px;
  }
  .grow_sec .grow_innerbox .left_sec .icon_box img {
    width: 40px;
    height: auto;
  }
  .grow_sec .grow_innerbox .right_sec a {
    padding: 0.75rem 0.25rem;
    font-size: 15px;
    width: 100%;
  }
  .grow_sec .grow_innerbox .right_sec a img {
    width: 30px;
    height: auto;
    margin-right: 5px;    
  }

  footer.full_width {
    padding: 20px 0;
  }
  .ftr_links li a {
    font-size: 22px;
  }

}

@media only screen and (max-width: 768.99px) {
.banner_wrap {
    height: 375px;
  }
  .banner_content .hero_title {
    font-size: 35px;
    line-height: 1.1;
  }
  .banner_content .hero_kicker {
    font-size: 16px;
  }
  .banner_content .hero_copy {
    font-size: 16px;
    margin: 0.5rem 0;
    max-width: 350px;
  }
  .banner_content .banner_btn, .banner_content .banner_btn.call_btn {
    padding: 0.5rem 1.25rem;
    font-size: 15px;
  }
  .grow_sec .grow_innerbox .left_sec .icon_box {
    width: 50px;
    height: 50px;
  }
  .grow_sec .grow_innerbox .left_sec .icon_box img {
    width: 30px;
  }
  .grow_sec .grow_innerbox .left_sec {
    max-width: 78%;
    flex: 0 0 78%;
  }
   .grow_sec .grow_innerbox .right_sec {
    max-width: 22%;
    flex: 0 0 22%;
  }

  .grow_sec .grow_innerbox .left_sec .content_box {
    margin-left: 10px;
  }
  .grow_sec .grow_innerbox .left_sec .content_box h2 {
    font-size: 28px;
  }

  .grow_sec .grow_innerbox .left_sec .content_box p {
    font-size: 15px;
  }
   .ftr_links li a {
    font-size: 20px;
  }
  .footer_inner {
    flex-wrap: wrap;
  }
  .fter_logo {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0 auto 15px;
    text-align: center;    
  }
  .fter_social {
    max-width: 25%;
    flex: 0 0 25%;
  }
}

@media only screen and (max-width: 767.99px) {
  .banner_wrap {
    height: auto;
  }
  .banner_content {
    position: relative;
    margin: 30px 0;
    text-align: center;
  }

  .banner_content .hero_copy {
    margin: 1rem auto;
    max-width: 500px;
  }

  .banner_content .banner_btns {
    width: 70%;
    margin: 0 auto;
  }

  .banner_content .hero_title {
    margin-top: 1rem;
    line-height: 1.3;
  }

  .banner_wrap .desktop_banner {
    display: none;
  }
  .mobile_banner {
    display: block;
  }

  .banner_wrap .image_box.mobile_banner {
    height: 500px;
    width: 100%;   
  }
  

  .banner_wrap .image_box.mobile_banner img {    
    object-position: 0px -25px;
  }

/*   .client_review .swiper-wrapper {
    flex-wrap: wrap;
  } */

/*   .client_review .swiper-wrapper .swiper-slide {
    width: 100% !important;
  } */

  .client_sec .review_box p {
    min-height: auto;
  }
	
	.client_review {
		padding-bottom: 10px;
	}

  .why_sec .why_content {   
    margin: 25px auto 0;
  }

  .why_sec .why_content h2 {
    text-align: center;
  }
  .fter_logo {
    text-align: center;
  }
  .ftr_links {
    justify-content: center;
  }
  .results_sec h2 {
    padding: 0 15px;
  }
  .client_sec .review_box {
    margin: 0 0 15px;
  }
}

@media only screen and (max-width: 640.99px) {
  .navbar .navbar-brand img {
    width: 200px;
  }
  .navbar .book_btn {
    padding: 0.4rem;
    font-size: 13px;
  }
  .call_circle {
    margin-left: 0;
    margin-right: 0;
  }
  .banner_wrap .image_box.mobile_banner {
    height: 400px;   
  }
   .banner_wrap .image_box.mobile_banner img {
    object-position: 0px -35px;
  }
  .grow_sec .grow_innerbox {
    flex-wrap: wrap;
  }
  .grow_sec .grow_innerbox .left_sec, .grow_sec .grow_innerbox .right_sec {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .grow_sec .grow_innerbox .right_sec {
    margin-top: 15px;
  }
  .bottom_sec .left_sec {
    flex-wrap: wrap;
  }
  .bottom_sec .left_sec .item_info {
    margin-bottom: 15px;
  }
  
}

@media only screen and (max-width: 575.99px) {  
  .call_circle, .navbar .book_btn {
    display: none;
  }
  .navbar .navbar-brand img {
    width: 250px;
  }
  .mobile_menu .call_circle {
    display: flex;
  }
  .stat_wrap .stat_item .number_record span.counter_up {
    font-size: 22px;
  }
  .stat_wrap .stat_item .stat_content {
    font-size: 14px;
    line-height: 1.3;
  }
  .stat_wrap .stat_item .stat_icon img {
    width: 45px;
    height: auto;
  }
  .statistic_sec .left_sec .item_info {
    flex-wrap: wrap;
  }
  .statistic_sec .left_sec .item_info span {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .results_sec .result_item {
    display: grid;
    grid-template-columns: 120px 1fr;
    max-width: 100%;
    text-align: left;
  }

  .results_sec .result_item .img_box img {
    width: 85px;
    height: auto;
  }

  .results_sec .result_item .item_title {
    margin: 0 0 10px;
    font-size: 18px;
  }
  .why_sec .image_box {
    height: auto;
  }

  .grow_sec .grow_innerbox .left_sec, .grow_sec .grow_innerbox .right_sec {
    flex-wrap: wrap;
    justify-content: center;
  }
  .grow_sec .grow_innerbox .left_sec .content_box {
    margin-left: 0;
    text-align: center;
    margin-top: 15px;
  }
  .grow_sec .grow_innerbox .left_sec .icon_box {
    width: 80px;
    height: 80px;
  }
  .grow_sec .grow_innerbox .left_sec .icon_box img {
    width: 40px;
  }
  .bottom_sec .left_sec {
    margin-left: 30px;
  }
  .bottom_sec .left_sec .item_info {
    width: 100%;
  }
  .banner_content {
    margin: 20px 0;
  }
  .banner_content .hero_title {
    font-size: 30px;
    line-height: 1.2;
  }
  .results_sec h2, .why_sec .why_content h2, .client_sec h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .ftr_links li a {
    font-size: 18px;
  }
  .fter_social {
    /* padding-left: 30px !important;
    padding-right: 30px !important; */
    max-width: 50%;
    flex: 0 0 50%;
    margin: 20px auto 0;
  }

  .ftr_links {
    max-width: 100%;
    flex: 0 0 100%;    
  }
}

@media only screen and (max-width: 480.99px) {
  .banner_wrap .image_box.mobile_banner {
    height: 390px;
  }
  .banner_wrap .image_box.mobile_banner img {
    object-position: top;
  }

  .fter_social ul li i {
    font-size: 25px;
  }

}

@media only screen and (max-width: 380.99px) {
  .banner_wrap .image_box.mobile_banner {
    height: 300px;
  }
  .banner_content .banner_btns {
    width: 90%;
  }  
  .banner_content .hero_kicker {
    font-size: 15px;
  }
  .results_sec .result_item {
    grid-template-columns: 110px 1fr;
  }
  .why_sec .why_content .list_item .icon_box {
    padding-right: 10px;
    width: 55px;
  }

  .fter_social {   
    max-width: 75%;
    flex: 0 0 75%;    
  }

}

@media only screen and (max-width: 360.99px) {
  .stat_wrap {
    grid-template-columns: repeat(2, 1fr);
  }

.statistic_sec .right_sec {
  padding: 15px 5px;
}
}