@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500&display=swap');
body {
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    line-height: 28px;
    color: #201e1f;
}
h1, h2, h3, h4, h5, h6, strong {
    font-weight: 500;
}

/* Topbar Start Here
-------------------------------------------------------------- */
#topBar {
    background-color: #00a859;
    padding: 5px 0px;
}
#topBar a {
    color: #fff;
    line-height: 30px;
    font-size: 14px;
    text-decoration: none;
}
.social a {
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    display:block;
}

/* Header Start Here
-------------------------------------------------------------- */
.navbar-brand {
    padding-top: 15px;
    padding-bottom: 15px;
}
.headerContent {
    margin: 0px;
    padding: 30px 0px;
    list-style: none;
}
.headerContent li {
    display: inline-block;
    min-width: 260px;
}
.headerContent li:first-child {
    min-width: 200px;
}
.headerContent li:last-child {
    min-width: 60px;
}
.headerContent li a {
    color: #373435;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: left;
}
.headerContent li a img {
    float: left;
    margin-right: 10px;
    height: 40px;
}
.headerContent li a span {
    display: block;
    text-transform: uppercase;
    line-height: 20px;
}
.headerContent li > img {
    margin-top:-35px;
    margin-bottom:-15px;
}
.navbar {
    background:#00a859;
    padding: 0px;
    border-radius: 0px;
    border: 0px;
}
.navbar-nav .nav-link {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    text-transform: uppercase;
    line-height: 36px;
    letter-spacing: 1px;
}
.navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #373435;
}
.navbar-nav .active >.nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show>.nav-link {
    color: #373435;
}
.dropdown-menu {
    border: 0px;
    padding-top: 0px;
    margin: 0px;
    border-top: 1px solid #dedede;
    border-radius: 0px 0px 4px 4px;
}
.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding:6px 15px;
    border-bottom: 1px solid #dedede;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #ed3237;
    color: #fff;
}
.dropdown:hover > .dropdown-menu {
    display: block;
    border-bottom: 1px solid #dedede;
}
.dropdown.position-static .dropdown-menu ul {
    margin: 0px;
    padding: 0px;
}
.dropdown.position-static .dropdown-menu li {
    list-style: none;
}
.dropdown.position-static .dropdown-menu li a {
    color: #272727;
    font-family: 'Varela Round', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px dotted #dedede;
    display: block;
    line-height: 28px;
    padding:5px 0px;
}
.dropdown.position-static .dropdown-menu li a:hover,
.dropdown.position-static .dropdown-menu li a:focus {
    background-color: #ed3237;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}
.dropdown.position-static .dropdown-menu a {
    display: block;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: #343434;
}
.socialLinks a {
    background: #ed3237;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
    min-width: 50px;
    text-align: center;
    border-left: 1px solid #fb4a4f;
    border-right: 1px solid #d2262b;
    font-size: 18px !important;
    line-height: 36px;
}
.socialLinks li:last-child a {
    padding-right: 10px !important;
}
.socialLinks a:hover,
.socialLinks a:focus {
    color: #fff !important;
    background: #373435;
    border-left: 1px solid #444;
    border-right: 1px solid #222;
}

/* Main Banner
-------------------------------------------------------------- */
.carousel-control-next, .carousel-control-prev {
    width: 30px;
    background: #343434;
    top: 40%;
    bottom: 40%;
    visibility: hidden;
}
.mainBanner:hover .carousel-control-next,
.mainBanner:hover .carousel-control-prev {
    visibility: visible;
}
.mainBanner .carousel-caption {
    background: rgba(0,0,0,0.5);
    top: 30%;
    bottom: 30%;
    left: 25%;
    right: 25%;
    padding-top: 80px;
}
.mainBanner .carousel-caption h5 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
}
.carousel-indicators {
    right: 0;
    left: auto;
    margin-right: 25px;
    margin-left: 0px;
    display: block;
}
.carousel-indicators li {
    margin: 0px;
    padding: 0px;
    border-top-width: 5px;
    border-bottom-width: 5px;
}


/* Products Design
-------------------------------------------------------------- */
.sectionHeading h2 {
    font-size:36px;
    line-height: 48px;
}
.productsSection {
    padding: 0px;
}

.box{
    overflow: hidden;
    position: relative;
    margin: 5px;
    display: block;
    text-align: center;
}
.box:before,
.box:after{
    content: "";
    background: #333;
    transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease 0s;
}
.box:after{
    background: #000;
    border: 1px solid #aaa;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    transition: all 0.5s ease 0.2s;
}
.box:hover:before{
    opacity: 0.5;
    transform: scale(1);
}
.box:hover:after{
    opacity: 0.35;
    transform: scale(1);
}
.box img{
    width: 100%;
    height: auto;
}
.box .box-content{
    color: #fff;
    width: 85%;
    filter: blur(5px);
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transition: all 0.4s ease 0.3s;
}
.box:hover .box-content{
    filter: blur(0);
    opacity: 1;
}
.box .title{
    font-size: 25px;
    font-weight: 200;
    text-transform: capitalize;
    margin: 0 0 1px;
}
.box .post{
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0 0 10px;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.box .icon li{
    margin: 0 3px;
    display: inline-block;
}
.box .icon li a{
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    height: 27px;
    width: 27px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
    display: block;
    transition: all 0.3s ease 0s;
}
.box .icon li a:hover{
    color: #fff;
    background-color: #000;
}


.productHighlight .img {
    padding: 5px;
}
.rotate {
    transform: rotate(-90deg);
    display: block;
    font-size: 18px;
    letter-spacing: 3px;
}

/* Highlight Section on Home Page
-------------------------------------------------------------- */
.highlightSection {
    background:url("./../images/parrallox.jpg") center center no-repeat fixed;
    background-size: cover;
}
.highlightSection .inner {
    padding: 50px 0px;
    background:rgba(0, 168, 89, 0.5);
    margin-top: 5px;
}
.highlightSection .iconBlock {
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    margin-bottom:20px;
}
.highlightSection .iconBlock img {
    max-width: 100%;
    margin-bottom:10px;
}
.highlightSection .iconBlock h3 {
    margin: 0px;
    padding: 0px;
    font-size: 24px;
}

/* Profile Section
-------------------------------------------------------------- */
.profileSection {
    padding: 70px 0px;
}
.profileSection .content {
    margin-top: 25px;
}
.profileSection img {
    max-width: 100%;
}


/* Footer Design
-------------------------------------------------------------- */
footer {
    background: #272727;
    padding:40px 0px;
    color: #ccc;
}
footer a {
    color: #ccc;
    text-decoration: none !important;
}
footer a:hover,
footer a:focus {
    color: #00A859;
}
.footerTop {
    padding: 20px 0px 40px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}
.footerLogo {
    max-width: 100%;
}
.footerTop h1 {
    color: #fff;
    margin-top: 0px;
    padding-top: 0px;
    margin-bottom: 20px;
}
.footerTop .btn-theme {
    border: 3px solid #fff;
    color: #fff;
    background: transparent;
    text-shadow: none;
    padding: 8px 40px;
    border-radius: 0px;
    font-weight: normal;
    font-size: 16px;
}
.footerTop .btn-theme:hover,
.footerTop .btn-theme:focus {
    background: #FF3237;
    border-color: #FF3237;
    color: #fff;
}
.footerBlock {
    border-top: 1px solid #373737;
    padding: 40px 0px;
}
.footerBlock h3 {
    color: #fff;
    margin-bottom: 20px;
}
.footerBlock ul {
    list-style: none;
    padding:0px;
    margin:0px;
}
.footerBottom {
    margin-top: 40px;
}
.footerBottom p {
    margin-bottom: 5px;
}
.footerBottom ul.list-inline a {
    background:#FF3237;
    height: 40px;
    width: 40px;
    margin-left: 5px;
    display: block;
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    border-radius: 50%;
}
.copyright {
    background: #171717;
    padding: 20px 0px 0px;
    color: #ccc;
}
.copyright a {
    color: #ccc;
    text-decoration: none;
}
.copyright a:hover,
.copyright a:focus {
    color: #00A859;
}
.callButton {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
    box-shadow: 0px 0px 3px #999;
    border-radius: 50%;
}

/* Page Title & Breadcrumb
-------------------------------------------------------------- */
.bc {
    position: relative;
}
.bc.image {
    background: url('./../images/bc.jpg') center center no-repeat scroll;
    background-size: cover;
}
.bc .map {
    margin-bottom:-10px;
}
.bcTitle {
    text-align: left;
    text-transform: uppercase;
    font-size: 36px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}
.bc .bcContent {
    padding: 60px 0px 40px;
    text-align: center;
}
.bc .breadcrumb {
    display: inline-flex;
    width: auto;
    background:#ED3237;
    color: #fff;
    padding: 5px 15px;
}
.bc .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.bc .breadcrumb li,
.bc .breadcrumb li a {
    color:#fff;
    text-decoration: none;
}
.bc .bottom-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right:0px;
    width: 100%;
    z-index: 99;
    height: 40px;
    background: url('./../images/bottom_mask.png') center bottom no-repeat;
}
.pageContent {
    padding:50px 0px;
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top,  #f5f5f5 0%, #f9f9f9 60%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #f5f5f5 0%,#f9f9f9 60%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #f5f5f5 0%,#f9f9f9 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
}

/* Btn Style & Form Styling
-------------------------------------------------------------- */
.btn-theme {
    padding: 10px 40px;
    background: #00A859; /* Old browsers */
    background: -moz-linear-gradient(left,  #00A859 0%, #027f43 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #00A859 0%,#027f43 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #00A859 0%,#027f43 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00A859', endColorstr='#027f43',GradientType=1 ); /* IE6-9 */
    border-color:  transparent;
    color: #fff;
}
.btn-theme:hover,
.btn-theme:focus {
    background: #EC3237; /* Old browsers */
    background: -moz-linear-gradient(left,  #EC3237 0%, #c12427 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #EC3237 0%,#c12427 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #EC3237 0%,#c12427 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EC3237', endColorstr='#c12427',GradientType=1 ); /* IE6-9 */
    border-color: transparent;
    color: #fff;
}
.btn-orange {
    background: #EC3237; /* Old browsers */
    background: -moz-linear-gradient(left,  #EC3237 0%, #c12427 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #EC3237 0%,#c12427 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #EC3237 0%,#c12427 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EC3237', endColorstr='#c12427',GradientType=1 ); /* IE6-9 */
    padding: 10px 40px;
    border-color:  transparent;
    color: #fff;
}
.btn-orange:hover,
.btn-orange:focus {
    background: #00A859; /* Old browsers */
    background: -moz-linear-gradient(left,  #00A859 0%, #027f43 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #00A859 0%,#027f43 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #00A859 0%,#027f43 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00A859', endColorstr='#027f43',GradientType=1 ); /* IE6-9 */
    border-color: transparent;
    color: #fff;
}
.form-group {
    margin-bottom:25px;
}
.form-control {
    box-shadow: inset 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #D9D9D9;
    font-size: 14px;
    line-height: 32px;
    height:46px;
}
label {
    font-weight: 500;
    font-size: 14px;
}
table {
    background: #fff;
}
table th {
    font-weight: 500;
}
.pageHeading {
    border-bottom: 1px solid #dedede;
    padding-bottom:10px;
    margin-bottom:20px;
    font-weight: 500;
    color:#011722;
}
.subHeading {
    font-size: 16px;
}

.welcomeSection {
    padding: 40px 0px;
    background: #fff;
}
.welcomeSection .content {
    border-left: 5px solid #ED3237;
    padding-left: 30px;
    font-size: 18px;
    line-height: 36px;

}