@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    -webkit-tap-highlight-color: transparent;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
.hidden{
    display: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

i {
    font-style: normal;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background: transparent;
    color: #333333;
}

a{
    outline: 0;
    text-decoration: none;
    color: #000;
    transition: color .3s;
}

a:active,
a:hover {
    color: rgba(0, 0, 0, 0.7);
    outline: 0;
    text-decoration: none;
}
b{
    font-weight: 700;
}
strong {
    font-weight: 900;
}

img {
    border: 0;
    max-width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button, button:hover, button:focus, button:active {
    overflow: visible;
    box-shadow: none;
    border: none;
    outline: none;
}

button {
    background: transparent;
}

button,
select {
    text-transform: none;
}
input:hover, input:active, input:focus, textarea:hover, textarea:active, textarea:focus{
    border:none;
    outline:none;
    box-shadow: none;
}


button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    background: #f6f7fb;
}

/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}
.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}
.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}
.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}
.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}
.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}
.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}
.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}
.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

/* START */

.container{
    width: 1700px;
    max-width: 100%;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-min{
    width: 1200px;
    max-width: 100%;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid{
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
}

header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    background: #fff;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-box-shadow: 0 0 1rem rgba(0,0,0,.1);
    box-shadow: 0 0 1rem rgba(0,0,0,.1);
}
header.header_up {
    top: -80px;
}

header .inner{
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_left, .header_right{
    display: flex;
}
.header_menu_button{
    z-index: 1;
    width: 80px;
    height: 80px;
    background: #ee9534;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.header_menu_button span:first-child {
    margin-bottom: 10px;
}
.header_menu_button:hover span:first-child{
    margin-bottom: 15px;
}

.header_menu_button span{
    height: 2px;
    width: 40px;
    background: #fff;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
}

.header_menu_button.active span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 0!important;
}
.header_menu_button.active span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 2px;
}

.header_menu, .header_contact{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transform: translate(-100%,0);
    transform: translate(-100%,0);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.header_contact{
    -webkit-transform: translate(100%,0);
    transform: translate(100%,0);
    z-index: 1;
}

.header_menu.active, .header_contact.active {
    opacity: 1;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.header_overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.3);
}
.header_menu_body{
    overflow: hidden;
}
.header_menu_body, .header_contact_body{
    width: 600px;
    max-width: calc(100% - 50px);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #797979;
    -webkit-transform: translate(-100%,0);
    transform: translate(-100%,0);
    transition: all .3s;
}
.header_contact_body{
    -webkit-transform: translate(100%,0);
    transform: translate(100%,0);
    right: 0;
    left: auto;
    background: #fff;
    overflow: hidden;
}
.header_menu_body.active, .header_contact_body.active{
    opacity: 1;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.header_contact_body_inner{
    top: 100px;
    height: 100%;
    position: absolute;
    right: -17px;
    left: 0;
    overflow-y: scroll;
    padding: 100px;
}

.header_contact_button{
    line-height: 80px;
    width: 250px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    background: #ee9534;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_contact_button:hover {
    color: rgba(255, 255, 255, 0.7);
}

.header_contact_button_close{
    line-height: 80px;
    width: 250px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    right: 0;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #fff;
    background: #ee9534;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.header_contact_button_close svg{
    fill: #fff;
}
.header_contact_button_close svg, .header_contact_button svg{
    margin-right: 10px;
}
.header_contact_button .icon_phone{
    display: none;
}
.header_logo{
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #777 !important;
    font-weight: 600;
    position: absolute;
    left: calc(50% - 75px);
}
.header_logo img{
    height: 60px;
    margin-left: 15px;
    margin-right: 15px;
}

.header_link{
    line-height: 80px;
    padding-left: 40px;
    padding-right: 40px;
    color: #303437;
    font-weight: 700;
    font-size: 14px;
    border-right: 1px solid #f3f8fc;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header_link:hover{
    background: #ee953436;
}

.header_link svg{
    height: 7px;
    width: 7px;
    margin-left: 5px;
}
.header_contacts_phone{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 50px;
}
.header_contacts_phone_number a, .header_contacts_phone_number {
    color: #ee9534;
}
.header_contacts_phone_number{
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header_contacts_phone p{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #777;
}

.header_contacts_phone_number p{
    margin: 0 10px 0;
}

.header_dropdown_body{
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    opacity: 0;
    -webkit-transform: translate(0,-100vh);
    transform: translate(0,-100vh);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    will-change: opacity;
    height: calc(100vh - 80px);
}
.header_dropdown svg{
    -webkit-transition: all .2s;
    transition: all .2s;
}
.header_dropdown.active svg{
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);

}

.active .header_dropdown_body{
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    opacity: 1;
}

.header_practices_item{
    width: 25%;
    padding: 100px 30px;
    flex-direction: column;
    display: flex;
    text-align: center;
    justify-content: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.header_practices_item:hover{
    background: #ee953436;
}
.header_practices_item img{
    height: 150px;
    margin-bottom: 20px;
}
.header_practices_item span{
    text-transform: uppercase;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    line-height: 1.3;
}

.active.header_dropdown{
    background: #ee953436;
}

.home_top_inner{
    display: flex;
    padding: 5px 0;
}
.home_main_video{
    width: 32vw;
}
.home_top_sliders{
    flex: 1;
    overflow: hidden;
}
.home_main_slider, .home_sub_slider{
    margin-right: 5px;
}
.home_main_slider{
    margin-bottom: 5px;
}
.home_main_slide{
    min-height: 300px;
    height: calc(100vh - 330px);
    background-size: cover !important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    position: relative;
}
.home_main_slide:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000004f;
}
.home_sub_slider{
    background: #fff;
    display: flex;
}
.home_sub_slider .owl-item.current .home_sub_slide *{
    color: #ee9534;
}
.owl-nav.disabled{
    display: none!important;
}

.home_sub_slide{
    height: 250px;
    padding: 40px;
    cursor: pointer;
}
.home_top{
    margin-top: 80px;
    margin-bottom: 100px;
}
.home_main_slide .inner{
    position: relative;
    z-index: 3;
    padding: 80px 200px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.home_main_slide_numbers{
    color: #fff;
    position: relative;
    margin-bottom: 3rem;
    font-size: 28px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.home_main_slide_numbers span{
    display: block;
    margin-left: 10px;
    font-size: 14px;
    opacity: 0.6;
}
.home_main_slide_title{
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 50px;
    margin-bottom: 15px;
}
.home_main_slide_description{
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}
.home_main_play{
    min-height: 300px;
    height: calc(100vh - 330px);
    background-size: cover !important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    position: relative;
}
.home_main_play:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000004f;
}
.home_main_info{
    background: #fff;
    padding: 60px;
}
.home_main_info_title{
    font-size: 26px;
    font-weight: 700;
    color: #4c5155;
    margin-bottom: 20px;
}
.home_main_play_icon{
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50px;
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    cursor: pointer;
}

.home_main_play_icon:before{
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 24px solid #ee9534;
    position: absolute;
    left: calc(50% - 10px);
    bottom: calc(50% - 15px);
}
.home_sub_slide_number{
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 18px;
}
.home_sub_slide_title{
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    color: #4c5155;
}
.home_sub_slide_description{
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}
.header_menu_body-inner{
    overflow-y: scroll;
    position: absolute;
    right: -17px;
    z-index: 2;
    top: 100px;
    left: 100px;
    bottom: 20px;
    padding-top: 50px;
}
.header_menu_links{
    margin-bottom: 50px;
}
.header_menu_links a{
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: color 0.3s;
}
.overflow_hidden{
    overflow: hidden;
}
.header_menu_address{
    margin-bottom: 30px;
}
.header_menu_address_item{
    margin-bottom: 20px;
}
.header_menu_address_item p{
    color: #c3c3c3;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.header_menu_address_item a{
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s;
    line-height: 1.5;
}
.header_menu_links a:hover{
    color: #ccc;
}
.header_menu_social{
    margin-bottom: 100px;
}
.header_menu_social a{
    display: block;
    padding: 10px;
    margin-right: 10px;
    background: #ee9534;
}
.header_menu_social img{
    height: 25px;
}

.header_contact_body_title{
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 700;
    color: #4c5155;
    margin-bottom: 30px;
}
.header_contact_body_subtitle{
    text-align: center;
    font-weight: 500;
    margin-bottom: 30px;
}
.header_contact_body_input{
    margin-bottom: 30px;
}
.header_contact_body_input input, .header_contact_body_input textarea{
    width: 100%;
    transition: all 0.5s;
    padding: 0 30px;
    border: 1px solid #ccc;
    height: 56px;
    resize: none;
    border-radius: 4px;
}
.header_contact_body_input input::placeholder, .header_contact_body_input textarea::placeholder {
    font-size: 14px;
    font-weight: 600;
}
.header_contact_body_input textarea{
    padding: 30px;
    height: 100px;
}
.header_contact_body_btn{
    line-height: 60px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #fff;
    background: #ee9534;
}
.header_contact_body_btn:hover{
    color: rgba(255, 255, 255, 0.7);
}
.owl-stage{
    display: flex;
}
.owl-stage-outer {
    overflow: hidden;
}
.home_main_slider{
    position: relative;
}
.home_main_slider .owl-nav{
    position: absolute;
    right: 20px;
    bottom: 80px;
}
.home_main_slider .owl-next, .home_main_slider .owl-prev{
    color: #fff;
    padding: 20px 10px;
    font-size: 26px;
}
.home_services{
    margin-bottom: 100px;
}
.section_title{
    text-transform: uppercase;
    font-size: 56px;
    color: #4c5155;
    margin-bottom: 20px;
}
.section_sub_title{
    text-transform: uppercase;
    color: #ee9534;
    font-weight: 600;

}
.section_sub_title span{
    margin-right: 10px;
    transition: margin-right .3s;
}
.section_sub_title svg{
    fill: #ee9534;
    transition: fill .3s;
}

.section_sub_title:hover{
    color: rgba(0,0,0,0.7);
}
.section_sub_title:hover svg{
    fill: rgba(0,0,0,0.7);
}
.section_sub_title:hover span{
    margin-right: 15px;
}
.center{
    text-align: center !important;
}

.home_philosophy{
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fff;
    margin-bottom: 100px;
}
.home_philosophy .container{
    max-width: 800px;
}
.home_philosophy h3{
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: #ee9534;
}

.home_philosophy h4{
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.home_philosophy .section_title{
    margin-bottom: 40px;
}
.home_philosophy p{
    line-height: 1.8;
    margin-bottom: 40px;
}
.home_services_left{
    width: 300px;
}
.home_services_right{
    flex: 1;
}
.footer_menu{
    display: flex;
    justify-content: center;
    background: #fff;
    border-bottom: 3px solid #ee9534;
}
.footer_menu a{
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #303437;
    width: 200px;
    line-height: 80px;
    white-space: nowrap;
    text-align: center;
    transition: background .3s;
}
.footer_menu a:hover{
    background: #ee953436;
}
.footer_inner{
    padding: 100px 0 80px;
    border-bottom: 1px solid #60686c;

}

.footer_address{
    display: flex;
}
footer{
    background: #4c5155;
    margin-bottom: 50px;
}

.footer_address_item{
    margin-right: 30px;
    width: 250px;
    text-align: center;
}

.footer_address_item p {
    color: #959494;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer_address_item a {
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    transition: color 0.3s;
    line-height: 1.5;
}
.footer_address_item a:last-child{
    margin-bottom: 0;
}
.footer_address_item a span{
    font-weight: 400;
}

.footer_inner .container{
    display: flex;
    justify-content: space-between;
}
.footer_logo{
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
}
.footer_logo img{
    height: 100px;
    margin-left: 20px;
    margin-right: 20px;
}

.footer_bottom{
    display: flex;
    justify-content: center;
}

.footer_social a {
    display: block;
    padding: 10px;
    margin-right: 10px;
    background: #ee9534;
}
.footer_social img {
    height: 25px;
}

.footer_copywrite{
    position: absolute;
    right: 15px;
    z-index: 999;
    color: #c3c3c3;
    font-size: 13px;
    font-weight: 500;
    line-height: 48px;
}