/* ===================================================================
   Lélegezz Velem - Style Sheet
   Based on original Yogastic template design system
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Karla:wght@400;500;600&family=Playfair+Display:wght@400;700&display=swap');

/* ===== CSS Variables (matching original Yogastic) ===== */
:root {
    --e-global-color-primary: #242424;
    --e-global-color-secondary: #764979;
    --e-global-color-text: #6b6b6b;
    --e-global-color-accent: #413625;
    --e-global-color-white: #ffffff;
    --e-global-color-soft-orange: #e1ccad;
    --e-global-color-desaturated-magenta: #543458;
    --e-global-color-very-dark-desaturated-magenta: #5c3960;
    --e-global-color-mostly-desaturated-magenta: #8a648d;
    --e-global-color-pale-blue: #f4f7ff;
}

/* ===== Base / Reset ===== */
body {
    font-family: 'Karla', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ===== Typography (matching original Yogastic) ===== */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 82px;
    font-weight: 700;
    color: var(--e-global-color-white);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 55px;
    font-weight: 700;
}

h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

h6 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

/* ===== Animations (matching original Yogastic) ===== */
@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
        transform: translatex(0px);
    }
    50% {
        box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
        transform: translatex(-20px);
    }
    100% {
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
        transform: translatex(0px);
    }
}

@keyframes float_img {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

@keyframes blink {
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes blink {
    100% {
        opacity: 0;
    }
}

/* =========================================================
   HEADER / NAVIGATION (matching original Yogastic)
   ========================================================= */
.banner-section-outer {
    background-image: url('images/banner_section_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.main_header {
    padding: 42px 292px 0;
}

.navbar-collapse ul {
    text-align: center;
    align-items: center;
    display: inherit;
}

.navbar-expand-lg {
    position: relative;
    z-index: 1;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.nav-link {
    padding: 0;
}

.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.navbar-brand .logo-text:hover {
    color: var(--e-global-color-soft-orange);
}

.navbar-nav {
    padding-left: 220px;
}

.navbar-nav li {
    margin: 0 35px 0 18px;
}

.navbar-nav li:first-child {
    margin-left: 0;
}

.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.navbar-nav .nav-item a {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item a:hover {
    color: var(--e-global-color-soft-orange) !important;
    background-color: transparent;
}

.navbar-nav .active > a {
    color: var(--e-global-color-soft-orange) !important;
}

.navbar-nav .nav-item .contact_us {
    background-color: var(--e-global-color-soft-orange);
    color: var(--e-global-color-accent) !important;
    padding: 20px 50px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 0px 30px 0px;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .contact_us:hover {
    color: var(--e-global-color-primary) !important;
    background-color: var(--e-global-color-white);
}

.navbar-nav .active > .contact_us {
    color: var(--e-global-color-primary) !important;
    background-color: var(--e-global-color-white);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
    box-shadow: none;
}

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

.navbar-toggler .navbar-toggler-icon {
    background-image: none;
    width: 30px;
    height: 3px;
    background-color: var(--e-global-color-white);
    display: block;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* =========================================================
   BANNER / HERO SECTION (matching original Yogastic)
   ========================================================= */
.banner-section-outer .banner-section {
    padding: 50px 292px 138px;
    position: relative;
}

.banner-section-outer .banner-section .banner-section-content {
    padding-top: 168px;
}

.banner-section-outer .banner-section h5 {
    text-transform: uppercase;
    color: var(--e-global-color-white);
    letter-spacing: 3.1px;
    margin-bottom: 0;
}

.banner-section-outer .banner-section h1 {
    margin-bottom: 18px;
    margin-left: -2px;
}

.banner-section-outer .banner-section p {
    color: var(--e-global-color-white);
    margin-bottom: 28px;
    padding-right: 60px;
    margin-left: -2px;
}

.banner-section-outer .banner-section-content .btn_wrapper {
    margin-bottom: 100px;
}

.banner-section-outer .btn_wrapper .getstarted_btn {
    position: relative;
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 50px;
    text-align: center;
    color: var(--e-global-color-accent);
    display: inline-block;
    background-color: var(--e-global-color-soft-orange);
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.banner-section-outer .btn_wrapper .getstarted_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
    transform: translateY(-10px);
}

.banner-section-outer .btn_wrapper .getstarted_btn:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

.banner-section-outer .btn_wrapper .getstarted_btn:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--e-global-color-secondary) !important;
    background: var(--e-global-color-white);
    transition: all 0.4s cubic-bezier(0.12, 0, 0.38, 1) 0s;
}

.banner-section-outer .banner-section .banner-section-content .top-btn i {
    font-size: 70px;
    line-height: 70px;
    color: var(--e-global-color-white);
    animation: float_img 6s ease-in-out infinite;
}

.banner-section-outer .banner-section .banner-section-content .top-btn i:hover {
    color: var(--e-global-color-soft-orange);
}

.banner-section-outer .banner-section .banner-section-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.banner-section-outer .banner-section .banner-section-image figure {
    position: absolute;
    top: -5px;
    left: -20px;
}

/* Banner Shape Positions */
.banner-section-outer .banner-section .banner_left_top_shape {
    position: absolute;
    top: -38px;
    left: 0;
}

.banner-section-outer .banner-section .banner_left_bottom_shape {
    position: absolute;
    top: 80px;
    left: 0;
}

.left_shape img {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.banner-section-outer .banner-section .banner_right_top_shape {
    position: absolute;
    bottom: 200px;
    right: 0;
}

.banner-section-outer .banner-section .banner_right_bottom_shape {
    position: absolute;
    bottom: 80px;
    right: 0;
}

.right_shape img {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

/* =========================================================
   SERVICES / TÜNETEK SECTION (matching original Yogastic)
   ========================================================= */
.services_section {
    padding: 120px 0 130px;
    position: relative;
}

.services_section .services_content {
    text-align: center;
}

.services_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.services_content h2 {
    margin-bottom: 20px;
    padding: 0 120px;
    color: var(--e-global-color-primary);
}

.services_content p {
    margin-bottom: 35px;
    padding: 0 110px;
    color: var(--e-global-color-text);
}

.services_section .services_box_content {
    transition: all 0.3s ease-in-out;
}

.services_section .services_box_content .services_box_upper_portion {
    margin-bottom: 10px;
    animation: float_img 6s ease-in-out infinite;
    width: 100%;
    padding-top: 150%;
    position: relative;
    overflow: hidden;
    border-radius: 80px 0;
}

.services_section .services_box_content .services_box_upper_portion figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services_section .services_box_content .services_box_upper_portion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.services_box_content .services_box_lower_portion h3 {
    margin-bottom: 0;
}

.services_box_content .services_box_lower_portion p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.services_box_content .services_box_lower_portion .btn_wrapper {
    display: none;
}

.services_box_content .services_box_lower_portion .btn_wrapper i {
    color: var(--e-global-color-accent);
    background-color: var(--e-global-color-soft-orange);
    font-size: 26px;
    line-height: 26px;
    padding: 12px 15px;
    border-radius: 18px 0 18px 0;
    transition: all ease-in-out 0.3s;
}

.services_box_content:hover {
    transform: translateY(-10px);
}

.services_section .services_box_content:hover .services_box_upper_portion img {
    opacity: 0.6;
}

.services_box_content:hover .services_box_lower_portion .btn_wrapper i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
}

.services_section .services_left_shape {
    position: absolute;
    top: 115px;
    left: 0;
}

/* =========================================================
   ABOUT US / RÓLAM SECTION (matching original Yogastic)
   ========================================================= */
.aboutus_section {
    background-image: url('images/aboutus_background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0 130px;
}

.aboutus_image {
    position: relative;
    z-index: 1;
}

.aboutus_image figure {
    margin-top: -12px;
}

.aboutus_section .aboutus_top_shape {
    position: absolute;
    top: -10px;
    left: -38px;
}

.aboutus_section .aboutus_bottom_shape {
    position: absolute;
    top: 250px;
    left: -65px;
}

.aboutus_content {
    padding-top: 145px;
    padding-left: 16px;
}

.aboutus_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.aboutus_content h2 {
    margin-bottom: 18px;
    color: var(--e-global-color-primary);
}

.aboutus_content p {
    margin-bottom: 15px;
    color: var(--e-global-color-text);
}

.aboutus_content h6 {
    color: var(--e-global-color-secondary);
    margin-left: 16px;
    margin-bottom: 35px;
}

.aboutus_line_wrapper {
    position: relative;
}

.aboutus_line_wrapper .purple_line {
    position: absolute;
    left: 0;
    top: 5px;
}

.aboutus_content .btn_wrapper .get_started_btn {
    position: relative;
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 40px;
    text-align: center;
    color: var(--e-global-color-accent);
    display: inline-block;
    background-color: var(--e-global-color-soft-orange);
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.aboutus_content .btn_wrapper .get_started_btn:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    transform: translateY(-10px);
}

.aboutus_content .btn_wrapper .get_started_btn:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

.aboutus_content .btn_wrapper .get_started_btn:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    transition: all 0.4s cubic-bezier(0.12, 0, 0.38, 1) 0s;
}

/* =========================================================
   SPECIALTIES / A MÓDSZER SECTION (matching original Yogastic)
   ========================================================= */
.our_specialties_section {
    padding: 120px 0 108px;
    position: relative;
}

.our_specialties_heading_content {
    text-align: center;
}

.our_specialties_heading_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.our_specialties_heading_content h2 {
    margin-bottom: 18px;
    color: var(--e-global-color-primary);
}

.our_specialties_heading_content p {
    margin-bottom: 35px;
    padding: 0 95px;
    color: var(--e-global-color-text);
}

.s1 {
    padding-top: 110px;
    padding-right: 25px;
}

.s2 {
    padding-right: 70px;
}

.s3 {
    padding-right: 75px;
}

.s4 {
    padding-right: 25px;
}

.specialties_content_wrapper {
    position: relative;
}

.specialties_content {
    text-align: right;
    margin-bottom: 46px;
    position: relative;
}

.specialties_content .specialties_name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--e-global-color-primary);
    margin-bottom: 6px;
}

.specialties_content .specialties_paragraph {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: var(--e-global-color-text);
    margin-bottom: 0;
}

.specialties_left_line {
    position: absolute;
    top: 120px;
    right: -50px;
}

.specialties_left_line img {
    height: 390px;
}

.specialties_content::after {
    content: "\f058";
    height: 76px;
    width: 76px;
    background-color: var(--e-global-color-secondary);
    position: absolute;
    border-radius: 100%;
    z-index: 1;
    text-align: center;
    padding: 5px;
    font-weight: 400;
    font-size: 42px;
    line-height: 64px;
    color: var(--e-global-color-white);
    font-family: 'Font Awesome 6 Free';
}

.s1::after {
    top: 110px;
    right: -78px;
}

.s2::after {
    top: 0px;
    right: -30px;
}

.s3::after {
    top: 0;
    right: -30px;
}

.s4::after {
    top: 0;
    right: -78px;
}

.specialties_content2 {
    text-align: left;
}

.specialties_content2::after {
    content: "\f058";
    height: 76px;
    width: 76px;
    background-color: var(--e-global-color-secondary);
    position: absolute;
    border-radius: 100%;
    z-index: 1;
    text-align: center;
    padding: 5px;
    font-weight: 400;
    font-size: 42px;
    line-height: 64px;
    color: var(--e-global-color-white);
    font-family: 'Font Awesome 6 Free';
}

.s5 {
    padding-top: 110px;
    padding-left: 24px;
}

.s6 {
    padding-left: 74px;
}

.s7 {
    padding-left: 74px;
}

.s8 {
    padding-left: 24px;
}

.s5::after {
    top: 110px;
    left: -78px;
}

.s6::after {
    top: 0px;
    left: -30px;
}

.s7::after {
    top: 0;
    left: -30px;
}

.s8::after {
    top: 0;
    left: -78px;
}

.specialties_right_line {
    position: absolute;
    top: 120px;
    left: -50px;
}

.specialties_right_line img {
    height: 390px;
}

.our_specialties_section .specialties_image {
    text-align: center;
    animation: float_img 6s ease-in-out infinite;
}

.our_specialties_section .our_specialties_right_shape {
    position: absolute;
    top: 150px;
    right: 0;
}

/* =========================================================
   GET IN TOUCH / KAPCSOLAT SECTION (matching original Yogastic)
   ========================================================= */
.get_in_touch_section {
    padding: 120px 0 130px;
    position: relative;
    overflow: hidden;
}

.get_in_touch_section:before {
    background: var(--e-global-color-soft-orange);
    content: "";
    width: 50%;
    height: 806px;
    top: 0;
    left: 0;
    position: absolute;
}

.get_in_touch_section::after {
    background: url('images/woman-thinking-morning-home-stress-burnout-bad-mental-health-bedroom-female-person-imagine-solution-hope-depression-recovery-apartment-anxiety-mindfulness-bed.jpg');
    background-size: cover;
    background-position: center;
    content: "";
    width: 50%;
    height: 806px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.get_in_touch_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.get_in_touch_content h2 {
    color: var(--e-global-color-primary);
    margin-bottom: 32px;
    padding-right: 25px;
}

.get_in_touch_content input {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 20px;
    border-radius: 0;
    width: 98%;
    margin-bottom: 16px;
    outline: none;
    border: none;
}

.get_in_touch_content .form_style {
    margin-left: -18px;
}

.get_in_touch_content textarea {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border-radius: 0;
    padding: 18px 20px;
    width: 96%;
    outline: none;
    resize: none;
    height: 115px;
    margin-bottom: 42px;
    border: none;
}

.get_in_touch_content .form-control:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

textarea {
    overflow: auto;
}

.get_in_touch_content button {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 40px;
    text-align: center;
    color: var(--e-global-color-white);
    display: inline-block;
    background-color: var(--e-global-color-secondary);
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    outline: none;
    border: none;
    overflow: hidden;
    position: relative;
}

.get_in_touch_content button:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
    transform: translateY(-10px);
}

.get_in_touch_content button:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

.get_in_touch_content button:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
    transition: all 0.4s cubic-bezier(0.12, 0, 0.38, 1) 0s;
}

.get_in_touch_section .get_in_touch_shape {
    position: absolute;
    bottom: 210px;
    left: 0;
}

.get_in_touch_section .get_in_touch_video .video_img {
    position: absolute;
    left: 80px;
    top: 202px;
    margin-right: -30px;
}

/* =========================================================
   FOOTER SECTION (matching original Yogastic)
   ========================================================= */
.footer-section {
    position: relative;
    background-color: var(--e-global-color-secondary);
    padding: 80px 0 0px;
}

.middle-portion {
    margin-bottom: 92px;
}

.middle-portion .footer_logo {
    padding-left: 62px;
    padding-top: 5px;
}

.middle-portion .footer_logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.middle-portion .footer_logo a:hover .logo-text {
    color: var(--e-global-color-soft-orange);
}

.middle-portion .about_col {
    margin-left: -8px;
}

.middle-portion .about_col h4 {
    margin-bottom: 18px;
    padding-left: 2px;
}

.middle-portion h4 {
    color: var(--e-global-color-white);
    margin-bottom: 16px;
}

.middle-portion ul {
    margin-bottom: 0;
}

.middle-portion .about_col ul li p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-white);
    margin-bottom: 24px;
}

.middle-portion ul .icons {
    display: inline-block;
    margin-right: 8px;
}

.middle-portion ul .icons i {
    border-radius: 100%;
    background: var(--e-global-color-desaturated-magenta);
    color: var(--e-global-color-white);
    font-size: 18px;
    line-height: 48px;
    height: 48px;
    width: 48px;
    text-align: center;
    margin-right: 0;
    transition: all 0.3s ease-in-out;
}

.middle-portion ul .icons i:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
    transform: translateY(-5px);
}

.middle-portion li a {
    text-decoration: none;
    color: var(--e-global-color-white);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    transition: all 0.3s ease-in-out;
}

.middle-portion .links_col {
    padding-left: 42px;
}

.middle-portion .contact_col {
    padding-right: 15px;
    margin-left: -42px;
}

.middle-portion .contact_col ul li {
    margin-bottom: 8px;
}

.middle-portion li i {
    color: var(--e-global-color-white);
    margin-right: 12px;
    transition: all 0.3s ease-in-out;
}

.middle-portion li .location {
    margin-right: 15px;
}

.middle-portion .contact_col li span {
    color: var(--e-global-color-white);
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

.middle-portion li a:hover {
    color: var(--e-global-color-soft-orange);
}

.middle-portion .contact_col ul .contact_icons:hover i {
    color: var(--e-global-color-soft-orange);
}

.bottom-portion {
    border-top: 1px solid var(--e-global-color-mostly-desaturated-magenta);
    text-align: center;
}

.copyright {
    padding: 24px 0;
}

.copyright p {
    color: var(--e-global-color-white);
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    margin: 0;
}

.footer_shape figure {
    position: absolute;
    bottom: 120px;
    right: 0;
}

/* =========================================================
   ABOUT PAGE ABOUT US SECTION
   ========================================================= */

.aboutpage_aboutus_section {
    padding: 132px 0;
}

.aboutpage_aboutus_image {
    position: relative;
}

.aboutpage_aboutus_image figure {
    margin-top: -12px;
}

.aboutpage_aboutus_section .aboutus_top_shape {
    position: absolute;
    top: 6px;
    left: -36px;
    z-index: -1;
}

.aboutpage_aboutus_section .aboutus_bottom_shape {
    position: absolute;
    top: 265px;
    left: -62px;
    z-index: -1;
}

.aboutpage_aboutus_content {
    padding-top: 110px;
}

.aboutpage_aboutus_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.aboutpage_aboutus_content h2 {
    margin-bottom: 18px;
    color: var(--e-global-color-primary);
}

.aboutpage_aboutus_content p {
    margin-bottom: 12px;
    color: var(--e-global-color-text);
}

.aboutpage_aboutus_content .margin_bottom {
    margin-bottom: 30px;
}

.aboutpage_aboutus_content .box {
    width: 48%;
    background-color: var(--e-global-color-white);
    display: inline-block;
    align-items: center;
    padding: 20px 24px 15px;
    border-radius: 30px 0 30px 0;
    margin-bottom: 22px;
    margin-right: 12px;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 7%);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.aboutpage_aboutus_content .box i {
    position: absolute;
    left: 22px;
    top: 24px;
    border-radius: 100%;
    border: 2px solid var(--e-global-color-secondary);
    height: 38px;
    width: 38px;
    text-align: center;
    font-size: 18px;
    line-height: 36px;
    color: var(--e-global-color-secondary);
}

.aboutpage_aboutus_content .box span {
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    padding-left: 50px;
    display: inline-block;
    color: var(--e-global-color-primary);
}

.aboutpage_aboutus_content .box:hover {
    transform: translateY(-10px);
}

/* =========================================================
   DISCOUNT / CTA SECTION
   ========================================================= */

.discount_section {
    background-image: url('images/discount_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0 130px;
}

.discount_content {
    text-align: center;
}

.discount_content h2 {
    margin-bottom: 18px;
    color: var(--e-global-color-primary);
    padding: 0 230px;
}

.discount_content span {
    color: var(--e-global-color-secondary);
}

.discount_content p {
    margin-bottom: 35px;
    padding: 0 160px;
    color: var(--e-global-color-text);
}

.discount_content .btn_wrapper .get_started {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 50px;
    text-align: center;
    color: var(--e-global-color-accent);
    display: inline-block;
    background-color: var(--e-global-color-soft-orange);
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.discount_content .btn_wrapper .get_started:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    transform: translateY(-10px);
}

.discount_content .btn_wrapper .get_started:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

.discount_content .btn_wrapper .get_started:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    transition: all 0.4s cubic-bezier(0.12, 0, 0.38, 1) 0s;
}

/* =========================================================
   MISSION SECTION
   ========================================================= */

.mission_section {
    padding: 130px 0 45px;
    position: relative;
}

.mission_section .mission_box {
    width: 100%;
    background-color: var(--e-global-color-white);
    border-radius: 200px 0 200px 0;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 7%);
}

.mission_content {
    padding-top: 150px;
    padding-left: 96px;
}

.mission_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.mission_content h2 {
    margin-bottom: 16px;
    color: var(--e-global-color-primary);
}

.mission_content p {
    margin-bottom: 32px;
    color: var(--e-global-color-text);
    padding-right: 25px;
}

.mission_content .btn_wrapper .read_more_btn {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 44px;
    text-align: center;
    color: var(--e-global-color-white);
    display: inline-block;
    background-color: var(--e-global-color-secondary);
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.mission_content .btn_wrapper .read_more_btn:hover {
    color: var(--e-global-color-accent);
    background-color: var(--e-global-color-soft-orange);
    transform: translateY(-10px);
}

.mission_content .btn_wrapper .read_more_btn:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

.mission_content .btn_wrapper .read_more_btn:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--e-global-color-accent);
    background-color: var(--e-global-color-soft-orange);
    transition: all 0.4s cubic-bezier(0.12, 0, 0.38, 1) 0s;
}

.mission_section .mission_right_shape {
    position: absolute;
    top: 210px;
    right: 0;
}

/* =========================================================
   VISION SECTION
   ========================================================= */

.vision_section {
    padding: 45px 0 130px;
    position: relative;
}

.vision_section .vision_box {
    width: 100%;
    background-color: var(--e-global-color-white);
    border-radius: 200px 0 200px 0;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 7%);
}

.vision_content {
    padding-top: 150px;
    padding-left: 40px;
}

.vision_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.vision_content h2 {
    margin-bottom: 16px;
    color: var(--e-global-color-primary);
}

.vision_content p {
    margin-bottom: 32px;
    color: var(--e-global-color-text);
    padding-right: 60px;
}

.vision_content .btn_wrapper .read_more_btn {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 44px;
    text-align: center;
    color: var(--e-global-color-white);
    display: inline-block;
    background-color: var(--e-global-color-secondary);
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.vision_content .btn_wrapper .read_more_btn:hover {
    color: var(--e-global-color-accent);
    background-color: var(--e-global-color-soft-orange);
    transform: translateY(-10px);
}

.vision_content .btn_wrapper .read_more_btn:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

.vision_content .btn_wrapper .read_more_btn:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--e-global-color-accent);
    background-color: var(--e-global-color-soft-orange);
    transition: all 0.4s cubic-bezier(0.12, 0, 0.38, 1) 0s;
}

.vision_section .vision_left_shape {
    position: absolute;
    top: 140px;
    left: 0;
}

/* =========================================================
   ACHIEVEMENT SECTION
   ========================================================= */

.achievement_section {
    background-color: var(--e-global-color-pale-blue);
    padding: 122px 0 110px;
}

.achievement_content {
    text-align: center;
}

.achievement_content h5 {
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    letter-spacing: 3.1px;
    margin-bottom: 12px;
}

.achievement_content h2 {
    margin-bottom: 18px;
    color: var(--e-global-color-primary);
}

.achievement_content p {
    margin-bottom: 25px;
    padding: 0 85px;
    color: var(--e-global-color-text);
}

.achievement_section .logo_wrapper {
    animation: float_img 6s ease-in-out infinite;
}

.achievement_section .logo_wrapper figure {
    height: 100px;
    line-height: 100px;
}

.achievement_section .craft {
    padding-left: 5px;
}

.achievement_section .q-power {
    margin-left: -2px;
}

.achievement_section .logo {
    padding-left: 20px;
}

.achievement_section .minimum {
    padding-left: 8px;
}

.achievement_section .logoipsum {
    padding-left: 30px;
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES (matching original Yogastic)
   ========================================================= */

/* ----- Max Width: 1440px ----- */
@media screen and (max-width: 1440px) {
    .main_header {
        padding: 35px 85px 0;
    }

    .navbar-nav {
        padding-left: 90px;
    }

    .navbar-nav li {
        margin: 0 10px 0 10px;
    }

    .banner-section-outer .banner-section {
        padding: 50px 85px 138px;
    }

    h1 {
        font-size: 54px;
        line-height: 66px;
    }

    .banner-section-outer .banner-section .banner-section-image img {
        width: 600px;
    }

    .banner-section-outer .banner-section .banner_left_bottom_shape img {
        width: 185px;
    }

    .banner-section-outer .banner-section .banner_right_top_shape {
        bottom: 155px;
    }

    .banner-section-outer .banner-section .banner_right_top_shape img {
        width: 155px;
    }

    .banner-section-outer .banner-section .banner_right_bottom_shape {
        bottom: 40px;
    }

    .services_section .services_left_shape {
        top: 65px;
    }

    .services_section .services_left_shape img {
        width: 230px;
    }

    .our_specialties_section .our_specialties_right_shape {
        top: 110px;
    }

    .get_in_touch_section .get_in_touch_shape {
        bottom: 0;
    }

    .get_in_touch_section .get_in_touch_shape img {
        width: 120px;
    }

    .get_in_touch_section::after {
        width: 58%;
    }

    .get_in_touch_section .get_in_touch_video .video_img {
        left: -15px;
        top: 220px;
        margin-right: 0;
    }

    .footer_shape figure {
        bottom: 85px;
    }

    .footer_shape figure img {
        width: 160px;
    }

    .mission_section .mission_right_shape {
        top: 15px;
    }

    .mission_section .mission_right_shape img {
        width: 90px;
    }

    .vision_section .vision_left_shape {
        top: unset;
        bottom: 15px;
    }

    .vision_section .vision_left_shape img {
        width: 95px;
    }
}

/* ----- Max Width: 1199px ----- */
@media screen and (max-width: 1199px) {
    .main_header {
        padding: 30px 60px 0;
    }

    .navbar-brand .logo-text {
        font-size: 24px;
    }

    .navbar-nav {
        padding-left: 36px;
    }

    .navbar-nav li {
        margin: 0 14px 0 10px;
    }

    .navbar-nav .nav-item a {
        font-size: 16px;
        line-height: 16px;
    }

    .navbar-nav .nav-item .contact_us {
        padding: 18px 40px;
    }

    .banner-section-outer .banner-section {
        padding: 90px 60px 100px;
    }

    .banner-section-outer .banner-section .banner-section-content {
        padding-top: 115px;
    }

    h5 {
        font-size: 18px;
        line-height: 26px;
    }

    .banner-section-outer .banner-section h1 {
        margin-bottom: 15px;
    }

    h1 {
        font-size: 42px;
        line-height: 62px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
    }

    .banner-section-outer .banner-section p {
        margin-bottom: 25px;
        padding-right: 0;
    }

    .banner-section-outer .banner-section-content .btn_wrapper {
        margin-bottom: 40px;
    }

    .banner-section-outer .btn_wrapper .getstarted_btn {
        font-size: 20px;
        line-height: 20px;
        padding: 22px 45px;
    }

    .banner-section-outer .banner-section .banner-section-content .top-btn i {
        font-size: 65px;
        line-height: 65px;
    }

    .banner-section-outer .banner-section .banner-section-image figure {
        top: 0;
        left: 0;
    }

    .banner-section-outer .banner-section .banner-section-image img {
        width: 470px;
    }

    .banner-section-outer .banner-section .banner_left_top_shape {
        top: -42px;
    }

    .banner-section-outer .banner-section .banner_left_top_shape img {
        width: 70px;
    }

    .banner-section-outer .banner-section .banner_left_bottom_shape {
        top: 60px;
    }

    .banner-section-outer .banner-section .banner_left_bottom_shape img {
        width: 160px;
    }

    .banner-section-outer .banner-section .banner_right_top_shape {
        bottom: 120px;
    }

    .banner-section-outer .banner-section .banner_right_top_shape img {
        width: 95px;
    }

    .banner-section-outer .banner-section .banner_right_bottom_shape {
        bottom: 25px;
    }

    .banner-section-outer .banner-section .banner_right_bottom_shape img {
        width: 55px;
    }

    .services_section {
        padding: 95px 0 100px;
    }

    .services_content h5 {
        margin-bottom: 5px;
    }

    h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .services_content h2 {
        margin-bottom: 15px;
    }

    .services_content p {
        margin-bottom: 30px;
        padding: 0 70px;
    }

    h3 {
        font-size: 18px;
        line-height: 45px;
    }

    .services_box_content .services_box_lower_portion p {
        font-size: 16px;
        line-height: 22px;
    }

    .services_box_content .services_box_lower_portion .btn_wrapper i {
        font-size: 22px;
        line-height: 22px;
        padding: 10px 12px;
    }

    .services_section .services_left_shape {
        top: 60px;
    }

    .services_section .services_left_shape img {
        width: 170px;
    }

    .aboutus_section {
        padding: 85px 0 100px;
    }

    .aboutus_image figure {
        margin-top: 0;
    }

    .aboutus_section .aboutus_top_shape {
        top: -10px;
        left: -15px;
    }

    .aboutus_section .aboutus_top_shape img {
        width: 250px;
    }

    .aboutus_section .aboutus_bottom_shape {
        top: 230px;
        left: -25px;
    }

    .aboutus_section .aboutus_bottom_shape img {
        width: 115px;
    }

    .aboutus_content {
        padding-top: 130px;
        padding-left: 10px;
    }

    .aboutus_content h5 {
        margin-bottom: 5px;
    }

    .aboutus_content h2 {
        margin-bottom: 15px;
    }

    .aboutus_content p {
        margin-bottom: 12px;
    }

    h6 {
        font-size: 18px;
        line-height: 26px;
    }

    .aboutus_content h6 {
        margin-left: 12px;
        margin-bottom: 25px;
    }

    .aboutus_content .btn_wrapper .get_started_btn {
        font-size: 20px;
        line-height: 20px;
        padding: 22px 35px;
    }

    .our_specialties_section {
        padding: 95px 0 75px;
    }

    .our_specialties_heading_content h5 {
        margin-bottom: 8px;
    }

    .our_specialties_heading_content h2 {
        margin-bottom: 15px;
    }

    .our_specialties_heading_content p {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .specialties_content {
        margin-bottom: 42px;
    }

    .s1 {
        padding-right: 10px;
    }

    .specialties_content .specialties_name {
        font-size: 16px;
        line-height: 22px;
    }

    .specialties_content .specialties_paragraph {
        font-size: 16px;
        line-height: 20px;
    }

    .s1::after {
        right: -70px;
    }

    .specialties_content::after {
        height: 65px;
        width: 65px;
        font-size: 38px;
        line-height: 56px;
    }

    .s2 {
        padding-right: 45px;
    }

    .s3 {
        padding-right: 45px;
    }

    .s4::after {
        right: -65px;
    }

    .specialties_left_line img {
        height: 380px;
    }

    .s5 {
        padding-left: 10px;
    }

    .s5::after {
        left: -70px;
    }

    .s6 {
        padding-left: 48px;
    }

    .s6::after {
        left: -28px;
    }

    .s7 {
        padding-left: 48px;
    }

    .s7::after {
        left: -28px;
    }

    .s8 {
        padding-left: 24px;
    }

    .s8::after {
        left: -65px;
    }

    .specialties_right_line img {
        height: 380px;
    }

    .our_specialties_section .our_specialties_right_shape {
        top: 115px;
    }

    .our_specialties_section .our_specialties_right_shape img {
        width: 240px;
    }

    .get_in_touch_section {
        padding: 95px 0 100px;
    }

    .get_in_touch_section:before {
        width: 52%;
    }

    .get_in_touch_content h5 {
        margin-bottom: 8px;
    }

    .get_in_touch_content h2 {
        margin-bottom: 28px;
    }

    .get_in_touch_content input {
        font-size: 16px;
        line-height: 22px;
        padding-top: 26px;
        padding-bottom: 26px;
        width: 100%;
        margin-bottom: 14px;
    }

    .get_in_touch_content .form_style {
        margin-left: -10px;
    }

    .get_in_touch_content textarea {
        font-size: 16px;
        line-height: 22px;
        padding: 16px 20px;
        width: 98%;
        height: 110px;
        margin-bottom: 35px;
    }

    .get_in_touch_content button {
        font-size: 20px;
        line-height: 20px;
        padding: 22px 35px;
    }

    .get_in_touch_section .get_in_touch_video .video_img {
        left: -50px;
        top: 260px;
    }

    .get_in_touch_section .get_in_touch_video .video_img img {
        width: 135px;
    }

    .get_in_touch_section .get_in_touch_shape img {
        width: 92px;
    }

    .get_in_touch_section::after {
        width: 68%;
    }

    .footer-section {
        padding: 60px 0 0px;
    }

    .middle-portion .footer_logo {
        padding-left: 20px;
        padding-top: 0px;
    }

    .middle-portion .about_col {
        margin-left: -25px;
    }

    .middle-portion .about_col h4 {
        margin-bottom: 16px;
        padding-left: 0px;
    }

    .middle-portion .about_col ul li p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .middle-portion ul .icons {
        margin-right: 5px;
    }

    .middle-portion ul .icons i {
        font-size: 16px;
        line-height: 44px;
        height: 44px;
        width: 44px;
    }

    .middle-portion .links_col {
        padding-left: 0px;
    }

    .middle-portion h4 {
        margin-bottom: 14px;
    }

    .middle-portion li a {
        font-size: 16px;
        line-height: 30px;
    }

    .middle-portion .contact_col {
        padding-right: 0px;
        margin-left: -40px;
    }

    .middle-portion li i {
        margin-right: 10px;
    }

    .middle-portion li .location {
        margin-right: 10px;
    }

    .middle-portion .contact_col li span {
        font-size: 16px;
        line-height: 22px;
    }

    .copyright {
        padding: 20px 0;
    }

    .copyright p {
        line-height: 20px;
    }

    .footer_shape figure {
        bottom: 70px;
    }

    .footer_shape figure img {
        width: 120px;
    }

    h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .aboutpage_aboutus_section {
        padding: 100px 0;
    }

    .aboutpage_aboutus_section .aboutus_top_shape {
        top: 15px;
        left: -12px;
    }

    .aboutpage_aboutus_section .aboutus_top_shape img {
        width: 220px;
    }

    .aboutpage_aboutus_section .aboutus_bottom_shape {
        top: 240px;
        left: -15px;
    }

    .aboutpage_aboutus_section .aboutus_bottom_shape img {
        width: 100px;
    }

    .aboutpage_aboutus_content h5 {
        margin-bottom: 8px;
    }

    .aboutpage_aboutus_content h2 {
        margin-bottom: 12px;
    }

    .aboutpage_aboutus_content p {
        margin-bottom: 8px;
    }

    .aboutpage_aboutus_content .margin_bottom {
        margin-bottom: 25px;
    }

    .aboutpage_aboutus_content .box {
        width: 47%;
        padding: 20px 13px 15px;
    }

    .aboutpage_aboutus_content .box i {
        left: 15px;
        top: 25px;
        height: 34px;
        width: 34px;
        font-size: 16px;
        line-height: 32px;
    }

    .aboutpage_aboutus_content .box span {
        font-size: 16px;
        line-height: 19px;
        padding-left: 45px;
    }

    .discount_section {
        padding: 95px 0 100px;
    }

    .discount_content h2 {
        padding: 0 100px;
    }

    .discount_content p {
        padding: 0 80px;
    }

    .discount_content .btn_wrapper .get_started {
        font-size: 20px;
        line-height: 20px;
        padding: 22px 45px;
    }

    .mission_section {
        padding: 100px 0 50px;
    }

    .mission_content {
        padding-top: 135px;
        padding-left: 70px;
    }

    .mission_content h5 {
        margin-bottom: 8px;
    }

    .mission_content h2 {
        margin-bottom: 12px;
    }

    .mission_content p {
        margin-bottom: 28px;
        padding-right: 18px;
    }

    .mission_content .btn_wrapper .read_more_btn {
        font-size: 20px;
        line-height: 20px;
        padding: 22px 40px;
    }

    .mission_section .mission_right_shape {
        display: none;
    }

    .vision_section {
        padding: 50px 0 100px;
    }

    .vision_content {
        padding-top: 80px;
        padding-left: 15px;
    }

    .vision_content h5 {
        margin-bottom: 8px;
    }

    .vision_content h2 {
        margin-bottom: 12px;
    }

    .vision_content p {
        margin-bottom: 28px;
        padding-right: 40px;
    }

    .vision_content .btn_wrapper .read_more_btn {
        font-size: 20px;
        line-height: 20px;
        padding: 22px 40px;
    }

    .vision_section .vision_left_shape {
        display: none;
    }

    .achievement_section {
        padding: 95px 0 80px;
    }
}

/* ----- Max Width: 991px ----- */
@media screen and (max-width: 991px) {
    .main_header {
        padding: 25px 30px 0;
    }

    .navbar-nav {
        padding-left: 0;
        padding-top: 20px;
    }

    .navbar-nav li {
        margin: 5px 0;
    }

    .navbar-nav .nav-item a {
        color: var(--e-global-color-primary) !important;
    }

    .navbar-nav .active > a {
        color: var(--e-global-color-secondary) !important;
    }

    .navbar-nav .nav-item a:hover {
        color: var(--e-global-color-secondary) !important;
    }

    .navbar-collapse {
        background-color: var(--e-global-color-white);
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    .navbar-toggler .navbar-toggler-icon {
        background-color: var(--e-global-color-white);
    }

    .navbar-nav .nav-item .contact_us {
        padding: 15px 30px;
        display: inline-block;
        margin-top: 10px;
    }

    .banner-section-outer .banner-section {
        padding: 40px 30px 60px;
    }

    .banner-section-outer .banner-section .banner-section-content {
        padding-top: 80px;
    }

    h1 {
        font-size: 36px;
        line-height: 48px;
    }

    h2 {
        font-size: 34px;
        line-height: 44px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .banner-section-outer .banner-section-content .btn_wrapper {
        margin-bottom: 30px;
    }

    .banner-section-outer .btn_wrapper .getstarted_btn {
        font-size: 18px;
        line-height: 18px;
        padding: 20px 35px;
    }

    .banner-section-outer .banner-section .banner-section-image {
        animation: none;
    }

    .banner-section-outer .banner-section .banner-section-image figure {
        position: relative;
        top: 0;
        left: 0;
    }

    .banner_left_top_shape,
    .banner_left_bottom_shape,
    .banner_right_top_shape,
    .banner_right_bottom_shape {
        display: none;
    }

    .services_section {
        padding: 80px 0;
    }

    .services_content h2 {
        padding: 0 30px;
    }

    .services_content p {
        padding: 0 20px;
    }

    .services_section .services_left_shape {
        display: none;
    }

    .aboutus_section {
        padding: 80px 0;
    }

    .aboutus_content {
        padding-top: 40px;
        padding-left: 0;
    }

    .aboutus_section .aboutus_top_shape,
    .aboutus_section .aboutus_bottom_shape {
        display: none;
    }

    .our_specialties_section {
        padding: 80px 0 60px;
    }

    .our_specialties_heading_content p {
        padding: 0 15px;
    }

    .specialties_content::after,
    .specialties_content2::after {
        display: none;
    }

    .specialties_left_line,
    .specialties_right_line {
        display: none;
    }

    .s1, .s2, .s3, .s4 {
        padding-right: 0;
        padding-top: 0;
        text-align: center;
    }

    .s5, .s6, .s7, .s8 {
        padding-left: 0;
        padding-top: 0;
        text-align: center;
    }

    .specialties_content {
        text-align: center;
        margin-bottom: 30px;
    }

    .specialties_content2 {
        text-align: center;
    }

    .our_specialties_section .our_specialties_right_shape {
        display: none;
    }

    .get_in_touch_section {
        padding: 80px 0;
    }

    .get_in_touch_section:before {
        width: 100%;
        height: 100%;
    }

    .get_in_touch_section::after {
        display: none;
    }

    .get_in_touch_content input {
        width: 100%;
    }

    .get_in_touch_content .form_style {
        margin-left: 0;
    }

    .get_in_touch_content textarea {
        width: 100%;
    }

    .get_in_touch_content button {
        font-size: 18px;
        line-height: 18px;
        padding: 20px 32px;
    }

    .get_in_touch_section .get_in_touch_video {
        display: none;
    }

    .get_in_touch_section .get_in_touch_shape {
        display: none;
    }

    .footer-section {
        padding: 60px 0 0;
    }

    .middle-portion {
        margin-bottom: 40px;
    }

    .middle-portion .footer_logo {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .middle-portion .about_col {
        margin-left: 0;
    }

    .middle-portion .links_col {
        padding-left: 15px;
    }

    .middle-portion .contact_col {
        margin-left: 0;
    }

    .footer_shape figure {
        display: none;
    }

    .aboutpage_aboutus_section {
        padding: 75px 0 55px;
    }

    .aboutpage_aboutus_section .aboutus_top_shape {
        top: -15px;
        left: -20px;
    }

    .aboutpage_aboutus_section .aboutus_top_shape img {
        width: 180px;
    }

    .aboutpage_aboutus_section .aboutus_bottom_shape {
        top: 165px;
        left: -25px;
    }

    .aboutpage_aboutus_section .aboutus_bottom_shape img {
        width: 80px;
    }

    .aboutpage_aboutus_content {
        padding-top: 55px;
    }

    .aboutpage_aboutus_content h5 {
        margin-bottom: 5px;
    }

    .aboutpage_aboutus_content h2 {
        margin-bottom: 10px;
    }

    .aboutpage_aboutus_content .margin_bottom {
        margin-bottom: 20px;
    }

    .aboutpage_aboutus_content .box {
        width: 47%;
        padding: 15px 6px 15px;
        margin-bottom: 18px;
        margin-right: 12px;
    }

    .aboutpage_aboutus_content .box i {
        left: 10px;
        top: 22px;
        height: 30px;
        width: 30px;
        font-size: 14px;
        line-height: 28px;
    }

    .aboutpage_aboutus_content .box span {
        padding-left: 40px;
    }

    .discount_section {
        padding: 65px 0 70px;
    }

    .discount_content h2 {
        padding: 0 40px;
    }

    .discount_content p {
        padding: 0 30px;
    }

    .discount_content .btn_wrapper .get_started {
        font-size: 18px;
        line-height: 18px;
        padding: 20px 40px;
    }

    .mission_section {
        padding: 70px 0 35px;
    }

    .mission_section .mission_box {
        border-radius: 140px 0 140px 0;
    }

    .mission_content {
        padding-top: 70px;
        padding-left: 45px;
    }

    .mission_content h5 {
        margin-bottom: 5px;
    }

    .mission_content h2 {
        margin-bottom: 10px;
    }

    .mission_content p {
        margin-bottom: 22px;
        padding-right: 0px;
    }

    .mission_content .btn_wrapper .read_more_btn {
        font-size: 18px;
        line-height: 18px;
        padding: 20px 35px;
    }

    .vision_section {
        padding: 35px 0 70px;
    }

    .vision_section .vision_box {
        border-radius: 120px 0 120px 0;
    }

    .vision_content {
        padding-top: 40px;
        padding-left: 0px;
    }

    .vision_content h5 {
        margin-bottom: 5px;
    }

    .vision_content h2 {
        margin-bottom: 10px;
    }

    .vision_content p {
        margin-bottom: 22px;
        padding-right: 30px;
    }

    .vision_content .btn_wrapper .read_more_btn {
        font-size: 18px;
        line-height: 18px;
        padding: 20px 35px;
    }

    .achievement_section {
        padding: 65px 0 50px;
    }
}

/* ----- Max Width: 767px ----- */
@media screen and (max-width: 767px) {
    .main_header {
        padding: 20px 15px 0;
    }

    h1 {
        font-size: 32px;
        line-height: 42px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
    }

    h3 {
        font-size: 18px;
        line-height: 35px;
    }

    .banner-section-outer .banner-section {
        padding: 40px 30px 60px;
    }

    .banner-section-outer .banner-section .banner-section-content {
        padding-top: 60px;
    }

    .banner-section-outer .banner-section p {
        padding-right: 0;
    }

    .banner-section-outer .banner-section-content .btn_wrapper {
        margin-bottom: 20px;
    }

    .banner-section-outer .banner-section .banner-section-content .top-btn i {
        font-size: 50px;
        line-height: 50px;
    }

    .services_section {
        padding: 40px 30px 60px;
    }

    .services_section .services_box_content .services_box_upper_portion {
        padding-top: 66.66%;
        animation: none;
    }

    .services_content h2 {
        padding: 0;
    }

    .services_content p {
        padding: 0;
    }

    .aboutus_section {
        padding: 40px 30px 60px;
    }

    .aboutus_content {
        text-align: center;
    }

    .aboutus_content h6 {
        margin-left: 0;
    }

    .our_specialties_section {
        padding: 40px 30px 60px;
    }

    .our_specialties_heading_content p {
        padding: 0;
    }

    .get_in_touch_section {
        padding: 40px 30px 60px;
    }

    .get_in_touch_content h2 {
        padding-right: 0;
    }

    .footer-section {
        padding: 40px 30px 60px;
    }

    .footer-section .row > div {
        text-align: center;
        margin-bottom: 20px;
    }

    .middle-portion {
        margin-bottom: 20px;
    }

    .aboutpage_aboutus_section {
        padding: 40px 30px 60px;
    }

    .aboutpage_aboutus_image {
        margin-bottom: 30px;
    }

    .aboutpage_aboutus_section .aboutus_top_shape {
        top: 55px;
        left: -12px;
    }

    .aboutpage_aboutus_section .aboutus_top_shape img {
        width: 160px;
    }

    .aboutpage_aboutus_section .aboutus_bottom_shape {
        top: 205px;
        left: -15px;
    }

    .aboutpage_aboutus_section .aboutus_bottom_shape img {
        width: 65px;
    }

    .aboutpage_aboutus_content {
        padding-top: 0;
        text-align: center;
    }

    .aboutpage_aboutus_content h2 {
        margin-bottom: 8px;
    }

    .aboutpage_aboutus_content p {
        margin-bottom: 5px;
    }

    .aboutpage_aboutus_content .margin_bottom {
        margin-bottom: 18px;
    }

    .aboutpage_aboutus_content .box {
        width: 45%;
        padding: 12px 26px 12px;
        margin-bottom: 15px;
        margin-right: 10px;
        text-align: left;
    }

    .aboutpage_aboutus_content .box i {
        left: 8px;
        top: 18px;
        height: 26px;
        width: 26px;
        font-size: 12px;
        line-height: 24px;
    }

    .aboutpage_aboutus_content .box span {
        font-size: 14px;
        line-height: 18px;
        padding-left: 22px;
    }

    .discount_section {
        padding: 40px 30px 60px;
    }

    .discount_content h2 {
        padding: 0;
    }

    .discount_content p {
        padding: 0;
    }

    .discount_content .btn_wrapper .get_started {
        font-size: 16px;
        line-height: 16px;
        padding: 18px 35px;
    }

    .mission_section {
        padding: 40px 30px 30px;
    }

    .mission_section .mission_box {
        border-radius: 185px 0 185px 0;
    }

    .mission_content {
        padding-top: 60px;
        padding-left: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .mission_content h2 {
        margin-bottom: 8px;
    }

    .mission_content p {
        margin-bottom: 18px;
        padding: 0 50px;
    }

    .mission_content .btn_wrapper .read_more_btn {
        font-size: 16px;
        line-height: 16px;
        padding: 18px 32px;
    }

    .vision_section {
        padding: 30px 30px 60px;
    }

    .vision_section .vision_box {
        border-radius: 185px 0 185px 0;
    }

    .vision_section .vision_image {
        margin-bottom: 30px;
    }

    .vision_content {
        padding-top: 0;
        text-align: center;
        padding-left: 0px;
        margin-bottom: 30px;
    }

    .vision_content h2 {
        margin-bottom: 8px;
    }

    .vision_content p {
        margin-bottom: 18px;
        padding: 0 50px;
    }

    .vision_content .btn_wrapper .read_more_btn {
        font-size: 16px;
        line-height: 16px;
        padding: 18px 32px;
    }

    .achievement_section {
        padding: 40px 30px 60px;
    }

    .achievement_content p {
        padding: 0;
    }

    .achievement_section .logo_wrapper {
        text-align: center;
    }
}

/* ----- Max Width: 575px ----- */
@media screen and (max-width: 575px) {
    h1 {
        font-size: 28px;
        line-height: 36px;
    }

    h2 {
        font-size: 26px;
        line-height: 34px;
    }

    h5 {
        font-size: 16px;
        line-height: 22px;
    }

    .banner-section-outer .btn_wrapper .getstarted_btn {
        font-size: 16px;
        line-height: 16px;
        padding: 18px 30px;
    }

    .aboutus_content .btn_wrapper .get_started_btn {
        font-size: 18px;
        line-height: 18px;
        padding: 20px 30px;
    }

    .get_in_touch_content button {
        font-size: 16px;
        line-height: 16px;
        padding: 18px 28px;
    }

    .navbar-brand .logo-text {
        font-size: 22px;
    }

    .services_section {
        padding: 40px 30px 60px;
    }

    .aboutus_section {
        padding: 40px 30px 60px;
    }

    .our_specialties_section {
        padding: 40px 30px 60px;
    }

    .aboutpage_aboutus_section {
        padding: 40px 30px 60px;
    }

    .aboutpage_aboutus_section .aboutus_top_shape {
        display: none;
    }

    .aboutpage_aboutus_section .aboutus_bottom_shape {
        display: none;
    }

    .aboutpage_aboutus_content .margin_bottom {
        margin-bottom: 15px;
    }

    .aboutpage_aboutus_content .box {
        width: 40%;
        padding: 12px 15px 12px;
        margin-bottom: 18px;
        margin-right: 15px;
    }

    .aboutpage_aboutus_content .box i {
        left: 10px;
        top: 18px;
        height: 22px;
        width: 22px;
        font-size: 12px;
        line-height: 20px;
    }

    .aboutpage_aboutus_content .box span {
        font-size: 12px;
        line-height: 16px;
        padding-left: 25px;
    }

    .discount_section {
        padding: 40px 30px 60px;
    }

    .discount_content .btn_wrapper .get_started {
        font-size: 14px;
        line-height: 14px;
        padding: 16px 30px;
    }

    .mission_section .mission_box {
        border-radius: 118px 0 118px 0;
    }

    .mission_content {
        padding-top: 50px;
    }

    .mission_content p {
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .mission_content .btn_wrapper .read_more_btn {
        font-size: 14px;
        line-height: 14px;
        padding: 16px 30px;
    }

    .vision_section .vision_box {
        border-radius: 118px 0 118px 0;
    }

    .vision_content p {
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .vision_content .btn_wrapper .read_more_btn {
        font-size: 14px;
        line-height: 14px;
        padding: 16px 30px;
    }

    .achievement_section {
        padding: 40px 30px 60px;
    }

    .footer-section {
        padding: 40px 30px 60px;
    }
}
