@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Montserrat:wght@100;200;300;400;500;600;700;800&family=Sarabun:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/*============ Additional Css Start ============*/
:root {
    /* ===== Colors ===== */
    --body-color: #f4f7f7;
    --white-color: #FFF;
    --primary-color: #258dca;
    --secondary-color: #1c71a3;
    --lite-color: #F6F5FF;
    --border-color: #ccf;
    --text-color: #707070;
    --dark-color: #212529;

    /* ====== Transition ====== */
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--bs-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--tran-03);
}

a:hover {
    color: inherit;
}

figure {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

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

li {
    list-style: none;
}

.item-list li {
    padding-bottom: 5px;
    font-size: 15px;
}

.item-list li i {
    padding-right: 5px;
}

.tooltip-inner {
    border-radius: 2px;
    padding: 3px 10px 6px;
    max-width: 400px;
    background-color: var(--primary-color);
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--primary-color);
}

body {
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
    font-family: 'Sarabun', sans-serif;
    font-family: "Montserrat", serif;
    color: var(--text-color);
    font-size: 14px;
}

section {
    padding: 60px 0;
}

.section-title {
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
    text-transform: capitalize;
    font-size: calc(.7rem + 1vw);
}

.section-title.text-center {
    margin-left: auto;
    margin-right: auto;
}

.desc {
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-outline-primary {
    border: 2px solid;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 20px;
    padding: 8px 22px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

::selection {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.scrollTop {
    position: fixed;
    bottom: 0;
    right: 10px;
    width: 50px;
    height: 51px;
    border: none;
    background-color: #258cc9;
    color: var(--white-color);
    border-radius: 3px 3px 0 0;
    z-index: 9;
}

.mean-container a.meanmenu-reveal.meanclose {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0s;
    overflow: hidden;
}

.mean-container .mean-bar {
    float: none;
}

.mean-container .mean-nav {
    background: var(--primary-color);
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: var(--primary-color);
}

.mean-container a.meanmenu-reveal span:first-child {
    margin-top: 2px;
}

.mean-container a.meanmenu-reveal span {
    margin-top: 5px;
    background-color: var(--primary-color);
}

.divider {
    height: 1px;
    background-color: var(--body-color);
    margin: 20px 0;
}

/*============ Additional Css End ============*/

/*============ Header Css Start ============*/
.header-section.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 15px rgb(37 141 202 / 15%);
}

.header-section.sticky .logo img {
    max-width: 120px;
}

.header-section .header-top {
    background-color: var(--white-color);
    color: var(--white-color);
}

.header-top .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
}

.header-top .wrapper .left-area {
    flex: 0 0 auto;
    width: fit-content;
}

.header-top .wrapper .left-area .logo a {
    display: flex;
    align-items: flex-end;
}

.header-top .wrapper .left-area .logo .logo-text {
    color: var(--dark-color);
    font-weight: 800;
    /* font-family: "Fjalla One", sans-serif; */
    font-size: 30px;
    transition: var(--tran-04);
}

.header-top .wrapper .left-area .logo img {
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    width: 120px;
    padding: 10px 0;
    padding-right: 10px;
    padding-bottom: 0;
}

.header-top .wrapper .right-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: flex-end;
    align-self: stretch;
}

.header-top .wrapper .right-area .social {
    display: flex;
    align-items: center;
    display: none;
    flex-wrap: wrap;
    width: 70px;
}

.header-top .wrapper .right-area .contacts {
    display: flex;
    align-items: flex-end;
    order: -1;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
}

.header-top .wrapper .right-area .contacts li {
    display: inline-flex;
    align-items: center;
    column-gap: 14px;
    flex: 0 0 auto;
    width: fit-content;
    padding-left: 15px;
}

.header-top .wrapper .right-area .contacts li:not(:last-child) {
    padding-right: 15px;
    border-right: 1px solid #eee;
}

.header-top .wrapper .right-area .contacts li span {
    display: block;
    flex: 0 0 auto;
    width: fit-content;
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    color: #0a0a0a;
    text-transform: capitalize;
}

.header-top .wrapper .right-area .contacts li img {
    width: 26px;
}

.header-top .wrapper .right-area .contacts li a {
    font-weight: 400;
    letter-spacing: 1px;
    /* font-family: "Montserrat"; */
    color: var(--dark-color);
    font-size: 13px;
}

.header-top .wrapper .right-area .contacts li a {
    padding-top: 3px;
    font-size: 14px;
    color: #595858;
}

.header-top .wrapper .right-area .social li {
    width: 50%;
    flex: 0 0 auto;
    margin-bottom: 5px;
}

.header-top .wrapper .right-area .social li a {
    font-size: 18px;
    color: var(--white-color);
    display: block;
    width: 30px;
    height: 30px;
    background-color: rgb(37 141 202);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top .wrapper .right-area .social li a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.header-bottom {
    background-color: var(--primary-color);
}

.header-bottom #main-menu>ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.header-bottom #main-menu>ul>li {
    position: relative;
    transition: var(--tran-03);
}

.header-bottom #main-menu>ul>li:hover,
.header-bottom #main-menu>ul>li.active {
    background-color: #2582b9;
    color: var(--white-color);
}

.header-bottom #main-menu ul li a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--white-color);
    font-weight: 500;
}

.header-bottom #main-menu>ul>li:hover>a {
    /* background-color: var(--secondary-color); */
    color: var(--white-color);
}

.header-bottom #main-menu ul li ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--primary-color);
    min-width: 100%;
    width: fit-content;
    /* border-top: 2px solid var(--secondary-color); */
    transition: all 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.header-bottom #main-menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-bottom #main-menu ul li ul li a {
    color: var(--white-color);
    font-weight: 300;
    white-space: nowrap;
    padding-right: 20px;
    font-size: 13px;
}

.header-bottom #main-menu ul li ul li:hover a {
    background-color: #2582b9;
    color: var(--white-color);
}

/*============ Header Css End ============*/

/*============ Slider Section Css Start ============*/
.slider-section {
    padding: 0;
}

.slider-section .main-slider .single-slide {
    position: relative;
}

.slider-section .main-slider .single-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 40%);
}

.slider-section .main-slider .owl-nav button {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    color: #fff;
    font-size: 22px;
    background-color: var(--primary-color);
    width: 44px;
    height: 44px;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    opacity: 0.3;
    transition: var(--tran-04);
}

.slider-section .main-slider:hover .owl-nav button {
    opacity: 1;
}

.slider-section .main-slider .owl-nav button i {
    display: flex;
}

.slider-section .main-slider .owl-nav button.owl-next {
    left: auto;
    right: 30px;
}

.slider-section .main-slider .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    column-gap: 10px;
}

.slider-section .main-slider .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background-color: rgb(0 0 0 / 20%);
    border-radius: 15px;
    border: 2px solid rgb(255 255 255 / 20%);
}

.slider-section .main-slider .owl-dots .owl-dot.active {
    background-color: rgb(0 0 0 / 50%);
    border-color: rgb(255 255 255 / 50%);
}

/*============ Slider Section Css End ============*/

/*============ About Section Css Start ============*/
.about-section {
    background-color: var(--white-color);
}

.highlight {
    display: inline-flex;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.about-section .wrapper figure {
    width: 100%;
    padding: 15px 0 0 15px;
    position: relative;
}

.about-section .wrapper figure:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-width: 2px 0 0 2px;
    border-color: var(--secondary-color);
    border-style: solid;
}

.about-section .wrapper .desc {
    font-size: 16px;
    color: #666;
}

.about-section .list {
    display: flex;
    flex-wrap: wrap;
}

.about-section .list li {
    flex: 0 0 auto;
    width: 33.33%;
    padding: 10px;
    display: flex;
    align-items: flex-start;
}

.about-section .list li img {
    width: 45px;
    margin-right: 20px;
}

.about-section .list li .title {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
}

.about-section .list li .desc {
    font-size: 15px;
    margin-bottom: 0;
}

/*============ About Section Css End ============*/

/*============ Project Section Css Start ============*/
@-webkit-keyframes avia_pop {
    0% {
        -webkit-transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes avia_pop {
    0% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes avia_pop_small {
    0% {
        -webkit-transform: rotate(-175deg) scale(0.2);
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1);
    }
}

@keyframes avia_pop_small {
    0% {
        transform: rotate(-175deg) scale(0.2);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@-webkit-keyframes avia_pop_loader {
    0% {
        -webkit-transform: rotate(0deg) scale(0.2);
    }

    100% {
        -webkit-transform: rotate(720deg) scale(1);
    }
}

@keyframes avia_pop_loader {
    0% {
        transform: rotate(0deg) scale(0.2);
    }

    100% {
        transform: rotate(720deg) scale(1);
    }
}

.project-section {
    padding-bottom: 40px;
}

.project-section .projects-category {
    display: flex;
    flex-wrap: wrap;
}

.projects-category .single-category {
    flex: 0 0 auto;
    width: 33.33%;
    padding: 10px;
    position: relative;
}

.projects-category .single-category a {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.projects-category .single-category figure {
    position: relative;
    overflow: hidden;
}

.projects-category .single-category figure::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(37 141 202 / 50%);
    pointer-events: none;
    transform: translateY(30px);
    visibility: hidden;
    opacity: 0;
    transition: var(--tran-04);
}

.projects-category .single-category:hover figure::before {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.projects-category .single-category figure::after {
    content: '\F470';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%) rotate(10deg);
    font-size: 20px;
    color: var(--primary-color);
    background-color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: var(--tran-04);
}

.projects-category .single-category:hover figure::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
}

.projects-category .single-category img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.projects-category .single-category .caption {
    display: block;
    text-align: center;
    font-size: 17px;
    padding: 10px 8px;
    position: relative;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.projects-category .single-category:hover .caption {
    visibility: visible;
    opacity: 1;
    transform: translateY(0)
}

.project-section .contents {
    padding: 15px;
    background-color: var(--white-color);
    box-shadow: 0 0 15px rgb(37 141 202 / 15%);
    min-height: 100%;
}

.title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-transform: uppercase;
}

/*============ Project Section Css End ============*/

/*============ Mission Vision Section Css Start ============*/
.mission-vision-section {
    background-image: linear-gradient(to right, #258dca 50%, #2582b9 50%);
}

.mission-vision-section .contents {
    padding: 0 50px;
}

.mission-vision-section .contents .section-title {
    color: var(--white-color);
}

.mission-vision-section .contents .desc {
    color: var(--white-color);
    max-width: 400px;
    margin-bottom: 5px;
}

/*============ Mission Vision Section Css End ============*/

/*============ Recent Project Section Css Start ============*/
.recent-projects-section {
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.recent-projects-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: -1;
}

.recent-projects-section .section-title {
    text-align: center;
    margin-bottom: 70px;
    color: var(--white-color);
    position: relative;
}

.recent-projects-section .section-title::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: 40px;
    background-image: url(../images/projects/recent/building.png);
    background-repeat: no-repeat;
    background-position: center 7px;
    background-size: 32px;
    border-bottom: 1px solid var(--white-color);
    opacity: 1;
}

.recent-projects-section .single-project figure {
    position: relative;
}

.recent-projects-section .single-project figure>a {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.recent-projects-section .single-project figure::after {
    content: '\F470';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%) rotate(10deg);
    font-size: 20px;
    color: var(--primary-color);
    background-color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: var(--tran-04);
}

.recent-projects-section .single-project figure::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(37 141 202 / 50%);
    pointer-events: none;
    transform: translateY(30px);
    visibility: hidden;
    opacity: 0;
    transition: var(--tran-04);
}

.recent-projects-section .single-project figure:hover::before {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.recent-projects-section .single-project figure:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
}

.recent-projects-section .single-project figure img {
    object-fit: cover;
}

.recent-projects-section .single-project figure .contents {
    background-color: var(--white-color);
    position: relative;
    text-align: center;
}

.recent-projects-section .single-project figure .contents .title {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--primary-color);
}

.recent-projects-section .single-project figure .contents a {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    position: relative;
    z-index: 1;
    display: block;
}

.recent-projects-section .single-project figure .contents a:hover::after,
.recent-projects-section .single-project figure .contents a:hover {
    background-color: var(--secondary-color);
}

/*============ Recent Project Section Css End ============*/

/*============ Counter Section Css Start ============*/
.counter-section {
    background-color: var(--primary-color);
    position: relative;
    background-attachment: fixed;
}

.counter-section::before {
    background: #ff8a00 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
}

.single-counter {
    text-align: center;
    border: 1px solid #c37f2e;
    padding: 25px;
    position: relative;
    z-index: 1;
}

.single-counter .icon-box img {
    width: 100%;
    max-width: 50px;
    filter: brightness(0) invert(1);
}

.single-counter .counter {
    font-size: 30px;
    font-weight: 700;
    color: var(--white-color);
    display: inline-block;
    margin: 8px 0;
}

.single-counter .title {
    color: var(--white-color);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 500;
}

.single-counter .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*============ Counter Section Css End ============*/

/*============ Equipment Section Css Start ============*/
.equipments-section {
    padding: 40px 0;
}

.equipments-section .equipments .single-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0 3px;
}

.equipments-section .equipments .single-item a {
    z-index: 2;
}

.equipments-section .equipments .single-item::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0;
    bottom: auto;
    background-color: #ff8a00;
    width: calc(100% - 6px);
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.equipments-section .equipments .single-item:hover::after {
    visibility: visible;
    opacity: 0.8;
    top: auto;
    bottom: 0;
    height: 100%;
}

.equipments-section .equipments .single-item img {
    object-fit: cover;
    padding: 3px;
    border: 1px solid rgb(255 138 0 / 50%);
}

.equipments-section .equipments .single-item span {
    text-align: center;
    padding: 10px;
    color: var(--white-color);
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-30%);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: var(--tran-04);
    pointer-events: none;
}

.equipments-section .equipments .single-item:hover span {
    transform: translateY(-50%);
    visibility: visible;
    opacity: 1;
}

.equipments-section .equipments .owl-nav {
    position: absolute;
    right: 0;
    top: -50px;
    display: flex;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.equipments-section .equipments .owl-nav button {
    font-size: 13px !important;
    width: 40px;
    height: 40px;
    transition: var(--tran-05);
    outline: 0;
    border-right: 1px solid var(--white-color);
}

.equipments-section .equipments .owl-nav button:hover {
    background-color: var(--secondary-color) !important;
}

/*============ Equipment Section Css End ============*/

/*============ Footer Section Css Start ============*/
.footer-section {
    background-color: #212529;
    color: var(--white-color);
    padding: 50px 0 0;
    font-family: "Poppins", sans-serif;
}

.footer-section .footer-ribbon {
    position: absolute;
    margin-top: -66px;
    background-color: var(--secondary-color);
    padding: 5px 12px;
    box-shadow: -5px -10px 20px rgb(0 0 0 / 15%);
}

.footer-section .footer-ribbon::after {
    content: '';
    border-right: 10px solid #196c9d;
    border-top: 16px solid transparent;
    display: block;
    height: 0;
    right: 100%;
    position: absolute;
    top: 0;
    width: 7px;
}

.footer-section .footer-widget {
    padding-right: 20px;
    margin-bottom: 25px;
}

.footer-section .footer-widget .footer-logo {
    margin-bottom: 20px;
}

.footer-section .footer-widget .footer-logo img {
    max-width: 150px;
}

.footer-section .footer-widget .widget-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0;
    position: relative;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.footer-section .footer-widget .widget-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    margin-left: 0;
    border-radius: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 0;
}

.footer-section .footer-widget .links li a {
    display: inline-block;
    padding: 6px 0;
    text-transform: capitalize;
    letter-spacing: .5px;
    font-size: 15px;
    color: var(--white-color);
}

.footer-section .footer-widget .links li a:hover {
    color: var(--white-color);
}

.footer-section .footer-widget .desc {
    font-weight: 300;
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-section .contacts li {
    display: flex;
    column-gap: 10px;
    padding: 5px 0;
}

.footer-section .contacts li i {
    color: var(--primary-color);
    padding-top: 2px;
    font-size: 20px;
}

.footer-section .contacts li p {
    color: var(--white-color);
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--white-color);
}

.footer-section .social {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-top: 10px;
}

.footer-section .social li {
    display: block;
}

.footer-section .social li a {
    width: 45px;
    display: flex;
    height: 45px;
    background-color: #2A323C;
    color: #d5d5d5;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.footer-section .social li a:hover {
    transform: translateY(-5px);
    color: var(--white-color);
}

.footer-bottom {
    background-color: #1e1e1e;
    /* background-color: #282b38; */
    padding: 10px 0;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .5px;
    padding: 5px 0;
    color: var(--white-color);
}

/*============ Footer Section Css End ============*/

/*============ Sister Concern Section Css Start ============*/
.single-project {
    position: relative;
    overflow: hidden;
}

.single-project figure img {
    aspect-ratio: 1/.73;
    object-fit: cover;
}

.single-project .hover-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #fff;
    padding: 15px;
    border-radius: 0px 0px 6px 6px;
    background: rgb(37 141 202 / 85%);
    transform: translate(0, 100%);
    height: 100%;
    bottom: 48px;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.single-project:hover .hover-content {
    transform: translate(0, 0);
    bottom: 0;
}

.single-project .hover-content .title {
    font-weight: 600;
    margin-top: 4px;
    text-align: center;
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
}

.single-project .hover-content .desc {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn-hover {
    position: relative;
    padding: 5px 0;
    text-transform: capitalize;
}

.btn-hover::after {
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    width: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--white-color);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.btn-hover:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.sister-concern-section .owl-nav {
    position: absolute;
    right: 0;
    top: -40px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.sister-concern-section .owl-nav button {
    width: 28px;
    height: 28px;
    border-right: 1px solid #fff !important;
    transition: all 0.3s ease;
}

.sister-concern-section .owl-nav button:hover {
    background-color: var(--secondary-color) !important;
}

.accordion .accordion-item {
    border: none;
    margin-bottom: 8px;
    border-radius: 0;
}

.accordion .accordion-item .accordion-header .accordion-button {
    background-color: var(--primary-color);
    box-shadow: none;
    color: var(--white-color);
    padding: 10px;
    padding-left: 18px;
}

.accordion .accordion-item .accordion-header .accordion-button::after {
    background-image: none;
    content: "\F282";
    font-family: 'bootstrap-icons';
    background-color: rgb(0 0 0 / 10%);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 3px;
}

.accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
}

.accordion .accordion-item .accordion-header .accordion-button img {
    width: 40px;
}

/*============ Sister Concern Section Css End ============*/

/*============ Service Section Css Start ============*/
.limit-width {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}

.service-section .single-service:nth-child(2n):hover .service-wrapper,
.service-section .single-service .service-wrapper {
    text-align: center;
    background-color: var(--primary-color);
    padding: 50px 40px 50px 40px;
    transition: var(--tran-04);
    height: 100%;
}

.service-section .single-service:hover .service-wrapper,
.service-section .single-service:nth-child(2n) .service-wrapper {
    background-color: var(--secondary-color);
}

.service-section .single-service:hover .icon img,
.service-section .single-service:nth-child(2n) .icon img {
    filter: brightness(0) invert(1);
}

.service-section .single-service .icon img {
    width: 65px;
    transition: var(--tran-04);
    filter: brightness(0) invert(1);
}

.service-section .single-service .title {
    margin: 10px 0;
}

.service-section .single-service .title h3 {
    font-size: 25px;
    font-weight: 800;
    color: var(--white-color);
    text-transform: uppercase;
}

.service-section .single-service .exerp p {
    color: var(--white-color);
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 0;
}

/*============ Service Section Css End ============*/

/*============ Slider Section Css Start ============*/
/*============ Slider Section Css End ============*/


/*============ Team Member Css Start ============*/
.fa {
    padding: 10px;
    margin: 10px;
    width: 38px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none
}

.fa:hover {
    opacity: 0.7
}

a.ri-facebook-fill {
    background: #3B5998;
    color: white;
    font-size: 25px;
    border-radius: 8px;
}

a.ri-twitter-fill {
    background: #55ACEE;
    color: white;
    font-size: 25px;
    border-radius: 8px;
}

a.ri-linkedin-fill {
    background: #007bb5;
    color: white;
    font-size: 25px;
    border-radius: 8px;
}

.flip-card {
    background-color: transparent;
    width: 306px;
    height: 100px;
    perspective: 1000px
}

.flip-card-inner {
    width: 363px;
    height: 330px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg)
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 363px;
    height: 330px;
    backface-visibility: hidden
}

/* .flip-card-front {
    background-color: #bbb;
    color: black
} */

.flip-card-back {
    transform: rotateY(180deg);
    width: 363px;
    height: 320px;
    background-color: #f2f2f2
}

p.description.text-black-50 {
    padding-left: 20px;
    padding-right: 20px;
}

.card-title {
    color: #007b5e;
    padding: 5px;
}

header {
    background-color: #007b5e
}

.person {
    color: #007b5e;
    /* font-family: 'Yrsa', serif; */
    font-size: 30px;
    padding: 15px
}


.card-body {
    background-color: #f2f2f2
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 329px !important;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}

.section-header h3 {
    font-size: 36px;
    color: #283d50;
    text-align: center;
    font-weight: 500;
    position: relative
}

/* end */

/* Client Start */


.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 60px;
    color: #556877;
    width: 50%
}

#clients {
    padding: 60px 0
}

#clients .clients-wrap {
    border-top: 1px solid #d6eaff;
    border-left: 1px solid #d6eaff;
    margin-bottom: 30px
}

#clients .client-logo {
    margin-bottom: 23px;
    padding: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid #d6eaff;
    border-bottom: 1px solid #d6eaff;
    overflow: hidden;
    background: #fff;
    height: 160px
}

#clients img {
    transition: all 0.4s ease-in-out
}


/* Client End */


/* Project Start */
.blog-listing {
    padding-top: 30px;
    padding-bottom: 30px;
}

.gray-bg {
    background-color: #f5f5f5;
}

/* Blog
---------------------*/
.blog-grid {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-grid .blog-img {
    position: relative;
}

.blog-grid .blog-img .date {
    position: absolute;
    background: #fc5356;
    color: #ffffff;
    padding: 8px 15px;
    left: 10px;
    top: 10px;
    border-radius: 4px;
}

.blog-grid .blog-img .date span {
    font-size: 22px;
    display: block;
    line-height: 22px;
    font-weight: 700;
}

.blog-grid .blog-img .date label {
    font-size: 14px;
    margin: 0;
}

.blog-grid .blog-info {
    padding: 20px;
}

.blog-grid .blog-info h5 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}

.blog-grid .blog-info h5 a {
    color: #20247b;
}

.blog-grid .blog-info p {
    margin: 0;
}

.blog-grid .blog-info .btn-bar {
    margin-top: 20px;
}


/* Blog Sidebar
-------------------*/
.blog-aside .widget {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.blog-aside .widget-body {
    padding: 15px;
}

.blog-aside .widget-title {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.blog-aside .widget-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fc5356;
    margin: 0;
}

.blog-aside .widget-author .media {
    margin-bottom: 15px;
}

.blog-aside .widget-author p {
    font-size: 16px;
    margin: 0;
}

.blog-aside .widget-author .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-aside .widget-author h6 {
    font-weight: 600;
    color: #20247b;
    font-size: 22px;
    margin: 0;
    padding-left: 20px;
}

.blog-aside .post-aside {
    margin-bottom: 15px;
}

.blog-aside .post-aside .post-aside-title h5 {
    margin: 0;
}

.blog-aside .post-aside .post-aside-title a {
    font-size: 18px;
    color: #20247b;
    font-weight: 600;
}

.blog-aside .post-aside .post-aside-meta {
    padding-bottom: 10px;
}

.blog-aside .post-aside .post-aside-meta a {
    color: #6F8BA4;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
}

.blog-aside .latest-post-aside+.latest-post-aside {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.blog-aside .latest-post-aside .lpa-right {
    width: 90px;
}

.blog-aside .latest-post-aside .lpa-right img {
    border-radius: 3px;
}

.blog-aside .latest-post-aside .lpa-left {
    padding-right: 15px;
}

.blog-aside .latest-post-aside .lpa-title h5 {
    margin: 0;
    font-size: 15px;
}

.blog-aside .latest-post-aside .lpa-title a {
    color: #20247b;
    font-weight: 600;
}

.blog-aside .latest-post-aside .lpa-meta a {
    color: #6F8BA4;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
}

.tag-cloud a {
    padding: 4px 15px;
    font-size: 13px;
    color: #ffffff;
    background: #20247b;
    border-radius: 3px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.tag-cloud a:hover {
    background: #fc5356;
}

.blog-single {
    padding-top: 30px;
    padding-bottom: 30px;
}

.article {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    padding: 15px;
    margin: 15px 0 30px;
}

.article .article-title {
    padding: 15px 0 20px;
}

.article .article-title h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.article .article-title h6 a {
    text-transform: uppercase;
    color: #fc5356;
    border-bottom: 1px solid #fc5356;
}

.article .article-title h2 {
    color: #20247b;
    font-weight: 600;
}

.article .article-title .media {
    padding-top: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
}

.article .article-title .media .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.article .article-title .media .media-body {
    padding-left: 8px;
}

.article .article-title .media .media-body label {
    font-weight: 600;
    color: #fc5356;
    margin: 0;
}

.article .article-title .media .media-body span {
    display: block;
    font-size: 12px;
}

.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
    color: #20247b;
    font-weight: 600;
    margin-bottom: 15px;
}

.article .article-content blockquote {
    max-width: 600px;
    padding: 15px 0 30px 0;
    margin: 0;
}

.article .article-content blockquote p {
    font-size: 20px;
    font-weight: 500;
    color: #fc5356;
    margin: 0;
}

.article .article-content blockquote .blockquote-footer {
    color: #20247b;
    font-size: 16px;
}

.article .article-content blockquote .blockquote-footer cite {
    font-weight: 600;
}

.article .tag-cloud {
    padding-top: 10px;
}

.article-comment {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    padding: 20px;
}

.article-comment h4 {
    color: #20247b;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 22px;
}

img {
    max-width: 100%;
}

img {
    vertical-align: middle;
    border-style: none;
}

img.project-image {
    width: 360px;
    height: 280px;
}

/* Project End */


/* Project details start */
.lpa-left.media-body {
    width: 228px;
}

.latest-post-aside.media {
    display: flex;
}

/* Project details  End */

/* Gallery Start */

.lightbox-gallery {
    background-image: linear-gradient(#2b2b2b, #258dca);
    background-repeat: no-repeat;
    color: #000;
    overflow-x: hidden
}

.lightbox-gallery p {
    color: #fff
}

.lightbox-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: #fff
}

@media (max-width:767px) {
    .lightbox-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px
    }
}

.lightbox-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px
}

.lightbox-gallery .intro p {
    margin-bottom: 0
}

.lightbox-gallery .photos {
    padding-bottom: 20px
}

.lightbox-gallery .item {
    padding-bottom: 30px
}

/* Gallery End */


/* Equiment Details Start */

.panel {
    border: none;
    box-shadow: none;
}

.panel-heading {
    border-color: #eff2f7;
    font-size: 16px;
    font-weight: 300;
}

.panel-title {
    color: #2A3542;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
    font-family: 'Open Sans', sans-serif;
}

/*product list*/

.prod-cat li a {
    border-bottom: 1px dashed #d9d9d9;
}

.prod-cat li a {
    color: #3b3b3b;
}

.prod-cat li ul {
    margin-left: 30px;
}

.prod-cat li ul li a {
    border-bottom: none;
}

.prod-cat li ul li a:hover,
.prod-cat li ul li a:focus,
.prod-cat li ul li.active a,
.prod-cat li a:hover,
.prod-cat li a:focus,
.prod-cat li a.active {
    background: none;
    color: #ff7261;
}

.pro-lab {
    margin-right: 20px;
    font-weight: normal;
}

.pro-sort {
    padding-right: 20px;
    float: left;
}

.pro-page-list {
    margin: 5px 0 0 0;
}

.product-list img {
    width: 100%;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
}

.product-list .pro-img-box {
    position: relative;
}

.adtocart {
    background: #fc5959;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #fff;
    display: inline-block;
    text-align: center;
    border: 3px solid #fff;
    left: 45%;
    bottom: -25px;
    position: absolute;
}

.adtocart i {
    color: #fff;
    font-size: 25px;
    line-height: 42px;
}

.pro-title {
    color: #5A5A5A;
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
}

.product-list .price {
    color: #fc5959;
    font-size: 15px;
}

.pro-img-details {
    margin-left: -15px;
}

.pro-img-details img {
    width: 100%;
}

.pro-d-title {
    font-size: 16px;
    margin-top: 0;
}

.product_meta {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: 15px 0;
}

.product_meta span {
    display: block;
    margin-bottom: 10px;
}

.product_meta a,
.pro-price {
    color: #fc5959;
}

.pro-price,
.amount-old {
    font-size: 18px;
    padding: 0 10px;
}

.amount-old {
    text-decoration: line-through;
}

.quantity {
    width: 120px;
}

.pro-img-list {
    margin: 10px 0 0 -15px;
    width: 100%;
    display: inline-block;
}

.pro-img-list a {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.pro-d-head {
    font-size: 18px;
    font-weight: 300;
}

/* Equiment Details End */

/* Notice Details Start */
.decor-default {
    background-color: #ffffff;
}

.contact .controls {
    position: relative;
}

.contact .controls .write {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: -24px;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 4px 5px #d8d8d8;
    background: #39bee8 no-repeat 50% 50%;
}

.contact .controls .icon {
    position: absolute;
    z-index: 2;
    top: 18px;
    width: 16px;
    height: 16px;
    display: block;
    cursor: pointer;
}

.contact .controls .cover {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-height: 150px;
}

.cover {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.contact .controls .cont {
    position: absolute;
    z-index: 2;
    top: 80px;
    left: 0;
    right: 0;
    text-align: center;
}

.contact .controls .avatar {
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 45px;
    position: relative;
    z-index: 2;
}

.contact .controls .name {
    font-size: 20px;
    line-height: 36px;
    color: #ffffff;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
}

.contact .controls .ui-mark {
    display: inline-block;
    border: 1px solid #ffffff;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
    margin: 0 2px;
    padding: 0 26px;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.container-contact div[class^="col-"] {
    position: relative;
    min-height: 1px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.contact-description {
    font-size: 16px;
    line-height: 36px;
}

.contact {
    padding: 25px 10px 25px 10px;
}

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Notice Details End */
a.btn-hover.learn {
    color: #fff;
    text-decoration: none;
}

h3.title-details {
    font-weight: 700;
    color: #337ab7;
}

.text-decoration:hover {
    text-decoration: none;
}

.text-decoration {
    text-decoration: none;
}

.slide__image {
    position: relative;
}

.slide__image::before {
    content: '';
    display: block;
    padding-top: 560px;
}

.slide__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide__content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    justify-content: center;
    padding-bottom: 6rem;
}

.slide__title {
    text-align: center;
    color: var(--bs-white);
    font-weight: 700;
}

.slide__text {
    text-align: center;
    color: var(--bs-white);
}

.main-slider .slick-arrow {
    position: absolute;
    z-index: 9;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    font-size: 18px;
    height: 40px;
    margin: 0 5px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 40px;
    position: absolute;
    border: none;
}

.main-slider .slick-arrow.slick-next {
    left: auto;
    right: 0;
}

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
    display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
    width: 100%;
    padding: 4px 0;
    min-height: 42px;
    z-index: 999999;
}

.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 13px 13px 11px 13px;
    position: absolute;
    top: 4px;
    right: 0;
    cursor: pointer;
    color: #0c1923;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #0c1923;
    height: 2px;
    margin-top: 3px;
}

.mean-container .mean-nav {
    width: 100%;
    background: #0c1923;
    position: absolute;
    left: 0;
    top: 100%;
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: calc(100% - 3em);
    padding: 1em 1.5em;
    margin: 0;
    text-align: left;
    color: #fff;
    border-top: 1px solid #383838;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
}

.mean-container .mean-nav ul li li a {
    width: calc(100% - 6em);
    padding: 1em 3em;
    border-top: 1px solid #f1f1f1;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.75;
    filter: alpha(opacity=75);
    text-shadow: none !important;
    visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: none;
    margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
    background: #252525;
    background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 1px;
    width: 1.5em;
    height: 18px;
    padding: 12px !important;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    border: none !important;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    cursor: pointer;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: rgba(0, 0, 0, 0.9);
}

.mean-container .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar,
.mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.mean-remove {
    display: none !important;
}

.container.about-features {
    background: #fff none repeat scroll 0 0;
    -webkit-box-shadow: 0 5px 10px #f1f1f1;
    box-shadow: 0 5px 10px #e8f0f9;
    margin-bottom: 60px;
    margin-top: -140px;
    position: relative;
    z-index: 9;
}

.single-features {
    padding: 20px;
    text-align: center;
}

.features-icon {
    color: #afbfd0;
    font-size: 48px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-features h3 {
    font-size: 18px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: var(--bs-dark);
}

.single-features p {
    font-size: 14px;
}

.single-features:hover h3,
.single-features:hover .features-icon {
    color: #ff8a00;
}

.single-features .read-more i {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-features .read-more:hover i {
    padding-left: 10px;
}

.single-features .read-more:hover {
    color: #ff8a00;
}

.about-img {
    position: relative;
}

.about-img img {
    margin-top: 50px;
    width: 90%;
}

.single-service {
    background: #fff none repeat scroll 0 0;
    color: #afbfd0;
    overflow: hidden;
    padding: 40px 20px;
    position: relative;
}

.service-hidding-and-icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff none repeat scroll 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.single-service h3 {
    font-size: 18px;
    text-transform: uppercase;
}

.service-details {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-service:hover .service-hidding-and-icon {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.single-service:hover .service-details {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.equipments .slick-arrow {
    position: absolute;
    right: 33px;
    top: -35px;
    border: none;
    color: var(--bs-white);
    background-color: var(--primary-color);
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.equipments .slick-arrow.slick-next {
    right: 0;
}

.project-img img {
    width: 100%;
}

.single-project-details {
    overflow: hidden;
    position: relative;
}

.project-details {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: 9;
    padding: 10px;
}

.single-project-details::after {
    background: #ff8a00 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.single-project-details:hover::after {
    opacity: 0.8;
}

.single-project-details:hover .project-details {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.project-details h4,
.project-details p {
    color: #fff;
    font-size: 15px;
}

.project-details p {
    font-size: 13px;
}

.project-view-details a {
    background: transparent none repeat scroll 0 0;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 -1px #fff;
    box-shadow: 0 0 0 -1px #fff;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    height: 40px;
    margin: 0 5px 10px;
    padding-top: 7px;
    text-align: center;
    width: 40px;
}

.project-view-details a:hover {
    background: rgba(255, 255, 255, 0.4) none repeat scroll 0 0;
    -webkit-box-shadow: 0 0 0 9px transparent;
    box-shadow: 0 0 0 9px transparent;
}
