/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{

    /* Font */
    --nunito-sans: "Nunito Sans", sans-serif;
    
    /* Color Palette */
    --white: #fff;
    --black: #000;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html, body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: var(--nunito-sans);
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
    background:var(--white);
    text-rendering: optimizeLegibility;
    color: var(--black);
    overflow-x:hidden;
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
section, .section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 12.5px;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a, button {
	outline: none;
	box-shadow: none;
}
button {
	background: unset;
}
ol, ul {
    margin: 0;
    padding: 0;
}

ol li, ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input, input:focus, input:focus-visible, input:active, select, .form-select, .form-select:focus, textarea {
    outline: none;
    box-shadow: none;
}
* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
	margin: 0;
	padding: 0;
}


/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header {
    padding: 24px 0;
}
.header__logo {
    max-width: 40%;
    margin-left: 16.5%;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Content CSS Start */
/* =============================== */
.content {
    margin-bottom: 150px;
}
.content__row {
    display: flex;
    flex-wrap: wrap;
}
.content__row--1 {
    height: 600px;
}

/* Content Box 1 Start */
.content__box {
    height: 100%;
    position: relative;
}
.content__box--lg {
    width: 61%;
}
.content__box--sm {
    width: 39%;
}
.banner {
    background-color: #aa9e7f;
    width: 100%;
}
.banner--1 {
	color: #292927;
	min-height: 185px;
	text-transform: capitalize;
	padding: 12px 65px;
	font-weight: 700;
	font-size: 36px;
}
.content__bg__thumb--1 {
	width: 94%;
	height: 390px;
	margin-left: auto;
	margin-top: -55px;
}
.content__bg__thumb img {
	width: 100%;
	height: 100%;
}
/* Content Box 1 End */



/* Content Box 2 Start */
.content__bg__thumb--2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../imgs/bg-2.jpg") no-repeat center / cover;
    padding: 35px;
    color: var(--white);
}
.content__bg__thumb--2 p {
	font-size: 22px;
    margin-bottom: 60px;
}
.content__box__btns {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn {
	width: 100%;
	height: 120px;
	border-radius: 20px;
	border: 5px solid var(--white);
	color: var(--white);
	padding: 15px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
    transition: all .3s ease-in-out;
}
.btn:hover {
    background-color: var(--white);
    color: var(--black);
}
/* Content Box 2 End */



.content__row--2 {
    height: 660px;
}
/* Content Box 3 Start */
.banner--2 {
	min-height: 83px;
	position: absolute;
	top: -83px;
	left: 0;
	text-transform: uppercase;
	padding: 12px 30px;
	font-weight: 800;
	font-size: 36px;
	display: flex;
	align-items: center;
}
.conetnt__trainer {
    width: 94%;
    height: 100%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}
.content__bg__thumb--3 {
	width: 100%;
	height: 355px;
    flex-shrink: 0;
}
.trainer--box {
    height: 100%;
    padding: 30px 24px;
    background: url("../imgs/trainer-bg.png") no-repeat center / 100% 100%;
    position: relative;
    z-index: 1;
}
.trainer__top {
    display: flex;
    align-items: flex-end;
    gap: 50px;
    margin-top: -60px;
    margin-bottom: 60px;
}
.trainer__avatar {
    max-width: 195px;
}
.trainer__name {
	font-size: 18px;
}
.trainer__info {
	font-size: 17px;
}
.trainer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}
.trainer__contact {
	font-size: 18px;
}
.trainer__contact a {
    color: var(--black);
}
.trainer__contact a:hover {
    color: var(--white);
}
.trainer__phone a {
    font-size: 17px;
}
/* Content Box 3 End */



/* Content Box 4 Start */
.content__box--4 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.content__bg__thumb--4 {
	max-width: 375px;
}
.supported__text {
	color: #888;
	position: absolute;
	left: 45px;
	bottom: 170px;
	padding: 7px 10px;
	background-color: var(--white);
    font-size: 17px;
}
/* Content Box 4 End */

/* =============================== */
/* :: 5.0 Content CSS End */
/* =============================== */
