@charset "utf-8";
/* CSS Document */

/******************************

COLOR PALETTE




[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
        3.1 Logo
        3.2 Main Nav
        3.3 Header Side
        3.4 Hamburger
4. Menu
        4.1 Menu Social
        4.2 Menu copyright
5. Home
        5.1 Hero Slider
        5.2 Hero Slider Navigation
6. Hero Boxes
7. Page Section
8. Buttons
9. Popular
10. Register
11. Search
        11.1 Search Form
12. Services
13. Testimonials
14. Events
15. Footer
        15.1 Newsletter
        15.2 Footer Content
        15.3 Footer Copyright


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800|Roboto:400,500,700');

/*********************************
2. Body and some general stuff
*********************************/

*
{
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #FFFFFF;
    color: #a5a5a5;
}
div
{
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
    list-style: none;
    margin-bottom: 0px;
}
p
{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 2.29;
    font-weight: 400;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
    display: inline;
    position: relative;
    color: inherit;
     border-bottom: solid 1px #003366;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
    position: relative;
    color: #FF6347;
}
p a:hover
{
    color: #FFFFFF;
    background: #003366;
}
p a:hover::after
{
    opacity: 0.2;
}
::selection
{
    background: #FFD266;
    color: #C88E00;
}
p::selection
{
    background: #FFD266;
    color: #C88E00;
}
h1{font-size: 36px;}
h2{font-size: 22px;}
h3{font-size: 18px;}
h4{font-size: 14px;}
h5{font-size: 11px;}
h1, h2, h3, h4, h5, h6
{
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{

}
::-webkit-input-placeholder
{
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #a5a5a5 !important;
}
:-moz-placeholder /* older Firefox*/
{
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #a5a5a5 !important;
}
::-moz-placeholder /* Firefox 19+ */ 
{
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #a5a5a5 !important;
} 
:-ms-input-placeholder
{ 
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #a5a5a5 !important;
}
::input-placeholder
{
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #a5a5a5 !important;
}
.form-control
{
    margin-bottom: 15px;
}
section
{
    display: block;
    position: relative;
    box-sizing: border-box;
}
.clear
{
    clear: both;
}
.clearfix::before, .clearfix::after
{
    content: "";
    display: table;
}
.clearfix::after
{
    clear: both;
}
.clearfix
{
    zoom: 1;
}
.float_left
{
    float: left;
}
.float_right
{
    float: right;
}
.trans_200
{
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.trans_300
{
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.trans_400
{
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.trans_500
{
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.fill_height
{
    height: 100%;
}
.super_container
{
    width: 100%;
    overflow: hidden;
}
.prlx_parent
{
    overflow: hidden;
}
.prlx
{
    height: 130% !important;
}
.nopadding
{
    padding: 0px !important;
}

/*********************************
3. Header
*********************************/

.header
{
    position: fixed;
    top: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1318px;
    height: 70px;
    background: #FFFFFF;
    z-index: 10;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.header.scrolled
{	
    top: 0px;
}
.header.scrolled .header_content::before
{
    box-shadow: 0px 20px 49px rgba(0,0,0,0.17);
}
.header_content
{
    width: calc(100% - 279px);
    height: 100%;
    background: #003366;
}
.main_nav_item  a{
    color:#fff;
}
.header_content::before
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    box-shadow: 0px 20px 49px rgba(0,0,0,0.67);
    z-index: -1;
}

/*********************************
3.1 Logo
*********************************/

.logo_container
{
    display: inline-block;
    padding-left: 76px;
}
.logo span
{
    font-family: 'initial';
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    vertical-align: middle;
    margin-left: 3px;
}

/*********************************
3.2 Main Nav
*********************************/

.main_nav_container
{
    display: inline-block;
    margin-left: auto;
    padding-right: 93px;
}
.main_nav
{
    margin-top: 0px;
}
.main_nav_item
{
    display: inline-block;
    margin-right: 20px;
}
.main_nav_item:last-child
{
    margin-right: 0px;
}
.main_nav_item a
{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.main_nav_item a:hover
{
    color: #8ecd44;
}

/*********************************
3.3 Header Side
*********************************/

.header_side
{
    width: 279px;
    height: 100%;
    background: #8ecd44;
}
.header_side img
{
    width: 29px;
    height: 29px;
}
.header_side span
{
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    padding-left: 12px;
}

/*********************************
3.4 Hamburger
*********************************/

.hamburger_container
{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    display: none;
    cursor: pointer;
}
.hamburger_container i
{
    font-size: 24px;
    padding: 10px;
    color: #FFF;
}
.hamburger_container:hover i
{
    color: #8ecd44;
}

/*********************************
4. Menu
*********************************/

.menu_container
{
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 12;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    visibility: hidden;
    opacity: 0;
}
.menu_container.active
{
    visibility: visible;
    opacity: 1;
    right: 0;
}
.menu
{
    position: absolute;
    top:150px;
    left: 0;
    padding-left: 15%;
}
.menu_list
{
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 1000ms 600ms ease;
    opacity: 0;
}
.menu_container.active .menu_list
{
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
.menu_item
{
    margin-bottom: 9px;
}
.menu_item a
{
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_item a:hover
{
    color: #8ecd44;
}
.menu_close_container
{
    position: absolute;
    top: 86px;
    right: 79px;
    width: 21px;
    height: 21px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu_close
{
    top: 9px;
    width: 21px;
    height: 3px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_close::after
{
    display: block;
    position: absolute;
    top: -9px;
    left: 9px;
    content: '';
    width: 3px;
    height: 21px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after
{
    background: #8ecd44;
}

/*********************************
4.1 Menu Social
*********************************/

.menu_social_container
{
    margin-top: 100px;
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 1000ms 1000ms ease;
    -moz-transition: all 1000ms 1000ms ease;
    -ms-transition: all 1000ms 1000ms ease;
    -o-transition: all 1000ms 1000ms ease;
    transition: all 1000ms 1000ms ease;
    opacity: 0;
    padding-left: 4px;
}
.menu_social_item
{
    display: inline-block;
    margin-right: 30px;
}
.menu_social_item a i
{
    color: #3a3a3a;
}
.menu_social_item a i:hover
{
    color: #8ecd44;
}
.menu_container.active .menu_social_container
{
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

/*********************************
4.2 Menu copyright
*********************************/

.menu_copyright
{
    margin-top: 60px;
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 1000ms 1200ms ease;
    -moz-transition: all 1000ms 1200ms ease;
    -ms-transition: all 1000ms 1200ms ease;
    -o-transition: all 1000ms 1200ms ease;
    transition: all 1000ms 1200ms ease;
    opacity: 0;
    padding-left: 3px;
}
.menu_container.active .menu_copyright
{
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

/*********************************
5. Home
*********************************/

.home
{
    width: 100%;
    height: 100vh;
}

/*********************************
5.1 Hero Slider
*********************************/

.hero_slider_container
{
    width: 100%;
    height: 100%;
}
.hero_slide
{
    width: 100%;
    height: 100%;
}
.hero_slide_background
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.hero_slide_container
{
    width: 100%;
    height: 100vh;
}
.hero_slide_content
{
    max-width: 80%;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
}
.hero_slide_content h1
{
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    background: #ffb606;
    padding: 5px
}
.hero_slide_content h1 span
{
    background: #8ecd44;
    padding: 5px;
}
.animated
{
    -webkit-animation-duration : 1s !important;
    animation-duration : 1s !important;
    -webkit-animation-delay : 500ms;
    animation-delay : 500ms;
}
.animate-out
{
    -webkit-animation-delay : 0ms;
    animation-delay : 0ms;
}

/*********************************
5.2 Hero Slider Navigation
*********************************/

.hero_slider_nav
{
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% + 30px));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.30);
    border: 2px solid rgba(255, 255, 255, 0.40);
    z-index: 9;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}
.hero_slider_nav:hover
{
    background: #8ecd44;
    border-color: #8ecd44;
}
.hero_slider_left::before,
.hero_slider_right::before
{
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    border-style: solid;
    border-color: #ffffff;
}
.hero_slider_left::before
{
    border-width: 0 0 2px 2px;
    transform: rotate(45deg);
    margin-left: 4px;
}
.hero_slider_right::before
{
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    margin-right: 4px;
}
.hero_slider_left
{
    left: 28px;
}
.hero_slider_right
{
    right: 28px;
}

/*********************************
6. Hero Boxes
*********************************/

.hero_boxes
{
    width: 100%;
    height: 0px;
    z-index: 9;
    padding-top: 0px;
}
.hero_boxes_inner
{
    position: absolute;
    top: -212px;
    left: 0;
    width: 100%;
}
.hero_box
{
    width: 100%;
    height: 161px;
    background: #1a1a1a;
    padding-left: 50px;
    cursor: pointer;
}
.hero_box:hover
{
    background: #8ecd44;
}
.hero_box img
{
    width: 62px;
    height: auto;
    margin-top: -6px;
}
.svg path
{
    fill: #8ecd44;
}
.hero_box svg
{
    width: 62px;
    height: auto;
}
.hero_box:hover svg path
{
    fill: #FFFFFF;
}
.hero_box_content
{
    padding-left: 13px;
    padding-top: 11px;
    margin-top: -6px;
}
.hero_box_title
{
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 7px;
}
.hero_box_link
{
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-left: 3px;
}
.hero_box_link:hover
{
    color: #1a1a1a;
}

/*********************************
7. Page Section
*********************************/


.page_section
{
    padding-top: 50px;
    padding-bottom: 0px;
}
.section_title
{

}
.section_title h1
{
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    padding-top: 24px;
}
.section_title h1::before
{
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 55px;
    height: 4px;
    content: '';
    background: #8ecd44;
}

/*********************************
8. Buttons
*********************************/

.button
{
    cursor: pointer;
}
.button:hover
{
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}
.button a
{
    font-size: 14px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
}
.button_1
{
    width: 202px;
    height: 48px;
}

/*********************************
9. Popular
*********************************/

.popular
{

}
.course_boxes
{
    margin-top: 5px;
}
.card
{
    display: block;
    background: #f8f9fb;
    border: none;
}
.card-img-top
{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.card-body
{
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
}
.card-title
{
    margin-top: 15px;
}
.card-title a
{
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}
.card-title a:hover
{
    color: #a5a5a5;
}
.card-text
{
    font-size: 14px;
    color: #000;
    margin-top: -12px;
}
.price_box
{
    width: 100%;
    height: 67px;
    background: #eaebec;
    margin-top: 41px;
    padding-left: 35px;
}
.course_author_image
{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
}
.course_author_name
{
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    padding-left: 20px;
    margin-top: 7px;
}
.course_author_name span
{
    color: #a5a5a5;
}
.course_price
{
    width: 67px;
    height: 67px;
    background: #8ecd44;
    margin-left: auto;
}
.course_price span
{
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-top: 7px;
}

/*********************************
10. Register
*********************************/

.register
{
    width: 100%;
}
.register_section
{
    width: 100%;
    background: #8ecd44;
    padding-top: 10px;
    padding-bottom: 10px;
}
.register_content
{
    width: 700px;
}
.register_title
{
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.63;
}
.register_title:last-child
{
    margin-bottom: 0px;
}
.register_title	span
{
    color: #1a1a1a;
}
.register_text
{
    color: #FFFFFF;
    font-weight: 500;
    margin-top: 32px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 0px;
}
.register_button
{
    background: #1a1a1a;
    margin-top: 65px;
}
.register_button a
{
    color: #FFFFFF;
}

/*********************************
11. Search
*********************************/

.search_section
{
    width: 100%;
    height: 100%;
    background: #ececec;
}
.search_content
{
    width: 522px;
}
.search_background
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.23;
}
.search_title
{
    color: #1a1a1a;
}

/*********************************
11.1 Search Form
*********************************/

.search_form
{
    margin-top: 57px;
}
.input_field
{
    width: 100%;
    height: 42px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: solid 2px #FFFFFF;
    padding-left: 25px;
    margin-bottom: 24px;
}
input:last-of-type
{
    margin-bottom: 0px;
}
.input_field:focus
{
    outline: none !important;
    border: solid 2px #8ecd44;
}
.search_submit_button
{
    width: 100%;
    height: 48px;
    background: #8ecd44;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 28px;
    border: none;
    cursor: pointer;
}
.search_submit_button:hover
{
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}
.search_submit_button:focus
{
    outline: solid 2px #FFFFFF;
}

/*********************************
12. Services
*********************************/

.services
{
    padding-bottom: 0px;
}
.services_row
{
    margin-top: 35px;
}
.service_item
{
    margin-bottom: 25px;
}
.service_item h3
{
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 13px;
}
.service_item p
{
    font-size: 14px;
    color: #000;
    max-width: 100%;
    margin-bottom: 0px;
}
.icon_container
{
    height: 41px;
    width: auto;
    margin-bottom: 30px;
}
.icon_container img
{
    height: 100%;
}

/*********************************
13. Testimonials
*********************************/

.testimonials
{
    width: 100%;
    background: #1a1a1a;
    margin-top: -4px;
}
.testimonials_background_container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.testimonials_background
{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.27;
}
.testimonials .section_title h1
{
    color: #FFFFFF;
}
.testimonials_slider_container
{
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 56px;
}
.testimonials_item
{
    width: 100%;
    padding-bottom: 75px;
}
.quote
{
    font-size: 36px;
    color: #8ecd44;
}
.testimonials_text
{
    color: #FFFFFF;
    margin-bottom: 0px;
}
.testimonial_user
{
    margin-top: 43px;
}
.testimonial_image
{
    width: 98px;
    height: 98px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial_image img
{
    width: 100%;
    height: auto;
}
.testimonial_name
{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f6af03;
    margin-top: 21px;
}
.testimonial_title
{
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 6px;
}
.testimonials_slider .owl-dots
{
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
}
.testimonials_slider .owl-dot span
{
    width: 8px !important;
    height: 8px !important;
    border: solid 2px #FFFFFF;
    background: transparent !important;
}
.testimonials_slider .owl-dot.active span
{
    width: 16px !important;
    height: 16px !important;
    border: none;
    background: #8ecd44 !important;
}

/*********************************
14. Events
*********************************/

.event_items
{
    margin-top: 68px;
}
.event_item
{
    margin-bottom: 56px;
}
.event_item:last-child
{
    margin-bottom: 0px;
}
.event_date
{
    width: 131px;
    height: 131px;
    border: solid 2px #8ecd44;
    margin-bottom: 18px;
}
.event_day
{
    font-size: 48px;
    font-weight: 700;
    color: #8ecd44;
    margin-bottom: 1px;
    line-height: 1;
}
.event_month
{
    font-size: 16px;
    font-weight: 700;
    color: #8ecd44;
}
.event_name a
{
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
}
.event_name a:hover
{
    color: #8ecd44;
}
.event_location
{
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 2px;
}
.event_content p
{
    font-weight: 500;
    color: #a5a5a5;
    margin-top: 21px;
    margin-bottom: 13px;
}
.event_image
{

}
.event_image img
{
    width: 100%;
}

/*********************************
15. Footer
*********************************/

.footer
{
    width: 100%;
    padding-top: 0px;
    background: #1a1a1a;
}
.footer .section_title h1
{
    color: #FFFFFF;
}
/*******************************
accordian
******************************/
.elements_accordions
{

}
.accordion_container
{
    margin-bottom: 15px;
}
.accordion
{
    height: 60px;
    width: 100%;
    background: #f8f4f4;
    padding-left: 30px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    color:#000;
    transition: all 200ms ease;
}
.accordion.active
{
    background: #ffb606;
    color: #FFFFFF;
}
.accordion:active
{
    background: #ffb606 !important;
    color: #FFFFFF;
}
.accordion::after
{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    height: 100%;
    content: '+';
    background: #ffb606;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.accordion.active::after
{
    content: '-';
}
.accordion:hover
{
    background: #e4e4e4;
}
.accordion_panel
{
    padding-left: 5px;
    padding-right: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #b2afaf12;
    background-color: #f6fafb;
}
.accordion_panel p
{
    padding-top: 5px;
}

/*********************************
15.1 Newsletter
*********************************/

.newsletter
{
    padding-bottom: 85px;
    border-bottom: solid 2px #4d4e4e;
}
.newsletter_form_container
{
    width: 60%;
    margin-top: 48px;
}
.newsletter_email
{
    width: calc(100% - 164px);
    height: 42px;
    border: none;
    padding-left: 27px;
    font-weight: 500;
    color: #1a1a1a;
}
.newsletter_email:focus
{
    outline: solid 2px #8ecd44;
}
.newsletter_submit_btn
{
    width: 164px;
    height: 42px;
    border: none;
    background: #8ecd44;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.newsletter_submit_btn:focus
{
    border: solid 2px #FFFFFF;
}
/*********************************
8.5 Milestones
*********************************/

.milestones
{
    width: 100%;
    background: #1a1a1ae3;
    margin-top: 0px;
}
.milestones_container
{
    width: 100%;
    padding-top: 118px;
    padding-bottom: 107px;
    margin-top: 0px;
}
.milestones_background
{
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.milestone
{
    width: 100%;
}
.milestone_icon
{
    display: inline-block;
    width: 70px;
    height: 70px;
}
.milestone_icon img
{
    width: 100%;
}
.milestone_counter
{
    font-size: 36px;
    font-weight: 500;
    color: #ffb606;
    line-height: 1;
    margin-top: 41px;
}
.milestone_text
{
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 3px;
}



/*********************************
15.2 Footer Content
*********************************/

.footer_content 
{
    padding-top: 10px;
    padding-bottom: 25px;
    border-bottom: solid 2px #4d4e4e;
}
.footer_content .logo_container
{
    padding-left: 0px;
}
.footer_content .logo span
{
    color: #FFFFFF;
}
.footer_about_text
{
    margin-top: 24px;
    margin-bottom: 0px;
    padding-right: 20px;
}
.footer_column_title
{
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    padding-top: 15px;
}
.footer_column_content
{
    margin-top: 32px;
}
.footer_list_item
{
    margin-bottom: 11px;
}
.footer_list_item a
{
    font-size: 14px;
    color: #a5a5a5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.footer_list_item a:hover
{
    color: #8ecd44;
}
.footer_contact_item
{
    font-size: 14px;
    font-weight: 400;
    color: #a5a5a5;
    margin-bottom: 22px;
}
.footer_contact_item:last-child
{
    margin-bottom: 0px;
}
.footer_contact_icon
{
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}
.footer_contact_icon img
{
    width: 100%;
}

/*********************************
15.3 Footer Copyright
*********************************/

.footer_bar
{
    padding-top: 19px;
    padding-bottom: 19px;
}
.footer_social .menu_social_item a i
{
    color: #FFFFFF;
}
.footer_social .menu_social_item a i:hover
{
    color: #8ecd44;
}
.footer_social .menu_social_item:last-child
{
    margin-right: 0px;
}

.screenshots .card-title{
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin-top: 5px;
}
.screenshots .card-text{color:#000;font-weight: 100;}
.screenshots .card{
    background: #f6fafb;
    border:1px solid #f6fafb;
}

.screenshots .button{
    background: #1a1a1a;
    margin-top: 10px;
}

.screenshots .button a{
    color:#fff;
    text-transform: initial;
    font-weight:100;
    line-height: 10px;
}

#target_cust{
    background: #8ecd44 url(../images/slider-wrap-bg.png);
}



#target_cust .container{
    padding: 40px 0 40px 0px;
}
#particles-js {
    background-image: url();
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.hmpparticles{
    width: 100%;
    height: 420px;
    position: absolute;
}

.hmpg_bottom{padding: 10px 0 5px 0px;}
.hmpg_bottom a{color:#407106;}

.video_Sampl{background-color: #fafcfa;padding-top:25px;}
.register_content span{color:#000;}
.client_logos .item{padding:0px 15px 0px 15px;}
.footer_content .faq{color:#fff;}
.footer_content .accordion_container{margin-bottom: 5px;}
.footer_content .accordion{height:30px;}

.narrative p{font-size: 18px;}

.page-description {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #8ecd44 url(../images/slider-wrap-bg.png);
    color: #fff;
    text-align: center;
    margin: 30px 0 30px 0
}
.page-description2{
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    background: #feb506 url(../images/slider-wrap-bg.png);
    text-align: center;
    margin: 30px 0 30px 0
}

/***********************
products
************************/

#product_page .home_content {
    position: absolute;
    left: 50%;
    bottom: 35px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #ffb606;
    padding-top: 24px;
    padding-bottom: 18px;
    padding-left: 39px;
    padding-right: 42px;
    color:#fff;
}
#product_page .home {

    width: 100%;
    height: 240px;

}
#product_page .home_background_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#product_page .prlx_parent {
    overflow: hidden;
}
#product_page .home_background {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#product_page .prlx {
    height: 130% !important;
}
#product_page .products_page{color:#000;}
#product_page .subheader{font-weight: bold; }
#product_page .academic_inst p{line-height:1.29 }
#product_page .academic_inst ol{padding-left:17px;}
.course_boxes .card-text a{
    font-size: 14px;
    color: #000;
}
.course_boxes .card-text{padding-top:10px;}
.course_boxes .card-title a { font-size: 16px; }
.course_boxes .card { height:275px;box-shadow: 0px 3px 5px rgba(0,0,0,0.2); }
#team_profiles .teacher{margin-bottom: 50px;}
.error{color:red;}

#team_profiles .teacher:nth-last-child(-n+3)
{
    margin-bottom: 0px;
}
#team_profiles .card
{
    display: block;
    border: none;
    height:465px;
    background: #f8f9fb;
}
#team_profiles .card:hover .card-img-top
{
    opacity: 0.6;
}
#team_profiles .card:hover .card_plus
{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
#team_profiles .card_img
{
    background: #1a1a1a;
    height:350px;
}
#team_profiles .card_img2
{
    background: #1a1a1a;
    height:300px;
}
#team_profiles .card-img-top
{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    width: 100%;
    height: 100%;
}
#team_profiles .card_plus
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    -moz-transform: translate(-50%, -50%) scale(0.5);
    -ms-transform: translate(-50%, -50%) scale(0.5);
    -o-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    width: 100%;
    height: 100%;
    background: #ffb606;
    z-index: 10;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}
#team_profiles .card_plus , #team_profiles .card_plus a
{
    display: block;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    padding: 5px 5px 0 5px;
}
#team_profiles .card-body
{
    padding-top: 0px;
    padding-bottom: 58px;
    padding-left: 15px;
    padding-right: 15px;
}
#team_profiles .card-title
{
    margin-top: 55px;
}
#team_profiles .card-title a
{
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}
#team_profiles .card-title a:hover
{
    color: #a5a5a5;
}
#team_profiles .card-text
{
    font-size: 14px;
    font-weight: 500;
    color: #a5a5a5;
    margin-top: -7px;
}
#team_profiles  .teacher_social
{
    margin-top: 34px;
}
.info_page ul{ list-style: disc;padding-left: 40px;}
.info_page p{line-height:1.7;}
#team_profiles{padding-bottom: 30px;}
#coursesearch .input-group-btn{background-color: #ffb606;}
#coursesearch .btn{background-color: #ffb606;color: #fff;}
.autocomplete-suggestions .even_suggestion {
    padding: 5px;
    background-color: #F9F8F3;
}
.autocomplete-suggestions .odd_suggestion {
    padding: 5px;
    background-color: #FFF;
}
#coursesearch #searchResults{
    z-index: 1;
    background-color: #f8f9fb;
    color: #706e6e;
    padding: 10px 5px 5px 0px;
}

#coursesearch .searchResults .row{
    margin-right: 0px;
    margin-left: 0px;
}
.greyed{color:#706e6e;}
#coursesearch .searchResults a{
    color:#000
}
#coursesearch .searchResults h3 a:hover{
    color:#706e6e;
}
.autocomplete-suggestions{color:#000;cursor: pointer;}
.card img{width:100%;}
#college_courseList .course_boxes{margin-top: 40px;}
.list-group-item{
    padding:0px;
    background-color: #F8F3F3;
    border-bottom: 1px solid #DEDFDE;
    border-right: 1px solid #DEDFDE;
}
.list-group-item a {padding: 5px 40px 5px 40px; display: block;color: #1a1a1a;font-size: 16px;}
.card-header{
    background-color:#fff;
    color: #1a1a1a;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.list-group{text-align: center;}
h1 span,h2 span,h3 span{font-size: 14px;}
.page-header{
    padding-bottom: 0px;
    margin: 0px 0px 50px;
    border-bottom: 1px solid #eee;
}
#bodyContent{color:#000;}
#contentArea{padding-bottom: 20px;}

/* ============================================
   IHR CORPORATE THEME — Extended Styles
   ============================================ */

/* Logo — high-specificity selectors to override .logo span (0,1,1) */
.logo .logo_brand {
    display: inline-block !important;
    line-height: 1.2 !important;
    vertical-align: middle !important;
    margin-left: 0 !important;
    font-size: inherit !important;
}
.logo .logo_abbr {
    display: block !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #8ecd44 !important;
    letter-spacing: 5px !important;
    font-family: 'Open Sans', sans-serif !important;
    vertical-align: initial !important;
    margin-left: 0 !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
}
.logo .logo_full {
    display: block !important;
    font-size: 8.5px !important;
    color: rgba(255,255,255,0.72) !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    margin-top: 3px !important;
    vertical-align: initial !important;
    margin-left: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* Improved hero text — no yellow strip */
.hero_slide_content h1 {
    font-size: 52px; font-weight: 700; color: #fff;
    background: none; padding: 0;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55);
    line-height: 1.2;
}
.hero_slide_content .hero_sub {
    display: block; margin-top: 18px;
    font-size: 17px; color: rgba(255,255,255,0.88);
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero_slide_content .hero_cta {
    display: inline-block; margin-top: 30px;
    background: #8ecd44; color: #fff;
    padding: 14px 38px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: all .25s ease;
}
.hero_slide_content .hero_cta:hover { background: #fff; color: #003366; }
/* Dark overlay on every hero slide */
.hero_slide_background::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,51,102,.65) 0%, rgba(0,0,0,.35) 100%);
}

/* Page Hero Banner (inner pages) */
.page_hero {
    width: 100%; height: 300px; margin-top: 70px;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    display: flex; align-items: center; justify-content: center;
}
.page_hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,51,102,.82) 0%, rgba(0,51,102,.55) 100%);
}
.page_hero_content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.page_hero_content h1 { font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.page_hero_content h1::before { display: none; }
.page_hero_content p { font-size: 16px; color: rgba(255,255,255,.82); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.breadcrumb_wrap { margin-top: 14px; font-size: 13px; }
.breadcrumb_wrap a { color: #8ecd44; }
.breadcrumb_wrap span { color: rgba(255,255,255,.5); margin: 0 8px; }

/* Section label */
.section_label {
    display: block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: #8ecd44; margin-bottom: 8px;
}
/* Section title colour override */
.section_title h1, .section_title_left h1 { color: #003366; }
.section_title_left h1 { padding-top: 18px; }
.section_title_left h1::before { left: 0; transform: none; }

/* Light background section */
.bg_light { background: #f8fafc; }

/* Service Cards — homepage grid */
.service_card {
    background: #fff; border: 1px solid #e8eef5;
    padding: 35px 28px 28px; height: 100%;
    transition: all .3s ease; border-bottom: 3px solid transparent;
}
.service_card:hover {
    box-shadow: 0 14px 40px rgba(0,51,102,.11);
    border-bottom-color: #8ecd44; transform: translateY(-5px);
}
.service_card_icon {
    width: 58px; height: 58px; background: #003366;
    border-radius: 8px; display: flex;
    align-items: center; justify-content: center; margin-bottom: 22px;
}
.service_card_icon i { font-size: 24px; color: #fff; }
.service_card h3 { font-size: 18px; font-weight: 700; color: #003366; margin-bottom: 12px; }
.service_card p  { font-size: 14px; color: #555; line-height: 1.85; margin: 0; }
.service_card_link { display: inline-block; margin-top: 18px; color: #8ecd44; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.service_card_link i { margin-left: 5px; font-size: 10px; }
.service_card_link:hover { color: #003366; }

/* Value Cards (About page) */
.value_card {
    background: #fff; padding: 38px 25px; text-align: center;
    border-top: 4px solid #8ecd44;
    box-shadow: 0 2px 18px rgba(0,0,0,.06); height: 100%;
    transition: box-shadow .3s; margin-bottom: 25px;
}
.value_card:hover { box-shadow: 0 10px 35px rgba(0,51,102,.13); }
.value_icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, #003366 0%, #0055a4 100%);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 20px;
}
.value_icon i { font-size: 26px; color: #fff; }
.value_card h3 { font-size: 18px; font-weight: 700; color: #003366; margin-bottom: 10px; }
.value_card p  { font-size: 14px; color: #666; line-height: 1.85; margin: 0; }

/* About stats bar */
.about_stats_bar { background: #003366; padding: 55px 0; }
.about_stat { text-align: center; padding: 10px 20px; border-right: 1px solid rgba(255,255,255,.15); }
.about_stat:last-child { border-right: none; }
.about_stat .num   { display: block; font-size: 44px; font-weight: 700; color: #8ecd44; line-height: 1; margin-bottom: 8px; }
.about_stat .label { font-size: 12px; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: 1.5px; }

/* Feature strips (why choose us) */
.feature_strip { background: #f0f7e8; border-left: 4px solid #8ecd44; padding: 16px 22px; margin-bottom: 14px; display: flex; align-items: flex-start; }
.feature_strip i { color: #8ecd44; font-size: 18px; margin-right: 14px; margin-top: 2px; min-width: 20px; }
.feature_strip p { margin: 0; font-size: 14px; color: #333; line-height: 1.6; }

/* CTA Section */
.cta_section { background: linear-gradient(135deg, #003366 0%, #00509e 100%); padding: 90px 0; text-align: center; }
.cta_section h2 { font-size: 38px; font-weight: 700; color: #fff; margin-bottom: 18px; line-height: 1.3; }
.cta_section h2::before { display: none; }
.cta_section p { font-size: 17px; color: rgba(255,255,255,.80); max-width: 580px; margin: 0 auto 42px; line-height: 2; }
.cta_btn { display: inline-block; padding: 15px 42px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: all .25s ease; margin: 0 8px 12px; }
.cta_btn_primary { background: #8ecd44; color: #fff; }
.cta_btn_primary:hover { background: #fff; color: #003366; }
.cta_btn_outline { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.cta_btn_outline:hover { background: #fff; color: #003366; border-color: #fff; }

/* Process steps */
.process_step { text-align: center; padding: 30px 20px; }
.process_num { width: 58px; height: 58px; background: #003366; color: #fff; font-size: 20px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.process_step h4 { font-size: 15px; font-weight: 700; color: #003366; margin-bottom: 10px; }
.process_step p { font-size: 13px; color: #666; line-height: 1.7; margin: 0; }

/* Service Detail sections */
.service_detail_img { width: 100%; height: 360px; object-fit: cover; border-radius: 4px; }
.service_detail_content ul { padding-left: 0; list-style: none; margin-top: 20px; }
.service_detail_content ul li { padding: 9px 0 9px 28px; position: relative; font-size: 14px; color: #333; line-height: 1.7; border-bottom: 1px solid #f0f0f0; }
.service_detail_content ul li:last-child { border-bottom: none; }
.service_detail_content ul li::before { content: '\2713'; font-family: inherit; font-weight: 700; position: absolute; left: 0; top: 9px; color: #8ecd44; font-size: 14px; }
.service_detail_content ul li strong { color: #003366; }

/* Services page nav */
.services_subnav { background: #003366; display: flex; flex-wrap: wrap; }
.services_subnav a { flex: 1; min-width: 130px; display: block; padding: 16px 10px; text-align: center; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; transition: all .2s; border-bottom: 3px solid transparent; }
.services_subnav a:hover, .services_subnav a.active { color: #fff; border-bottom-color: #8ecd44; background: rgba(255,255,255,.07); }

/* Contact page */
.contact_card { background: #fff; box-shadow: 0 4px 30px rgba(0,51,102,.08); padding: 50px 55px; }
.contact_form input, .contact_form select, .contact_form textarea {
    width: 100%; padding: 13px 18px; border: 1px solid #dde3ec;
    margin-bottom: 20px; font-size: 14px; font-family: 'Roboto', sans-serif;
    color: #333; background: #fafbfc; outline: none; transition: border .2s, background .2s;
}
.contact_form input:focus, .contact_form textarea:focus { border-color: #003366; background: #fff; }
.contact_form textarea { height: 145px; resize: vertical; }
.contact_form .submit_btn { width: 100%; padding: 16px; background: #003366; color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; border: none; cursor: pointer; transition: background .2s; }
.contact_form .submit_btn:hover { background: #8ecd44; }
.contact_info_box { background: #003366; padding: 50px 45px; height: 100%; }
.contact_info_box h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact_info_row { display: flex; align-items: flex-start; margin-bottom: 28px; }
.contact_info_icon { width: 40px; min-width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 16px; }
.contact_info_icon i { color: #8ecd44; font-size: 15px; }
.contact_info_text strong { display: block; color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 5px; font-weight: 400; }
.contact_info_text span  { color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.7; }
.contact_info_text a { color: rgba(255,255,255,.88); }
.contact_social_row { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.contact_social_row a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; margin-right: 10px; color: #fff; font-size: 15px; transition: background .2s; }
.contact_social_row a:hover { background: #8ecd44; }

/* Footer FAQ compact */
.footer_content .faq h2 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer_content .accordion { height: 36px; font-size: 13px; }

/* Responsive additions */
@media (max-width: 991px) {
    .page_hero { height: 220px; }
    .page_hero_content h1 { font-size: 28px; }
    .cta_section h2 { font-size: 26px; }
    .contact_info_box { padding: 35px 30px; margin-top: 30px; }
    .contact_card { padding: 30px 25px; }
    .about_stat { border-right: none; margin-bottom: 20px; }
    .service_detail_img { height: 240px; }
    .hero_slide_content h1 { font-size: 36px; }
}
@media (max-width: 575px) {
    .hero_slide_content h1 { font-size: 26px; }
    .cta_section { padding: 60px 0; }
    .cta_btn { display: block; width: 80%; margin: 0 auto 12px; text-align: center; }
    .services_subnav a { font-size: 11px; padding: 12px 6px; }
}