@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap"');

/*  ==========================================================================
    1.0 Common Styles
    ========================================================================== */

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 23px;
    color: #555;
    font-weight: 500;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-font-smoothing: antialiased;
    color: #333;
}

h1 {
    font-size: 70px;
    line-height: 1;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    font-weight: bold;
}

h2 {
    font-size: 24px;
    color: #333;
    margin: 0 0 8px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

h3,
h4 {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    letter-spacing: -1.2px;
}

h3 {
    font-size: 17px;
}

h4 {
    font-size: 15px;
}

h5,
h6 {
    font-size: 14px;
    margin: 0 0 10px;
}

img {
    border: none;
    outline: none;
}

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

p {
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 400;
}

a {
    letter-spacing: -0.9px;
}

a,
a:hover {
    text-decoration: none;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #888 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #888 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #888 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #888 !important;
}

button {
    border: none;
    background: none;
}


/* Helper Class */

.padding {
    padding: 80px 0;
}

.no-padding {
    padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mt-15 {
    margin-left: 15px;
}

.mt-15 {
    margin-left: 15px;
}

.padding-15 {
    padding: 15px;
}

.display-block {
    display: block;
}

.text-black {
    color: #282828;
}

.text-white {
    color: #ffffff;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.fl-right {
    float: right;
}

.fl-left {
    float: left;
}

.display-table {
    width: 100%;
    height: 100%;
    display: table;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

.overlay {
    width: 100%;
    position: relative;
    z-index: 1;
}

.overlay:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.bg-grey {
    /* background-color: #f5f5f5; */
}

.bd-bottom {
    border-bottom: 1px solid #eaeaea;
}

.bg_dark {
    background-color: #232323;
}


/* Preloader Styles */

.loaded .site-preloader-wrap {
    opacity: 1;
    visibility: hidden;
}

.site-preloader-wrap {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #003158;
    top: 0;
    left: 0;
}

.site-preloader-wrap .spinner {
    background-color: #dc3545;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.spinner {
    width: 86px;
    height: 86px;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}


/* Button Style */

.btn_group {}

.btn_group a {
    margin: 5px;
}

.default-btn {
    background-color: #06315a;
    color: #fff;
    line-height: 45px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 3px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.default-btn:hover {
    background-color: #f1d90e;
    color: #000;
}

.default-btn.btn_sm {
    line-height: 40px;
    padding: 0 15px;
}


/*Section Heading*/

.section-heading {
    border-left: transparent;
    padding-left: 0;
    text-align: center;
}

.section-heading span {
    display: block;
    font-size: 14px;
    color: #888;
}

.section-heading h2 {
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 600;
    display: table;
    margin: auto;
    border-bottom: 2px solid;
}


/* Transition Effect */

a,
a:hover,
.overlay,
img,
.form-control,
.form-control:hover,
button {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.site-branding h5 {
    color: #FFEB3B;
    margin: 0;
    font-size: 37px;
    text-transform: uppercase;
}

.site-branding span {
    color: #fff;
    font-style: italic;
}


/* ==========================================================================
   2.0 Header Section
   ========================================================================== */

.header-section {
    width: 100%;
    height: 85px;
    z-index: 99;
    position: absolute;
    left: 0;
    top: 0;
}

.navbar-fixed-top.header-section {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px;
}

.navbar-fixed-top.header-section .top-header,
.navbar-fixed-top.header-section .bottom-header {
    display: none;
}

.menu-wrap {
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 0;
    float: right;
}

.nav-menu {
    text-align: right;
    position: relative;
    top: 88px;
}

.nav-menu li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    text-align: left;
}

.nav-menu li a {
    color: #000;
    text-transform: none;
    font-size: 17px;
    font-weight: 600;
    text-transform:uppercase;
}

.nav-menu li a:hover {
    color: #c52721;
}


/*Top Header*/

.top-header {
    margin-top: 8px;
}

.top-header .top-left {
    background-color: transparent;
    /* border-left: 0 solid transparent; */
    /* border-right: 30px solid transparent; */
    height: 0;
    /* width: 100%; */
    /* padding: 10px 0; */
    display: block;
    margin-left: 0;
    float: right;
}

.top-header .top-right {
    /* border-bottom: 40px solid #b0d3ff; */
    /* border-right: 0 solid transparent; */
    /* border-left: 30px solid transparent; */
    height: 0;
    /* width: 100%; */
    /* padding: 10px 0; */
    /* display: block; */
    /* margin-left: 0; */
    /* float: inherit; */
}

.top-header .top-right .links-nav {
    margin-top: 8px;
    float: left;
    padding: 0 2px;
}

.top-header .top-left li,
.top-header .top-right li {
    display: inline-block;
}

.top-header .top-left li,
.top-header .top-right li {
    margin-right: 0;
    color: #ffffff;
    float: left;
    /* margin-top: 20px; */
    padding: 0px 13px;
    margin-left: 12px;
}

.top-header .top-right li a {
    background-color: transparent;
    color: #fff;
    margin-right: 10px;
    /* display: block; */
    /* height: 25px; */
    /* width: 25px; */
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    border-radius: 3px;
    /* margin-top: 20px; */
    /* padding: 0px 13px; */
    /* margin-left: 12px; */
}

.top-header .top-right li a span {
    font-size: 20px;
    margin-right: 8px;
}

.top-header .col-md-6 {
    padding-left: 0;
    padding: 0;
}

.top-header .col-md-6.right {
    padding-right: 0;
}

.top-header .top-left .info {
    margin-left: 0;
    padding: 11px 4px;
}

.top-header .top-right .info {
    padding: 17px 0;
}


/*Bottom Header*/

.bottom-header {}

.bottom-header .bottom-left {
    border-top: 40px solid #fff;
    border-left: 0 solid transparent;
    border-right: 30px solid transparent;
    height: 0;
    width: 280px;
    display: block;
    margin-left: 0;
}

.bottom-header .bottom-right {
    border-top: 40px solid #fff;
    border-right: 0 solid transparent;
    border-left: 30px solid transparent;
    height: 0;
    width: 280px;
    display: block;
    margin-left: 0;
    float: right;
}

.bottom-header .bottom-left p {
    margin-top: -33px;
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 12px;
    color: #888;
}

.bottom-header .bottom-right p {
    margin-top: -33px;
    float: right;
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 12px;
    color: #888;
}

.top-header .top-left i,
.bottom-header .bottom-right i {
    color: #ffffff;
    margin-right: 10px;
    font-size: 19px;
}

.bottom-header .col-md-6 {
    padding-left: 0;
}

.bottom-header .col-md-6.right {
    padding-right: 0;
}


/*Mobile Menu */

.slicknav_menu {
    background: none;
    padding: 4px 0;
    display: none;
    z-index: 999;
}

.slicknav_nav {
    background-color: #fff;
}

.js .slicknav_menu {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.slicknav_btn {
    background-color: transparent;
    margin: 10px 5px 14px;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav .slicknav_row,
.slicknav_nav a,
.slicknav_nav a:hover {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 10px 15px;
    margin: 0;
    color: #777;
}

.slicknav_nav a .caret {
    display: none;
}

.slicknav_nav ul {
    margin: 0;
}

.slicknav_nav ul li a {
    padding-left: 30px;
    font-size: 12px;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
    background-color: transparent;
    color: #333;
}


/*Dropdown */

#mainmenu li ul {
    background-color: #de392e;
    width: 200px;
    height: auto;
    position: absolute;
    left: 0;
    top: 140%;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 999;
}

#mainmenu li ul.custom-drop-down {
    width: 512px;
    height: auto;
    overflow-y: auto;
}


/* width */

#mainmenu li ul.custom-drop-down::-webkit-scrollbar {
    width: 5px;
}


/* Track */

#mainmenu li ul.custom-drop-down::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

#mainmenu li ul.custom-drop-down::-webkit-scrollbar-thumb {
    background: #c14a24;
}


/* Handle on hover */

#mainmenu li ul.custom-drop-down::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#mainmenu li:hover>ul {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    top: 129%;
}

#mainmenu li ul li {
    /* border-bottom: 1px solid #eaeaea; */
    display: block;
    position: relative;
    margin-right: 0;
}

#mainmenu li ul li:last-child {
    border: none;
}

#mainmenu li ul li a {
    line-height: 31px;
    display: block;
    padding: 0 8px;
    font-size: 14px;
    border-bottom: 1px dashed;
    font-weight: 400;
    /* text-transform: uppercase; */
    color: #fbfbfb;
    -webkit-transition: color 0.3s ease 0s, padding 0.3s ease 0s;
    transition: color 0.3s ease 0s, padding 0.3s ease 0s;
}

#mainmenu li ul.custom-drop-down li {
    border-bottom: none;
}

#mainmenu li ul.custom-drop-down li a {
    border-bottom: 1px dashed;
}

#mainmenu li>ul>li:hover a {
    color: #ffcd00;
}

#mainmenu li>ul ul {
    background-color: #fff;
    left: 200px;
}

#mainmenu li>ul li:hover>ul li a {
    color: #777;
}

#mainmenu li ul li:hover>ul {
    top: 0;
    opacity: 1;
    visibility: visible;
}

#mainmenu li>ul li:hover>ul li>a:hover {
    background-color: transparent;
    color: #fff;
}

#mainmenu li ul li li a:hover {
    color: #ffca3f !important;
}


/* ==========================================================================
   3.0 Slider Section
   ========================================================================== */

.slider-section {
    height: 50vh;
    overflow: hidden;
}

.slider-text {
    width: 100%;
    text-align: center;
}

.slider-text h1 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 45px;
    text-transform: uppercase;
    border-left: 10px solid #FFCD00;
    border-right: 10px solid #FFCD00;
    display: table;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.slider-text h3 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
}

.nivo-caption a {
    display: inline-block !important;
    margin-right: 10px;
}

.slider-text p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.slider-wrapper {
    position: relative;
}

.nivo-caption {
    height: 100%;
    opacity: 1;
    background: transparent;
    overflow: visible;
}


/* nivo directionNav css */

.nivo-directionNav a {
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: #fff !important;
    top: calc(50% - 20px);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.nivo-directionNav a.nivo-prevNav {
    left: 25px;
}

.nivo-directionNav a.nivo-nextNav {
    right: 25px;
}

.slider-wrapper:hover .nivo-directionNav a.nivo-prevNav {
    left: 15px;
    opacity: 0.7;
}

.slider-wrapper:hover .nivo-directionNav a.nivo-nextNav {
    right: 15px;
    opacity: 0.7;
}

.nivo-directionNav a:hover {
    opacity: 1 !important;
}


/* nivo controlNav css */

.nivo-controlNav {
    padding: 0;
    position: absolute;
    z-index: 12;
    bottom: 30px;
    width: 100%;
}

.nivo-controlNav a {
    background-color: transparent;
    width: 10px;
    height: 10px;
    background-color: #aa360f;
    border-radius: 30px;
    display: inline-block;
    font-size: 0;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s linear;
    line-height: 12px;
}

.nivo-controlNav a.active {
    background-color: #2a619f;
    border-radius: 30px;
    width: 25px;
}

.section {
    /* padding: 110px 0; */
}

.about-section {
    position: relative;
}

.about-section::before {
    position: absolute;
    content: "About Us ";
    top: 48%;
    left: -45px;
    font-size: 54px;
    color: rgba(181, 181, 185, 0.2196078431372549);
    font-weight: 400;
    text-transform: uppercase;
    z-index: 9;
    transform: rotate(270deg);
}

.about-us-img-inner {
    position: relative;
    /* margin-top: -149px; */
    z-index: 9;
    /* box-shadow: 0 0 20px; */
}

.about-us-img img {
    width: 100%;
    position: relative;
}

.about-us-img::after {
    position: absolute;
    content: "";
    background: linear-gradient(to bottom, #ffffff 0%, #f8ced7 100%);
    top: 0px;
    height: 100%;
    width: 100%;
    left: 0px;
    z-index: -1;
}

.about-cntnt-wrp {
    padding-left: 40px;
}

img {
    max-width: 100%;
}

.about-us-img-inner::before {
    position: absolute;
    content: "";
    /* background: rgba(14, 25, 53, 0.59); */
    background: -moz-linear-gradient(left, rgba(14, 25, 53, 0.59) 0%, rgba(14, 25, 53, 0.6) 0%, rgba(94, 77, 84, 0.6) 47%, rgba(142, 113, 109, 0.6) 97%, rgba(145, 115, 111, 0.6) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(14, 25, 53, 0.59)), color-stop(0%, rgba(14, 25, 53, 0.6)), color-stop(47%, rgba(94, 77, 84, 0.6)), color-stop(97%, rgba(142, 113, 109, 0.6)), color-stop(100%, rgba(145, 115, 111, 0.6)));
    /* background: -webkit-linear-gradient(left, rgba(14, 25, 53, 0.59) 0%, rgba(14, 25, 53, 0.6) 0%, rgba(94, 77, 84, 0.6) 47%, rgba(142, 113, 109, 0.6) 97%, rgba(145, 115, 111, 0.6) 100%); */
    background: -o-linear-gradient(left, rgba(14, 25, 53, 0.59) 0%, rgba(14, 25, 53, 0.6) 0%, rgba(94, 77, 84, 0.6) 47%, rgba(142, 113, 109, 0.6) 97%, rgba(145, 115, 111, 0.6) 100%);
    background: -ms-linear-gradient(left, rgba(14, 25, 53, 0.59) 0%, rgba(14, 25, 53, 0.6) 0%, rgba(94, 77, 84, 0.6) 47%, rgba(142, 113, 109, 0.6) 97%, rgba(145, 115, 111, 0.6) 100%);
    /* background: linear-gradient(to right, rgba(14, 25, 53, 0.59) 0%, rgba(14, 25, 53, 0.6) 0%, rgba(94, 77, 84, 0.6) 47%, rgba(142, 113, 109, 0.6) 97%, rgba(145, 115, 111, 0.6) 100%); */
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#0e1935', endColorstr='#91736f', GradientType=1);
    border: transparent;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}

.full-sec-content.about-cntnt-wrp .sec-title.style-two h4 {
    margin-top: 10px;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.color-theme {
    color: #c2251f !important;
}

.sec-title h2 {
    font-size: 25px;
    color: #275b9d;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
}

.sec-title.style-two span.decor {
    border-color: #cd2717;
}

.sec-title span.decor {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #E6E6E6;
    background: #fff;
    display: table;
    position: relative;
    z-index: 1;
    margin: auto;
    right: 29px;
}

.sec-title span.inner {
    width: 6px;
    height: 6px;
    background: #EAEAEA;
    border-radius: 50%;
    display: block;
    margin: auto;
    margin-top: 3px;
}

.sec-title.style-two span.decor .inner {
    background: #cd2717;
}

.sec-title.style-two span.decor:before,
.sec-title.style-two span.decor:after {
    background: #DCDCDC;
}

.sec-title span.decor:before {
    left: 14px;
}

.sec-title span.decor:before,
.sec-title span.decor:after {
    content: '';
    position: absolute;
    top: 5px;
    width: 50px;
    height: 2px;
    background: #E6E6E6;
    z-index: -1;
}

.sec-title.style-two span.decor:before,
.sec-title.style-two span.decor:after {
    background: #DCDCDC;
}

.sec-title.style-two span.decor:after {
    right: -94px;
}

.sec-title span.decor:after {
    right: 14px;
}

.sec-title span.decor:before,
.sec-title span.decor:after {
    content: '';
    position: absolute;
    top: 5px;
    width: 50px;
    height: 2px;
    background: #E6E6E6;
    z-index: -1;
}

.full-sec-content.about-cntnt-wrp .p-fnt {
    margin-bottom: 10px;
    line-height: 28px;
}

.about-cntnt-wrp .wel-ftr-wrp {
    margin-bottom: 30px;
    margin-top: 50px;
}

.welcome-feature li {
    display: inline-block;
    margin-right: 25px;
    padding: 0;
}

.welcome-iconbox .content {
    background-color: #06315A;
    border: 1px solid #fbca00;
    color: #fff;
    display: block;
    height: 96px;
    position: relative;
    text-align: center;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    width: 96px;
}

.welcome-iconbox .content i {
    font-size: 42px;
    line-height: 100px;
}

.welcome-iconbox .content .details {
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: -15px;
}

.welcome-iconbox .content .details a {
    background-color: #fbca00;
    color: #06315A;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 10px;
    margin: 0;
    min-width: 70px;
    padding: 8px 7px;
    text-transform: capitalize;
}

.readmore-btn {
    padding: 15px 20px;
    display: inline-block;
    background: #285b9d;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
    border: transparent;
}

.readmore-btn:hover {
    background: #9a201b;
    /* border: 2px solid #FBCA00; */
    color: #fff;
}

.readmore-btn::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 59px;
    height: 2px;
    background: #ff7c73;
    right: -45px;
}

.working-process .process-box {
    text-align: center;
    margin-bottom: 30px;
}

.working-process .process-box .icon {
    border: 1px solid #c5c5c5;
    display: inline-block;
    height: 130px;
    line-height: 130px;
    position: relative;
    text-align: center;
    width: 130px;
    background-color: #fff;
}

.working-process .process-box:hover .icon {
    background-color: #f8d441;
}

.working-process .process-box .icon:before {
    color: #c5c5c5;
    content: '\f105';
    font-family: "FontAwesome";
    font-size: 26px;
    height: 1px;
    position: absolute;
    right: -94px;
    top: -5px;
}

.working-process .process-box .icon.no-arrow:before {
    color: initial;
    content: none;
    font-family: initial;
    font-size: initial;
    height: auto;
    position: initial;
    right: initial;
    top: initial;
}

.working-process .process-box .icon i {
    color: #c5c5c5;
    font-size: 80px;
    transition: all 0.3s ease-in-out;
    -webkit-all: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.working-process .process-box .icon .process-number {
    background-color: #F8D441;
    color: #000;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    height: 38px;
    left: -38px;
    line-height: 38px;
    position: absolute;
    text-align: center;
    top: 40px;
    width: 38px;
}

.working-process .process-box .icon:after {
    background-color: #c5c5c5;
    content: "";
    height: 1px;
    position: absolute;
    right: -80px;
    top: 60px;
    width: 65px;
}

.working-process .process-box .icon.no-arrow:after {
    background-color: initial;
    content: none;
    height: auto;
    position: initial;
    right: initial;
    top: initial;
    width: auto;
}

.working-process .process-box .title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
    background-color: #06315A;
    padding: 10px 0;
}

.working-process .process-box:hover .title {
    color: #F8D441;
}

.icon img {
    width: 95px;
}

.home-sr-bg {
    /* background-image: url(../img/bg-1.png); */
    display: block;
    background-repeat: no-repeat;
    background-position: top right;
}

.blog-bg {
    /* background-image: url(../img/blog-grid-pattren.png); */
    display: block;
    background-repeat: repeat;
}

.factory-qoute-form {
    margin-top: -71px;
}

.factory-qoute-form form {
    float: right;
    width: 330px;
    background-color: #06315A;
    padding: 87px 33px 25px 33px;
    position: relative;
}

.factory-qoute-form h2 {
    position: absolute;
    right: 0px;
    top: -25px;
    font-size: 20px;
    color: #333333;
    padding: 22px 56px;
    text-transform: uppercase;
    background-color: #FFCD00;
}

.factory-qoute-form h2:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0px;
    border-bottom: 25px solid #d7b217;
    border-left: 10px solid transparent;
}

.factory-qoute-form label {
    color: #c0c0c0;
    font-size: 16px;
    margin-bottom: 27px;
}

.factory-qoute-form .quote-btn {
    float: left;
    padding: 5px 24px 6px 24px;
    color: #272727;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 0px 4px 0px 4px;
    margin-top: 20px;
    background-color: #eee;
    cursor: pointer;
}

.factory-qoute-form .quote-btn:hover {
    background-color: #d7b217;
}

.projects-sections {
    background-color: #ef3131;
    color: #fff;
    padding: 14px;
    border: 6px solid #ec6161;
    border-radius: 6px;
}

.projects-sections:hover {
    background-color: #cf1818;
}

.blue-bg {
    background-color: #870390;
    border: 6px solid #e669ef;
}

.blue-bg:hover {
    background-color: #66056d;
    border: 6px solid #e669ef;
}

.project-title {
    font-size: 17px;
    line-height: 25px;
    text-align: center;
    margin-top: 24px;
}

.service-wrap .projects-sections .col-md-4 {
    padding: 0 15px;
    border-right: 1px solid;
}

.projects-names {
    border-bottom: 1px solid #cccc;
    padding-bottom: 5px;
    margin-bottom: 4px;
    font-size: 12px;
}

.projects-names:last-child {
    border-bottom: none;
}

.testi h3 {
    position: relative;
    margin-top: 15px;
    margin-top: 20px;
}

.testi h3:before {
    position: relative;
}

.container {
    position: relative;
}

.factory-footer-one {
    position: relative;
    background-image: url(../img/footer-patren.png);
    background-color: #2b2b2b;
    background-position: center;
   
}

.factory-footer-one,
.factory-footer-widget,
.factory-footer-logo {
    float: left;
    width: 100%;
}

.factory-footer-widget {
    background-color: transparent;
    padding: 60px 0px 35px 0px;
    position: relative;
}

.factory-footer-widget:before {
    content: '';
    position: absolute;
    left: 0px;
    top: -20px;
    width: 50%;
    height: 20px;
    /* background-color: #c32620; */
}

.factory-footer-logo {
    margin-bottom: 17px;
    background-color: transparent;
}

.widget_info_text p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 26px;
    line-height: 29px;
}

.widget_info_text ul {
    float: left;
    width: 100%;
}

.widget_info_text ul li {
    float: left;
    list-style: none;
    margin: 0px 18px 10px 0px;
}

.widget_info_text ul li a {
    font-size: 19px;
    color: #535353;
}

.factory-widget-title {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.factory-widget-title h2 {
    float: left;
    font-size: 18px;
    margin-bottom: 0px;
    padding-bottom: 5px;
    position: relative;
    color: #ffffff;
    font-weight: 600;
}

.factory-widget-title h3 {
    float: left;
    font-size: 20px;
    margin-bottom: 0px;
    padding-bottom: 5px;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}

.factory-footer-logo h4 {
    color: #FFCD00;
    font-size: 47px;
    margin: 0;
    line-height: 36px;
}

.factory-footer-logo span {
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
    display: block;
    font-style: italic;
}

.factory-widget-title h2:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background-color: #d39814;
}

.widget_latest_news ul,
.widget_latest_news ul li {
    float: left;
    width: 100%;
}

.widget_latest_news figure {
    float: left;
    width: 67px;
    margin-bottom: 0px;
}

figure {
    margin-bottom: 6px;
    position: relative;
}

.widget_latest_news figure~section {
    margin-left: 95px;
    margin-top: -5px;
}

.widget_latest_news section {
    line-height: 1;
}

.widget_latest_news section h6 {
    line-height: 1.5;
    margin-bottom: 7px;
}

.widget_latest_news section time {
    color: #939393;
}

.widget_categories ul:before {}

.widget_categories ul li {
    float: left;
    width: 50%;
    list-style: none;
    line-height: 1;
    padding-bottom: 20px;
}

.widget_categories ul li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.widget_categories ul li a:hover {
    color: #FFCD00;
}

.widget_categories ul li a:before {
    content: "\f101";
    font-family: FontAwesome;
    display: inline-block;
    margin: 0px 18px 0px 0px;
    font-size: 13px;
    color: #d39814;
}

.widget_gallery ul li {
    float: left;
    list-style: none;
    padding: 0px 0px 10px 10px;
    width: 33.333%;
}

.widget_gallery a,
.widget_gallery a img {
    width: 100%;
    float: left;
}

.widget_gallery a,
.widget_gallery a img {
    width: 100%;
    float: left;
}

.factory-copyright-section {
    float: left;
    width: 100%;
    position: relative;
    z-index: 3;
    background-color: transparent;
}

.factory-copyright-text {
    float: left;
    position: relative;
    padding: 15px 12px 15px 0px;
}

.factory-copyright-text:before {
    content: '';
    position: absolute;
    right: -78px;
    top: -6px;
    width: 130%;
    height: 110%;
    -webkit-transform: skewX(-40deg);
    -moz-transform: skewX(-40deg);
    -ms-transform: skewX(-40deg);
    -o-transform: skewX(-40deg);
    transform: skewX(-40deg);
    background-color: #a4221b;
}

.factory-copyright-text p {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 0px;
    position: relative;
}

.factory-copyright-text a {
    color: #e8e8e8;
    font-weight: 500;
}

.factory-copyright-text:after {
    content: '';
    position: absolute;
    left: -118px;
    top: -12px;
    width: 135%;
    height: 7px;
    /* background-color: #b17874; */
}

.footer-social {
    display: block;
    text-align: center;
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    z-index: inherit;
    right: 0;
}

.footer-social a {
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    cursor: pointer;
}

.footer-social a:hover {
    color: #000;
}


/* ==========================================================================
   4.0 CTA Section
   ========================================================================== */

.cta-section {
    background-image: url(../img/cta-bg.php);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 150px 0;
}

.cta-content h2 {
    font-size: 32px;
    color: #fff;
}

.cta-content p {
    color: #ddd;
}


/*CTA Section 2*/

.cta-section-2 {
    background-color: #06315a;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    z-index: 1;
}

.cta-section-2:before,
.cta-section-2:after {
    background-color: #fafafa;
    content: "";
    width: 40%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.cta-section-2:before {
    width: 70%;
    height: 218%;
    top: -204px;
    right: -50px;
    transform: rotate(45deg);
}


/* .cta-section-2:after{
    width: 70%;
    height: 335%;
    top: -145px;
    right: -273px;
    transform: rotate(-45deg);
} */

.cta-section-2 .cta-content h2 {
    color: #fff;
    font-size: 24px;
}

.cta-section-2 .cta-content p {
    color: #fff;
    margin: -4px 0 0;
}

.cta-section-2 .default_btn {
    margin-left: 50px;
}


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

.about-section {
    position: relative;
    padding-bottom: 37px;
}

.about-wrap {
    background-color: #fafafa;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border: 1px dashed #ddd;
    overflow: hidden;
}

.about-wrap img {
    width: 100%;
    margin-bottom: -25px;
}


/*About Wrap Inner Page*/

.about-wrap-2 {}

.about-wrap-2 {
    display: flex;
    align-items: center;
}

.about-wrap-2 img {
    width: 100%;
    border-radius: 5px;
}


/* ==========================================================================
   7.0 Counter Section
   ========================================================================== */

.counter-section {
    background-image: url(../img/counters-bg.php);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 100px 0;
}

.counters {}

.counter-content {
    border: 1px dashed #fff;
    padding: 30px;
}

.counters .counter-content {
    display: block;
    text-align: center;
    color: #fff;
}

.counters .counter-content i {
    font-size: 36px;
}

.counters .counter-content h3 {
    font-size: 32px;
    margin: 10px 0;
    color: #06315a;
    font-weight: 700;
}

.counters .counter-content h4 {
    font-size: 14px;
    margin: 0;
}


/* ==========================================================================
   8.0 Project Section
   ========================================================================== */

.project-section {}

.project-wrapper {}

.project-wrapper .col-lg-4 {
    padding: 15px;
}

.project-wrap {}

.project-filter {
    width: 100%;
}

.project-filter li {
    margin-right: 10px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    background-color: #f7f7f7;
    border: 1px dashed #ddd;
    padding: 10px 15px;
    border-radius: 2px;
    cursor: pointer;
}

.project-filter li.active {
    background-color: #06315a;
    color: #fff;
}

.project-wrap img {
    width: 100%;
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img .hover {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}

.project-img .hover a {
    background-color: #06315a;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
}

.project-img:hover .hover {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.project-wrap .footer {
    background-color: #06315a;
    padding: 15px;
}

.project-wrap .footer a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.project-wrap .footer a:hover {
    text-decoration: line-through;
}

.project-wrap .footer p {
    color: #fff;
}


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

.testimonial-section {}

.testimonial-item {
    background-color: #f3f1f1;
    padding: 14px;
    /* border-radius: 5px; */
    margin-bottom: 20px;
    box-shadow: 0 0 17px;
}

.service-wrap .testimonial-item .col-md-4 {
    padding: 0 11px;
    border-right: 1px solid #ccc;
}

.testimonial-item p {
    margin: 0px;
    font-size: 12px;
}

.testi-footer img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
}

.testi-footer span {
    display: block;
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

.testi-footer h4 {
    padding-left: 10px;
}

.testi-footer {
    display: flex;
    align-items: center;
}


/*Owl Carousel Dots*/

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

.testimonial-carousel .owl-dots .owl-dot {
    background-color: #ddd;
    width: 20px;
    height: 10px;
    border-radius: 12%;
    display: inline-block;
    margin: 0 3px;
    transition: all 0.5s ease-in-out;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    background-color: #06315a;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: all 0.5s ease-in-out;
}


/* ==========================================================================
   10.0 Sponsor Section
   ========================================================================== */

.sponsor-section {
    padding: 20px 0;
}

.sponsor-section .sponsor-item img {
    width: 100%;
    padding: 20px;
    opacity: 0.8;
}

.sponsor-section .sponsor-items li img:hover {
    opacity: 1;
}


/* ==========================================================================
   11.0 Page Header Section
   ========================================================================== */

.page-header {
    background-image: url(../img/page-header.php);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 195px 0 90px;
}

.page-content {
    text-align: center;
    padding-top: 50px;
}

.page-content h2 {
    color: #fff;
}

.page-content p {
    color: #ddd;
}


/*Breadcrumb */

.breadcrumb {
    background-color: transparent;
    padding: 0;
    text-align: center !important;
    display: inline-block;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb li a {
    font-weight: 700;
    color: #ddd;
    text-transform: uppercase;
    font-size: 12px;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb .active {
    color: #06315a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}


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

.blog-section {}

.blog-items {
    border-right: 1px solid #ddd;
    padding-right: 10px;
}

.left-sidebar .blog-items {
    border-right: none;
    border-left: 1px solid #ddd;
    padding-right: 0;
    padding-left: 10px;
}

.blog-post {}

.blog-post img {
    width: 100%;
    margin-bottom: 10px;
}

.blog-post img:hover {
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}

.blog-post .blog-content h3 {
    font-weight: 700;
    font-size: 18px;
}

.blog-post .blog-content a {
    color: #333;
}

.blog-post .blog-content a:hover {
    opacity: 0.8;
}

span.date {
    color: #999;
    font-weight: 700;
    font-size: 10px;
    display: block;
    margin-bottom: 5px;
}

.blog-post .blog-content .post-meta {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #333;
    letter-spacing: -0.2px
}

.blog-post .blog-content .post-meta:hover {
    opacity: 0.8;
    text-decoration: underline;
}


/*Blog List*/

.list-items .blog-post {
    border: 1px solid #eee;
    margin: 0;
    margin-bottom: 15px;
}

.list-items .blog-post img {
    margin-bottom: 0;
}

.list-items .blog-post .col-md-6:first-child {
    padding-left: 0;
}

.list-items .blog-post .blog-content {
    padding: 34px 0;
}


/*Classic List*/

.grid-list,
.list-classic {
    border: none;
}

.list-classic img {
    position: relative;
}

.list-classic .cat {
    position: absolute;
    left: 25px;
    top: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    background-color: rgba(244, 66, 89, 0.8);
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
    border-radius: 3px;
    padding: 5px 10px;
}


/*Single Post Style*/

.single-post {}

.single-post img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.single-post h2 {
    font-weight: 800;
}

.single-post .meta-info {
    margin-bottom: 25px;
}

.single-post .meta-info span {
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 15px;
}

.single-post .meta-info a {
    font-weight: 800;
    color: #777;
}

.single-post .meta-info i {
    color: #777;
}


/*Social Share*/

.share-wrap {
    margin-top: 25px;
    margin-bottom: 50px;
}

.share-wrap h4 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}

.share-icon {
    display: inline-block;
}

.share-icon li {
    display: inline-block;
    margin-right: 10px;
}

.share-icon i {
    margin-right: 5px;
}

.share-icon li:nth-child(1) a {
    background-color: #3B5998;
}

.share-icon li:nth-child(2) a {
    background-color: #1DCAFF;
}

.share-icon li:nth-child(3) a {
    background-color: #DB4A39;
}

.share-icon li:nth-child(4) a {
    background-color: #e4405f;
}

.share-icon li:nth-child(5) a {
    background-color: #0077B5;
}

.share-icon li a {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
}

.share-icon li a:hover {
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}


/*Comments Style*/

.comments_wrapper {
    padding: 20px;
    border: 1px solid #ddd;
}

.comments-wrapper h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
}

.comments-list {
    margin-top: 30px;
    position: relative;
    margin-bottom: 50px;
}


/*Lines Details*/

.comments-list:before {
    content: '';
    width: 2px;
    height: 100%;
    background: #eee;
    position: absolute;
    left: 32px;
    top: 0;
}

.comments-list:after {
    content: '';
    position: absolute;
    background: #eee;
    bottom: 0;
    left: 29px;
    width: 7px;
    height: 7px;
    border: 3px solid #dee1e3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.reply-list:before,
.reply-list:after {
    display: none;
}

.reply-list li:before {
    content: '';
    width: 60px;
    height: 2px;
    background: #eee;
    position: absolute;
    top: 25px;
    left: -55px;
}

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

.comments-list li:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    width: 0;
}

.reply-list {
    padding-left: 88px;
    clear: both;
    margin-top: 15px;
}


/*Avatar*/

.comments-list .comment-avatar {
    width: 65px;
    height: 65px;
    position: relative;
    z-index: 99;
    float: left;
    border: 3px solid #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-right: 10px;
}

.comments-list .comment-avatar img {
    width: 100%;
    height: 100%;
}

.reply-list .comment-avatar {
    width: 50px;
    height: 50px;
}

.comment-main-level:after {
    content: '';
    width: 0;
    height: 0;
    display: block;
    clear: both;
}


/*Comment List*/

.comments-list .comment-box {
    width: 740px;
    float: right;
    position: relative;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.comments-list .comment-box:before,
.comments-list .comment-box:after {
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    display: block;
    border-width: 10px 12px 10px 0;
    border-style: solid;
    border-color: transparent #FCFCFC;
    top: 8px;
    left: -11px;
}

.comments-list .comment-box:before {
    border-width: 11px 13px 11px 0;
    border-color: transparent rgba(0, 0, 0, 0.05);
    left: -12px;
}

.reply-list .comment-box {
    width: 665px;
}

.comment-box .comment-head {
    background: #FCFCFC;
    padding: 10px 12px;
    border-bottom: 1px solid #E5E5E5;
    overflow: hidden;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

.comment-box .comment-head i {
    float: right;
    margin-left: 14px;
    position: relative;
    top: 2px;
    color: #A6A6A6;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.comment-box .comment-head i:hover {
    color: #03658c;
}

.comment-box .comment-name {
    color: #283035;
    font-size: 14px;
    font-weight: 700;
    float: left;
    margin-right: 10px;
}

.comment-box .comment-name a {
    color: #283035;
}

.comment-box .comment-head span {
    float: left;
    color: #999;
    font-size: 13px;
    position: relative;
    top: 1px;
}

.comment-box .comment-content {
    background: #FFF;
    padding: 12px;
    font-size: 15px;
    color: #595959;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.comment-box .comment-name.by-author,
.comment-box .comment-name.by-author a {
    color: #03658c;
}

.comment-box .comment-name.by-author:after {
    content: 'autor';
    background: #03658c;
    color: #FFF;
    font-size: 12px;
    padding: 3px 5px;
    font-weight: 700;
    margin-left: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}


/*Comment Form*/

.comment-form h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
}

.comment-form .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    height: 45px;
    background-color: transparent;
}

.comment-form .form-control.message {
    height: 150px;
}

#form-messages {
    display: none;
}

#form-messages.alert-danger,
#form-messages.alert-success {
    display: block;
}


/* ==========================================================================
   13.0 Sidebar Section
   ========================================================================== */

.sidebar-wrap {
    padding-left: 10px;
}

.left-sidebar .sidebar-wrap {
    padding-right: 10px;
    padding-left: 0;
}

.sidebar-widget h4 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.search-form {
    position: relative;
    margin-left: -2px;
}

.search-form .form-control {
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    clear: #444;
    height: auto;
    padding: 10px 20px;
    border-radius: 3px;
    padding-right: 60px;
}

.search-form .search-btn {
    background-color: transparent;
    font-size: 24px;
    color: #888;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 10px 0;
    opacity: 0.6;
}

.search-form .search-btn:focus,
.search-form .search-btn:hover {
    opacity: 1;
}

.search-form input::-webkit-input-placeholder {
    color: #888 !important;
}

.search-form input:-moz-placeholder {
    /* Firefox 18- */
    color: #888 !important;
}

.search-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #888 !important;
}

.search-form input:-ms-input-placeholder {
    color: #888 !important;
}


/*Category List*/

.cat-list {
    margin-top: -10px;
}

.cat-list li a {
    font-weight: 700;
    font-size: 12px;
    color: #444;
    letter-spacing: -.4px;
    line-height: 3;
    font-style: normal;
}

.cat-list li span {
    font-weight: 700;
    color: #bbb;
    margin-left: 5px;
    font-size: 10px;
}


/*Recent Posts*/

.recent-posts {}

.recent-posts li {
    position: relative;
    padding-left: 90px;
    display: flex;
    align-items: center;
    min-height: 50px;
    margin-bottom: 15px;
}

.recent-posts li a {
    color: #555;
}

.recent-posts li a:hover {
    opacity: 0.8;
}

.recent-posts li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
}

.recent-posts li img:hover {
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}

.recent-posts li h4 {
    text-transform: inherit;
    margin-bottom: 0;
    display: block;
}


/*Tags*/

.tags {
    margin: -3px 0;
}

.tags li {
    display: inline-block;
    float: left;
    margin: 3px;
}

.tags li a {
    display: inline-block;
    font-weight: 700;
    font-size: 10px;
    color: #777;
    background-color: #ddd;
    padding: 5px 15px;
    border-radius: 3px;
}

.tags li a:hover {
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}


/* Pagination
=============== */

.pagination_wrap {}

.pagination_wrap li {
    display: inline-block;
    margin: 0 5px;
}

.pagination_wrap li a {
    border: 1px solid #ddd;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: #777;
    font-weight: 600;
}

.pagination_wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}

.pagination_wrap li a.active {
    background-color: #06315a;
    border: 1px solid #06315a;
    color: #fff;
}


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

.contact-section {
    position: relative;
    z-index: 1;
}

.contact-wrap {
    background-color: #f2f2f2;
    padding: 80px 50px;
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.15);
    margin-top: 110px;
    border-radius: 5px;
}

.contact-section h3 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
}

.contact-info ul li {
    line-height: 40px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #999;
    font-size: 20px;
}

.contact-info ul li {
    font-weight: 600;
    font-size: 12px;
}


/*Contact Form*/

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    height: 45px;
    background-color: transparent;
}

.contact-form .form-control.message {
    height: 150px;
}

#form-messages {
    display: none;
}

#form-messages.alert-danger,
#form-messages.alert-success {
    display: block;
}


/*Google Map*/

#google_map {
    width: 100%;
    height: 350px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}


/* ==========================================================================
   15.0 Widget Section
   ========================================================================== */

.widget-section {
    background-color: #111;
    background-image: url(../img/map.php);
    background-position: right 150px center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.widget-content {}

.widget-content img {
    margin-bottom: 15px;
}

.widget-content p {
    color: #999;
}

.widget-content h3 {
    color: #ddd;
}

.widget-content .social-icon li {
    display: inline-block;
    margin-right: 15px;
}

.widget-content .social-icon li a {
    display: inline-block;
    color: #06315a;
}

.widget-content .social-icon li a:hover {
    color: #fff;
}

.widget-content .widget-link li a {
    color: #777;
    margin-bottom: 16px;
    display: block;
}

.widget-content .widget-link li a:hover {
    color: #06315a;
    text-decoration: underline;
}

.widget-content .address li {
    margin-bottom: 16px;
    display: block;
    color: #777;
}

.widget-content .address li i {
    color: #06315a;
    margin-right: 10px;
}


/* ==========================================================================
   16.0 Footer Section
   ========================================================================== */

.footer-section {
    display: block;
    background-color: #111;
    border-top: 1px solid #222;
    padding: 30px 0;
}

.footer-section .copyright {
    font-size: 12px;
    color: #ddd;
    text-transform: uppercase;
}

.footer-social li {
    display: inline-block;
}

.footer-social li a {
    color: #ddd;
    font-size: 24px;
    text-transform: uppercase;
    margin-left: 0;
}
.footer-social li a.fa-instagram{
    background:#e7266d;
    margin-left:10px;
}
.footer-social span {
    font-size: 20px;
    margin-right: 8px;
    color: #fff;
}


/* .footer-social li:nth-child(2) a {
    background-color: #4777d2;
}

.footer-social li:nth-child(3) a {
    background-color: #A9350E;
}

.footer-social li:nth-child(4) a {
    background-color: #58b2e2;
}

.footer-social li:nth-child(5) a {
    background-color: #3477b5;
}

.footer-social li a:hover {
    color: #ffffff;
    background-color: #000;
} */


/* ==========================================================================
   17.0 Scroll To Top
   ========================================================================== */

#scroll-to-top {
    background-color: #c32620;
    display: none;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 14px;
    line-height: 35px;
    color: #fff;
    position: fixed;
    bottom: 50px;
    right: 18px;
    z-index: 999;
}

#scroll-to-top:hover {
    background-color: #06315a;
    color: #fff;
}

.tp-left {
    padding: 0px;
    background-color: #b42b3b;
    border-radius: 0px 26px 26px 0px;
    background: linear-gradient(to right, #f97c54, #a7340c);
}

.site-branding {
     position: absolute; 
    top: 54px; 
    width: 336px;
}

.tp-right {
    padding: 0px;
    padding-bottom: 9px;
    background-color: #2c64aa;
    background: linear-gradient(to right, #1c408e, #82a2c8);
    border-radius: 26px 0px 0px 26px;
}

.top-social {
    position: fixed;
    z-index: 9;
    bottom: 0;
    width: 120px;
    left: 18px;
    text-align: center;
    /* text-shadow: 0px 0px 1px #000; */
}

.top-social ul li {
    /* float: left; */
}

.top-social span {
    /* float: left; */
    text-transform: uppercase;
    font-size: 20px;
    color: #c24b26;
    font-weight: 600;
}

.top-social ul {
    display: table;
    margin: auto;
    position: relative;
}

.top-social ul::before {
    width: 2px;
    height: 100px;
    content: "";
    position: absolute;
    border-right: 2px solid #ad3810;
    bottom: 155px;
}

.top-social ul li a {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 41px;
    margin-bottom: 7px;
}

.top-social ul li:nth-child(1) a {
    background-color: #4777d2;
}

.top-social ul li:nth-child(2) a {
    background-color: #A9350E;
}

.top-social ul li:nth-child(3) a {
    background-color: #58b2e2;
}

.top-social ul li:nth-child(4) a {
    background-color: transparent;
}
.top-social ul li:nth-child(5) a {
    background-color: #f4338a;
    margin-top:10px;
}
.ts-appontment {
    text-align: center;
}

.ts-appontment .btn {
    animation: blinking 1s infinite;
    border-color: transparent;
    margin: 0 17px;
    margin-top: 5px;
    border-radius: 28px;
    position: relative;
}

.ts-appontment .btn::before,
.ts-appontment .btn::after {
    top: 15px;
}

.ts-appontment .btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    left: -118px;
}

.ts-appontment .btn::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    /* border-bottom: 2px solid #3960a1; */
    right: -118px;
}

@keyframes blinking {
    0% {
        background-color: #8CC738;
    }
    /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
    50%{
      background-color: #55d66b;
      border: 5px solid #126620;
    }
    */
    100% {
        background-color: #284F97;
    }
}

.ts-appontment .btn2 {
    animation: blinking2 1s infinite;
}

@keyframes blinking2 {
    0% {
        background-color: #BD4721;
    }
    /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
    50%{
      background-color: #55d66b;
      border: 5px solid #126620;
    }
    */
    100% {
        background-color: #8CC63B;
    }
}

.top-wraper-section .container {
    max-width: 1300px;
}

.top-wraper-section {
    position: relative;
}

.navbar-fixed-top .site-branding {
    background: #fff;
    width: 282px;
    top: 6px;
}

.navbar-fixed-top .nav-menu {
    top: 28px;
}

.ser-cols,
.ser-cols .col-md-6,
.ser-cols .col-md-12 {
    padding: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-wrap .row {
    margin: 0px;
}

.ser-blocks {
    text-align: center;
    padding: 30px;
    height: 240px;
    display: table-cell;
    width: 1000px;
    vertical-align: middle;
}

.serblock-big {
    padding: 50px;
}

.ser-blocks h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
}

.ser-blocks p {
    color: #fff;
}

.ser-blocks a {
    background-color: #fff;
    color: #000;
    padding: 4px 15px 8px 15px;
    border-radius: 30px;
}

.service-title {
    background-image: url(../img/home-services/ser-title-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.service-title h4 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 65px;
    font-weight: 500;
    transform: rotate(-90deg);
    position: relative;
    top: 177px;
}

.service-title h4 span {
    display: block;
    font-size: 39px;
}

.m-d-services {
    display: none;
}

.ser-bg1 {
    background-image: url(../img/home-services/general-mdecine.jpg);
    background: linear-gradient(45deg, #007bff, #1f4167);
}

.ser-bg2 {
    background-image: url(../img/home-services/ortho.jpg);
    background: linear-gradient(45deg, #ff7479, #822928);
}

.ser-bg3 {
    background-image: url(../img/home-services/gynocology.jpg);
    background: linear-gradient(45deg, #d4a103, #ffd24b);
}

.ser-bg4 {
    background-image: url(../img/home-services/cardiology.jpg);
    background: linear-gradient(45deg, #52f377, #1a8818);
}

.ser-bg5 {
    background-image: url(../img/home-services/neuro.jpg);
    background: linear-gradient(45deg, #ff6ead, #a70a5a);
}

.ser-bg6 {
    background-image: url(../img/home-services/urology.jpg);
    background: linear-gradient(45deg, #63d1ef, #004954);
}

.facilities-testimonilas {
    position: relative;
    padding: 50px 0;
    /* background-color: #f5f5f5; */
    /* background: linear-gradient(to right, #efecec, #f5f5f5); */
    margin-bottom:30px;
}

.facilities-testimonilas::before {
    position: absolute;
    content: "";
    /* background-image: url(../img/facilities.jpg); */
    width: 50%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0px;
}

.facilities-section {
    position: relative;
    right: 0;
    left: 27px;
}

.facilities-section h3 {
    color: #000000;
    font-size: 29px;
    display: table;
    border-bottom: 2px solid;
    margin: auto;
    margin-bottom: 15px;
}

.facilities-section p {
    color: #000;
    font-size: 14px;
    border-left: 5px solid #b7261d;
    padding-left: 19px;
}

.facilitires-blocks {
    padding: 7px 8px;
    /* box-shadow: 0 0 20px #313131; */
    margin-top: 29px;
    text-align: center;
    background-color: #0d295af0;
    background: linear-gradient(to right, #efefef, #ffffff);
    /* box-shadow: 0 0 10px; */
    /* border-bottom: 3px solid #ba2420; */
}

.fac-before-after {
    position: relative;
}

.fac-before-after::before {
    content: "";
    position: absolute;
    width: 226px;
    height: 2px;
    /*border-bottom: 1px solid #ccc;*/
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 201px;
}

.fac-before-after::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 226px;
    /*border-right: 1px solid #ccc;*/
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 87px;
}

.facilitires-blocks.r-f-b {
    background: linear-gradient(to right, #fff, #efefef);
}

.facilitires-blocks h4 {
    color: #ba2420;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
}

.facilitires-blocks p {
    color: #000;
    border-left: none;
    padding-left: 0px;
}

.blog-blocks.first-blog {
    margin-bottom: 20px;
}

.blog-text span {
    display: block;
    margin-top: 12px;
    color: #66ab00;
    font-weight: 600;
}

.blog-text h4 {
    font-size: 20px;
    color: #2960bf;
    font-weight: 500;
}

.blog-text .readmore-btn {
    padding: 11px 20px;
    /* background: #ba2420; */
}

.blog-image img {
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px;
}

.blog-section {
    position: relative;
    left: 0;
}

.blog-text .readmore-btn:hover {
    border-color: transparent;
    color: #fff;
    background: #12315A;
}

.subscribe {
    position: relative;
    padding: 57px 0;
    background-image: url(../img/subscribe.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.subscribe h4 {
    color: #ce261f;
    text-transform: uppercase;
    font-size: 39px;
    display: table;
    margin: auto;
    border-bottom: 3px solid;
    margin-bottom: 7px;
}

.subscribe p {
    color: #131313;
}

.subscribe-section {
    width: 100%;
    max-width: 751px;
    margin: auto;
}

.subscribe-input input {
    width: 86%;
    float: left;
    border-radius: 0px;
    background-color: #000;
    border: 0px;
    color: #fff;
    height: 38px;
}

.subscribe-input .btn {
    float: left;
    border-radius: 0px;
    background-color: #ce2620;
    border-color: #ce2620;
}

.widget_gallery .footer-c ul li {
    float: initial;
    color: #fff;
    width: auto;
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
    padding-left: 49px;
    display: table;
    padding-top: 5px;
}

.widget_gallery .footer-c ul li a {
    color: #fff;
    width: auto;
    margin-right: 13px;
}

.footer-c.factory-widget-title {
    margin-bottom: 9px;
}

.widget_gallery .footer-c ul li:last-child {
    margin-bottom: 0px;
}

.widget_gallery .footer-c ul li i {
    position: absolute;
    left: 0px;
    width: 35px;
    height: 35px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 34px;
    color: #000;
    top: 0;
}

.testimonial {
    margin: 51px 0px 0px 0px;
    text-align: center;
    position: relative;
}

.testimonial .description {
    padding: 11px;
    margin-bottom: 61px;
    border-left: 1px solid #cd595c;
    font-size: 15px;
    color: #000;
    line-height: 25px;
    position: relative;
}

.testimonial .description:before,
.testimonial .description:after {
    content: "";
    width: 20%;
    height: 1px;
    background: #ce5f62;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial .description:after {
    top: auto;
    bottom: 0;
}

.testimonial .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #cd5a5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    position: relative;
}

.testimonial:before,
.testimonial .title:before {
    content: "";
    width: 1px;
    height: 50px;
    background: #d37073;
    margin: 0 auto;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
}

.owl-nav.disabled {
    display: none;
}

.testimonial .title:before {
    top: -60px;
}

.testimonial .pic {
    display: inline-block;
    width: 100px;
    height: 100px;
}

.testimonial .pic img {
    width: 100%;
    height: auto;
}

.testimonial-slide .owl-dots {
    margin-top: 0;
    text-align: center;
}

.testimonial-slide .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: #132f61;
    outline: 2px solid #132f61;
    outline-offset: 2px;
    display: block;
    margin: 0 8px;
    margin-top: 12px;
    opacity: 0.7;
    transition: all 0.3s ease 0s;
}

.testimonial-slide .owl-dots .owl-dot.active span {
    background: #b82425;
    outline: 2px solid #be241e;
}

.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x: 50%;
    -webkit-perspective-origin-y: 50%;
    -moz-perspective: 1200px;
    -moz-perspective-origin-x: 50%;
    -moz-perspective-origin-y: 50%;
    perspective: 1200px;
}


/* fade */

.owl-fade-out {
    z-index: 10;
    -webkit-animation: fadeOut .7s both ease;
    -moz-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease;
}

.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    -moz-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease;
}


/* backSlide */

.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    -moz-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    -moz-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease;
}


/* goDown */

.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    -moz-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    -moz-animation: goDown .6s ease both;
    animation: goDown .6s ease both;
}


/* scaleUp */

.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    -moz-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    -moz-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both;
}


/* Keyframes */


/*empty*/

@-webkit-keyframes empty {
    0% {
        opacity: 1
    }
}

@-moz-keyframes empty {
    0% {
        opacity: 1
    }
}

@keyframes empty {
    0% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
}

@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
}

@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
}

@-webkit-keyframes backSlideIn {
    0%,
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0);
    }
}

@-moz-keyframes backSlideIn {
    0%,
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0);
    }
}

@keyframes backSlideIn {
    0%,
    25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0);
    }
}

@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(.8);
    }
}

@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(.8);
    }
}

@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(.8);
    }
}

@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%);
    }
}

@keyframes goDown {
    from {
        transform: translateY(-100%);
    }
}

@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
}

@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}

.add-image {
    text-align: center;
}

.add-image img {
    width: 380px;
    box-shadow: 0 0 20px;
}

.quote-section {
    background-color: #d8d8d8;
    color: #cc362d;
    font-size: 19px;
    padding: 16px 18px;
    display: table;
    margin: auto;
    margin-top: 0;
    margin-bottom: 32px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.subscri-left-icon,
.subscri-right-icon {
    position: absolute;
}

.subscri-left-icon {
    left: 13rem;
}

.subscri-right-icon {
    right: 13rem;
}

.about-widjet a {
    color: #d39814;
    margin-left: 8px;
}

.app-header h4 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 23px;
    color: #d23521;
}

button.app-close.close {
    background: #e64c38;
    opacity: 1;
    color: #fff;
    padding: 4px 7px 6px 9px;
    margin: 0;
    position: absolute;
    right: -10px;
    top: -24px;
}

.app-dailouge.modal-dialog {
    margin-top: 11%;
    max-width: 600px;
}

.app-content.modal-content {
    background-color: #f5f5f5;
    background-image: url(../img/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    border: 6px solid #ecdcc1;
}

.slider-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider {
    background-position: center;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.slide1 {
    background-image: url(../img/slider/slider-1.jpg);
}

.slide2 {
    background-image: url(../img/slider/slider-2.jpg);
}

.slide3 {
    background-image: url(../img/slider/slider-3.jpg);
}

.slide4 {
    background-image: url(../img/slider/slider-4.jpg);
}

.preloader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    z-index: 999;
    padding-top: 18rem;
}

.loader {
    width: 70px;
    height: 80px;
    margin: 30px auto 0;
    position: relative;
}

.loader .circle {
    background: #fff;
    width: 15px;
    height: 15px;
    margin: 0 auto;
    border-radius: 100%;
    position: relative;
    left: -18px;
    animation: strip-anime 1.2s infinite ease-in-out;
}

.loader .strips {
    width: 70px;
    height: 50px;
    position: absolute;
    top: 10px;
    left: 0;
}

.loader .strips>div {
    background-color: #333;
    width: 10px;
    height: 100%;
    display: inline-block;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.loader .strips .strip1 {
    background: #e84118;
    animation-delay: -1.1s;
}

.loader .strips .strip2 {
    background: #00a8ff;
    animation-delay: -1.1s;
}

.loader .strips .strip3 {
    background: #273c75;
    animation-delay: -1.0s;
}

.loader .strips .strip4 {
    background: #9c88ff;
    animation-delay: -0.9s;
}

.loader .strips .strip5 {
    animation-delay: -0.8s;
    background: #4cd137;
}

@keyframes strip-anime {
    1% {
        top: -20px;
    }
    2% {
        top: 10px;
    }
    5% {
        top: -20px;
    }
    10% {
        left: -15px;
    }
    20% {
        top: -25px;
    }
    30% {
        left: 25px;
        background: #4cd137;
    }
    35% {
        top: 5px;
    }
    45% {
        top: -5px;
    }
    50% {
        top: -5px;
    }
    60% {
        top: -6px;
    }
    70% {
        top: 6px;
    }
    80% {
        top: 6px;
    }
    60% {
        top: -6px;
    }
}

@keyframes stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
    }
}

.about-sec-tile {
    text-align: center;
    margin-bottom: 29px;
}

.about-us-img {
    text-align: center;
}

.about-us-img img {
    width: 419px;
    box-shadow: 0 0 31px;
    margin-top: 17px;
}

.hospital-fa {
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 0 21px #565555;
    border-radius: 4px;
    margin-bottom: 18px;
    margin-top: 16px;
}

.bg1 {
    background-color: #05737A;
}

.bg2 {
    background-color: #689e23;
}

.bg3 {
    background-color: #1E2938;
}

.icons-img img {
    width: 62px;
}

.icons-title {
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}


/***
=============================================
    Working Steps Area style
=============================================
***/

.service-box {
    position: absolute;
    right: 29px;
    text-transform: uppercase;
    top: 94px;
}

.service-box h5 {
    color: #1e2938;
    transform: rotate(0deg);
    font-size: 33px;
    border-bottom: 1px solid #1e2938;
    /* border-top: 1px solid #1e2938; */
    position: relative;
}


/* .service-box h5::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1e2938;
    right: 0;
    top: 0rem;
} */

.ser-img img {
    width: 80px;
    padding-top: 26px;
}

.working-steps-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 27px 0 2px;
}

.working-steps-area::before {
    content: "";
    position: absolute;
    /* background-image: url(../images/services-bg.jpg); */
    background-repeat: no-repeat;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.single-working-steps-box {
    position: relative;
    display: inline-block;
    float: left;
    max-width: 200px;
    width: 100%;
    margin: 18px auto 10px;
    margin-right: 26px;
    height: 236px;
}

.single-working-steps-box:last-child {
    margin-right: 0;
}

.single-working-steps-box:before {
    position: absolute;
    top: 0;
    right: -36px;
    background: url(../img/home-services/star.png);
    background-repeat: no-repeat;
    width: 43px;
    height: 41px;
    content: "";
    bottom: 0;
    margin: 57px 0;
}

.single-working-steps-box:last-child:before {
    display: none;
}

.sec-title h3 {
    color: #679e24;
}

.sec-title .title {
    font-size: 32px;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    display: table;
    margin: auto;
    margin-bottom: 17px;
    border-bottom: 2px solid;
    padding-bottom: 8px;
}

.single-working-steps-box .icon-holder {
    position: relative;
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border: 10px solid #dedfe1;
    border-radius: 50%;
    transition: all 0.5s ease-in-out 0s;
    box-shadow: 0 0 16px #524f4f;
}

.single-working-steps-box:hover .icon-holder {}

.single-working-steps-box .icon-holder span:before {
    color: #ff662a;
    font-size: 60px;
    line-height: 170px;
    transition: all 500ms ease;
    transition-delay: .2s;
    display: block;
    transition: all 0.8s ease-in-out .3s;
}

.single-working-steps-box:hover .icon-holder span:before {
    color: #1a1e32;
}

.single-working-steps-box .icon-holder .count {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 60px;
    height: 60px;
    background: #1fc6c7;
    border: 2px solid #1fc6c7;
    border-radius: 50%;
    transition: all 0.5s ease-in-out 0s;
}

.single-working-steps-box:hover .icon-holder .count {
    background: #ff662a;
    border-color: #f4591d;
    color: #ffffff;
    transition: all 0.5s ease-in-out 0s;
    transform-style: preserve-3d;
    transform: perspective(0px) rotateX(0deg) rotate(360deg);
}

.single-working-steps-box .icon-holder .count h5 {
    display: block;
    padding: 18px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.single-working-steps-box .text-holder {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-working-steps-box .text-holder h4 {
    font-size: 17px;
    line-height: 30px;
    margin: 0 0 24px;
}

.single-working-steps-box .text-holder h4 a {
    color: #1a1e32;
    transition: all 0.8s ease-in-out .3s;
}

.single-working-steps-box:hover .text-holder h4 a {
    color: #ff662a;
}

.single-working-steps-box .text-holder p {
    margin: 0;
}

.service-box span {
    display: block;
    border-top: 1px solid;
    color: #ce2620;
}

.test-h h2 {
    display: table;
    margin: auto;
    border-bottom: 2px solid;
}

.about-widjet {
    /* text-align: center; */
}

.about-widjet img {
    background-color: #fff;
    padding: 10px;
    width: 245px;
}

.inner-content {
    min-height: 44vh;
    padding: 40px 0;
}

section.brewad-cumb-section {
    text-align: center;
    padding: 110px 0 32px 0;
    background-image: url(../img/blog-grid-pattren.png);
}

.brewad-cumb-section h1 {
    font-weight: 600;
    font-size: 25px;
}

.brad-cumb {
    display: table;
    margin: auto;
    font-weight: 600;
    background: #fff;
    padding: 6px 7px;
    box-shadow: 0 0 10px #b1b0b0;
}

.brad-cumb li {
    float: left;
    margin: 0 9px;
    font-size: 16px;
    color: #204b91;
}

.brad-cumb li a {
    color: #CC542E;
    position: relative;
    margin-right: 15px;
}

.brad-cumb li a::before {
    font-family: 'FontAwesome';
    content: "\f178";
    position: absolute;
    color: #c9522d;
    right: -24px;
}

.about-text h2 {
    color: #285d9d;
    font-weight: 600;
    display: table;
    border-bottom: 2px solid;
}

.about-text h2 span {
    color: #c9522d;
}

.inner-about-image {
    margin-top: -111px;
    box-shadow: 0 0 10px;
}

.mv-ser.serviceBox {
    text-align: center;
    position: relative;
    margin-top: 42px;
}

.mv-ser.serviceBox .service-icon {
    display: inline-block;
    width: 85px;
    height: 85px;
    line-height: 55px;
    border-radius: 50%;
    border: 3px solid #f5f5f5;
    background-color: #e53947;
    box-shadow: 0 0 10px #000;
    padding: 5px;
    margin-bottom: 12px;
    font-size: 50px;
    color: #fff;
    z-index: 1;
    position: relative;
    transition: all 0.5s ease 0s;
}

.mv-ser.serviceBox .service-icon img {
    width: 47px;
}

.mv-ser.serviceBox:hover .service-icon {
    transform: rotateY(360deg);
}

.contact-form-info-c {
    text-align: center;
}

.mv-ser.serviceBox .service-icon:before {
    content: "";
    background: #e53947;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    z-index: -1;
    transition: all 0.5s ease 0.5s;
}

.mv-ser.serviceBox:hover .service-icon:before {
    transform: rotateX(360deg);
}

.mv-ser.serviceBox .service-content {
    padding: 2px 15px 2px;
    border-bottom: 3px solid #e53947;
    border-left: 2px solid transparent;
    color: #000000;
    line-height: 27px;
    position: relative;
    background-color: #f5f5f5;
    box-shadow: 0 25px 18px -9px #b7b5b5;
}

.mv-ser.serviceBox .service-content:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: transparent;
    margin: 0 auto;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
}

.mv-ser.serviceBox .service-content:after {
    content: "";
    width: 3px;
    height: 70px;
    background: #e53947;
    margin: 0 auto;
    position: absolute;
    top: -54px;
    left: 0;
    right: 0;
}

.mv-ser.serviceBox .title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: #e53947;
    border-radius: 10px;
    padding: 7px 5px;
    margin: 0 0 10px 0;
    margin: auto;
    margin-bottom: 10px;
    display: table;
    text-transform: uppercase;
    width: 133px;
    position: relative;
}

.mv-ser.serviceBox.green .service-icon {
    border-color: #f5f5f5;
    background-color: #93aa00;
}

.mv-ser.serviceBox.green .service-icon:before,
.mv-ser.serviceBox.green .service-content:before,
.mv-ser.serviceBox.green .service-content:after,
.mv-ser.serviceBox.green .title {
    background: #93aa01;
}

.mv-ser.serviceBox.green .service-content {
    border-bottom: 3px solid #93aa00;
    border-left-color: transparent;
}

.mv-ser.serviceBox.blue .service-icon {
    border-color: #f5f5f5;
    background-color: #02a2ad;
}

.mv-ser.serviceBox.blue .service-icon:before,
.mv-ser.serviceBox.blue .service-content:before,
.mv-ser.serviceBox.blue .service-content:after,
.mv-ser.serviceBox.blue .title {
    background: #02a2ad;
}

.mv-ser.serviceBox.blue .service-content {
    border-bottom: 3px solid #02a2ad;
    border-left-color: transparent;
}

.mv-ser.serviceBox.orange .service-icon {
    border-color: #eb700c;
}

.mv-ser.serviceBox.orange .service-icon:before,
.mv-ser.serviceBox.orange .service-content:before,
.mv-ser.serviceBox.orange .service-content:after,
.mv-ser.serviceBox.orange .title {
    background: #eb700c;
}

.mv-ser.serviceBox.orange .service-content {
    border-color: #eb700c;
    border-left-color: transparent;
}

@media only screen and (max-width: 990px) {
    .mv-ser.serviceBox {
        margin-bottom: 30px;
    }
}


/*fancybox*/

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    vertical-align: top
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020
}

.fancybox-skin {
    position: relative;
    background: #BF2100;
    color: #444;
    padding: 5px !important;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fancybox-opened {
    z-index: 8030
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
}

.fancybox-outer,
.fancybox-inner {
    position: relative
}

.fancybox-inner {
    overflow: hidden
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap
}

.fancybox-image,
.fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
    background-image: url(../img/fancybox_sprite.png)
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: .8;
    cursor: pointer;
    z-index: 8060
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url(../img/fancybox_loading.gif) center center no-repeat
}

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url(blank.php);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    z-index: 8040
}

.fancybox-prev {
    left: 0
}

.fancybox-next {
    right: 0
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px
}

.fancybox-nav:hover span {
    visibility: visible
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important
}

.fancybox-lock {
    overflow: hidden !important;
    width: auto
}

.fancybox-lock body {
    overflow: hidden !important
}

.fancybox-lock-test {
    overflow-y: hidden !important
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url(../img/fancybox_overlay.png)
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll
}

.fancybox-title {
    visibility: hidden;
    font: 400 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050
}

.fancybox-opened .fancybox-title {
    visibility: visible
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent;
    background: rgba(0, 0, 0, .8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #FFF;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff
}

.fancybox-title-inside-wrap {
    padding-top: 10px
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8)
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
    #fancybox-loading,
    .fancybox-close,
    .fancybox-prev span,
    .fancybox-next span {
        background-image: url(../img/fancybox_sprite%402x.png);
        background-size: 44px 152px
    }
    #fancybox-loading div {
        background-image: url(../img/fancybox_loading%402x.gif);
        background-size: 24px 24px
    }
}

.box {
    text-align: center;
    /* border: 4px solid #b7cadd; */
    overflow: hidden;
    /* box-shadow: 0px 0px 2px 3px #989494; */
    position: relative;
}

.box:before {
    content: '';
    background-image: repeating-linear-gradient(-30deg, #f47850, #d75e36 5%, #ac3810 10%);
    width: 120%;
    height: 140%;
    border-radius: 25px;
    box-shadow: 0 0 15px #000;
    opacity: 0.7;
    transform: rotate(0deg);
    position: absolute;
    top: 0;
    right: 155%;
    z-index: 1;
    transition: all .7s;
}

.box:hover:before {
    transform: rotate(55deg);
    right: -60%;
}

.box img {
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.box:hover img {
    transform: rotate(10deg) scale(1.3);
}

.box .box-content {
    width: 60%;
    opacity: 0;
    transform: translateY(-50%) rotate(-55deg);
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    transition: all .7s;
}

.box:hover .box-content {
    opacity: 1;
    transform: translateY(-50%) rotate(0deg);
}

.box .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 3px #000;
    margin: 0 0 3px 0;
}

.mar-b {
    margin-bottom: 20px;
}

.box .post {
    color: #fff;
    font-size: 16px;
    font-style: italic;
    text-transform: capitalize;
    text-shadow: 0 0 3px #000;
}

.box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 10px;
    left: 5px;
}

.box .icon li {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s;
}

.box:hover .icon li:nth-child(1) {
    transition-delay: 0.15s;
}

.box:hover .icon li:nth-child(2) {
    transition-delay: 0.25s;
}

.box:hover .icon li {
    opacity: 1;
    transform: translateY(0);
}

.box .icon li a {
    color: #fff;
    background-color: #6a3093;
    line-height: 30px;
    height: 35px;
    width: 35px;
    margin: 0 0 10px;
    border: 2px solid #fff;
    box-shadow: 3px 3px 5px #555;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}

.box .icon li a:hover {
    color: #6a3093;
    background-color: #fff;
    border-color: #6a3093;
}

@media only screen and (max-width: 990px) {
    .box {
        margin: 0 0 30px;
    }
}

@media only screen and (max-width: 479px) {
    .box .title {
        font-size: 18px;
    }
    .box .post {
        font-size: 15px;
    }
}

.contact-address {
    text-align: center;
    background-color: #f5f5f5;
    background: linear-gradient(to right, #e8e8e8, #f6f6f6);
    padding: 0px 20px;
    min-height: inherit;
    margin-bottom: 17px;
    display: table-cell;
    vertical-align: middle;
    height: 190px;
    width: 367px;
    position: relative;
    box-shadow: 0 25px 18px -9px #b7b5b5;
}

.contact-address i {
    width: 50px;
    height: 50px;
    background-color: #000;
    background: linear-gradient(to right, #c34c27, #446ba8);
    color: #fff;
    font-size: 33px;
    line-height: 45px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px #000;
    border: 3px solid;
    /* display: table; */
    margin: auto;
    /* margin-top: 0; */
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: -22px;
    right: 0;
}

.contact-address p {
    color: #000;
    margin: 0;
}

.contact-address p a {
    display: block;
    color: #000;
    font-size: 17px;
    margin-top: 10px;
}

.contact-info-c .contact-address:nth-child(1):before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100px;
    border-right: 2px dashed #ccc;
    right: -32px;
    top: 41px;
}

.contact-info-c .contact-address.last-c-add:before {
    content: none;
}

.contact-form-info-c h3 {
    display: table;
    color: #c64e29;
    border-top: 2px solid #274d96;
    border-bottom: 2px solid #c64e29;
    margin: auto;
    margin-top: 59px;
    margin-bottom: 18px;
    font-size: 25px;
}

.contact-form-info-c textarea {
    height: 100px;
}

.contact-form-info-c .form-control {
    background-color: #274d95;
    color: #fff;
}

.contact-form-info-c .form-control::placeholder {
    color: #fff !important;
}

.contact-form-info-c .btn {
    margin-top: 30px;
}

.map {
    position: relative;
}

.map h4 {
    position: absolute;
    bottom: 9px;
    right: 0;
    background: linear-gradient(to right, #f97c54, #a7340c);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 21px;
    font-size: 19px;
    border-radius: 18px 0px 0px 18px;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: transparent;
    box-shadow: 0 0 10px #4c4c4c;
    padding: 9px;
    margin-top: 39px;
   
}


/*services*/

.service-menu {
    padding: 10px;
}

.service-menu li {
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px dashed #86c227;
    /* background-color: #4f71ab; */
    border-radius: 10px 10px;
    box-shadow: 0px 6px 7px -5px #737272;
}

.service-menu li a {
    color: #a8350d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: inherit;
}

.services-content h2 {
    color: #1f4390;
    font-weight: 500;
    padding-left: 5px;
    border-left: 3px solid #a8350d;
}

.service-list li {
    position: relative;
    color: #555555;
    padding-left: 30px;
    margin-bottom: 5px;
    margin-top: 5px;
}


/* .services-content h2::after {
    content: "";
    position: absolute;
    background-color: #a9360e;
    width: 79px;
    height: 2px;
    top: 10px;
    left: 240px;
} */

.service-menu .active {
    background-color: #a8350d;
    border: none;
}

.service-menu .active a {
    color: #fff;
}


/* .services-content h2::before {
    content: "";
    position: absolute;
    background-color: #82c229;
    width: 57px;
    height: 2px;
    top: 17px;
    left: 240px;
} */

.service-list li::before {
    content: "";
    position: absolute;
    background-image: url(../img/icon-img.png); 
    width: 100%;
    height: 100%;
    left: 0px;
    background-size: 22px;
    background-repeat: no-repeat;
    list-style-type:square;
}

.inner-content h3 {
    color: #aa360e;
    font-size: 20px;
}

.contact1 h3 {
    color: #dc074c;
    font-size: 20px;
    border-bottom: 1px solid;
    width: min-content;
    text-align: center;
    margin: auto;
    margin-bottom: 14px;
}

.services-content h4 {
    color: #67a00d;
    font-size: 18px;
    margin: 17px 0 11px 0;
}

.carees-text {
    text-align: center;
}

.carees-text h2 {
    display: table;
    margin: auto;
    margin-bottom: 11px;
    color: #2a5097;
    font-weight: 600;
    border-bottom: 2px solid;
}

.carees-text p {}

ul.service-list {
    margin-bottom: 18px;
}

ol.service-list {
    list-style-type: none;
}

h4.j-opp-title {
    background-color: #f5f5f5;
    margin: auto;
    text-align: center;
    margin-top: 13px;
    padding: 7px 0;
    font-size: 21px;
    color: #cf5631;
    border-top: 2px solid;
}

.carres-table-header th {
    text-transform: uppercase;
    color: #d25934;
}

.jobApp-content.modal-content {
    background-image: url("../img/footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    border: 6px solid #ccc;
}

.jobApp-dialog.modal-dialog {
    margin-top: 13%;
}

.job-app-title {
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    display: table;
    color: #204B91;
    font-size: 21px;
}

.jobApp-content.modal-header {
    display: block;
    padding-bottom: 0;
}

.jobApp-content p {
    width: 100%;
    text-align: center;
}

.job-full-desription th {
    background: linear-gradient(to right, #1c408e, #82a2c8);
    color: #fff;
}

button.job-Appclose.close {
    position: absolute;
    right: 0;
    background-color: red;
    opacity: 1;
    padding: 4px 5px 5px 8px;
    color: #fff;
    top: 0;
}

.dzForm {
    border: 1px solid #ccc;
    padding-bottom: 25px;
    position: relative;
    top: 12px;
}

.contact-section {
    padding-top: 60px;
}

.dzForm h4 {
    background-color: #f5f5f5;
    margin: auto;
    text-align: center;
    margin-top: 0;
    padding: 7px 0;
    font-size: 21px;
    color: #274d96;
    border-top: 2px solid;
}

.dzForm .default-form {
    margin: 0;
    padding: 20px 0;
    padding-top: 33px;
}

.dzForm .form-group {
    margin-bottom: 24px;
}

.facilities-box.serviceBox {
    text-align: center;
    margin-bottom: 23px;
    background-color: #f5f5f5;
    padding: 13px 0;
    border-top: 3px solid #f9594f;
    box-shadow: 0px 8px 7px -5px #b9b8b8;
}

.facilities-box.serviceBox .service-icon {
    display: inline-block;
    width: 67px;
    height: 67px;
    border-radius: 50%;
    margin-bottom: 61px;
    position: relative;
}

.facilities-box.serviceBox .service-icon:before {
    content: "";
    background: #f5f5f5;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    z-index: -1;
    box-shadow: 0 0 10px #a2a2a2;
}

.facilities-box.serviceBox .service-icon:after {
    content: "";
    width: 4px;
    height: 38px;
    background: #a0cf5e;
    margin: 0 auto;
    position: absolute;
    bottom: -48px;
    left: 0;
    right: 0;
    transition: all 0.3s ease 0s;
}

.facilities-box.serviceBox:hover .service-icon:after {
    height: 45px;
}

.facilities-box.serviceBox .service-icon i {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    line-height: 80px;
    background: #fff;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.5);
    font-size: 35px;
    color: #0fb513;
    position: absolute;
    top: 0;
    left: 0;
}

.facilities-box.serviceBox .title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: inherit;
    color: #cb362d;
    text-transform: uppercase;
    margin: auto;
    position: relative;
}

.facilities-box.serviceBox .title:before {
    content: "";
    /* width: 20px; */
    /* height: 20px; */
    border-radius: 50%;
    /* background: #fff; */
    /* padding: 5px; */
    /* margin: 0 auto; */
    /* border: 5px solid #83c423; */
    /* box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.5); */
    /* position: absolute; */
    /* top: -30px; */
    /* left: 0; */
    /* right: 0; */
}

.facilities-box.serviceBox .description {
    font-size: 15px;
    color: #6f6f6f;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 0;
}

.facilities-box.serviceBox.pink .service-icon i {
    color: #d41271;
}

.facilities-box.serviceBox.yellow .service-icon i {
    color: #fba21a;
}

.facilities-box.serviceBox.blue .service-icon i {
    color: #05b4b7;
}

.facilities-box.serviceBox.pink .service-icon:before,
.facilities-box.serviceBox.pink .service-icon:after {
    background: #d41271;
}

.facilities-box.serviceBox.yellow .service-icon:before,
.facilities-box.serviceBox.yellow .service-icon:after {
    background: #fba21a;
}

.facilities-box.serviceBox.blue .service-icon:before,
.facilities-box.serviceBox.blue .service-icon:after {
    background: #05b4b7;
}

.facilities-box.serviceBox.pink .title:before {
    border: 5px solid #d41271;
}

.facilities-box.serviceBox.yellow .title:before {
    border: 5px solid #fba21a;
}

.facilities-box.serviceBox.blue .title:before {
    border: 5px solid #05b4b7;
}

@media only screen and (max-width: 990px) {
    .facilities-box.serviceBox {
        margin-bottom: 30px;
    }
}

.facilities-text {
    margin-bottom: 40px;
    padding: 12px 20px;
    text-align: center;
    background: #26599a;
    color: #fff;
    border-radius: 0px;
    border: transparent;
    margin-top: 0;
}

.main-timeline {
    margin-top: 0px;
}

.testimonila-titile {
    display: table;
    margin: auto;
    background-color: #06315a;
    color: #fff;
    position: relative;
    padding: 7px 12px;
    font-size: 21px;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.main-timeline:before {
    content: '';
    height: 85%;
    width: 2px;
    border: 2px dashed #d8d8d8;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0px;
}

.main-timeline .timeline {
    width: 47%;
    padding: 85px 70px 0 25px;
    margin: 0 0px 0 0;
    float: left;
    position: relative;
    text-align: right;
}

.main-timeline .timeline-content {
    padding: 6px 15px 6px 29px;
    border: 2px solid #00A79B;
    border-radius: 15px 0 15px 15px;
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 524px;
    height: 160px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px #000;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:after {
    content: '';
    background-color: #00A79B;
    height: 18px;
    width: 15px;
    position: absolute;
    right: -15px;
    top: -2px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

.main-timeline .timeline-year {
    color: #fff;
    background-color: #00A79B;
    font-size: 31px;
    font-weight: 900;
    text-align: center;
    line-height: 55px;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    position: absolute;
    right: -60px;
    top: -53px;
}

.main-timeline .timeline-year:after {
    content: '';
    height: 85px;
    width: 85px;
    border: 8px solid #00A79B;
    border-left-color: transparent;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-20deg);
    position: absolute;
    left: 50%;
    top: 50%;
}

.main-timeline .timeline-icon {
    color: #fff;
    background-color: #00A79B;
    font-size: 17px;
    text-align: center;
    line-height: 33px;
    height: 35px;
    width: 113px;
    border-radius: 27px;
    transform: rotate(-90deg);
    position: absolute;
    top: 36%;
    left: -57px;
    transition: all 0.3s;
}

.main-timeline .timeline-icon i {
    margin-right: 3px;
}

.main-timeline .title {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    margin: 0 0 7px 0;
}

.main-timeline .description {
    color: #222;
    font-size: 15px;
    /* letter-spacing: 1px; */
    /* text-align: right; */
    margin: 0 0 5px;
}

.main-timeline .timeline:nth-child(even) {
    padding: 85px 25px 0 70px;
    margin: 0 0 0 50px;
    float: right;
    text-align: left;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 15px 29px 15px 15px;
    border-radius: 0 15px 15px 15px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
    transform: rotateY(180deg);
    right: auto;
    left: -15px;
}

.main-timeline .timeline:nth-child(even) .timeline-year {
    right: auto;
    left: -60px;
}

.main-timeline .timeline:nth-child(even) .timeline-year:after {
    transform: translateX(-50%) translateY(-50%) rotate(200deg);
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: -57px;
}

.timeline:nth-child(4n+2) .timeline-content,
.timeline:nth-child(4n+2) .timeline-year:after {
    border-color: #ffcd00;
}

.timeline:nth-child(4n+2) .timeline-year:after {
    border-left-color: transparent;
}

.timeline:nth-child(4n+2) .timeline-content:after,
.timeline:nth-child(4n+2) .timeline-icon,
.timeline:nth-child(4n+2) .timeline-year {
    background-color: #ffcd00;
}

.timeline:nth-child(4n+3) .timeline-content,
.timeline:nth-child(4n+3) .timeline-year:after {
    border-color: #f24f0e;
}

.timeline:nth-child(4n+3) .timeline-year:after {
    border-left-color: transparent;
}

.timeline:nth-child(4n+3) .timeline-content:after,
.timeline:nth-child(4n+3) .timeline-icon,
.timeline:nth-child(4n+3) .timeline-year {
    background-color: #f24f0e;
}

.timeline:nth-child(4n+4) .timeline-content,
.timeline:nth-child(4n+4) .timeline-year:after {
    border-color: #0870C5;
}

.timeline:nth-child(4n+4) .timeline-year:after {
    border-left-color: transparent;
}

.timeline:nth-child(4n+4) .timeline-content:after,
.timeline:nth-child(4n+4) .timeline-icon,
.timeline:nth-child(4n+4) .timeline-year {
    background-color: #0870C5;
}

@media screen and (max-width: 767px) {
    .main-timeline:before {
        display: none;
    }
    .main-timeline .timeline {
        width: 100%;
        padding-top: 80px;
        padding-right: 12px;
        margin-bottom: 20px;
    }
    .main-timeline .timeline:nth-child(even) {
        padding-left: 10px;
        padding-top: 80px;
        margin-bottom: 20px;
    }
    .main-timeline .timeline-content,
    .main-timeline .main-timeline .timeline:nth-child(even) .timeline-content {
        background-color: #fff;
        padding-top: 25px;
    }
    .main-timeline .timeline-content:after {
        display: none;
    }
    .main-timeline .timeline-year {
        font-size: 24px;
        line-height: 70px;
        height: 70px;
        width: 70px;
        right: 0;
        top: -65px;
    }
    .main-timeline .timeline-year:after {
        display: none;
    }
    .main-timeline .timeline:nth-child(even) .timeline-year {
        left: 3px;
    }
}

@media screen and (max-width: 567px) {
    .main-timeline .title {
        font-size: 18px;
    }
}

.email-signature {
    background: #fbfbfb;
    /* font-family: 'Roboto Condensed', sans-serif; */
    padding: 50px 20px 15px 120px;
    box-shadow: 8px 13px 27px rgba(0, 0, 0, 0.37);
    overflow: hidden;
    position: relative;
    margin-bottom: 41px;
}

.email-signature:before {
    content: "";
    /* background: linear-gradient(to right, #bbbbbb 49%, #d8d8d8 50%); */
    width: 18px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.email-signature .signature-img {
    background: #fff;
    width: 140px;
    height: 140px;
    padding: 3px;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 0 10px #000;
    overflow: hidden;
    position: absolute;
    top: 15px;
    left: 30px;
    z-index: 1;
}

.email-signature .signature-img img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.email-signature .signature-details {
    color: #fff;
    background: linear-gradient(to right, #ac3810, #ef764f);
    text-align: left;
    padding: 15px 23px 15px 81px;
    display: table;
    margin-bottom: 20px;
    border-right: 15px solid #d8d8d8;
}

.email-signature .title {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    color: #fff;
    margin: 0;
}

.email-signature .title span {
    text-transform: initial;
    font-size: 20px;
    color: #ffcd00;
}

.email-signature .post {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
}

.email-signature .signature-content {
    padding: 4px 10px 0 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.email-signature .signature-content:before,
.email-signature .signature-content:after {
    content: "";
    background: #2980b9;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -25px;
}

.email-signature .signature-content:after {
    background: #89c532;
    height: 80%;
    top: 20px;
    left: -35px;
}

.email-signature .signature-content li {
    color: #000000;
    font-size: 14px;
    margin: 0 0 10px;
    display: block;
    line-height: 29px;
}

.email-signature .signature-content li span {
    color: #f1c40f;
    font-size: 20px;
    text-align: center;
    line-height: 23px;
    height: 23px;
    width: 25px;
    margin: 2px 2px 0 0;
}

@media screen and (max-width: 576px) {
    .email-signature {
        padding: 200px 0 15px;
    }
    .email-signature:before {
        background: linear-gradient(to bottom, #f39c12 49%, #f1c40f 50%);
        width: 100%;
        height: 15px;
    }
    .email-signature .signature-img {
        margin: 0 auto;
        top: 26px;
        left: 0;
        right: 0;
    }
    .email-signature .signature-details {
        padding: 10px;
        border-right: none;
    }
    .email-signature .signature-content {
        text-align: center;
        padding: 0;
    }
    .email-signature .signature-content:before,
    .email-signature .signature-content:after {
        width: 60%;
        height: 4px;
        transform: translateX(-50%);
        top: -103px;
        left: 50%;
    }
    .email-signature .signature-content:after {
        width: 45%;
        top: -112px;
    }
}

.other-team-members {
    text-align: center;
    margin-bottom: 30px;
    /* display: table-cell; */
    /* vertical-align: middle; */
    min-height: auto;
    /* border: 1px solid #ccc; */
    box-shadow: 0px 6px 9px rgba(132, 128, 128, 0.37);
}

.other-team-members h3 {
    margin: 0;
    text-transform: uppercase;
    background: #295bad;
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    padding: 5px 0;
}

.other-team-members span {
    font-size: 14px;
    text-transform: initial;
    color: #68a510;
    font-weight: 600;
    display: table-cell;
    background-color: #f3f3f3;
    padding: 2px 7px;
    vertical-align: middle;
    width: 400px;
    height: 50px;
}

.team-text {
    padding: 10px;
    /* vertical-align: middle; */
    /* display: table-cell; */
    /* width: 400px; */
    /* min-height: 260px; */
    font-size: 13px;
    color: #000;
}

.news-heading {
    margin-bottom: 22px;
    /* text-align: center; */
}

.news-heading h3 {
    margin: 20px 0 3px 0;
}

.news-events-section {
    background-color: #f5f5f5;
    padding: 0 24px;
    margin-bottom: 33px;
    box-shadow: 0 0 10px #9c9c9c;
}

.news-heading p {}

.video-box iframe {
    width: 100%;
    height: 200px;
    border: 7px solid #ccc;
    margin-bottom: 20px;
}

.testimonial-form {
    text-align: center;
    padding: 17px;
    background-color: #f5f5f5;
    margin-top: 53px;
    box-shadow: 0 0 10px;
}

.testimonial-form .form-control {
    background-color: #fff;
}

h4.consultants-title {
    display: table;
    margin: auto;
    text-transform: uppercase;
    font-size: 25px;
    color: #b54019;
    border-bottom: 2px solid;
    margin-bottom: 18px;
    margin-top: 19px;
}

.footer-d {
    position: absolute;
    left: 148px;
}

.top-header .top-right li a {
    position: relative;
}


/* .top-header .top-right li:nth-child(1) a::before{
    content: "";
    width: 2px;
    height:30px;
    background-color: #fff;
    position: absolute;
} */

.head-border {
    border-right: 1px solid #fff;
}

.ent-ser img {
    padding-top: 18px;
    width: 66%;
}

.contact-num a {
    font-size: 17px;
    color: #000;
}

.header-gap {
    position: absolute;
    right: 10px;
    top: -4px;
}

.doc-img {
    text-align: center;
    width: 100%;
    border: 1px solid #f5f5f5;
    box-shadow: inset 0px 0px 10px #ccc;
    padding: 10px;
}

.doc-img img {
    box-shadow: 1px 5px 10px #cac8c8;
    width: 92%;
}

.doc-img h3 {
    margin-bottom: 0px;
    margin-top: 10px;
    font-size: 18px;
}

.doc-img h5 {
    margin-bottom: 0px;
}

.doc-img h4 {
    margin-top: 0px;
}

.doctor-details .title {
    font-size: 20px;
    color: #A8350D;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0px;
}

.doctor-details p {
    color: #1E428F;
    font-size: 14px;
    text-align: center;
}

.doctor-model .modal-content {
    border: 4px solid #1D418F;
    border-radius: 25px;
    background-image: url(../img/facilities.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.doctor-model .modal-header {
    padding: 5px 20px;
    border: none;
}

.doctor-model .close {
    color: #a8350d;
    opacity: 1;
    font-size: 35px;
}

.doctor-model {
    max-width: 600px;
    margin: 8.75rem auto;
}

.doctor-details .title span {
    font-size: 17px;
    display: block;
    color: #84AA24;
}

.right-navigation {
    position: fixed;
    right: 0px;
    top: 49%;
    z-index: 9;
}

.r-n-title {
    transform: rotate(-90deg);
    position: absolute;
    right: -92px;
    width: 218px;
    /*background: linear-gradient(to right, #245396, #ca261d);*/
    color: #fff;
    padding: 5px 12px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    animation: blinking3 1s infinite;
}

@keyframes blinking3 {
    0% {
        background-color: #245396;
    }
    /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
    50%{
      background-color: #55d66b;
      border: 5px solid #126620;
    }
    */
    100% {
        background-color: #ca261d;
    }
}

.locations-block {
    position: absolute;
    width: 390px;
    min-height: 262px;
    right: -403px;
    background: linear-gradient(to right, #1c408e, #122444);
    transition: all ease .3s;
    top: -260px;
    padding: 14px;
    text-align: center;
    border: 5px solid #ccc;
    z-index: 9999;
}

.contact-box {
    box-shadow: 0px 0px 10px #bdbbbb;
}

.right-location-nav .locations-block {
    right: 0px;
}

.loactios-close {
    position: absolute;
    background: #de352e;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 3px solid #ccc;
    border-radius: 50%;
    font-size: 18px;
    line-height: 29px;
    left: -13px;
    top: -18px;
    cursor: pointer;
}

.loactios-close:hover {
    background: #0fb513;
}

.location-info {
    color: #fff;
    border-bottom: 1px dashed;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.location-info:last-child {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.location-title {
    color: #ffcd00;
    text-transform: uppercase;
    font-size: 17px;
    display: table;
    margin: auto;
    border-bottom: 2px solid;
    margin-bottom: 6px;
}

.iso {
    padding: 10px;
    position: absolute;
    background: radial-gradient(#1e418f, #04163c);
    margin-top: 12px;
    top: 170px;
    z-index: 98;
    animation: blinking4 1s infinite;
    border-radius: 0px 50px 50px 0px;
}

@keyframes blinking4 {
    0% {
        background: radial-gradient(#1e418f, #04163c);
    }
    /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
    50%{
      background-color: #55d66b;
      border: 5px solid #126620;
    }
    */
    100% {
        background: radial-gradient(#a7340c, #842504);
    }
}

.iso h3 {
    margin-bottom: 0px;
    font-weight: 500;
    color: #fff;
}

.contact1 {
    text-align: center;
    background: whitesmoke;
    padding: 10px;
    height: 210px;
    padding-top: 15px;
}

.map1 {
    height: 160px;
}

.map1 iframe {
    width: 100%;
    border: 5px solid #f5f5f5;
}

.contact-mar {
    margin-top: 30px;
}

.footer-social li a img {
    width: 60%;
}

.top-social li a img {
    width: 60%;
}

.individual-doctor-img {
    margin-bottom: 30px;
}

.visit-website {
    position: absolute;
    right: 49px;
    bottom: -13px;
}

.blog-links p a {
    color: #f9402f;
}
.team_det td{
    vertical-align: middle;
}






.upper-head {
    background: #010246;
    padding: 10px 0;
}
.clearfix {
    display: block;

}
.contact-info {
    display: inline-block;
}
.upper-head i {
    padding-right: 5px;
}
.clearfix:after {
    clear: both;
    content: '.';
    display: block;
    visibility: hidden;
    height: 0;
}
.upper-head p {
    margin-bottom: 0;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    margin-right: 15px;
    font-weight: 400;
}



 .content {
    padding: 0;
    position: relative;
}
 .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 38px;
    width: 1px;
    height: 93%;
    border-left: 3px dashed #848383;
}
 .content .box span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 39px;
    color: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    line-height: 71px;
    background: #ff3939;
    box-sizing: border-box;
    /* box-shadow: 0 0 5px #000; */
}
 .content .box h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}
 .content .box span img {
    width: 52px;
}
 .content .box p {
    margin: 0;
    font-size: 15px;
    color: #676767;
}
 .why_abt .box:nth-child(2) span {
    background: #002a58;
}
 .why_abt .box:nth-child(3) span {
    background: #fbad18;
}
 .content .box {
    margin: 51px 0;
    padding-left: 95px;
    position: relative;
}


.btn:focus, .btn:active, button:focus, button:active {
    outline: none !important;
    box-shadow: none !important;
  }
  
  #image-gallery .modal-footer{
    display: block;
  }
  
  .thumb{
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .inner-about-image1{
    box-shadow: 0 0 10px;
  }
  .pb-50{
    margin-bottom:50px;
  }