/*====================================
  Fonts
==================================*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Playfair+Display:400,700');
/*==========================================
#0.1    Theme Reset Style
=============================================*/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    color: #2C3454;
	background-color:#F9F9F9
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
}

p {
    color: #2C3454;
    line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: #2C3454;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
	color:#F0AB00
}

a:hover {
    text-decoration: none;
	color:#BF8F21
}

img {
    max-width: 100%;
}

button,
a:focus {
    outline: none;
}

.section-padding {
    padding: 60px 0;
}
/*=============================================
 back to top
 ==============================================**/
.back-to-top {
    background: rgba(192, 181, 150, .80);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: 15px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.back-to-top:hover {
    background-color: #FFB600;
}

.back-to-top i {
    font-size: 18px;
    font-size: 1.125rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*===================================
header-style
=====================================*/
.header-top {
    background: #252536;
    padding: 5px 0;
}
.header-top .container{
    position: relative;
}


.header-top ul.header-contact {
    text-align: right;
}

.header-top li {
    display: inline-block;
    padding: 15px;
    color: #fff;
}

.header-top li i {
    padding-right: 10px;
    color: #FFB600;
    font-size: 23px;
    margin-top: -7px;
    transform: translateY(3px);
}
.header-top li:last-child i{
    font-size: 18px;
    transform: translateY(2px);
}
.header-contact li{
    position: relative;
}

.header-contact li:before {
    position: absolute;
    content: "";
    right: -3px;
    top: 15px;
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,.07);
}
.header-contact li:last-child:before{
    display: none;
}

.header-area {
    position: absolute;
    width: 100%;
    z-index: 99;
    background-color: rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.account_login-area li:first-child {
    padding-left: 0;
}

.logo {
    margin-top: 15px;
}

.main-menu .submenu li a {
    padding: 10px 15px;
    font-size: 14px;
}

.main-menu nav ul {
    text-align: right;
}

.main-menu nav ul li {
    display: inline-block;
    position: relative;
}

.main-menu nav ul li a {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0;
    padding: 35px 18px;
    text-transform: uppercase;
}
.main-menu nav ul li a:last-child{
    padding-right: 0;
}

.main-menu nav ul li>ul li a {
    color: #333;
}

.main-menu nav ul li:hover>a,
.main-menu nav ul li.active>a {
    color: #FFB600;
}

.main-menu .submenu {
    position: absolute;
    left: 0;
    top: 92px;
    z-index: 999;
    width: 226px;
    padding: 10px 0px 20px;
    background: #fff;
    text-align: left;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: top;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-transform: capitalize;

}

.main-menu nav>ul>li:hover>.submenu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.main-menu .submenu li {
    display: block;
}

.main-menu .submenu li a {
    padding: 10px 15px;
}

.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #2c3454;
    z-index: 1200;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
    animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
}

.header-style-3 .header-area-3 .sticky {
    background-color: #272c3f;
}



/*===============================
0.6 about-area
=================================*/
.title span {
    font-size: 16px;
    color: #ada282;
    margin-bottom: 30px;
    margin-top: 10px;
}

.about-text p {
    font-size: 15px;
    padding-top: 15px;
}

.btns-2 {
    margin-top: 40px;
}

.title h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
}

.title h2:before {
    content: "";
    position: absolute;
    left: -68px;
    top: 19px;
    width: 60px;
    height: 1px;
    background: #FFB600;
}

.about-area .about-title {
    position: relative;
}

.about-title .img-holder {
    position: relative;
    max-width: 545px;
}

.about-title .img-holder:before {
    content: "";
    background-color: #FFB600;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: -1;
}

.overlay {
    position: relative;
}

.overlay:before {
    content: "";
    background: rgba(21, 26, 48, .40);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
}

.social-1st {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 999;
}

.social-1st i {
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 100%;
    color: #fff;
}

/*==========================================
0.8 case-stdyes-area start
=============================================*/
.col-c {
    max-width: 20%;
    overflow: hidden;
}

/*===================================
0.9 testimonial-area start
=====================================*/


.thumb-img {
    width: 18%;
    float: left;
    padding-right: 20px;
}

.slide-item p {
    padding: 20px 33px 30px;
    padding-right: 50px;
    position: relative;
}

.slide-item p:before {
    position: absolute;
    left: 4px;
    top: 5px;
    content: "\f10d";
    font-family: 'FontAwesome';
    color: #FFB600;
    font-size: 30px;
}

.testimonial-img {
    margin-top: -7px;
}

.img-content {
    margin-top: 35px;
}

.img-content h4 {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.img-content span {
    font-size: 16px;
    color: #666;
}


.col-p {
    padding: 10px 1px;
}




/*=======================================
1.5 footer-area start
=========================================*/
.footer-area {
    background: #252536;
}

.footer-top {
    padding-top: 95px;
    padding-bottom:70px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-top p {
    color: #ddd;
}

.footer-top a {
    color: #ddd;
}

.footer-top h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-link ul li a {
    padding-top: 10px;
    display: block;
}

.footer-link {
    margin-bottom: 30px;
}

.footer-practice {
    margin-bottom: 30px;
}

.footer-practice ul li a {
    padding-top: 10px;
    display: block;
}

.footer-contact ul li {
    color: #ddd;
    padding-top: 10px;
}

.footer-bottom-content {
    padding: 30px 0;
	text-align:center
}

.footer-bottom-content span {
    color: #ddd;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
}

.footer-bottom-content ul {
    justify-content: flex-end;
}

.footer-bottom-content ul li {
    padding-right: 15px;
}

.footer-bottom-content ul li a {
    color: #ddd;
}

/*======================================
2.0 Home style 2
=========================================*/
.header-area.header-area2 {
    background: #252536;
    position: relative;

}

.hero.hero-slider-wrapper.hero-style-2 .slide-caption {
    z-index: 19;
    padding-top: 0px;
}


.icon-c {
    background: #FFB600;
    height: 100px;
    max-width: 100px;
    text-align: center;
}



/*=====================================
4.0 about-page start
=======================================*/

.breadcumb-area {
    background: url(../images/2019-08-15.jpg) no-repeat center top / cover;
    min-height: 450px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.breadcumb-area:before {
    content: "";
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#151a30+8,151a30+95&0.79+46,0+100,0.01+100,0+100 */
    background: -moz-linear-gradient(left, rgba(21, 26, 48, 0.79) 8%, rgba(21, 26, 48, 0.79) 46%, rgba(21, 26, 48, 0.07) 95%, rgba(21, 26, 48, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(21, 26, 48, 0.79) 8%, rgba(21, 26, 48, 0.79) 46%, rgba(21, 26, 48, 0.07) 95%, rgba(21, 26, 48, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(21, 26, 48, 0.79) 8%, rgba(21, 26, 48, 0.79) 46%, rgba(21, 26, 48, 0.07) 95%, rgba(21, 26, 48, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151a30', endColorstr='#00151a30', GradientType=1);
    /* IE6-9 */
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}


.breadcumb-wrap h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.breadcumb-wrap ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
}

.breadcumb-wrap ul li a {
    color: #fff;
    font-size: 18px;
    transition: all .3s;
}

.breadcumb-wrap ul li a:hover {
    color: #FFB600;
}

.breadcumb-wrap ul li:last-child {
    color: #FFB600;
	font-size: 24px;
	font-family: 'Playfair Display', serif;
}

.breadcumb-wrap ul li:after {
    content: "/";
    position: relative;
    left: 7px;
}

.breadcumb-wrap ul li:last-child:after {
    display: none;
}


.p-p {
    padding-right: 40px;
}


.contact-area.contact-area-2 {
    background: #fff;
    padding-top: 60px;
}

.contact-area.contact-area-2:before {
    display: none;
}


.contact-area.contact-area-2 form input,
.contact-area.contact-area-2 form textarea {
    background: #F1F1F1;
}

.contact-page-area .contact-map {
    height: 450px;
    margin-top: 54px;
    cursor: pointer;
}

.contact-page-area .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
}

.contact-page-item h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-page-item h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.contact-page-item span {
    display: block;
    padding-bottom: 10px;
}

.contact-page-item .adress {
    margin-bottom: 20px;
}

.contact-page-item .phone {
    margin-bottom: 20px;
}

.contact-area.contact-area-2.contact-area-3 {
    padding-top: 0px;
    padding-bottom: 0;
}

.contact-area.contact-area-2.contact-area-3 h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

