/*
Theme Name: Axena
Theme URI: https://example.com
Author: Chiranjit Das
Author URI: https://yourwebsite.com
Description: A custom standalone WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: axena
*/


/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    float: left;
    width: 100%;
    overflow-x: hidden;
}

main {
    float: left;
    width: 100%;
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}


/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */


/******************** header_banner start *********************/

section.header_banner {
    position: relative;
    width: 100%;
    float: left;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
}

.logo a {
    display: inline-block;
    width: 135px;
}

.logo a img {
    width: 100%;
}

button.navbar-toggler {
    display: none;
}

ul.navbar-nav {
    display: inline-block;
}

ul.navbar-nav li.nav-item {
    display: inline-block;
    width: auto;
}

ul.navbar-nav li.nav-item a.nav-link {
    display: inline-block;
    margin: 0 25px;
    color: #fff;
    font-size: 22px;
}

ul.navbar-nav li.nav-item a.nav-link:hover {
    text-decoration: underline;
}

ul.navbar-nav li.nav-item a.nav-link:focus {
    text-decoration: underline;
}

ul.navbar-nav li.nav-item a.nav-link.active {
    text-decoration: underline;
}

.banner-content {
    position: absolute;
    bottom: 145px;
    left: 160px;
    width: 47%;
}

.banner_img img {
    width: 100%;
}

.banner-content p.text-info {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
}

.banner-content h1.text-head {
    color: #fff;
    font-size: 60px;
    line-height: 73px;
    font-weight: 600;
}

.banner-content .banner_btn {
    margin: 130px 0 0 0;
}

.banner_btn a {
    display: inline-block;
    padding: 20px 35px;
    margin: 0 30px 0 0;
    font-size: 21px;
    line-height: 21px;
    font-weight: 500;
}

.banner_btn a.banner_btn_solid {
    background: #009ebf;
    color: #fff;
    border: 1px solid #009ebf;
    text-decoration: none;
}

.banner_btn a.banner_btn_stock {
    border: 1px solid #009ebf;
    color: #009ebf;
    background-color: transparent;
    text-decoration: none;
}


/******************** header_banner end *********************/


/******************** about start *********************/

section.about {
    margin: 40px 0;
    float: left;
    width: 100%;
}

.about h2 {
    font-size: 42px;
}

.about p {
    font-size: 18px;
    line-height: 27px;
}

.about a.btn.btn-info.text-white {
    display: inline-block;
    padding: 20px 35px;
    margin: 0 30px 0 0;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    border-radius: 0;
    background-color: #009ebf;
    border-color: #009ebf;
}

.about a.btn.btn-info.text-white:hover {
    background: #037e9c;
}

.about a.btn.btn-info.text-white:focus {
    background: #037e9c;
}


/******************** about end *********************/


/******************** service Start *********************/

.service {
    width: 100%;
    float: left;
}

.service_top {
    background-color: #009ac0;
    padding: 55px 0;
}

.service_top h3 {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
}

.service_top p {
    margin: 0;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
}


/** flip **/

.flip-box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    background-color: transparent;
    color: black;
}

.flip-box-back {
    background-color: rgba(0, 154, 192, 0.85);
    color: white;
    transform: rotateY(180deg);
}


/** flip **/

.service_wrap_inner {
    font-size: 0;
}

.service_box a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    float: left;
    position: relative;
}

.service_box {
    display: inline-block;
    width: 25%;
    min-height: 650px;
}

.service_details ul li {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-align: left;
    list-style: auto;
}

.service_details {
    padding: 20px;
}

.flip-box-front h4 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
}

.flip-box-front img {
    width: 55px;
    position: absolute;
    right: 5px;
    top: 5px;
}

.service_wrap .lSSlideOuter ul.lSPager.lSpg {
    display: none;
}


/******************** service End *********************/


/******************** testimonial start *********************/

section.testimonial {
    float: left;
    width: 100%;
    background-image: url(./img/test_bg.jpg);
    padding: 60px 0;
}

.heading_text {
    text-align: center;
}

.heading_text h3 {
    font-size: 42px;
    font-weight: 500;
    color: #222222;
    margin: 0 0 15px 0;
}

.heading_text p {
    font-size: 18px;
    line-height: 27px;
    color: #6c757d;
    margin: 0 0 40px 0;
}

.testimonial_wrap {
    position: relative;
}

.testimonial_wrap .lSAction {
    display: none !important;
}

.testimonial_box {
    width: 100%;
    float: left;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial_left {
    display: flex;
}

.testimonial_img {
    width: 440px;
    height: 440px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    left: 0;
    border: 20px solid #009ac0;
    display: flex;
}

.testimonial_right {
    width: 70%;
    float: right;
    padding: 25px 20px 25px 85px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    margin: 0 20px 0 -65px;
}

.testimonial_right p {
    margin: 25px 25px 60px 0;
}

.testimonial_star ul {
    margin: 0;
    padding: 0;
}

.testimonial_star ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.testimonial_star ul li img {
    width: 35px;
}

ul.testimonial_id {
    padding: 0;
    margin: 0;
    float: right;
}

ul.testimonial_id li {
    display: inline-block;
    padding: 9px 15px;
    border-right: 2px solid #222222;
}

ul.testimonial_id li a {
    display: inline-block;
    color: #000;
    font-size: 19px;
    text-decoration: none;
}

ul.testimonial_id li:last-child {
    display: inline-block;
    padding: 0 0 0 15px;
    border-right: 0px solid #222222;
}

.testimonial_wrap .lSPager a {
    width: 20px !important;
    height: 20px !important;
    background: #fff !important;
    border: 3px solid #222;
}

.testimonial_wrap .lSPager .active a {
    background: #222 !important;
}


/******************** testimonial end *********************/


/******************** Before After start *********************/

.before_after {
    float: left;
    width: 100%;
    padding: 60px 0;
}

.before_after_wrap img {
    width: 100%;
}

.ba_m {
    margin-top: 30px !important;
}

.before_after_wrap {
    padding-top: 25px;
    text-align: center;
}

.before_btn {
    position: absolute;
    bottom: 20%;
    background: #009ac0;
    padding: 13px 35px;
    color: #fff;
    font-size: 20px;
    left: -50px;
}

.after_btn {
    position: absolute;
    bottom: 20%;
    background: #009ac0;
    padding: 13px 35px;
    color: #fff;
    font-size: 20px;
    right: -50px;
}

.before_after_wrap a.before_after_view {
    display: inline-block;
    background: #009ac0;
    padding: 12px 60px;
    color: #fff;
    font-size: 20px;
    margin: 50px 0 0 0;
    text-decoration: none;
}

.before_after_wrap a.before_after_view:hover {
    background: #037e9c;
}

.before_after_wrap a.before_after_view:focus {
    background: #037e9c;
}

.before_after_wrap .row {
    position: relative;
}


/******************** Before After end *********************/


/******************** FAQ Start *********************/

.faq {
    float: left;
    width: 100%;
    padding: 60px 0;
}

.faq_img img {
    width: 100%;
}

.faq_wrap {
    width: 100%;
    float: left;
    padding: 0;
}

.faq_wrap button.accordion-button.collapsed {
    background: #f1f1f1;
    margin: 0 0 20px 0;
}

.faq_wrap .accordion-item {
    border: none;
    margin: 0 0 5px 0;
}

.faq_wrap button.accordion-button {
    border-radius: 0 !important;
}

.faq_wrap button.accordion-button {
    border-radius: 0 !important;
    font-size: 20px;
    font-weight: 400;
    color: #222;
}

.faq_wrap .accordion-body p {
    font-size: 16px;
    color: #6c757d;
}

.accordion-button::after {
    background-image: url(./img/plus.png);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(./img/min.png);
}


/******************** FAQ End *********************/


/******************** Contact Start *********************/

.contact {
    float: left;
    width: 100%;
    padding: 60px 0;
    background-image: url(./img/contact_bg.jpg);
    background-repeat: no-repeat;
}

.contact .heading_text p {
    color: #000;
}

.contact_wrap {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact_right {
    width: 62%;
    padding: 0 0 0 25px;
}

.contact_left {
    width: 38%;
    background: #39b8d8;
    padding: 20px 34px;
    border-radius: 25px;
    margin: 0 20px 0 0;
}

.contact_left h3 {
    font-size: 34px;
    color: #fff;
    font-weight: 500;
    margin: 15px 0 10px 0;
}

.contact_left p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 30px 0;
}

.contact_left ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact_left ul li {
    padding: 20px 0 25px 0;
}

.contact_left ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
}

.contact_left ul li a img {
    max-width: 30px;
    margin-right: 22px;
}

.contact_right button.btn.btn-primary {
    background-color: #009ac0;
    font-size: 18px;
    border-color: #009ac0;
    padding: 10px 40px;
}

.contact_right .form-control {
    border: none;
    border-bottom: 3px solid #9c9c9c;
    border-radius: 0;
    padding: 5px 0;
}

.contact_right .row {
    margin: 0 0 25px 0;
}

.contact_right label.form-label {
    font-size: 18px;
    color: #222222;
    font-weight: 500;
}

.contact_right textarea {
    width: 100%;
    border: none;
    border-bottom: 3px solid #9c9c9c;
    border-radius: 0;
    padding: 5px 0;
    height: 110px;
}


/******************** Contact End *********************/


/******************** Footer Start *********************/

footer {
    float: left;
    width: 100%;
}

.footer_top {
    background: #085063;
    padding: 60px 0;
}

.footer_logo a {
    display: inline-block;
}

.footer_logo a img {
    width: 140px;
}

.footer_logo p {
    color: #fff;
    margin: 20px 0 0 0;
}

.footer_top ul {
    margin: 0;
    padding: 0 0 0 60px;
}

.footer_top ul li {
    list-style: none;
    margin: 12px 0;
}

.footer_top ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer_top ul li a:hover {
    text-decoration: underline;
}

.footer_top ul li a:focus {
    text-decoration: underline;
}

.footer_bot {
    background-color: #07404f;
    border-top: 1px solid #188fae;
}

ul.social {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.social li {
    display: inline-block;
    margin: 0 13px;
}

.footer_bot_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.footer_bot_wrap p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
}

.footer_bot_wrap p a {
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
}

.footer_bot_wrap p a:hover {
    text-decoration: none;
}

.footer_bot_wrap p a:focus {
    text-decoration: none;
}


/******************** Footer End *********************/


/******************** inner banner Start *********************/

.banner_inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: -26px;
}

.banner_inner h1 {
    font-size: 45px;
    color: #009ebf;
    text-transform: uppercase;
    margin: 0;
}


/******************** inner banner End *********************/


/******************** About page Start *********************/

.about_page_img {
    position: relative;
}

.about_page_img img {
    padding: 30px 30px 0 0;
    z-index: 2;
    position: relative;
}

.about_page_img .b_box {
    position: absolute;
    top: 0;
    right: 12px;
}

.about_page_img .b_box img {
    padding: 0;
    z-index: 1;
    position: relative;
}

section.about_service {
    background-color: #f3efe6;
    float: left;
    width: 100%;
    padding: 60px 0;
}

.about_service_wrap .col-lg-4 img {
    width: 100%;
}

.about_service_wrap .col-lg-4 {
    position: relative;
}

.blue_top_serve {
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    z-index: 1;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    padding: 35px 10px;
    color: #fff;
    font-weight: 500;
    background-color: rgba(0, 154, 192, 0.75);
    text-decoration: none;
}

.blue_top_serve:hover {
    text-decoration: underline;
}

.blue_top_serve:focus {
    text-decoration: underline;
}

.team_wrap .row.align-self-center .col-lg-3 {
    margin: auto;
}

.team_wrap {
    padding: 0 100px;
}

section.team {
    float: left;
    width: 100%;
    padding: 60px 0;
}

.team_box {
    position: relative;
}

.team_box img {
    width: 100%;
}

.team_box_inner {
    background-color: rgba(0, 154, 192, 0.75);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

.team_box:hover .team_box_inner {
    display: flex
}

.team_box_inner .team_box_inner_txt {
    text-align: center;
}

.team_box_inner .team_box_inner_txt h3 {
    font-size: 36px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}

.team_box_inner .team_box_inner_txt p {
    font-size: 18px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}

.why_choose_us {
    width: 100%;
    float: left;
    padding: 60px 0;
    background-color: #a1dfee;
}

.why_choose_us_wrap {
    padding: 0 100px;
}

.why_choose_us_box_img {
    width: 120px;
    height: 120px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0 20px 0;
}

.why_choose_us_box_txt h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.why_choose_us_box_txt p {
    font-size: 16px;
    margin-bottom: 0;
}

.map {
    width: 100%;
    float: left;
}

section.contact.contact_page {
    background-color: #39b8d8;
    background-image: none;
}

section.contact.contact_page .heading_text h3 {
    color: #fff;
}

section.contact.contact_page .heading_text p {
    color: #fff;
}

section.contact.contact_page .contact_wrap {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

section.contact.contact_page .contact_right {
    padding: 35px 40px;
    background-color: #fff;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
}

.about_service_wrap .col-lg-3 {
    position: relative;
}

.about_service_wrap .col-lg-3 img {
    width: 100%;
}


/******************** About page End *********************/

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0px 15px 0px 15px;
}

.innerpage_section {
    padding: 60px 0;
    width: 100%;
    float: left;
}

.innerpage_section figure.alignleft.size-full {
    margin: 10px 30px 0 0;
}

.innerpage_section figcaption.wp-element-caption {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}

@media (max-width:991px) {
    .innerpage_section figure.alignleft.size-full {
        margin: 10px 0px 5px 0;
        width: 100%;
    }
}

.map_immer iframe {
    width: 100%;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */


/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
    display: none !important;
}


/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}


/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}


/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}


/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]::after {
        content: " (" attr(href) ")";
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}

.contact_wrap {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact_right {
    width: 62%;
    padding: 0 0 0 25px;
}

.contact_left {
    width: 38%;
    background: #39b8d8;
    padding: 20px 34px;
    border-radius: 25px;
    margin: 0 20px 0 0;
}

.contact_left h3 {
    font-size: 34px;
    color: #fff;
    font-weight: 500;
    margin: 15px 0 10px 0;
}

.contact_left p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 30px 0;
}

.contact_left ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact_left ul li {
    padding: 20px 0 25px 0;
}

.contact_left ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.contact_left ul li a img {
    max-width: 30px;
    margin-right: 22px;
}

.contact_right button.btn.btn-primary {
    background-color: #009ac0;
    font-size: 18px;
    border-color: #009ac0;
    padding: 10px 40px;
}

.contact_right input.wpcf7-form-control.wpcf7-submit.btn.btn-primary {
    background-color: #009ac0;
    font-size: 18px;
    border-color: #009ac0;
    padding: 10px 40px;
}

.contact_right .form-control {
    border: none;
    border-bottom: 3px solid #9c9c9c;
    border-radius: 0;
    padding: 5px 0;
}

.contact_right .row {
    margin: 0 0 25px 0;
}

.contact_right label.form-label {
    font-size: 18px;
    color: #222222;
    font-weight: 500;
}

.contact_right textarea {
    width: 100%;
    border: none;
    border-bottom: 3px solid #9c9c9c;
    border-radius: 0;
    padding: 5px 0;
    height: 110px;
}


/******************** Contact End *********************/


/******************** Footer Start *********************/

footer {
    float: left;
    width: 100%;
}

.footer_top {
    background: #085063;
    padding: 60px 0;
}

.footer_logo a {
    display: inline-block;
}

.footer_logo a img {
    width: 140px;
}

.footer_logo p {
    color: #fff;
    margin: 20px 0 0 0;
}

.footer_top ul {
    margin: 0;
    padding: 0 0 0 60px;
}

.footer_top ul li {
    list-style: none;
    margin: 12px 0;
}

.footer_top ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer_top ul li a:hover {
    text-decoration: underline;
}

.footer_top ul li a:focus {
    text-decoration: underline;
}

.footer_bot {
    background-color: #07404f;
    border-top: 1px solid #188fae;
}

ul.social {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.social li {
    display: inline-block;
    margin: 0 13px;
}

.footer_bot_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.footer_bot_wrap p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
}


/******************** Footer End *********************/


/* ==========================================================================
   Helper classes
   ========================================================================== */


/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
    display: none !important;
}


/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}


/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}


/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}


/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]::after {
        content: " (" attr(href) ")";
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}