@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}



:root {
	--primary-color: #007876;
	--light-color-bg: #EDF7FF;
	--dark-color-bg: #007876;
	--primary-icon-color: #007876;
	--primary-text-color: #007876;
	--dark-color: #111111;
	--white-color: #ffffff;
	--footer-text-color: #45c2b1;
	--light-border-color: #f6f6f6;
	--dark-heading: #01084F;
    --transparent-bg: transparent;
    --light-desc-color: #7B7777;
    --light-desc-colorx: #B1B1B1;
    --highlight-color: #F6C358;
    --footer-text-color:#53565A;
}
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

body {
    height: 100%;
    overflow-y: scroll; /* Enable vertical scrolling */
    scrollbar-width: none; /* Firefox */
	overflow-x: hidden!important;
}

/* Hide scrollbar for WebKit browsers */
body::-webkit-scrollbar {
    display: none;
}


body {
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	background-color: var(--white-color);
	color: var(--dark-color);
	line-height: 1.5;
}


.container, .container-fluid {
    padding: 0 15px;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 90%;
    }
}
p {
	margin: 0 0 10px;
	line-height: 30px;
	letter-spacing: .5px;
	font-size: 16px;
}
/* Header css */
section.header {
    background-color: var(--transparent-bg);
    padding: 15px 0;
   
    z-index: 999;
    width: 100%;
    float: left;
    transition: all 0.3s ease;
}
.positionadd{position: absolute;}
.header.addcolorclass {
	background: #027673;
}
section.header.navbar-scrolled {
    position: fixed;
    background: var(--white-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--light-desc-color);
}
section.header.navbar-scrolled .navbar-default .navbar-nav>li>a {
    color:var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}
section.header.navbar-scrolled .navbar-default .navbar-toggle {
    border-color:var(--dark-color);
}
section.header.navbar-scrolled .navbar-default .navbar-toggle .icon-bar {
    background-color :var(--dark-color);
}
section.header.navbar-scrolled .search-icon i{
    color: var(--dark-color);
}
.logo .default-logo {
    display: block;
}
.logo .scroll-logo {
    display: none;
}

.navbar-scrolled .logo .default-logo {
    display: none;
}
.navbar-scrolled .logo .scroll-logo {
    display: block;
}
.navbar-scrolled .logo img {
    max-height: 56px !important;
    width: auto;
}
section.header .logo img {
    max-height: 70px;
    width: auto;
}

section.header ul.nav.navbar-nav {
    float: right;
}

section.header .navbar-default {
    background-color: var(--transparent-bg);
    border: none;
    margin-bottom: 0;
    background-image: none;
    box-shadow: none;
}

section.header .navbar-default .navbar-nav>li>a {
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

section.header .navbar-default .navbar-nav>li>a:hover,
section.header .navbar-default .navbar-nav>li>a:focus {
   color: #000;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  text-decoration: underline;
	
}

section.header .navbar-default .navbar-nav>.active>a,
section.header .navbar-default .navbar-nav>.active>a:hover,
section.header .navbar-default .navbar-nav>.active>a:focus {
color: #000;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  text-decoration: underline;
}

section.header .navbar-default .navbar-toggle {
    border-color: var(--white-color);
}

section.header .navbar-default .navbar-toggle .icon-bar {
    background-color: var(--white-color);
}

section.header .navbar-default .navbar-toggle:hover,
section.header .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

section.header .dropdown-menu {
    background-color: var(--dark-color-bg);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

section.header .dropdown-menu > li > a {
	color: #fff;
	padding: 10px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-transform: uppercase;
	letter-spacing: .5px;
}

section.header .dropdown-menu>li>a:hover,
section.header .dropdown-menu>li>a:focus {
    color: #000;
    background-color: transparent;
}

section.header .search-icon a {
    padding: 15px 10px !important;
    color: var(--white-color) !important;
}

section.header .search-icon a:hover {
    color: var(--primary-color) !important;
}

section.header .search-box {
    display: none;
    position: absolute;
    right: 15px;
    top: 100%;
    width: 300px;
    padding: 15px;
    background-color: var(--dark-color-bg);
    z-index: 1000;
}

section.header .btn-request-quote {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    border-radius: 4px;
    margin: 8px 0 8px 15px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

section.header .btn-request-quote:hover {
    background-color: var(--dark-color-bg);
    color: var(--white-color) !important;
}

section.header .navbar-default .navbar-nav>.quote-btn>a:hover,
section.header .navbar-default .navbar-nav>.quote-btn>a:focus {
    background-color: var(--dark-color-bg) !important;
    color: var(--white-color) !important;
}

@media (max-width: 991px) {
    section.header .search-box {
        position: static;
        width: 100%;
    }

    section.header .btn-request-quote {
        margin-left: 0;
        display: inline-block;
    }

    section.header .navbar-nav {
        margin: 0 -15px;
    }

    section.header .navbar-nav>li>a {
        padding: 10px 15px !important;
    }

    section.header .dropdown-menu>li>a {
        padding: 8px 15px;
    }
}
@media(max-width: 767px) {
    section.header ul.nav.navbar-nav {
        float: left;
    }
    div#main-nav {
        background: var(--white-color);
    }
    section.header .navbar-default .navbar-nav>li>a{
        color: var(--dark-color);
    }
  }
/* section banner */

.banner-slide {
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    position: relative;
    z-index: 0;
    background: var(--primary-color);
}

.banner-slide .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.banner-slide .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.banner-slide .swiper-slide {
    overflow: hidden;
    color: var(--primary-color);
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.banner-slide .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-color-bg);
    text-align: left;
}

.banner-slide .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.banner-slide h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

.banner-slide h2 {
    font-size: 64px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.5s ease 0.1s;
}

.banner-slide p {
    max-width: 600px;
    display: inline-block;
    margin-bottom: 40px;
    opacity: 0;
    color: var(--white-color);
    transform: translateY(50px);
    transition: all 0.5s ease 0.2s;
}

.banner-slide .btn-theme {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.banner-slide .swiper-slide-active h6,
.banner-slide .swiper-slide-active h2,
.banner-slide .swiper-slide-active p,
.banner-slide .swiper-slide-active .btn-theme {
    opacity: 1;
    transform: translateY(0);
}

.banner-slide .btn-theme {
    color: var(--white-color) !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 30px;
    font-size: 14px;
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
    position: relative;
    box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
    border-radius: 70px;
}

.banner-slide .btn-theme.bg-orange {
    background-color: var(--dark-color-bg);
}

.banner-slide .btn-theme:before {
    background-color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 0;
    left: 60%;
    right: 60%;
    bottom: 0;
    opacity: 0;
    content: '';
    z-index: -1;
    transition: 0.5s all ease;
    border-radius: 0;
}

.banner-slide .btn-theme:hover:before {
    left: 0;
    right: 0;
    opacity: 1;
}

.banner-slide .swiper-custom-pagination {
    width: 100%;
    max-width: 1210px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    margin-top: -150px;
    display: flex;
    flex-wrap: wrap;
    bottom: 10px;
    left: 0;
}

.banner-slide .swiper-custom-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    flex: 1;
    background: transparent;
    opacity: 0.4;
    border-radius: 0;
    padding: 15px 0;
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
    line-height: 1;
    margin: 0 4px;
}

.banner-slide .swiper-custom-pagination .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
}

.banner-slide .swiper-custom-pagination .swiper-pagination-bullet:hover,
.banner-slide .swiper-custom-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.banner-slide .swiper-custom-pagination .swiper-pagination-bullet:hover:after,
.banner-slide .swiper-custom-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    width: 100%;
}

.banner-slide .swiper-custom-pagination .swiper-pagination-bullet span {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    float: left;
    margin-top: 5px;
}
@media(max-width:767px){
    span.swiper-pagination-bullet {
        display: none;
    }
    .banner-slide h2 {
        font-size: 42px;
    }
}

/* About section */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--white-color);
    overflow: hidden;
    margin-top: 50px;
}

.about-section .transport-heading-bg {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 0;
    user-select: none;
    font-family: "Roboto", Sans-serif;
    font-size: 150px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 86px;
    letter-spacing: 0px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    color: var(--transparent-bg);
    -webkit-text-stroke-width: 1.3px;
    -webkit-text-stroke-color: #00000014;
}

.about-section .image-stack {
    position: relative;
    z-index: 1;
}

.about-section .image-left {
    width: 80%;
    margin-top: 20px;

}

.about-section .image-right {
    position: absolute;
    width: 80%;
    right: 0;
    top: 150px;
    border: 10px solid var(--white-color);
    z-index: 2;
}

.about-section .about-content {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.about-section .short-heading {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-section .main-heading {
    font-size: 46px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-section .about-text {
    color: var(--light-desc-color);
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.about-section .icon-features {
    margin-bottom: 30px;
}

.about-section .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-section .feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 10px;
}

.about-section .feature-item span {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0px;
}

.about-section .checkmark-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-section .checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #000000;
    font-family: "Outfit", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.about-section .checkmark-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.about-section .btn-request-quote {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.about-section .btn-request-quote:hover {
    background-color: #e05d00;
    color: #fff;
    text-decoration: none;
}

.about-section .btn-request-quote i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.about-section .btn-request-quote:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0 40px;
        margin-top: 0;
    }
    .about-section .transport-heading-bg {
        font-size: 80px;
        top: 30px;
    }

    .about-section .about-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .about-section .image-left,
    .about-section .image-right {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-section .transport-heading-bg {
        font-size: 52px;
    }

    .about-section .main-heading {
        font-size: 28px;
    }
}

/* feature section */
.services-section {
    position: relative;
   /*  padding: 100px 0 150px; */
    padding: 60px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
}

.services-section .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.services-section .title-wrapper {
    display: inline-block;
    text-align: center;
}

.services-section .sub-title-outer {
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
}

.services-section .subtitle {
    position: relative;
    display: block;
    z-index: 1;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-top: 20px;
    transition: all 0.3s ease;
}

.services-section .title {
    margin-top: -6px;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.services-section .features-grid {
    position: relative;
    z-index: 1;
}

.services-section .features-item {
    padding: 0 10px;
    margin-bottom: 20px;
}

.services-section .features-block-style3 {
    position: relative;
    height: 100%;
}

/* .services-section .features-block-style3 .inner-box {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 25px 12px;
    text-align: center;
    transition: all 300ms ease;
    height: 100%;
    position: relative;
    z-index: 2;
} */
.services-section .features-block-style3 .inner-box {
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 25px 12px;
	text-align: center;
	transition: all 300ms ease;
	height: 100%;
	position: relative;
	z-index: 2;
	float: left;
	width: 100%;
}
/* .services-section .features-block-style3::before {
    content: "";
    border: 1px solid var(--light-desc-color);
    width: 85px;
    height: 230px;
    position: absolute;
    right: 1px;
    bottom: calc(50% - 115px);
    transform: translateX(-50%) skew(-15deg, 0deg);
    z-index: 1;
    transition: all 300ms ease;
} */
.inner-box img{
	width:100%;float:left;
}
/* .services-section .features-block-style3:hover .inner-box {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background-color: var(--dark-color);
} */

.services-section .features-block-style3:hover::before {
    border-color: var(--primary-color);
}

.services-section .features-block-style3 .inner-box .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    transition: all 300ms ease;
}

.services-section .features-block-style3 .inner-box .icon-box::before {
    content: "";
    position: absolute;
    background-color: var(--light-border-color);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    right: 9px;
    top: 5px;
    transition: all 300ms ease;
}

.services-section .features-block-style3 .inner-box .icon-box i {
    color: var(--primary-color);
    display: inline-block;
    font-size: 42px;
    position: relative;
    z-index: 1;
    line-height: 1;
    transition: all 300ms ease;
}

.services-section .features-block-style3:hover .inner-box .icon-box::before {
    background-color: #27323a;
}

/* .services-section .features-block-style3:hover .inner-box .icon-box i {
    transform: scaleX(-1);
} */

/* .services-section .features-block-style3:hover .inner-box .features-title {
    color: var(--white-color);
} */

/* .services-section .features-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    transition: all 300ms ease;
} */
.services-section .features-title {
	margin: 17px 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #333;
	line-height: 1.4;
	transition: all 300ms ease;
	float: left;
	width: 100%;
}
@media (max-width: 991px) {
    .services-section .features-item {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .services-section .services-section {
        padding: 60px 0;
    }
    
    .services-section .title {
        font-size: 28px;
    }
    
    .services-section .features-item {
        width: 50%;
    }
    .services-section .features-block-style3::before{
        display: none;
    }
}

@media (max-width: 480px) {
    .services-section .features-item {
        width: 100%;
    }
    
    .services-section .subtitle {
        font-size: 14px;
    }
    
    .services-section .title {
        font-size: 24px;
    }
}


/* choose us section */
.choose-us {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.choose-us .choose-left {
    background-image: url('assets/images/choose-1.png');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    padding: 0;
}

.choose-us .choose-left:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 45, 69, 0.81);
    z-index: 1;
}

.choose-us .choose-left-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    color: var(--white-color);
    width: 75%;
    margin-right: auto;
    margin-left: auto;
}

.choose-us .choose-right {
    background-image: url('assets/images/choose-2.png');
    background-size: cover;
    background-position: center;
    min-height: 524px;
    position: relative;
    padding: 0;
}

.choose-us .choose-right:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(58 114 112 / 70%);
    z-index: 1;
}

.choose-us .choose-right-content {
    position: relative;
    z-index: 2;
    padding: 86px 0 72px;
    color: #333;
    width: 75%;
    margin-right: auto;
    margin-left: auto;
}

.choose-us .choose-h6 h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.choose-left .choose-h6 h6 {
 color: var(--highlight-color);
}
.choose-us .choose-h2 h2,
.choose-us .choose-h2-right h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.choose-us .choose-h2 h2 {
    color: var(--white-color);
}

.choose-h2-right h2 {
    color: var(--white-color);
}

.choose-us .choose-para p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--white-color);
}

.choose-us .btn-track {
    display: inline-flex;
    align-items: center;
    background-color: var(--highlight-color);
    color: var(--dark-color);
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.choose-us .btn-track:hover {
    background-color: var(--light-border-color);
    color: var(--dark-color);
    text-decoration: none;
}

.choose-us .btn-track svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.choose-us .btn-track:hover svg {
    transform: translateX(5px);
}

.choose-us .choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.choose-us .choose-list li {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    color: var(--white-color);
    padding-left: 25px;
    position: relative;
}

.choose-us .choose-list li:before {
    content: "✓";
    color: var(--white-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 991px) {

    .choose-us .choose-left-content,
    .choose-us .choose-right-content {
        padding: 70px 10%;
    }

    .choose-us .choose-h2 h2,
    .choose-us .choose-h2-right h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {

    .choose-us .choose-left,
    .choose-us .choose-right {
        min-height: 400px;
    }

    .choose-us .choose-left-content,
    .choose-us .choose-right-content {
        padding: 50px 0;
    }

    .choose-us .choose-h2 h2,
    .choose-us .choose-h2-right h2 {
        font-size: 28px;
    }

    .choose-us .choose-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .choose-us .choose-left-content,
    .choose-us .choose-right-content {
        padding: 24px 0;
    }

    .choose-us .choose-h2 h2,
    .choose-us .choose-h2-right h2 {
        font-size: 24px;
    }

    .choose-us .choose-para p {
        font-size: 14px;
    }
}

/* Cta secction */

section.cta {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    color: var(--white-color);
    text-align: center;
}

section.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

section.cta .cta-content {
    position: relative;
    z-index: 2;
    padding: 0 15%;
}

section.cta .cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.cta .cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--white-color);
}

section.cta .cta-btn {
    background-color: var(--dark-color-bg);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

section.cta .cta-btn:hover {
    background-color: var(--dark-color-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    section.cta .cta-heading {
        font-size: 30px;
    }

    section.cta .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    section.cta .cta {
        padding: 70px 0;
    }

    section.cta .cta-content {
        padding: 0 10%;
    }

    section.cta .cta-heading {
        font-size: 26px;
    }

    section.cta .cta-text {
        font-size: 15px;
    }

    section.cta .cta-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
.crossborder {
	background: url('images/crossborder.jpg');
	background-size: cover;
	padding: 5% 0;
	color: #fff;
}
/* Legacy seection */
.legacy-section {
    padding: 60px 0 60px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

.legacy-section .main-heading h2 {
    font-size: 46px;
}

.legacy-section .image-container {
    position: relative;
    overflow: visible;
    height: auto;
    max-width: 100%;
}

.legacy-section .image-container img {
    width: 468px;
    height: 495px;
    display: block;
}

.legacy-section .funfact-box {
    position: absolute;
    right: 27px;
    bottom: -30px;
    background-color: #307e7b;
    background-image: url('assets/images/pattern.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white-color);
    z-index: 16;
    width: 230px;
    text-align: center;
    padding: 50px 0px 75px 0px;
}

.legacy-section .angle-overlay {
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    z-index: 3;
    border-top-width: 0;
    border-top-style: solid;
    border-top-color: var(--white-color);
    border-right-width: 45px;
    border-right-style: solid;
    border-right-color: var(--white-color);
    border-bottom-width: 45px;
    border-bottom-style: solid;
    border-bottom-color: #004b49;
    border-left-width: 0;
    border-left-style: solid;
    top: -44px;
    bottom: auto;
}

.legacy-section .funfact-icon i{
    font-size: 30px;
}
.legacy-section .legacy-right {
    position: relative;
}

.legacy-section .legacy-bg-text {
    position: absolute;
    font-family: "Roboto", sans-serif;
    font-size: 250px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: 0px;
    -webkit-text-stroke-width: 1.3px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.08);
    color: transparent;
    z-index: 0;
    top: 85px;
    left: 73%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0.9;
}

.legacy-section .legacy-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    height: 100%;
}

.legacy-section div#legacy-accordion {
    padding: 20px 40px 20px 40px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0000001A;
}

.legacy-section .faq-accordion .panel {
    border-radius: 0;
    margin-bottom: 10px;
    box-shadow: none;
    border: none;
}

.legacy-section .faq-accordion .panel-heading {
    background-color: var(--white-color);
    padding: 0;
    background-image: none;
}

.legacy-section .faq-accordion .panel-heading:not(:last-child) {
    border-bottom: 1px solid var(--light-border-color);
}

.legacy-section .faq-accordion .panel-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.legacy-section .faq-accordion .panel-title a:hover,
.legacy-section .faq-accordion .panel-title a:focus {
    color: var(--primary-color);
}

.legacy-section .faq-accordion .panel-title a:not(.collapsed) {
    color: var(--primary-color);
}

.legacy-section .faq-accordion .panel-title a:not(.collapsed) .accordion-icon {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.legacy-section .faq-accordion .panel-body {
    padding: 20px 0;
    color: var(--light-desc-color);
    line-height: 1.6;
    border-bottom: 1px solid var(--light-border-color);
    font-size: 16px;
}

.legacy-section .accordion-icon {
    color: var(--dark-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.legacy-section .sub-heading h6 {
    font-size: 15px;
    font-weight: 600;
    color:var(--primary-text-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.legacy-section .main-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

@media (max-width: 1199px) {
    .legacy-section .legacy-bg-text {
        font-size: 200px;
    }
}

@media (max-width: 991px) {
    .legacy-section .legacy-bg-text {
        font-size: 150px;
    }

    .legacy-section .main-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .legacy-section .legacy-bg-text {
        font-size: 100px;
    }

    .legacy-section .legacy-section {
        padding: 50px 0;
    }

    .legacy-section .legacy-left {
        margin-bottom: 60px;
    }

    .legacy-section .main-heading h2 {
        font-size: 26px;
    }

    .legacy-section .funfact-box {
        position: relative;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
    }

    .legacy-section .angle-overlay {
        display: none;
    }
    .legacy-section .image-container img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .legacy-section .legacy-bg-text {
        font-size: 56px;
    }
    .legacy-section .legacy-bg-text {
        left: 45%;
    }
}

/* Goodness section */
/* .goodness{
    padding-top: 40px;
    padding-bottom: 100px;
}
 */
 
 .goodness {
	padding-top: 60px;
	padding-bottom: 60px;
}
.goodness .pos-rel {
    position: relative;
}

.goodness .heading-main {
    color: var(--primary-text-color);
    font-family: 'Roboto', sans-serif;
    font-size: 55px;
    line-height: 55px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.goodness .heading-main span {
    color: rgba(6, 22, 58, 0.5);
    text-transform: uppercase;
    padding-bottom: 5px;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
}

.goodness .icon-box-3 {
    background: transparent;
   /*  margin-bottom: 48px; */ 
   margin-bottom: 15px;
}

.goodness .icon-box-3 .media {
    display: flex;
    align-items: flex-start;
}

.goodness .icon-box-3 .service-icon {
    height: 81px;
    width: 81px;
    margin-right: 30px;
    margin-left: 18px;
    border: 4px solid rgba(6, 22, 58, 0.11);
    background: transparent;
    position: relative;
    z-index: 10;
    margin-top: 25px;
    border-radius: 0;
    box-shadow: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goodness .icon-box-3 .service-icon:before {
    content: '';
    position: absolute;
    height: 81px;
    width: 81px;
    border: 4px solid rgba(6, 22, 58, 0.11);
    background: transparent;
    z-index: -1;
    left: -20px;
    top: -20px;
}

.goodness .icon-box-3 .service-icon i {
    font-size: 30px;
    color: var(--primary-icon-color);
}

.goodness .service-inner-content {
    font-size: 16px;
    color: var(--light-desc-color);
    line-height: 1.571;
}

.goodness .service-inner-content h4 {
    color:var(--dark-color);
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 15px;
    font-size: 18px;
}

.goodness .img-business-man {
    position: absolute;
    bottom: -100px;
    width: auto;
    left: 0;
    z-index: 5;
}

@media (max-width: 1199px) {
    .goodness .img-business-man {
        max-width: 40%;
    }
}

@media (max-width: 991px) {
    .goodness .heading-main {
        font-size: 40px;
        line-height: 40px;
    }

    .goodness .img-business-man {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 30px;
    }

    .goodness .col-lg-offset-6 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .goodness {
        padding-top: 40px;
        padding-bottom: 0;
        overflow-x: hidden;
    }

    .goodness .heading-main {
        font-size: 32px;
        line-height: 32px;
    }

    .goodness .icon-box-3 .service-icon {
        height: 60px;
        width: 60px;
        margin-right: 20px;
    }

    .goodness .icon-box-3 .service-icon:before {
        height: 60px;
        width: 60px;
    }

    .goodness .icon-box-3 .service-icon i {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .goodness .heading-main {
        font-size: 26px;
        line-height: 26px;
    }

    .goodness .heading-main span {
        font-size: 12px;
    }
}

/* Marquee section */
section.marquee {
    background: var(--dark-color-bg);
    padding: 10px 0;
}

section.marquee .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

section.marquee .marquee-content {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-reverse 501s linear infinite;
    animation-delay: 250ms;
}

section.marquee .marquee-tag {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
    transition: all 0.2s ease;
}

section.marquee .marquee-tag a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

section.marquee .marquee-icon {
    flex-shrink: 0;
    line-height: 1em;
    font-size: 51px;
    color: transparent;
}

section.marquee .marquee-icon svg {
    width: 51px;
    height: 51px;
    fill: transparent;
}

section.marquee .marquee-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 24.38px;
    display: inline-block;
    vertical-align: middle;
}

section.marquee .momojumbo {
    color: white;
}

@keyframes marquee-reverse {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    100% {
        -webkit-transform: translate(0%);
        transform: translate(0%);
    }
}


/* section what we do  */
section.what-we-do {
	padding: 60px 0;
	overflow-x: hidden;
	background-image: radial-gradient(#f2f2f2 1px,transparent 1px);
	background-size: 3px 4px;
}
section.what-we-do .section-title {
    margin-bottom: 30px;
    position: relative;
}

section.what-we-do .section-title .subtitle {
    position: relative;
    display: inline-block;
    color: var(--dark-color-bg);
    font-size: 14px;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-top: 20px;
}

section.what-we-do .section-title .subtitle:before {
    content: "";
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 13px;
    background-image: url(https://dev242.kodesolution.com/transfox/wp-content/plugins/mascot-core-transfox/assets/images/current-theme/pattern-12.png);
}

section.what-we-do .section-title .title {
    margin-top: -6px;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 46px;
    transition: all 0.3s ease;
}

section.what-we-do .description {
    font-size: 16px;
    color: var(--light-desc-color);
}

section.what-we-do .service-block-style5 {
    position: relative;
    margin-bottom: 40px;
}

section.what-we-do .service-block-style5 .service-featured-img {
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

section.what-we-do .service-block-style5 .service-featured-img img {
    border-radius: 10px;
    width: 100%;
    transition: all 300ms ease;
}

section.what-we-do .service-block-style5 .content {
    background-color: var(--white-color);
    box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-top: -41px;
    margin-left: 19px;
    margin-right: 19px;
    padding: 0 0 20px 0;
    text-align: center;
    transition: all 300ms ease;
}

section.what-we-do .service-block-style5 .content .service-icon i {
    background-color: var(--white-color);
    border-radius: 50%;
    border: 1px dashed var(--primary-text-color);
    color: var(--primary-text-color);
    display: inline-block;
    font-size: 36px;
    width: 68px;
    height: 68px;
    line-height: 68px;
    margin-bottom: 7px;
    margin-top: -29px;
    text-align: center;
    transition: all 300ms ease;
}

section.what-we-do .service-block-style5 .content .service-title {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

section.what-we-do .service-block-style5:hover .content .service-title a {
    color: var(--white-color);
}

section.what-we-do .service-block-style5 .content .service-title a {
    color: var(--dark-color);
    text-decoration: none;
}

section.what-we-do .service-block-style5 .content .service-title a:hover {
    text-decoration: none;
}

section.what-we-do .service-block-style5:hover .service-featured-img img {
    transform: scale(1.1);
}

section.what-we-do .service-block-style5:hover .content {
    background-color: var(--dark-color);
}

section.what-we-do .service-block-style5:hover .content .pattern-12 {
    opacity: 0.15;
}

section.what-we-do .service-block-style5:hover .content .service-icon i {
    background-color: var(--dark-color-bg);
    color: var(--white-color);
    transform: scaleX(-1);
}

section.what-we-do .icon-box {
    position: relative;
    z-index: 0;
    transition: all 0.4s ease;
}

section.what-we-do .icon-box.icon-left .icon-box-wrapper {
    display: flex;
}

section.what-we-do .icon-box .icon-wrapper {
    position: relative;
    z-index: 0;
}

section.what-we-do .icon-box.icon-left .icon-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

section.what-we-do .icon-round {
    border-radius: 50%;
}
@media(max-width:767px){
    .truck-png {
        display: none;
    }
}

/* section process */

section.process {
    position: relative;
    padding: 60px 0 0;
    overflow-x: hidden;
}
section.process .process-row {
    background-image: url('assets/images/feature-bg-s.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    margin-left: 120px;
}

section.process .process-float-image {
    position: absolute;
    top: -484px;
    left: -155px;
    width: 539px;
    height: 421px;
    background-image: url('assets/images/person.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

section.process .section-title {
    margin-bottom: 120px;
    position: relative;
}

section.process .container>* {
    position: relative;
    z-index: 2;
}

section.process .section-title .subtitle {
    position: relative;
    display: inline-block;
    color: var(--white-color);
    font-size: 14px;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-top: 20px;
}

section.process .process-title {
    color: var(--white-color);
    margin-top: -6px;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 36px;
    transition: all 0.3s ease;
}

section.process .title-seperator-line {
    height: 2px;
    width: 100px;
    background: var(--dark-color-bg);
    margin: 20px auto;
}

section.process .features-block-style4 {
    position: relative;
    margin-bottom: 100px;
}

section.process .features-block-style4 .number {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    position: absolute;
    top: -65px;
    left: calc(50% - 52.5px);
    outline: 1px dashed var(--white-color);
    outline-offset: 10px;
    transition: all 300ms ease;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 105px;
}

section.process .features-block-style4 .inner-box {
    background-color: var(--dark-color);
    padding: 0 30px 38px;
    text-align: center;
    position: relative;
}

section.process .features-block-style4 .icon-box {
    background-color: var(--dark-color-bg);
    width: 82px;
    height: 82px;
    line-height: 82px;
    margin: 0 auto;
    position: relative;
}

section.process .features-block-style4 .icon-box:before {
    background-color: var(--dark-color-bg);
    content: "";
    position: absolute;
    width: 32px;
    height: 20px;
    bottom: -19px;
    left: calc(50% - 16px);
    clip-path: polygon(0% 0, 100% 0, 50% 100%, 0 0%);
    transition: all 300ms ease;
}

section.process .feature-icon {
    color: var(--white-color);
    font-size: 50px;
    line-height: 82px;
}

section.process .content-box {
    margin-top: 32px;
}

section.process .features-title {
    color: var(--white-color);
}

section.process .features-details {
    color: var(--white-color);
}

section.process .features-block-style4:hover .inner-box .icon-box {
    background-color: var(--highlight-color);
    transform: scaleX(-1);
}

section.process .features-block-style4:hover .icon-box:before {
    background-color: var(--highlight-color);
    transform: scaleX(-1);
}

section.process .features-block-style4:hover .number {
    background-color: var(--dark-color-bg);
}

@media (max-width: 768px) {
    section.process .container, section.process .container-fluid {
        padding: 0;
    }
    section.process .features-block-style4 {
        margin-bottom: 120px;
    }

    section.process .features-block-style4 .number {
        top: -75px;
    }

    section.process .process-title {
        font-size: 28px;
    }

    section.process .process-row {
        margin-left: 0;
        padding: 90px 0 0;
    }
}

/* testimonials section */

/* section.testimonials {
    padding: 60px 0;
}
 */
 section.testimonials {
	padding: 0 0 60px 0;
	background: #fdfdfd;
}

section.testimonials .heading-main {
    text-align: center;
    margin-bottom: 30px;
}

section.testimonials .client-testimonial {
    box-shadow: 0px 8px 37px 0px rgba(0, 0, 0, 0.14);
    padding: 40px 20px;
    margin: 15px;
    background-color: var(--white-color);
}

section.testimonials .bg-wave {
    background-image: url(assets/images/wave.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
}

section.testimonials .client-testimonial .media {
    display: flex;
    align-items: flex-start;
}

section.testimonials .bg-navy-blue {
    background: var(--dark-color-bg);
}

section.testimonials .client-testimonial-icon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 20px;
    position: relative;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

section.testimonials .client-testimonial-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.5;
}

section.testimonials .client-testimonial-icon:after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    content: "\f10d";
    font-size: 36px;
    font-family: FontAwesome;
    color: var(--white-color);
    line-height: 0.833;
    z-index: 1;
    transform: translateX(-50%);
}

section.testimonials .client-inner-content {
    font-size: 0.875rem;
    color: var(--light-desc-color);
    line-height: 1.571;
}

section.testimonials .client-testimonial .client-inner-content {
    flex-grow: 1;
}

section.testimonials .client-testimonial p {
    font-size: 16px;
}

section.testimonials .client-inner-content .blockquote-footer,
section.testimonials .client-inner-content .blockquote-footer cite {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-top: 1rem;
    line-height: 1.375;
}

section.testimonials .blockquote-footer::before {
    content: "— ";
}

section.testimonials .owl-nav {
    text-align: center;
    margin-top: 0px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

section.testimonials .owl-carousel .owl-nav button.owl-prev,
section.testimonials .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    height: 40px;
    width: 40px;
    outline: none;
    display: inline-block;
    color: var(--dark-color);
    font-size: 24px;
    font-family: "FontAwesome";
    line-height: 40px;
    margin: -20px 5px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

section.testimonials .owl-carousel .owl-nav button.owl-prev:hover,
section.testimonials .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--dark-color-bg);
    color: var(--white-color);
}

section.testimonials .owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

section.testimonials .owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

@media (max-width: 767px) {
    section.testimonials .client-testimonial {
        padding: 30px 15px;
    }

    section.testimonials .client-testimonial-icon {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }

    section.testimonials .client-inner-content {
        font-size: 0.8125rem;
    }

    section.testimonials .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }

    section.testimonials .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }
}

/* footer css */
footer.footer {
    background-color: #E1DFDD;
    color: var(--light-desc-color);
    padding: 40px 0 20px;
}

/* footer.footer .footer-links {
    margin-bottom: 40px;
} */

/* footer.footer .footer-column {
    margin-bottom: 30px;
} */
footer.footer .footer-column {
  margin: 18px 0 20px 0;
  font-size: 16px;
  padding: 0;
}
footer.footer .footer-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px 0;
    color: var(--footer-text-color);
}

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

footer.footer .footer-menu li {
    margin-bottom: 10px;
}

footer.footer .footer-menu a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s;
    display: inline-block;
}

footer.footer .footer-menu a:hover {
    color: var(--primary-text-color);
    text-decoration: none;
}

footer.footer .footer-menu i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

footer.footer .footer-bottom {
    border-top: 1px solid var(--footer-text-color);
    padding-top: 20px;
}

footer.footer .copyright-text {
    font-size: 16px;
    color: var(--footer-text-color);
    margin-bottom: 15px;
}

footer.footer .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

footer.footer .footer-legal li {
    display: inline-block;
    margin-left: 15px;
}

.footer-legal li:first-child {
    margin-left: 0;
}

footer.footer .footer-legal li:after {
    content: "|";
    margin-left: 15px;
    color: var(--light-desc-color);
}

footer.footer .footer-legal li:last-child:after {
    display: none;
}

@media (max-width: 991px) {
    footer.footer .footer-title {
        font-size: 20px;
    }

    footer.footer .footer-legal ul {
        text-align: left;
    }

    footer.footer .footer-legal li {
        margin-left: 0;
        margin-right: 15px;
    }

    footer.footer .footer-legal li:after {
        margin-left: 15px;
    }
}

@media (max-width: 767px) {
    footer.footer .footer-column {
        margin-bottom: 30px;
    }

    footer.footer .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    footer.footer .footer-menu a {
        font-size: 14px;
    }

    footer.footer .copyright-text,
    footer.footer .footer-legal li {
        font-size: 14px;
    }

    footer.footer .footer-legal li {
        display: block;
        margin: 5px 0;
    }

    footer.footer .footer-legal li:after {
        display: none;
    }
    section.testimonials .client-testimonial .media {
        display: inline-block;
    }
}
@media (max-width:1400px){
    .choose-us .choose-right-content {
        padding: 86px 0 68px;
    }
    .legacy-section .funfact-box {
        right: -44px;
        bottom: -30px;
    }
}
@media (min-width:966px) and (max-width:1299px){
    p {
        font-size: 14px !important;
    }
    ul li, ol li{
        font-size: 14px !important;
    }
    .about-section .main-heading, .services-section .title, section.what-we-do .section-title .title, .legacy-section .main-heading h2,.goodness .heading-main,section.process .process-title,.choose-us .choose-h2 h2,.choose-us .choose-h2-right h2,section.testimonials .heading-main,section.cta .cta-heading {
        font-size: 38px;
    }
    .footer.footer .footer-menu a,footer.footer .copyright-text{
        font-size: 14px;
    }
    .footer.footer .footer-title{
        font-size: 18px;
    }
    .choose-us .choose-list li{
        font-weight: 500;
        margin: 5px 0;
    }
    .choose-us .choose-right-content {
        padding: 86px 0 64px;
    }
    section.process .process-row {
        margin-left: 58px;
    }
    .legacy-section .faq-accordion .panel-title a {
        font-size: 14px;
    }
    .legacy-section .faq-accordion .panel-body {
        font-size: 14px;
    }
    .about-section .icon-features {
        margin-bottom: 15px;
    }
    section.header .navbar-default .navbar-nav>li>a {
        font-size: 12px;
    }
    .about-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    .banner-slide .swiper-custom-pagination .swiper-pagination-bullet {
        margin: 0 27px;
    }
    .about-section .feature-item span {
        font-size: 18px;
    }
    .legacy-section .funfact-box {
        right: -44px;
        bottom: -30px;
    }
}

section, footer, header {
	float: left;
	width: 100%;
}

.innerpage h1 {margin: 0;width: 100%;float: left;}
.innerpage {
	background: url('images/stripe.jpg');
	color: #fff;
	padding: 70px 0;
	width: 100%;
	float: left;
	background-size: 100% 100%;
}
.contentarea {
	width: 100%;
	float: left;
	min-height: 250px;
	padding: 2% 15px;
	line-height: 30px;
	letter-spacing: .5px;
	font-size: 16px;
}
.form-control {
	width: 100%;
	height: 43px;
	font-size: 17px;
	
}
.contentarea .pagetitle {
	width: 100%;
	float: left;
	font-size: 25px;
	margin: 19px 0;
	font-weight: bold;
	color:#017772;
}
.sktcolorblock{margin: 40px 0 0 0;background: #f6f6f6;border-radius: 10px;padding: 2%;text-align: center;}
.bread {
	float: right;
	background: #fff;
	font-size: 15px;
	padding: 4px 10px;
	margin: 10px 0;
	max-width: 100%;
}