﻿/* ================= CSS Default ================= */ 
@font-face {
    font-family: "GoogleSans";
    src: url('../fonts/GoogleSans.ttf') format('truetype');
}

@font-face {
    font-family: "GoogleSans_B";
    src: url('../fonts/GoogleSans_B.ttf') format('truetype');
}

:root{
    --light     : #f7f8fa;
    --text      : #454545;
    --title     : #141414;
    --border    : #c8c9cb;
    
    --green     : #025959;
    --orange    : #f28705;
    --white     : #ffffff;
    
	--font      : "GoogleSans", Roboto, Arial, sans-serif;
    --font_b    : "GoogleSans_B", Roboto, Arial, sans-serif;
}

html{scroll-behavior:smooth;}
*{margin:0;padding:0;text-rendering: geometricPrecision;}
li{list-style-type:none;}
a, img{transition: all 0.3s ease;}
a:focus{outline:none;}
a, a:hover, a:active, a:link, a:visited{text-decoration:none;}
.padding0{padding:0;}
hr{opacity:1;}
h1,h2,h3,h4,h5,h6{
    margin:0;
    font-weight:normal;
    line-height:1.25;
    font-family: var(--font_b);
}

b, strong{
    font-family:var(--font_b);
    font-weight:normal;
}

body{
    font-family: var(--font);
    font-size:14px;
}

/* ================= CSS Config (If you don't really need it, delete it) ================= */
.space_section{
	padding:90px 0;
}

h1{
	font-size:55px;
	margin-bottom:25px;
}

h2{
	font-size:45px;
	margin-bottom:20px;
}

h3{
	font-size:30px;
	margin-bottom:10px;	
}

h4{
	font-size:20px;
	margin-bottom:25px;	
}

h5{
	font-size:20px;
	line-height:1.5;
	margin-bottom:10px;	
}

h6{
	font-size:15px;	
}

p{
	line-height:1.8;
	text-align:justify;
}

#introduction article ul li, #customer article p, .accordion-body{
	text-align:justify;
}

.animate {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 25%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.a_01 {animation-delay: 0.1s;}
.a_02 {animation-delay: 0.2s;}
.a_03 {animation-delay: 0.3s;}
.a_04 {animation-delay: 0.4s;}
.a_05 {animation-delay: 0.5s;}
.a_06 {animation-delay: 0.6s;}
.a_07 {animation-delay: 0.7s;}
.a_08 {animation-delay: 0.8s;}
.a_09 {animation-delay: 0.9s;}
.a_10 {animation-delay: 1s;}

/* ================= HEADER ================= */
#header{
	transition:all 0.3s ease;
	padding:13px 0;
}

.sticky {
	width:100%;
	position:fixed;
	top:0;
	z-index:4;
	background:#0b2415;
	padding:3px 0 !important;
	transition:all 0.3s ease;
}

.sticky + main{
	padding-top:60px;
}

.space_section{
	padding:80px 0;
}

body.offcanvas-active{
	overflow:hidden;
}

.offcanvas-header{
	display:none;
}

.screen-darken{
	height: 100%;
	width:0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity:0;
	visibility:hidden;
	background-color: rgba(2,89,89,0.7);
	transition:opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active{
	z-index:4; 
	transition:opacity .3s ease, width 0s;
    opacity:1;
    width:100%;
    visibility:visible;
}

.navbar-brand img{
    max-width:110px;
}

.navbar-nav .nav-item .nav-link{
	font-size: 15px;
	padding-left: 17px;
    font-family: var(--font_b);
    color:var(--white);
}

.sticky .navbar-nav .nav-item .nav-link{
    color:var(--white);
} 

header .content-width{
    display: block;
}

.btn-focus{
    padding:15px 40px;
    border-radius:6px;
    color:var(--white);
    font-family: var(--font_b);
    background-color: var(--green);
}

.btn-focus:hover, .btn-focus:focus{
    color:var(--white);
    box-shadow:0 3px 20px var(--green);
}
   
.btn-close{
    background:none;
    font-size:22px;
    color:var(--orange);
    opacity:1;
}

.btn-close:focus{
    box-shadow:none;
}

#menu .active {
    color: var(--orange) !important;
}

/* ================= MAIN ================= */
#focus-top{
    background:var(--light) url('../images/background.jpg') no-repeat center center;
    background-size:100%;
}

.bg-focus-top{
    text-align:center;
    padding:500px 0 200px;
    margin-top:-82px;
    color:var(--white);
}

.bg-focus-top article{
    display:none;
}

#focus-top h1{
    font-size:64px;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom:50px;
}

#focus-top h1 span{
    display: block;
    margin-left:50px;
}

#introduction article ul{
    padding-left:15px;
}

#introduction article ul li{
    list-style-type:disc;
    margin-bottom:20px;
    line-height:1.8;
}

#introduction article ul li b{
    color:var(--orange);
}

#introduction article ul li strong{
    color:var(--green);
}

.title-section {
    padding-top: 30px;
    text-align:center;
    margin-bottom:50px;
}

.title-section h2{
    font-size:32px;
}

.title-section hr{
    width:120px;
    margin:0 auto;
    border-top:5px solid var(--green);
}

#customer{
    background-color: var(--light);
}

.bg-services{
    background: url('../images/bg1.png?v=1.0') no-repeat center bottom,
                url('../images/half-circle.png?v=1.0') no-repeat center top,
                var(--green);
    background-size:100%, 40%;
    color:var(--white);
}

#services-FitMe article img:hover{
    filter:brightness(110%);
}

#services-FitMe article h6{
    margin-top:20px;
}

#services-FitMe article h3{
    margin-top:10px;
}

#services-FitMe article{
    width:100%;
}

#our-team-FitMe article img{
    max-width:100%;
}

#our-team-FitMe article{
    position:relative;
    margin-bottom:20px;
    border:5px solid transparent;
	transition:all 0.3s ease;
}

#our-team-FitMe article h5{
    margin:10px 0;
	text-align:center;
	color:var(--green);
}

#our-team-FitMe article ul{
    padding-left:10px;
}

#our-team-FitMe article ul li{
    list-style-type: disc;
	margin-bottom:10px;
}

.team-p{
    background-color: var(--green);
    color:var(--white);
    padding:20px;
    border-radius:10px;
    font-size: 20px;
}

#highlight-FitMe{
    background-color: var(--green);
    color:var(--white);
}

#highlight-FitMe p{
    text-align:center;
    font-family: var(--font_b);

}

#highlight-FitMe p strong{
    display: block;
    text-align:center;
    font-size:40px;
    margin:0 auto 10px;
}

#faq-FitMe{
	background:	url('../images/leaf-01.png?v=1.0') no-repeat top right,
				url('../images/leaf-02.png?v=1.0') no-repeat top left,
				var(--light);
}

.accordion-button{
    border:0;
    font-size:18px;
	color:var(--text);
    padding:12px 20px;
}

.accordion-button:not(.collapsed){
    background:var(--green) url('../images/bg3.png?v=1.0') no-repeat center top;
    background-size:100%;
    color:var(--white);  
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-button img{
    width:35px;
    height:35px;
    margin-right:10px;
}

.accordion-body{
	transition:all 0.3s ease;
    padding:20px;
    font-size:15px;
    line-height:1.8;
	box-shadow:0 4px 20px #7abdbd;
}

.accordion-item{
    margin-bottom:15px;
    border:1px solid #66bdbd;
}

.accordion-item:not(:first-of-type){
	border-top:1px solid #66bdbd;
}

#customer article img{
    border-radius:15px;
    margin-bottom:15px;
}

#customer article p{
    font-size:15px;
}

#why-choose-us article{
    text-align:center;
	padding:0 15px;
}

#why-choose-us article img{
    margin: 0 auto 20px;
    display: block;
}

.fitme-event{
    margin-bottom: 50px;
}

/* Style cho popup */
.popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    display: none;
    font-size: 1.2em;
    z-index: 999;
}

/* ================= FOOTER ================= */
footer{
    background-color: var(--green);
    color:var(--white);
    padding:40px 0;
    text-align:center;
    position: relative;
    z-index: 1;
    margin-bottom: 45px;
}

footer p{
    margin-bottom:0;
    font-size:15px;
    margin-top:10px;
	text-align:center;
}

footer img{
    max-width:36px;
    border:2px solid var(--white);
    border-radius:50%;
}

#map{
    height: 400px;
}

/* ================= Few Option ================= */
