/*-------------------- SCHEMA------------------------------------------------------------------

	 1.GLOBAL CSS
	 2.COMMON CSS3
	 3.NAVIGATION
	 4.BUTTON
	 5.HEADER
	 6.LOCATION
	 7.GAME
	 8.FORM
	 9.PRICE
	 10.CTA Buttons
	 11.TEAM
	 12.SUBSCRIBE
	 13.TESTIMONIAL
	 14.CONTACT
	 15.FOOTER
	 16.MEDIA QUERIES
   17. JOS CUSTOM ANIMATIONS
		
----------------------------------------------------------------------------------------------------------------------*/

/*-------------------- typografy used in tmeplate-----------------------------------------------------
Headers : 'Oswald', sans-serif , Arial , Vedana , 'Trebuchet MS';
Body    : 'Open Sans', sans-serif;

--------------------------------------------------------------------------------------------------------------------*/

/*-------------------- 1.GLOBAL CSS START -------------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');

/* For hosted fonts */
/*
@font-face {
  font-family: 'Oswald';
  src: url("webfonts/Oswald/Oswald-VariableFont_wght.ttf") format('ttf');
}
@font-face {
  font-family: 'Open sans';
  src: url("webfonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf") format('ttf');
}
*/
:root{
   scroll-padding-top: 95px;
  --white-color:  #fff;
  --light-gray-1: #f5f5f5;
  --light-gray-2 : #ab9f9f;
  --dark-color-1: #3e4e52;
  --dark-color-2: #666666;
  --black-color:  #000;
  --blue-color: #2ec0d3;
  --light-blue: #d1e6f9;
}
@media (max-width: 992px){
  :root{ 
    scroll-padding-top: 350px;
  }
}

html{
  	font-size: 16px;

}

 body {
	background: var(--white-color);
	color: var(--dark-color-2);
	font-family: 'Open sans', sans-serif, Arial, Vedana, 'Trebuchet MS';
	font-weight: 400;
	line-height: 24px;
	margin: 0 auto;
	max-width: 1500px;
  
}
p {
	margin-bottom: 0px;
}
h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 60px;
	color: var(--dark-color-1);
	letter-spacing: 1px;
  margin-bottom: 0;
}
h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 44px;
	font-weight: 400;
	line-height: 54px;
	color: var(--dark-color-1);
	letter-spacing: 1px;
  margin-bottom: 0;
}
h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
	color: var(--dark-color-1);
	letter-spacing: 1px;
  margin-bottom: 0;
}
h4 {
	font-family: 'Oswald', sans-serif;
	font-size: 27px;
	font-weight: 400;
	line-height: 37px;
	color: var(--dark-color-1);
	letter-spacing: 1px;
  margin-bottom: 0;
}
h5 {
	font-family: 'Oswald', sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 33px;
	color: var(--dark-color-1);
	letter-spacing: 1px;
  margin-bottom: 0;
}
h6 {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 27px;
	color: var(--dark-color-1);
	letter-spacing: 1px;
  margin-bottom: 0;
}

a {
	color: var(--dark-color-1);
	text-decoration: none;
}
a:hover {
	color: var(--dark-color-1);
	text-decoration: none !important;
	outline: none !important;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
button:focus {
	outline: 0px;
}



/*-------------------- 1.GLOBAL CSS END ---------------------------------------------*/

/*-------------------- 2.COMMON CSS START -------------------------------------------*/
/*+preload animated screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white-color);
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--blue-color);
  border-top-color: var(--light-blue);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
 
.section-space {
	padding: 80px 0px 80px 0px;
}
 
.lt-space {
	letter-spacing: 1px;
}
.intro-content {
	color: var(--dark-color-2);
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 1px;
}
.bg-img-property {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

 
.section-white-bg {
	background-color: var(--white-color);
}
.section-gray-bg {
	background-color: var(--light-gray-1);
}
.section-dark-bg {
	background-color: var(--black-color);
}
.section-width {
	width: 60%;
	margin: 0 auto;
	padding-bottom: 50px;
	text-align: center;
}
.theme-bg-color {
	background-color: var(--dark-color-1);
  color: white;
}
.theme-color {
	color: var(--light-gray-2);
}
.theme-color-1 {
	color: var(--dark-color-1);
}
 
 
nav {
	margin: 0 auto;
	max-width: 1500px;
  height: auto;
  top:0;
}



/*-------------------- 2.COMMON CSS END ---------------------------------------------*/

/*-------------------- 3.NAVIGATION START --------------------------------------------*/

.pre-navbar {
	transition: all .8s ease;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
} 
.pre-navbar .fa-bluesky::before,
.pre-navbar .fa-tiktok::before,
.pre-navbar .fa-instagram-square::before,
.pre-navbar .fa-pinterest,
.pre-navbar .fa-facebook::before {
	font-size: 17px;
	vertical-align: middle;
	padding-right: 10px;
	color: var(--dark-color-1);
}

.pre-navbar .fa-clock-o,
.pre-navbar .fa-envelope,
.pre-navbar .fa-phone {
	color: var(--dark-color-1);
	padding-right: 7px;
	font-size: 17px;
}
 
.pre-nav-border-right {
	border-right: 1px solid var(--light-gray-2);
	padding-right: 10px;
	margin-right: 10px;
	display: inline-block;
}

.nav-style {
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	position: relative;
	letter-spacing: 1px;
	font-family: 'Oswald';
	color: var(--dark-color-1) !important;
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
}
.logo-style {
	padding: 8px 0px;
	flex:1
}
.logo-style img{
  height: 80px;
}

.nav-color {
	background-color: var(--white-color);
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.navbar-nav li:hover{
	color: black !important;
  background-color: rgba(162,221,224,1.00)
}

.navbar-nav .active > .nav-style::before,
.navbar-nav .nav-style.active::before,
.navbar-nav .active > .nav-style,
.navbar-nav .nav-style.active,
.navbar-nav .nav-style.show,
.navbar-nav .show > .nav-style{
	color: black !important;
  background: rgba(188,246,249,1.00)
}

.navbar-menu {
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
}
#menu_top {
	transition: all .8s ease;
}

/*-------------------- 3.NAVIGATION END ---------------------------------------------*/

/*-------------------- 4.BUTTON AREA START -------------------------------------------*/

.boxed-btn,.boxed-btn-1 {
	display: inline-block;
	text-align: center;
	font-size: 17px;
	font-weight: 400;
	padding: 0px 25px;
	transition: all 0.3s ease-in;
	letter-spacing: 1px;
	line-height: 45px;
	border-radius: 50px;
  border: none;
	color: var(--white-color) !important;
	background-color: var(--light-gray-2);
	font-family: Oswald;
}
.btn-wrapper {
	margin-top: 30px;
}
.boxed-btn-1 {
 	color: var(--white-color) !important;
	background-color: var(--dark-color-1);

}
.boxed-btn:hover {
	background-color: var(--dark-color-1);
	color: var(--white-color) !important;
	}
.boxed-btn-1:hover {
	background-color: var(--light-gray-2);
	color: var(--black-color) !important;
	}
/*-------------------- 4.BUTTON AREA END --------------------------------------------*/

/*-------------------- 5.HEADER AREA START -------------------------------------------*/

.header-bg-img {
	background-image: url("../images/hero_bg.webp");
  background-position: 100%;
	padding: 150px 0px 150px 0px;
  height: 80vh;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.header-bg-img i {
	font-size: 55px;
	font-weight: 600;
}
/*-------------------- 5.HEADER AREA END --------------------------------------------*/

/*-------------------- 6.LOCATION AREA START ------------------------------------------*/

.locate-box {
	background-color: var(--light-gray-1);
	text-align: center;
	padding: 30px;
}
.about ul li:first-child {
	width: 100px;
}
.about ul li:last-child {
	vertical-align: middle;
}
 
/*-------------------- 6.LOCATION AREA END --------------------------------------------*/

/*-------------------- 7.PRACTICE SUBAREA START ---------------------------------------------*/

.practice-col-1 .practice-img-1 {
	position: relative;
	overflow: hidden;
}
.practice-col-1 .practice-img-1 img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.practice-col-1:hover .practice-img-1 img {
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.overlay-glass{
  top:2%;
  left:2%;
  width: 98%;
  height: 98%;
  opacity:0;
  transition: opacity 400ms;
  z-index:1;
  background-color: rgba(0,0,0,0.8);
}
.overlay-glass:hover{
  opacity: 1
}



 
/*-------------------- 7.PRACTICE AREA END -----------------------------------------------*/

/*-------------------- 8.FORM AREA START --------------------------------------------*/

.form-div-1 label {
	display: none !important;
}
.form-div-1 .form-message::-webkit-input-placeholder,
.form-div-1 .form-input::-webkit-input-placeholder {
	/*+ WebKit, Blink, Edge */
	color: var(--white-color);
}
.form-div-1 .form-message:-moz-placeholder,
.form-div-1 .form-input:-moz-placeholder {
	/*+ Mozilla Firefox 4 to 18 */
	color: var(--white-color);
	opacity: 1;
}
.form-div-1 .form-message::-moz-placeholder,
.form-div-1 .form-input::-moz-placeholder {
	/*+ Mozilla Firefox 19+ */
	color: var(--white-color);
	opacity: 1;
}
.form-div-1 .form-message:-ms-input-placeholder,
.form-div-1 .form-input:-ms-input-placeholder {
	/*+ Internet Explorer 10-11 */
	color: var(--white-color);
}

.form-div-1 textarea {
	color: var(--white-color);
	border: 1px solid var(--white-color);
	background-color: transparent;
	border-radius: 7px;
	padding-left: 50px;
	padding-right: 20px;
	width: 100%;
	padding-top: 6px;
}
.form-div-1 input {
	color: var(--white-color);
	border: 1px solid var(--white-color);
	background-color: transparent;
	border-radius: 7px;
	height: 40px;
	padding-left: 50px;
	padding-right: 20px;
	width: 100%;
}
.form-div-1 {
	position: relative;
	margin-bottom: 30px;
}
.form-div-1 i {
	color: var(--white-color);
	position: absolute;
	left: 20px;
	top: 13px;
}
.form-bg-img {
	background-image: url("../images/memberjoin_bg.webp");
  background-position: 0;
}
/*-------------------- 8.FORM AREA END ------------------------------------------------*/

/*-------------------- 9.PRICE AREA START ----------------------------------------------*/

.column-box {
	border: 1px solid var(--dark-color-2);
	padding: 30px;
	text-align: center;
}
.price-num {
	font-size: 50px;
	line-height: 60px;
	font-weight: 700;
}
.underline-1 {
	border-top: 4px solid green;
  width: 80%;
  margin: 0 auto;
  padding-top: 8px;
  font-size: 1.5rem;
  font-weight: 600;
}
.clip64{
  height: 64px;
}

/*-------------------- 9.PRICE AREA END ---------------------------------------------*/
/*-------------------- 10.CTA AREA START --------------------------------------------*/
.cta h6 a:hover {
	color: var(--white-color) !important;
}
.cta {
	position: relative;
}
.cta-button {
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
		top: 0;
		position: inherit;
		right: 0;
		margin-top: 20px;
	}
.theme-bg-blue{
  background-color: var(--blue-color);
}
/*-------------------- 10.CTA AREA END ----------------------------------------------*/
/*-------------------- 11.TEAM AREA START -------------------------------------------*/

.team-box {
	background-color: var(--white-color);
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.team-content {
	padding: 20px 10px;
	text-align: center;
}
/*-------------------- 11.TEAM AREA END -------------------------------------------*/

/*-------------------- 12.SUBSCRIBE AREA START -------------------------------------*/

.subs-position {
	position: absolute;
	right: 0;
	top: 0;
}
.subs-bg-img {
	background-image: url("../images/newsletter_bg.webp");
}
.sub-dis .boxed-btn {
	border-radius: 0;
	line-height: 40px;
	padding: 0px 30px;
}
.subs-bg-img .form-input {
	border: 1px solid var(--white-color) !important;
	height: 42px;
	color: var(--white-color);
	width: 100%;
	padding: 0 20px;
	min-height: 0px;
	font-size: 15px;
	background-color: transparent;
}
.subs-bg-img .form-message::-webkit-input-placeholder,
.subs-bg-img .form-input::-webkit-input-placeholder {
	color: var(--white-color);
}
.subs-bg-img .form-message:-moz-placeholder,
.subs-bg-img .form-input:-moz-placeholder {
	/*+ Mozilla Firefox 4 to 18 */
	color: var(--white-color);
	opacity: 1;
}
.subs-bg-img .form-message::-moz-placeholder,
.subs-bg-img .form-input::-moz-placeholder {
	/*+ Mozilla Firefox 19+ */
	color: var(--white-color);
	opacity: 1;
}
.subs-bg-img .form-message:-ms-input-placeholder,
.subs-bg-img .form-input:-ms-input-placeholder {
	/*+ Internet Explorer 10-11 */
	color: var(--white-color);
}
.subs-form-glass{
    backdrop-filter: blur(1px) brightness(0.8);
}

/*-------------------- 12.SUBSCRIBE AREA END ----------------------------------------*/

/*-------------------- 13.TESTIMONIAL AAREA START -----------------------------------*/


.testimonial-head img{
    display: block;
    margin-left: auto;
    margin-right: 1rem;
}
.testimonial-head h5{
    position: relative;
    top: -1rem;
    left: 30%;
    width: fit-content;
    min-width: 5rem;
    background-color: var(--white-color);
    padding: 4px;
    border-radius: 10px;
}
.testimonial-head {
  --color-border: var(--light-gray-2);
  position: relative;
  display: inline-block; 
  width: 100%;
  margin: 0 0 1.5rem 0;
  border-bottom: 2px solid var(--color-border);
}

.testimonial-head::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent; /*+ Triangle bottom size*/
  border-right: 10px solid transparent;
  border-top: 10px solid  var(--color-border); 
}

/*--------------------- 13.TESTIMONIAL AAREA END -----------------------------------*/


/*--------------------- 14.CONTACT AREA START --------------------------------------*/

#contact .form-div-1 i {
	left: 35px;
}
 
.contact-form {
	background-color: var(--white-color);
	padding: 55px;
	text-align: center;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.contact-data {
	background-color: var(--dark-color-1);
	padding: 35px;
	text-align: center;
}
.contact-form .form-message::-webkit-input-placeholder,
.contact-form .form-input::-webkit-input-placeholder {
	/*+ WebKit, Blink, Edge */
	color: var(--dark-color-1);
}
.contact-form .form-message:-moz-placeholder,
.contact-form .form-input:-moz-placeholder {
	/*+ Mozilla Firefox 4 to 18 */
	color: var(--dark-color-1);
	opacity: 1;
}
.contact-form .form-message::-moz-placeholder,
.contact-form .form-input::-moz-placeholder {
	/*+ Mozilla Firefox 19+ */
	color: var(--dark-color-1);
	opacity: 1;
}
.contact-form .form-message:-ms-input-placeholder,
.contact-form .form-input:-ms-input-placeholder {
	/*+ Internet Explorer 10-11 */
	color: var(--dark-color-1);
}

.contact-form textarea {
	color: var(--dark-color-1);
	border: 1px solid var(--dark-color-1);
	background-color: transparent;
	border-radius: 7px;
	padding-left: 50px;
	padding-right: 20px;
	width: 100%;
	padding-top: 6px;
}
.contact-form input {
	color: var(--dark-color-1);
	border: 1px solid var(--dark-color-1);
	background-color: transparent;
	border-radius: 7px;
	height: 40px;
	padding-left: 50px;
	padding-right: 20px;
	width: 100%;
}
.contact-form .form-div-1 i {
	color: var(--dark-color-1);
	position: absolute;
	left: 20px;
	top: 13px;
}
#contact h5 {
	font-size: 32px;
	line-height: 42px;
}

/*-------------------- 14.CONTACT AREA END ------------------------------------------*/

/*-------------------- 15.FOOTER AREA START ------------------------------------------*/

.footer-area.section-space {
	padding: 50px 0px;
}
.footer-li-space {
	list-style-type: none;
	padding: 5px 0;
}
.footer-li-space:last-child {
	padding-bottom: 0px;
}
.footer-li-space:first-child {
	padding-top: 0px;
}
.footer-list-name {
	letter-spacing: 1px;
	word-break: break-all;
	color: var(--dark-color-2);
}
.copy-right {
	margin-bottom: 0px;
	letter-spacing: 1px;
}
.copyright {
	border-top: 1px solid #eeeeee;
	margin-top: 20px;
	padding-top: 20px;
}
.mar-top {
	margin-top: 5px;
}
 

/*-------------------- 15.FOOTER AREA END -------------------------------------------*/

/*-------------------- 16.MEDIA QUERIES START ---------------------------------------*/

@media only screen and (min-width: 992px){
	.nav-style {
		padding: 26px 10px !important;
	}
	h4 {
		font-size: 24px;
		line-height: 34px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	h1 {
		font-size: 45px;
		line-height: 55px;
	}
	h2 {
		font-size: 35px;
		line-height: 45px;
	}
	h3 {
		font-size: 30px;
		line-height: 40px;
	}
	h4 {
		font-size: 20px;
		line-height: 30px;
	}
	h5 {
		font-size: 19px;
		line-height: 29px;
	}
	.header-bg-img i {
		font-size: 45px;
		font-weight: 600;
		line-height: 55px;
	}
	.header-bg-img {
		padding: 120px 0px 120px 0px;
	}
 
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
	h1 {
		font-size: 35px;
		line-height: 45px;
	}
	h2 {
		font-size: 32px;
		line-height: 42px;
	}
	h3 {
		font-size: 29px;
		line-height: 39px;
	}
	h4 {
		font-size: 22px;
		line-height: 32px;
	}
	h5 {
		font-size: 21px;
		line-height: 31px;
	}
	h6 {
		font-size: 17px;
		line-height: 27px;
	}
	.header-bg-img i {
		font-size: 35px;
		font-weight: 600;
		line-height: 45px;
	}
	.section-space {
		padding: 65px 0px 65px 0px;
	}
	.header-bg-img {
		padding: 100px 0px 100px 0px;
	}
}
@media only screen and (min-width: 361px) and (max-width: 480px) {
	.content-width {
		width: 75%;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 991px) {
	.btn-wrapper {
		margin-top: 20px;
	}

	.navbar-nav {
		float: left !important;
	}
 
	.section-width {
		width: 100%;
		padding-bottom: 30px;
	}
 

	.about .text-right {
		text-align: left !important;
	}
 
}
@media only screen and (max-width: 767px) {
 
	.boxed-btn {
		font-size: 14px;
	}
	.pre-nav-border-right {
		border: none;
	}
 
}
@media only screen and (max-width: 575px) {
	.section-space {
		padding: 50px 0px 50px 0px;
	}

	h1 {
		font-size: 30px;
		line-height: 40px;
	}
	h2 {
		font-size: 27px;
		line-height: 37px;
	}
	h3 {
		font-size: 25px;
		line-height: 35px;
	}
	h4 {
		font-size: 20px;
		line-height: 30px;
	}
	h5 {
		font-size: 19px;
		line-height: 29px;
	}
	h6 {
		font-size: 16px;
		line-height: 26px;
	}
	.header-bg-img i {
		font-size: 30px;
		font-weight: 600;
		line-height: 40px;
	}
	.header-bg-img {
		padding: 80px 0px 80px 0px;
	}
	.intro-content {
		font-size: 16px;
		line-height: 26px;
	}
 
	.sub-dis {
		position: inherit;
		top: 0px;
		left: 0%;
		padding-top: 30px;
		text-align: center;
	}
}
@media only screen and (max-width: 480px) {
	.col-6,
	.col-8,
	.col-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.col-6,
	.col-8,
	.col-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}	
	.res-mob-mar-bot {
		margin-bottom: 30px;
	}
 
	.header-bg-img i {
		display: block;
	}
}
@media only screen and (max-width: 400px) {
	.logo-style img{
		width: 50%;
		height: auto;
	}
}

@media only screen and (min-width: 992px) {

}
/*-------------------- 16.MEDIA QUERIES END ------------------*/ 
/*-------------------- 17. JOS CUSTOM ANIMATIONS START------------------*/ 

.jos[data-jos_animation="mygrow-down"]{
  max-height: 100vh;
}

.jos-mygrow-down{
  max-height: 0vh !important;
}

/*-------------------- 17. JOS CUSTOM ANIMATIONS END ------------------*/ 
