/*common css*/
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700|Titillium+Web:300,400,600,700');

body {
    width: 100%;
    height: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a, a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1.title {
    font-size: 34px;
}
/*===END common css===*/





/*header top area*/
.header-top-area,
.header-top-area a {
    padding: 8px 0;
    background: #252525;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.header-top-icon i {
    margin-right: 6px;
}
/*===END header top area===*/





/*header area*/
.header-area {
    padding: 10px 0;
    background: #fff;
}

.header-area .search-bar {
    margin-bottom: 10px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.search-bar input {
    border: 1px solid #0170c1;
    padding: 6px;
    width: 228px;
    font-size: 16px;
    font-weight: 400;
}

.search-bar input:focus,
.search-bar button:focus {
    outline: none;
}

.search-bar button {
    border: none;
    padding: 6px 16px;
    background: #0170c1;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.header-area .mini-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.mini-menu ul li {
    display: inline-block;
}

.mini-menu ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding-left: 10px;
    z-index: 2;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mini-menu ul li a:hover {
    color: #1ea0ff;
}

.mini-menu ul li a:after {
    position: absolute;
    top: 0px;
    left: 3px;
    width: 100%;
    height: 100%;
    border-left: 1.5px solid #000;
    content: "";
}

.mini-menu ul li:first-child a:after {
    border-left: none;
}
/*===END header area===*/





/*slider area*/
.slider-area {
    width: 100%;
    height: auto;
    background: #aaa;
}

.slider-area .top-slides {
    position: relative;
}

.top-slides .owl-nav button {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.top-slides .owl-nav button.owl-next {
    left: auto;
    right: 0;
}

.top-slides .owl-nav button i {
    width: 32px;
    height: 76px;
    line-height: 76px;
    text-align: center;
    background:  #fff;
    color: #666666;
    font-size: 30px;
}
/*===END slider area===*/





/*main menu area*/
.main-menu-area {
    background: #0170c1;
}

/*main menu*/
.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /*flex-flow: row wrap;*/
    text-align: center;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 22px 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.main-menu li:hover > a {
    background: #1ea0ff;
}

.main-menu li .icon {
    margin-left: 3px;
    position: relative;
}

.main-menu li .fa-angle-down {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.3;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.main-menu li:hover .fa-angle-down {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.main-menu li .fa-angle-right {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.main-menu li:hover .fa-angle-right {
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

/*dropdown*/
.main-menu li .dropdown {
    list-style: none;
    margin: 0;
    padding:  0;
    background: #000;
    text-align: left;
    width: 230px;
    height: auto;
    position: absolute;
    left: 0;
    top: 80%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 9;
}

.main-menu li:hover .dropdown {
    top: 100%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.main-menu li:last-child:hover .dropdown {
    left: auto;
    right: 0;
}

.main-menu li .dropdown li {
    display: block;
    position: relative;
}

.main-menu li li a {
    display: block;
    text-transform: capitalize;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    padding: 10px 20px;
    border-bottom: 1.5px solid #ddd;
}

.main-menu li li:last-child a {
    border-bottom: none;
}

.main-menu li li span {
    margin-right: 20px;
}

/*dropdown submenu-1*/
.main-menu li li .submenu-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 230px;
    background: #000;
    position: absolute;
    top: 0;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 10;
}

.main-menu li:last-child li .submenu-1 {
    left: auto;
    right: 100%;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.main-menu li li:hover .submenu-1 {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*mega menu*/
.main-menu li.mega-menu {
    position: static;
}

.mega-menu-wrapper {
    position: absolute;
    left: 0;
    top: 130%;
    width: 100%;
    height: auto;
    background: #000;
    padding: 20px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-family: 'Titillium Web', sans-serif;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}

.main-menu li.mega-menu:hover .mega-menu-wrapper {
    top: 100%;
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.mega-menu-wrapper h5 {
    text-align: left;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
}

.mega-menu-wrapper a.mega-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #fff;
    color: #000;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mega-menu-wrapper a.mega-btn:hover {
    background: #1ea0ff;
    color: #fff;
}

.mega-menu-wrapper .mega-menu-img img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}

.mega-menu-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-wrapper ul li a {
    display: block;
    text-transform: normal;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 0 10px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mega-menu-wrapper ul li a:hover {
    border: 1px solid #fff;
    background: none;
}
/*===END main menu area===*/




/*slicknav mini menu  area*/
.slicknav_menu {
    display: none;
    background: transparent;
}

.slicknav_btn {
    background: #0170c1;
    padding: 10px;
    margin: 5px;
    margin-right: 35px;
}

.slicknav_menu .slicknav_menutxt {
    margin-right: 8px;
}

.slicknav_menu .slicknav_icon {
    margin: 0;
    padding: 3px 0 0;
}

ul.slicknav_nav {
    background: #222;
}

.slicknav_nav .slicknav_row, 
.slicknav_nav a {
    margin: 5px 0;
    font-family: 'Arial', sans-serif;
}

a.slicknav_item.slicknav_row span.icon {
    display: none;
}

ul.slicknav_nav li.mega-menu span.icon {
    display: none;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    -webkit-border-radius: 0;
    background: #1e8bc3;
    color: #fff;
}

ul.slicknav_nav li a span {
    margin-right: 10px;
}
/*=====END slicknav mini menu area*/





/*testimonial area*/
.testimonial-area {
    background: #efefef;
    padding: 43px 0 38px;
    text-align: center;
}

.testimonial-area h1 {
    text-transform: uppercase;
    font-weight: 300;
    color: #000;
    margin-bottom: 25px;
}

.testimonial-text {
    margin-top: 30px;
}

.testimonial-text p {
    margin-bottom: 20px;
}

.testimonial-area a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 45px;
    background: #0170c1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.testimonial-area a:hover {
    background: #1ea0ff;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
/*===END testimonial area===*/





/*service1 area*/
.service1-area {
    padding: 55px 0 67px;
}

.service1-area h1 {
    text-transform: uppercase;
    font-weight: 300;
    color: #000;
    text-align: center;
    margin-bottom: 115px;
}

.single-service1 {
    background-color: #efefef;
    padding: 72px 0 30px;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-service1:hover {
    box-shadow: 0 0 10px #999;
}

.single-service1-icon {
    width: 100px;
    height: 100px;
    line-height: 80px;
    text-align: center;
    background: #0170c1;
    border: 8px solid #efefef;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -50px;
}

.single-service1-text-area {
    padding: 0 15px;
    text-align: center;
}

.single-service1-text-area h4 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #3c3c44;
}

.single-service1-text-area p {
    margin: 0;
    padding: 20px 0 30px;
    color: #666;
}

.single-service1-text-area a {
    display: inline-block;
    color: #3c3c44;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-service1-text-area a i {
    padding-left: 4px;
    color: #0170c1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-service1-text-area a:hover {
    color: #fff;
    background: #0170c1;
}

.single-service1-text-area a:hover i {
    color: #fff;
    padding-left: 12px;
}
/*===END service1 area===*/





/*appointment area*/
.appointment-area {
    padding: 105px 0 82px;
    /*background: #ddd url(../img/appointment-pic.jpg) center;
    background-size: cover;*/
    background: #ddd url(../img/appointment-pic-1.jpg) center;
    background-size: cover;
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    position: relative;
}

.appointment-area:before {
    position: absolute;
    top: 0;
    left: -4953%;
    width: 5000%;
    height: 100%;
    content: "";
    background: #0170c1;
    -webkit-transform: skewX(-18deg);
            transform: skewX(-18deg);
}

.appointment-area h1 {
    font-size: 40px;
    margin-bottom: 35px;
}

.appointment-area p.main {
    font-size: 16px;
    margin: 0;
}

.appointment-area p.main span {
    display: block;
    margin-top: 20px;
}

.appointment-area .appointment-contact {
    font-size: 20px;
    margin: 25px 0 50px;
    text-shadow: 0 0 4px #555;
}

.appointment-contact .appointment-icon {
    font-size: 25px;
    margin-right: 20px;
}

.appointment-area a {
    display: inline-block;
    text-align: center;
    font-size: 24px;
    color: #0170c1;
    font-weight: 400;
    background: #fff;
    border: 1px solid transparent;
    padding: 15px 27px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.appointment-area a:hover {
    color: #fff;
    background: #1ea0ff;
    border: 1px solid #fff;
}
/*===END appointment area===*/





/*service2 area*/
.service2-area {
    padding: 55px 0 50px;
    text-align: center;
}

.service2-area h1 {
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 55px;
}

.service2-area .single-service2 {
    box-shadow: 0 0 10px #999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.service2-area .single-service2:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.service2-area .single-service2-image {
    width: 100%;
}

.single-service2-image img {
    width: 100%;
    height: auto;
}

.single-service2-text-area {
    padding: 20px 30px;
}

.single-service2-text-area h5 {
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 600;
    color: #0170c1;
    margin: 0;
}

.single-service2-text-area p.bold {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    margin: 12px 0 8px;
}

.single-service2-text-area p {
    font-size: 14px;
    font-weight: 500;
}
/*===END service2 area===*/





/*blog area*/
.blog-area {
    padding: 62px 0;
    background: #efefef;
    text-align: center;
}

.blog-area h1 {
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 56px;
}

.blog-area .single-blog {
    width: 100%;
    background: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: 1px solid transparent;
}

.blog-area .single-blog:hover {
    outline: 1px solid #0170c1;
}

.single-blog .single-blog-image {
    width: 100%;
}

.single-blog-image img {
    width: 100%;
    height: auto;
}

.single-blog .single-blog-text-area {
    padding: 38px 28px 28px;
}

.single-blog-text-area h5 {
    font-size: 21px;
    font-weight: 600;
    color: #252525;
}

.single-blog-text-area p {
    font-size: 14px;
    font-weight: 400;
    color: #252525;
    margin: 28px 0;
}

.single-blog-text-area a {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #0170c1;
    padding: 10px 45px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-blog-text-area a:hover {
    background: #1ea0ff;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
/*===END blog area===*/





/*bottom slider area*/
.bottom-slider-area {
    width: 100%;
    padding: 100px 0;
    background: #ddd url(../img/bottom-slider-bg-1.jpg) center right;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 1;
}

.bottom-slider-area:after {
    position: absolute;
    top: 0;
    left: -4951%;
    width: 5000%;
    height: 100%;
    content: "";
    background: #0170c1;
    -webkit-transform: skewX(-18deg);
            transform: skewX(-18deg);
    z-index: -1;
}

.bottom-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bottom-slider-area:hover .bottom-slider-overlay {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    visibility: visible; 
}

.bottom-slider-area h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 38px;
}

.bottom-slides {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
}

.bottom-slides .bottom-slider-left {
    width: 50%;
} 

.bottom-slider-left p.main {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 38px;
}

.bottom-slider-left p.main span {
    display: block;
    margin-top: 25px;
}

.bottom-slider-left h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.bottom-slider-left p {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.bottom-slides .bottom-slider-right {
    width: 40%;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bottom-slider-area:hover .bottom-slider-right {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.bottom-slider-right .bottom-slider-image {
    display: inline-block;
    overflow: hidden;
}

.bottom-slider .owl-dots button {
    width: 17px;
    height: 17px;
    background: #fff;
    margin-right: 10px;
    margin-top: 43px;
}

.bottom-slider .owl-dots button.active {
    background: #7cc8ff;
}
/*===END bottom slider area===*/





/*footer top area*/
.footer-top-area {
    padding: 47px 0 37px;
}

.footer-top-submit input {
    font-size: 16px;
    font-weight: 400;
    color: #282b32;
    padding: 7px 15px;
    border: 1px solid #ccc;
    border-radius: 0;
    width: 100%;
}

.footer-top-submit input::-webkit-input-placeholder {
    color: #282b32;
}

.footer-top-submit input::-moz-placeholder {
    color: #282b32;
}

.footer-top-submit input:-ms-input-placeholder {
    color: #282b32;
}

.footer-top-submit input::placeholder {
    color: #282b32;
}

.footer-top-submit button {
    border: none;
    outline: none;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    padding: 7px 35px;
    background: #0170c1;
}

.footer-top-submit input:focus,
.footer-top-submit button:focus {
    outline: none;
}

.footer-top-social-icons .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.social-icons li {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    margin-left: 17px;
}

.social-icons li a {
    display: block;
    color: #fff;
    font-size: 21px;
    line-height: 30px;
    border: 1px solid transparent;
    background: #0170c1;
}

.social-icons li.facebook a {
    background: #3b5a9b;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-icons li.facebook:hover a {
    color: #3b5a9b;
    border: 1px solid #3b5a9b;
    background: none;
}

.social-icons li.twitter a {
    background: #2b97f0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-icons li.twitter:hover a {
    color: #2b97f0;
    border: 1px solid #2b97f0;
    background: none;
}

.social-icons li.google a {
    background: #db2814;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-icons li.google:hover a {
    color: #db2814;
    border: 1px solid #db2814;
    background: none;
}

.social-icons li.linkedin a {
    background: #006599;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-icons li.linkedin:hover a {
    color: #006599;
    border: 1px solid #006599;
    background: none;
}

.social-icons li.pinterest a {
    background: #ca2127;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-icons li.pinterest:hover a {
    color: #ca2127;
    border: 1px solid #ca2127;
    background: none;
}

.social-icons li.instagram a {
    background: #517fa6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-icons li.instagram:hover a {
    color: #517fa6;
    border: 1px solid #517fa6;
    background: none;
}
/*===END footer top area===*/





/*footer area*/
.footer-area {
    padding: 22px 0;
    font-size: 15px;
    font-weight: 400;
}

/*copyright*/
.footer-area .footer-area-left {
    text-align: left;
}

.copyright .my-site-link {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 90%;
}

.copyright .my-site-link:hover {
    color: #1EA433;
}

.footer-area .footer-area-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.footer-area-right ul li {
    display: inline-block;
}

.footer-area-right li a {
    color: #333;
    padding-left: 20px;
    z-index: 2;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-area-right ul li:hover a {
    color: #1ea0ff;
}

.footer-area-right li a:after {
    position: absolute;
    top: 10%;
    left: 9px;
    width: 100%;
    height: 80%;
    border-left: 1.5px solid #333;
    content: "";
}

.footer-area-right ul li:first-child a:after {
    border-left: none;
}
/*===END footer area===*/