/**
* Template Name: MyBiz - v4.7.0
* Template URL: https://bootstrapmade.com/mybiz-free-business-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #e56b15;
    text-decoration: none;
}

a:hover {
    color: #0dd3fe;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #e56b15;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #03d1fe;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: #e56b15;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 996;
    padding: 10px 0;
}

#topbar.topbar-scrolled {
    top: -44px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #e56b15;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i {
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #e56b15;
}

#topbar .social-links a {
    color: #fff;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
    border-left: 1px solid #e9e9e9;
    font-size: 15px;
}

#topbar .social-links {
    text-align: right;
    float: right;
}

#topbar .social-links a:hover {
    color: #e56b15;
}

#topbar .social-links a:first-child {
    border-left: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 15px 0;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    top: 44px;
}

#header.header-scrolled {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    top: 0;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #354144;
    text-decoration: none;
}

#header .logo h1 a span,
#header .logo h1 a:hover span {
    color: #e56b15;
}

#header .logo img {
    padding: 0;
    margin: 0;
    width: 300px;
}

#header.header-scrolled .logo img {
    width: 220px;
}

#header.header-scrolled .logo {
    top: 15px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #404f52;
    white-space: nowrap;
    text-transform: capitalize;
    transition: 0.3s;
    font-size: 16px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #e56b15;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #e56b15;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #354144;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
  display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #333;
    overflow-y: auto;
    transition: 0.3s;
    height: max-content;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #e56b15;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #0a090930;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #e56b15;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 80vh;
    background-color: rgba(31, 38, 39, 0.8);
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-top: 114px;
}

#hero .carousel-item {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    text-align: left;
}

#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 75px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Open Sans';
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 32px;
    text-transform: capitalize;
    background: #000;
    padding: 5px 15px;
    border-radius: 5px 65px 0px 5px;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .carousel-indicators li {
    cursor: pointer;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    transition: ease-in;
    opacity: 0.7;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background-color: #e56b15;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 21px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    background: #e56b15;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

#hero .btn-get-started:hover {
    background: #838280;
}

@media (max-width: 768px) {
    #hero {
        height: 90vh;
    }
    #hero .carousel-item {
        height: 90vh;
    }
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 150vh;
    }
    #hero .carousel-item {
        height: 150vh;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f2fdff;
}

.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #354144;
    position: relative;
    z-index: 2;
}

.section-title span {
    position: absolute;
    top: 30px;
    color: #f3f5f5;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 0;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .section-title span {
        font-size: 38px;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.about .content h2 span {
    color: #e56b15;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about .content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.about .content h3 {
    font-weight: 500;
    line-height: 1.7;
    font-size: 23px;
    margin-top: 0;
    padding: 20px 20px;
    color: #040404;
    background: #f4f4f4;
    border-left: 4px solid #e56b15;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 28px;
    position: relative;
}

.about .content ul i {
    left: 0;
    top: 7px;
    position: absolute;
    font-size: 20px;
    color: #e56b15;
}

.about .content p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# About List
--------------------------------------------------------------*/

.about-list {
    padding-top: 3pc;
    padding-bottom: 1pc;
}

.about-list .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.about-list .icon-box i {
    font-size: 32px;
    float: left;
    color: #e56b15;
}

.about-list .icon-box p {
    font-size: 16px;
    color: #ccc;
    margin-left: 45px;
    line-height: 1.8;
}

.about-list .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #ccc;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    background: url(../img/s2.png) center center no-repeat;
    background-size: cover;
    padding: 80px 0 60px 0;
    position: relative;
    background-attachment: fixed;
}

.counts::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.counts .title {
    position: relative;
    color: #fff;
    margin-bottom: 40px;
}

.counts .title h3 {
    font-size: 36px;
    font-weight: 700;
}

.counts .counters span {
    font-size: 65px;
    display: block;
    color: #e56b15;
    font-weight: 600;
    letter-spacing: 1px;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 21px;
    color: #fff;
    text-align: center;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
}

.services .icon-box i {
    float: left;
    color: #e56b15;
    font-size: 40px;
    line-height: 0;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #354144;
    transition: 0.3s;
}

.services .icon-box:hover h4 a {
    color: #e56b15;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 0 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #444444;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #e56b15;
    color: #fff;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    text-align: center;
    background: rgba(53, 65, 68, 0.6);
    padding-bottom: 30px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
    display: flex;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
    color: #e56b15;
    margin: 0 4px;
    background-color: #fff;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a i {
    font-size: 18px;
    line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
    background: #e56b15;
    color: #fff;
}

.portfolio .portfolio-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    padding-bottom: 0;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #e56b15;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #e56b15;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(53, 65, 68, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
}

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover img {
    transform: scale(1.1);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #354144;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b4c1c4;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #c2cdcf;
}

.team .member .social a i {
    color: #fff;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #e56b15;
}

.team .member .social a+a {
    margin-left: 8px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    padding: 50px 0;
    background: #f4f4f4;
}

.testimonials::before {}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #333;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    margin: 0 auto 15px auto;
    color: #000;
    font-size: 16px;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #333;
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #e56b15;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-wrap {
   box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    padding: 0;
    background: #0b2a3c;
}

.contact .info {
 background: #38684e;
    margin-bottom: 0;
    border-bottom: 1px solid #ccc;
    padding: 30px 30px;
}

.contact .info i {
    font-size: 24px;
    color: #e56b15;
    float: left;
    width: 48px;
    height: 48px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
padding: 0 0 0 60px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    margin-top: 0;
}

.contact .info p {
 padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
}

.contact .info:hover i {
    background: #e56b15;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    padding: 30px;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #e56b15;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #0dd3fe;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f6f7f8;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4b5c61;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #1f2627;
    padding: 0 0 15px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #2a3336;
    border-bottom: 1px solid #354144;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

.footer-newsletter p {
    font-size: 16px;
}
.footer-newsletter p a {
    font-size: 16px;
     color: #fff;
}
#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #354144;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 5px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #e56b15;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #e56b15;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #27d8fe;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #e56b15;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #0187a4;
}

#footer .copyright {
    text-align: center;
    padding-top: 15px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.logo {
  
}

.enqbtn {}

.enqbtn button {
    border: 1px solid transparent;
    background: #e56b15;
    padding: 6px 25px;
    color: #fff;
    border-radius: 5px;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.carousel-item {
    background-size: cover;
    background-position: center;
}

.leadingbox {
    background-image: url(../../assets/img/bg.png);
    background-size: cover;
    background-position: center;
    padding: 0;
}

.leadingboxbg {
    padding: 4pc 0 12pc 0;
    background: rgba(0, 0, 0, 0.5);
}

.leadingbox h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
}

.leadingwrap {
    margin-top: -13pc;
}

.leading {
    background: #fff;
    height: 100%;
    padding: 30px 30px;
    box-shadow: 0 0 10px 0 #ccc;
    border-radius: 0;
}

.leading img {
    width: 55px;
    margin-bottom: 15px;
}

.leading h3 {
    color: #000;
    font-size: 26px;
    font-weight: 600;
}

.leading p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 15px;
    color: #000;
    text-align: justify;
}

.leadingback {
    background: #f4f4f4;
    padding: 90px 0;
}

.undelineicon {
    text-align: center;
}

.undelineicon img {
    width: 40px;
}

.undelineicon hr {}

.hr1 {
    border-color: #fff;
    width: 100px;
    background: #fff;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    position: relative;
    top: 15px;
}

.hr2 {
    border-color: #fff;
    width: 100px;
    background: #fff;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    position: relative;
    top: 15px;
}

.ic {
    display: inline-block;
    border: 1px solid #aaa;
    width: 60px;
    height: 60px;
    line-height: 58px;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
}

.projectwrap {
    padding: 0;
    background: #0b2a3c;
}

.projectbox {
    padding: 4pc 3pc 0 3pc;
}

.projectbox1 {
    padding: 0;
}

.projecthead {}

.projecthead h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.projecthead p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.projectline {
    background: #fff;
    padding: 0 0px;
    border: 1px solid #ccc;
}

.projectline img {
    width: 100%;
}

.projectname {
    color: #000;
    font-size: 22px;
    padding: 10px 10px;
    font-weight: 600;
    background: #f4f4f4;
}

.projectname span {
    float: right;
    color: #e56b15;
}

.projectname span i {}

.projbtn {
    color: #fff;
    border: 1px solid #ccc;
    padding: 8px 20px;
}

.qualitybg {
    background: #0b2a3c;
    margin-top: -8pc;
}

.qualitybox {
    padding: 90px 0 0 0;
}

.qualityimg {}

.qualityimg img {
    width: 100%;
    border: 1px solid #ccc;
}

.qualityline {}

.qualityline h3 {
    color: #000;
    font-size: 48px;
    font-weight: 700;
}

.qualityline h3 span {
    color: #e56b15;
}

.qualitytag {}

.qualitytag h3 {
    color: #fff;
    font-size: 35px;
    padding: 0 10px;
}

.countbox {
    border: 1px solid #ccc;
    padding: 20px 0;
}

.flogo {}

.flogo img {
    width: 200px;
    margin-bottom: 20px;
}

.tagsec {
    background: #e56b15;
    padding: 30px 0;
}

.tagsec h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
}

.tagbtn {
    color: #e56b15;
    border: 4px double #e56b15;
    float: right;
    padding: 10px 49px;
    font-size: 23px;
    font-weight: 600;
    background: #fff;
}

.testihead {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 0;
}


}
.testihead h2 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
}
.testihead .hr1 {
    border: 1px solid #333;
}
.testihead .hr2 {
    border: 1px solid #333;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 640px) {
    .about .content h2 {
        font-weight: 700;
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 20px;
        text-transform: capitalize;
    }
    
    .leading {
        background: #fff;
        height: auto;
        padding: 30px 30px;
        box-shadow: 0 0 10px 0 #ccc;
        border-radius: 0;
        margin-bottom: 15px;
    }
    
    .projectbox {
        padding: 2pc 2pc;
    }
    
    .qualityline h3 {
        color: #000;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .qualitybg {
        background: #0b2a3c;
        margin-top: 0;
        padding-top: 30px;
    }
    
    .qualitytag h3 {
        color: #fff;
        font-size: 25px;
        padding: 0 10px;
    }
    
    .counts .counters span {
        font-size: 32px;
        display: block;
        color: #e56b15;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .counts .counters p {
        padding: 0;
        margin: 0 0 20px 0;
        font-family: "Raleway", sans-serif;
        font-size: 14px;
        color: #fff;
        text-align: center;
    }
    
    .countbox {
        border: 1px solid #ccc;
        padding: 20px 0;
        margin-bottom: 25px;
    }
    
    .counts {
        background: url(../img/s2.png) center center no-repeat;
        background-size: cover;
        padding: 45px 0 25px 0;
        position: relative;
        background-attachment: fixed;
    }
    
    .tagsec h2 {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .tagbtn {
        color: #e56b15;
        border: 4px double #e56b15;
        float: left;
        padding: 4px 25px;
        font-size: 18px;
        font-weight: 600;
        background: #fff;
    }
    
    #header .logo img {
        padding: 0;
        margin: 0;
        width: 75px;
    }
    
    .enqbtn button {
        border: 1px solid transparent;
        background: #e56b15;
        padding: 6px 15px;
        color: #fff;
        border-radius: 5px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    #hero p {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 15px auto;
        color: #fff;
        font-size: 14px;
        text-transform: capitalize;
        background: #000;
        padding: 5px 15px;
        border-radius: 5px 65px 0px 5px;
    }
    
    #hero {
        height: 50vh;
    }
    
    .projecthead h2 {
        color: #fff;
        font-size: 33px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .enqbtn {
    left: -20px;
    position: relative;
}
.navbar-mobile .enqbtn{
    display: none;
}
.topaddr{
display: none;
}
.topemail{
margin-bottom: 0;
    margin-top: -6px;
    margin-left: -30px;
    font-size: 13px;
}
.topmob{
  margin-bottom: 0;
    font-size: 13px;
}
.hidemob{
    display: none;
}
.logo{
    top: 0;
}
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 60px;
    right: 20px;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon{
    display: none;
}
#hero .carousel-item{
    height: 50vh;
}
#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    background: #e56b15;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.leadingbox h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
}
.leadingboxbg {
    padding: 2pc 0 10pc 0;
    background: rgba(0, 0, 0, 0.5);
}
.leadingback {
    background: #f4f4f4;
    padding: 90px 0 30px 0;
}
.about-list {
    padding-top: 1pc;
    padding-bottom: 0;
}
#footer .footer-top h4 {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
}
}

.topaddr{
margin-bottom: 0;
}
.topemail{
margin-bottom: 0;
}
.topmob{
    margin-bottom: 0;
}


.projtag{
padding: 0;
}
.leftimgbg{
background: #0b2a3c;
    padding: 4pc 5pc;
}
.leftimgbox{

}
.leftimgbox h3{
color: #fff;
    font-size: 42px;
    font-weight: 600;
}
.leftimgbox h4{
    color: #fff;
    font-size: 27px;
}
.valuebox{

    padding: 20px 25px;

}
.valuebox img{
width: 60px;
    margin-bottom: 15px;
}
.valuebox h3{

}
.valuebox p {
    color: #eee;
    font-size: 16px;
    margin-top: 15px;
}
.rightinfobg{
background-image: url(../../assets/img/bg2.png);
    background-size: cover;
    background-position: center;
    padding: 0;
}
.rightinfobgbox{
background: rgba(0,0,0,0.6);
    height: 100%;
    padding: 5pc 10pc;
}
.rightinfobgbox p{
color: #fff;
    font-size: 42px;
    font-family: 'Raleway';
    font-weight: 600;
}
.valuebtn{
    color: #fff;
    background: #000;
    border: 1px solid #ccc;
    padding: 10px 45px;
    font-size: 20px;
    margin-top: 15px;
}
.valuebox1{
    border: 1px solid;
}
.fl{
    font-size: 55px;
}






@media only screen and (min-device-width: 320px) and (max-device-width: 640px) {

.leftimgbg {
    background: #0b2a3c;
    padding: 1pc 2pc;
}
.rightinfobgbox {
    background: rgba(0,0,0,0.6);
    height: 100%;
    padding: 1pc 2pc;
}
.rightinfobgbox p {
    color: #fff;
    font-size: 22px;
    font-family: 'Raleway';
    font-weight: 600;
}
.fl {
    font-size: 27px;
}
.valuebtn {
    color: #fff;
    background: #000;
    border: 1px solid #ccc;
    padding: 7px 25px;
    font-size: 17px;
    margin-top: 0;
}
#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}
}








.topbanner{
background-image: url(../../assets/img/top.png);
    height: 300px;
    margin-top: 115px;
    background-size: cover;
    background-position: center;
}
.topbannerbg{
background: rgba(0,0,0,0.6);
    height: 300px;
}
.topbanner h2{
color: #fff;
    font-size: 52px;
    margin-top: 7pc;
    font-weight: 700;
}
.aboutpagebox{
    background: #f4f4f4;
}
.aboutimg{

}
.aboutimg img {
 width: 100%;
 
}
.imgbackline{
 border: 10px solid #0b2a3c;
    height: 361px;
    margin-top: 10px;
    left: -35px;
    position: relative;
    box-shadow: 0 0 15px 0 #8d8888;
    top: 17px;
    display: none;
}
.aboutpagetext{
     margin-top: 25px;
}
.vbox1{
background-image: url(../../assets/img/vision.jpg);
background-size: cover;
}
.vbox2{
background-image: url(../../assets/img/mission.jpg);
background-size: cover;
}
.vbox3{
background-image: url(../../assets/img/value.jpg);
background-size: cover;
}
.vboxbg{
background: rgba(0,0,0,0.7);
    padding: 25px 25px;
    height: 100%;
}
.leading.vbox1,.leading.vbox2,.leading.vbox3{
    height: 100%;
    padding: 0;
    border: 1px solid #aaa;
    border-radius: 0;
    box-shadow: none;
}
.vboxbg h3 {
    color: #fff;
    font-size: 33px;
    font-weight: 600;
}
.vboxbg p{
    color: #fff;
}
.viconbox{
    margin-top: -54px;
    background: #000;
    width: 75px;
    height: 75px;
    margin-bottom: 23px;
    text-align: center;
    border: 1px solid #aaa;
    line-height: 80px;
}
.abpoitwrap{
background: #0b2a3c;
    margin-top: 5pc;
}
.ptleftwrap{

}
.ptleftwrap p{
color: #fff;
    font-size: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 13px;
}
.ptleftwrap ul{
padding-left: 15px;
}
.ptleftwrap ul li{
   color: #fff;
    line-height: 2;
    font-size: 17px;
}
.rightwrapimg{

}
.rightwrapimg img{
width: 100%;
    margin-top: -9pc;
    border: 3px solid #fff;
}
.imgmob{
margin-top: 25px;
}
.imgmob p{
color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}
.imgmob p a{

}
.featurebox{
background: #0b2a3c;
    height: 100%;
    padding: 25px 25px;
    border-radius: 5px;
}
.featurebox img{
width: 70px;
    margin-bottom: 20px;
}
.featurebox h3{
color: #fff;
    font-size: 27px;
    font-weight: 600;
}
.featurebox p{
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 640px) {
    .topbanner {
    background-image: url(../../assets/img/top.png);
    height: 175px;
    margin-top: 115px;
    background-size: cover;
    background-position: bottom;
}
.topbannerbg{
    height: 175px;
}
.topbanner h2 {
    color: #fff;
    font-size: 40px;
    margin-top: 4pc;
    font-weight: 700;
}
.imgbackline{
    display: none;
}
.aboutimg img {
    width: 100%;
 
}
.aboutpagetext {
    margin-top: 0;
}
.abpoitwrap {
    background: #0b2a3c;
    margin-top: 0;
}
.ptleftwrap p {
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 13px;
}
.rightwrapimg img {
    width: 100%;
    margin-top: 0;
    border: 3px solid #fff;
}
.imgmob p {
    color: #fff;
    font-size: 17px;
    margin-bottom: 6px;
}
}







.testbox{
  background: #0b2a3c;
    margin-bottom: 20px;
}
.cname{
background: #0b2a3c;
padding: 10px 20px;
}
.cname h3{
color: #fff;
    font-size: 25px;
margin-bottom: 0;
}
.cname h3 span{
    font-size: 17px;
}
.cinfo{

}
.cinfo p{
color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}
.cinfo{
  background: #eee;
    padding: 15px 20px;
   
}

.Projectwrap{
    background: #fff;
}
.projbox{
background: #fff;
    box-shadow: 0 0 10px 0 #ccc;
    padding: 10px 10px;
    margin-bottom: 20px;
}
.projimg{

}
.projimg img{
width: 100%;
}
.projbox h3{
color: #000;
    font-size: 22px;
    font-weight: 600;
    padding: 15px 10px 0 10px;
}
.projbox p{
margin-bottom: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.7;
    padding: 0 10px;
}
.projbox p strong{
        color: #e56b15;
}






/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
     margin-top: 7pc;
  width: 35%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s

}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
color: #0b2a3c;
    float: right;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    right: 15px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;    
  background-color: #5cb85c;
  color: white;
}

.modal-body {padding: 0}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}




.enqadressbox{
background: #0b2a3c;
    padding: 20px 30px;
}
.enqformbox{
    
}

.enqbox{
    margin: 0;
}
.enqadress{

}
.enqadress i{
color: #e56b15;
    font-size: 17px;
}
.enqadress h4{
color: #fff;
    font-size: 21px;
}
.enqadress p{
color: #ddd;
    font-size: 15px;
    margin-left: 20px;
}
.enqformbox{
background: #f4f4f4;
    padding: 20px 30px;
}
.enqform{

}
.enqform .form-control{
border: 1px solid #ddd;
}
.enqform button{
color: #fff;
    background: #e56b15;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 7px 10px;
    font-size: 18px;
    width: 100%;
}
.enqform h3{
    color: #000;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
}
.enqform textarea.form-control{
height: 80px;
margin-bottom: 10px;
}






@media only screen and (min-device-width: 320px) and (max-device-width: 640px) {
.modal-content{
    width: 100%;
}
.enqadressbox{
    display: none;
}
.enqformbox {
    background: #f4f4f4;
    padding: 20px 30px;
    margin-top: -3pc;
}
.close{
        top: -3pc;
}
.featurebox {
    background: #0b2a3c;
    height: auto;
    padding: 15px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.about{
    padding: 20px 0;
}
.about .content h3 {
    font-weight: 500;
    line-height: 1.7;
    font-size: 20px;
    margin-top: 0;
    padding: 10px 15px;
    color: #040404;
    background: #f4f4f4;
    border-left: 4px solid #e56b15;
}
.qualityimg {
    margin-bottom: 15px;
}
.featurewrap{
    padding: 15px 0;
}
.featurebox p {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 0;
}
.abpoitwrap{
    padding: 15px 15px;
}
.ptleftwrap ul li {
    color: #fff;
    line-height: 2;
    font-size: 15px;
}
.Testimonialwrap{
    padding: 20px 0;
}
.cinfo p {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}
.cname h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 0;
}
.contact .info p {
    padding: 0 0 0 0;
    margin-bottom: 0;
    font-size: 15px;
    color: #ddd;
}
.contact .info i {
    font-size: 20px;
    color: #e56b15;
    float: left;
    width: 30px;
    height: 30px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.contact .info h4 {
    padding: 0 0 0 40px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}
.contact .info {
    background: #0b2a3c;
    margin-bottom: 0;
    border-bottom: 1px solid #ccc;
    padding: 20px 20px;
}
.contact .php-email-form button[type=submit]{
    width: 100%;
}
.contact .php-email-form .form-group {
    padding-bottom: 0;
}
.contact .php-email-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 12%);
    padding: 20px;
    background: #fff;
}
.projbox{
    margin-bottom: 20px;
}
}




.projsection{
   background: url(../img/bg3.png);
    display: block;
    overflow: hidden;
    background-repeat: repeat;
    margin-top: 20px;
    margin-bottom: 40px;
}
.projectimg{
padding: 20px 20px;
}
.projectimg img{
width: 100%;
    border: 20px double #ccc;
    background: #fff;
}
.projectinfo{
padding: 8% 8%;
    position: relative;
    background: #fff;
    border: 7px double #e56b15;
    margin-top: 45px;
    margin-left: -80px;
    box-shadow: 0 0 10px 0 #eee;
}
.projectinfo h3{
color: #e56b15;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 30px;
}
.projectinfo p{
color: #000;
    font-size: 17px;
}
.projectinfo p i{
color: #e56b15;
}
.projectinfo p strong{

}
.midline{
 position: absolute;
    left: -43pc;
    right: 0;
    width: 170px;
    color: #e56b15;
    border: 1px solid;
    margin: auto;
    top: 65px;
    opacity: 1;
    display: none;
}


@media only screen and (min-device-width: 320px) and (max-device-width: 640px) {
    .projectinfo h3 {
    color: #e56b15;
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 15px;
}
.projectinfo {
       padding: 4% 4%;
    position: relative;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
.projectinfo p {
    color: #000;
    font-size: 15px;
}
.Projectwrap {
    background: #fff;
    padding: 10px 0;
}
.projectimg {
    padding: 10px 10px;
}
}


.whatsappicon{
 position: fixed;
    bottom: 60px;
    right: 3px;
    z-index: 1;
}
.whatsappicon img{
   width: 60px;
}