@font-face {
    font-family: 'Inter_Light';
    src: url('../font/Inter-Light.woff2') format('woff2'),
    url('../font/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter_SemiBold';
    src: url('../font/Inter-SemiBold.woff2') format('woff2'),
    url('../font/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IrisUPC';
    src: url('../font/IrisUPC.woff2') format('woff2'),
    url('../font/IrisUPC.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'irisupcregular';
    src: url('../font/upcil-webfont.woff2') format('woff2'),
    url('../font/upcil-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


:root{
    --pimary-color: #565656;
    --secondary-color: #c9a52d;
    --font-body: 'Inter_Light', 'sans-serif';
    --font-title: 'irisupcregular', 'sans-serif';
    --font-strong: 'Inter_SemiBold', 'sans-serif';

}
h1{
    font-family: var(--font-title);
    text-transform: uppercase;
    margin: 0;
    line-height: 55px;
    font-size: 60px;
    font-weight: normal;
}
h2{
    font-family: var(--font-title);
    text-transform: uppercase;
    margin: 0;
    line-height: 30px;
    font-size: 44px;
    font-weight: normal;
}
h3{
    font-family: var(--font-title);
    text-transform: uppercase;
    margin: 0;
    line-height: 32px;
    font-size: 36px;
    font-weight: normal;
}
h4{
    font-family: var(--font-title);
    text-transform: uppercase;
    margin: 0;
    font-size: 26px;
    line-height: 22px;
    font-weight: normal;
    color: var(--secondary-color);
}

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

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: #565656;
    line-height: 1.8;
    overflow-x: hidden;
    background-image: url('../images/icon/bg.jpg');
    background-size: contain;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.25s;
}
input{
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
select option{
    color: black!important;
}
::selection {
    color: #ffffff;
    background: var(--secondary-color);
}
.container {
    padding: 0;
    position: relative;
}
.section_intro{
    padding: 50px 0 150px;
    text-align: center;
    height: auto;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
}
.section_intro:before{
    content: '';
    background-image: url('../images/icon/bg-intro.jpg');
    width: 100%;
    height: 40%;
    background-size: cover;
    background-position: top;
    position: absolute;
    left: 0;
    bottom: 0;
}
.section_intro .brand_logo{
    position: inherit;
    height: auto;
    padding: 0;
}
.section_intro .brand_logo:before{
    content: none!important;
}
.section_intro .brand_logo img{
    height: 140px;
    width: auto;
    margin: auto;
    display: block;
}
.images_branch{
    height: 450px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    transition: .4s ease-in-out;
}
.images_branch img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease-in-out;;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}
.slide_branch .slide:hover .images_branch{
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
.row_branch{
    margin: 50px 0;
}
.slide_branch .slide{
    padding: 0 25px;
}
/*.slide_branch .slide:nth-child(2) .images_branch{*/
/*    border-top-left-radius: 200px;*/
/*}*/
.slide_branch .slick-list{
    margin: 0 -25px;
}
.slide_branch .slick-dots{
    padding: 0;
    margin-top: 20px;
}
.slick-dots li{
    margin: 0 5px;
}
.details_branch{
    text-transform: uppercase;
    padding: 30px 0 0;
    text-align: center;
    font-family: var(--font-title);
}
.details_branch h2{
    color: var(--secondary-color);
}
.details_branch p{
    margin: 5px 0 0;
    font-size: 30px;
    line-height: 26px;
    /*line-height: normal;*/
}
.images_branch img:nth-child(2){
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.slide_branch .slide:hover .images_branch img:nth-child(2){
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
    -webkit-transition-delay: 0.21s;
    transition-delay: 0.21s;
}
.slide_branch .slide:hover .images_branch img:nth-child(1){
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
}
.button_branch{
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.button_branch ul{
    margin: 0;
    padding: 0;
}
.button_branch li{
    list-style: none;
    width: 100%;
    padding: 6px 0;
    line-height: normal;
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease-in-out;

}
.slide_branch .slide:hover li{
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}
.slide_branch .slide .button_branch li:nth-child(1){
    transition-delay: .125s;
}
.slide_branch .slide .button_branch li:nth-child(2){
    transition-delay: .145s;
}
.slide_branch .slide .button_branch li:nth-child(3){
    transition-delay: .165s;
}
.button_branch .button_radius{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 0 0 inset;
    transition: .4s ease-in-out;
}
.button_radius .images_icon {
    object-fit: cover;
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #fff;
    margin: auto;
    transition: all 0.25s;
    vertical-align: middle;
}
.button_branch a:hover .button_radius{
    box-shadow: 0 0 0 40px #000000 inset;
}
.details_button_radius{
    position: absolute;
    width: max-content;
    height: auto;
    background-color: var(--secondary-color);
    color: #ffffff;
    display: block;
    left: calc(100% + 15px);
    top: 50%;
    text-align: left;
    transform: translate(-10px, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out 0s;
    border-radius: 5px;
    padding: 4px 10px;
}
.button_branch a:hover .details_button_radius{
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
}
.details_button_radius label{
    font-family: var(--font-title);
    line-height: normal;
    font-size: 24px;
}
.section_copyright{
    position: inherit;
    width: 100%;
    z-index: 1;
    bottom: 0;
    left: 0;
    background: #282828;
    text-align: center;
    padding: 10px 0;
    color: #ffffff;
}
.section_copyright p{
    margin: 0;
}
.section_slideshow{
    padding: 0 50px;
    width: 100%;
    /*height: calc(100vh - 130px);*/
    overflow: hidden;
    position: relative;
}
.images_slidehow{
    height: calc(100vh - 130px);
    width: 100%;
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
    mask-position: bottom left;
    mask-repeat: no-repeat;
    mask-size: 100%;
    mask-image: url('../images/icon/branch1/mask-1.svg');
    /*mask-mode: alpha;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_slidehow img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}
.slide_show .slide img{
    transition: all 0.25s;
    transform: scale(1.01);
}
.slide_show .slide.slick-active img{
    transform: scale(1.0);
}
.section_header{
    width: 100%;
    height: 80px;
    padding: 0 50px;
    display: flow-root;
    position: relative;
    z-index: 2;
    transition: all 0.25s;
}
.button_container {
    position: absolute;
    /*top: 0;*/
    /*bottom: 0;*/
    height: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    right: auto;
    left: 50px;
    top: 0;
    bottom: 0;
    width: auto;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
.button_container img{
    margin-right: 10px;
    width: auto;
    height: 30px;
    display: block;
}
.button_container label{
    position: relative;
    height: 30px;
}
.button_container label:before{
    content: 'Menu';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /*display: inline-table;*/

}

.button_container:hover {
    opacity: 1;
}

.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #fff;
    width: 100%;
}

.button_container.active .middle {
    opacity: 0;
    background: #fff;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #fff;
}

.button_container span {
    background: var(--pimary-color);
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
    opacity: 0;
}

.button_container span:nth-of-type(1) {
    width: 100%;
}

.button_container span:nth-of-type(2) {
    top: 8px;
}

.button_container span:nth-of-type(3) {
    top: 16px;
    width: 60%;
}
.button_container:hover span:nth-of-type(3), .button_container.active span:nth-of-type(3){
    width: 100%;
}

.overlay {
    position: fixed;
    /*background-image: url('../images/icon/bg.jpg');*/
    background: var(--pimary-color);
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    z-index: 9;
    transition: all 0.5s;
}

.overlay.open {
    opacity: 1;
    width: 350px;
}

.overlay.open li {
    -webkit-animation: fadeInUp .9s ease forwards;
    animation: fadeInUp .9s 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.open li:nth-of-type(11) {
    -webkit-animation-delay: .85s;
    animation-delay: .85s;
}

.overlay nav {
    position: relative;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    margin: 80px auto 0;
    position: relative;
    height: 100%;
    color: #ffffff;
    text-align: left;
    padding: 0 50px;
    z-index: 60;
    font-size: 16px;
}

.overlay ul li {
    /*display: block;*/
    position: relative;
    padding: 8px 0;
    opacity: 0;
    width: 100%;
    line-height: initial;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 1;
    
    transition: all 0.25s;
}

.overlay ul li a.active,
.overlay ul li a:hover,
.nav_mobile .overlay-menu .active {
    color: var(--secondary-color);
    opacity: 1;
}

.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;
    }
}

.fix_body {
    overflow: hidden !important;
}
.brand_logo{
    position: absolute;
    left: 0;
    right: 0;
    height: 110px;
    padding: 5px 0;
    margin: auto;
    text-align: center;
    transition: all 0.25s;
}
.brand_logo img{
    width: auto;
    height: 100%;
    margin: auto;
    position: relative;
}
.brand_logo:before{
    content: '';
    background-image: url('../images/icon/branch1/bg-logo.png');
    position: absolute;
    width: 365px;
    height: 170px;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    z-index: 0;
    transition: all 0.25s;
}
.brand_logo a{
    display: contents;
}
.social_header{
    text-align: right;
}
.social_header ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 80px;
    float: right;
    transition: all 0.25s;
}
.social_header li{
    list-style: none;
    padding: 0 10px;
}
.social_header li:nth-last-child(1){
    padding-right: 0;
}
.images_icon {
    object-fit: cover;
    /* display: inline-block; */
    width: 20px;
    height: 20px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: var(--pimary-color);
    margin: auto;
    transition: all 0.25s;
    vertical-align: middle;
}
.social_header a:hover .images_icon{
    background: var(--secondary-color);
}
.button_container.active{
    color: #fff;
}
ul.navbar_fix>li ul{
    padding: 0 0 0 20px;
    margin-top: 10px;
}
ul.navbar_fix>li ul>li:nth-last-child(1){
    padding-bottom: 0;
}
.button_container.active label:before{
    content: 'Close';
}
.section_description{
    padding: 50px 0 0;
    text-align: center;
    /*margin-top: -50px;*/
}
.text_slide{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-transform: uppercase;
    font-size: 60px;
    color: #ffffff;
    text-align: center;
    font-family: var(--font-title);
    padding: 0 30px;
}
.text_slide ul {
    margin: 0;
    padding: 0;
    transition: all 0.25s;
}
.text_slide ul li{
    margin: 0;
    list-style: none;
    line-height: 55px;
    padding: 0;
    text-shadow: 1px 1px 2px #00000026;
}
.slick-active .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;
}
.text_slide li:nth-child(1) {
    animation-delay: 0.5s;
}

.text_slide li:nth-child(2) {
    animation-delay: 0.6s;
}
.btn_slideshow{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 30px;
    margin: auto;
    z-index: 1;
    width: 100%;
    left: 0;
    padding: 0 80px;
}
.btn_slideshow button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.btn_slideshow button>img{
    filter: brightness(0) invert(1);
    height: 30px;
    width: auto;
    display: block;
}
.btn_slideshow button.next_btn{
    float: right;
}
.content_description{
    margin-top: 50px;
    text-align: left;
}
.content_description .col-xs-6, .content_description .col-xs-5, .content_description .col-xs-7{
    padding: 0 20px;
}
.row_description{
    margin: 0 -20px;
    display: flow-root;
}
.content_description .row_description:nth-child(1) .col-xs-6:nth-child(1){
    float: right;
}
.content_description .row_description:nth-child(1) .col-xs-5{
    float: right;
    width: 50%;
}
.content_description .row_description:nth-child(1) .col-xs-7{
    width: 50%;
}
.images_description{
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 600px;
    overflow: hidden;
}
.images_description img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_description p{
    margin-top: 0;
}
.details_description p:nth-last-child(1){
    margin-bottom: 0;
}
.details_description{
    padding: 15px 0;
    border-radius: 0!important;
}
.content_description .row_description:nth-child(1) .col-xs-7 .images_description{
    border-top-left-radius: 150px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.content_description .row_description:nth-child(2){
    margin-top: -250px;
}
.content_description .row_description:nth-child(2) .images_description{
    justify-content: end;
}
.content_description .row_description .col-xs-7 .images_description{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 150px;
}
.content_description .row_description .col-xs-7 .images_description:before{
    content: '';
    background: #f6f2e7;
    width: 90%;
    height: 100%;
    position: absolute;
    left: -10px;
    top: -35px;
    z-index: -1;
    border-radius: 30px;
}
.content_description .row_description:nth-child(2) .details_description {
    padding: 0 0 0 30px;
}
.section_services{
    padding: 100px 0;
    text-align: center;
    display: flow-root;
    width: 100%;
}
.images_services{
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 400px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    background: #ffffff;
    transition: .4s ease-in-out;
}
.images_services img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease-in-out;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}
.images_services img:nth-child(2){
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.slide_services .slide:hover .images_services{
    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
}
.slide_services .slide:hover .images_services img:nth-child(1){
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    opacity: 0;
}
.slide_services .slide:hover .images_services img:nth-child(2){
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
    -webkit-transition-delay: 0.21s;
    transition-delay: 0.21s;
}
.details_services{
    padding: 30px 30px 0;
}
.details_services p{
    margin: 5px 0 0;
}
.slide_services .slide{
    padding: 0 25px;
}
.slide_services .slick-list{
    margin: 0 -25px;
}
/*.slide_services .slide:nth-child(even) .images_services {*/
/*    border-top-left-radius: 200px;*/
/*}*/
.btn_services{
    position: absolute;
    left: -50px;
    height: 30px;
    top: 200px;
    width: 100%;
    text-align: left;
}
.btn_services button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.btn_services button>img{
    height: 30px;
    width: auto;
    display: block;
}
.btn_services .next_btn_service{
    float: right;
    position: relative;
    right: -100px;
}
.btn_services button .images_icon{
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
}
.section_location{
    padding: 0 100px;
}
.box_location{
    background: #c2bfb6;
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
    display: flow-root;
    width: 100%;
}
.images_location{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
    overflow: hidden;
}
.images_location .images_icon{
    width: 30px;
    height: 30px;
    background: #565656;
    margin-right: 15px;
}
.images_location label{
    display: inline-block;
    width: 100%;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.images_location p{
    margin: 0;
    font-family: var(--font-strong);
    font-size: 18px;
}
.images_location p span{
    display: inline-block;
    width: 100%;
}
.images_location ul{
    margin: 0 0 15px;
    padding: 0 0 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #afaba0;
}
.images_location ul:nth-last-child(1){
    margin-bottom: 0;
    border: none;
}
.images_location li{
    float: left;
    line-height: normal;
    padding: 0;
    list-style: none;
}
.images_location iframe{
    width: 100%;
    height: 100%;
    display: block;
}
.details_location{
    padding: 50px;
}
.section_gallery{
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.section_gallery h2{
    font-size: 60px;
}
.row_gallery{
    margin: -15px;
    padding-top: 50px;
}
.row_gallery .col-xs-4{
    padding: 15px;
}
.images_gallery{
    height: 300px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.images_gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: all 0.25s;
}
.row_gallery .col-xs-4:hover .images_gallery img{
    transform: scale(1.05);
}
.overlay_gallery{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #ffffff;
    background: #c9a52db0;
    opacity: 0;
    transition: all 0.25s;
}
.row_gallery .col-xs-4:hover .overlay_gallery{
    opacity: 1;
}
.section_bg{
    position: relative;
    height: 900px;
    margin-top: -500px;
    z-index: -1;
}
.section_bg:before {
    content: '';
    background-image: url('../images/icon/bg-footer.jpg');
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    position: absolute;
    left: 0;
    bottom: -10px;
}
.section_copyright_info{
    position: inherit;

}
.slide_services .slick-arrow{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 200px;
    left: -50px;
    z-index: 1;
}
.slide_services .slick-arrow.slick-next{
    right: -50px;
    left: auto;
}
.slide_services .slick-arrow>img{
    height: 30px;
    width: auto;
    display: block;
    filter: invert(77%) sepia(18%) saturate(1585%) hue-rotate(3deg) brightness(85%) contrast(90%);
}
.slick-dots{
    padding: 0;
    margin-top: 30px;
}
.row_location .col-xs-7{
    float: right;
}
.section_header.scroll_menu{
    position: fixed;
    background-image: url('../images/icon/bg.jpg');
    height: 60px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.section_header.scroll_menu .social_header ul{
    height: 60px;
}
.section_header.scroll_menu .brand_logo{
    height: 80px;
}
.section_header.scroll_menu .brand_logo:before{
    width: 270px;
}
.details_intro h1{
    font-size: 48px;
    color: var(--secondary-color);
    text-transform: none;
    line-height: 40px;
}
.details_branch h2{
    line-height: 26px;
    font-size: 36px;
}

.details_intro p>label{
    display: inline-block;
    width: 100%;
}
.btn_map{
    background: var(--pimary-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    transition: all 0.25s;
}
.btn_map:hover{
    background: var(--secondary-color);
}
.btn_map .images_icon{
    background: #ffffff;
    margin-right: 10px;
    display: inline-block;
    vertical-align: bottom;
}
.btn_location{
    text-align: center;
    margin-top: 50px;
}