/*****************************
    Common css 
*****************************/

body {
    font-family: 'Montserrat', sans-serif;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    font-smooth: always;
    font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    text-transform: uppercase;
}

h1,
h2 {
    font-weight: 700;
}

h2 {
    color: #5b5b5a;
}

h3 {
    font-weight: 400;
    font-size: 18px;
    color: #5b5b5a;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: #5b5b5a;
    line-height: 1.5;
}

p:empty {
    display: none;
}

.btn {
    padding: 18px 40px;
    border-radius: 40px;
    background: transparent;
    border-width: 2px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-align: center;
}

.btn-default {
    background: #fff;
    border-color: #fff;
    color: #5b5b5a;
}

.btn-default:hover,
.btn-default:focus {
    background: #f88800;
    border-color: #f88800;
    color: #fff;
}

.btn-warning {
    background: transparent;
    border-color: #fecc03;
    color: #fecc03;
}

.btn-warning:hover,
.btn-warning:focus {
    background: #fecc03;
    border-color: #fecc03;
    color: #5b5b5a;
}

.btn-primary {
    background: transparent;
    border-color: #5b5b5a;
    color: #5b5b5a;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #5b5b5a;
    border-color: #5b5b5a;
    color: #fff;
}

.btn-danger {
    background: #f88800;
    border-color: #f88800;
    color: #fff;
}

.btn-danger:hover,
.btn-danger:focus {
    background: #5b5b5a;
    border-color: #5b5b5a;
    color: #fff;
}

.btn-link {
    color: #5b5b5a;
    font-weight: 700;
}

.btn-link .fa {
    position: relative;
    right: -10px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
    color: #f88800;
}

.btn-link:hover .fa,
.btn-link:focus .fa {
    right: -20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 0;
    height: auto;
    padding: 12px 15px;
    border: 1px solid #cccccc;
}

.form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

textarea.form-control {
    min-height: 115px;
    resize: none;
}

.img-responsive {
    display: inline-block;
}

.ge-common {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ge-common h2 {
    margin-bottom: 25px;
}

.ge-common h2 strong {
    color: #f88800;
}

.ge-common-heading {
    margin-bottom: 30px;
}

.ge-common .ge-common-heading h2 {
    margin-bottom: 10px;
}

.ge-innerpage-heading {
    background: #222 url(../image/gabler-banner.jpg) no-repeat center center / cover;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.ge-innerpage-heading:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    opacity: .8;
}

.ge-innerpage-heading h1 {
    color: #fff;
    margin: 0;
    position: relative;
}

.ge-innerpage-content p strong {
    font-weight: 400;
    color: #f88800;
}

.ge-innerpage-content ul {
    list-style: none;
    padding: 0;
}

.ge-innerpage-content li {
    margin-bottom: 15px;
    position: relative;
    color: #5b5b5a;
    padding-left: 40px;
}

.ge-innerpage-content li:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    content: "";
    background: url(../image/checkmark.png) no-repeat left 7px;
}

.ge-innerpage-content li:last-child {
    margin-bottom: 0;
}

.ge-innerpage-content li strong {
    color: #000;
}


/*********************************
    bootstrap carousel fade in
**********************************/

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
    background-image: none;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/*****************************
    Header css 
*****************************/

.ge-header {
    padding: 15px 0;
}

.ge-logo {
    text-align: center;
    margin-bottom: 15px;
}

.ge-call-us {
    text-align: center;
}

.ge-call-button {
    display: inline-block;
}

.ge-call-button .inline,
.ge-call-button a {
    display: inline-block;
    color: #5b5b5b;
}

.ge-call-button .inline {
    padding: 16px 35px 16px 10px;
    background: #eeeeee;
    text-transform: uppercase;
    position: relative;
}

.ge-call-button .inline:before,
.ge-call-button .inline:after {
    position: absolute;
    height: 0;
    width: 0;
    top: 0;
    content: "";
    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    border-right: 27px solid #eeeeee;
}

.ge-call-button .inline:before {
    left: -27px;
}

.ge-call-button .inline:after {
    right: 0;
    border-right-color: #fff;
}

.ge-call-button .inline .fa {
    font-size: 24px;
    vertical-align: bottom;
    color: #c3c3c3;
    margin-left: 10px;
    line-height: 21px;
}

.ge-call-button a {
    font-size: 20px;
    color: #5b5b5b;
    font-weight: 700;
    position: relative;
}

.ge-call-button a span {
    color: #f88800;
}


/*****************************
    Main NAvigaion css start
*****************************/

.ge-menu {
    border: none;
    border-radius: 0;
    background: #f88800;
    margin-bottom: 0;
}

.ge-menu .navbar-toggle {
    border: none;
}

.ge-menu .navbar-toggle .icon-bar {
    background: #fff;
}

.ge-menu .navbar-toggle:focus,
.ge-menu .navbar-toggle:hover {
    background: transparent;
}

.ge-menu .navbar-collapse,
.ge-menu .navbar-form {
    border: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

.ge-menu .navbar-nav > li > a {
    color: #fff;
    text-transform: uppercase;
}

.ge-menu .navbar-nav > .active > a,
.ge-menu .navbar-nav > .active > a:focus,
.ge-menu .navbar-nav > .active > a:hover {
    background: #5b5b5a;
    color: #fff;
}


/*****************************
    Banner css start
*****************************/

.ge-banner {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    background: #333 url(../image/banner.jpg) no-repeat center center / cover;
}

.ge-banner:before {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5);
}

.ge-banner > div {
    position: relative;
}

.ge-banner h1 {
    color: #fff;
    margin-bottom: 20px;
}

.ge-banner p {
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 15px;
}

.ge-banner .btn {
    min-width: 200px;
}


/*****************************
    Gabler service css start
*****************************/

.ge-service-block {
    margin-bottom: 30px;
}

.ge-service-block:last-child {
    margin-bottom: 0;
}

.ge-service-content {
    border: 2px solid #5b5b5a;
    padding: 15px 130px 15px 15px;
    position: relative;
    overflow: hidden;
}

.ge-service-content:before {
    position: absolute;
    width: 50px;
    height: 100%;
    background: #5b5b5a;
    content: "";
    right: 0;
    top: 0;
}

.ge-service-content:after {
    border-top: 434px solid transparent;
    border-right: 250px solid #5b5b5a;
    border-bottom: 434px solid transparent;
    content: "";
    height: 0;
    right: -125px;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    width: 0;
    position: absolute;
}

.ge-service-content.orange {
    border-color: #f88800;
}

.ge-service-content.orange:before {
    background: #f88800;
}

.ge-service-content.orange:after {
    border-right-color: #f88800;
}

.ge-service-content h3 {
    color: #f88800;
    margin-bottom: 15px;
}

.ge-service-content.orange h3 {
    color: #5b5b5a;
}

.ge-service-content p {
    font-size: 13px;
}

.ge-service-content a {
    font-size: 13px;
    color: #f88800;
}

.ge-service-content.orange a {
    color: #5b5b5a;
}

.ge-service-content .ge-service-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    z-index: 2;
    margin-top: -24px;
    min-width: 52px;
    text-align: center;
}


/***********************************
    Ge About us on Home css start
************************************/

.ge-home-about-content-block {
    background: #222 url(../image/home-about-bg.jpg) no-repeat center center / cover;
    position: relative;
}

.ge-home-about-content-block:before {
    background: rgba(0, 0, 0, .75);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.ge-home-about-content-block h2 {
    color: #fff;
    margin-bottom: 25px;
}

.ge-home-about-content-block p {
    color: #cccccc;
    margin-bottom: 25px;
}

.ge-home-about-content-block p strong {
    color: #f88800;
    font-weight: 400;
}

.ge-home-about-content {
    position: relative;
}


/***********************************
    Ge Qualification css start
************************************/

.ge-qualification {
    border-bottom: 1px solid #5b5b5a;
    background: #f5f5f5;
}

.ge-qualification h3 {
    text-transform: none;
    font-weight: 700;
}

.ge-qualification .check-icon,
.ge-qualify-in {
    margin-bottom: 30px;
}

.ge-qualify-in:last-child {
    margin-bottom: 0;
}


/***********************************
    Ge Testimonial form css start
************************************/

.ge-testimonial h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.ge-testimonial .carousel-fade .carousel-control {
    display: none;
}

.ge-testimonial .carousel-indicators {
    bottom: -45px;
}

.ge-testimonial .carousel-indicators li,
.ge-testimonial .carousel-indicators li.active {
    height: 15px;
    width: 15px;
    background: #d5d5d5;
    margin: 0;
}

.ge-testimonial .carousel-indicators li.active {
    background: #f88800;
}

.ge-client-words {
    padding: 15px;
    border: 2px solid #f88800;
}

.ge-client-words p {
    font-size: 15px;
    color: #777;
}

.ge-client-words a {
    color: #f88800;
}

.ge-client-info {
    margin-top: 25px;
    display: inline-block;
    text-align: left;
}

.ge-clinet-image,
.ge-client-name {
    display: inline-block;
    vertical-align: middle;
}

.ge-client-name {
    margin-left: 25px;
}

.ge-client-name p {
    margin-bottom: 0;
    color: #f88800;
}

.ge-client-testimonial {
    padding-bottom: 30px;
}


/***********************************
    Ge Quote form css start
************************************/

.ge-quick-quote h2 {
    color: #fff;
}

.ge-quick-quote p {
    color: #ccc;
}

.ge-quote-form {
    background: #5b5b5a;
}


/***********************************
    Ge Emeregency Call css start
************************************/

.ge-emeregency-call {
    background: #fecc03;
}

.ge-emeregency-call h2 {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}


/***********************************
    Ge Get in Touch css start
************************************/

.ge-get-in-touch a,
.ge-get-in-touch {
    color: #5b5b5a;
    font-size: 17px;
}

.ge-get-in-touch .fa {
    color: #f88800;
    display: block;
    margin-bottom: 6px;
}

.ge-address .fa,
.ge-phone .fa {
    font-size: 28px;
}

.ge-phone {
    margin-top: 20px;
    margin-bottom: 20px;
}


/*****************************
    Get social css start
*****************************/

.ge-social {
    overflow: hidden;
}

.ge-social-content .container {
    position: relative;
}

.ge-social ul {
    float: right;
    position: relative;
    background: #f88800;
    margin-bottom: 0;
    padding: 10px 20px;
}

.ge-social ul:before {
    border-bottom: 25px solid transparent;
    border-right: 20px solid #f88800;
    border-top: 25px solid transparent;
    left: -20px;
    height: 0;
    width: 0;
    top: 0;
    position: absolute;
    content: "";
}

.ge-social ul:after,
.ge-social-content .container:after {
    top: 0;
    position: absolute;
    content: "";
    right: -15px;
    width: 15px;
    height: 50px;
    background: #f88800;
}

.ge-social ul li {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}

.ge-social ul li:first-child {
    margin-right: 30px;
}

.ge-social ul li a {
    display: block;
    background: #222222;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 100%;
    padding-top: 2px;
    color: #fff;
}

.ge-social ul li a:hover,
.ge-social ul li a:focus {
    color: #f88800;
}


/*****************************
    Footer css start
*****************************/

.ge-footer {
    background: #222;
    margin-top: -25px;
    padding-top: 60px;
}

.ge-footer h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.ge-footer-block {
    margin-bottom: 30px;
}

.ge-footer-block:last-child,
.ge-footer-block ul li:last-child {
    margin-bottom: 0;
}

.ge-footer-block ul li {
    margin-bottom: 4px;
}

.ge-footer-block ul li a {
    color: #ececec;
    font-family: 'Open Sans', sans-serif;
}

.copyright {
    margin-top: 30px;
}

.copyright p {
    font-family: 'Montserrat', sans-serif;
    color: #555555;
    margin-bottom: 0;
}


/*****************************
    About Us css start
*****************************/

.get-social-inner {
    background: #fecc03;
}

.ge-about-us h2 {
    font-size: 30px;
    text-transform: none;
}

.about-image {
    margin-bottom: 30px;
}

.ge-about-qualification {
    margin: 30px 0;
}


/*****************************
    Service page css start
*****************************/

.ge-inner-service-icon {
    margin-bottom: 30px;
}


/*****************************
    Contact page css start
*****************************/
.ge-map {
    margin: 30px 0;
}
#map {
    width: 100%;
    height: 250px;
}

/*****************************
    Responsive css start
*****************************/

@media screen and (min-width: 768px) {
    /*****************************
        Common css
    *****************************/
    .ge-common {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .ge-common h2 {
        font-size: 34px;
    }
    .ge-common-heading {
        margin-bottom: 45px;
    }
    .ge-common-heading p {
        font-size: 16px;
    }
    .ge-innerpage-heading {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: -51px;
    }
    .ge-innerpage-heading h1 {
        font-size: 40px;
        letter-spacing: .5px;
    }
    .ge-innerpage-content {
        background: #fff url(../image/gabler-logo-rotated.png) no-repeat right bottom;
    }
    .ge-about-us h2 {
        font-size: 30px;
    }
    .ge-innerpage-content li {
        margin-bottom: 25px;
    }
    /*****************************
        Header css
    *****************************/
    .ge-top-bar {
        overflow: hidden;
    }
    .ge-logo {
        padding-top: 10px;
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    .ge-call-us {
        text-align: right;
    }
    /*****************************
        Main NAvigaion css start
    *****************************/
    .ge-menu {
        background: transparent;
        margin-bottom: 0;
        position: relative;
        z-index: 3;
    }
    .ge-menu .navbar-collapse {
        position: relative;
    }
    .ge-menu .navbar-collapse:before,
    .ge-menu .navbar-collapse:after {
        position: absolute;
        right: 0;
        width: 15px;
        bottom: -24px;
        background: #f88800;
        height: 50px;
        content: "";
    }
    .ge-menu .navbar-collapse:after {
        right: -100px;
        width: 100px;
    }
    .ge-menu .navbar-nav {
        float: right;
        background: #f88800;
        position: relative;
        margin-top: -26px;
    }
    .ge-menu .navbar-nav:before {
        position: absolute;
        height: 0;
        width: 0;
        top: 0;
        left: -20px;
        content: "";
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-right: 20px solid #f88800;
    }
    .ge-menu .navbar-nav > li > a {
        position: relative;
    }
    .ge-menu .navbar-nav > .active > a:before,
    .ge-menu .navbar-nav > .active > a:after {
        position: absolute;
        height: 0;
        width: 0;
        top: 0;
        left: -12px;
        content: "";
        border-top: 50px solid transparent;
        border-bottom: 0 solid transparent;
        border-right: 12px solid #5b5b5a;
    }
    .ge-menu .navbar-nav > li.active:first-child > a:before {
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-right: 20px solid #5b5b5a;
        left: -20px;
    }
    .ge-menu .navbar-nav > .active > a:after {
        left: inherit;
        right: -12px;
        border-top: 50px solid #5b5b5a;
        border-bottom: none;
        border-right: 12px solid transparent;
    }
    /*****************************
        Banner css start
    *****************************/
    .ge-banner {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-top: -51px;
    }
    .ge-banner h1 {
        font-size: 50px;
        line-height: 1.2;
    }
    .ge-banner p {
        font-size: 16px;
        margin-bottom: 5px;
    }
    /***********************************
        Ge About us on Home css start
    ************************************/
    .ge-home-about .row {
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
    }
    .ge-home-about-content {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 625px;
    }
    .ge-half-logo {
        background: #f88800 url(../image/logo-icon-cut.png) no-repeat right center;
    }
    /***********************************
        Ge Testimonial form css start
    ************************************/
    .ge-client-words {
        padding: 20px 20px 20px 120px;
        background: url(../image/comma.png) no-repeat 46px 20px;
        text-align: left;
    }
    .ge-client-words p {
        font-size: 16px;
    }
    .ge-client-info {
        display: block;
    }
    .ge-testimonial .carousel-indicators {
        bottom: 13px;
        left: inherit;
        margin-left: 0;
        right: 0;
        text-align: right;
    }
    .ge-client-testimonial {
        padding-bottom: 0;
    }
    /***********************************
        Ge Quote form css start
    ************************************/
    .ge-quote-block {
        background: #222 url(../image/home-contact-form-bg.jpg) no-repeat left center / cover;
        position: relative;
    }
    .ge-quote-block:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        content: "";
        background: rgba(0, 0, 0, .25);
    }
    /***********************************
        Ge Get in Touch css start
    ************************************/
    .ge-get-in-touch .fa {
        min-height: 26px;
    }
    .ge-phone {
        margin: 0;
    }
    /*****************************
        Footer css start
    *****************************/
    .ge-footer {
        padding-top: 80px;
    }
    /*****************************
        About Us css start
    *****************************/
    .about-description {
        margin-bottom: 50px;
    }
    .ge-about-qualification {
        margin: 0;
    }
    .ge-about-us h2 {
        margin-bottom: 40px;
    }
    /*****************************
        Service page css start
    *****************************/
    .ge-inner-service-icon {
        margin-right: 30px;
        float: left;
    }
    /*****************************
        Testimonial page css start
    *****************************/
    .ge-innerpage-content .ge-client-words {
        border: none;
    }
    .ge-innerpage-content .ge-client-info {
        float: right;
        margin-top: 0;
    }
    /*****************************
        Contact page css start
    *****************************/
    .ge-map {
        margin-top: 100px;
    }
}

@media screen and (min-width: 991px) {
    /*****************************
        Common css
    *****************************/
    p {
        font-size: 15px;
    }
    .ge-common {
        padding-top: 55px;
        padding-bottom: 55px;
    }
    .ge-common h2 {
        font-size: 38px;
    }
    .ge-common-heading {
        margin-bottom: 50px;
    }
    .ge-innerpage-heading {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .ge-innerpage-heading h1 {
        font-size: 50px;
    }
    .ge-about-us h2 {
        font-size: 30px;
    }
    /*****************************
        Main NAvigaion css start
    *****************************/
    .ge-menu .navbar-nav {
        min-width: 638px;
    }
    .ge-menu .navbar-nav > li > a {
        padding-left: 25px;
        padding-right: 25px;
    }
    /*****************************
        Banner css start
    *****************************/
    .ge-banner {
        padding-top: 140px;
    }
    .ge-banner h1 {
        font-size: 55px;
        margin-bottom: 25px;
    }
    .ge-banner p {
        font-size: 18px;
        margin-bottom: 10px;
    }
    /*****************************
        Gabler service css start
    *****************************/
    .ge-service-block {
        margin-bottom: 0;
    }
    /***********************************
        Ge Qualification css start
    ************************************/
    .ge-qualification {
        padding-bottom: 0;
        border-bottom: 1px solid #5b5b5a;
    }
    /***********************************
        Ge Quote form css start
    ************************************/
    .get-quote-content {
        padding-right: 15px;
        float: right;
        max-width: 555px;
    }
    /***********************************
        Ge Get in Touch css start
    ************************************/
    .ge-get-in-touch,
    .ge-get-in-touch a {
        font-size: 16px;
    }
    .ge-get-in-touch .fa {
        min-height: 1px;
        display: inline-block;
        margin-bottom: 0;
        margin-right: 15px;
    }
    /*****************************
        Footer css start
    *****************************/
    .ge-footer {
        padding-top: 80px;
    }
    .ge-footer-info-link {
        padding-left: 40px;
    }
    .ge-footer-block {
        margin-bottom: 0;
    }
    .ge-accreditations ul li {
        max-width: 49%;
    }
    .copyright {
        margin-top: 60px;
    }
    /*****************************
        About Us css start
    *****************************/
    .about-description {
        margin-bottom: 80px;
    }
    /*****************************
        Service page css start
    *****************************/
    .ge-inner-service-icon {
        margin-right: 60px;
    }
    /*****************************
        Contact page css start
    *****************************/
    .ge-map {
        padding-left: 50px;
    }
    #map {
        height: 340px;
    }
}

@media screen and (min-width: 1200px) {
    /*****************************
        Common css
    *****************************/
    .ge-common {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .ge-common h2 {
        font-size: 40px;
    }
    .ge-innerpage-heading {
        padding-bottom: 130px;
        padding-top: 130px;
    }
    .ge-innerpage-heading h1 {
        font-size: 60px;
    }
    .ge-about-us h2 {
        font-size: 30px;
    }
    .ge-innerpage-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .ge-innerpage-content p:last-child {
        margin-bottom: 0;
    }
    .ge-innerpage-content li {
        font-size: 16px;
    }
    /*****************************
        Banner css start
    *****************************/
    .ge-banner {
        padding-top: 160px;
        padding-bottom: 140px;
    }
    .ge-banner h1 {
        font-size: 60px;
    }
    /*****************************
        Gabler service css start
    *****************************/
    .ge-service-content {
        padding: 25px 150px 25px 20px;
    }
    .ge-service-content p {
        font-size: 14px;
    }
    /***********************************
        Ge About us on Home css start
    ************************************/
    .ge-home-about-content {
        max-width: 690px;
        padding-left: 30px;
    }
    /***********************************
        Ge Qualification css start
    ************************************/
    .ge-qualification {
        padding-bottom: 0;
    }
    .ge-qualify {
        padding-top: 30px;
    }
    .ge-qualification .check-icon,
    .ge-qualify-in {
        margin-bottom: 40px;
    }
    /***********************************
        Ge Testimonial form css start
    ************************************/
    .ge-client-words {
        padding: 30px 30px 30px 120px;
        background-position: 46px 30px;
    }
    .ge-client-words p {
        font-size: 18px;
    }
    /***********************************
        Ge Get in Touch css start
    ************************************/
    .ge-get-in-touch,
    .ge-get-in-touch a {
        font-size: 17px;
    }
    .ge-address .fa,
    .ge-phone .fa {
        font-size: 38px;
        position: relative;
        top: 6px;
    }
    .ge-mail {
        padding-top: 4px;
    }
    .ge-mail .fa {
        font-size: 26px;
        position: relative;
        top: 3px;
        line-height: 36px;
    }
    /*****************************
        Footer css start
    *****************************/
    .ge-footer {
        padding-top: 80px;
    }
}
