@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url('fontawesome-all.css');
@import url('animate.css');
@import url('flaticon.css');
@import url('owl.css');
@import url('jquery.fancybox.min.css');

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}
:root {
    --color-default: #535050;
    --color-primary: #e85122;
    --color-secondary: #0e827f;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
    font-size: 14px;
    color: #202020;
    line-height: 1.6em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
   font-weight: 400;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    margin: 0px;
    background: none;
    line-height: 1.2em;
}

textarea {
    overflow: hidden;
}

button {
    outline: none !important;
    cursor: pointer;
}

p,
.text {
    font-size: 16px;
    line-height: 30px;
    /* font-weight: 500; */
    margin: 0;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
    overflow: hidden;
}

.page-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .17;
    z-index: -1;
    background-image: url(../imgs/bg.jpg);
}

.page-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    filter: grayscale(1);
    height: 100%;
    opacity: 0.07;
    background-image: url(../imgs/logo-bg.png);
    top: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}


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

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

figure {
    margin-bottom: 0;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.centered {
    text-align: center !important;
}


.theme_color {
    color: #fa7720;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .active-tab {
    display: block;
}


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

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

.fa {
    line-height: inherit;
}


/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: var(--color-secondary);
    display: none;
    border-radius: 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top:hover {
    background: #63972a ;
}


/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header {
    position: absolute;
    z-index: 999;
    vertical-align: middle;
    width: 100%;
}
.main-header .header-top {
    position: absolute;
    text-align: right;
    right: 0;
    top: 0;
    z-index: 9;
    display: flex;
    align-items: center;
}

.main-header .auto-container {
    max-width: 1300px;
}
.main-header .header-top .top-left {
    position: relative;
  padding: 0;
  margin-top: 19px;
  display: inline-block;
  padding: 11px 22px 15px;
}
.main-header .header-top .info-list {
    position: relative;
    display: inline-block;
}
.main-header .header-top .info-list li:last-child{
    border-right: none;
}
.main-header .header-top .info-list li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    padding: 0px 11px;
    border-right: 1px dashed #ffff;
}

.main-header .header-top .info-list li a {
    display: inline-block;
    color: #000000;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .info-list li a:hover {
    color: var(--color-secondary);
}

.main-header .header-top .info-list li span {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    color: #ffffff;
    font-size: 15px;
    line-height: 29px;
    width: 29px;
    height: 29px;
    background: var(--color-secondary);
   
    text-align: center;
    border-radius: 50%;
}

.main-header .header-top .top-right {
    position: relative;
    float: right;
}

.main-header .header-top .login-info {
    position: relative;
}

.social-links {
    display: inline-block;
    padding: 0 9px;
    margin: 0;
    position: relative;
    top: 3px;
}

.main-header .header-top .login-info li {
    position: relative;
    float: left;
    font-size: 14px;
    line-height: 30px;
    color: #c8bee3;
    font-weight: 700;
    padding: 10px 0;
    margin-left: 13px;
}

.main-header .header-top .login-info li a {
    display: inline-block;
    color: #c8bee3;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .login-info li a:hover {
    color: #25bdd8;
}


/*=== Header Upper ===*/

.main-header .header-upper {
    position: relative;
    text-align: right;
    margin-top: 27px;
}

.main-header .header-upper .logo-outer {
    position: absolute;
    text-align: center;
    z-index: 999;
    width: 250px;
    top: 0;
    
    padding: 0 7px;
   
}

.main-header .header-upper .logo-outer:before {
    position: absolute;
    right: 100%;
    top: 0;
    content: "";
}



.main-header .header-upper .logo:before {
    right: -37px;
    margin: auto;
    content: "";
    position: absolute;
}

.main-header .header-upper .logo img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.main-header .header-upper .social-links {
    position: absolute;
    padding: 0;
    margin-left: 0;
    right: 5%;
    top: 14px;
}

.main-header .nav-outer {
    position: relative;
    display: inline-block;
    margin: auto;
    padding: 7px 0px 0 0px;
    border-radius: 0px 30px 30px 0px;
}
.top-wraapper {
    position: relative;
    height: 100vh;
}
/*===  Header Lower ===*/

.main-header .header-lower {
    position: relative;
    width: 100%;
}

.main-menu {
    position: relative;
    margin: 36px 0 0;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    left: 0;
}

.main-menu .navigation>li {
   
    position: relative;
    display: inline-block;
    padding: 9px 14px;
    margin-left: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 14px;
    right: 0;
    transform: rotate(-18deg);
    top: 17px;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    opacity: 1;
    padding: 0 0;
    color: #000;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a {
    color: var(--color-secondary);
}

.main-menu .navigation>li.current>a {
    font-weight: 700;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 215px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid var(--color-secondary);
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    background: #f08534;
}

.main-menu .navigation>li>ul>li:hover:before {
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 4px 16px;
    line-height: 24px;
    font-size: 14px;
    text-transform: capitalize;
    color: #181818;
    text-align: left;
    transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}

.main-menu .navigation>li>ul>li::before {
    display: none;
}



.main-menu .navigation>li>ul>li:hover>a {
    background: var(--color-primary);
    color:#fff;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 13px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 240px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #ff4788;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    background: #ff4788;
}

.main-menu .navigation>li>ul>li>ul>li:hover:before {
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 13px 20px;
    line-height: 24px;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    color: #696478;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: #ffffff;
    background: #ff4788;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 13px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    float: right;
    padding: 30px 0;
}

.main-header .outer-box .btn-box {
    position: relative;
    float: right;
}

.main-header .outer-box .btn-box .theme-btn {
    text-transform: uppercase;
    display: block;
}


/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 41px;
    cursor: pointer;
    color: var(--color-secondary);
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(37, 189, 216, 0.80);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #373737;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    color: var(--color-primary);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #ff4788;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a,
.mobile-menu .navigation li>a:hover {
    color: #ff4788;
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: var(--color-primary);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    background: #ff4788;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 28px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
    color: #ff4788;
}

/*** 

====================================================================
		Section Title
====================================================================

***/

.section_title_text{
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.section_title_text h2 {
    font-size: 25px;
   
    display: inline-block;
    color: var(--color-default);
    font-weight:400;

}

.section_title_text h1{
    /* text-transform: uppercase; */
    color: var(--color-default);
    font-weight: 400;
    margin-bottom: 0;
    font-size: 60px;
}

.section_title_text h3{
    /* text-transform: uppercase; */
  color: var(--color-default);
  margin-bottom: 16px;
 
  font-size: 33px;
  font-weight:400;
}


.section_title_text h4{
    text-transform: capitalize;
  
    font-weight: 400;
  color: var(--color-secondary);
  font-size: 45px;
  
}
.section_title_text p{
  
  color: var(--color-default);
  margin-bottom: 16px;

  font-size: 15px;
  
}

/*** 

====================================================================
		Banner Section
====================================================================

***/

.banner-section {
    position: relative;
}

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

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

.slide1 {
    background-image: url(../imgs/banner.jpg);
}


.slide1 .container {
    position: relative;
    height: 100%;
}



/* ABOUT SECTION */

.about_section{
    position: relative;
  padding: 49px 0px 28px;
}

.about_section p{
    margin-bottom: 20px;
 
  text-align: center;
}


.about_section span{
    color: var(--color-primary);
    text-transform: uppercase;
}

.about_section a{
    color: var(--color-primary);
}
/* FOOTER */


.main-footer-two {
    margin-top: -77px;
  position: relative;
  background: #202020;
  padding: 111px 0px 0px;
  border-top: 5px solid var(--color-secondary);
 
   
}
.main-footer-two .upper-logo-box {
  text-align: center;
}

.main-footer-two .links-widget .links li a {
  position: relative;
  display: block;
  line-height: 25px;
  font-size: 15px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  color: #d7d7d7;
}


.main-footer-two .widgets-section{
  /* padding-top: 67px; */
}




.main-footer-two .widget-title {
  position: relative;
  margin-bottom: 10px;
}


.main-footer-two .widget-title h4 {
  position: relative;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 0 0;
  font-size: 21px;
  font-weight: 500;
}


.main-footer-two .about-widget .address {
  position: relative;
  margin-bottom: 14px;
  color: #d7d7d7;
  padding-left: 44px;
}

.main-footer .footer-widget {
  position: relative;
  margin-bottom: 20px;
}

.main-footer-two .about-widget .address i {
  position: absolute;
  left: 0px;
  width: 32px;
  height: 32px;
  background: rgb(255 255 255 / 25%);
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  line-height: 31px;
  border-radius: 50%;
}
.main-footer-two .footer-bottom { 
  position: relative;
  line-height: 24px;
  background: linear-gradient(to left,#19a9b1,#87c443);

}
.main-footer-two .footer-bottom .inner {
  position: relative;
  display: block;
  padding: 9px 0px 13px;
}

.main-footer-two .footer-bottom .copyright {
  position: relative;
  width: 100%;
  line-height: 24px;
  text-align: center;
  color: #e9e9e9;
  font-size: 16px;
}

.main-footer-two .footer-bottom .copyright strong {
  color: #222222;
}

.main-footer-two .footer-bottom .copyright a {
  text-transform: capitalize;
  color: var(--color-default);
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.main-footer-two .footer-bottom .copyright a:hover {
    color: #fff;
    text-decoration: none;  
}
.main-footer-two .upper-logo-box h2{
  position: relative;
  display: block;
  line-height: 25px;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  color: #d7d7d7;
 
}

.main-footer-two .links-widget .links li a:hover {
  color: var(--color-secondary);
  list-style: none;
}

.social-links-bottom{
    padding-top: 26px;
}

.social-links-bottom ul li {
    padding-left: 10px;
 
}

.main-footer-two .links-one{
    padding-left: 25px;
}


.main-footer-two .links-two{
    padding-left: 25px;
}

.main-footer-two .links-three{
    padding-left: 25px;
}

.newsletter_section{
    z-index: 1;
    position: relative;
    padding-top: 35px;
}


.subscribe-block {
    position: relative;
    padding: 40px 38px;
    background-color: #006368;
    border-radius:10px;
    box-shadow: 0px 0px 10px #ccc;


}

.sub-title h4 {
    text-transform: uppercase;
    color: #fff;
    font-size: 33px;
}
.subscribe-input {
    position: relative;
    margin-top: 12px;
}


.sub-title p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}
.subscribe-input .form-control {
    height: 58px;
    background-color: transparent;
    border: 1px solid #e4e4e4;
    color: #fff;
}

.subscribe-input .btn {
    position: absolute;
    top: 7px;
    right: 8px;
    background: var(--color-secondary);
    border: none;
    border-radius: 0;
    padding: 11px 16px;
    color: #fff;
}
.facility_section {
    position: relative;
    margin-top: -130px;
}

.facility_section::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
}

.emergency_bg {
    position: absolute;
    right: 0px;
    bottom: 41px;
    width: 43%;
}

.emergency_bg img {
    width: 100%;
    filter: grayscale(1);
}

.facility_list_block {
    position: relative;
}

.facilites_title_head {
    position: absolute;
    left: 105px;
    text-transform: uppercase;
    font-size: 43px;
    top: 16rem;
    color: #f08533;
    right: 0;
    text-align: center;
    line-height: 63px;
}

.fac_row {
    position: relative;
    justify-content: center;
    text-align: center;
}

.fac_row::before {
    content: "";
    position: absolute;
}

.fac_row .col-md-3 {
    padding: 0 10px;
}

.fac_block {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius:50%;
    display: inline-block;
    margin-bottom: 10px;
    height: 250px;
    width: 250px;
    border: 8px solid #ffffff;
    box-shadow: 0px 0px 10px #929292;
}

.fac_block::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(2 46 44 / 76%);
    bottom: 0;
    left: 0;
    z-index: 1;
    right: 0;
    top: 0;
    margin: auto;
}

.fac_block img {
    transition: all ease-in-out .7s;
}

.fac_block .fac-box {
    position: absolute;
    text-transform: capitalize;
    color: #ffffff;
    font-size: 18px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1;
    padding: 68px 25px;
}

.fac_desc {
    position: absolute;
    left: 12px;
    bottom: 30px;
    z-index: 2;
    width: 48%;
    text-align: center;
    background: #eb131d;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 11px;
    border-radius: 13px;
}
.fac-icon {
    filter: brightness(0) invert(1);
    width: 80px;
    left: 0px;
    position: absolute;
    right: 0px;
    margin: auto;
}
.fac_block .fac-box h3{
    font-size: 20px;
    text-transform: uppercase;
}
.mvv-sec{
    position: relative;
    margin-bottom: 80px;
}
.mvv-block {
    border: 7px solid #ffffff;
    padding: 22px 25px;
    background: #f7f7f7;
    box-shadow: 0px 0px 10px #929292;
}
.mvv-block h3{
    color: var(--color-secondary);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 10px;
}
.mvv-block p {
    font-size: 15px;
    line-height: 24px;
    color: #686767;
}
.product-sec{
    position: relative;
    margin-bottom: 100px;
}
.head-main h2 {
    text-transform: uppercase;
    color: var(--color-secondary);
    border-bottom: 2px dashed;
    display: inline-block;
}
.current-tab a {
    background: var(--color-primary);
    color: #fff !important;
    padding: 0px 7px !important;
    border-radius: 20px;
}
.top-border{
    position: relative;
    background: linear-gradient(to right,transparent,var(--color-primary), transparent);
width: 100%;
height: 8px;
}
.firstrow{
    padding-top: 30px;
}

.firstrow a{
    color: var(--color-primary);
}
.product-content{
    margin-top: 20px;
}
.product-content h3{
    text-transform: uppercase;
    color: #fff;
    background: var(--color-primary);
    display: inline;
    font-size: 20px;
    padding: 3px 10px;
    font-weight: 600;
    transition: all ease-in-out .3s;
}
.product-content h3:hover{
    background: var(--color-secondary);
}
.product-img img {
    transition: all ease-in-out .7s;
}
.product-img{
    border: 8px solid #ffffff;
    box-shadow: 0px 0px 10px #929292;
    border-radius: 15%;
}
.product-img:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}
.product-img{
    overflow: hidden;
}
.theme-btn {
    padding: 7px 10px;
    color: #000;
    border: 2px solid var(--color-secondary);
    display: inline;
}
.theme-btn:hover{
    color: var(--color-primary);
}
.product-block{
    margin-bottom: 20px;
}
.news-block {
    background: #fff;
    border-radius: 15px;
    padding: 18px 30px 18px;
    box-shadow: 0px 0px 10px #929292;
}
.news-img{
    margin-bottom: 10px;
}
.news-block h5 {
    font-size: 17px;
    line-height: 29px;
    color: var(--color-default);
}
.date{
    padding-top: 20px;
}
.news-block span {
    position: absolute;
    right: 26px;
    bottom: 18px;
    font-size: 27px;
}
.news-sec{
    position: relative;
    margin-bottom: 80px;
}
.clients-sec{
    position: relative;
    margin-bottom: 175px;
}
.life-content{
    position: relative;
    background: linear-gradient(to right, #058985, #e85122b0); 
}
.life-block p{
    color: #fff;
}
.life-sec .container{
    background: #fff;
}
.life-content::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 200px;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 0px;
    box-shadow: 0px 0px 55px #0c0c0c;
    z-index: -1;
}
.life-sec{
    position: relative;
    margin-bottom: 100px;
}
.life-block{
       
    padding: 117px 66px;
   
}
.life-content .col-md-6{
    padding: 0px;
}
.life-block h4{
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 30px;
}
.c-unit{
    position: relative;
    margin-bottom: 100px;
    padding: 70px 0px;
    color: #fff;
}
.c-unit::before{
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;    
    top: 0px;
    left: 0px;
}
.c-unit-right{
    text-align: right;
}
.c-unit a {
    color: #fff;
    padding: 7px 10px;
    border: 1px solid;
}
.c-unit h2{
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.c-unit p {
    margin-bottom: 20px;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 34px;
}
.c-unit-bg::before{
    content: " ";
    position: absolute;
    width: 50%;
    height: 100%;
    background-image: url(../imgs/c-unit-left.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    z-index: -1;
    float: left;
}
.c-unit-bg::after{
    content: " ";
    position: absolute;
    width: 50%;
    height: 100%;
    background-image: url(../imgs/c-unit-right.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    top: 0px;
    right: 0px;
    z-index: -1;
    float: right;
}
.c-unit2{
    position: relative;
    margin-bottom: 100px;
}
.c-unit2-block{
    background-color: #fff;
    box-shadow: 0px 0px 10px #929292;
}
.c-unit2-content{
    padding: 30px 20px;
}
.c-unit2-content h2 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 10px;
}
.c-unit2-content a{
    color: #000;
    padding: 7px 10px;
    border: 1px solid;
}
.c-unit2-content p{
    margin-bottom: 20px;
}
.c-unit2::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 98px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    left: 0px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    right: 0px;
}


.c-unit2-img{
    padding: 40px 40px 0px; 
}


.f-about a{
    color: var(--color-primary);
}
.subscribe-input h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}
.enquire-sec{
    position: relative;
    margin-bottom: 100px;
    background: #373737;
    color: #fff;
    padding: 50px 0px;
}
.enquire-sec .form-control {
    display: block;
    width: 100%;
    padding:.375rem 2.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    background-color: #ffffff00;
    background-clip: padding-box;
    border-bottom: 1px solid #ced4da;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
.enquire-sec .form-control::placeholder {
    color: #ababab;
    opacity: 1
}
.enquire-sec p{
    margin-bottom: 38px;
}
.submit-btn {
    padding: 15px 30px;
    font-size: 20px;
    position: relative;
    top: 47px;
}
.form-group i {
    position: absolute;
    left: 25px;
    top: 12px;
    /* z-index: -1; */
    color: #cccccc;
    font-size: 18px;
}
textarea{
    height: 100px;
}
/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer {
    position: relative;
    background: #373737;
    color: #fff;
}

.main-footer .anim-icons .icon {
    opacity: 0.08;
}

.main-footer .footer-upper {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    padding: 71px 0px 0;
    margin-top: 0;
}

.main-footer .footer-upper .footer-column {
    position: relative;
}

.main-footer .footer-upper .footer-column:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 137px;
    right: 12px;
    top: 83px;
}

.main-footer .footer-upper .footer-column:last-child:before {
    content: none;
}

.main-footer .footer-widget .widget-title {
    position: relative;
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
}


/*Logo Widget*/

.logo-widget {
    position: relative;
    text-align: center;
}

.logo-widget .logo img {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 30px;
    width: 347px;
}

.logo-widget .logo img:hover {
    opacity: 1;
}

.logo-widget .text {
    position: relative;
    color: #000000;
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 7px;
}


/*Links Widget*/

.main-footer .links-widget {
    position: relative;
}

.main-footer .activity-list {
    position: relative;
    padding-top: 10px;
}

.main-footer .activity-list li {
    position: relative;
    margin-bottom: 10px;
}

.main-footer .activity-list li:last-child {
    margin-bottom: 0;
}

.main-footer .activity-list li a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #c8bfe3;
    padding: 10px 15px;
    padding-left: 30px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .activity-list li a:hover {
    border: 1px solid #ff4788;
}

.main-footer .list {
    position: relative;
}

.main-footer .list li {
    position: relative;
    display: block;
    margin-bottom: 0px;
    padding-left: 17px;
}

.main-footer .list li:before {
    position: absolute;
    left: 0;
    top: 9px;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    border: 2px solid #fff;
    content: "";
}

.main-footer .list li a {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: inherit;
    color: #fff;
}

.main-footer .list li a:hover {
    color: #fff;
}


/*COntact Widget*/

.main-footer .contact-widget {
    position: relative;
}

.main-footer .contact-info {
    position: relative;
}

.main-footer .contact-info li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    padding-left: 44px;
    margin-bottom: 20px;
}

.main-footer .contact-info li:last-child {
    margin-bottom: 0;
}

.main-footer .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background: #f44645;
    text-align: center;
    color: #ffffff;
}

.main-footer .contact-info li a {
    color: #000000;
    display: inline-block;
    transition: all 300ms ease;
}

.main-footer .contact-info li a:hover {
    color: #f44645;
}

.main-footer .footer-bottom {
    position: relative;
    text-align: center;
}

.main-footer .footer-bottom:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .03;
    content: "";
}

.main-footer .footer-bottom .social-icon-two {
    position: relative;
    float: right;
}


.main-footer .footer-bottom .copyright {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    padding: 12px 0px;
    border-top: 1px solid #a1a1a1;
}

.main-footer .footer-bottom .copyright a {
    color: #fff;
}


/*** 

====================================================================
		Newsletter Section
====================================================================

***/

.newsletter-section {
    position: relative;
    padding: 136px 0 43px;
    background: #131313;
    color: #fff;
    text-align: center;
    margin: -74px 0 0;
}

.fmap a {
    display: inline-block;
    border: 9px solid #ffffff;
    box-shadow: 0px 0px 10px #ccc;
}



.newsletter-section::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    margin: auto;
}

.newsletter-section::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: -1;
}

.newsletter-section .title-column {
    position: relative;
}

.newsletter-section .title-column .inner-column {
    position: relative;
    padding-top: 0;
}

.newsletter-section h2 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 27px;
}

.newsletter-section h4 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: inherit;
    color: #ffffff;
    font-weight: 500;
}

.newsletter-section .inner-container {
    max-width: 1245px;
    margin: auto;
}


/*=== Social Icon Two ===*/

.social-icon-two {
    position: relative;
    text-align: center;
    margin-bottom: 11px;
    /* display: inline-block; */
    padding: 17px 17px 17px;
    border-bottom: 1px dashed #fff;
}
.logo-widget a{
    color: var(--color-primary);
}

.social-icon-two li {
    position: relative;
    display: inline-block;
}

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: transparent;
}

.social-icon-two li a:hover {
    color: #ffffff;
    background: #f44645;
}

.social-icon-two li a:first-child {
    margin-left: 0;
}


/*Logo Widget*/

.logo-widget {
    position: relative;
    text-align: center;
}

.logo-widget .logo img {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: -22px;
    width: 326px;

}

.logo-widget .logo img:hover {
    opacity: 1;
}

.logo-widget .text {
    position: relative;
    color: #000000;
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 7px;
}
.logo-footer{
    width: 300px;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 15px;
}


.enquire-sec::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../imgs/e-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
    /* z-index: -1; */
    opacity: 0.04;
    filter: grayscale(1);
}
.addr-bar {
    display: inline-table;
}

.addr-bar .col-md-12 {
    border-bottom: 1px dotted;
    padding: 10px 0px;
}

._addre_bar {
    text-align: center;
}

._addre_bar h5 {
    font-size: 16px;
    line-height: 27px;
}

._tele_bar {
    text-align: center;
}

._tele_bar h5 {
    font-size: 16px;
    line-height: 25px;
}

._mail_bar {
    text-align: center;
}

._mail_bar h5 {
    font-size: 16px;
}
.useful-links {
    display: inline-block;
    /* margin: 5px 0 18px; */
    padding: 5px 22px;
    border-top: 1px solid #a1a1a1;
    border-bottom: 1px solid #a1a1a1;
  }
  .useful-links .useful-ul {
    text-align: center;
  }
  .useful-links .useful-ul span {
    display: inline-block;
    margin-right: 20px;
    text-transform: uppercase;
    
    font-weight: 400;
    font-size: 21px;
  }
  .useful-links .useful-ul li {
    display: inline-block;
  }
  .useful-links .useful-ul li a {
    padding: 0 7px;
    border-right: 1px solid #989898;
    color: #ffffff;
    font-size: 15px;
  }
  .useful-links .useful-ul li a:hover{
    color: var(--color-primary);
  }
  .add_bar_row .col-md-4{
    border-right: 1px dashed #ffffff;
  }
  .add_bar_row .col-md-4:last-child{
    border-right: 0px;
  }
  .add_bar_row{
    margin-top: 20px;
    margin-bottom: 10px;
  }


  .asahcmaab {
    text-align: center;
    padding: 43px 0;
    position: relative;
    z-index: 1;
    background: #f0f0f0;
    margin-top: -146px;
    /* box-shadow:0px -6px 10px #a9a9a9; */
}


.asahcmaab h2 {
    font-size: 27px;
    font-weight: 300;
    margin: 9px 0 0;
    display: inline-block;
    color: #000000;
}

.asahcmaab h4 {
    text-transform: uppercase;
    font-size: 38px;
    color: #000000;
    font-weight: 600;
    line-height: 36px;
}

.asahcmaab .text {
    font-size: 14px;
    color: #000000;
}

.newsletter-form .form-control {
    height: 63px;
    background-color: var(--color-secondary);
    border: 1px solid;
    color: var(--color-secondary);
}

.newsletter-form .form-control::placeholder {
    color: #ffefef;
}


.newsletter-form .btn {
    position: relative;
    right: 65px;
    border-radius: 30px;
    font-size: 22px;
    background: var(--color-primary);
    border: none;
    top: 8px;
    border-radius: 32px;
    padding: 8px 15px;
    color: #fff;
    /* width: 204px; */
}
.mobile-view{
    display: none;
}
.quality-sec{
    position: relative;
    margin-bottom: 70px;
}
.quality-img img{
    opacity: 0.4;
}
.ol-styles {
    padding: 0;
    padding-left: 20px;
    padding-top: 10px;
}

.ol-styles li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 7px;
    line-height: 28px;
    font-size: 17px;
}

.ol-styles li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 28px;
    color: #373434;
    font-weight: 900;
    content: "\f101";
    font-family: "FontAwesome";
}
.firstrow p{
    font-size: 16px;
}
.quality-block {
    padding: 24px;
    border: 5px solid #f5f5f5;
    margin: 12px;
    background: #373737;
    box-shadow: 0px 0px 10px #929292;
    color: #fff;
}
.quality-sec .container{
    max-width: 1300px;
}
.secondrow{
    margin-top: 20px;
}
.thirdrow{
    margin-top: 20px;
}
.inner-section {
    position: relative;
    min-height: 47vh;
    padding: 110px 0px 80px;
    text-align: center;
}
.bread_cumb_wrap {
    position: relative;
    text-align: center;
    left: 0;
    right: 0;
    padding: 170px 0 60px
}

/* .bread_cumb_wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 370px;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../imgs/breadcumb.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
} */

.bread_cumb_wrap h1 {
    text-transform: capitalize;
    color: #000000;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}

.bread_cumb_wrap ul {
    display: inline-block;
    box-shadow: 0 5px 4px #ccc;
    padding: 4px 15px;
    border-radius: 30px;
    background: #fff;
    border: 4px solid #ccc;
}

.bread_cumb_wrap ul li {
    display: inline-block;
    position: relative;
    padding: 0 7px;
    color: #2c2c2c
}

.bread_cumb_wrap ul li:last-child:before {
    display: none
}

.bread_cumb_wrap i {
    color: var(--color-secondary);
}

.bread_cumb_wrap ul li a {
    display: block;
    color: #000000;
    font-size: 17px;
}
.serviceBox {
    text-align: center;
    padding: 10px 0 15px;
    position: relative;
}

.serviceBox:before,
.serviceBox:after {
    content: "";
    background: #373737;
    width: 150px;
    height: 10px;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    clip-path: polygon(7% 0%, 93% 0%, 100% 100%, 0% 100%);
}

.serviceBox:after {
    width: 80%;
    height: 15px;
    border-radius: 0 0 10px 10px;
    top: auto;
    bottom: 0;
    clip-path: none;
}

.serviceBox .service-content {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ccc;
}

/* .serviceBox .service-content:before {
    content: "";
    background: #ff9b7a;
    width: 128px;
    height: 100px;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
} */

.serviceBox .service-icon {
    color: #373737;
    background: linear-gradient(to left, #dedfe1, #f3f3f3);
    font-size: 40px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.serviceBox .service-icon:before {
    content: "";
    background: linear-gradient(to right, #dedfe1, #f3f3f3);
    width: 88%;
    height: 88%;
    border-radius: 50%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.serviceBox .title {
    color: var(--color-secondary);
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.serviceBox .description {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

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

.contact-form h2 {
    margin-bottom: 27px;
    color: var(--color-secondary);
    font-size: 32px;
    display: inline-block;
}

.contact-form .form-control {
    height: 55px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px #ccc;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

.contact-form textarea.form-control {
    height: 106px;
}

.contact-form .btn {
    border: none;
    background-color:var(--color-secondary);
    padding: 7px 18px;
}

.c_map {
    position: relative;
    padding: 15px 0;
}

.c_map iframe {
    width: 100%;
    height: 333px;
    border: none;
    box-shadow: 0px 0px 10px #8d8d8d;
}

.c_row {
    position: relative;
    text-align: center;
    align-items: center;
    margin: 0 0;
    margin-top: 56px;
}
.inner-section1{
    padding: 50px 0px 150px;
}

.products-list h2{
    text-transform: uppercase;
    color: #fff;
    background: var(--color-secondary);
    display: inline-block;
    padding: 0px 5px;
    margin-top: 9px;
    font-size: 20px;
}
.inner-about p {
    text-align: justify;
    font-size: 15px;
    margin-bottom: 13px;
}
.life-block a{
    color: var(--color-primary);
}
.gallery_block .box {
    background-color: #0e827f;
    text-align: center;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 0 10px #767676;
    border-radius: 19px; */
}

.gallery_block .box:before {
    content: "";
    border: 1px solid var(--color-primary);
    opacity: 0;
    transform: translateX(-20px);
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    transition: .5s;
    z-index: 1
}

.gallery_block .box:hover:before {
    opacity: 1;
    transform: translateX(0)
}

.gallery_block .box img {
    width: 100%;
    height: auto;
    transform: translateX(0px) scale(1.15);
    transition: .5s;
    height: 154px;
}

.gallery_block .box:hover img {
    opacity: .5;
    transform: translateX(20px) scale(1.15)
}

.gallery_block .box .box-content {
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: scale(0);
    transform-origin: left bottom;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    transition: .5s
}

.gallery_block .box:hover .box-content {
    opacity: 1;
    transform: scale(1)
}

.gallery_block .box .title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0
}

.gallery_block .box .post {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
    margin: 0 0 11px;
    display: inline-block
}

.gallery_block .box .icon {
    padding: 0;
    margin: 0;
    list-style: none
}

.gallery_block .box .icon li {
    margin: 0 3px;
    display: inline-block
}

.gallery_block .box .icon li a {
    color: #fff;
    background: var(--color-primary);
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .9);
    display: block;
    transition: .3s
}

.gallery_block .box .icon li a:hover {
    color: #fff;
    background: var(--color-primary)
}

.gallrow .col-md-3 {
    padding: 0 10px
}
.products-row{
    padding-top: 45px;
}
.gallery_block {
    margin-bottom: 50px;
    background: #fff;
    box-shadow: 0 0 10px #767676;
    border-radius: 19px; 
    padding: 12px;
}
.gallery_block h3{
    font-size: 18px;
    margin-top: 14px;
}
.clients-sec .btn-home{
    background: var(--color-secondary);
    color: #fff;
    padding: 9px 19px;
}
.contact-form{
    padding-top: 30px;
}