@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');


.body {
    overflow-x: hidden;
}
/* *:not(.container) {
    padding: 0;
    margin: 0;
} */
/* *:not(.col) {
    padding: 0;
    margin: 0;
} */
a:hover {
    text-decoration: none!important;
}
a {
    display: inline-block!;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}
p, span {
    font-family: 'Arimo', sans-serif;
}
.top-heading h2 {
    color: #822f3f;
    text-transform: uppercase;
}
.top-heading p {
    color: #dd0332;
}
.top-heading span {
    color: #444;
}
section {
    padding: 40px 0!important;
}
.row-below {
    margin-top: 40px;
}

/* ------------- HEADER STARTS -----------*/

header {
    position: relative;
}
.large-header {
    min-height: 100vh;
}
.large-header nav {
    z-index: 1000;
    position: relative;
}
.large-header .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #fff;
}
.large-header .top-nav-right {
    display: flex;
    align-items: center;
}
.large-header .top-nav-socials {
    /* align-items: center;
    display: flex; */
}
.large-header .top-nav-info {
    margin: 0 10px;
}
.large-header .top-nav-socials ul li a {
    color: #fff;
    padding: 0 5px;
    font-size: 18px;
}
.large-header-line {
    height: 1px;
    width: 100%;
    background: #ff1447;
}
.large-header .bottom-nav {
    padding: 10px 0;
}
.large-header .bottom-nav-links ul {
    justify-content: space-between;
}
.large-header .bottom-nav-links ul li a {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    opacity: .8;
    transition: all .3s ease;
}
.large-header .bottom-nav-links ul li a:hover {
    opacity: 1;
}




.large-header .showcase {
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: #dd0332;
}
.large-header .showcase-bottom-img {
    position: absolute;
    bottom: 0;
    left: 0;
}
.large-header .showcase-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.large-header .showcase-row {
    display: flex;
    align-content: center;
}
.large-header .showcase-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
/* .showcase-content-txt {
    padding: 20px 0;
} */
.large-header .showcase-content-txt h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 300!important;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.large-header .showcase-content-txt p {
    margin: 20px 0;
    color: #eee;
}
.large-header .showcase-content-txt a {
    color: #333;
    font-family: 'Arimo', sans-serif;
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    max-width: 300px;
    text-align: center;
    transition: all .3s ease;
}
.large-header .showcase-content-txt a:hover {
    background: #ccc;

}
.small-header {
    display: none;
}
.large-header .showcase-img-content {
    margin-top: 40px;
}
/* -------------- HEADER ENDS -------------*/


/* -------------- TRAINING PATCH ---------- */

.training-path {
    padding: 80px 0!important;
}
.training-path .top-heading h5 {
    margin: 10px 0;
}
.training-path .top-heading p {
    max-width: 750px;
    margin: auto;
}
.training-path-content {
    border: 1px solid #802d3d;
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.training-path-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #27323a;
    transition: all .3s ease;
    opacity: 0;
    pointer-events: none;
}
.training-path-info {
    margin-top: 20px;
    position: relative;
    z-index: 100;
}
.training-path-img {
    border: 1px solid #802d3d;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    z-index: 100;
    transition: all .3s ease;
}
.training-path-info h4 {
    font-size: 20px;
}
.training-path-info p {
    margin: 20px 0;
}
.training-path-info a {
    color: #dd0332;
}
.training-path-info a i {
    transition: all .3s ease;
}
.training-path-content:hover::before {
    opacity: 1;
    pointer-events: all;
}
.training-path-content:hover .training-path-info {
    color: #fff;
}
.training-path-content:hover .training-path-info a {
    color: #fff;
}
.training-path-content:hover .training-path-info a i {
    transform: translateX(10px);
}
.training-path-content:hover .training-path-img {
    background: #fff;
}
.training-bottom-info {
    text-align: center;
}
.training-bottom-info .para2 {
    margin: 20px 0;
}
.training-bottom-info .training-strong {
    margin-bottom: 20px;
    font-weight: 600;
}
.training-bottom-info h5 {
    color: #822f3f;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 24px;
}
.training-bottom-info a {
    background: #822f3f;
    padding: 10px 40px;
    border-radius: 5px;
    display: inline-block;
    color: #fff;
    transition: all .3s ease;
}
.training-bottom-info a i {
    transition: all .3s ease;
}
.training-bottom-info a:hover i {
    transform: translateX(10px);
}
/* -------------- TRAINING PATCH ---------- */



/* ------------------ ABOUT-US --------------- */
.about-us {
    background: #F4F4F4;
}
.about-us-left-info h2 {
    margin-bottom: 20px!important;
}
.about-us-left-info p {
    color: #444;
}
.about-us-left-img  {
    margin-top: 35px;
}
/* ------------------ ABOUT-US --------------- */



/* ------------------ TRAINING PERTH2 ------------- */
.training-perth2 h2 {
    margin-bottom: 20px;
}
.training-perth2 p {
    color: #444;
}
.training-perth2-list {
    margin-top: 20px;
}
.perth2-col {
    margin-bottom: 20px;
}
.perth2-col i {
    color: #822f3f;
    font-size: 20px;
}
.training-perth2-list a {
    background: #822f3f;
    color: #fff;
    padding: 10px 40px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 5px;
}
.training-perth2-list a i {
    transition: all .3s ease;
}
.training-perth2-list a:hover i {
    transform: translateX(10px);
}
/* ------------------ TRAINING PERTH2 ------------- */


/* ------------------ SERVICE --------------------- */
.service {
    background: #27323a;
}
.service-top-txt h2 {
    color: #fff;
}
.service-content-info a {
    color: #fff;
    margin-top: 20px;
    display: inline-block;
    font-family: 'Arimo', sans-serif;
}
.service-col {
    margin-bottom: 20px;
}
/* ------------------ SERVICE --------------------- */



/* ----------------- TESTIMONIAL ---------------- */
.testimonial-content {
    height: 100%;
    width: 100%;
    border: 1px solid #802d3d;
    padding: 20px;
}
.testimonial-img {
    text-align: center;
    display: flex;
    justify-content: center;
}
.testimonial-img img {
    max-width: 100px;
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.testimonial-stars i {
    font-size: 25px;
    color: #e7711b;
}
.testimonial-info p {
    text-align: center;
    font-weight: 600;
}
.testi-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}
.testi-bottom img {
    max-width: 16px;
    height: 16px;
    margin-left: 20px;
}
.testi-bottom span {
    color: #dd0332;
    font-weight: 700;
}
.testimonial .owl-nav .owl-prev {
    top: 50%;
    transform: translateY(-50%);
    left: -4rem;
    position: absolute;
    min-width: 40px;
    height: 40px;
    border: 1px solid #dd0332;
}
.testimonial .owl-nav .owl-next {
    top: 50%;
    right: -4rem;
    position: absolute;
    min-width: 40px;
    height: 40px;
    border: 1px solid #dd0332;
}
.testimonial .owl-prev i, 
.testimonial .owl-next i {
    font-size: 30px;
    color: #802d3d;
}
/* ----------------- TESTIMONIAL ---------------- */



/* -------------------- FOOTER ------------------ */
.footer-top {
    position: relative;
    padding: 100px 0 40px 0;
    background: #292A2E;
}
.footer-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.footer-email-us {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-email-us span {
    color: #fff;
}
form {
    margin-left: 20px;
}
.form-container {
    width: 100%;
    height: 50px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
}
.form-container input {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 0 20px;
    outline: none;
}
.form-container button {
    padding: 0 10px;
    color: #dd0332;
    font-size: 20px;
    transform: rotate(-40deg);
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}
.footer-content p {
    color: #fff;
    line-height: 2;
}
.footer-content h4 {
    color: #fff;
}
.footer-content ul li a {
    color: #fff;
}
.footer-content ul li {
    margin-bottom: 8px;
}
.footer-content .follow {
    margin-top: 100px;
}
.footer-content .socials {
    display: flex;
    align-items: center;
}
.footer-content .socials li {
    margin: 0 15px 0 0;
}
.footer-content .socials li a {
    font-size: 20px;
}
.footer-content .info li {
    display: flex; 
    align-items: flex-start;
}
.footer-content .info li i {
    color: #fff;
    min-width: 30px;
    height: 30px;
    font-size: 20px;
}
.footer-content .info li p {
    line-height: 1.4;
}
.footer-row {
    margin-top: 60px;
}
.footer-bottom {
    padding: 40px 0;
    background: #292A2E;
}
.footer-bottom p {
    color: #fff;
}
/* -------------------- FOOTER ------------------ */