/* Default Styling */
:root {
    --title-font:"Noto Serif", serif;
    --paragraph-font:"Roboto", sans-serif;
    --h1:80px;
    --h2:48px;
    --h3:32px;
    --h4:22px;
    --h5:18px;
    --p:16px;

    --main_accent:#000;

    --play: running;
    --direction: normal;
    --duration: 68.57142857142857s;
    --delay: 0s;
    --iteration-count: infinite;

}
.h1, 
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--title-font);
    font-weight: 400;
}
h1 {
    font-size: var(--h1);
    * {
        font-size: var(--h1);
    }
}
h2 {
    font-size: var(--h2);
    * {
        font-size: var(--h2);
    }
}
h3 {
    font-size: var(--h3);
    * {
        font-size: var(--h3);
    }
}
h4 {
    font-size: var(--h4);
    * {
        font-size: var(--h4);
    }
}
h5 {
    font-size: var(--h5);
    * {
        font-size: var(--h5);
    }
}
body {
    background-color: #F6F5F0;
}
body,
p {
    font-size: var(--p);
}
a,
a:hover,
input,
input:hover,
button,
button:hover,
img,
header,
.inner_header {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
img {
    max-width: 100%;
    height: auto;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-top-15 {
    margin-top: 15px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-top-120 {
    margin-top: 120px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
.padding-bottom-120 {
    padding-bottom: 120px;
}
.padding-bottom-240 {
    padding-bottom: 240px;
}
.padding-top-15 {
    padding-top: 15px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-top-220 {
    padding-top: 220px;
}
.padding-top-120 {
    padding-top: 120px;
}
.padding-top-240 {
    padding-top: 240px;
}
.left_text {
    text-align: left;
}
.centered_text {
    text-align: center;
}
.right_text {
    text-align: right;
}

/* End Default Styling */
header {
    background-color: #fff;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    padding:15px 0;
    z-index: 100;
    ul#menu-main {
        list-style: none;
        text-align: center;
        padding-left: 0;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        li {
            display: inline-block;
            margin:0 15px;
            position: relative;
            a {
                color: #00529b;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-size: 14px;
            }
            ul {
                list-style: none;
                padding-left: 0;
                margin-bottom: 0;
                display: none;
                position:absolute;
                padding:15px;
                background:#fff;
                min-width: 150px;
                left: -15px;
                li {
                    width: 100%;
                    color: #00529b;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    font-size: 14px;
                    display: inline-block;
                    text-align: left;
                    margin:0 0 0 0;
                    
                }
            }
        }
        li:hover {
            ul {
                display: block;
            }
        }
        li.logo_img {
            a {
                content:url('img/sm-icon.png');
                display: inline-block;
                width: 50px;
            }
        }
    }
    .change-login {
        display: inline-flex;
        align-items:center;
        a:not(.btn) {
            color: #00529b;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        a.active {
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            background: #01693f;
            color: #fff;
            text-align: center;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 0.5rem;
            margin-left: 15px;
        }
        span {
            padding:0px 5px;
        }
    }
}
.mobile-login div {
    margin-bottom:15px;
}
.top_banner_home {
    height:100vh;
    position: relative;
    overflow: hidden;
    z-index:-1;
    .bg_video {
        position: absolute;
        width:100%;
        height:100%;
        .owl-item {
            height:100vh;
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        video {
            top:50%;
            left:50%;
            min-width:100vw;
        }
    }
    div.container-fluid {
        position: absolute;
        bottom:0;
        left: 0;
        text-align: center;
        padding-bottom:60px;
        z-index:2;
        h1 {
            margin-bottom:1rem;
            color:#fff;
        }
        p {
            color:#fff;
            margin-bottom:0;
            font-size:var(--h4)
        }
    }
}

/* Module 0 Styling */

.module_0 {
    .default_section_title {
        h2 {
            text-transform: capitalize;
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 0;
            font-size: var(--h4);
        }
    }
}
.item_services {
    h2 {
        margin-bottom: 1rem;
        color:#01693f;
    }
    p {
        margin-bottom: 0;
        font-size:var(--h4)
    }
    a {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 2rem;
        border-radius: 0.5rem;
    }
    a:hover {
        background:#00529c;
        color:#fff;
    }
}
/* Module 0 Styling Ending */
/* Module 1 Styling */
.module_1 {
    
    .section_panel {
        border-radius: 0.5rem;
        background-color: #fff;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0px 3px 30px #00000014;
        text-align: center;
        height:calc(100% - 30px);
        display: inline-block;
        width:100%;
        color:#000;

        .section_panel_details {
            position: absolute;
            bottom:0;
            left:15px;
            width: calc(100% - 30px);
            padding:30px;
            background:#fff;
            h3 {
                margin-bottom: 1rem;
            }
            p {
                margin-bottom: 0;
                overflow: hidden;
                max-height: 0;
                opacity: 0;
                transition-property: all;
                transition-timing-function: cubic-bezier(.4,0,.2,1);
                transition-duration: .75s;

            }
            span {
                margin-top: 1rem;
                padding:7.5px 15px;
                border:solid thin var(--main_accent);
                display: inline-flex;
                min-width: 135px;
                height:50px;
                justify-content: center;
                align-items: center;  
                background:#fff;
                color:var(--main_accent);
                border-radius: 7.5px;
            }
            span:hover {
                background:#01693f;
                color:#fff;
            }
        }
        img {
            height:550px;
            object-fit: cover;
            -webkit-object-fit: cover;
            object-position: center center;
        }
    }
    .section_panel:hover {
        img {
            -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
            filter: grayscale(100%);
        }
        p {
            opacity: 1;
            max-height: 12rem;
        }
    }
}
.border-top {
    border-top: solid thin #888;
}
a.back-team {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 1rem;
        border-radius: 0.5rem;
}
a.back-team:hover {
        background:#00529c;
        color:#fff;
}
/* Module 1 Styling */
.bottom_item_btn {
    a {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 1rem;
        border-radius: 0.5rem;
    }
    a:hover {
        background:#00529c;
        color:#fff;
    }
}
/* Module 4 Styling */
.module_4 {

    .section_panel {
        border-radius: 0.5rem;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0px 3px 30px #00000014;
        text-align: center;
        height:calc(100% - 30px);
        background-color: #fff;
        .section_panel_details {
            padding:30px;
            * {
                color:#000;
            }
            h3 {
                margin-bottom: 1rem;
            }
            p {
                margin-bottom: 0;
                
            }
            h4 {
                min-height: 50px;
            }
            a {
                margin-top: 1rem;
                padding:7.5px 15px;
                border:solid thin var(--main_accent);
                display: inline-flex;
                min-width: 135px;
                height:50px;
                justify-content: center;
                align-items: center;  
                background:#fff;
                color:var(--main_accent);  
                border-radius: 7.5px;
            }
            a:hover {
                background:var(--main_accent);
                color:#fff;
            }
        }
        img {
         width: 100%;
         height: 450px;
         object-fit: cover;
         object-position:center ;
        }
    }
    .section_panel:hover {
        div {
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
            -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
            filter: grayscale(100%);

        }
    }
}
/* Module 4 Styling End */
/* Module 5 Styling */
.module_5 {
    text-align: center;
    p {
        margin-top: 1rem;
        font-size: var(--h4);
        margin-bottom: 0;
    }
    a {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 1rem;
        border-radius: 0.5rem;
    }
    a:hover {
        background:#00529c;
        color:#fff;
    }
}

/* Module 5 Styling End */
.testimonial_section {
    p {
        margin-top: 1rem;
    }
}
footer {
    background:#fff;
    h3 {
        margin-bottom: 1rem;
        color:rgb(1, 105, 63);
    }
    a {
        color:#000;
    }
    p {
        margin-bottom: 0.1rem;
    }
    .footer_1 {
        a {
            margin-bottom:0.1rem;
            border-bottom:solid thin transparent;
            padding-bottom: 1px;
            display: inline-block;
        }
        a:hover {
            color:#000;
            border-bottom-color:rgb(1, 105, 63);
        }
    }
    .footer_2 {
        text-align: center;
        a {
            margin:0 3.75px;
            color:rgb(1, 105, 63);
            svg {
                width: 25px;
                height:25px;
            }
        }
    }
    .footer_3 {
        text-align: right;

    }
    .center_text {
        text-align: center;
        p {
            margin-bottom: 0;
            font-size: 12px;
        }
    }
}
.single {
    .module_bg {
        p {
            margin-top: 3.75px;
        }
    }
}
.profile_img {
    img {
        width: 100%;
    }
}
.module_bg {
    text-align: center;
    * {
        color:#fff;
    }
    h1 {

    }
    h2 {
        margin-bottom: 15px;
    }
    
    .default_content {
        h3 {
            color:#fff;
            margin-top:0;
            margin-bottom:0.5rem;
            font-size:var(--h3);
        }
    }
    p {
        margin-bottom: 0;
        font-size:var(--h4);
    }
    a {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 1rem;
        border-radius: 0.5rem;
    }
    a:hover {
        background:#00529c;
        color:#fff;
    }
}
.default_content {
    h2 {
        margin-bottom: 1rem;
        font-size: var(--h3);
        color:#01693f;
    }
    h3 {
        margin-bottom: 1rem;
        margin-top:1.5rem;
        font-size: var(--h4);
        color:#01693f;
    }
    img {
        border-radius: 0.5rem;
    }
}
.micro_news {
    h4 {
        font-size: var(--h5);
        color:#01693f;
        margin-bottom: 0.5rem;
    }
    img {
        width: 100%;
        margin-bottom: 1rem;
    }
    a {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 1rem;
        width: 100%;
        border-radius: 0.5rem;
    }
    a:hover {
        background:#00529c;
        color:#fff;
    }
    p {
        line-height: 1;
        sm {
            font-size: 14px;
        }
    }
}
.panel_content_item {
    text-align: center;
    span {
        font-size: var(--h3);
        color: #fff;
        background:#01693f;
        border-radius: 100%;
        display: inline-flex;
        margin:0 auto 1rem;
        width:60px;
        height:60px;
        align-items: center;
        justify-content: center;
    }
    .inner_white{
        background:#fff;
        box-shadow: 0px 3px 30px #00000014;
        border-radius: 0.5rem;
        overflow: hidden;
        padding:30px;
        height:100%;
        p {
            margin-bottom:0;
        }
    }
}
/* Module 6 Styling */

.module_6 {
    .wpcf7 {
        background:#fff;
        box-shadow: 0px 3px 30px #00000014;
        border-radius: 0.5rem;
        overflow: hidden;
        padding:30px;
        height:100%;
        p {
            margin-bottom:0;
        } 
        h2 {
            margin-bottom: 0;
        }
    }
    input:not([type="submit"]) {
        width: 100%;
        height:50px;
        margin-top: 7.5px;
    }
    textarea {
        margin-top: 15px;
        width: 100%;
    }
    label {
       margin-top: 1rem;
        display: inline-block;
        width: 100%;
    }
    .wpcf7-form-control-wrap {
        display: inline-block;
        width: 100%;
    }
    input[type="submit"] {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 1rem;
        border-radius: 0.5rem; 
        cursor: pointer;
        border:none;
    }
    input[type="submit"]:hover {
        background:#00529c;
        color:#fff;   
    }
    .r_contact_1 {
        p {
            margin-top: 1rem;
        }
        a {
            margin-top: 1rem;
            color:#000;
            text-decoration: underline;
        }
    }
}
/* Module 6 Styling End */

.outer_sponsor_items {
    overflow: hidden;
}
  .sponsor_items {
    display: flex;
    animation: scroll-left 30s linear infinite;

  }

  .sponsor_items>div {
    flex: 0 0 auto;
    min-width: 300px;
    margin-right: 50px;
    text-align: center;
    max-width: 20rem;
    height: 6.25rem;
  }
  .sponsor_items>div>img {
    object-fit: contain;
    width:100%;
    height:100%;
  }
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

.r-contact {
    a.btn {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding:.875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;    
        font-weight: 600;
        margin-top: 1rem;
        border-radius: 0.5rem;
        color:#fff;
    }
    a.btn:hover {
        background:#00529c;
        color:#fff;
    }
}
.owl-directions {
    text-align: center;
    img {
        margin-bottom: 15px;
        max-height: 500px;
        object-fit: contain;
    }
}
.bg_white {
    background-color: #fff;
    border-bottom: solid thin #F6F5F0;
}
.page-id-317 {
    footer {
        margin-top: 0;
    }
}
.article_archive {
    h3 {
    }
    h4 {
        padding-top: 1rem;
        margin-bottom: 0.5rem;
    }
    a {
        display: inline-block;
        width:100%;
        color:#01693f;
        text-decoration: underline;
    }
}
#gform_1,
#gform_3 {
    border-radius: 15px;
    background:#fff;
    padding:60px;
    #field_1_3 {
        h3 {
            margin-top: 0;
        }
    }
    h3 {
        font-size: var(--h3);
    }
}
.gform_wrapper.gravity-theme .gsection {
    border-bottom:solid thin #002e44;
    padding:0 15px 7.5px 0;
}
.gform_wrapper.gravity-theme .gfield_label{
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input {
        display: inline-block;
        background: #01693f;
        color: #fff;
        padding: .875rem 1.5rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;
        font-weight: 600;
        margin-top: 1rem;
        border-radius: 0.5rem;
        color: #fff;
        border:none;
        cursor: pointer;
}
.gform_wrapper.gravity-theme .gform_footer button:hover,
.gform_wrapper.gravity-theme .gform_footer input:hover,
.gform_wrapper.gravity-theme .gform_page_footer button:hover,
.gform_wrapper.gravity-theme .gform_page_footer input:hover {
        background: #00529c;
        color: #fff;
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {

    :root {
        --h1:32px;
        --h2:28px;
        --h3:24px;
        --h4:18px;
        --h5:18px;
        --p:16px;
    
    }



    .margin-bottom-15 {
        margin-bottom: 15px;
    }
    .margin-bottom-30 {
        margin-bottom: 15px;
    }
    .margin-bottom-60 {
        margin-bottom: 30px;
    }
    .margin-bottom-90 {
        margin-bottom: 30px;
    }
    .margin-bottom-120 {
        margin-bottom: 60px;
    }
    
    .margin-top-15 {
        margin-top: 15px;
    }
    .margin-top-30 {
        margin-top: 15px;
    }
    .margin-top-60 {
        margin-top: 30px;
    }
    .margin-top-90 {
        margin-top: 30px;
    }
    .margin-top-120 {
        margin-top: 60px;
    }
    
    .padding-bottom-15 {
        padding-bottom: 15px;
    }
    .padding-bottom-30 {
        padding-bottom: 15px;
    }
    .padding-bottom-60 {
        padding-bottom: 30px;
    }
    .padding-bottom-90 {
        padding-bottom: 30px;
    }
    .padding-bottom-120 {
        padding-bottom: 60px;
    }
    
    .padding-top-15 {
        padding-top: 15px;
    }
    .padding-top-30 {
        padding-top: 15px;
    }
    .padding-top-60 {
        padding-top: 30px;
    }
    .padding-top-90 {
        padding-top: 30px;
    }
    .padding-top-120 {
        padding-top: 60px;
    }
}

@media (max-width: 767.98px) {
    .top_banner_home {
        height:auto;
        div.container-fluid {
            position: relative;
            padding-top: 60px;
        }
    }
    .m-bottom-30 {
        margin-bottom: 30px;
    }
    .m-bottom-60 {
        margin-bottom: 60px;
    }
    .padding-top-240 {
        padding-top: 60px;
    }
    .padding-bottom-240 {
        padding-bottom: 60px;
    }
    .padding-top-220 {
        padding-top: 60px;
    }
    header {
        position: relative;
    }
}