@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Oswald:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap');

/* scrollbar
**************************************************/
html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: transparent; 
}
::-webkit-scrollbar-thumb {
    background: #202b2f;
}
::-webkit-scrollbar-thumb:hover {
    background: #fff; 
}

/* Loader
**************************************************/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
#loader {
    position: relative;
    margin: auto;
    box-sizing: border-box;
    background-clip: padding-box;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0.1), #000000 90%);
    transform-origin: 50% 60%;
    transform: perspective(200px) rotateX(66deg);
    animation: spinner-wiggle 1.2s infinite;
    z-index: 1001;
    top: 40%;
}
#loader:before,
#loader:after {
    content: "";
    position: absolute;
    margin: -4px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: .05;
    border: inherit;
    border-color: transparent;
    animation: spinner-spin 1.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 1.2s linear infinite;
}
#loader:before {
    border-top-color: #ED3237;
}
#loader:after {
    border-top-color: #1CCABD;
    animation-delay: 0.3s;
}
@keyframes spinner-spin {
    100% {
      transform: rotate(360deg);
    }
}
@keyframes spinner-fade {
    20% {
      opacity: .1;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: .1;
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #2F3132 url('./../images/headerbg.jpg') left center repeat;
    z-index: 1000;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;  
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;

    -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);  /* IE 9 */
    transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.3s 1s ease-out;  
    transition: all 0.3s 1s ease-out;
}
/* JavaScript Turned Off */
.no-js #loader-wrapper {
    display: none;
}
#ctl00_MainContent_topBox #loader-wrapper {
    display: none;;
}
/* Loader CSS End Here */

/* 01. Default Css Start Here 
-------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 26px;
    position: relative;
    font-weight: 400;
    cursor: default;
}
a {
    text-decoration: none !important;
    cursor: pointer !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}
strong, b {
    font-weight: 600;
}
.btn-theme {
    padding: 10px 40px;
    background:#F48633;
    border-color:  #F48633;
    border-radius: 25px;
    color: #fff;
}
.btn-theme:hover,
.btn-theme:focus {
    background: #2F3132;
    border-color: #2F3132;
    color: #000;
}
.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;
}

/* Header Start Here
-------------------------------------------------------------- */
#header{
    background: #2F3132 url('./../images/headerbg.jpg') left center repeat;
    padding: 15px 0px;
}
#header .headerLeft,
#header .headerRight {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    margin: 22px 0px;
}
#header .headerRight a {
    text-decoration: none;
    color: #fff;
}
#header .headerRight {
    float: right;
}
#header .headerLeft .icon,
#header .headerRight .icon {
    font-size:32px;
    color: #fff;
    margin-right: 15px !important;
}
#header .navbar-brand {
    text-align: center;
    display: block;
}
#header .headerRight .contact {
    font-size: 18px;
    font-weight: 700;
}
.navbar-default {
    background:#F48633;
    border-radius: 0px;
    border: 0px;
    padding: 0px;
}
.navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 12px;
    margin-right: 12px;
    border-top:5px solid transparent;
    transition: border-top 0.6s linear;
    text-transform: uppercase;
    padding-bottom: 13px;
    letter-spacing: 1px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #2F3132;
    border-top-color:#2F3132;
}
.navbar-nav .active >.nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show>.nav-link {
    color: #2F3132;
}
.dropdown-menu {
    border: 0px;
    padding-top: 0px;
    margin: 0px 10px;
    border-top: 1px solid #312e2d;
    border-radius: 0px 0px 4px 4px;
    background:#fff;
}
.dropdown-menu .dropdown-item {
    font-size: 15px;
    padding:10px 15px;
    border-bottom: 1px solid #dedede;
    color: #011722;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #F48633;
    color: #ffffff;
}
.dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
.dropdown-submenu > .dropdown-item {
    font-weight: 500;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}
.dropdown-submenu.pull-left {
    float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}


/* Main Banner
-------------------------------------------------------------- */
.mainBanner {
    position: relative;
    z-index: 9;
}
.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,
.productBanner:hover .carousel-control-next,
.productBanner:hover .carousel-control-prev {
    visibility: visible;
}
.mainBanner .carousel-caption {
    bottom: 10%;
    left: auto;
    right: 0px;
    text-align: right;
}
.mainBanner .carousel-caption h5 {
    padding: 5px 40px 5px 20px;
    background-color: #011722;
    position: relative;
    right: 0px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    margin: 0px 0px 5px 0px;
}
.mainBanner .carousel-caption h5:before {
    width: 0;
    height: 0;
    content:" ";
    position: absolute;
    left:-60px;
    border-bottom: 60px solid #011722;
    border-left: 60px solid transparent;
    top: 0px;
}
.mainBanner .carousel-caption p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    padding: 10px 40px 10px 20px;
    background-color: #e6c963;
    position: relative;
    right:0px;
    margin: 0px;
    /* text-shadow: 1px 1px 3px #000; */
}
.mainBanner .carousel-caption p:before {
    width: 0;
    height: 0;
    content:" ";
    position: absolute;
    left:-50px;
    border-top: 50px solid #e6c963;
    border-left: 50px solid transparent;
    top: 0px;
}
.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;
}
.mainBanner .carousel-item img {
    -webkit-animation: zoom 25s;
    animation: zoom 25s;
}

@-webkit-keyframes zoom {
    from {
      -webkit-transform: scale(1.15, 1.15);
    }
    to {
      -webkit-transform: scale(1, 1);
    }
}
  
@keyframes zoom {
    from {
      transform: scale(1.15, 1.15);
    }
    to {
      transform: scale(1, 1);
    }
} 

/* BreadCrumb */
.bc {
    position: relative;
}
.bc.image {
    background: url('./../images/bc.jpg') center center no-repeat;
    background-size: cover;
}
.bcTitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    color: #23282D;
}
.bc .bcContent {
    padding: 80px 0px 70px;
    text-align: center;
}
.bCrumb {
    background: #f5f5f5;
    border-bottom: 1px solid #dedede;
    text-align: center;
}
.bCrumb .breadcrumb {
    display: inline-flex;
    width: auto;
    background: transparent;
    color: #1B1F23;
    padding: 15px;
    margin-bottom: 0px;
}
.bCrumb .breadcrumb li,
.bCrumb .breadcrumb li a {
    text-decoration: none;
    color: #05103B;
    font-family: 'Oswald', sans-serif;
}

/* Main Content Start Here */
.padding-default,
.pages,
#products-services,
#ps,
#photo-gallery,
.photo-gallery,
#video-gallery,
#blog-articles,
.single-product,
#blog-categories,
.blog-articles,
#enquiry,
#contact {
    padding: 70px 0px;
    position: relative;
}
#our-products.pages,
#photo-gallery.pages,
#video-gallery.pages,
#blog.pages,
#business-enquiry.pages,
#contact-us.pages {
    padding: 0px !important;
}
#products-services .heading {
    display: none;
}
.enquiryForm #ps {
    padding: .375rem .75rem;
}
.bg-grey {
    background: #F5F5F5;
}
#video-gallery h3 {
    margin-bottom: 30px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contactInfo {
    text-align: center;
}
.contactInfo h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 10px;
}
.contactInfo ul {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 10px;
}
.contactInfo ul li,
.contactInfo ul li a {
    text-decoration: none;
    color: #272727;
    font-size: 16px;
}
.heading {
    margin-bottom: 40px;
}
.heading h2 {
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    color: #151515;
}
.product-detail {
    margin: 5px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: block;
}
.product-detail:hover,
.product-detail:focus {
    box-shadow: 0px 0px 5px #999;
    border-radius: 0px;
}
.product-detail img {
    border: 1px solid #dedede;
    padding: 8px;
    width: 100%;
    transition: transform .9s ease;
}
.product-detail .img {
    position: relative;
    overflow: hidden;
}
.product-detail .img:hover img,
.product-detail .img:focus img {
    transform: scale(1.2);
}
.product-detail .img .content {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    visibility: hidden;
    /* background: rgba(0,0,0,0.1); */
}
.product-detail .img .content a {
    display: block;
    font-size: 28px;
    color:#F48633;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    top: 0px;
}
.product-detail .img .content a i {
    position: absolute;
    bottom: 10px;
    right: 15px;
}
.product-detail .img:hover .content,
.product-detail .img:focus .content {
    visibility: visible;
}
.product-detail .detail {
    padding-top: 15px;
    padding-bottom: 15px;
}
.product-detail .detail h3 {
    font-size: 24px;
}
.product-detail .detail a {
    text-decoration: none;
    color: #151515;
    padding: 5px 25px;
    display: inline-block;
    font-weight: 600;
}
.product-detail:hover .detail a,
.product-detail:focus .detail a {
    background: #F48633;
    color: #fff;
}
.whyUs {
    background: #2F3132 url('./../images/whyus.jpg') center center no-repeat;
    background-size: cover;
    padding: 100px 0px;
}
.whyUs .heading h2 {
    color: #fff;
    margin-bottom: 40px;
}
.whyUs .iconBox {
    margin-bottom: 40px;
    color: #fff;
    font-size: 13px;
    color: #999;
}
.whyUs .iconImg {
    font-size: 70px;
    line-height: 80px;
    color: #fff;
}
.iconBox .flex-column {
    display: flex;
    flex: 0 1 100%;
    border-bottom: 1px solid #555;
    padding-bottom: 40px;
    flex-direction: row !important;
}
.iconBox.text-right .flex-column {
    display: flex;
    flex: 0 1 100%;
    flex-direction: row-reverse !important;
}
.iconBox .flex-column .unit-left {
    margin-right: 20px;
    min-width: 70px;
}
.iconBox.text-right .flex-column .unit-left {
    margin-right: 0px;
    margin-left: 20px;
}
.iconBox h4 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}
.aboutUs {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}
.aboutUs .content {
    border: 10px solid #f5f5f5;
    padding: 15px;
}
.aboutUs
#about-us.pages .content {
    border: 0px;
    padding: 15px;
    line-height: 36px;
    font-size: 16px;
}
#about-us.pages .content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
#about-us.pages .content h3 {
    margin-bottom: 20px;
}
#about-us.pages .list-style-none {
    list-style: none;
    padding: 0px;
    margin: 20px 0px;
}
#about-us.pages .list-style-none li {
    margin-bottom: 15px;
}
#about-us.pages .list-style-none li i {
    margin-right:15px;
    color:#F48633;
}
.aboutUs b,
.aboutUs li {
    font-weight: 600;
}
.aboutUs img {
    max-width: 100%;
}
.homeAboutUs {
    padding: 0px;
    position: relative;
    margin-top: -60px;
    z-index: 9;
}
.homeAboutUs .innerAboutUs {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 25px rgb(56 152 226 / 30%);
    padding: 30px;
    text-align: justify;
    font-size: 14px;
}
.homeAboutUs .innerAboutUs p {
    margin-bottom: 0px;
}
.parrallox {
    background: url('./../images/parrallox.jpg') center center no-repeat;
    background-size: cover;
    padding: 200px 0px;
    color: #fff;
}
.parrallox h4 {
    font-size: 28px;
    line-height: 40px;
    text-transform: uppercase;
    color: #2F3132;
}
.parrallox h2 {
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
}
.parrallox .btn {
    margin-top: 10px;
}
#parrallox .description {
    display: none !important;
}

#blog-articles .card,
#blog-categories .card {
    border-radius: 0px;
    border-color: #dedede;
}
#blog-articles .card-body,
#blog-categories .card-body {
    padding: 0px;
}
#blog-articles .card-body img,
#blog-categories .card-body img {
    display: block;
}
#blog-articles .card-body .content,
#blog-categories .card-body .content {
    padding: 15px;
}
#blog-articles .card-body .btn,
#blog-categories .card-body .btn {
    border-radius: 0px;
    padding: 5px 15px;
}
#blog-articles .card-body h3,
#blog-categories .card-body h3 {
    font-size: 20px;
    color:#F58220;
}
#blog-articles .card-body a,
#blog-categories .card-body a {
    color: #222221;
    text-decoration: none;
}
#blog-articles .card-body a.btn,
#blog-categories .card-body a.btn {
    color: #fff;
    text-decoration: none;
}
#sidebar .card {
    border-radius: 0px;
    border: 1px solid #dedede;
}
#sidebar .card-body {
    padding: 15px;
}
#sidebar .card-body ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
#sidebar .card-body ul a {
    display: block;
    border-bottom: 1px dashed #dedede;
    padding: 5px 0px;
    text-decoration: none;
    color: #222221;
}
#sidebar .card-body .card-title {
    border-bottom: 1px solid #dedede;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
#blog-articles .card.featured1 {
    border: 0px;
    position: relative;
}
#blog-articles .card.featured1 .content {
    position: absolute;
    bottom: 0px;
    color: #fff;
}
#blog-articles .card.featured1 .content a {
    text-decoration: none;
    color: #fff;
}
#blog-articles .card.featured1 .content h3 {
    font-size: 28px;
}
#blog-articles .card.featured2 .card {
    border: 0px;
}
#blog-articles .card.featured2 .card-body {
    display: flex;
    align-items: center;
}
#blog-articles .card.featured2 img {
    width: 50% !important;
}
.images {
    position: relative;
}
.images .img-gallery-item {
    position: relative;
    margin: 5px;
    display: block;
    overflow: hidden;
}
.images .img-gallery-item img {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.images .img-gallery-item:hover img,
.images .img-gallery-item:focus img {
    transform: scale(1.1);
}
.single-product .nav-tabs {
    margin-top: 50px;
    position: relative;
}
.single-product .nav-tabs a { 
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #495057;
}
.single-product #nav-tabContent h3 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}
.single-product .videoBlock {
    margin-bottom: 20px;
}
.pageHeading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}
.photo-gallery .img-gallery-item {
    border: 1px solid #dedede;
    display: block;
}
/* Footer Start Here */
#map {
    margin-bottom: -10px;
}

footer {
    background: #2F3132 url('./../images/headerbg.jpg') left center repeat;
    font-size: 13px;
    line-height: 28px;
}
.footerBlock {
    padding: 90px 0px 70px;
    color: #fff;
}
.footerBlock .footerLogo {
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
}
.footerBlock .text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}
.footerBlock h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}
.footerBlock p i {
    margin-right: 10px;
}
.footerBlock a {
    color: #fff;
    text-decoration: none;
}
.footerBlock a:hover,
.footerBlock a:focus {
    color:#F48633;
}

.footerBlock .social {
    margin-bottom: 30px !important;
}
.footerBlock .social a {
    display: block;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #f5f5f5;
    text-align: center;
    line-height: 38px;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    
}
.footerBlock .social a:hover,
.footerBlock .social a:focus {
    color: #F48633;
    background: #2F3132;
    border-color: #F48633;
}
.footerBlock ul {
    list-style: none;
    margin-left: 0px;
    padding-left:0px;
}
#copyright {
    background: transparent;
    color: #fff;
    padding: 30px 0px;
    border-top: 1px solid #555;
}
#copyright a {
    color: #fff;
    text-decoration: none;
}
#copyright a:hover,
#copyright a:focus {
    color: #F48633;
}
.callButton {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
    box-shadow: 0px 0px 3px #999;
    border-radius: 50%;
}

#parrallox {
    background: url('./../images/parrallox.jpg') center center no-repeat fixed;
    background-size: 100%;
    padding: 100px 0px;
}
#parrallox .block {
    padding: 30px;
    background:rgba(255,255,255,0.9);
    font-size: 14px;
    color: #171717;
    margin-bottom: 30px;
}
#parrallox .block .blockHeading {
    font-size: 24px !important;
    text-align: center;
    line-height: 34px;
    margin-bottom: 10px !important;
    margin-top: 0px !important;
    color: #F48633;
}
#parrallox .block p {
    line-height: 26px;
    text-align: center;
    color: #171717;
}
.tagLine {
    font-size: 100px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 3px #000;
    margin: 0px !important;
    line-height: 100px;
    font-family: 'Ms Madi', cursive;
} 
@media (max-width: 1199px) {
    .tagLine {
        font-size: 70px;
        line-height: 70px;
    }     
}
@media (max-width: 767px) {
    .tagLine {
        font-size: 50px;
        line-height: 50px;
    }     
    #header {
        padding: 10px 0px;
    }
    #header .container,
    nav .container {
        position: relative;
    }
    #header .headerLeft,
    #header .headerRight {
        display: none !important;
    }
    #header .navbar-brand {
        text-align: left;
        display: block;
    }
    .navbar-brand img {
        height: 50px;
    }
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: -55px;
        background: #fff;
    }
    .navbar-nav .nav-link {
        line-height: 26px;
        padding-bottom: 10px;
    }
    .padding-default,
    .pages,
    #products-services,
    #ps,
    #photo-gallery,
    #video-gallery,
    #enquiry,
    #contact {
        padding: 20px 0px;
        position: relative;
    }
    .heading {
        margin-bottom: 20px;
    }
    .heading h2 {
        font-size: 28px;
        line-height: 36px;
        text-transform: uppercase;
        color: #151515;
    }
    .whyUs .iconBox {
        text-align: left !important;
    }
    .iconBox.text-right .flex-column .unit-left {
        margin-right: 20px;
        margin-left: 0px;
    }
    .iconBox.text-right .flex-column {
        flex-direction: row !important;
    }
    #copyright p,
    #copyright .text-right {
        text-align: center !important;
    }
    .homeAboutUs {
        margin-top: 0px;
    }
    .homeAboutUs .innerAboutUs {
        padding: 20px;
    }
    #parrallox {
        background-size: cover;
        background-attachment: unset;
    }
}
@media (max-width: 767px) {
    .tagLine {
        font-size: 30px;
        line-height: 30px;
    }   
}