@font-face {
    font-family: 'Calibri';
    src: url('../font/Calibri.woff2') format('woff2'),
    url('../font/Calibri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'GothamXNarrow-Light';
    src: url('../font/GothamXNarrow-Light.woff2') format('woff2'),
    url('../font/GothamXNarrow-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'GothamXNarrow-Bold';
    src: url('../font/GothamXNarrow-Bold.woff2') format('woff2'),
    url('../font/GothamXNarrow-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'GothamXNarrow-Medium';
    src: url('../font/GothamXNarrow-Medium.woff2') format('woff2'),
    url('../font/GothamXNarrow-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: fallback;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Calibri', 'sans-serif';
    font-size: 18px;
    color: #6d6d6d;
    /*letter-spacing: 1px;*/
    background: #413b3b;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    transition: all 0.5s;
}
h1{
    font-size: 40px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    font-family: 'GothamXNarrow-Bold','sans-serif';
}
h2{
    font-size: 30px;
    margin: 0 0 10px 0;
    font-family: 'GothamXNarrow-Medium','sans-serif';
}
h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-family: 'GothamXNarrow-Medium','sans-serif';
}
p{
    line-height: 2;
}
.container{
    position: relative;
}
.brand_logo {
    background-image: url('../images/icon/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 184px;
    height: 55px;
    transition: all 0.5s;
    position: relative;
    z-index: 0;
    left: 50px;
}
.section_menu{
    background: #fff;
    position: fixed;
    width: 100%;
    padding: 15px 0;
    z-index: 3;
    transition: all 0.5s;
    top: 0;
}
.section_navbar-mobile {
    background: none;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 6;
    transition: all 0.5s;
}

.btn_menumore {
    position: absolute;
    width: 30px;
    top: 0;
    left: 10px;
    cursor: pointer;
    z-index: 100;
    display: inline-block;
    height: 20px;
    transition: opacity .25s ease;
}

.btn_menumore:hover {
    opacity: 1;
}

.btn_menumore.active .top {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
    transform: translateY(6px) translateX(0) rotate(45deg);
    background: #FFF;
}

.btn_menumore.active .middle {
    opacity: 0;
    background: #FFF;
}

.btn_menumore.active .bottom {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
    background: #FFF;
}

.btn_menumore span {
    background: #323232;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.btn_menumore span:nth-of-type(2) {
    top: 6px;
}

.btn_menumore span:nth-of-type(3) {
    top: 12px;
}

.overlay {
    position: fixed;
    background: rgba(65, 59, 59, 0.98);
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    z-index: 9;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}
.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}
.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.overlay.open li:nth-of-type(10) {
    -webkit-animation-delay: .80s;
    animation-delay: .80s;
}


.overlay nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.overlay ul li {
    display: block;
    height: 25%;
    position: relative;
    padding: 10px;
    opacity: 0;
}

.overlay ul li a {
    overflow: hidden;
    transition: all 0.5s;
    color: #fff;
    font-family: 'GothamXNarrow-Medium','sans-serif';
}

.overlay ul li a:hover {
    color: #29aae2;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.nav > li > a{
    font-family: 'GothamXNarrow-Medium','sans-serif';
    color: #000;
    line-height: 30px;
    padding: 10px 0;
}
.section_menu .navbar-nav .active:before {
    position: absolute;
    content: '';
    height: 3px;
    bottom: -20px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 100%;
    background: #29aae2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.navbar-nav > li{
    padding: 0 40px;
}
.underline:before {
    position: absolute;
    content: '';
    height: 3px;
    bottom: -20px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 20%;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.underline:hover:before {
    width: 100%;
    background: #29aae2;
}
.overlay_slide {
    width: 100%;
    z-index: 1;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
     background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
}
.text_slide {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
    top: 0;
    margin: auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.text_slide h1 {
    margin: 10px 0;
    color: #fff;
    font-size: 70px;
    font-family: 'GothamXNarrow-Bold','sans-serif';
    text-shadow: 2px 2px 10px #292929;
}
.text_slide h2{
    font-size: 40px;
    text-transform: uppercase;
}
.text_slide img{
    margin-bottom: 20px;
}

.text_slide ul {
    margin: 0;
    padding: 0;
    transition: all 0.5s;
}

.text_slide ul li {
    animation-name: fadeInUp;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: 0;
    list-style: none;
}

.text_slide li:nth-child(1) {
    animation-delay: 0.5s;
}

.text_slide li:nth-child(2) {
    animation-delay: 0.6s;
}
.text_slide li:nth-child(3) {
    animation-delay: 0.7s;
}
.text_slide li:nth-child(4) {
    animation-delay: 0.8s;
}
.text_slide li:nth-child(5) {
    animation-delay: 0.9s;
}
.btn_contact{
    border: 2px solid #fff;
    padding: 10px 30px;
    background: none;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    transition: all 0.5s;
}
.btn_contact:hover{
    background: #fff;
    color: #000;
}
.image_box {
    width: 100%;
    height: 700px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    transition: all 0.5s;
}
.details_description{
    padding: 50px;
    background: #918e83;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.details_description h1{
    color: #fff;
}
.line{
    width: 100px;
    margin-left: 0;
}
.item_img_box {
    position: relative;
    overflow: hidden;
}

.item_img_box .item_img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: all 1s ease;
}

.item_img_box:hover .item_img {
    transform: scale(1.05);
}
.image_services {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    transition: all 0.5s;
}
.section_services{
    text-align: center;
    padding: 50px;
    background: #413b3b;
    color: #fff;
    display: inline-block;
    width: 100%;
}
.section_services .line{
    margin-left: auto;
}
.slide_services{
    margin-top: 50px;
}
.section_services .owl-nav{
    display: none;
}
.section_services .owl-dots{
    display: none;
    margin-bottom: 25px;
}
.scroll_menu{
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 20px;
    width: 100%;
    top: 0 !important;
    position: fixed !important;
    z-index: 4;
}
.details_services{
    text-align: left;
    padding: 25px 0;
    color: #b8b8b8;
}
.details_services h2{
    color: #fff;
}
.moredetails{
    background: none;
    color: #fff;
    border: none;
    text-decoration: underline;
    padding: 0;
    transition: all 0.5s;
}
.moredetails:hover{
    color: #29aae2;
}
.details_contact{
    padding: 50px 100px 50px 50px;
    background: #1e1e1e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.paddingcontact{
    padding: 10px 0;
}
.input_contact{
    border: 1px solid #fff;
    border-radius: 5px;
    width: 100%;
    padding: 15px;
    color: #000;
}
.paddingname{
    padding-right: 25px;
}
.section_contact textarea{
    height: 150px;
}
.section_map  iframe {
    height: 100%;
    width: 100%;
    border: none;
}
.section_map{
    display: flex;
    width: 100%;
}
.section_footer{
    display: flex;
    width: 100%;
    padding: 50px 0;
    background: #f0f0f0;
}
.licon_fac{
    display: none;
    margin-top: 25px;
    font-size: 30px;
}
.section_footer p{
    margin: 0;
    letter-spacing: 0;
    font-size: 14px;
}
.logo_footer{
    text-align: center;
}
.section_footer h4{
    margin-top: 0;
    text-transform: uppercase;
}
.section_footer table{
    letter-spacing: 0;
    font-size: 14px;
}
.section_footer a:hover{
    color: #29aae2;
}
.linkmenu ul{
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0;
}
.linkmenu li{
    list-style: none;
    padding: 0 0 5px 0;
}
.linkmenu{
    text-indent: 25px;
}
.image_bg {
    width: 100%;
    height: 600px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.overlay_gradient{
    background: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 24%,rgba(0,0,0,0) 100%);
    width: 100%;
    z-index: 1;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    transition: all 0.5s;
}
.section_content{
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}
.title_content{
    position: relative;
    z-index: 1;
    padding: 25px;
    background: #111111;
}
.title_content h1{
    text-transform: none;
}
.title_content hr{
    border-top: 1px solid #29abe2;
    width: 200px;
    margin-left: 0;
    margin-bottom: 0;
}

.details_content{
    padding: 0 50px 50px;
    color: #fff;
}
.section_list li {
    list-style-image: url('../../assets/images/icon/bullet.png');
    display: list-item;
    list-style-position: inside;
    padding: 15px;
    background: #514a4a;
}
.section_list{
    padding: 0 0 50px 0;
}
.section_list ul{
    margin: 0;
    padding: 0;
}
.li_2{
    background: #353030!important;
}
.ul_2 li{
    list-style: none;
    background: none;
    padding: 0;
}
.ul_2{
    margin: 0 50px!important;
}
.section_list{
    color: #fff;
}
.section_list .col-xs-6{
    padding: 0 25px;
}
.row_list{
    margin-right: -25px;
    margin-left: -25px;
}
.section_attorneys{
    text-align: center;
}
.linepink{
    border-color: #29abe2;
    width: 50px;
}
.row_attorneys{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 50px 0 0 0;
}
.row_attorneys .col-xs-10{
    background: #2d2d2d;
    float: right;
    padding: 25px;
    text-align: left;
    color: #fff;
    margin: 50px 0 0 0;
}
.row_attorneys p{
    color: #b7b7b7;
}
.details_attorneys{
    border: 1px solid #626262;
    padding: 25px;
    display: inline-block;
}
.image_attorneys {
    width: 100%;
    height: 500px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    float: right;
    transition: all 0.5s;
}
.row_attorneys .col-xs-5{
    position: absolute;
    z-index: 2;
}
.row_attorneys2{
    padding: 50px 0 0 0;
}
.row_attorneys2 .col-xs-5{
    float: right;
    right: 0;
}
.row_attorneys2 .col-xs-10{
    float: left;
    margin: 50px 0 0 0;
}
.text_indent{
    padding-left: 25px;
}
.details_attorneys li{
    color: #b7b7b7;
    padding: 10px;
}
.row_attorneys1{
    margin-bottom: 50px;
}
.section_contactus{
    text-align: center;
}
.section_contactus .address{
    color: #fff;
    text-align: left;
}
.section_contactus .address a:hover{
    color: #29abe2;
}
.contactform{
    text-align: left;
    color: #fff;
}
.star{
    color: red;
}
.contactform .input_contact{
    border-radius: 0;
}
.btn_input {
    border: none;
    padding: 10px 40px;
    color: #fff;
    display: inline-block;
    background: #29abe2;
    text-transform: uppercase;
    margin-top: 15px;
    transition: all 0.5s;
}
.section_contactform{
    padding-top: 25px;
}
.overlay-menu .active{
    color: #29abe2;
}
.padding50{
    padding: 0 50px;
}
.address p{
    line-height: 25px;
}
.contact td{
    padding-bottom: 5px;
}
.section_pallarax{
    position: relative;
    margin-top: 85px;
}
.slide_attorneys .owl-nav{
    display: none;
}
.slide_attorneys .owl-dots{
   position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
}