@import url("font-awesome.css");
@import url("flaticon.css");
@import url("animate.css");
@import url("owl.css");
@import url("jquery-ui.css");
@import url("jquery.fancybox.min.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*** 

====================================================================
    Reset
====================================================================

***/

/**/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/*** 

====================================================================
    Global Settings
====================================================================

 ***/

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #777777;
    line-height: 1.7em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #0060ff;
    /* transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;*/
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.6em;
}

p {
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    color: #000;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Typography */

h1 {
    font-size: 72px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;
}

.text-warning {
    color: #ed8b00 !important;
}

input,
input.form-control:focus,
input[type="text"]:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 0px 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 7px;
    border: 1px solid #a3a3a3;
    margin: 0;
    display: inline-block;
    outline: none;
    border-radius: 0;
}
.form-control {
    width: 100%;
    padding: 7px;
    border: 1px solid #a3a3a3;
    margin: 0;
    display: inline-block;
    outline: none;
    border-radius: 0;
}
::placeholder {
    opacity: 0.7;
    font-size: 15px;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.block {
    display: block;
}
.m-b-30 {
    margin-bottom: 30px;
}

.pad-80 {
    padding: 80px 0px;
}
.pad-50 {
    padding: 50px 0px;
}
.pad-80-20 {
    padding: 80px 0px 20px;
}
.pad-20 {
    padding: 20px 0px;
}
.pad-80-50 {
    padding: 80px 0px 50px;
}
.pad-150 {
    padding: 150px 0px 20px 0px;
}
.bg-1 {
    background: #f7f7f7;
}
.centered {
    text-align: center;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}

.box-shadow-1 {
    -webkit-box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
    box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
}
.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: linear-gradient(184deg, #d1223e, #a2636d) !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}

.overlay {
    position: relative;
    z-index: 0;
}

.overlay:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 1);
    -moz-background: rgba(0, 0, 0, 1);
    -webkit-background: rgba(0, 0, 0, 1);
    -ms-background: rgba(0, 0, 0, 1);
    -o-background: rgba(0, 0, 0, 1);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    top: 0;
}

.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}
.bg-overlay::after {
    background-color: rgb(0 0 0 / 74%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.bg-fixed {
    background-attachment: fixed !important;
}

/*Animation*/

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes movebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes fly {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
    }
    50% {
        top: 10px;
    }
}

/*==================Section Title Css===============*/

.section-title {
    position: relative;
    margin-bottom: 35px;
    color: #262261;
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}

.section-title span {
    color: #faaa3a;
}

/*==================Button Css===============*/
.theme-btn {
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
    line-height: normal;
}
.btn-style-one {
    display: inline-block;
    font-size: 15px;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: capitalize;
    background: -webkit-linear-gradient(to right, #1d4c42, #181716);
    background: linear-gradient(to right, #1d4c42, #181716);
}
.btn-style-one:hover {
    color: #000;
    transition: 500ms ease-out;
}

/*** 

====================================================================
    Header Css
====================================================================

***/
.header {
    width: 100%;
    z-index: 999;
    position: fixed;
}

.main-nav {
    background: #fff;
}

.main-nav .site-navigation {
    padding: 0px;
}

.main-nav .site-navigation .navbar-brand {
    padding: 0;
}

.main-nav .site-navigation .navbar-brand img {
    height: 85px;
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    line-height: 75px;
}
.main-nav .site-navigation .site-menu .nav-item {
    margin-right: 25px;
    position: relative;
}
.main-nav .site-navigation .site-menu .menu-link {
    position: relative;
    display: block;
    color: #000;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
}
.main-nav .site-navigation .site-menu .menu-link:hover {
    color: #00a7ca;
    transition: 0.4s;
}

.main-nav .site-navigation .outer-box .btn-box {
    display: flex;
    align-items: center;
}
.main-nav .site-navigation .outer-box .btn-box .nav-user {
    width: 38px;
    height: 38px;
    background: #10958714;
    text-align: center;
    display: inline-block;
    line-height: 38px;
    border-radius: 50px;
    box-shadow: 0px 0px 3px 0px rgb(98 195 184);
    margin-right: 30px;
    font-size: 22px;
    font-weight: 600;
    padding-left: 3px;
    color: #056839;
}
.main-nav .site-navigation .outer-box .btn-box .theme-btn {
    min-width: 80px;
    text-transform: uppercase;
    font-size: 15px;
}
.main-nav .site-navigation .close-menu-wrap {
    display: none;
}

.main-nav .site-navigation .site-menu .has-children span {
    font-size: 10px;
    margin-left: 4px;
    color: #fff;
}

/*Mobile Menu*/
.mobile-menu-trigger {
    cursor: pointer;
    margin-left: 30px;
    display: none;
    background: transparent;
    border: none;
}
.mobile-menu-trigger span {
    height: 2px;
    display: block;
    width: 25px;
    margin-bottom: 7px;
    background-color: #00a7ca;
}
.mobile-menu-trigger span:last-child {
    margin-bottom: 0;
}
.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #545454;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-x: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.mobile-menu-container li {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
    transform: translateX(100px);
    -webkit-transition: 1s;
    transition: 1s;
    border-top: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li:nth-last-child(1) {
    border-bottom: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li > a .slicknav_arrow:after {
    content: "+";
    position: absolute;
    top: 0;
    bottom: 0;
    color: white;
    z-index: 999;
    margin: 0 auto;
    text-align: center;
    right: 0;
    left: 0;
    font-size: 20px;
    line-height: 45px;
    font-weight: 600;
}
.mobile-menu-container.menu-open li.slicknav_open > a .slicknav_arrow:after {
    content: "-";
}
.mobile-menu-container.menu-open {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-container.menu-open li {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}
.mobile-menu-close::before {
    left: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mobile-menu-close::after {
    right: 13px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-menu-close::before,
.mobile-menu-close::after {
    position: absolute;
    height: 30px;
    width: 2px;
    background: #ffffff;
    content: "";
    top: 0;
}
#mobile-menu-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    padding: 150px 20px 20px 20px;
}
#mobile-menu-wrap div {
    background-color: transparent;
}
#mobile-menu-wrap .slicknav_item i {
    display: none;
}
/*Sidebar Start*/
.slicknav_nav,
.slicknav_nav.slicknav_hidden {
    display: block !important;
}
.slicknav_btn {
    display: none !important;
}
.slicknav_menu {
    padding-left: 0;
}
.slicknav_item.slicknav_row a {
    border-bottom: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 10px 0px;
    margin: 0;
}
.slicknav_nav .slicknav_arrow {
    font-size: 0;
    background: rgb(255 255 255 / 8%);
    height: 100%;
    width: 50px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.slicknav_nav ul {
    margin: 0 0 0 0px;
}
.slicknav_nav .menu-item-has-children ul {
    margin-bottom: 00px;
}
.slicknav_nav .menu-item-has-children ul li {
    padding-left: 25px;
}
.sub-menu .menu-item-has-children a i {
    position: absolute;
    right: 20px;
    top: 20px;
}
.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
    border-radius: 0;
}
.slicknav_item.slicknav_row {
    display: inline-block;
    width: 100%;
    position: relative;
}
.slicknav_arrow {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 0;
    top: 17px;
    position: absolute;
}
.slicknav_nav a,
.slicknav_row a {
    color: #ffffff;
    font-size: 16px;
    display: inline-block;
}
/* Mobile Menu CSS End*/

/*-========Sub Menu/Dropdown=========*/
.site-navigation .site-menu .nav-item.has-children {
    position: relative;
}

.site-navigation .site-menu .nav-item.has-children .dropdown {
    position: absolute;
    left: -65px;
    background-color: #ffffff;
    min-width: 250px;
    z-index: 9999;
    box-shadow: 0 0px 6px 3px rgb(0 0 0 / 5%);
    text-align: left;
    transition: all 0.5s ease;
    visibility: hidden;
    opacity: 0;
    top: 50px;
    border-top: 2px solid #00a7ca;
}
.site-navigation .site-menu .nav-item.has-children .dropdown .dropdown {
    min-width: 300px;
}

.site-navigation .site-menu .has-children .dropdown .dropdown {
    left: 200px;
    top: 3px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item {
    display: block;
    position: relative;
    padding: 5px 20px;
    width: 100%;
}

.nav-item.has-children .dropdown .nav-item a {
    position: relative;
    font-size: 15px;
    padding: 5px 10px;
    color: rgb(0 0 0);
    display: block;
    line-height: normal;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.site-navigation
    .site-menu
    .nav-item.has-children
    .dropdown
    .nav-item:last-child {
    border-bottom: 0;
}

.site-navigation .site-menu .has-children:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.nav-item.has-children .dropdown .nav-item a:hover {
    color: #00a7ca;
    transition: 0.4s;
}

/*Common Css*/
.p-40 {
    padding: 40px 0px;
}
.pb-30 {
    padding-bottom: 30px;
}
.p-70 {
    padding: 70px 0px;
}
.pb-70 {
    padding-bottom: 70px;
}
.p-100 {
    padding: 100px 0px;
}
.pb-100 {
    padding-bottom: 100px;
}
.relative {
    position: relative;
}
.bg-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: 80px;
    left: 10px;
    width: 10%;
    -webkit-animation: rotation 50s infinite linear;
    animation: rotation 50s infinite linear;
    opacity: 0.4;
}

.shape-2 {
    top: 380px;
    right: 0px;
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 3s infinite alternate;
    opacity: 0.4;
}

.shape-3 {
    top: 448px;
    left: 30px;
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 3s infinite alternate;
    opacity: 0.4;
}

.shape-4 {
    top: 125px;
    left: 110px;
    opacity: 0.5;
    -webkit-animation: rotation 25s infinite linear;
    animation: rotation 25s infinite linear;
}

.shape-5 {
    top: 490px;
    right: 39%;
    opacity: 0.4;
    -webkit-animation: fly 25s infinite linear;
    animation: fly 25s infinite linear;
}
.shape-5 img {
    width: 60px;
}

.about-title h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    color: #005264;
    font-family: "Poppins", sans-serif;
}
.about-title h2 span {
    font-weight: 400;
    font-size: 25px;
    color: #5c5c5c;
}
.banner-btn {
    margin-left: -10px;
    background: #00a7ca;
    border: #00a7ca;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}
.banner-btn:hover {
    margin-left: 20px;
    transition: all 0.5s;
    background: #00a7ca;
    border: #00a7ca;
}
/*** 

====================================================================
    Home Banner Css
====================================================================

***/

.hero-slider-item {
    width: 100%;
    height: 650px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.hero-slider-area .owl-carousel {
    z-index: 1;
}
.hero-slider-area .owl-nav div {
    z-index: 9 !important;
}

.hero-slider-area .owl-nav div {
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    line-height: 51px;
}
.hero-slider-area .owl-nav .owl-prev {
    top: 47%;
    left: 30px;
}

.hero-slider-area .owl-nav div span {
    color: #ffffff;
    font-size: 10px;
    background: #4444446e;
    padding: 10px 12px;
}

.hero-slider-area .owl-nav .owl-next {
    top: 47%;
    right: 30px;
}

.owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 15px;
}
.owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0 !important;
    text-align: center;
}
.owl-dot span {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 19px;
    height: 2px;
    cursor: pointer;
    color: #fff;
    outline: none;
    background: #ddd;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 0px;
    border: none;
}
.owl-dot.active span {
    height: 3px;
}

/*** 

====================================================================
    Home Text Box  Css
====================================================================

***/
.box-area {
    margin-top: -60px;
}
.single-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 18px;
    border-top: 5px solid #98cf99;
    border-radius: 5px;
}
.nth-01 {
    z-index: 2;
}
.single-box:nth-child(odd) {
    background: #216344;
}
.single-box.bg-2 {
    background: #007e01 !important;
}
.single-box:nth-child(3) {
    background: #216344;
}
.single-box h2 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.single-box p {
    color: #e6e1e1;
    margin-bottom: -6px;
    font-size: 15px;
}

/*Project*/
.single-project {
    position: relative;
    display: block;
}
.equal-height {
    height: 217px;
    width: 100%;
    overflow: hidden;
}
.equal-height img {
    height: 100%;
    overflow: hidden;
    transition: 500ms ease-out;
}
.img-hover-layout {
    position: absolute;
    opacity: 0;
    transition: all 0.3s;
    background: #eee;
    z-index: 999;
}
.single-project:hover .img-hover-layout {
    opacity: 1;
}

.img-hover-layout.overleft {
    height: 100%;
    top: 0;
    left: 0;
    width: 0;
    margin-top: 0;
    background: #343a4075;
}
.overlay-text {
    position: absolute;
    color: #ffff !important;
    font-size: 21px;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.single-project:hover .img-hover-layout.overleft {
    width: 100%;
    margin-top: 0;
}
.single-project:hover img {
    transform: scale(2);
    overflow: hidden;
    transition: 500ms ease-out;
}

/*** 

====================================================================
   Page Title Css
====================================================================

***/
.page-title-area {
    padding: 190px 0px 120px;
    text-align: center;
    color: #fff;
}

.page-title-area .page-title-content h2 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.page-title-area .page-title-content li {
    display: inline-block;
    color: #ff7777;
    position: relative;
    font-size: 15px;
    font-weight: 800;
}

.page-title-area .page-title-content li a {
    color: #ffff;
}

.page-title-area .page-title-content li a i {
    font-size: 13px;
    display: inline-block;
    margin: 0px 5px;
}

/*** 

====================================================================
    Contact Us Page
====================================================================

***/
.contact-section-title {
    position: relative;
    margin-bottom: 19px;
    color: #262261;
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}
.contact-section-title span {
    color: #faaa3a;
}
.contact-widget {
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0px 2px 4px 2px #ddd;
    padding: 10px;
    min-height: 120px;
}
.contact-widget h4 {
    font-size: 17px;
    color: #0c2c23;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0px;
}
.contact-widget span a {
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    color: rgb(10 7 7);
    margin-bottom: 20px;
}
.contact-widget span a:hover {
    color: #216344;
}
/*** 

====================================================================
    Footer Section
====================================================================

***/
.main-footer {
    /* background: -webkit-radial-gradient(circle farthest-corner at center center, #1f1e1e 0%, #131E3C 100%);
    background: radial-gradient(circle farthest-corner at center center, #1f1e1e 0%, #131E3C 100%);*/
    position: relative;
    padding: 70px 0px 0px;
    background: #505050;
}

.widget-section {
    position: relative;
    padding-bottom: 20px;
}

.footer-widget .about-widget img {
    width: 35%;
    margin-bottom: 25px;
}

.footer-widget p {
    line-height: 1.8em;
    margin-bottom: 25px;
    color: #fff;
}

.footer-widget .title {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 14px;
    margin-bottom: 35px;
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
    color: #ddd;
    font-weight: 400;
}
.footer-widget .title span {
    color: #fff;
    font-weight: 600;
}

.footer-widget ul li {
    position: relative;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-widget ul li a {
    display: block;
    color: #fff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.footer-widget .contact-info-widget ul li a {
    padding-left: 16px;
}

.footer-widget .contact-info-widget ul li .icon {
    color: #ddd;
    font-size: 15px;
    font-weight: 600;
}

.footer-widget .social-link-widget a {
    display: inline-block;
    margin-right: 12px;
    background: #ddd;
    text-align: center;
    padding: 0px 10px;
    border-radius: 5px;
}

.footer-widget .social-link-widget a i {
    line-height: 35px;
    font-size: 15px;
    color: #000;
}

.footer-bottom-area {
    padding: 5px 0 5px;
    background: #505050;
}

/*Service CSS*/

.service-section .service-block {
    margin-bottom: 30px;
    overflow: hidden;
    /*    box-shadow: 0px 0px 7px 0px rgb(199 199 199);*/
}
.service-section .service-block .inner-box {
    padding: 10px 15px;
}
.service-section .service-block:hover {
    transition: all 0.5s;
    cursor: pointer;
}
.inner-box .inner-image {
    height: 250px;
    border-radius: 10px;
}
.service-section .service-block .inner-box .icon-box {
    color: #000000;
    font-size: 60px;
    line-height: 1em;
}
.service-section .service-block h4 {
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 22px;
    margin-bottom: 18px;
    font-size: 16px;
}
.service-section .service-block h4 a {
    color: #005264;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}
.service-section .service-block .inner-text {
    color: #00a7ca;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 500;
    z-index: 1;
    margin-bottom: 0;
}
.service-section .service-block span {
    color: #000;
}
.service-link a {
    color: #5c5c5c;
    transition: 0.6s;
}
.service-link a:hover {
    padding-left: 15px;
    color: #fd6413c9;
}

.expericed-image {
    height: 200px;
}

.active-bg {
    background: transparent;
    transition: all 0.7s ease;
}
.menu-link-black {
    color: #fff !important;
    transition: all 0.7s ease;
    font-weight: 400;
}
.menu-link-black:hover {
    color: #fd6413 !important;
    transition: 0.4s;
}
/*Counter*/
.counterup {
    border-right: 1px solid #959494;
}
.counterup h2 {
    color: #444;
    font-weight: 600;
    font-size: 45px;
    font-family: "Poppins", sans-serif;
}
.border-none {
    border-right: none;
}
.counter-section {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff !important;
    padding-top: 80px;
    padding-bottom: 50px;
}
.counter-section h2 {
    color: #fff;
}
.counter-section p {
    color: #fff;
}
.counter-section h2 span {
    color: #fff;
}

/*Project*/
.project-box .project-image-box {
    padding: 15px;
}
.project-box .project-image-box img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
    border: 5px solid #ddd;
}

.project-box .project-image-box .image-upper-box {
    position: absolute;
    border: 5px solid #6f7072;
    width: 82%;
    top: 0px;
    bottom: 15px;
    left: 65px;
    margin: auto;
    background: #0000000d;
    height: 300px;
}

.project-box .project-image-box .image-upper-box h4 {
    font-weight: 600;
    text-align: center;
    font-size: 20px;
    margin-top: 50%;
    color: #fff;
}
.project-box:hover .image-upper-box {
    left: 70px;
    transition: all 1s ease;
    border: 5px solid #00a7ca;
}

.btn-dark {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    border-radius: 0px;
    padding: 12px;
}
.thought-section h4 {
    font-weight: 500;
    font-size: 20px;
    color: #00a7ca;
}
.thought-box {
    box-shadow: 2px 2px 5px 3px #ddd;
    padding: 10px;
}

/*Client Css*/
/* .client-slide-item {
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 2px #ddd;
} */
.client_name {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #005264;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.pst-content {
    padding-left: 10px;
}

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

#portfolio-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 8px 24px;
    font-size: 12px;
    line-height: 20px;
    color: #555;
    border-radius: 50px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #444;
}

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

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

.single-awesome-portfolio {
    float: left;
    overflow: hidden;
    padding: 15px;
    width: 25%;
    position: relative;
}

.single-awesome-project {
    overflow: hidden;
    margin-bottom: 30px;
}

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

.awesome-img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.awesome-img > a {
    display: block;
    position: relative;
}

.awesome-img > a img {
    width: 100%;
    height: 300px;
}

.single-awesome-project:hover .awesome-img > a::after {
    opacity: 1;
}

.single-awesome-project:hover .add-actions {
    opacity: 1;
    bottom: 0;
}

.awesome-img > a::after {
    background: rgba(255, 255, 255 / 0%) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: 0.4s;
}

.add-actions {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    bottom: 30px;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 10px 15px;
    position: absolute;
    transition: all 0.4s ease 0s;
    width: 100%;
}

.project-dec {
    display: block;
    height: 100%;
    width: 100%;
}

.project-dec a {
    display: block;
    height: 100%;
    width: 100%;
}

.project-dec h4 {
    margin-bottom: 5px;
}

.project-dec h4:hover {
    color: #fff;
}

.project-dec h4 {
    color: #ddd;
    font-size: 24px;
    margin-top: -45px;
    padding-top: 50%;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
}

.fixed-social-area {
    position: fixed;
    z-index: 99;
    height: 250px;
    display: flex;
    top: 85%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.fixed-estimited-area {
    position: fixed;
    z-index: 99;
    height: 250px;
    display: flex;
    top: 65%;
    left: -45px;
    transition: all 0.3s ease-in-out;
}
.fixed-social-list li a {
    display: block;
    text-align: center;
    padding: 8px 10px;
    transition: all 0.3s ease;
    font-size: 22px;
}
.fixed-social-list li {
    display: block;
}
.fixed-social-list li #whatsapp {
    color: #fff;
    background: #009b48;
}
.fixed-social-list li #email {
    color: #fff;
    background: #00a7ca;
}
.fixed-social-list li .free-estimate {
    color: #fff;
    background: #00a7ca;
    transform: rotate(270deg);
    padding: 10px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
.team-box {
    box-shadow: 0px 0px 4px 2px #ddd;
}
.team-name {
    font-weight: 500;
    color: #00a7ca;
    margin-top: 10px;
    font-size: 20px;
}
.team-span {
    color: #373737;
}

.choose-section {
    position: relative;
    bottom: 100px;
    z-index: 9;
}

.choose-box img {
    height: 90px;
    border: 2px solid #00a7ca;
    border-radius: 50%;
    padding: 10px;
}
.choose-box {
    padding: 50px 20px;
    border: 1px solid #ddd;
    background: #fff;
}

.choose-box h5 {
    margin-bottom: 5px;
    margin-top: 15px;
    color: #005264;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Glyphicons Halflings";
    content: "\e003";
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}

.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: "";
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}
