/*01. Google Font Import 
======================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&amp;display=swap');
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&amp;display=swap');

/* 02. Common CSS 
============== */

html,
body {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: 0;
    color: #333;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 34px;
}

h6 {
    font-size: 20px;
    font-weight: 500;
    /*  font-family: 'Flaticon';*/
    text-transform: uppercase;
    color: #010080;
    letter-spacing: 3px;
    margin-top: 20px;
}

a {
    text-decoration: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-size: 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

a:hover {
    color: #252531;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    position: relative;
    color: #333;
    word-spacing: 2px;
}

button,
input,
textarea,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
    outline-width: 0 !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

img {
    display: inline-block;
    max-width: 100%;
}

i,
span,
a {
    display: inline-block;
}

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

li {
    display: inline-block;
}

hr {
    border-top: 1px solid #ddd;
}


/*Section Padding CSS*/

.section-padding {
    padding: 70px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-padding {
        padding: 60px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-padding {
        padding: 50px 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-padding {
        padding: 40px 35px;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 40px 20px;
    }
}


/*Margin & Padding */

.pad-top-0 {
    padding-top: 0;
}

.pad-bot-0 {
    padding-bottom: 0;
}

.pad-top-20 {
    padding-top: 20px;
}

.pad-bot-20 {
    padding-bottom: 20px;
}

.pad-top-30 {
    padding-top: 30px;
}

.pad-bot-30 {
    padding-bottom: 30px;
}

.pad-top-40 {
    padding-top: 40px;
}

.pad-bot-40 {
    padding-bottom: 40px;
}

.pad-top-50 {
    padding-top: 50px;
}

.pad-bot-50 {
    padding-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-150 {
    margin-bottom: 150px;
}

.spacer {
    margin-top: 50px;
}


/*Section Title */


/*.section-title {
    position: relative;
}*/

.section-title h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
    margin: 7px 0 20px;
}


/*Button Style */

.main-btn {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    background: #202020;
    color: #FFF!important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 18px;
    padding: 15px 40px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}

.main-btn:hover {
    background: #010080;
    color: #fff!important;
}


/*Form Style CSS */

input,
textarea,
select {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 20px;
}

textarea {
    height: 150px;
    resize: none;
}

input[type="submit"],
button[type="submit"] {
    border: none;
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 20px;
    margin: 20px 0;
    width: auto;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}


/* Bacground Color & Overlay  
============== */

.gray-bg {
    background: #eee;
}

.white-bg {
    background: #fff;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-color: #252531a8;*/
}

.overlay-2 {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #252531e0;
}


/* Pre-Loader CSS 
============== */

#loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #252531;
    z-index: 999999;
}

#loader .loading,
#loader .loading>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#loader .loading {
    display: block;
    font-size: 0;
    color: #010080;
    width: 40px;
    height: 40px;
}

#loader .loading>div {
    display: inline-block;
    float: none;
    border: 3px solid;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-color: transparent;
    border-radius: 100%;
    -webkit-animation: loading .75s linear infinite;
    -moz-animation: loading .75s linear infinite;
    -o-animation: loading .75s linear infinite;
    animation: loading .75s linear infinite;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Scroll Top 
============== */

.go-top {
    background-color: #010080;
    color: #fff;
    width: 40px;
    height: 40px;
    bottom: 2em;
    right: 2em;
    font-size: 18px;
    line-height: 43px;
    text-align: center;
    text-decoration: none;
    display: none;
    position: fixed;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .go-top {
        width: 35px;
        height: 35px;
        bottom: 5em;
        right: 2em;
        font-size: 15px;
        line-height: 33px;
    }
}

@media (max-width: 575px) {
    .go-top i:before {
        font-size: 14px;
    }
    .go-top {
        right: 1em;
        bottom: 6em;
        z-index: 1;
    }
}

.go-top:hover {
    background-color: #fff;
    color: #252531;
}


/* Header Area 
============== */

.header-area .header-btn.main-btn {
    margin-top: 17px;
    padding: 14px 25px;
}

.header-area.absolute-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 10px 0;
    -webkit-transition: .3s;
    transition: .3s;
}

#style-2.header-area.absolute-header .logo a {
    color: #fff;
}

.top-header {
    background: #1b1b21;
}

.top-social-links a {
    display: inline-block;
    font-size: 14px;
    color: #2f2c2c;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 50px;
}

.top-contact-info {
    line-height: 50px;
}

.top-contact-info span {
    color: #fff;
    padding-left: 50px;
}

.top-contact-info span i {
    padding-right: 10px;
    font-size: 24px;
}

.top-social-links span {
    color: #FFF;
}

.top-social-links a {
    padding-left: 20px;
}


/* Breadcrumb Section
============== */

.bread-bg {
    background-image: url(../img/bread-bg.jpg);
}
.bread-bg1 {
    background-image: url(../img/bread-bg1.jpg);
}
.bread-bg2 {
    background-image: url(../img/bread-bg2.jpg);
}
.bread-bg3 {
    background-image: url(../img/bread-bg3.jpg);
}
.bread-bg4 {
    background-image: url(../img/bread-bg4.jpg);
}
.bread-bg5 {
    background-image: url(../img/bread-bg5.jpg);
}
.bread-bg6 {
    background-image: url(../img/bread-bg6.jpg);
}
.bread-bg7 {
    background-image: url(../img/bread-bg7.jpg);
}
.bread-bg8 {
    background-image: url(../img/bread-bg8.jpg);
}

.breadcroumb-area {
    height: 450px;
    background-size: cover;
    background-position: center bottom;
    background-color: #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.breadcroumb-area:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #252531;
    opacity: .5;
    z-index: -1;
}

.breadcroumb-area .breadcroumb-title h1 {
    font-size: 70px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 10px;
}

.breadcroumb-area h5 a {
    font-size: 16px;
    color: #fff;
}

.breadcroumb-area h5 {
    color: #c8c8ca;
    font-size: 16px;
    margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcroumb-area .breadcroumb-title h1 {
        font-size: 55px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .breadcroumb-area .breadcroumb-title h1 {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .breadcroumb-area .breadcroumb-title h1 {
        font-size: 40px;
    }
}


/* Sticky CSS 
============== */

.header-area .is-sticky .sticky-area {
    background: #fff;
    z-index: 999 !important;
    -webkit-animation: slideInDown .6s forwards;
    animation: slideInDown .6s forwards;
    margin-top: 0;
}

.header-area .is-sticky .navigation {
    margin-top: 0;
}

.header-area .is-sticky .navigation {
    height: 80px;
}

.header-area .is-sticky .main-menu .navbar-nav .nav-link {
    padding: 30px 0;
}

.header-area .is-sticky .header-btn.main-btn {
    margin-top: 18px;
}

.header-area .is-sticky .main-menu li:hover .sub-menu {
    top: 80px;
}

#style-2.header-area.absolute-header .is-sticky .navigation {
    background: #252531;
}

#style-2.header-area.absolute-header .is-sticky .sticky-area {
    box-shadow: 0 3px 16px -2px #56635c;
}

#style-2.header-area.absolute-header .is-sticky .logo a {
    color: #fff;
}


/* Main Menu 
============== */

.navbar-brand img {
    width: 75%;
    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -ms-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
}

.navbar-brand.js-scrolling img {
    width: 62px;
    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -ms-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
    margin-top: 78px;
}

.header-area .navigation {
    background: #fff;
    height: 80px;
    position: relative;
    z-index: 9;
}

.logo {
    position: absolute;
    top: -78px;
}

.main-menu .navbar {
    padding: 0;
    float: right;
}

.main-menu li.nav-item {
    position: relative;
    margin-right: 20px;
    margin-left: 20px;
}

.offcanvas_main_menu li a:active {
    color: #010080!important;
}

.main-menu li.nav-item:last-child {
    margin-right: 0;
}

.main-menu .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: block;
    padding: 30px 0;
}

.main-menu .navbar-nav .nav-link.active {
    color: #010080;
}

#style-2.header-area.absolute-header .navigation {
    background: transparent;
}

#style-2.header-area.absolute-header .main-menu .navbar-nav .nav-link {
    color: #fff;
}

#style-2.header-area.absolute-header .main-menu .navbar-nav .nav-link:hover {
    color: #010080;
}

#style-2.header-area.absolute-header .main-menu .navbar-nav .nav-link.active {
    color: #010080;
}

.auto-container {
    position: static;
    max-width: 1170px;
    padding: 0px 15px;
    margin: 0 auto;
}

#style-3.header-area .navigation {
    background: #252531;
}

#style-3.header-area .logo a {
    color: #fff;
}

#style-3.header-area .main-menu .navbar-nav .nav-link {
    color: #fff;
}

#style-3.header-area .main-menu .navbar-nav .nav-link.active {
    color: #010080;
}


/*Dropdown Menu */

.sub-menu {
    position: absolute;
    left: 0;
    top: 120px;
    width: 220px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 99;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.sub-menu::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: #010080;
    visibility: hidden;
    opacity: 0;
}

.main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 80px;
}

.main-menu li:hover .sub-menu::after {
    opacity: 1;
    visibility: visible;
}

.main-menu ul.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .sub-menu li {
    display: block;
    border-bottom: 1px solid #eee;
}

.main-menu .sub-menu li:last-child {
    border-bottom: none;
}

.main-menu .sub-menu li a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    padding: 12px;
    color: #333;
    -webkit-transition: .3s;
    transition: .3s;
}

.main-menu .sub-menu li:hover>a {
    background: #010080;
    color: #fff;
}

.dropdown-toggle::after {
    display: none !important;
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: none;
}


/*Header Right Content */

.header-area .main-btn {
    margin-top: 14px;
}


/* Slider & Hero Area 
==================*/

.single-slide-item {
    background-image: url(../img/slider/slide-11.jpg);
}

.hero-area-bg-2 {
    background-image: url(../img/slider/slide-21.jpg);
}

.hero-area-bg-3 {
    background-image: url(../img/slider/slide-3.jpg);
}

.hero-area-bg-4 {
    background-image: url(../img/slider/slide-4.jpg);
}

.hero-area-bg-5 {
    background-image: url(../img/slider/slide-5.jpg);
}

.hero-area-bg-6 {
    background-image: url(../img/slider/slide-6.jpg);
}
.hero-area-bg-7 {
    background-image: url(../img/slider/slide-111.jpg);
}

.homepage-slides h6 {
    color: #FFF;
}

.single-slide-item {
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    color: #fff;
    width: 100%;
    height: 700px;
    display: table;
    position: relative;
    z-index: 1;
}

.single-slide-item h1 {
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: 2px;
    margin: 30px 0;
}

.single-slide-item p {
    color: #ccc7c7;
    font-size: 18px;
    line-height: 30px;
}

.homepage-slides .owl-nav button.owl-prev,
.homepage-slides .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border: 2px solid;
    font-size: 20px;
    font-weight: 100;
    line-height: 16px;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -25px;
    color: #010080;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.homepage-slides .owl-nav button.owl-next {
    left: auto;
    right: 15px;
}

.homepage-slides:hover .owl-nav button.owl-prev,
.homepage-slides:hover .owl-nav button.owl-next {
    visibility: visible;
    opacity: .3;
}

.homepage-slides .owl-nav button.owl-prev:hover,
.homepage-slides .owl-nav button.owl-next:hover {
    background: #010080;
    color: #fff;
    border-color: #010080;
    opacity: 1;
}

.hero-area-content {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.hero-area-content .main-btn {
    margin: 25px 0;
}

#home-2 .hero-area-content h6 {
    margin-top: 100px;
}

#home-3 .single-slide-item h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 100px;
    font-weight: 500;
    line-height: 105px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-area-content .shape-one {
    position: absolute;
    width: 110px;
    height: 110px;
    left: 210px;
    bottom: 40px;
}

.hero-area-content .shape-one:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: #fff;
}

.hero-area-content .shape-one:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background-color: #fff;
}

.hero-area-content .shape-two {
    position: absolute;
    width: 110px;
    height: 110px;
    right: 210px;
    bottom: 40px;
}

.hero-area-content .shape-two:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: #fff;
}

.hero-area-content .shape-two:after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background-color: #fff;
}


/* top-menu
============== */

.top-menu {
    width: 100%;
    overflow: auto;
    background: #f1f1f1;
}

.info-outer {
    position: relative;
    float: right;
}

.info-outer .info-box:first-child {
    margin-left: 0;
}

.info-outer .info-box {
    position: relative;
    float: left;
    margin-left: 70px;
    padding-left: 45px;
}

.info-outer .info-box .icon {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 55px;
    font-size: 38px;
    color: #010080;
    margin-top: 11px;
}

.info-outer .info-box::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 9px;
    height: 56px;
    border-left: 1px solid #e0e0e0;
}

.text-head {
    font-size: 16px;
    line-height: 2.1em;
    font-weight: 400;
    color: #555555;
    margin: 0;
    margin-top: 8px;
}

.info-outer .info-box strong {
    font-weight: 700;
    line-height: 1.2em;
    font-size: 15px;
    color: #222222;
}

.info-outer .info-box .info {
    position: relative;
    display: block;
    line-height: 1.4em;
    font-size: 16px;
    color: #222222;
}

.info-outer .info-box {
    position: relative;
    float: left;
    margin-left: 60px;
    padding-left: 55px;
    padding-bottom: 8px;
}


/* Info Section
============== */

.info-area {
    position: relative;
    margin-top: -100px;
    z-index: 9;
}

.info-bg {
    background-image: url(../img/info-bg.jpg);
}

.info-bg.bg-cover {
    height: 305px;
    background-position: top center;
}

.info-content {
    padding: 50px;
    border-left: 10px solid #010080;
    height: 100%;
}

.info-content h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    margin-bottom: 20px;
}

.info-content a {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #010080;
    margin: 15px 0;
}

.info-inner {
    background: #fff;
    box-shadow: 0 1px 4px -2px #6e7b71;
}

.info-founder {
    background: #010080;
    height: 100%;
    text-align: center;
    padding: 50px;
}

.info-founder i:before {
    font-size: 60px;
    color: #FFF;
}

.info-founder p.highlight {
    font-family: 'Roboto', sans-serif;
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    margin: 50px 0 30px;
}

.info-founder p {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFF;
}

#info-2 .info-content-area {
    padding-left: 30px;
}

.info-content-area img {
    margin-bottom: 30px;
}

.info-content-area ul li {
    display: list-item;
    margin-bottom: 8px;
}


/* Service Section
============== */

.service-detail-section .sec-title span {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #010080;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.service-detail .content-box p {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #333;
    font-weight: 300;
    margin-bottom: 28px
}

.service-detail-section .sec-title {
    margin-bottom: 35px;
}

.service-detail .content-box h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-detail .list-style-one {
    margin-bottom: 30px;
}

.single-service-area {
    background: #fff;
    position: relative;
    z-index: 1;
    border-bottom: 4px solid #fff;
    box-shadow: 0 3px 9px -2px #d0cece;
    margin-top: 50px;
    transition: .3s;
    text-align: center;
    overflow: hidden;
}

.service-icon i:before {
    font-size: 55px;
    color: #010080;
}

.single-service-area h5 {
    margin: 30px 0 20px;
}

single-service-area.active {
    border-bottom: 4px solid #010080;
}

single-service-area.active .num {
    color: #F4E858;
}

.single-service-area:hover {
    border-bottom: 4px solid #010080;
}


/*.service-2:before {
	background-image: url(../img/service/1.jpg);
}

.service-3:before {
	background-image: url(../img/service/3.jpg);
}

.service-4:before {
	background-image: url(../img/service/4.jpg);
}

.service-5:before {
	background-image: url(../img/service/5.jpg);
}

.service-6:before {
	background-image: url(../img/service/6.jpg);
}*/

.single-service-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out;
    background-size: cover;
    background-position: center;
}

.single-service-area:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #252531;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.single-service-area:hover::before {
    visibility: visible;
    opacity: 1;
}

.single-service-area:hover::after {
    visibility: visible;
    opacity: .8;
}

.single-service-area:hover h5 {
    color: #fff;
}

.single-service-area:hover p {
    color: #fff;
}


/*Service # 02*/

#service-2 .single-service-area img {
    width: 50%!important;
    float: left;
}

#service-2 .single-service-area {
    box-shadow: none;
    border: 1px solid #eee;
    background: #eee;
}

/*.service-slider .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #b1adad;
    margin-right: 10px;
    margin-top: 20px;
    border-radius: 50%
}

.service-slider .owl-dots button.owl-dot.active span {
    width: 10px;
    height: 10px;
    background: #010080;
    border-radius: 50%
}

.service-slider .owl-dots {
    text-align: center;
    margin-top: 50px;
}*/


/*Service # 03*/

.single-service {
    position: relative;
    margin: 50px 0 30px;
}

.single-service img {
    height: 250px;
    width: 100%;
}

.single-service .service-content {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.10);
}

.service-content h3 {
    font-size: 20px;
    line-height: 22px;
    margin: 10px 0;
    transform: translateY(0);
    transition: all .3s ease-in-out;
    position: relative;
    padding-left: 15px;
}

.service-content h3:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 4px;
    height: 30px;
    background: #010080;
    margin-top: -15px;
}

.service-content a.read-more {
    position: absolute;
    bottom: 40px;
    left: 20px;
    opacity: 0;
    transform: translateY(50%);
    transition: all .3s ease-in-out;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #010080;
    padding-left: 15px;
}

.single-service:hover .service-content h3 {
    transform: translateY(-10px);
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.single-service:hover .service-content a.read-more {
    transform: translateY(30px);
    opacity: 1;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}


/* About Section
============== */

.about-area .section-title h2:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 3px solid #010080;
}

.about-area .section-title h2 {
    padding-left: 25px;
}

.about-area p {
    color: #333;
}

.about-bg {
    position: relative;
    z-index: 1;
}

#about-1 .about-bg:after {
    position: absolute;
    content: '';
    left: -65px;
    top: 80px;
    right: 65px;
    bottom: 80px;
    border: 10px solid #eee;
    z-index: -1;
}

#about-2 .about-bg:after {
    position: absolute;
    content: "";
    width: 80%;
    height: 100%;
    top: 20px;
    left: -20px;
    background: #010080;
    z-index: -1;
}

.founded img {
    width: 140px;
    height: auto;
}

.founded p {
    display: flex;
    align-items: center;
    height: 60px;
    font-size: 18px;
    font-weight: 500;
    color: #010080;
}

p.highlight i {
       font-size: 30px;
    color: #010080;
    padding-right: 20px;
}
p.highlight{
	font-size: 20px;
}

/*About # 02*/

.founded {
    border-top: 4px solid #eee;
    border-bottom: 4px solid #eee;
    padding: 15px;
}

.years {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.years span {
    font-family: 'Roboto', sans-serif;
    font-size: 140px;
    font-weight: 600;
    line-height: 112px;
    background-color: #010080;
    /*	background-image: url(../img/trans-bg.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    padding-right: 20px;
}

.text {
    font-size: 20px;
    line-height: 27px;
    color: #010080;
    border-left: 5px solid;
    padding-left: 25px;
    margin-top: 20px;
}


/*About # 03*/

#about-3 .about-bg:before {
    position: absolute;
    content: '';
    left: 80px;
    top: -35px;
    right: 80px;
    bottom: -35px;
    border: 10px solid #eee;
    z-index: -1;
}


/* Portfolio Section
============== */

ul.port-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    ul.port-menu {
        float: left;
    }
}

@media (max-width: 575px) {
    ul.port-menu {
        float: left;
    }
}

ul.port-menu.recent {
    float: none;
}

ul.port-menu li {
    display: inline-block;
    padding: 20px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    ul.port-menu li {
        padding: 10px;
    }
}

@media (max-width: 575px) {
    ul.port-menu li {
        padding: 10px;
    }
}

.port-menu li.active {
    color: #010080;
}

.port-menu li:hover {
    color: #010080;
}


/*.single-portfolio-item {
	background-image: url(../img/portfolio/port-bg-1.jpg);
}

.port-bg-2 {
	background-image: url(../img/portfolio/port-bg-2.jpg);
}

.port-bg-3 {
	background-image: url(../img/portfolio/port-bg-3.jpg);
}

.port-bg-4 {
	background-image: url(../img/portfolio/port-bg-4.jpg);
}

.port-bg-5 {
	background-image: url(../img/portfolio/port-bg-5.jpg);
}

.port-bg-6 {
	background-image: url(../img/portfolio/port-bg-6.png);
}

.port-bg-7 {
	background-image: url(../img/portfolio/port-bg-7.png);
}

.port-bg-8 {
	background-image: url(../img/portfolio/port-bg-8.jpg);
}*/

.portfolio-list {
    overflow: hidden;
    margin-left: -1%;
    margin-top: 20px;
}

.single-portfolio-item {
    float: left;
    width: 49%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #010080;
    position: relative;
    margin-left: 1%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-portfolio-item {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .single-portfolio-item {
        width: 100%;
    }
}

.single-portfolio-item.large {
    height: 610px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-portfolio-item.large {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .single-portfolio-item.large {
        height: 300px;
    }
}

.single-portfolio-item.wide {
    width: 65.55%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-portfolio-item.wide {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .single-portfolio-item.wide {
        width: 100%;
    }
}

.portfolio-list.recent {
    margin-top: 0;
}

ul.port-menu.recent {
    list-style: none;
    padding: 0;
    bottom: 0;
    text-align: center;
    position: inherit;
}

.portfolio-single-section h3 {
    margin: 30px 0;
}

.portfolio-content {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40%;
    background-color: #fff;
    padding: 20px 10px;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .5s linear;
    transition: -webkit-transform .5s linear;
    -o-transition: transform .5s linear;
    transition: transform .5s linear;
    transition: transform .5s linear, -webkit-transform .5s linear;
    -webkit-transition: -webkit-transform .45s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-transform .45s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1), -webkit-transform .45s cubic-bezier(.4, 0, .2, 1);
}

.single-portfolio-item:hover .portfolio-content {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s;
}

.portfolio-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

.portfolio-category {
    color: #010080;
    font-size: 15px;
}

.single-portfolio-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform .6s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-transform .6s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    transition: transform .6s cubic-bezier(.4, 0, .2, 1), -webkit-transform .6s cubic-bezier(.4, 0, .2, 1);
}

.single-portfolio-item:hover {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.single-portfolio-item:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #252531;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.single-portfolio-item:hover::after {
    opacity: 1;
    visibility: visible;
    opacity: .5;
}


/*Portfolio Section # 02*/

#portf-2 .single-portfolio-item img {
    float: left;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-size: cover;
    background-position: center;
}

#portf-2 .single-portfolio-item {
    float: left;
    width: 23%;
    height: 300px;
    background-color: #010080;
    position: relative;
    margin-left: 1%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

#portf-2 .portfolio-content {
    width: 80%;
}


/* Portfolio # 03 */

.project-bg {
    background-image: url(../img/project/project-1-1.jpg);
}

.project-bg-2 {
    background-image: url(../img/project/project-1-2.jpg);
}

.project-bg-3 {
    background-image: url(../img/project/project-1-3.jpg);
}

.project-bg-4 {
    background-image: url(../img/project/project-1-4.jpg);
}

.project-bg-5 {
    background-image: url(../img/project/project-1-5.html);
}

.project-bg-6 {
    background-image: url(../img/project/project-1-6.html);
}

.single-project-item.bg-cover {
    height: 450px;
}

.single-project-item {
    position: relative;
    z-index: 1;
    border-bottom: 4px solid #333;
}

.single-project-item:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #222;
    opacity: .3;
    z-index: -1;
    content: "";
}

.single-project-item:hover {
    border-bottom: 4px solid #010080;
}

.project-inner .hover-info {
    position: absolute;
    left: 0;
    bottom: 20px;
    transform: translateY(50px);
    width: 100%;
    z-index: 2;
    padding: 35px 40px 35px 38px;
    max-width: 500px;
    transition: all ease 0.3s;
    transition-delay: 0.07s;
}

.single-project-item:hover .hover-info {
    opacity: 1;
    transform: translateY(0);
}

.project-inner:after {
    content: " ";
    width: 100%;
    height: 100%;
    background-color: #252531;
    display: block;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0px;
    transition: all ease 0.3s;
}

.single-project-item:hover .project-inner:after {
    opacity: .6;
}

.hover-info h4 {
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
    transform: translateY(0px);
    transition: .3s;
}

.hover-info h4 span {
    display: block;
    color: #010080;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 5px 0;
    opacity: 0;
    transform: translateY(-200px);
}

.hover-info a {
    color: #010080;
    font-size: 16px;
}

.project-inner .project-icon {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: 2;
    transition: all ease 0.3s;
    font-size: 30px;
    cursor: pointer;
    background: #010080;
    color: #fff;
    padding: 15px;
    transform: translate3d(0, -100%, 0);
    transition: .3s;
}

.single-project-item:hover .project-icon {
    opacity: 1;
    transform: translate(0, 0);
}

.single-project-item:hover .hover-info h4 {
    color: #FFF;
    transform: translateY(20px);
}

.single-project-item:hover .hover-info h4 span {
    opacity: 1;
    transform: translateY(0);
}

.project-area .section-title {
    margin-bottom: 50px;
}

.project-slider .owl-nav button.owl-prev,
.project-slider .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border: 2px solid;
    font-size: 20px;
    font-weight: 100;
    line-height: 16px;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -25px;
    color: #010080;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.project-slider .owl-nav button.owl-next {
    left: auto;
    right: 15px;
}

.project-slider .owl-nav button.owl-prev:hover,
.project-slider .owl-nav button.owl-next:hover {
    background: #010080;
    color: #fff;
    border-color: #010080;
}


/* Achievement Section 
============== */

.achievement-area {
    background-image: url(../img/achievement.jpg);
    height: auto;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.achievement-area .overlay {
    background-color: #252531e6;
}

.single-counter-box {
    text-align: center;
    margin-top: 40px;
    border: 7px solid #eee;
    padding: 30px 0;
}

.achievement-area .service-icon i:before {
    font-size: 40px;
    color: #FFF;
}

.service-icon img {
    width: 100%;
}

.single-service-area p {
    margin-right: 5px;
    margin-left: 5px;
}

.single-counter-box .counter-number span {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    letter-spacing: 1px;
    color: #fff;
    margin: 40px 0 20px;
}

.single-counter-box p.counter-number {
    font-size: 40px;
    color: #fff;
}

.single-counter-box h6 {
    color: #fff;
    letter-spacing: 0;
}

#style-2.achievement-area {
    background-image: none;
    height: 250px;
}

#style-2 .single-counter-box h6 {
    color: #333;
}

#style-2 .single-counter-box .counter-number span {
    font-family: 'Roboto', sans-serif;
    font-size: 70px;
    letter-spacing: 1px;
    color: #010080;
    margin: 35px 0 15px;
}

#style-2 .single-counter-box p.counter-number {
    font-size: 60px;
    color: #010080;
}


/* Testimonial Section 
============== */

.single-team-item img {
    max-width: 70px;
    height: auto;
    float: left;
}

.author-desc {
    margin-top: 30px;
}

.author-desc h5 {
    font-size: 18px;
    padding-left: 80px;
}

.author-desc span {
    font-size: 90%;
    color: #010080;
    padding-left: 10px;
}

.single-team-item {
    background: #fff;
    padding: 50px 50px 70px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    box-shadow: 0 3px 9px -2px #d0cece;
    border-bottom: 3px solid #fff;
    transition: .3s;
    border-top: 15px solid #eee;
}

.single-team-item:hover {
    border-bottom: 3px solid #010080;
}

.testimonial-icon i {
    font-size: 25px;
    background: #eee;
    padding: 10px;
    position: absolute;
    top: -30px;
    color: #010080;
    z-index: 9;
}

.testimonial-area .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    margin-right: 10px;
    margin-top: 20px;
    border-radius: 50%
}

.testimonial-area .owl-dots button.owl-dot.active span {
    width: 10px;
    height: 10px;
    background: #010080;
    border-radius: 50%
}

.testimonial-area .team-carousel .owl-dots {
    text-align: center;
    margin-top: 50px;
}


/*Testimonial Section # 02*/

.testimonial-area-2 {
    background-image: url(../img/testimonial/testimonial-slider-bg.jpg);
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    z-index: 1;
}

.testimonial-area-2 .overlay {
    background-color: #252531de;
}

.testimonial-avatar img {
    max-width: 100px;
    border-radius: 50%;
    margin: 0 auto;
}

.single-testimonial-item {
    text-align: center;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 25px;
    color: #f5f3f3;
    margin: 20px 0;
}

.testimonial-content h4 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 30px 0;
}

.testimonial-content h4 span {
    display: block;
    font-size: 90%;
    margin-top: 7px;
    opacity: .5;
}

.testimonial-carousel .owl-dots button {
    width: 15px;
    height: 15px;
    background: #999;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
}

.testimonial-carousel .owl-dots button.active {
    background: #010080;
}

.testimonial-carousel .owl-dots {
    display: block;
    text-align: center;
    margin: 30px;
}

.testimonial-area-2 .testimonial-icon-before i {
    font-size: 30px;
    background: none;
    padding: 10px;
    position: absolute;
    top: 72px;
    color: #fff;
    z-index: 9;
    left: -10px;
    color: #010080;
}

.testimonial-area-2 .testimonial-icon-after i {
    font-size: 30px;
    background: none;
    padding: 10px;
    position: absolute;
    bottom: 72px;
    color: #fff;
    z-index: 9;
    right: -10px;
    color: #010080;
}


/* Team Section 
============== */

.team-member-bg {
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 300px;
}

.team-member-bg {
    background-image: url(../img/team/1.jpg);
}

.team-bg-2 {
    background-image: url(../img/team/2.jpg);
}

.team-bg-3 {
    background-image: url(../img/team/3.jpg);
}

.team-bg-4 {
    background-image: url(../img/team/4.jpg);
}

.team-bg-5 {
    background-image: url(../img/team/5.jpg);
}

.team-bg-6 {
    background-image: url(../img/team/6.jpg);
}

.team-bg-7 {
    background-image: url(../img/team/7.jpg);
}

.team-bg-8 {
    background-image: url(../img/team/8.jpg);
}

.single-team-member {
    position: relative;
    margin-top: 25px;
}

.single-team-member .team-content {
    position: absolute;
    bottom: -75px;
    background: #fff;
    text-align: center;
    width: 100%;
}

.team-content .team-title {
    font-weight: 500;
}

.team-content .team-title a {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #191919;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    margin: 16px 0 5px;
}

.team-content .team-subtitle {
    font-size: 14px;
    color: #7c7c7c;
    margin-bottom: 10px;
}

.team-content .team-subtitle p {
    margin: 0;
    color: #333E38;
}

.team-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social ul li {
    display: inline-block;
}

.team-social ul li a {
    font-size: 18px;
    padding: 10px;
    transition: all .3s ease-out;
}

.team-social {
    position: absolute;
    top: 0;
    left: -35px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-2px);
    transition: all .4s;
}

.team-social ul li {
    display: block;
}

.team-social i {
    color: #010080;
}

.single-team-member:hover .team-social {
    visibility: visible;
    opacity: 1;
    left: 0;
    transform: translateY(0);
}


/* Blog Section 
============== */

.single-blog {
    position: relative;
}

.single-blog img {
    height: 250px;
    width: 100%;
}

#blog-2 .single-blog img {
    height: 350px;
    width: 100%;
}

.single-blog .blog-content {
    position: relative;
    top: -10px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    transition: all .3s ease-out;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.10);
    width: 89%;
}

.blog-content span a {
    text-transform: uppercase;
    font-size: 14px;
    opacity: .5;
    letter-spacing: 1px;
}

.blog-content h3 a {
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0;
}

.blog-content .blog-date p {
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
}

a.btn-pos {
    float: right;
    position: relative;
    top: -90px;
}

.blog-content a.read-more {
    /*position: absolute;
	bottom: 40px;
	left: 20px;
	opacity: 0;
	transform: translateY(50%);
	transition: all .4s ease-in-out;*/
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #010080;
}


/*.single-blog:hover .blog-content span a {
	opacity: 0;
	transform: translateY(-200%);
}

.single-blog:hover .blog-content h3 a {
	transform: translateY(-22px);
}

.single-blog:hover .blog-date p {
	opacity: 0;
}

.single-blog:hover .blog-content a.read-more {
	transform: translateY(0);
	opacity: 1;
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}*/


/* Contact Section 
============== */

.contact-content {
    margin-top: 50px;
}

.contact-section .contact-info i {
    font-size: 30px;
    margin-left: 0;
    background: #010080;
    color: #fff;
    padding: 10px;
    border-radius: 0;
    float: left;
}

.contact-info span {
    width: 100%;
}

.subscribe-form iframe {
    width: 100%;
    height: 250px;
}

.contact-info i {
    color: #fff;
    font-size: 40px;
    float: left;
    width: 50px;
}

.footer-sec .contact-info i {
    color: #fff;
    font-size: 40px;
    float: left;
    width: 18%;
}

.contact-inner {
    margin-bottom: 30px;
}

.contact-inner h6 {
    color: #333;
    font-weight: 400;
    padding-left: 100px;
}

.contact-inner p {
    padding-left: 100px;
}

.contact-section button.main-btn {
    border: none;
}

.contact-section button.main-btn:hover {
  
    color: #017D3F;
}

.map iframe {
    width: 100%;
    height: 300px;
}


/* Footer Area
============== */

.fb-page iframe {
    height: 250px!important;
    width: 250px!important;
}

.fb-page span {
    height: 250px!important;
    width: 250px!important;
}

.footer-area {
    background: #27282c;
    color: #fff;
}

.footer-area h6 {
    color: #FFF;
    margin: 20px 0;
    padding-bottom: 20px;
}

.footer-area h6:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #404043;
    content: "";
    z-index: 1;
}

.footer-area h6:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #fff;
    content: "";
    z-index: 1;
}

.footer-area p {
    color: #c8c8ca;
}

.footer-sec .contact-info p {
    margin-bottom: 10px;
    float: right;
    width: 100%;
    line-height: 40px;
}

.footer-sec {
    margin: 25px 0;
    overflow: auto;
}

.footer-area ul li a {
    display: block;
    color: #c8c8ca;
    padding: 7px 0;
}

.footer-area ul li a:hover {
    color: #010080;
}

.subscribe-form button {
    padding: 15px 40px;
    font-size: 16px;
    line-height: 13px;
    background: #010080;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border: 0;
    cursor: pointer;
}

.footer-area .subscribe-form button:hover {
    background: #fff;
    color: #010080;
}

.subscribe-form {
    position: relative;
}

.subscribe-form input {
    border: 0;
    background: #fff;
}

.subscribe-form input::placeholder {
    color: #333;
    font-size: 14px;
}

.footer-up {
    padding: 60px 0;
    padding-top: 60px;
}

.footer-up .social-area i {
    color: #fff;
    font-size: 21px;
    margin-right: 10px;
    margin-top: 20px;
    border: 2px solid #eee;
    padding: 10px;
}

.footer-up .social-area i:hover {
    background: #eee;
    color: #202020;
}

.tw-footer-info-box::before {
    position: absolute;
    right: -53px;
    top: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 53px solid transparent;
    border-top: 357px solid #202020;
}

.tw-footer-info-box::after {
    position: absolute;
    top: 0px;
    width: 118%;
    content: "";
    height: 100%;
    left: -118%;
    background: #202020;
}

.tw-footer-info-box {
    background: #202020;
    padding: 80px 0;
    margin-right: 80px;
}

.footer-bottom {
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 20px 0;
    background: #2f3033;
}

.footer-bottom p {
    margin: 0;
        color: #FFF;
}

p.privacy {
    text-align: right;
}

.privacy a {
    color: #9A9A9A;
}

.privacy a:hover {
    color: #fff;
}


/* Process Section
============== */

.featured-process-area {
    background-image: url(../img/process/process-bg.jpg);
}

.process-grids {
    background-image: url(../img/process/featured-process-bg.jpg);
    position: relative;
    z-index: 1;
}

.featured-process-area .process-grids .grid {
    width: 25%;
    float: left;
    border-right: 1px solid #25253154;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

.featured-process-area .process-grids .inner {
    padding: 80px 60px 60px;
    position: relative;
    top: 60px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.featured-process-area .process-grids .count {
    font-size: 50px;
    font-weight: 600;
    color: #010080;
}

.featured-process-area .process-grids h3 {
    font-size: 22px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.featured-process-area .process-grids p {
    color: #cecccc;
    margin-bottom: 0;
    padding-bottom: 2em;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.featured-process-area .process-grids .inner>a {
    position: relative;
    top: 100px;
}

.featured-process-area .process-grids .grid:hover .inner>a {
    top: 0;
}

.featured-process-area .process-grids .grid:hover .inner {
    background-color: #242430e0;
    top: 0;
}

.content-area {
    margin-top: 20px;
}


/*Process Section # 02 */

.process-item-wrap {
    margin-top: 50px;
}

.single-process-item {
    text-align: center;
    padding-top: 20px;
    border: 1px solid #dbdbdb;
    margin-bottom: 40px;
}

.process-num {
    margin: auto;
    background: #010080;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 7px;
    position: absolute;
    top: -20px;
    left: 43%;
}

.process-num p {
    font-size: 20px;
    color: #fff;
}

.process-icon {
    border: 10px solid #f6f6f6;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 35px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: .3s;
}

.single-process-item h5 {
    font-size: 20px;
    margin: 25px 25px;
    line-height: 27px;
}

.single-process-item:hover .process-icon {
    border-color: #ddd;
}


/* Choose Us Section 
============== */

.choose-us-area {
    background-image: url(../img/choose-us-bg.jpg);
    background-size: cover;
    height: 500px;
    position: relative;
    z-index: 1;
}

.choose-us-wrapper {
    background: #fff;
    box-shadow: 0 3px 9px -2px #d0cece;
    margin-top: 50px;
    position: relative;
}

.choose-us-inner {
    text-align: center;
    padding: 50px 30px;
    border-right: 1px solid #eee;
}

.choose-us-icon i {
    font-size: 40px;
    color: #010080;
    padding: 5px;
    border: 2px solid #010080;
    border-radius: 50%;
}

.choose-us-inner h5 {
    margin: 40px 0 20px;
}

.choose-us-inner:nth-last-child(4) {
    border-right: none;
}


/* Price Section 
============== */

.single-price-item {
    background: #fff;
    text-align: center;
    padding: 30px 50px;
    margin-top: 50px;
    border: 5px solid #eee;
    transition: .3s;
}

.single-price-item h5 {
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    margin: 20px 0;
}

.single-price-item h5:before {
    position: absolute;
    content: "";
    width: 54px;
    height: 2px;
    bottom: -10px;
    left: 0;
    right: 0;
    background: #010080;
    margin: 0 auto;
}

.single-price-item p b {
    font-size: 24px;
    color: #010080;
    margin-right: 10px;
}

.single-price-item p {
    margin: 40px 0px;
}

.price-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-list ul li {
    display: block;
    margin: 30px 0;
    color: gray;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
    transition: .3s;
}

.single-price-item .main-btn {
    display: inline-block;
    margin: 30px 0 0;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-price-item.active {
    border: 5px solid #010080;
}


/* Intro Section 
============== */

.intro-wrapper {
    background: #fff;
    box-shadow: 0 3px 9px -2px #d0cece;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.intro-inner {
    text-align: center;
    padding: 50px 30px;
    border-right: 1px solid #eee;
}

.intro-inner h5 {
    margin: 40px 0 20px;
}

.intro-inner:nth-last-child(4) {
    border-right: none;
}


/*Client Section */

.item-clients-img {
    border: 1px solid #eee;
    padding: 10px;
}

#clients-slider {
    margin-top: 50px;
}

.item-clients-img img:hover {
    opacity: .7;
}


/* Single Portfolio 
============== */

.project-single-section h3 {
    font-size: 35px;
    margin: 30px 0;
}

.project-info {
    border: 1px solid #ddd;
    padding: 30px;
}

.project-info h5 {
    font-size: 30px;
    margin-bottom: 40px;
}

.project-info p {
    margin: 25px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.project-info p b {
    color: #222;
}

.project-info span {
    float: right;
}

.project-info .main-btn {
    padding: 12px 18px;
    font-size: 15px;
    margin: 20px 0;
    width: 60%;
    margin-left: 20%;
}

.project-overview h5 {
    margin: 30px 0;
}

.project-overview p:last-child {
    margin-bottom: 40px;
}


/* Single Blog 
============== */

.blog-search input {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0;
    padding-bottom: 10px;
}

.blog-search button {
    background: none;
    margin: 0;
    padding: 0;
}

.blog-search button i {
    color: #191919;
    font-size: 20px;
    opacity: .5;
    position: absolute;
    top: 18px;
    right: 28px;
}

.blog-category h5,
.archive h5 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0;
}

.blog-category a,
.archive a {
    display: block;
    color: #191919;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-category a:hover,
.archive a:hover {
    color: #010080;
}

.blog-category a.active,
.archive a.active {
    color: #010080;
}

.recent-post h5 {
    margin: 30px 0;
    margin-top: 50px;
    font-weight: 600;
}

.recent-post img {
    float: left;
    width: 70px;
    height: 70px;
}

.single-recent-post h6 {
    margin: 0;
    padding-left: 90px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
}

p.blog-date {
    padding-left: 90px;
}

.single-recent-post {
    padding-bottom: 25px;
}

.single-recent-post .recent-post-content {
    display: block;
    padding-left: 110px;
}

.single-recent-post h6 a {
    color: #010080;
    line-height: 1.5;
}

.popular-tag h5 {
    margin: 30px 0;
    margin-top: 50px;
    font-weight: 600;
}

.popular-tag span {
    padding: 8px 15px;
    background: #999;
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 15px;
}

.popular-tag a {
    color: #fff;
    padding: 5px;
}

.popular-tag span.active {
    background: #010080;
}

.popular-tag span:hover {
    background: #010080;
}

.popular-tag span:hover a {
    color: #fff;
}

.author-profile img {
    width: 90px;
    height: 90px;
    float: left;
}

.comments-section h5 {
    font-size: 22px;
    margin: 40px 0;
}

.comments-section img {
    width: 90px;
    height: 90px;
    float: left;
}

.single-comments-section p {
    padding-left: 120px;
}

a.reply-btn {
    font-size: 14px;
}

.comments-form h3 {
    margin: 50px 0;
}

.author-info {
    padding-left: 120px;
}

.single-comments-section p span {
    padding-left: 50px;
    font-size: 15px;
}

.blog-search {
    border: 1px solid #ddd;
    padding: 15px;
}

.blog-category,
.recent-post,
.archive,
.popular-tag {
    border: 1px solid #ddd;
    padding: 10px 30px 20px;
    margin: 20px 0;
}

#blog-page .blog-content {
    padding: 25px;
}

#blog-page .blog-content p.blog-meta {
    font-size: 16px;
}

#blog-page .blog-content a {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 20px 0;
}

#blog-page .single-blog-item {
    margin-bottom: 50px;
}

#blog-page .blog-content a.read-more {
    font-size: 17px;
    color: #010080;
}

#blog-page .blog-meta {
    margin: 20px 0;
}

.blog-meta span i {
    color: #010080;
    font-size: 20px;
    margin-right: 10px;
}

.single-blog-wrap h3 {
    font-size: 35px;
    margin: 20px 0;
}

.single-blog-wrap h5 {
    margin: 20px 0;
}


/* FAQ's
============== */

.styled-faq {
    margin-top: 50px;
}

.styled-faq .panel-group .panel {
    border-radius: 0;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    margin-bottom: 30px;
}

.styled-faq .panel-default>.panel-heading {
    background: none;
    padding: 0;
    border: 1px solid #ddd;
}

.styled-faq .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top: none;
    padding: 10px;
}

.styled-faq .panel .panel-heading h6 {
    font-weight: 600;
    letter-spacing: 1px;
}

.styled-faq .panel .panel-heading h6 a {
    display: block;
    text-decoration: none;
    padding: 12px;
    color: #333;
}

@media (max-width: 575px) {
    .styled-faq .panel .panel-heading h6 a {
        font-size: 14px;
    }
}

.styled-faq .panel .panel-heading h6 a i.fa {
    float: right;
    font-size: 150%;
    line-height: 15px;
    display: none;
    color: #ddd;
}

.styled-faq .panel .panel-heading h6 a[aria-expanded=true] i.fa.fa-angle-up {
    display: block;
}

.styled-faq .panel .panel-heading h6 a[aria-expanded=false] i.fa.fa-angle-down {
    display: block;
}

.question-section {
    background: #F7F7F7;
    padding: 30px;
}

.question-section h6 {
    margin-bottom: 20px;
}

.question-section input,
.question-section textarea {
    background: #fff;
    color: #333;
    border: none;
}

.question-section input::placeholder,
.question-section textarea::placeholder {
    font-size: 15px;
    color: #333;
}

.question-section button {
    font-size: 14px;
    letter-spacing: 1px;
}

.helpline-section {
    background: #010080;
    color: #fff;
    padding: 20px;
    margin-top: 35px;
    height: 272px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.helpline-section h4 {
    color: #fff;
    margin-top: 15px;
}

.helpline-section p {
    color: #FFF;
    margin: 20px 0;
}

.helpline-section button {
    margin-top: 15px;
}

.question-section h5 {
    margin: 30px 0;
}


/* sidebar
============== */

.services-sidebar {
    position: relative;
}

.sidebar-widget {
    margin-bottom: 60px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar {
    position: relative;
    background-color: #f7f7f7;
    padding-right: 40px;
    padding-left: 40px;
}

.sidebar:after,
.sidebar:before {
    position: absolute;
    right: 0;
    top: -140px;
    height: 100%;
    width: 100%;
    content: "";
    background-repeat: repeat;
    background-position: center top;
    background-image: url(../images/icons/pattern-3.jpg);
    opacity: .02;
}

.sidebar:after {
    background-color: #f7f7f7;
    background-image: none;
    opacity: 1;
    z-index: -1;
}

.sidebar-title {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-title h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 25px;
    color: #1a2940;
    font-weight: 700;
    padding-left: 18px;
}

.sidebar-title h3:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 25px;
    width: 5px;
    background-color: #010080;
    content: "";
}


/*Services Category*/

.category-list {
    /*position:relative;*/
    margin-bottom: 60px;
}

.category-list li {
    position: relative;
    margin-bottom: 15px;
    display: block !important;
}

.category-list li:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #1b1b21;
    content: "";
    opacity: 0;
    z-index: 10;
    visibility: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.category-list li.active:before,
.category-list li:hover:before {
    opacity: 1;
    visibility: visible;
}

.category-list li a {
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #1a2940;
    line-height: 26px;
    padding: 15px 25px;
    display: block;
    padding-left: 45px;
    border-radius: 3px;
    background-color: #ffffff;
    z-index: 9;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.category-list li.active a,
.category-list li:hover a {
    color: #ffffff;
    padding-left: 25px;
}

.category-list li a:before {
    position: absolute;
    left: 10px;
    top: 15px;
    font-size: 18px;
    line-height: 26px;
    color: #010080;
    font-weight: 900;
    content: "\f0da";
    font-family: 'Line Awesome Free';
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.category-list li.active a:before,
.category-list li:hover a:before {
    opacity: 0;
}

.category-list li a:after {
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #010080;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.category-list li.active a:after,
.category-list li:hover a:after {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}


/*contact widget*/

.sidebar .contact-widget {
    position: relative;
}

.sidebar .contact-widget .widget-content {
    position: relative;
    background-color: #ffffff;
    padding: 50px 45px;
}

.sidebar .contact-list {
    position: relative;
    margin-bottom: 25px;
}

.sidebar .contact-list .number {
    font-size: 20px;
    line-height: 30px;
    color: #222222;
    font-weight: 500;
    padding-left: 35px;
}

.sidebar .contact-list .number a {
    color: #222222;
}

.sidebar .contact-list .number .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 30px;
    color: #1a2940;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.sidebar .contact-list li {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 10px;
}

.sidebar .contact-list li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 25px;
    color: #ed7902;
}

.sidebar .contact-list li a {
    color: #666666;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.sidebar .contact-list li a:hover {
    color: #ed7902;
}

.sidebar .contact-widget .theme-btn {
    font-size: 14px;
    line-height: 25px;
    padding: 10px 20px;
    color: #ffffff;
}

.sidebar .contact-widget .theme-btn:hover {
    color: #010080;
}

.category-list li {
    position: relative;
    margin-bottom: 10px;
    display: block !important;
}


/* List Style One
============== */

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 13px;
    width: 100%;
}

.list-style-one li:before {
    content: "\f061";
    position: absolute;
    left: 0;
    top: 5px;
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 0px;
    color: #010080;
    font-weight: 900;
    font: normal normal normal 14px/1 FontAwesome;
}

.list-style-one li a:hover {
    color: #44bce2;
}


/* List Style Two
============== */

.list-style-two {
    position: relative;
}

.list-style-two li {
    position: relative;
    font-size: 15px;
    line-height: 25px;
    color: #666666;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 15px;
}

.list-style-two li:before {
    content: "\f182";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 15px;
    line-height: 25px;
    padding: 0px;
    color: #666666;
    font-family: "LineAwesome";
}

.list-style-two li a:hover {
    color: #44bce2;
}


/*contact widget*/

.sidebar .contact-widget {
    position: relative;
}

.sidebar .contact-widget .widget-content {
    position: relative;
    background-color: #ffffff;
    padding: 30px;
}

.sidebar .contact-list {
    position: relative;
    margin-bottom: 25px;
}

.sidebar .contact-list .number {
    font-size: 20px;
    line-height: 30px;
    color: #222222;
    font-weight: 500;
    padding-left: 35px;
}

.sidebar .contact-list .number a {
    color: #222222;
    font-size: 24px;
}

.sidebar .contact-list .number .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 30px;
    color: #1a2940;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    transform: rotate(0deg);
}

.sidebar .contact-list li {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: #1a2940;
    font-weight: 300;
    margin-bottom: 10px;
}

.sidebar .contact-list li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 25px;
    color: #ed7902;
}

.sidebar .contact-list li a {
    color: #010080;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.sidebar .contact-list li a:hover {
    color: #010080;
}

.sidebar .contact-widget .theme-btn {
    font-size: 14px;
    line-height: 25px;
    padding: 10px 20px;
    color: #ffffff;
}

.template-btn2 {
    padding: 12px 20px;
}

.sidebar .contact-widget .theme-btn:hover {
    color: #f79d2b;
}


/* Contact Page Section
============== */

.contact-page-section {
    position: relative;
    padding: 110px 0 60px;
}

.contact-page-section .form-column {
    position: relative;
    margin-bottom: 50px;
}

.contact-page-section .form-column .inner-column {
    position: relative;
    padding-left: 70px;
    padding-right: 70px;
}

.contact-page-section .form-column .sec-title {
    margin-bottom: 30px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 0px;
}

.form-group {
    margin-bottom: 0;
}

.modal-footer {
    padding: 0;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    height: 60px;
    width: 100%;
    font-size: 15px;
    color: #555555;
    line-height: 23px;
    font-weight: 300;
    padding: 10px 10px;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #ed7902;
    color: #222222;
}

.contact-form .form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
    text-transform: uppercase;
    color: #ffffff;
    line-height: 30px;
    padding: 15px 40px;
    margin-top: 20px;
}

.contact-form .form-group input[type="submit"]:hover,
.contact-form .form-group button:hover {
    color: #f79d2b;
}

.contact-form ::-webkit-input-placeholder {
    color: #555555;
}

.contact-form ::-moz-input-placeholder {
    color: #555555;
}

.contact-form ::-ms-input-placeholder {
    color: #555555;
}

.contact-form .form-group label.error {
    color: #ff0000;
}

.contact-page-section .info-column {
    position: relative;
    margin-bottom: 50px;
}

.contact-page-section .info-column .inner-column {
    position: relative;
    margin-left: -30px;
    background-color: #27282c;
    padding: 65px 60px;
}

.contact-page-section .contact-info-list {
    position: relative;
}

.contact-page-section .contact-info-list li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, .65);
    font-weight: 400;
    margin-bottom: 35px;
    width: 100%;
}

.contact-page-section .contact-info-list li a {
    color: rgba(255, 255, 255, .65);
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-page-section .contact-info-list li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-page-section .contact-info-list li strong {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 34px;
    color: #ffffff;
    padding-left: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-page-section .contact-info-list li strong:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 34px;
    width: 5px;
    background-color: #010080;
    content: "";
}


/* featured-imagebox ( contents with image)
============== */

.featured-imagebox {
    margin: 15px 0;
}

.featured-imagebox,
.featured-imagebox .featured-thumbnail {
    position: relative;
    overflow: hidden;
}

.ttm-grid-view .featured-imagebox {
    margin-bottom: 30px;
}

.featured-imagebox .featured-content .featured-title h5 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}

.featured-imagebox .featured-content .featured-desc p {
    margin-bottom: 0;
}

.featured-imagebox .featured-content .category,
.featured-imagebox .featured-content .category a {
    font-size: 14px;
    line-height: 15px;
    display: inline-block;
}

.featured-imagebox .featured-thumbnail img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    padding: 15px 10px;
    border: 1px solid #dbdbdb;
    box-shadow: 0 -7px 12px 0 rgba(0, 0, 0, 0.08);
}

.featured-imagebox:hover .featured-thumbnail img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


/* imagebox-hover */

.featured-imagebox .ttm-box-view-overlay {
    position: relative;
    overflow: hidden;
}

.featured-imagebox .ttm-box-view-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    text-align: left;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    background-color: rgba(19, 29, 59, .75);
}

.featured-imagebox:hover .ttm-box-view-overlay:after {
    opacity: 1;
    height: 100%;
}

.featured-imagebox-services.style2 .featured-content {
    padding: 5px 5px 0px;
    transition: all .4s;
    margin: 0 40px;
    margin-top: 0px;
    margin-top: 0px;
    background-color: #fff;
    border-radius: 6px;
    z-index: 4;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
    margin-bottom: 5px;
}


/* lightbox--------------------------------*/

#gallery img {
    height: 75vw;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 576px) {
    #gallery img {
        height: 35vw;
    }
}

@media (min-width: 992px) {
    #gallery img {
        height: 18vw;
    }
}

.carousel-item img {
    height: 60vw;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 576px) {
    .carousel-item img {
        height: 350px;
    }
}

* {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#gallery.custom {
    padding: 0 15px;
}

#gallery.custom img {
    display: block;
    margin: 15px 0;
    border-radius: 300px 30px 300px 300px;
}

#gallery.custom img:hover {
    border-radius: 30px 90px 30px 30px;
}

#exampleModal.custom .modal-content {
    background: none;
    border: none;
}

#exampleModal.custom .modal-header {
    border: none;
}

#exampleModal.custom .modal-header button {
    background: none;
    border-radius: 100px 100px 0 0;
    padding: 5px 10px;
    opacity: 1;
    position: relative;
    top: 3px;
    border: solid 2px white;
}

@media (min-width: 992px) {
    #exampleModal.custom .modal-header button {
        top: 15px;
    }
}

#exampleModal.custom .modal-header button:hover {
    top: 3px;
}

#exampleModal.custom .modal-header span {
    color: white;
}

#exampleModal.custom .modal-body {
    padding: 0;
    border: none;
    position: relative;
}

#exampleModal.custom .modal-body::before,
#exampleModal.custom .modal-body::after {
    content: '';
    height: 50px;
    width: 50px;
    display: block;
    position: absolute;
    background: white;
    border-radius: 3px 10px;
}

@media (min-width: 768px) {
    #exampleModal.custom .modal-body::before,
    #exampleModal.custom .modal-body::after {
        border-radius: 3px 30px;
        height: 100px;
        width: 100px;
    }
}

#exampleModal.custom .modal-body::before {
    top: -5px;
    left: -5px;
}

@media (min-width: 768px) {
    #exampleModal.custom .modal-body::before {
        top: -15px;
        left: -15px;
    }
}

#exampleModal.custom .modal-body::after {
    bottom: -5px;
    right: -5px;
    z-index: -1;
}

@media (min-width: 768px) {
    #exampleModal.custom .modal-body::after {
        bottom: -15px;
        right: -15px;
    }
}

#exampleModal.custom .modal-footer {
    border: none;
    margin-top: 60px;
}

@media (min-width: 992px) {
    #exampleModal.custom .modal-footer {
        margin-top: 40px;
    }
}

#exampleModal.custom .modal-footer .btn {
    margin: auto;
    border: solid 2px white;
    background: none;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding: 0.2em 0.7em;
}

#exampleModal.custom .modal-footer .btn:hover {
    background: white;
    color: black;
}

#exampleModal.custom .carousel-control-prev,
#exampleModal.custom .carousel-control-next {
    font-size: 2em;
    top: auto;
    opacity: 1;
    bottom: -52px;
}

@media (min-width: 768px) {
    #exampleModal.custom .carousel-control-prev,
    #exampleModal.custom .carousel-control-next {
        top: 0;
        opacity: 0.5;
        bottom: 0;
    }
}

#exampleModal.custom .carousel-control-next-icon,
#exampleModal.custom .carousel-control-prev-icon {
    height: 30px;
    width: 30px;
}

@media (min-width: 768px) {
    #exampleModal.custom .carousel-control-prev {
        left: -90px;
    }
}

@media (min-width: 768px) {
    #exampleModal.custom .carousel-control-next {
        right: -90px;
    }
}

#exampleModal.custom .carousel-indicators {
    bottom: -60px;
}

@media (min-width: 992px) {
    #exampleModal.custom .carousel-indicators {
        bottom: -30px;
    }
}

#exampleModal.custom .carousel-indicators li {
    height: 30px;
    border-radius: 100px;
    background: none;
    border: solid 2px white;
}

@media (min-width: 992px) {
    #exampleModal.custom .carousel-indicators li {
        height: 10px;
    }
}

#exampleModal.custom .carousel-indicators li:hover {
    background: white;
}

#exampleModal.custom .carousel-indicators li.active {
    background: white;
}


/* The switch - the box around the slider */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

@media (min-width: 576px) {
    .switch {
        margin: 0;
    }
}


/* Hide default HTML checkbox */

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-wrap {
    text-align: center;
    padding: 30px;
    border-radius: 3px;
    margin: 30px 0 0;
}

@media (min-width: 576px) {
    .switch-wrap {
        position: fixed;
        bottom: 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        -webkit-box-pack: center;
        justify-content: center;
        padding: 10px;
    }
}

.switch-text {
    display: block;
    margin: 0.5em;
}

@media (min-width: 576px) {
    .switch-text {
        margin: 0 1em 0 0;
    }
}

.info-content-area ul li i:before {
    color: #010080;
}

figure.snip1205 {
    position: relative;
    overflow: hidden;
    margin: 10px;
    width: 100%;
    background: #000000;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.snip1205 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

figure.snip1205 img {
    max-width: 100%;
    vertical-align: top;
}

figure.snip1205 i {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    font-size: 34px;
    color: #000000;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    transition: all 300ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

figure.snip1205 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

figure.snip1205.blue {
    background-color: #2472a4;
}

figure.snip1205.blue i {
    color: #20638f;
}

figure.snip1205.red {
    background-color: #ab3326;
}

figure.snip1205.red i {
    color: #962d22;
}

figure.snip1205.yellow {
    background-color: #e08e0b;
}

figure.snip1205.yellow i {
    color: #c87f0a;
}

figure.snip1205.green {
    background-color: #000;
}

figure.snip1205.green i {
    color: #010080;
}

figure.snip1205.orange {
    background-color: #d67118;
}

figure.snip1205.orange i {
    color: #bf6516;
}

figure.snip1205.navy {
    background-color: #2b3c4e;
}

figure.snip1205.navy i {
    color: #222f3d;
}

figure.snip1205:hover img,
figure.snip1205.hover img {
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

figure.snip1205:hover i,
figure.snip1205.hover i {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/*===========================
    2.HEADER css 
===========================*/

.header-area .header-top-area {
    background: #3f3836;
    z-index: 9999;
    position: relative;
}

.header-area .header-top-area::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    min-width: 375px;
    background: #fbf0ee;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area .header-top-area::before {
        min-width: 265px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area .header-top-area::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-area .header-top-area::before {
        display: none;
    }
}

.header-area .header-top-area .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 420px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area .header-top-area .header-top {
        margin-left: 280px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area .header-top-area .header-top {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .header-area .header-top-area .header-top {
        margin-left: 0;
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area .header-top-area .header-top {
        margin-left: 0;
        display: block;
    }
}

.header-area .header-top-area .header-top ul li {
    display: inline-block;
}

.header-area .header-top-area .header-top ul li a {
    font-size: 13px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
    padding-right: 40px;
    padding-left: 40px;
    border-right: 1px solid #534c4a;
    line-height: 48px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .header-area .header-top-area .header-top ul li a {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area .header-top-area .header-top ul li a {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area .header-top-area .header-top ul li a {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .header-area .header-top-area .header-top ul li a {
        padding-left: 6px;
        padding-right: 6px;
        font-size: 12px;
    }
}

.header-area .header-top-area .header-top ul li a i {
    color: #ff4332;
    font-size: 18px;
    margin-right: 6px;
}

.header-area .header-top-area .header-top ul li:first-child a {
    padding-left: 0;
}

.header-area .header-top-area .header-top ul li:last-child a {
    padding-right: 0;
    border-right: 0;
}

.header-area .header-top-area .header-top .dropdown {
    position: relative;
}

.header-area .header-top-area .header-top .dropdown img {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.header-area .header-top-area .header-top .dropdown .nice-select {
    background-color: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    height: auto;
    line-height: 40px;
    padding: 0 15px 0 30px;
    letter-spacing: 1px;
    z-index: 999;
}

@media (max-width: 767px) {
    .header-area .header-top-area .header-top .dropdown .nice-select {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area .header-top-area .header-top .dropdown .nice-select {
        display: block;
    }
}

.header-area .header-top-area .header-top .dropdown .nice-select .list {
    width: 100%;
}

.header-area .header-top-area .header-top .dropdown .nice-select .list .option {
    color: #3f3836;
    display: block;
}

.header-area .header-top-area .header-top .dropdown .nice-select::after {
    right: 0;
}

.header-area.header-2-area .main-header {
    top: 30px;
    background: transparent;
}

.header-area.header-2-area .main-header.sticky {
    top: 0;
    box-shadow: none;
}

.header-area.header-2-area .main-header.sticky .main-header-item {
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
}

.header-area.header-2-area .main-header::before {
    display: none;
}

.header-area.header-2-area .main-header .main-header-item {
    background: #fff;
    padding: 0 40px;
    position: relative;
}

.header-area.header-2-area .main-header .main-header-item::before {
    position: absolute;
    content: "";
    left: -10px;
    top: 0;
    height: 100%;
    width: 10px;
    background: #ff4332;
}

.header-area.header-2-area .main-header .main-header-item::after {
    position: absolute;
    content: "";
    right: -10px;
    top: 0;
    height: 100%;
    width: 10px;
    background: #ff4332;
}

.header-area.header-2-area .main-header .main-header-item .header-logo {
    margin-top: 0;
    background-color: transparent;
    min-width: auto;
    margin-right: 35px;
}

.header-area.header-2-area .main-header .main-header-item .header-social .info {
    padding-left: 50px;
    position: relative;
}

@media (max-width: 767px) {
    .header-area.header-2-area .main-header .main-header-item .header-social .info {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area.header-2-area .main-header .main-header-item .header-social .info {
        display: block;
    }
}

.header-area.header-2-area .main-header .main-header-item .header-social .info::before {
    position: absolute;
    content: "";
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 58px;
    background: #f7eae8;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .main-header .main-header-item .header-social .info::before {
        left: -30px;
    }
}

.header-area.header-2-area .main-header .main-header-item .header-social .info i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #ff4332;
}

.header-area.header-2-area .main-header .main-header-item .header-social .info .title {
    font-size: 16px;
    font-weight: 700;
    color: #3f3836;
}

.header-area.header-2-area .main-header .main-header-item .header-social .info span {
    font-size: 13px;
    font-weight: 500;
    color: #817a78;
}

.header-area.header-2-area .main-header .main-header-item .header-menu ul li>a {
    margin: 0 21px 0 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .main-header .main-header-item .header-menu ul li>a {
        margin: 0 10px;
    }
}

.header-area.header-2-area .main-header .main-header-item .header-menu ul li .sub-menu>li>a {
    margin: 0;
}

.header-area.header-2-area.header-3-area .main-header {
    background: #fff;
    border-bottom: 1px solid #f7eae7;
    top: 50px;
}

@media (max-width: 767px) {
    .header-area.header-2-area.header-3-area .main-header {
        top: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area.header-2-area.header-3-area .main-header {
        top: 50px;
    }
}

.header-area.header-2-area.header-3-area .main-header.sticky {
    top: 0;
}

.header-area.header-2-area.header-3-area .main-header .main-header-item {
    padding: 0;
}

.header-area.header-2-area.header-3-area .main-header .main-header-item::before {
    display: none;
}

.header-area.header-2-area.header-3-area .main-header .main-header-item::after {
    display: none;
}

.header-area.header-2-area.header-3-area .main-header .main-header-item .header-menu ul li>a {
    margin: 0 32px;
}

.header-area.header-2-area.header-3-area .header-top-3-area {
    background: #fff;
    border-bottom: 1px solid #f7eae7;
}

.header-area.header-2-area.header-3-area .header-top-3-area::before {
    display: none;
}

.header-area.header-2-area.header-3-area .header-top-3-area .header-top {
    margin-left: 0;
}

.header-area.header-2-area.header-3-area .header-top-3-area .header-top ul li a {
    color: #817a78;
    border-right-color: #f7eae7;
    padding-right: 38px;
    padding-left: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.header-2-area.header-3-area .header-top-3-area .header-top ul li a {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    .header-area.header-2-area.header-3-area .header-top-3-area .header-top ul li a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 10px;
    }
}

.header-area.header-2-area.header-3-area .header-top-3-area .header-top ul li:first-child a {
    padding-left: 0;
}

.header-area.header-2-area.header-3-area .header-top-3-area .header-top ul li:last-child a {
    padding-right: 0;
}

.header-area.header-2-area.header-3-area .header-top-3-area .header-top .dropdown .nice-select {
    color: #3f3836;
}

.main-header {
    background: #fff;
    position: absolute;
    left: 0;
    top: 49px;
    right: 0;
    z-index: 999;
}

@media (max-width: 767px) {
    .main-header {
        top: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-header {
        top: 49px;
    }
}

.main-header::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    min-width: 10%;
    background: #fbf0ee;
}

.main-header .main-header-item .header-logo {
    background: #fbf0ee;
    min-width: 360px;
    text-align: center;
    margin-top: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-header .main-header-item .header-logo {
        min-width: 250px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-logo {
        margin-top: 0;
        line-height: 70px;
        min-width: auto;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-logo {
        margin-top: 0;
        line-height: 70px;
        min-width: auto;
        padding-right: 15px;
    }
}

.main-header .main-header-item .header-btn a {
    background: #ff4332;
    line-height: 70px;
    padding: 0 60px 0 85px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border-right: 10px solid #fff;
    white-space: nowrap;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-header .main-header-item .header-btn a {
        padding: 0 30px 0 55px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-btn a {
        padding: 0 20px;
    }
}

.main-header .main-header-item .header-btn a::before {
    position: absolute;
    content: "";
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 15px;
    background: #fff;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-header .main-header-item .header-btn a::before {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-btn a::before {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-header .main-header-item .header-btn a::before {
        display: block;
    }
}

.main-header .main-header-item .header-btn a:hover {
    color: #fff;
    background: #192437;
}

.main-header .main-header-item .header-btn a:hover::before {
    background: #fff;
}

.main-header .main-header-item .header-menu ul {
    padding: 0 0px 0 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-header .main-header-item .header-menu ul {
        padding: 0 0 0 37px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-header .main-header-item .header-menu ul {
        padding: 0 15px;
    }
}

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

.main-header .main-header-item .header-menu ul li>a {
    line-height: 102px;
    font-size: 14px;
    color: #817a78;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 28px 0 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
}

.main-header .main-header-item .header-menu ul li>a::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 6px solid #ff4332;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-header .main-header-item .header-menu ul li>a {
        margin: 0 10px 0 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-header .main-header-item .header-menu ul li>a {
        margin: 0 10px 0 10px;
    }
}

.main-header .main-header-item .header-menu ul li>a.active {
    color: #3f3836;
    font-weight: 500;
}

.main-header .main-header-item .header-menu ul li>a.active::before {
    opacity: 1;
}

.main-header .main-header-item .header-menu ul li .sub-menu {
    position: absolute;
    left: 30px;
    top: 110%;
    width: 200px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    border-top: 4px solid #ff4332;
    padding: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        left: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all 0s ease-out 0s;
        -moz-transition: all 0s ease-out 0s;
        -ms-transition: all 0s ease-out 0s;
        -o-transition: all 0s ease-out 0s;
        transition: all 0s ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-menu ul li .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all 0s ease-out 0s;
        -moz-transition: all 0s ease-out 0s;
        -ms-transition: all 0s ease-out 0s;
        -o-transition: all 0s ease-out 0s;
        transition: all 0s ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}

.main-header .main-header-item .header-menu ul li .sub-menu>li {
    position: relative;
    display: block;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li a {
    display: block;
    padding: 10px 24px;
    margin: 0;
    position: relative;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    line-height: 30px;
    border-top: 1px solid #ff4332;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li a::before {
    display: none;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li a i {
    float: right;
    font-size: 14px;
    margin-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li a i {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li a i {
        display: none;
    }
}

.main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu {
        padding-left: 30px;
    }
}

.main-header .main-header-item .header-menu ul li .sub-menu>li .sub-menu li:hover .sub-menu {
    top: 0 !important;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li:hover .sub-menu {
    top: 0%;
    opacity: 1;
    visibility: visible;
}

.main-header .main-header-item .header-menu ul li .sub-menu>li:hover>a {
    background-color: #3f3836;
    color: #fff !important;
}

.main-header .main-header-item .header-menu ul li:hover>a {
    color: #3f3836;
    font-weight: 500;
}

.main-header .main-header-item .header-menu ul li:hover>a::before {
    opacity: 1;
}

.main-header .main-header-item .header-menu ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main-header .main-header-item .header-menu ul li:last-child a {
    margin-right: 0 !important;
}

.main-header .main-header-item .header-social {
    position: relative;
}

.main-header .main-header-item .header-social ul li {
    display: inline-block;
}

.main-header .main-header-item .header-social ul li a {
    height: 46px;
    width: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    background: #fbf0ee;
    font-size: 14px;
    color: #817a78;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.product-section {
    border: 1px solid #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
}

.main-header .main-header-item .header-social ul li a:hover {
    background: #ff4332;
    color: #fff;
}

.main-header .main-header-item .toggle-btn {
    font-size: 24px;
    color: #817a78;
    display: none;
    cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .main-header-item .toggle-btn {
        display: block;
    }
}

@media (max-width: 767px) {
    .main-header .main-header-item .toggle-btn {
        display: block;
    }
}

.main-header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    animation: sticky 1.2s;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
}

.main-header.sticky .main-header-item .header-logo {
    margin-top: 0;
}

.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}

.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
}

.offcanvas_menu {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas_menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .offcanvas_menu {
        display: block;
    }
}

.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 9999;
    top: 0;
    height: 100vh;
    transition: 0.5s;
    left: 0;
    margin-left: -300px;
    padding: 50px 15px 30px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper .header-btn {
    margin-bottom: 30px;
}

.offcanvas_menu_wrapper .header-btn a {
    color: #222;
}

.offcanvas_menu_wrapper .header-btn a:hover {
    color: #222;
}

.offcanvas_main_menu li {
    position: relative;
    width: 100%;
}

.offcanvas_main_menu li:last-child {
    margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 0;
}

.offcanvas_main_menu li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover {
    color: #010080;
}

.offcanvas_main_menu li ul.sub-menu {
    padding-left: 20px;
}

.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.offcanvas_footer span a {
    font-size: 14px;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas_footer span a:hover {
    color: #ff4332;
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 30px;
    border: 1px solid #ededed;
    border-radius: 50%;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.canvas_close a:hover {
    background: #010080;
    border-color: #010080;
    color: #fff;
}

.canvas_open a {
    font-size: 26px;
    width: 50px;
    height: 42px;
    display: block;
    line-height: 39px;
    text-align: center;
    border: 1px solid #232323;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.canvas_open a:hover {
    color: #ff4332;
    border-color: #ff4332;
}

.offcanvas-social {
    margin-bottom: 40px;
}

.offcanvas-social ul li {
    display: inline-block;
}

.offcanvas-social ul li a {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    color: #ff4332;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    margin: 0 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas-social ul li a:hover {
    background: #ff4332;
    border-color: #ff4332;
    color: #fff;
}

.navbar .toggle-btn {
    margin-top: 25px;
}

.navbar .toggle-btn i {
    font-size: 30px;
    cursor: pointer;
    color: #010080;
}

@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
}

.enquireproduct {
    margin-top: 20px;
}

.table-responsive-stack tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.table-responsive-stack td,
.table-responsive-stack th {
    display: block;
    /*      
   flex-grow | flex-shrink | flex-basis   */
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.table-responsive-stack .table-responsive-stack-thead {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .table-responsive-stack tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 3px solid #ccc;
        display: block;
    }
    /*  IE9 FIX   */
    .table-responsive-stack td {
        float: left\9;
        width: 100%;
    }
}

.content-box h3 {
    margin-bottom: 20px;
}

.preview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 996px) {
    .preview {
        margin-bottom: 20px;
    }
}

.preview-pic {
    /*-webkit-box-flex: 1;
         -webkit-flex-grow: 1;
         -ms-flex-positive: 1;
         flex-grow: 1;*/
}

.preview-thumbnail.nav-tabs {
    border: none;
    margin-top: 15px;
}

.preview-thumbnail.nav-tabs li {
    width: 23%;
    margin-right: 2.5%;
}

.preview-thumbnail.nav-tabs li img {
    max-width: 100%;
    display: block;
}

.preview-thumbnail.nav-tabs li a {
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.preview-thumbnail.nav-tabs li:last-of-type {
    margin-right: 0;
}

.tab-content {
    overflow: hidden;
}

.tab-content img {
    width: 100%;
    -webkit-animation-name: opacity;
    animation-name: opacity;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    cursor: pointer;
}

.card {
    /* margin-top: 50px;*/
    background: #eee;
    padding: 15px;
    line-height: 1.5em;
}

@media screen and (min-width: 997px) {
    .wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.product-title,
.price,
.sizes,
.colors {
    text-transform: UPPERCASE;
    font-weight: bold;
}

.checked,
.price span {
    color: #ff9f1a;
}

.product-title,
.rating,
.product-description,
.price,
.vote,
.sizes {
    margin-bottom: 15px;
}

.product-title {
    margin-top: 0;
}

.size {
    margin-right: 10px;
}

.size:first-of-type {
    margin-left: 40px;
}

.color {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: 2em;
    width: 2em;
    border-radius: 2px;
}

.color:first-of-type {
    margin-left: 20px;
}

.add-to-cart,
.like {
    background: #ff9f1a;
    padding: 1.2em 1.5em;
    border: none;
    text-transform: UPPERCASE;
    font-weight: bold;
    color: #fff;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

.add-to-cart:hover,
.like:hover {
    background: #b36800;
    color: #fff;
}

.not-available {
    text-align: center;
    line-height: 2em;
}

.not-available:before {
    font-family: fontawesome;
    content: "\f00d";
    color: #fff;
}

.orange {
    background: #ff9f1a;
}

.green {
    background: #85ad00;
}

.blue {
    background: #0076ad;
}

.tooltip-inner {
    padding: 1.3em;
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.simplemodal-overlay {
    z-index: -1 !important;
}

.product-list ul li.active a:hover,
.accordion a:hover {
    color: #7dc642;
}

.btn-theme-3 {
    color: #fff;
    background: #7dc642;
}
.mbox{
background: #fff;
    height: 100%;
    padding: 30px 30px;
    border: 2px solid #fff;
    box-shadow: 0 0 10px 0 #ccc;
    border-radius: 5px;
}
.mbox img{
margin: auto;
    text-align: center;
    left: 0;
    right: 0;
    position: relative;
    border: 2px solid #ccc;
}
.minfo{

}
.minfo p{
margin-bottom: 0;
    font-size: 16px;
}
.minfo p strong{

}
.mboximg{
    text-align: center;
    margin-bottom: 20px;
}
.probox{
border: 2px solid #010080;
    height: 100%;
    padding: 15px 30px;
    background: #ffff;
    
}
.probox p{
color: #000;
}
.probox ol{
padding-left: 20px;
}
.probox ol li{
display: list-item;
    list-style: decimal;
    margin-top: 2px;
    margin-bottom: 4px;
    font-size: 15px;
}