
/* ================= MOBILE HERO ================= */
/* BANNER IMAGE ANIMATION */
.mobile-hero img,
.hero-banner img,
#carousel img {
    animation: zoomMove 12s ease-in-out infinite alternate;
}

/* KEYFRAMES */
@keyframes zoomMove {
    0% {
        transform: scale(1) translateX(0px);
    }
    50% {
        transform: scale(1.05) translateX(-10px);
    }
    100% {
        transform: scale(1.08) translateX(10px);
    }
}
/* HIDE BY DEFAULT (DESKTOP) */
.mobile-hero {
    display: none;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

    /* HIDE DESKTOP CAROUSEL */
    #carousel {
        display: none;
    }

    /* SHOW MOBILE HERO */
    .mobile-hero {
        display: block;
        position: relative;
        width: 100%;
        height: 70vh;  /* 🔥 BIG BANNER */
        overflow: hidden;
    }

    .mobile-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* DARK OVERLAY */
    .mobile-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }

    /* CONTENT */
   /* LIGHT BACKGROUND BEHIND TEXT */
.mobile-content {
    position: absolute;
    top: 10%;   /* 🔥 moved up */
    left: 50%;
    transform: translateX(-50%);

    text-align: center;
    color: #fff;
    width: 85%;

    /* LIGHT TRANSPARENT BG (NO BLUR) */
    background: rgba(0, 0, 0, 0.18);

    padding: 8px 12px;   /* 🔥 reduced padding */
    border-radius: 6px;
}

    .mobile-content h1 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .mobile-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* BUTTONS */
    .mobile-btn {
        display: block;
        width: 85%;
        margin: 10px auto;
        padding: 14px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-btn.call-btn {
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
    }

    .mobile-btn.whatsapp-btn {
        background: #25d366;
        color: #fff;
    }
}


/* PROFESSIONAL HERO SECTION */


#first-block {
    padding: 120px 20px 90px;
    text-align: center;
}

#first-block .line {
    max-width: 980px;
    margin: auto;
}

#first-block h1 {
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    color: #ffffff !important;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

#first-block .hero-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,0.92) !important;
    font-weight: 400 !important;
    max-width: 850px;
    margin: 0 auto 35px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    min-width: 220px;
    padding: 16px 28px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    #first-block {
        padding: 80px 15px 60px;
    }

    #first-block h1 {
        font-size: 34px !important;
    }

    #first-block .hero-text {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }

    .btn {
        min-width: 180px;
        font-size: 18px;
        padding: 14px 20px;
    }
}
/* ================= FOOTER ================= */

#footer {
    background: #00283a;
    color: #ffffff;
    padding-top: 50px;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
}

/* ================= GRID ================= */

.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 COLUMNS */
    gap: 30px;
    padding: 0 20px 40px;
    text-align: center;
}

/* ================= COLUMN ================= */

.footer-col {
    min-width: 0;
}

/* ================= TITLE ================= */

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* ORANGE UNDERLINE */
.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin: 8px auto 0;
}

/* ================= LIST ================= */

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

/* LIST ITEMS */
.footer-col ul li {
    margin-bottom: 10px;
}

/* ================= LINKS ================= */

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.footer-col ul li a:hover {
    color: #ff7a00;
    transform: translateY(-2px);
}

/* ================= CONTACT ICON LINKS ================= */

.footer-col ul li a i {
    margin-right: 6px;
}

/* ================= SOCIAL ICONS ================= */

.footer-social {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* SOCIAL ICON */
.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.1);
    border-radius: 50%;

    color: #ffffff;
    font-size: 16px;

    transition: all 0.3s ease;
}

/* SOCIAL HOVER */
.footer-social a:hover {
    background: #ff7a00;
    transform: scale(1.1);
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
    background: #001a25;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    color: #cccccc;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ================= STICKY CONTACT ================= */

.sticky-contact {
    position: fixed;
    bottom: 20px;
    right: 15px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 99999;
}

/* ================= BUTTON BASE ================= */

.sticky-contact a {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    text-decoration: none;

    box-shadow: 0 6px 15px rgba(0,0,0,0.3);

    transition: all 0.3s ease;
}

/* ================= WHATSAPP ================= */

.sticky-whatsapp {
    background: #25d366;
}

/* ================= CALL ================= */

.sticky-call {
    background: #e66a00;
}

/* ================= ICON ================= */

.sticky-contact i {
    font-size: 26px;
    color: #ffffff;
    line-height: 1;
}

/* ================= HOVER ================= */

.sticky-contact a:hover {
    transform: scale(1.1);
}

/* ================= CLICK EFFECT ================= */

.sticky-contact a:active {
    transform: scale(0.95);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .sticky-contact {
        bottom: 15px;
        right: 12px;
    }

    .sticky-contact a {
        width: 55px;
        height: 55px;
    }

    .sticky-contact i {
        font-size: 22px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .sticky-contact a {
        width: 52px;
        height: 52px;
    }

    .sticky-contact i {
        font-size: 20px;
    }
}
/* ================= ROUTES SECTION ================= */

#routes {
    background: #f4f8fb;
    padding: 70px 20px;
    text-align: center;
}

/* HEADING */
#routes .section-title {
  color: #00283a;
	font-size: 3.8em;
	font-weight: 700;
	letter-spacing: -1px;
	margin: 0 0 1.25em;
	text-align: center;
	text-transform: uppercase;
}

/* SUBTEXT */
.routes-subtext {
    max-width: 700px;
    margin: 10px auto 30px;
    color: #555;
    font-size: 16px;
}

/* GRID */
.routes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    text-align: left;
}

/* LIST */
.routes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.routes-list li {
    margin-bottom: 14px;
}

.routes-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 14px 18px;

    background: #ff7a00;
    color: #ffffff;
    text-decoration: none;

    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;

    border-left: 4px solid #00a8b5;

    transition: all 0.3s ease;
}

.routes-list li a:hover {
    background: #ffffff;
    color: #00283a;

    border-left: 4px solid #ff7a00;

    transform: translateX(6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/* NOTE TEXT */
.routes-note {
    margin-top: 30px;
    font-size: 16px;
    color: #00283a;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .routes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .routes-container {
        grid-template-columns: 1fr;
    }
     .routes-list li a {
        min-height: auto;
        padding: 16px;
    }
}
/* ================= GOOGLE REVIEW SECTION ================= */

#reviews {
    background: #f1f3f4; /* Google light grey */
    padding: 70px 20px;
}

/* HEADING */
#reviews .section-title {
   color: #00283a;
	font-size: 3.8em;
	font-weight: 700;
	letter-spacing: -1px;
	margin: 0 0 1.25em;
	text-align: center;
	text-transform: uppercase;
}

/* GOOGLE HEADER */
.google-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.google-logo {
    width: 40px;
    height: auto;
}

.google-header h3 {
    margin: 0;
    font-size: 20px;
    color: #202124;
    font-weight: 500;
}

.google-header p {
    margin: 0;
    font-size: 14px;
    color: #5f6368;
}

/* GRID */
.review-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* HOVER */
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* TOP ROW */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAME */
.top-row h4 {
    margin: 0;
    font-size: 15px;
    color: #202124;
    font-weight: 500;
}

/* TIME */
.time {
    font-size: 12px;
    color: #5f6368;
}

/* GOOGLE ICON */
.g-icon {
    width: 18px;
    height: 18px;
}

/* STARS */
.stars {
    color: #fbbc04;
    font-size: 14px;
    margin: 8px 0;
    letter-spacing: 1px;
}

/* BODY */
.review-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* TEXT */
.review-body p {
    font-size: 14px;
    color: #202124;
    line-height: 1.5;
    margin: 0;
}

/* REVIEW IMAGE */
.review-photo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .review-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .review-container {
        grid-template-columns: 1fr;
    }

    .google-header {
        flex-direction: column;
        text-align: center;
    }

    .review-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-photo {
        width: 100%;
        height: auto;
    }
}
/* ================= FEATURES BOX DESIGN ================= */

.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;

    height: 100%;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* ICON STYLE */
.feature-card i {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 15px;
}

/* TITLE */
.feature-card h2 {
    font-size: 18px;
    color: #00283a;
    margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* ================= FLEET SECTION ================= */

#fleet {
    background: #f4f8fb;
    padding: 70px 20px;
}

/* GRID LAYOUT */
.fleet-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* CARD DESIGN */
.fleet-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;

    padding-bottom: 20px; /* ADD THIS */
}

.fleet-card:hover {
    transform: translateY(-10px);
}
.fleet-card:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}
/* IMAGE */
.fleet-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;  /* IMPORTANT */
    background: #ffffff;
    padding: 15px;
}

/* TITLE */
.fleet-card h3 {
    margin: 15px 0 5px;
    font-size: 20px;
    font-weight: 600;
    color: #00283a;
}

/* SUB TEXT */
.fleet-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

/* BUTTON CONTAINER */
.fleet-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
}

/* COMMON BUTTON */
.fleet-btns a {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 25px;   /* rounded */
    font-weight: 600;
}

/* ================= FIXED CALL BUTTON ================= */
.fleet-btns .call-btn {
    border: 1px solid #00283a;
    color: #00283a !important;  /* FIXED */
    background: transparent;
}

.fleet-btns .call-btn:hover {
    background: #00283a;
    color: #ffffff !important;
}

/* ================= BOOK BUTTON ================= */
.fleet-btns .book-btn {
    background: #ffc107;
    color: #000;
}

.fleet-btns .book-btn:hover {
    background: #e0a800;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .fleet-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fleet-container {
        grid-template-columns: 1fr;
    }

    .fleet-card img {
        height: 200px;
    }
}
/* ================= FIRST BLOCK ================= */
#first-block {
    background: #002f3a;
    padding: 60px 20px;
    text-align: center;
}

/* ================= HEADING ================= */
#first-block h1 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ================= TEXT ================= */
.hero-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* ================= BUTTON GROUP ================= */
.btn-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================= COMMON BUTTON ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 240px;
    height: 60px;

    font-size: 18px;
    font-weight: 600;

    border-radius: 8px;
    box-sizing: border-box;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* ================= ICON ================= */
.btn i {
    font-size: 18px;
    margin-right: 10px;
    width: 22px;
    text-align: center;
    color: inherit;
}

/* ================= CALL BUTTON ================= */
.call-btn {
    border: 2px solid #ffffff;
    color: #ffffff !important;
    background: transparent;
}

.call-btn:hover {
    background: #ffffff;
    color: #002f3a !important;
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
    background: #2ecc71;
    color: #ffffff !important;
    border: 2px solid #2ecc71;
}

.whatsapp-btn:hover {
    background: #27ae60;
    border-color: #27ae60;
    color: #ffffff !important;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

    #first-block h1 {
        font-size: 26px;
    }

    .hero-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 85%;
    }
}

a.white-btn {
	border: 1px solid #fff;
	border-radius: 3px;
	color: #fff;
	display: block;
	font-size: 0.85em;
	margin-top: 1.25em;
	padding: 0.625em 1.25em;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
a.white-btn:hover {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
}
a.color-btn, form.customform button.color-btn {
	background: none;
	border: 1px solid #001925;
	border-radius: 3px;
	color: #001925;
	display: block;
	font-size: 0.85em;
	padding: 0.625em 1.25em;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
a.color-btn:hover, form.customform button.color-btn:hover {
	border: 1px solid #92c500;
	color: #92c500;
}
#topbar {
	background: none repeat scroll 0 0 #012232;
	border-bottom: 1px solid #001925;
	padding: 0.3125em 0;
}
#topbar p {
	color: #fff;
	font-size: 0.75em;
	opacity: 0.5;
	position: relative;
	top: 2px;
}
#topbar p strong {
	font-weight: 600;
}
#topbar i {
	color: #ffffff;
	font-size: 1.1em;
	opacity: 0.5;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
#topbar i:hover {
	color: #92c500;
	cursor: pointer;
	opacity: 1;
}
nav {
	background: none repeat scroll 0 0 #00283a;
}
header {
	border-bottom: 4px solid rgba(0, 40, 58, 0.53);
	position: fixed;
	width: 100%;
	z-index: 10;
}
p.logo {
	color: #fff;
	font-size: 1.7em;
	font-weight: 300;
	position: relative;
	text-transform: uppercase;
	top: 5px;
}
p.logo strong {
	font-weight: 700;
}
.top-nav li a {
	border-top: 2px solid #00283a;
	color: #fff;
	font-size: 0.95em;
	font-weight: 600;
	padding: 2.1em 1.5em 2.5em;
	text-transform: uppercase;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
.top-nav li a:hover, .top-nav li.active-item a {
	background: none repeat scroll 0 0 #00283a;
	border-top: 2px solid #92c500;
	color: #92c500;
	position: relative;
}
#carousel .text {
	position: absolute;
	top: 20%;
	z-index: 10;
}
.item {
	overflow: hidden;
	width: 100%;
}
.prev-arrow, .next-arrow {
	background: none repeat scroll 0 0 #00283a;
	cursor: pointer;
	float: left;
	height: 30px;
	line-height: 30px;
	margin-right: 1px;
	text-align: center;
	width: 30px;
}
#carousel .text h2 {
	background: none repeat scroll 0 0 rgba(146, 197, 0, 0.8);
	color: #fff;
	display: inline-block;
	font-size: 2em;
	font-weight: 300;
	margin: 1px 0;
	max-width: 600px;
	padding: 10px 20px;
	width: 100%;
}
#carousel .text p {
	background: none repeat scroll 0 0 #00283a;
	color: #fff;
	max-width: 600px;
	padding: 10px 20px;
	width: 100%;
}
#carousel .owl-dots {
	background: none repeat scroll 0 0 rgba(0, 40, 58, 0.53);
	bottom: 0;
	margin: 0;
	padding: 0.625em 0;
	position: absolute;
	width: 100%;
}
.owl-carousel.owl-theme .owl-dot span {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
	border: 3px solid rgba(0, 40, 58, 0.57);
	height: 18px;
	margin: 0 0.3125em;
	opacity: 1;
	width: 18px;
}
.owl-carousel.owl-theme .owl-dot.active span, .owl-carousel.owl-theme .owl-dot:hover span {
	background: none repeat scroll 0 0 #92c500;
}
#first-block {
	background: none repeat scroll 0 0 #00283a;
	padding: 3em 2em;
	text-align: center;
}
#first-block h1 {
	color: #fff;
	font-size: 2em;
	font-weight: 300;
	margin-top: 0;
}
#first-block p {
	color: #6c7c84;
	font-size: 0.85em;
}
#features {
	background: none repeat scroll 0 0 #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
	position: relative;
	text-align: center;
	z-index: 2;
}
/*
#features i {
	background: none repeat scroll 0 0 #92c500;
	border-radius: 100px;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3) inset;
	color: #fff;
	display: inline-block;
	font-size: 2em;
	height: 100px;
	line-height: 100px;
	text-align: center;
	width: 100px;
}
#features h2 {
	font-size: 1em;
	font-weight: 600;
	margin: 1.25em 0;
	text-transform: uppercase;
}
#features p {
	color: #777;
	font-size: 0.85em;
	line-height: 1.5em;
}*/
#about-us {
	background: none repeat scroll 0 0 #00283a;
	clear: both;
}
#about-us:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}
#about-us article {
	padding: 4em;
}
article h2 {
	font-size: 4em;
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 0.9;
	margin: 0 0 0.625em 0
}
article h1, article h2, article h3, article h4, article h5, article h6 {
	color: #fff;
}
.media-container {
  overflow: hidden;
}
.media-container video {
  display: block;
  height: 100%;
  max-width: none;
  min-width: 100%;
  width: auto;
}
article p, article li {
	color: #fff;
	font-size: 0.85em;
	opacity: 0.7;
}
article ul {
	padding: 1.25em 0;
}
article ul li {
	list-style-type: none;
	margin: 0.625em 0;
	padding: 0 0 0 1em;
}
article ul li:before {
	background: #00283a none repeat scroll 0 0;
	color: #fff;
	content: "\f006";
	display: inline-block;
	font-family: "mfg";
	font-size: 0.8em;
	height: 20px;
	line-height: 20px;
	margin-left: -1em;
	margin-right: 0.625em;
	text-align: center;
	width: 20px;
}
.about-us-icons i {
	border: 2px solid #92c500;
	border-radius: 100px;
	color: #92c500;
	display: block;
	float: left;
	font-size: 1.6em;
	height: 60px;
	line-height: 60px;
	margin-right: 0.625em;
	text-align: center;
	width: 60px;
}
.about-us-icons {
	display: block;
	margin-top: 2em;
}
h2.section-title:after {
	background: #dedede none repeat scroll 0 0;
	content: "";
	display: block;
	height: 1px;
	margin: 0.31225em auto 0;
	position: relative;
	width: 100px;
}
h2.section-title {
	color: #00283a;
	font-size: 3.8em;
	font-weight: 700;
	letter-spacing: -1px;
	margin: 0 0 1.25em;
	text-align: center;
	text-transform: uppercase;
}
#our-work {
	background: none repeat scroll 0 0 #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
	position: relative;
	z-index: 2;
}
.tab-item {
	background: #fff none repeat scroll 0 0;
	margin-top: 1.25em;
	padding: 1.25em 0;
}
.our-work-container {
	display: block;
	height: 100%;
	position: relative;
}
.our-work-text {
	background: #00283a none repeat scroll 0 0;
	bottom: 0;
	display: block;
	left: 0;
	opacity: 0;
	padding: 1.25em;
	position: absolute;
	right: 0;
	text-align: center;
	transition: opacity 0.20s linear 0s;
	-o-transition: opacityd 0.20s linear 0s;
	-ms-transition: opacity 0.20s linear 0s;
	-moz-transition: opacity 0.20s linear 0s;
	-webkit-transition: opacity 0.20s linear 0s;
	width: 100%;
}
.our-work-container:hover > .our-work-text {
	opacity: 1;
}
.our-work-text h4 {
	color: #fff;
	font-size: 1em;
	font-weight: 600;
}
.our-work-text p {
	color: #fff;
	font-size: 0.8em;
	opacity: 0.7;
}
.tab-nav {
	display: table;
}
a.tab-label, a.tab-label:link, a.tab-label:visited {
	background: #00283a none repeat scroll 0 0;
	color: #fff;
	display: block;
	font-size: 1em;
	padding: 0.625em 1.25em;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
a.tab-label:hover, a.tab-label.active-btn {
	background: #92c500;
	color: #fff;
}
#services {
	background: #6f9600 none repeat scroll 0 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
}
#services .margin {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* THIS FIXES ALIGNMENT */
}
#services h2 {
	color: #fff;
	margin: 0 0 1.25em;
}
#services h2.section-title:after {
	background: #fff none repeat scroll 0 0;
}
#services i {
	background: none repeat scroll 0 0 #fff;
	border-radius: 80px;
	color: #6f9600;
	display: block;
	float: left;
	font-size: 1.8em;
	height: 80px;
	line-height: 80px;
	margin-right: 0.625em;
	text-align: center;
	width: 80px;
}
.service-text {
	display: table;
	position: relative;
}
#services h3 {
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	text-transform: uppercase;
}
#services p {
	color: #fff;
	font-size: 0.8em;
}
#latest-news {
	background: #f3f3f3 none repeat scroll 0 0;
	box-shadow: 0px -10px 9px -11px rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
	position: relative;
	z-index: 3;
}
.news-date {
	background: #6f9600 none repeat scroll 0 0;
	clear: both;
	color: #fff;
	display: block;
	float: none;
	height: 130px;
	padding: 0.625em 0;
	text-align: center;
	width: 100%;
}
.day {
	font-size: 2.5em;
	font-weight: 700;
}
.month, .year {
	font-size: 0.85em;
}
.news-text {
	background: #fff none repeat scroll 0 0;
	border-bottom: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	border-top: 1px solid #e0e0e0;
	height: 130px;
	padding: 0.625em 1.25em;
}
.news-text p {
	color: #777;
	font-size: 0.85em;
}
#contact {
	background: none repeat scroll 0 0 #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
	position: relative;
	z-index: 2;
}
#contact input, #contact textarea {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
	border-radius: 3px;
}
form.customform button.color-btn {
	height: auto;
	margin-top: 0;
}
#contact h2 {
	margin: 0 0 1.25em;
}
#contact h3 {
	color: #92c500;
	font-size: 1em;
	font-weight: 700;
	margin: 0 0 0.625em;
	text-transform: uppercase;
}
#contact p {
	font-size: 0.85em;
	font-style: normal;
	line-height: 2em;
}
#contact p strong {
	font-weight: 700;
}
#contact i {
	background: #e0e0e0 none repeat scroll 0 0;
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	line-height: 26px;
	margin: 0.625em;
	text-align: center;
	width: 26px;
}
#map-block {
  filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="g"><feColorMatrix type="matrix" values="0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0"/></filter></svg>#g');
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);    
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
}
footer {
	background: none repeat scroll 0 0 #00283a;
	padding: 3.5em 0;
}
footer p, footer a:visited, footer a, footer a:hover {
	color: #6c7c84;
	font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  header {
    position: relative;
  }
  #carousel .text {
  	font-size: 0.8em;
  	top: 20%;
  }
  .owl-controls.clickable {
  	display: none!important;
  }
  .right {
  	float: none;
  }
  .social.right {
  	float: right;
  }
  #about-us article {
  	padding: 4em 2.5em;
  }
  .news-text {
  	height: auto;
  }
}
@media screen and (max-width: 480px) {
  #topbar {
  	line-height: 1.625em;
  	text-align: center;
  }
  .social.right {
  	float: none;
  }
  h2.section-title {
    font-size: 3em;
    line-height: 1.1;
  }
}
@media screen and (max-width: 768px) {
    .background-image {
    background-position: center;
  }
  p.logo, p.nav-text {
  	text-align: center;
  }
  p.logo {
    top: 0;
    height: 56px;
  }
}

/* LOGO FINAL FIX */

p.logo {
    margin: 0;
    top: 0;
    height: auto;
}

p.logo img {
    width: 260px;      /* desktop logo */
    max-width: none;
    height: auto;
    display: block;
}

/* Tablet */
@media screen and (max-width: 768px) {
    p.logo img {
        width: 140px;
        margin: 10px auto;
    }

    p.logo {
        text-align: center;
        height: auto;
        position: relative;
        z-index: 20;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    p.logo img {
        width: 225px;
    }
}