/* 
    Table Of Content

    01 - Global Style
        01.1 - Helper Style
        01.2 - Button
        01.3 - Section Head
    02 - Navigation & Footer
    03 - Slider Style
    04 - Features Section
    05 - About Section
    06 - Case Study Section
    07 - Experience Section
    08 - Counter Up Section
    09 - Team Section
    10 - CTA Section
    11 - Practice Area Section
    12 - Video Section
    13 - Contact Section
    14 - Blog Section
    15 - Why Choose Us Section
    16 - FAQ Section
    17 - Instagram Section
    18 - Testimonial Section
    19 - Service Section
    20 - Hompages
    21 - Innar Pages
*/
/*
======================================== 
  01 - Global Style
========================================
*/
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #cca876;
}

    a:hover {
        text-decoration: none;
        color: #a0763c;
    }

input, textarea, button {
    outline: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    input:focus, textarea:focus, button:focus {
        outline: 0;
    }

.slick-slide {
    outline: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    line-height: 1.75;
    font-size: 16px;
}

h1, h2, h3, h4, h5 {
    color: #333333;
    font-weight: 600;
}

h2 {
    font-size: 2.81em;
    line-height: 1.35;
}

h3 {
    font-size: 1.87em;
}

h4 {
    font-size: 1.25em;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

p {
    color: #777777;
}

.font-big {
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.6;
}

/*
======================================== 
  01.1 - Helper Style
========================================
*/
.view-mobile {
    display: none;
}

.pa-180 {
    padding-top: 180px;
    padding-bottom: 180px;
}

.pa-160 {
    padding-top: 160px;
    padding-bottom: 160px;
}

.pa-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.pa-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pt-330 {
    padding-top: 330px;
}

.pb-220 {
    padding-bottom: 220px;
}

.pt-220 {
    padding-top: 220px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-100 {
    padding-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.primary-bg {
    background: #cca876;
}

.dark-bg {
    background: #161617;
}

.extra-dark-bg {
    background: #000;
}

.light-dark-bg {
    background: #1f2839;
}

.blue-bg {
    background: #09266d;
}

.extra-dark-blue {
    background: #04153f;
}

.extra-light-blue {
    background: #09266e;
}

.white-bg {
    background: #fff;
}

.light-bg {
    background: #f2f3f9;
}

.extra-light-bg {
    background: #f8f8f8;
}

.bg-pattern {
    background-image: url("../img/team-2.png") !important;
    background-repeat: repeat;
}

.primary-color {
    color: #cca876;
}

.color-white {
    color: #fff;
}

.color-light {
    color: #777777;
}

.color-dark {
    color: #333333;
}

    .color-dark:hover {
        color: #333333;
    }

.color-extra-light {
    color: #cccccc;
}

.blue-color {
    color: #09266d;
}

.radius-8 {
    border-radius: 8px;
}

.radius-5 {
    border-radius: 5px;
}

/* Back to Top */
#top-button {
    display: inline-block;
    background-color: #c2975c;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 90px;
    right: 30px;
    -webkit-transition: background-color .4s, opacity .5s, visibility .5s;
    -o-transition: background-color .4s, opacity .5s, visibility .5s;
    transition: background-color .4s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(167, 167, 167, 0.3);
    box-shadow: 0px 0px 15px 0px rgba(167, 167, 167, 0.3);
}

    #top-button i {
        font-size: 1.2em;
        line-height: 40px;
        color: #fff;
    }

    #top-button:hover {
        cursor: pointer;
        background-color: #000;
    }

    #top-button:active {
        background-color: #000;
    }

    #top-button.show {
        opacity: 1;
        visibility: visible;
    }

/*
======================================== 
  01.2 - Button Style
========================================
*/
.button-top {
    background: #d42427;
    color: #ffffff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    border-radius: 40px;
}

    .button-top:hover {
        color: #fff;
        background: #be9051;
    }

.button-top-blue {
    background: #061947;
    padding: 18px 30px;
    display: inline-block;
    text-transform: uppercase;
}

    .button-top-blue:hover {
        background: #fff;
        color: #061947;
    }

.button-top-primary {
    background: #b38b53;
    padding: 18px 30px;
    display: inline-block;
    text-transform: uppercase;
}

    .button-top-primary:hover {
        background: #fff;
        color: #b38b53;
    }

.button-primary {
    background: #496454;
    color: #ffffff;
    padding: 24px 45px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    font-size: 17px;
    line-height: 1;
}

    .button-primary i {
        font-size: 14px;
        padding-left: 5px;
        -webkit-transition: left .3s ease-in-out;
        -o-transition: left .3s ease-in-out;
        transition: left .3s ease-in-out;
        position: relative;
        left: 0;
        top: -1px;
    }

    .button-primary:hover {
        background: #be9051;
        color: #fff;
        -webkit-box-shadow: 0px 2px 10px 0px rgba(144, 144, 144, 0.2);
        box-shadow: 0px 2px 10px 0px rgba(144, 144, 144, 0.2);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }

        .button-primary:hover i {
            left: 5px;
        }

.button-white {
    background: #fff;
    color: #cca876;
    padding: 24px 45px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    font-size: 17px;
    line-height: 1;
}

    .button-white i {
        font-size: 14px;
        padding-left: 5px;
        -webkit-transition: left .3s ease-in-out;
        -o-transition: left .3s ease-in-out;
        transition: left .3s ease-in-out;
        position: relative;
        left: 0;
        top: -1px;
    }

    .button-white:hover {
        background: #333333;
        color: #fff;
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }

        .button-white:hover i {
            left: 5px;
        }

    .button-white.button-white-secondary {
        color: #09266d;
    }

        .button-white.button-white-secondary:hover {
            color: #fff;
            background: #09266d;
        }

.button-black {
    background: #333333;
    color: #fff;
    padding: 24px 45px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    font-size: 17px;
    line-height: 1;
}

    .button-black i {
        font-size: 14px;
        padding-left: 5px;
        -webkit-transition: left .3s ease-in-out;
        -o-transition: left .3s ease-in-out;
        transition: left .3s ease-in-out;
        position: relative;
        left: 0;
        top: -1px;
    }

    .button-black:hover {
        background: #cca876;
        color: #fff;
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }

        .button-black:hover i {
            left: 5px;
        }

    .button-black.button-white-secondary {
        color: #09266d;
    }

        .button-black.button-white-secondary:hover {
            color: #fff;
            background: #09266d;
        }

.button-blue {
    background: #09266d;
    color: #ffffff;
    padding: 24px 45px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    font-size: 17px;
    line-height: 1;
}

    .button-blue i {
        font-size: 14px;
        padding-left: 5px;
        -webkit-transition: left .3s ease-in-out;
        -o-transition: left .3s ease-in-out;
        transition: left .3s ease-in-out;
        position: relative;
        left: 0;
        top: -1px;
    }

    .button-blue:hover {
        background: #05163e;
        color: #fff;
        -webkit-box-shadow: 0px 2px 10px 0px rgba(144, 144, 144, 0.2);
        box-shadow: 0px 2px 10px 0px rgba(144, 144, 144, 0.2);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }

        .button-blue:hover i {
            left: 5px;
        }

.button-small {
    text-transform: uppercase;
    color: #333333;
    border: 1px solid #dddddd;
    padding: 10px 25px;
    display: inline-block;
}

    .button-small:hover {
        background: #496454;
        color: #fff;
        border-color: #496454;
    }

.rounded-button {
    border-radius: 4px;
    font-size: 16px;
    border: 0;
    font-weight: 500;
    padding: 20px 30px;
}

.button-flat {
    border-radius: 0;
    font-weight: normal;
    padding: 20px 40px;
}

/*
======================================== 
  01.3 - Section Head Style
========================================
*/
.section-head-one span {
    font-weight: 400;
}

.section-head-one p {
    margin-bottom: 0;
    text-transform: uppercase;
}

.section-head-one .line {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #cca876;
    margin-left: 3px;
}

    .section-head-one .line:before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cca876;
        position: absolute;
        top: -3px;
        left: -3px;
    }

    .section-head-one .line:after {
        content: "";
        width: 20px;
        height: 4px;
        border-radius: 2px;
        background: #cca876;
        position: absolute;
        left: 48px;
    }

.section-head-one.white-line .line {
    background: #fff;
}

    .section-head-one.white-line .line:before, .section-head-one.white-line .line:after {
        background: #fff;
    }

.section-head-one.text-center .line {
    margin: 0 auto;
    left: -9px;
}

.section-head-two .line {
    position: relative;
    text-transform: uppercase;
    padding-left: 45px;
    margin-bottom: 5px;
    font-weight: 500;
}

    .section-head-two .line:before {
        content: "";
        width: 37px;
        height: 1px;
        background: #cca876;
        position: absolute;
        left: 0;
        top: 13px;
    }

.section-head-three .line {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
    display: inline-block;
}

    .section-head-three .line:before, .section-head-three .line:after {
        content: "";
        width: 18px;
        height: 2px;
        background: #cca876;
        position: absolute;
        left: -28px;
        top: 13px;
    }

    .section-head-three .line:after {
        left: auto;
        right: -28px;
    }

.section-head-four {
    padding-top: 25px;
    position: relative;
}

    .section-head-four h2 {
        font-size: 40px;
    }

    .section-head-four .line {
        position: absolute;
        display: block;
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: #09266d;
        margin-left: 3px;
        top: 0;
    }

        .section-head-four .line:before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #09266d;
            position: absolute;
            top: -3px;
            left: -3px;
        }

        .section-head-four .line:after {
            content: "";
            width: 20px;
            height: 4px;
            border-radius: 2px;
            background: #09266d;
            position: absolute;
            left: 48px;
        }

    .section-head-four.white-line .line {
        background: #fff;
    }

        .section-head-four.white-line .line:before, .section-head-four.white-line .line:after {
            background: #fff;
        }

    .section-head-four.text-center .line {
        margin: 0 auto;
        left: -9px;
    }

.section-head-five .line {
    width: 10px;
    height: 10px;
    background: #09266d;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 15px;
}

    .section-head-five .line:before, .section-head-five .line:after {
        content: "";
        width: 36px;
        height: 4px;
        background: #09266d;
        border-radius: 2px;
        position: absolute;
        top: 3px;
    }

    .section-head-five .line:before {
        left: -45px;
    }

    .section-head-five .line:after {
        right: -45px;
    }

.section-head-five.white-line .line {
    background: #fff;
}

    .section-head-five.white-line .line:before, .section-head-five.white-line .line:after {
        background: #fff;
    }

/*
======================================== 
  02 - Header & Footer Style
========================================
*/
.unveiled-navigation {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    padding-bottom: 5px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: transparent;
    -webkit-transition: all 0.45s cubic-bezier(0.25, 1, 0.3, 1);
    -o-transition: all 0.45s cubic-bezier(0.25, 1, 0.3, 1);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.3, 1);
}

.ct-nav-fixed {
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-transition: all 0.45s cubic-bezier(0.25, 1, 0.3, 1);
    -o-transition: all 0.45s cubic-bezier(0.25, 1, 0.3, 1);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.3, 1);
    background: #000;
    -webkit-box-shadow: 0px 1px 11px 0px rgba(255, 255, 255, 0.08);
    box-shadow: 0px 1px 11px 0px rgba(255, 255, 255, 0.08);
}

.nav-brand {
    padding: 8px 0 0;
    display: inline-block;
    margin-top: 24px;
    line-height: 0;
}

.header-layout-one .container {
    max-width: 1450px;
}

.header-layout-one .nav-brand {
    padding: 0;
    display: inline-block;
    margin-top: 24px;
    line-height: 0;
}

    .header-layout-one .nav-brand img {
        max-width: 200px;
    }

.header-layout-one .header-social {
    /*-webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;*/
}

    .header-layout-one .header-social li {
        position: relative;
    }

        .header-layout-one .header-social li:last-child {
            top: 3px;
        }

        .header-layout-one .header-social li:first-child {
            top: -5px;
        }

.header-layout-one .header-navigation {
    width: 100%;
}

.header-layout-one .navigation {
    background: transparent;
}

.header-layout-one .nav-menu > li > a {
    font-size: 14px;
    color: #496454;
    font-weight: 500;
    line-height: 1.2;
}

.header-layout-one .submenu-indicator {
    margin-left: 6px;
    margin-top: 7px;
}

.header-layout-one .submenu-indicator-chevron {
    border-width: 0 2px 2px 0;
    border-color: transparent #496454 #496454 transparent;
}

.header-layout-one .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    border-color: transparent #333333 #333333 transparent;
}

.header-layout-one .nav-dropdown {
    -webkit-box-shadow: 0px 5px 25px 0px rgba(5, 11, 67, 0.1);
    box-shadow: 0px 5px 25px 0px rgba(5, 11, 67, 0.1);
}

.header-layout-one .nav-dropdown {
    padding: 7px 0;
    background: #fff;
}

    .header-layout-one .nav-dropdown > li > a {
        font-size: 13px;
        color: #333333;
        font-weight: 400;
        padding: 7px 20px;
    }

    .header-layout-one .nav-menu > li:hover > a .submenu-indicator-chevron,
    .header-layout-one .nav-menu > .active > a .submenu-indicator-chevron,
    .header-layout-one .nav-menu > .focus > a .submenu-indicator-chevron,
    .header-layout-one .nav-dropdown > li:hover > a .submenu-indicator-chevron,
    .header-layout-one .nav-dropdown > .focus > a .submenu-indicator-chevron {
        border-color: transparent #cca876 #cca876 transparent;
    }

    .header-layout-one .nav-menu > li:hover > a,
    .header-layout-one .nav-menu > li.active > a,
    .header-layout-one .nav-menu > li.focus > a,
    .header-layout-one .nav-dropdown > li:hover > a,
    .header-layout-one .nav-dropdown > li.focus > a {
        color: #cca876;
    }

.header-layout-one .open-offcanvas {
    display: inline-block;
    width: 55px;
    height: 55px;
    background: #496454;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 50%;
}

    .header-layout-one .open-offcanvas span {
        width: 25px;
        height: 2px;
        display: block;
        background: #fff;
        margin: 2px 0;
        border-radius: 1.5px;
    }

.header-layout-one.ct-nav-fixed {
    padding: 0 0;
}

.header-layout-two .container {
    max-width: 1170px;
}

.header-layout-two .header-social {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55px;
    flex: 0 0 55px;
}

    .header-layout-two .header-social li {
        position: relative;
    }

        .header-layout-two .header-social li:first-child {
            top: -1px;
        }

.header-layout-two .header-navigation {
    width: calc(100% - 55px);
}

.header-layout-two .open-offcanvas {
    display: inline-block;
    background: transparent;
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .header-layout-two .open-offcanvas span {
        width: 25px;
        height: 2px;
        display: block;
        background: #fff;
        margin: 2px 0;
        border-radius: 1.5px;
    }

.header-layout-three {
    background: #fff;
}

    .header-layout-three .nav-brand {
        padding: 0;
        display: inline-block;
        margin-top: 24px;
        line-height: 0;
    }

        .header-layout-three .nav-brand img {
            max-width: 200px;
        }

    .header-layout-three .header-social {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 55px;
        flex: 0 0 55px;
    }

        .header-layout-three .header-social li {
            position: relative;
        }

            .header-layout-three .header-social li:first-child {
                top: 0px;
            }

    .header-layout-three .header-navigation {
        width: calc(100% - 55px);
    }

    .header-layout-three .navigation {
        background: transparent;
    }

    .header-layout-three .nav-menu > li > a {
        font-size: 16px;
        color: #777777;
        font-weight: 500;
        line-height: 1.2;
    }

    .header-layout-three .submenu-indicator {
        margin-left: 6px;
        margin-top: 7px;
    }

    .header-layout-three .submenu-indicator-chevron {
        border-width: 0 2px 2px 0;
        border-color: transparent #777777 #777777 transparent;
    }

    .header-layout-three .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
        border-color: transparent #333333 #333333 transparent;
    }

    .header-layout-three .nav-dropdown {
        -webkit-box-shadow: 0px 5px 25px 0px rgba(5, 11, 67, 0.1);
        box-shadow: 0px 5px 25px 0px rgba(5, 11, 67, 0.1);
    }

    .header-layout-three .nav-dropdown {
        padding: 7px 0;
        background: #fff;
    }

        .header-layout-three .nav-dropdown > li > a {
            font-size: 15px;
            color: #333333;
            font-weight: 400;
            padding: 7px 20px;
        }

        .header-layout-three .nav-menu > li:hover > a .submenu-indicator-chevron,
        .header-layout-three .nav-menu > .active > a .submenu-indicator-chevron,
        .header-layout-three .nav-menu > .focus > a .submenu-indicator-chevron,
        .header-layout-three .nav-dropdown > li:hover > a .submenu-indicator-chevron,
        .header-layout-three .nav-dropdown > .focus > a .submenu-indicator-chevron {
            border-color: transparent #09266d #09266d transparent;
        }

        .header-layout-three .nav-menu > li:hover > a,
        .header-layout-three .nav-menu > li.active > a,
        .header-layout-three .nav-menu > li.focus > a,
        .header-layout-three .nav-dropdown > li:hover > a,
        .header-layout-three .nav-dropdown > li.focus > a {
            color: #09266d;
        }

    .header-layout-three .open-offcanvas {
        display: inline-block;
        width: 55px;
        height: 55px;
        background: #09266d;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 50%;
    }

        .header-layout-three .open-offcanvas span {
            width: 25px;
            height: 2px;
            display: block;
            background: #fff;
            margin: 2px 0;
            border-radius: 1.5px;
        }

    .header-layout-three .sidenav .closebtn {
        background: #09266d;
    }

    .header-layout-three .sidenav-menu li a:hover {
        color: #09266d;
    }

    .header-layout-three .top-bar {
        font-size: 15px;
    }

        .header-layout-three .top-bar .bar-left .list-inline-item:not(:last-child) {
            padding-right: 10px;
        }

        .header-layout-three .top-bar .social-group {
            display: inline-block;
        }

            .header-layout-three .top-bar .social-group a {
                color: #fff;
            }

        .header-layout-three .top-bar .btn-full {
            display: inline-block;
        }

    .header-layout-three.unveiled-navigation {
        padding-top: 0 !important;
    }

    .header-layout-three.ct-nav-fixed {
        background: #fff;
        -webkit-transform: translateY(-63px);
        -ms-transform: translateY(-63px);
        transform: translateY(-63px);
        -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.04);
        box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.04);
    }

        .header-layout-three.ct-nav-fixed .sidenav {
            top: 63px;
        }

.header-layout-four {
    background: #fff;
}

    .header-layout-four .nav-brand {
        padding: 0;
    }

        .header-layout-four .nav-brand img {
            max-width: 200px;
        }

    .header-layout-four .header-social {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 55px;
        flex: 0 0 55px;
    }

        .header-layout-four .header-social li {
            position: relative;
        }

            .header-layout-four .header-social li:first-child {
                top: 0px;
            }

    .header-layout-four .header-navigation {
        width: calc(100% - 55px);
    }

    .header-layout-four .navigation {
        background: transparent;
    }

    .header-layout-four .nav-menu > li > a {
        font-size: 16px;
        color: #333333;
        font-weight: 500;
        line-height: 1.2;
    }

    .header-layout-four .submenu-indicator {
        margin-left: 6px;
        margin-top: 7px;
    }

    .header-layout-four .submenu-indicator-chevron {
        border-width: 0 2px 2px 0;
        border-color: transparent #333333 #333333 transparent;
    }

    .header-layout-four .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
        border-color: transparent #333333 #333333 transparent;
    }

    .header-layout-four .nav-dropdown {
        -webkit-box-shadow: 0px 5px 25px 0px rgba(5, 11, 67, 0.1);
        box-shadow: 0px 5px 25px 0px rgba(5, 11, 67, 0.1);
    }

    .header-layout-four .nav-dropdown {
        padding: 7px 0;
        background: #fff;
    }

        .header-layout-four .nav-dropdown > li > a {
            font-size: 15px;
            color: #333333;
            font-weight: 400;
            padding: 7px 20px;
        }

        .header-layout-four .nav-menu > li:hover > a .submenu-indicator-chevron,
        .header-layout-four .nav-menu > .active > a .submenu-indicator-chevron,
        .header-layout-four .nav-menu > .focus > a .submenu-indicator-chevron,
        .header-layout-four .nav-dropdown > li:hover > a .submenu-indicator-chevron,
        .header-layout-four .nav-dropdown > .focus > a .submenu-indicator-chevron {
            border-color: transparent #cca876 #cca876 transparent;
        }

        .header-layout-four .nav-menu > li:hover > a,
        .header-layout-four .nav-menu > li.active > a,
        .header-layout-four .nav-menu > li.focus > a,
        .header-layout-four .nav-dropdown > li:hover > a,
        .header-layout-four .nav-dropdown > li.focus > a {
            color: #cca876;
        }

    .header-layout-four .open-offcanvas {
        display: inline-block;
        width: 55px;
        height: 55px;
        background: #cca876;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 50%;
    }

        .header-layout-four .open-offcanvas span {
            width: 25px;
            height: 2px;
            display: block;
            background: #fff;
            margin: 2px 0;
            border-radius: 1.5px;
        }

    .header-layout-four .sidenav .closebtn {
        background: #cca876;
    }

    .header-layout-four .sidenav-menu li a:hover {
        color: #cca876;
    }

    .header-layout-four .top-bar {
        font-size: 15px;
    }

        .header-layout-four .top-bar .bar-left .list-inline-item:not(:last-child) {
            padding-right: 10px;
        }

        .header-layout-four .top-bar .social-group {
            display: inline-block;
        }

            .header-layout-four .top-bar .social-group a {
                color: #fff;
            }

        .header-layout-four .top-bar .btn-full {
            display: inline-block;
        }

    .header-layout-four.unveiled-navigation {
        padding-top: 0 !important;
    }

    .header-layout-four.ct-nav-fixed {
        background: #fff;
        -webkit-transform: translateY(-63px);
        -ms-transform: translateY(-63px);
        transform: translateY(-63px);
        -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.04);
        box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.04);
    }

        .header-layout-four.ct-nav-fixed .sidenav {
            top: 63px;
        }

.nav-menu > li > a {
    height: 88px;
    padding: 35px 15px;
}

.sidenav {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    display: none;
}

.sidenav-menu {
    padding: 130px 30px 0 !important;
    width: 350px;
    right: -350px;
    position: relative;
    height: 100%;
    float: right;
    background: #fff;
    text-align: left;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .sidenav-menu .social li {
        display: inline-block;
        padding: 0 5px;
    }

    .sidenav-menu li {
        padding: 5px 0;
    }

        .sidenav-menu li a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            color: #4969a8;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.07);
            box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.07);
        }

            .sidenav-menu li a:hover {
                color: #fff !important;
                background: #4969a8;
            }

            .sidenav-menu li a.color-twitter {
                color: #2aa3ef;
            }

                .sidenav-menu li a.color-twitter:hover {
                    background: #2aa3ef;
                }

            .sidenav-menu li a.color-dribbble {
                color: #ea4c89;
            }

                .sidenav-menu li a.color-dribbble:hover {
                    background: #ea4c89;
                }

            .sidenav-menu li a.color-youtube {
                color: #ff0000;
            }

                .sidenav-menu li a.color-youtube:hover {
                    background: #ff0000;
                }

            .sidenav-menu li a:hover {
                color: #cca876;
            }

.sidenav .closebtn {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 18px;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #cca876;
    color: #fff;
    border-radius: 50%;
}

.sidenav h5 {
    font-weight: 600;
}

.sidenav-list .info-list {
    color: #777777;
}

    .sidenav-list .info-list .icon {
        margin-right: 15px;
        color: #333333;
    }

    .sidenav-list .info-list p {
        margin-bottom: 10px;
        line-height: 1.4;
    }

.sidenav-list .social {
    padding-top: 30px;
}

.footer-layout-one .footer-widget .footer-logo {
    max-width: 255px;
    margin-bottom: 38px;
}

.footer-layout-one .footer-widget h4 {
    margin-bottom: 40px;
}

.footer-layout-one .footer-widget a {
    color: #fff;
}

.footer-layout-one .footer-widget .widget-list li {
    padding: 6px 0;
}

    .footer-layout-one .footer-widget .widget-list li:first-child {
        padding-top: 0;
    }

    .footer-layout-one .footer-widget .widget-list li:last-child {
        padding-bottom: 0;
    }

.footer-layout-one .footer-widget .widget-list a:hover {
    color: #ddc4a3;
}

.footer-layout-one .footer-widget .footer-social li:not(:last-child) {
    padding-right: 8px;
}

.footer-layout-one .footer-widget .footer-social li a:hover {
    color: #cca876;
}

.footer-layout-one .footer-bottom {
    padding: 25px 0 20px;
}

.footer-layout-two {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(31, 40, 57, 0.95)), to(rgba(31, 40, 57, 0.95))), url("../img/contact-1.png");
    background-image: -webkit-linear-gradient(left, rgba(31, 40, 57, 0.95), rgba(31, 40, 57, 0.95)), url("../img/contact-1.png");
    background-image: -o-linear-gradient(left, rgba(31, 40, 57, 0.95), rgba(31, 40, 57, 0.95)), url("../img/contact-1.png");
    background-image: linear-gradient(to right, rgba(31, 40, 57, 0.95), rgba(31, 40, 57, 0.95)), url("../img/contact-1.png");
}

    .footer-layout-two .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

.footer-layout-three {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(9, 38, 109, 0.95)), to(rgba(9, 38, 109, 0.95))), url("../img/contact-1.png");
    background-image: -webkit-linear-gradient(left, rgba(9, 38, 109, 0.95), rgba(9, 38, 109, 0.95)), url("../img/contact-1.png");
    background-image: -o-linear-gradient(left, rgba(9, 38, 109, 0.95), rgba(9, 38, 109, 0.95)), url("../img/contact-1.png");
    background-image: linear-gradient(to right, rgba(9, 38, 109, 0.95), rgba(9, 38, 109, 0.95)), url("../img/contact-1.png");
}

    .footer-layout-three .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

/*
======================================== 
  03 - Slider Section
========================================
*/
.slider-layout-two .heading-2 {
    letter-spacing: 2px !important;
}

.slider-layout-two .button-primary {
    -webkit-transition: all .3s ease-in-out !important;
    -o-transition: all .3s ease-in-out !important;
    transition: all .3s ease-in-out !important;
    padding: 18px 40px !important;
    display: inline-block !important;
    line-height: 1.4 !important;
    font-size: 18px !important;
    text-transform: uppercase;
    border: 0;
}

.slider-layout-two .tp-parallax-wrap.rev_row_wrap {
    max-width: 1400px !important;
    width: 100% !important;
    left: 200px !important;
}

.slider-layout-two div#slide-969-layer-2, .slider-layout-two #slide-968-layer-2 {
    letter-spacing: 0 !important;
}

.slider-layout-one .slider-heading {
    line-height: 1.3 !important;
}

.slider-layout-three {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(5, 26, 76, 0.95)), to(rgba(5, 26, 76, 0.95))), url("../img/header-3.png");
    background-image: -webkit-linear-gradient(left, rgba(5, 26, 76, 0.95), rgba(5, 26, 76, 0.95)), url("../img/header-3.png");
    background-image: -o-linear-gradient(left, rgba(5, 26, 76, 0.95), rgba(5, 26, 76, 0.95)), url("../img/header-3.png");
    background-image: linear-gradient(to right, rgba(5, 26, 76, 0.95), rgba(5, 26, 76, 0.95)), url("../img/header-3.png");
    background-size: cover;
    position: relative;
}

    .slider-layout-three .container {
        position: relative;
        z-index: 3;
    }

    .slider-layout-three:after {
        content: "";
        background: #06205e;
        width: 34%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
    }

    .slider-layout-three h3 {
        font-weight: 400;
    }

    .slider-layout-three h1 {
        font-size: 60px;
        line-height: 1.5;
        padding: 15px 0 25px;
    }

    .slider-layout-three .list-hero {
        margin-bottom: 50px;
    }

        .slider-layout-three .list-hero li {
            position: relative;
            margin: 5px 0;
            padding-left: 20px;
        }

            .slider-layout-three .list-hero li:before {
                content: "";
                width: 8px;
                height: 8px;
                background: #fff;
                border-radius: 50%;
                position: absolute;
                left: 0;
                top: 10px;
            }

    .slider-layout-three .hero-right {
        position: relative;
    }

        .slider-layout-three .hero-right img {
            border-radius: 5px;
        }

        .slider-layout-three .hero-right .video-player {
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -35px;
            margin-top: -35px;
        }

.innar-hero {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.85))), url("../img/header-4.png");
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../img/header-4.png");
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../img/header-4.png");
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../img/header-4.png");
    background-size: cover;
}

    .innar-hero .list-inline-item {
        font-weight: 500;
    }

        .innar-hero .list-inline-item a {
            color: #fff;
        }

.metis.tparrows {
    background: #496454;
}

    .metis.tparrows:before {
        color: #fff;
    }

    .metis.tparrows:hover {
        background: #be9051;
    }

/*
======================================== 
  04 - Feature Section
========================================
*/
.feature-layout-one .feature-item {
    background-image: url("../img/feature/1.png");
    background-size: cover;
    position: relative;
    padding: 40px 20px 50px;
    cursor: pointer;
}

    .feature-layout-one .feature-item:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        /*background: rgba(0, 0, 0, 0.8);*/
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .feature-layout-one .feature-item:hover:before {
        background: rgba(204, 168, 118, 0.9);
    }

    .feature-layout-one .feature-item:hover i {
        color: #fff;
    }

    .feature-layout-one .feature-item .content {
        position: relative;
        z-index: 2;
    }

    .feature-layout-one .feature-item i {
        color: #cca876;
        font-size: 50px;
        display: inline-block;
        padding-bottom: 10px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .feature-layout-one .feature-item h4 {
        padding-bottom: 10px;
    }

.feature-layout-two .feature-item {
    cursor: pointer;
}

    .feature-layout-two .feature-item .icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
        flex: 0 0 110px;
        max-width: 110px;
        height: 110px;
        border-radius: 50%;
        background: #2b364d;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-right: 20px;
        font-size: 50px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .feature-layout-two .feature-item p {
        opacity: 0.9;
        font-weight: 300;
    }

    .feature-layout-two .feature-item.active .icon, .feature-layout-two .feature-item:hover .icon {
        background: #cca876;
    }

.feature-layout-three .feature-item {
    padding: 30px 60px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

    .feature-layout-three .feature-item .icon {
        font-size: 50px;
        position: relative;
    }

        .feature-layout-three .feature-item .icon i {
            position: relative;
            z-index: 2;
        }

        .feature-layout-three .feature-item .icon:before {
            content: "";
            width: 60px;
            height: 60px;
            position: absolute;
            left: 44%;
            top: 15px;
            background: #fff;
            opacity: .2;
            border-radius: 50%;
            -webkit-transition: opacity .3s ease-in-out;
            -o-transition: opacity .3s ease-in-out;
            transition: opacity .3s ease-in-out;
        }

    .feature-layout-three .feature-item .title {
        padding-top: 5px;
    }

    .feature-layout-three .feature-item .content {
        padding-top: 20px;
        position: relative;
        opacity: 0;
        height: 0;
        bottom: -10px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .feature-layout-three .feature-item:after {
        content: "01";
        font-size: 70px;
        color: #fff;
        position: absolute;
        right: 30px;
        top: 10px;
        -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        transform: rotate(-30deg);
        font-weight: 800;
        opacity: 0;
        -webkit-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
    }

    .feature-layout-three .feature-item.item-two:after {
        content: "02";
    }

    .feature-layout-three .feature-item.item-three:after {
        content: "03";
    }

    .feature-layout-three .feature-item.item-four:after {
        content: "04";
    }

    .feature-layout-three .feature-item.active, .feature-layout-three .feature-item:hover {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

        .feature-layout-three .feature-item.active:after, .feature-layout-three .feature-item:hover:after {
            opacity: 0.2;
        }

        .feature-layout-three .feature-item.active .icon:before, .feature-layout-three .feature-item:hover .icon:before {
            opacity: .4;
        }

        .feature-layout-three .feature-item.active .content, .feature-layout-three .feature-item:hover .content {
            opacity: 1;
            height: 80px;
            bottom: 0;
        }

.feature-layout-four .feature-item {
    border: 1px solid #e3e6ed;
    background: #fff;
    border-radius: 3px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    padding: 70px 20px;
}

    .feature-layout-four .feature-item .icon {
        font-size: 80px;
        line-height: 1.4;
        -webkit-transition: color .3s ease-in-out;
        -o-transition: color .3s ease-in-out;
        transition: color .3s ease-in-out;
    }

    .feature-layout-four .feature-item h4 {
        -webkit-transition: color .3s ease-in-out;
        -o-transition: color .3s ease-in-out;
        transition: color .3s ease-in-out;
    }

    .feature-layout-four .feature-item:hover {
        border-color: #09266d;
        background: #09266d;
    }

        .feature-layout-four .feature-item:hover h4, .feature-layout-four .feature-item:hover .icon {
            color: #fff;
        }

.feature-layout-five .feature-item {
    border: 1px solid #393a46;
}

    .feature-layout-five .feature-item:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: #202127;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

/*
======================================== 
  05 - About Section
========================================
*/
.about-layout-one .about-left {
    position: relative;
}

    .about-layout-one .about-left img {
        border-radius: 5px;
    }

    .about-layout-one .about-left .about-overlay {
        position: absolute;
        bottom: 25px;
        left: 25px;
        background: #cca876;
        color: #fff;
        padding: 20px 35px;
        border-radius: 60px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        cursor: pointer;
    }

        .about-layout-one .about-left .about-overlay .icon {
            font-size: 65px;
            line-height: 1;
        }

        .about-layout-one .about-left .about-overlay .content {
            -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
        }

        .about-layout-one .about-left .about-overlay p {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
        }

            .about-layout-one .about-left .about-overlay p span {
                font-size: 24px;
                display: block;
            }

        .about-layout-one .about-left .about-overlay:hover {
            background: #c59c63;
            bottom: 30px;
        }

.about-layout-one .about-right p:not(:last-child) {
    margin-bottom: 35px;
}

.about-layout-one .about-right img {
    margin-bottom: 5px;
}

.about-layout-two {
    position: relative;
}

    .about-layout-two .container {
        position: relative;
        z-index: 3;
    }

    .about-layout-two:before {
        content: "";
        width: 48.4%;
        height: calc(100% - 550px);
        position: absolute;
        top: 220px;
        left: 0;
        background: #f5f5f5;
        border-radius: 5px;
    }

    .about-layout-two .about-left {
        position: relative;
    }

        .about-layout-two .about-left img {
            border-radius: 5px;
        }

        .about-layout-two .about-left .icon {
            position: absolute;
            font-size: 55px;
            width: 122px;
            height: 122px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border-radius: 5px;
            bottom: 30px;
            right: 35px;
        }

        .about-layout-two .about-left .name {
            position: absolute;
            -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
            left: -210px;
            bottom: 270px;
            opacity: 0.5;
        }

            .about-layout-two .about-left .name h2 {
                color: #fff;
                margin: 0;
                font-size: 70px;
                line-height: 1;
            }

    .about-layout-two .about-right .about-item h4 {
        position: relative;
        margin-bottom: 10px;
    }

        .about-layout-two .about-right .about-item h4 i {
            width: 40px;
            height: 40px;
            background: #09266d;
            border-radius: 50%;
            color: #fff;
            line-height: 40px;
            text-align: center;
            margin-right: 10px;
            font-size: 16px;
        }

    .about-layout-two .about-right .img {
        border-left: 2px solid #09266d;
        padding-left: 35px;
    }

        .about-layout-two .about-right .img p {
            line-height: 1;
            margin-top: 15px;
        }

.timeline-layout-one .timeline-tabs .timeline-pill {
    position: relative;
}

    .timeline-layout-one .timeline-tabs .timeline-pill::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #dddddd;
        bottom: 0;
        left: 0;
    }

    .timeline-layout-one .timeline-tabs .timeline-pill .nav-link {
        color: #333333;
        background: transparent;
        padding-bottom: 30px;
        position: relative;
    }

        .timeline-layout-one .timeline-tabs .timeline-pill .nav-link.active {
            background: transparent;
            color: #cca876;
        }

            .timeline-layout-one .timeline-tabs .timeline-pill .nav-link.active:before {
                border-color: #cca876;
            }

            .timeline-layout-one .timeline-tabs .timeline-pill .nav-link.active:after {
                opacity: 1;
            }

        .timeline-layout-one .timeline-tabs .timeline-pill .nav-link:before {
            content: "";
            position: absolute;
            width: 23px;
            height: 23px;
            background: #fff;
            border: 2px solid #dddddd;
            bottom: -10px;
            left: 50%;
            margin-left: -11px;
            border-radius: 50%;
        }

        .timeline-layout-one .timeline-tabs .timeline-pill .nav-link:after {
            content: "";
            position: absolute;
            width: 15px;
            height: 15px;
            background: #cca876;
            bottom: -6px;
            left: 50%;
            margin-left: -7px;
            border-radius: 50%;
            opacity: 0;
        }

.timeline-layout-one .timeline-row {
    margin-top: 20px;
    padding: 50px 50px 0;
}

    .timeline-layout-one .timeline-row .list-timeline li {
        margin: 3px 0;
        position: relative;
        padding-left: 20px;
    }

        .timeline-layout-one .timeline-row .list-timeline li:before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cca876;
            position: absolute;
            left: 0;
            top: 8px;
        }

.timeline-layout-one .nav-wrapper .nav-current, .attorney-layout-two .nav-wrapper .nav-current {
    font-size: 24px;
    border: 2px solid #cca876;
    padding: 20px 15px;
    display: none;
    position: relative;
    margin-bottom: 0;
}

    .timeline-layout-one .nav-wrapper .nav-current:before, .attorney-layout-two .nav-wrapper .nav-current:before {
        content: "";
        height: 15px;
        width: 15px;
        border-width: 0 2px 2px 0;
        border-style: solid;
        border-color: transparent #cca876 #cca876 transparent;
        position: absolute;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        right: 15px;
        top: 22px;
    }

/*
======================================== 
  06 - Case Section
========================================
*/
.case-layout-one {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(204, 168, 118, 0.95)), to(rgba(204, 168, 118, 0.95))), url("../img/case-1.png");
    background-image: -webkit-linear-gradient(left, rgba(204, 168, 118, 0.95), rgba(204, 168, 118, 0.95)), url("../img/case-1.png");
    background-image: -o-linear-gradient(left, rgba(204, 168, 118, 0.95), rgba(204, 168, 118, 0.95)), url("../img/case-1.png");
    background-image: linear-gradient(to right, rgba(204, 168, 118, 0.95), rgba(204, 168, 118, 0.95)), url("../img/case-1.png");
    background-size: cover;
}

    .case-layout-one .case-item .content {
        background: #fff;
        margin-top: 20px;
        padding: 25px;
        position: relative;
    }

        .case-layout-one .case-item .content p {
            margin-bottom: 5px;
        }

        .case-layout-one .case-item .content h4 {
            margin: 0;
        }

        .case-layout-one .case-item .content .arrow-button {
            color: #777777;
            font-size: 40px;
            position: absolute;
            background: #fff;
            right: 0;
            top: 0;
            min-height: 100%;
            padding: 10px 35px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .case-layout-one .case-item .content .arrow-button.active {
                background: #333333;
                color: #fff;
            }

        .case-layout-one .case-item .content:hover .arrow-button {
            background: #333333;
            color: #fff;
        }

.case-layout-two .mix {
    padding: 3px;
}

.case-layout-two .case-item {
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: pointer;
    max-height: 350px;
}

    .case-layout-two .case-item img {
        max-width: none;
        width: calc(100% + 60px);
        -webkit-transition: -webkit-transform 0.35s;
        transition: -webkit-transform 0.35s;
        -o-transition: transform 0.35s;
        transition: transform 0.35s;
        transition: transform 0.35s, -webkit-transform 0.35s;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0);
    }

    .case-layout-two .case-item .case-hover {
        padding: 3em;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: rgba(31, 40, 57, 0.8);
        opacity: 0;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, -webkit-transform 0.35s;
        -o-transition: opacity 0.35s, transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

        .case-layout-two .case-item .case-hover h4, .case-layout-two .case-item .case-hover p {
            position: relative;
            z-index: 3;
        }

        .case-layout-two .case-item .case-hover h4 {
            margin-bottom: 10px;
        }

            .case-layout-two .case-item .case-hover h4:before {
                content: "";
                width: 44px;
                height: 3px;
                background: #cca876;
                position: absolute;
                left: 50%;
                margin-left: -22px;
                top: -20px;
            }

        .case-layout-two .case-item .case-hover a:hover {
            color: #e6e6e6;
        }

        .case-layout-two .case-item .case-hover:before {
            position: absolute;
            top: 25px;
            right: 25px;
            bottom: 25px;
            left: 25px;
            border: 1px solid #cca876;
            content: '';
            opacity: 0;
            -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
            transition: opacity 0.35s, -webkit-transform 0.35s;
            -o-transition: opacity 0.35s, transform 0.35s;
            transition: opacity 0.35s, transform 0.35s;
            transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
            -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
        }

    .case-layout-two .case-item:hover img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .case-layout-two .case-item:hover .case-hover {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

        .case-layout-two .case-item:hover .case-hover:before {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

.case-layout-two .filters-button-group .nav-item {
    border: 0;
    background: transparent;
    color: #777777;
    padding: 6px 15px;
    line-height: 1;
    position: relative;
}

    .case-layout-two .filters-button-group .nav-item:before {
        content: "";
        border-width: 0 1px 1px 0;
        border-style: solid;
        border-color: transparent #cca876 #cca876 transparent;
        position: absolute;
        width: 8px;
        height: 8px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: -5px;
        left: 50%;
        margin-left: -4px;
        opacity: 0;
        -webkit-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
    }

    .case-layout-two .filters-button-group .nav-item.is-checked {
        color: #cca876;
    }

        .case-layout-two .filters-button-group .nav-item.is-checked:before {
            opacity: 1;
        }

.case-layout-three .case-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .case-layout-three .case-item .content {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        background: #f9f9f9;
        padding: 30px 20px 25px;
        z-index: 3;
    }

        .case-layout-three .case-item .content h4 {
            margin-bottom: 5px;
        }

    .case-layout-three .case-item .hover-content {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        text-align: center;
        background: rgba(9, 38, 109, 0.8);
        padding-top: 130px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        opacity: 0;
    }

        .case-layout-three .case-item .hover-content a {
            font-size: 32px;
            color: #fff;
        }

    .case-layout-three .case-item:hover .hover-content {
        opacity: 1;
    }

.single-case-layout .single-case-sidebar {
    padding: 25px 35px;
    border-radius: 4px;
}

    .single-case-layout .single-case-sidebar .case-list {
        padding: 5px 0 0;
    }

        .single-case-layout .single-case-sidebar .case-list li {
            padding: 5px 0;
        }

        .single-case-layout .single-case-sidebar .case-list span {
            padding-left: 10px;
        }

.single-case-layout .contact-item {
    padding: 40px 25px;
    background: #fff;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    -webkit-box-shadow: 0px 7px 14px 0px rgba(144, 144, 144, 0.08);
    box-shadow: 0px 7px 14px 0px rgba(144, 144, 144, 0.08);
}

    .single-case-layout .contact-item .icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
        flex: 0 0 50px;
        max-width: 50px;
        height: 50px;
        margin-right: 15px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 50px;
        color: #cca876;
    }

    .single-case-layout .contact-item .content {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .single-case-layout .contact-item p {
        margin-bottom: 0;
    }

.single-case-layout .list-optional li {
    padding: 5px 0;
}

    .single-case-layout .list-optional li:last-child {
        padding-bottom: 0;
    }

.font-large {
    font-size: 35px;
}

/*
======================================== 
  07 - Experience Section
========================================
*/
.experience-layout-one .experience-right {
    padding: 40px 25px 40px 45px;
    position: relative;
}

    .experience-layout-one .experience-right:before {
        content: "\f10d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 82px;
        position: absolute;
        color: #fff;
        top: -5px;
        left: 20px;
        opacity: 0.15;
    }

    .experience-layout-one .experience-right .font-big {
        position: relative;
        z-index: 2;
    }

    .experience-layout-one .experience-right .experience-img {
        position: absolute;
        bottom: 0;
        right: -40px;
    }

    .experience-layout-one .experience-right li {
        position: relative;
        padding: 6px 0;
        padding-left: 20px;
    }

        .experience-layout-one .experience-right li:last-child {
            padding-bottom: 0;
        }

        .experience-layout-one .experience-right li:before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fff;
            position: absolute;
            left: 0;
            top: 15px;
        }

/*
======================================== 
  08 - Counter Up Section
========================================
*/
.counter-layout-one .counter-item {
    border-top: 1px solid #dddddd;
    padding-top: 45px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .counter-layout-one .counter-item .counter-block {
        text-align: center;
        background: #333333;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 115px;
        flex: 0 0 115px;
        max-width: 115px;
        height: 115px;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-right: 25px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

        .counter-layout-one .counter-item .counter-block h3 {
            font-size: 16px;
            color: #fff;
            font-weight: 400;
            text-transform: uppercase;
        }

            .counter-layout-one .counter-item .counter-block h3 span {
                font-size: 30px;
                display: block;
                font-weight: bold;
            }

    .counter-layout-one .counter-item .content {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .counter-layout-one .counter-item:hover {
        border-top-color: #cca876;
    }

        .counter-layout-one .counter-item:hover .counter-block {
            background: #cca876;
        }

.counter-layout-two {
    background-image: url("../img/counter-1.png");
    background-size: cover;
}

    .counter-layout-two .counter-item .icon {
        font-size: 50px;
        line-height: 1;
        color: #fff;
    }

    .counter-layout-two .counter-item .content {
        border-left: 1px solid #fff;
        padding-left: 20px;
        margin-left: 20px;
    }

        .counter-layout-two .counter-item .content h2 {
            font-size: 40px;
            margin-bottom: 5px;
        }

/*
======================================== 
  09 - Team Section
========================================
*/
.team-layout-one {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/team-1.png");
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/team-1.png");
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/team-1.png");
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/team-1.png");
    background-size: cover;
}

    .team-layout-one .team-item {
        background: #fff;
        position: relative;
        padding: 10px;
    }

        .team-layout-one .team-item .team-img {
            width: 76%;
            position: relative;
        }

            .team-layout-one .team-item .team-img .view-more {
                -webkit-transition: all .3s ease-in-out;
                -o-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background: rgba(0, 0, 0, 0.3);
                opacity: 0;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: end;
                -ms-flex-align: end;
                align-items: flex-end;
            }

                .team-layout-one .team-item .team-img .view-more .arrow-button {
                    font-size: 45px;
                    padding: 10px 30px;
                    color: #fff;
                    line-height: 1;
                    background: #496454;
                }

        .team-layout-one .team-item .team-content {
            text-align: center;
            position: absolute;
            -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
            right: -115px;
            top: 128px;
            width: 310px;
        }

            .team-layout-one .team-item .team-content h4 {
                margin-bottom: 4px;
            }

        .team-layout-one .team-item:hover .view-more {
            opacity: 1;
        }

.team-layout-two .team-tt {
    padding: 0 15px 0;
}

.team-layout-two .team-item {
    position: relative;
    cursor: pointer;
}

    .team-layout-two .team-item .person-details {
        max-width: 90%;
        margin: 0 auto;
        background: #fff;
        border-bottom: 1px solid #dddddd;
        position: relative;
        margin-top: -30px;
        padding: 25px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .team-layout-two .team-item p {
        margin-bottom: 5px;
    }

    .team-layout-two .team-item li a:hover {
        color: #cca876;
    }

    .team-layout-two .team-item .list-inline {
        position: relative;
        height: 0;
        opacity: 0;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .team-layout-two .team-item:hover .person-details {
        border-bottom-color: #cca876;
        margin-top: -58px;
    }

    .team-layout-two .team-item:hover .list-inline {
        opacity: 1;
        height: 28px;
    }

.team-layout-two .slick-dotted.slick-slider {
    margin-bottom: 70px;
}

.team-layout-two .slick-dots {
    bottom: -75px;
}

    .team-layout-two .slick-dots li {
        top: 15px;
    }

        .team-layout-two .slick-dots li button {
            padding: 0;
            height: 0;
            width: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 15px solid #1f2839;
            -webkit-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            margin: 0 2px;
        }

            .team-layout-two .slick-dots li button:before {
                display: none;
            }

        .team-layout-two .slick-dots li.slick-active {
            top: 0;
        }

            .team-layout-two .slick-dots li.slick-active button {
                border-top: 0;
                border-bottom: 15px solid #cca876;
            }

.attorney-layout-one .attorney-left h3 {
    padding-top: 25px;
    font-size: 25px;
}

    .attorney-layout-one .attorney-left h3.name {
        font-size: 35px;
    }

.attorney-layout-one .attorney-left .attorney-list {
    padding: 5px 0 20px;
}

    .attorney-layout-one .attorney-left .attorney-list li {
        padding: 5px 0;
    }

    .attorney-layout-one .attorney-left .attorney-list span {
        padding-left: 10px;
    }

.attorney-layout-one .attorney-left .d-block {
    margin-bottom: 20px;
}

.attorney-layout-one .attorney-left .contact-attorney {
    border: 1px solid #dddddd;
    padding: 25px;
    border-radius: 4px;
}

    .attorney-layout-one .attorney-left .contact-attorney .d-block {
        margin-bottom: 0;
        width: 100%;
    }

    .attorney-layout-one .attorney-left .contact-attorney input {
        width: 100%;
        border: 1px solid #dddddd;
        border-radius: 4px;
        padding: 13px 25px;
        margin-bottom: 20px;
    }

    .attorney-layout-one .attorney-left .contact-attorney textarea {
        width: 100%;
        border: 1px solid #dddddd;
        border-radius: 4px;
        padding: 13px 25px;
        margin-bottom: 15px;
        min-height: 130px;
    }

.attorney-layout-one .list-details li {
    position: relative;
    margin: 4px 0;
    padding-left: 20px;
}

    .attorney-layout-one .list-details li:before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cca876;
        position: absolute;
        left: 0;
        top: 8px;
    }

.attorney-layout-one .list-optional li {
    padding: 4px 0;
}

.attorney-layout-one .attorney-tab .card {
    border: 0;
    border-radius: 0;
    margin-bottom: 30px;
}

.attorney-layout-one .attorney-tab .card-body {
    color: #777777;
    padding: 15px 35px 10px;
}

.attorney-layout-one .attorney-tab .card-header {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
}

    .attorney-layout-one .attorney-tab .card-header button {
        border-radius: 0;
        width: 100%;
        text-align: left;
        font-weight: 600;
        color: #333333;
        border: 1px solid #eaeaea !important;
        padding: 10px 25px;
    }

        .attorney-layout-one .attorney-tab .card-header button[aria-expanded='true'] {
            border-color: #cca876 !important;
        }

        .attorney-layout-one .attorney-tab .card-header button:hover, .attorney-layout-one .attorney-tab .card-header button:focus {
            text-decoration: none;
        }

    .attorney-layout-one .attorney-tab .card-header h2 {
        line-height: 0;
    }

.attorney-layout-one .attorney-tab .accordion > .card .card-header {
    margin-bottom: 0;
}

.attorney-layout-one .attorney-progress .progress {
    border-radius: 0;
    height: 12px;
    margin-top: 8px;
}

.attorney-layout-one .attorney-progress .progress-bar {
    background: #cca876;
}

.attorney-layout-two .nav-pills .nav-link {
    background: #ebebeb;
    font-size: 20px;
    padding: 15px 20px;
    border-radius: 0;
    margin: 0 10px;
    color: #333333;
    font-weight: 500;
}

    .attorney-layout-two .nav-pills .nav-link:first-child {
        margin-left: 0;
        margin-right: 20px;
    }

    .attorney-layout-two .nav-pills .nav-link:last-child {
        margin-right: 0;
        margin-left: 20px;
    }

    .attorney-layout-two .nav-pills .nav-link.active {
        background: #cca876;
        color: #fff;
    }

.attorney-layout-two .tab-content {
    padding: 50px 0 0;
}

.single-contact .attorney-left .contact-attorney {
    border: 0;
}

/*
======================================== 
  10 - CTA Section
========================================
*/
.cta-layout-one {
    position: relative;
}

    .cta-layout-one .cta-position {
        position: absolute;
        width: 100%;
        left: 0;
        top: -100px;
    }

    .cta-layout-one .container {
        background: #cca876;
        padding: 45px 80px;
        /* border-bottom: 2px solid #cca876; */
        -webkit-box-shadow: 0px 7px 24px 0px rgba(144, 144, 144, 0.1);
        box-shadow: 0px 7px 24px 0px rgba(144, 144, 144, 0.1);
    }
    .cta-layout-one .cta-left .icon {
        width: 110px;
        height: 110px;
        background: #496454;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-right: 45px;
        border-radius: 50%;
        color: #fff;
        font-size: 45px;
    }

.cta-layout-three .container {
    border-top: 2px solid #09266d;
    border-bottom: 0;
}

.cta-layout-three .cta-left .icon {
    background: #09266d;
}

/*
======================================== 
  11 - Practice Area Section
========================================
*/
.practice-layout-one .practice-item h4 {
    padding-top: 25px;
}

.practice-layout-one .practice-item .practice-button {
    text-transform: capitalize;
}

    .practice-layout-one .practice-item .practice-button i {
        position: relative;
        top: 2px;
        left: 5px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .practice-layout-one .practice-item .practice-button:hover i {
        left: 10px;
    }

.practice-layout-two .practice-item {
    padding: 30px;
    border: 2px solid #2b364d;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: relative;
    height: 100%;
}

    .practice-layout-two .practice-item .icon {
        width: 110px;
        height: 110px;
        font-size: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 2px solid #2b364d;
        border-radius: 50%;
        position: relative;
        background: #1f2839;
        margin-top: -90px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .practice-layout-two .practice-item .content {
        padding-top: 25px;
    }

        .practice-layout-two .practice-item .content h4 {
            margin-bottom: 15px;
        }

        .practice-layout-two .practice-item .content p {
            margin-bottom: 10px;
        }

        .practice-layout-two .practice-item .content a:hover {
            color: #cca876;
        }

    .practice-layout-two .practice-item.active, .practice-layout-two .practice-item:hover {
        border-color: #cca876;
    }

        .practice-layout-two .practice-item.active .icon, .practice-layout-two .practice-item:hover .icon {
            border-color: #cca876;
        }

.practice-layout-three {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(9, 38, 109, 0.85)), to(rgba(9, 38, 109, 0.85))), url("../img/practice-2.png");
    background-image: -webkit-linear-gradient(left, rgba(9, 38, 109, 0.85), rgba(9, 38, 109, 0.85)), url("../img/practice-2.png");
    background-image: -o-linear-gradient(left, rgba(9, 38, 109, 0.85), rgba(9, 38, 109, 0.85)), url("../img/practice-2.png");
    background-image: linear-gradient(to right, rgba(9, 38, 109, 0.85), rgba(9, 38, 109, 0.85)), url("../img/practice-2.png");
    background-size: cover;
}

    .practice-layout-three .practice-item {
        padding: 50px 25px 45px;
        position: relative;
        height: 100%;
        cursor: pointer;
    }

        .practice-layout-three .practice-item .icon {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 80px;
            flex: 0 0 80px;
            max-width: 80px;
            height: 80px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            font-size: 36px;
            color: #09266d;
            border: 1px solid #09266d;
            margin-right: 20px;
            border-radius: 50%;
            -webkit-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }

        .practice-layout-three .practice-item h4 {
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 15px;
        }

            .practice-layout-three .practice-item h4:before {
                content: "";
                width: 50px;
                height: 2px;
                background: #09266d;
                position: absolute;
                bottom: 0;
                left: 0;
            }

        .practice-layout-three .practice-item:hover .icon {
            background: #09266d;
            color: #fff;
        }

.single-practice-layout .practice-sidebar {
    padding: 40px 30px;
}

    .single-practice-layout .practice-sidebar li {
        border-bottom: 1px solid #f8f8f8;
    }

        .single-practice-layout .practice-sidebar li:last-child {
            border-bottom: 0;
        }

        .single-practice-layout .practice-sidebar li a {
            background: #fff;
            display: block;
            padding: 15px 30px;
            color: #333333;
            font-weight: 500;
        }

            .single-practice-layout .practice-sidebar li a:hover {
                background: #cca876;
                color: #fff;
            }

.single-practice-layout .practice-cta {
    background: url("../img/practice/side-1.png") no-repeat;
    background-size: cover;
    min-height: 385px;
    padding: 50px 40px;
    position: relative;
}

    .single-practice-layout .practice-cta h3 {
        position: relative;
        z-index: 2;
        line-height: 1.5;
    }

    .single-practice-layout .practice-cta a {
        position: absolute;
        left: 40px;
        bottom: 50px;
    }

    .single-practice-layout .practice-cta:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        left: 0;
        top: 0;
    }

.single-practice-layout .contact-practice .d-block {
    margin-bottom: 0;
    width: 100%;
}

.single-practice-layout .contact-practice input {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 13px 25px;
    margin-bottom: 20px;
}

.single-practice-layout .contact-practice textarea {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 13px 25px;
    margin-bottom: 15px;
    min-height: 130px;
}

.single-practice-layout .list-optional li {
    padding: 4px 0;
}

    .single-practice-layout .list-optional li:last-child {
        padding-bottom: 0;
    }

/*
======================================== 
  12 - Video Section
========================================
*/
.video-layout-one {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.37)), to(rgba(0, 0, 0, 0.37))), url("../img/video-1.png");
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../img/video-1.png");
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../img/video-1.png");
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url("../img/video-1.png");
    background-size: cover;
    background-position: top center;
    min-height: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.video-layout-two {
    background-image: url("../img/video-2.png");
    background-size: cover;
}

    .video-layout-two .video-player.text-center .play-btn {
        margin: 0 auto;
    }

.play-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70px;
    height: 70px;
    background: #cca876;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin-right: 40px;
    -webkit-animation: at-ripple 1.5s linear infinite;
    animation: at-ripple 1.5s linear infinite;
    font-size: 28px;
}

    .play-btn:hover {
        color: #fff;
    }

    .play-btn.white-play {
        background: #fff;
        color: #09266d;
    }

@-webkit-keyframes at-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes at-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5), 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

/*
======================================== 
  13 - Contact Section
========================================
*/
.contact-layout-one .contact-item {
    padding: 20px 30px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

    .contact-layout-one .contact-item .icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
        flex: 0 0 110px;
        max-width: 110px;
        height: 110px;
        margin-right: 25px;
        border: 2px solid #cca876;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 50px;
        color: #cca876;
        border-radius: 50%;
    }

    .contact-layout-one .contact-item .content {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .contact-layout-one .contact-item p {
        margin-bottom: 0;
    }

    .contact-layout-one .contact-item:hover {
        -webkit-box-shadow: 0px 7px 24px 0px rgba(144, 144, 144, 0.1);
        box-shadow: 0px 7px 24px 0px rgba(144, 144, 144, 0.1);
    }

        .contact-layout-one .contact-item:hover .icon {
            background: #cca876;
            color: #fff;
        }

.contact-layout-one .contact-right {
    background: #fff;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(144, 144, 144, 0.1);
    box-shadow: 0px 0px 35px 0px rgba(144, 144, 144, 0.1);
    padding: 50px 40px;
}

    .contact-layout-one .contact-right h4 {
        margin-bottom: 20px;
    }

    .contact-layout-one .contact-right input:not([type="submit"]),
    .contact-layout-one .contact-right textarea {
        border: 1px solid #eaeaea;
        background: #fcfcfc;
        color: #777777;
        width: 100%;
        padding: 12px 25px;
        line-height: 1;
    }

        .contact-layout-one .contact-right input:not([type="submit"])::-webkit-input-placeholder,
        .contact-layout-one .contact-right textarea::-webkit-input-placeholder {
            color: #777777;
        }

        .contact-layout-one .contact-right input:not([type="submit"]):-ms-input-placeholder,
        .contact-layout-one .contact-right textarea:-ms-input-placeholder {
            color: #777777;
        }

        .contact-layout-one .contact-right input:not([type="submit"])::-ms-input-placeholder,
        .contact-layout-one .contact-right textarea::-ms-input-placeholder {
            color: #777777;
        }

        .contact-layout-one .contact-right input:not([type="submit"])::placeholder,
        .contact-layout-one .contact-right textarea::placeholder {
            color: #777777;
        }

        .contact-layout-one .contact-right input:not([type="submit"]):focus,
        .contact-layout-one .contact-right textarea:focus {
            border-color: #333333;
        }

    .contact-layout-one .contact-right .input-group {
        width: 50%;
        float: left;
        margin-bottom: 20px;
    }

        .contact-layout-one .contact-right .input-group:first-child {
            padding-right: 10px;
        }

        .contact-layout-one .contact-right .input-group:nth-child(2) {
            padding-left: 10px;
        }

    .contact-layout-one .contact-right .input-full {
        margin-bottom: 20px;
    }

    .contact-layout-one .contact-right textarea {
        min-height: 120px;
        margin-bottom: 20px;
    }

    .contact-layout-one .contact-right .button-primary {
        border: 0;
    }

.contact-layout-two {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(31, 40, 57, 0.95)), to(rgba(31, 40, 57, 0.95))), url("../img/contact-1.png");
    background-image: -webkit-linear-gradient(left, rgba(31, 40, 57, 0.95), rgba(31, 40, 57, 0.95)), url("../img/contact-1.png");
    background-image: -o-linear-gradient(left, rgba(31, 40, 57, 0.95), rgba(31, 40, 57, 0.95)), url("../img/contact-1.png");
    background-image: linear-gradient(to right, rgba(31, 40, 57, 0.95), rgba(31, 40, 57, 0.95)), url("../img/contact-1.png");
    background-size: cover;
}

    .contact-layout-two .container {
        position: relative;
    }

    .contact-layout-two .contact-img {
        position: absolute;
        left: -130px;
        bottom: -120px;
    }

    .contact-layout-two input:not([type="submit"]),
    .contact-layout-two textarea {
        border: 1px solid #837460;
        background: rgba(255, 255, 255, 0.03);
        color: #fff;
        width: 100%;
        padding: 14px 25px;
        line-height: 1;
    }

        .contact-layout-two input:not([type="submit"])::-webkit-input-placeholder,
        .contact-layout-two textarea::-webkit-input-placeholder {
            color: #fff;
        }

        .contact-layout-two input:not([type="submit"]):-ms-input-placeholder,
        .contact-layout-two textarea:-ms-input-placeholder {
            color: #fff;
        }

        .contact-layout-two input:not([type="submit"])::-ms-input-placeholder,
        .contact-layout-two textarea::-ms-input-placeholder {
            color: #fff;
        }

        .contact-layout-two input:not([type="submit"])::placeholder,
        .contact-layout-two textarea::placeholder {
            color: #fff;
        }

        .contact-layout-two input:not([type="submit"]):focus,
        .contact-layout-two textarea:focus {
            border-color: #cca876;
        }

    .contact-layout-two .input-group {
        width: 50%;
        float: left;
        margin-bottom: 30px;
    }

        .contact-layout-two .input-group:nth-child(odd) {
            padding-right: 15px;
        }

        .contact-layout-two .input-group:nth-child(even) {
            padding-left: 15px;
        }

    .contact-layout-two textarea {
        min-height: 220px;
        margin-bottom: 27px;
    }

    .contact-layout-two .button-primary {
        border: 0;
    }

.contact-layout-three {
    position: relative;
}

    .contact-layout-three:before {
        content: "";
        width: 48%;
        height: 100%;
        position: absolute;
        background: url("../img/about-2.png") no-repeat;
        background-size: cover;
        top: 0;
        left: 0;
    }

    .contact-layout-three .contact-item {
        background: #f2f3f9;
    }

.contact-page .contact-left h2 {
    margin-bottom: 20px;
}

.contact-page .contact-right .input-group {
    margin-bottom: 20px;
}

    .contact-page .contact-right .input-group label {
        display: block;
    }

    .contact-page .contact-right .input-group input {
        width: 100%;
        border: 1px solid rgba(204, 168, 118, 0.3);
        padding: 12px 25px;
        border-radius: 4px;
    }

        .contact-page .contact-right .input-group input:focus {
            border-color: #cca876;
        }

.contact-page .contact-right .textarea-group {
    margin-bottom: 20px;
}

    .contact-page .contact-right .textarea-group label {
        display: block;
    }

    .contact-page .contact-right .textarea-group textarea {
        width: 100%;
        border: 1px solid rgba(204, 168, 118, 0.3);
        min-height: 180px;
        padding: 12px 25px;
        border-radius: 4px;
    }

        .contact-page .contact-right .textarea-group textarea:focus {
            border-color: #cca876;
        }

.contact-info .info-img img {
    margin-bottom: 50px;
}

.contact-info h4 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-info .info-left p {
    line-height: 2em;
}

.contact-info .schedule-item {
    cursor: pointer;
    -webkit-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
    float: left;
    width: 65px;
    height: 65px;
    border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #f0e5d6;
    vertical-align: middle;
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .contact-info .schedule-item h4 {
        font-size: 16px;
        margin-bottom: 0;
        color: #777777;
    }

    .contact-info .schedule-item span {
        font-size: 14px;
    }

    .contact-info .schedule-item:not(:last-child) {
        margin-right: 20px;
        margin-bottom: 15px;
    }

    .contact-info .schedule-item.disable {
        background: rgba(204, 168, 118, 0.25);
    }

    .contact-info .schedule-item:hover {
        background: rgba(204, 168, 118, 0.25);
    }

/*
======================================== 
  14 - Blog Section
========================================
*/
.blog-layout-one .blog-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #ececec;
}

    .blog-layout-one .blog-item h4 {
        line-height: 1.3;
        padding: 10px 0;
    }

        .blog-layout-one .blog-item h4 a {
            display: inline;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), color-stop(21%, currentColor));
            background-image: -webkit-linear-gradient(top, transparent 20%, currentColor 21%);
            background-image: -o-linear-gradient(top, transparent 20%, currentColor 21%);
            background-image: linear-gradient(to bottom, transparent 20%, currentColor 21%);
            background-position: 0 1em;
            background-repeat: no-repeat;
            background-size: 0% 3px;
            -webkit-transition: background-size 0.4s ease-in-out 0.2s;
            -o-transition: background-size 0.4s ease-in-out 0.2s;
            transition: background-size 0.4s ease-in-out 0.2s;
            background-position: 0 23px;
        }

            .blog-layout-one .blog-item h4 a:hover {
                background-size: 100% 3px;
                -webkit-transition-delay: 0s;
                -o-transition-delay: 0s;
                transition-delay: 0s;
            }

    .blog-layout-one .blog-item ul,
    .blog-layout-one .blog-item li {
        line-height: 1;
    }

    .blog-layout-one .blog-item .list-inline li:nth-child(2) {
        position: relative;
        padding-left: 8px;
    }

        .blog-layout-one .blog-item .list-inline li:nth-child(2):before {
            content: "";
            width: 4px;
            height: 4px;
            background: #cca876;
            position: absolute;
            left: -5px;
            top: 6px;
            border-radius: 50%;
        }

.blog-layout-two .blog-item .blog-content {
    width: 85%;
    margin: 0 auto;
    background-color: #fff;
    -webkit-box-shadow: 0px 7px 24px 0px rgba(144, 144, 144, 0.1);
    box-shadow: 0px 7px 24px 0px rgba(144, 144, 144, 0.1);
    padding: 25px 30px;
    position: relative;
    margin-top: -60px;
}

    .blog-layout-two .blog-item .blog-content h4 {
        line-height: 1.6;
        padding: 10px 0;
    }

    .blog-layout-two .blog-item .blog-content > a {
        position: relative;
        color: #777777;
        padding-left: 30px;
    }

        .blog-layout-two .blog-item .blog-content > a:before {
            content: "";
            width: 20px;
            height: 1px;
            background: #333333;
            position: absolute;
            left: 0;
            top: 11px;
            -webkit-transition: background .3s ease-in-out;
            -o-transition: background .3s ease-in-out;
            transition: background .3s ease-in-out;
        }

        .blog-layout-two .blog-item .blog-content > a:hover:before {
            background: #cca876;
        }

.blog-layout-two .blog-item .list-inline {
    font-size: 14px;
}

    .blog-layout-two .blog-item .list-inline li:not(:last-child) {
        padding-right: 8px;
    }

    .blog-layout-two .blog-item .list-inline i {
        padding-right: 5px;
    }

.blog-layout-three .blog-item {
    border: 1px solid #dddddd;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: relative;
    height: 100%;
}

    .blog-layout-three .blog-item .content {
        padding: 20px 25px 22px;
    }

    .blog-layout-three .blog-item .list-inline li:not(:last-child) {
        padding-right: 10px;
    }

    .blog-layout-three .blog-item .list-inline i {
        padding-right: 4px;
    }

    .blog-layout-three .blog-item h4 {
        padding: 10px 0;
        line-height: 1.5;
    }

    .blog-layout-three .blog-item:hover {
        border-color: #fff;
        -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    }

.blog-grid .blog-item h4 {
    margin-bottom: 0;
}

.blog-grid .blog-item p {
    margin-bottom: 20px;
}

.blog-sidebar > div {
    margin-bottom: 30px;
}

    .blog-sidebar > div:last-child {
        margin-bottom: 0;
    }

.blog-sidebar .sidebar-search form {
    position: relative;
    padding: 30px;
    border: 1px solid #dddddd;
}

.blog-sidebar .sidebar-search input {
    border: 1px solid #dddddd;
    padding: 13px 25px;
    width: 100%;
}

    .blog-sidebar .sidebar-search input:focus {
        border-color: #cca876;
    }

.blog-sidebar .sidebar-search button {
    position: absolute;
    right: 30px;
    top: 30px;
    border: 0;
    padding: 7px 20px;
    background: #cca876;
    font-size: 24px;
    color: #fff;
}

.blog-sidebar .sidebar-item {
    background: #fff;
    padding: 35px 30px;
    border: 1px solid #dddddd;
}

.blog-sidebar h4 {
    margin-bottom: 25px;
}

.blog-sidebar img {
    border-radius: 5px;
}

.blog-sidebar .category-list li {
    padding-bottom: 10px;
}

    .blog-sidebar .category-list li a {
        color: #777777;
        text-transform: capitalize;
        position: relative;
    }

        .blog-sidebar .category-list li a:before {
            content: "\f0da";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-variant: normal;
            position: absolute;
            left: 0;
            top: -3px;
            opacity: 0;
            -webkit-transition: opacity .3s ease-in-out;
            -o-transition: opacity .3s ease-in-out;
            transition: opacity .3s ease-in-out;
        }

        .blog-sidebar .category-list li a .sidebar-hover {
            -webkit-transition: opacity .3s ease-in-out;
            -o-transition: opacity .3s ease-in-out;
            transition: opacity .3s ease-in-out;
            opacity: 0;
        }

        .blog-sidebar .category-list li a:hover {
            padding-left: 12px;
            color: #cca876;
        }

            .blog-sidebar .category-list li a:hover:before, .blog-sidebar .category-list li a:hover .sidebar-hover {
                opacity: 1;
            }

    .blog-sidebar .category-list li:last-child {
        padding-bottom: 0;
    }

.blog-sidebar .item-two h4 {
    padding-bottom: 10px;
}

.blog-sidebar .event-post-sidebar {
    padding: 10px 0;
}

    .blog-sidebar .event-post-sidebar a {
        color: #333333;
    }

    .blog-sidebar .event-post-sidebar h5 {
        margin-bottom: 3px;
    }

    .blog-sidebar .event-post-sidebar p {
        font-size: 14px;
    }

        .blog-sidebar .event-post-sidebar p i {
            padding-right: 5px;
        }

    .blog-sidebar .event-post-sidebar:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .blog-sidebar .event-post-sidebar:nth-child(2) {
        padding-top: 0;
    }

.blog-sidebar .sidebar-tag li {
    display: inline-block;
    padding: 5px 15px 5px 0;
}

    .blog-sidebar .sidebar-tag li a {
        color: #939393;
    }

        .blog-sidebar .sidebar-tag li a:hover {
            color: #333;
        }

.blog-single .blog-info {
    padding: 25px 0 15px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
}

    .blog-single .blog-info i {
        padding-right: 5px;
    }

    .blog-single .blog-info li:not(:last-child) {
        padding-right: 15px;
    }

.blog-single .quote {
    padding: 40px 30px;
    -webkit-box-shadow: 0px 4px 20.37px 0.63px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 20.37px 0.63px rgba(0, 0, 0, 0.06);
    margin: 30px 0;
}

    .blog-single .quote p {
        font-size: 23px;
        font-style: italic;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .blog-single .quote h4 {
        font-weight: 500;
        font-style: italic;
        position: relative;
        margin-bottom: 0;
        padding-left: 35px;
    }

        .blog-single .quote h4:before {
            content: "";
            width: 25px;
            height: 2px;
            background: #cca876;
            position: absolute;
            left: 0;
            top: 12px;
        }

.blog-single .blog-navbar {
    -webkit-box-shadow: 0px 4px 21px 0px rgba(143, 143, 143, 0.11);
    box-shadow: 0px 4px 21px 0px rgba(143, 143, 143, 0.11);
}

    .blog-single .blog-navbar .blog-nav-item {
        position: relative;
        cursor: pointer;
    }

        .blog-single .blog-navbar .blog-nav-item .blog-nav-hover {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding: 0 50px;
            -webkit-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            border: 2px solid transparent;
        }

            .blog-single .blog-navbar .blog-nav-item .blog-nav-hover h4 {
                font-size: 25px;
                margin-bottom: 15px;
                line-height: 1.3;
            }

            .blog-single .blog-navbar .blog-nav-item .blog-nav-hover a {
                color: #fff;
            }

            .blog-single .blog-navbar .blog-nav-item .blog-nav-hover p {
                margin-bottom: 0;
            }

        .blog-single .blog-navbar .blog-nav-item:last-child .blog-nav-hover {
            text-align: right;
        }

        .blog-single .blog-navbar .blog-nav-item:first-child .blog-nav-hover {
            border-right: 0;
        }

        .blog-single .blog-navbar .blog-nav-item:last-child .blog-nav-hover {
            border-left: 0;
        }

        .blog-single .blog-navbar .blog-nav-item:hover .blog-nav-hover {
            background: #fff;
            border-color: #cca876;
        }

            .blog-single .blog-navbar .blog-nav-item:hover .blog-nav-hover h4 a {
                color: #333333;
            }

            .blog-single .blog-navbar .blog-nav-item:hover .blog-nav-hover p a {
                color: #777777;
            }

                .blog-single .blog-navbar .blog-nav-item:hover .blog-nav-hover p a:hover {
                    color: #cca876;
                }

.blog-single .blog-comment-form {
    -webkit-box-shadow: 0px 4px 21px 0px rgba(143, 143, 143, 0.11);
    box-shadow: 0px 4px 21px 0px rgba(143, 143, 143, 0.11);
    padding: 50px;
}

    .blog-single .blog-comment-form .input-group {
        width: 50%;
        float: left;
        overflow: hidden;
    }

        .blog-single .blog-comment-form .input-group:first-child {
            padding-right: 15px;
        }

        .blog-single .blog-comment-form .input-group:nth-child(2) {
            padding-left: 15px;
        }

        .blog-single .blog-comment-form .input-group input {
            width: 100%;
            padding: 13px 25px;
            border: 1px solid #dddddd;
        }

            .blog-single .blog-comment-form .input-group input:focus {
                border-color: #cca876;
            }

    .blog-single .blog-comment-form .input-textarea {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
    }

        .blog-single .blog-comment-form .input-textarea textarea {
            width: 100%;
            padding: 13px 25px;
            border: 1px solid #dddddd;
            min-height: 150px;
            outline: 0;
            -webkit-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }

            .blog-single .blog-comment-form .input-textarea textarea:focus {
                border-color: #cca876;
            }

    .blog-single .blog-comment-form .blog-submit {
        font-size: 16px;
        padding: 14px 35px;
        background: #cca876;
        border: 0;
        border-radius: 4px;
        color: #fff;
    }

        .blog-single .blog-comment-form .blog-submit:hover {
            background: #be9051;
            -webkit-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            transform: translateY(-3px);
        }

/*
======================================== 
  15 - Why Choose Us Section
========================================
*/
.choose-layout-one h2 {
    margin-bottom: 20px;
}

.choose-layout-one .choose-item {
    cursor: pointer;
}

    .choose-layout-one .choose-item .icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
        flex: 0 0 60px;
        max-width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 30px;
        color: #1f2839;
        margin-right: 20px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .choose-layout-one .choose-item h4 {
        margin-bottom: 12px;
    }

    .choose-layout-one .choose-item p {
        line-height: 1.5;
    }

    .choose-layout-one .choose-item.active .icon, .choose-layout-one .choose-item:hover .icon {
        background-color: #1f2839;
        color: #fff;
    }

.choose-layout-one .choose-left .img {
    border-left: 2px solid #cca876;
    padding-left: 25px;
    margin-top: 10px;
}

    .choose-layout-one .choose-left .img img {
        padding-bottom: 10px;
    }

    .choose-layout-one .choose-left .img p {
        line-height: 1;
    }

.choose-layout-one .choose-right {
    position: relative;
}

    .choose-layout-one .choose-right img {
        padding-top: 35px;
        width: calc(100% - 35px);
    }

    .choose-layout-one .choose-right:before {
        content: "";
        width: calc(100% - 35px);
        height: calc(100% - 35px);
        top: 0;
        right: 0;
        background-image: -webkit-gradient(linear, left bottom, left top, from(#1f2839), to(#cca876));
        background-image: -webkit-linear-gradient(bottom, #1f2839 0%, #cca876 100%);
        background-image: -o-linear-gradient(bottom, #1f2839 0%, #cca876 100%);
        background-image: linear-gradient(to top, #1f2839 0%, #cca876 100%);
        position: absolute;
        z-index: -1;
    }

.choose-layout-two {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url("../img/video-1.png");
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/video-1.png");
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/video-1.png");
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/video-1.png");
    background-size: cover;
}

/*
======================================== 
  16 - FAQ Section
========================================
*/
.faq-layout-one {
    position: relative;
}

    .faq-layout-one:before {
        content: '';
        width: 45%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(31, 40, 57, 0.27)), to(rgba(31, 40, 57, 0.27))), url("../img/faq-1.png");
        background-image: -webkit-linear-gradient(left, rgba(31, 40, 57, 0.27), rgba(31, 40, 57, 0.27)), url("../img/faq-1.png");
        background-image: -o-linear-gradient(left, rgba(31, 40, 57, 0.27), rgba(31, 40, 57, 0.27)), url("../img/faq-1.png");
        background-image: linear-gradient(to right, rgba(31, 40, 57, 0.27), rgba(31, 40, 57, 0.27)), url("../img/faq-1.png");
        background-size: cover;
    }

    .faq-layout-one .faq-left h2 {
        font-size: 2.5em;
    }

    .faq-layout-one .faq-left .card {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(66, 71, 76, 0.2) !important;
    }

        .faq-layout-one .faq-left .card:not(:last-child) {
            margin-bottom: 20px;
        }

        .faq-layout-one .faq-left .card .card-header {
            border-bottom: 0;
            padding: 18px 25px;
            line-height: 1;
        }

        .faq-layout-one .faq-left .card .card-body {
            border-top: 1px solid rgba(66, 71, 76, 0.2) !important;
            padding: 20px 35px;
        }

        .faq-layout-one .faq-left .card button {
            color: #fff;
            font-weight: 600;
            font-size: 18px;
            width: 100%;
            text-align: left;
            padding: 0;
        }

            .faq-layout-one .faq-left .card button:hover, .faq-layout-one .faq-left .card button:focus, .faq-layout-one .faq-left .card button:active {
                text-decoration: none;
            }

    .faq-layout-one .video-player.text-right {
        float: right;
        position: relative;
        z-index: 3;
    }

/*
======================================== 
  17 - Instagram Section
========================================
*/
.instagram-layout-one .col-md-3 {
    padding: 0 3px;
}

/*
======================================== 
  18 - Testimonial Section
========================================
*/
.testimonial-layout-one {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(9, 38, 109, 0.8)), to(rgba(9, 38, 109, 0.8))), url("../img/testimonial-1.png");
    background-image: -webkit-linear-gradient(left, rgba(9, 38, 109, 0.8), rgba(9, 38, 109, 0.8)), url("../img/testimonial-1.png");
    background-image: -o-linear-gradient(left, rgba(9, 38, 109, 0.8), rgba(9, 38, 109, 0.8)), url("../img/testimonial-1.png");
    background-image: linear-gradient(to right, rgba(9, 38, 109, 0.8), rgba(9, 38, 109, 0.8)), url("../img/testimonial-1.png");
    background-size: cover;
}

    .testimonial-layout-one .testimonial-item .content {
        position: relative;
        padding: 40px;
        overflow: hidden;
        border-radius: 5px;
    }

        .testimonial-layout-one .testimonial-item .content .quote {
            position: absolute;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            left: -30px;
            top: -30px;
            background: #09266d;
            color: #fff;
            padding: 40px;
            line-height: 1;
            font-size: 30px;
        }

        .testimonial-layout-one .testimonial-item .content p {
            margin: 10px 0 12px;
        }

    .testimonial-layout-one .testimonial-item .person-info {
        padding-top: 30px;
        position: relative;
    }

        .testimonial-layout-one .testimonial-item .person-info h4 {
            margin-bottom: 5px;
        }

        .testimonial-layout-one .testimonial-item .person-info:before {
            content: "";
            width: 3px;
            height: 20px;
            background: #fff;
            position: absolute;
            top: -8px;
            left: 50%;
            margin-left: -1.5px;
        }

.testimonial-layout-two .testimonial-item .content {
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
}

    .testimonial-layout-two .testimonial-item .content .quote {
        background: #cca876;
    }

.testimonial-layout-three .container {
    position: relative;
}

.testimonial-layout-three .testimonial-img {
    position: absolute;
    right: -100px;
    bottom: -120px;
}

.testimonial-layout-three .testimonial-slider {
    padding: 20px 0;
}

    .testimonial-layout-three .testimonial-slider p.lead {
        font-size: 26px;
        font-weight: 400;
        line-height: 1.9;
    }

    .testimonial-layout-three .testimonial-slider .person-info {
        margin-bottom: 50px;
    }

        .testimonial-layout-three .testimonial-slider .person-info .img {
            padding-right: 20px;
        }

        .testimonial-layout-three .testimonial-slider .person-info img {
            border: 3px solid rgba(204, 168, 118, 0.6);
            border-radius: 50%;
        }

        .testimonial-layout-three .testimonial-slider .person-info .content h4 {
            margin-bottom: 2px;
        }

.testimonial-layout-three .slick-dots {
    text-align: left;
}

    .testimonial-layout-three .slick-dots li button {
        padding: 0;
        background: #dddddd;
        border-radius: 50%;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

        .testimonial-layout-three .slick-dots li button:before {
            display: none;
        }

    .testimonial-layout-three .slick-dots li.slick-active button {
        background: #cca876;
    }

/*
======================================== 
  19 - Service Section
========================================
*/
/*
======================================== 
  20 - Homepages Style
========================================
*/
.feature-about {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.95)), to(rgba(255, 255, 255, 0.95))), url("../img/about-1.png");
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url("../img/about-1.png");
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url("../img/about-1.png");
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url("../img/about-1.png");
    background-size: cover;
}

/*
======================================== 
  21 - Innar pages Style
========================================
*/
