/********** Template CSS **********/
:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}




/*** Navbar ***/

.custom-navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    z-index:9999;
}

.logo img{
    height:60px;
}

.navbar-nav{
    gap:28px;
}

.navbar-nav .nav-link{
    color:#111 !important;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    padding:32px 0 !important;
    position:relative;
    transition:0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#0f8f52 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:20px;
    width:100%;
    height:2px;
    background:#b6d432;
}

.dropdown-menu{
    border:none;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.dropdown-item{
    padding:10px 20px;
    transition:0.3s;
}

.dropdown-item:hover{
    background:#0f8f52;
    color:#fff;
}

.nav-item.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
}

.simple-call{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    color:#0f8f52;
    margin-left:95px;
}

.simple-call:hover{
    color:#08663a;
}

.navbar-toggler{
    border:none;
    box-shadow:none !important;
    font-size:28px;
    color:#0f8f52;
}

@media(max-width:991px){

    .logo img{
        height:50px;
    }

    .navbar-nav{
        gap:0;
        margin-top:15px;
        align-items:flex-start !important;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
    }

    .navbar-nav .nav-link::after{
        display:none;
    }

    .simple-call{
        margin-top:15px;
    }

    .dropdown-menu{
        box-shadow:none;
        padding-left:10px;
    }
}

/* =========================================
   NAVBAR RESPONSIVE FIX - 1199px
========================================= */

@media (max-width: 1199px) {

    .custom-navbar {
        padding: 8px 0;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    .navbar-toggler {
        display: block;
        border: none;
        box-shadow: none !important;
        color: #0f8f52;
        font-size: 26px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px 20px 20px;
        margin-top: 8px;
        border-top: 1px solid #eee;
    }

    .navbar-nav {
        gap: 0;
        width: 100%;
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        display: block;
        padding: 11px 0 !important;
        font-size: 14px;
    }

    /* Remove desktop underline */
    .navbar-nav .nav-link::after {
        display: none !important;
    }

    /* Dropdown */
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static !important;
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 5px 0 5px 15px;
        margin: 0 !important;
    }

    .dropdown-item {
        padding: 9px 15px;
    }

    /* Phone */
    .simple-call {
        margin-left: 0;
        margin-top: 12px;
        padding: 8px 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .logo img {
        height: 45px;
        max-width: 190px;
        object-fit: contain;
    }

    .navbar-collapse {
        padding: 10px 15px 15px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 10px 0 !important;
    }

    .simple-call {
        font-size: 14px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .logo img {
        height: 40px;
        max-width: 170px;
    }

    .navbar-toggler {
        font-size: 23px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
    }

    .simple-call {
        font-size: 13px;
    }
}

















/*** Slider ***/
.slider-section {
    width: 1366px;
    height: 100%;
    /* min-height: 25rem; */
    margin: auto;
    overflow: hidden;

}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}


.swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

@media(max-width:1366px){

    .slider-section{
        width:100%;
    }

}
/* slider end */

/* about section */
.about-section {
    background: #ffffff;
}


.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #184702;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #198754;
    position: absolute;
    left: 0;
    bottom: -8px;
}


.about-text {
    text-align: justify;
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}


/* .logo-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}


.about-logo {
    max-width: 70px;
    margin-bottom: 8px;
}


.logo-box p {
    font-size: 13px;
    margin: 0;
    font-weight: 500;
    color: #333;
}


.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .logo-box {
        padding: 10px;
    }

    .about-logo {
        max-width: 50px;
    }

    .logo-box p {
        font-size: 12px;
    }
}

.certificate-box {
    background: #fff;
    padding: 10px 15px;
    border-left: 4px solid #007bff;
    font-size: 14px;
    border-radius: 20px solid white;
} */

.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-title {
        text-align: center;
    }

    .about-text {
        font-size: 14px;
    }

    .about-logo {
        max-width: 80px;

    }
}


@media (max-width: 961px) {

    .about-img {
        max-width: 85%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

}

/* =========================================
   CONTACT ROW
========================================= */

.contact-box {
    width: 100%;
    min-height: 75px;
    padding: 12px 15px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
    border-radius: 10px;

    transition: all 0.3s ease;
}


/* =========================================
   CONTACT CONTENT
========================================= */

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-box p {
    color: #777;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
}

.contact-box h6 {
    color: #184702;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;

    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================
   ICON
========================================= */

.icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;

    flex-shrink: 0;

    border-radius: 50%;
    background: #2c8602;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.icon-circle i {
    color: #fff;
    font-size: 18px;
}


/* =========================================
   HOVER
========================================= */

.contact-box:hover {
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.contact-box:hover .icon-circle {
    background: #184702;
    transform: scale(1.08);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {

    .contact-box {
        padding: 15px 20px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .contact-box {
        padding: 12px;
    }

    .contact-box h6 {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-box {
        min-height: 65px;
        padding: 10px;
    }

    .icon-circle {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .icon-circle i {
        font-size: 17px;
    }

    .contact-box h6 {
        font-size: 13px;
        line-height: 1.4;
    }

    .contact-box p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .contact-box {
        padding: 9px;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .icon-circle i {
        font-size: 16px;
    }

    .contact-box h6 {
        font-size: 12px;
    }

    .contact-box p {
        font-size: 12px;
    }

}


.page-header {
    background: linear-gradient(to right, rgb(4, 214, 126) 0%, rgba(150, 240, 205, 0) 100%), url('/shreebalaji/img/facts.png') center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts{
    padding: 80px 0;

    background:
    linear-gradient(rgba(255,255,255,0.75),
    rgba(255,255,255,0.75)),
    url('/shreebalaji/img/facts.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.counter-box{
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #ddd;
    transition: 0.4s;
    height: 100%;
}

.counter-box:hover{
    transform: translateY(-8px);
}

.counter-icon{
    width: 65px;
    height: 65px;
    background: #0b7a39;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.counter-icon i{
    color: #fff;
    font-size: 24px;
}

.counter{
    font-size: 42px;
    font-weight: 800;
    color: #0b7a39;
    margin-bottom: 8px;
}

.counter-box p{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

@media(max-width:768px){

    .facts{
        background-attachment: scroll;
    }

}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Services section ***/
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-title span {
    color: #0b7a39;
}

.services-text {
    color: #555;
    font-size: 15px;
    max-width: 700px;
    line-height: 1.8;
}

.service-btn {
    background: #0b7a39;
    color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.service-btn:hover {
    background: #01461e;
    color: #fff;
}

.service-card{
  background:#fff;
  border-radius:18px;
  padding:25px 20px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  overflow:hidden;
  height:100%;
  border:1px solid #eee;
}

.service-card:hover{
  transform:translateY(-8px);
  background:#0b7a39;
}

.service-icon{
  width:120px;
  height:80px;
  background:#0b7a39;
  margin:auto;
  border-radius:0 0 25px 25px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:-25px;
  margin-bottom:20px;
  transition:0.4s;
}

.service-card:hover .service-icon{
  background:#fff;
}

.service-icon i{
  font-size:35px;
  color:#fff;
  transition:0.4s;
}

.service-card:hover .service-icon i{
  color:#0b7a39;
}

.service-card h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:15px;
  transition:0.4s;
}

.service-card p{
  color:#555;
  line-height:1.7;
  font-size:15px;
  transition:0.4s;
}

.service-link{
  text-decoration:none;
  color:#025022;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:15px;
  font-size:15px;
  transition:0.4s;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link{
  color:#fff;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

@media(max-width:992px) {

    .services-title {
        font-size: 45px;
    }

    .services-text {
        font-size: 17px;
    }

    .top-btn {
        margin-top: 30px;
    }

}

@media(max-width:768px) {

    .services-title {
        font-size: 38px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .service-icon {
        width: 140px;
        height: 90px;
    }

    .service-icon i {
        font-size: 40px;
    }

}
/* serice section end */


/* equipment section start */
.equipment-section{
    background:#f5f7f5;
    padding:90px 0;
}

.section-title h5{
    color:#0b7a39;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#0b7a39;
    margin-bottom:15px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.equipment-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.equipment-card:hover{
    transform:translateY(-10px);
}

.equipment-img{
    overflow:hidden;
    height:220px;
}

.equipment-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.equipment-card:hover img{
    transform:scale(1.08);
}

.equipment-content{
    padding:25px 20px;
    text-align:center;
}

.equipment-content h3{
    font-size:24px;
    color:#0b7a39;
    font-weight:700;
    margin-bottom:12px;
}

.equipment-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;
}

@media(max-width:768px){

    .equipment-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .equipment-img{
        height:200px;
    }

}
/* equipment section end */


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#0b8a43;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;   
    border-radius:10px;
    font-size:15px;    
    font-weight:600;
    transition:0.3s ease;
}
.about-btn-wrapper{
    margin-top:40px;   
}
.about-btn i{
    font-size:14px;
    transition:0.3s;
}

.about-btn:hover{
    background:#086b35;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 15px rgba(0,0,0,.15);
}

.about-btn:hover i{
    transform:translateX(4px);
}


/* =========================================================
   FOOTER - COMPLETE CLEAN & RESPONSIVE CSS
========================================================= */


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-section {
    width: 100%;
    background: #0f8f52;
    padding: 50px 0 30px;
    overflow: hidden;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-section > .container {
    width: 100%;
}


/* =========================================================
   FOOTER ROW - DEFAULT DESKTOP
========================================================= */

.footer-section .footer-row {
    display: grid !important;

    /*
        ABOUT
        QUICK LINKS
        BRANCH OFFICE
        REGISTERED OFFICE
    */

    grid-template-columns:
        1.15fr
        0.65fr
        1.20fr
        1.20fr;

    column-gap: 20px;
    row-gap: 30px;

    width: 100%;
    margin: 0 !important;
}


/* =========================================================
   REMOVE BOOTSTRAP COLUMN DEFAULT WIDTH / PADDING
========================================================= */

.footer-section .footer-row > .footer-column {
    width: auto !important;
    max-width: none !important;
    flex: none !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    margin: 0 !important;

    box-sizing: border-box;
}


/* =========================================================
   FOOTER TITLE
========================================================= */

.footer-title {
    position: relative;

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;

    margin: 0 0 23px;
    padding: 0;
}


/* =========================================================
   TITLE UNDERLINE
========================================================= */

.footer-title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 40px;
    height: 3px;

    background: #d9ff63;

    border-radius: 5px;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.footer-text {
    color: #eefbf3;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.7;

    text-align: left;

    margin: 0;
    padding: 0 !important;

    max-width: 390px;

    overflow-wrap: break-word;
    word-wrap: break-word;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex;

    align-items: center;
    justify-content: flex-start;

    gap: 10px;

    margin-top: 23px;
}


.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer-social a:hover {
    background: #d9ff63;

    color: #0f8f52;

    transform: translateY(-4px);
}


/* =========================================================
   QUICK LINKS
========================================================= */

.footer-links {
    list-style: none;

    width: 100%;

    padding: 0;
    margin: 0;

    text-align: left;
}


/* =========================================================
   QUICK LINK ITEM
========================================================= */

.footer-links li {
    padding: 0;

    margin: 0 0 12px;

    width: 100%;
}


.footer-links li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUICK LINK ANCHOR
========================================================= */

.footer-links a {
    display: flex;

    align-items: center;
    justify-content: flex-start;

    gap: 10px;

    width: 100%;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.6;

    text-align: left;

    text-decoration: none;

    transition: all 0.3s ease;

    overflow-wrap: break-word;
}


/* =========================================================
   QUICK LINK ARROW
========================================================= */

.footer-links a i {
    flex: 0 0 14px;

    width: 14px;

    color: #d9ff63;

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   QUICK LINK HOVER
========================================================= */

.footer-links a:hover {
    color: #d9ff63;

    transform: translateX(4px);
}


/* =========================================================
   CONTACT / OFFICE
========================================================= */

.footer-contact {
    width: 100%;

    text-align: left;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.footer-contact p {
    display: flex;

    align-items: flex-start;
    justify-content: flex-start;

    gap: 10px;

    width: 100%;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.6;

    text-align: left;

    margin: 0 0 13px;

    padding: 0;

    overflow-wrap: break-word;
    word-wrap: break-word;
}


.footer-contact p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.footer-contact i {
    flex: 0 0 18px;

    width: 18px;

    color: #d9ff63;

    font-size: 15px;

    margin-top: 4px;

    text-align: center;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.footer-contact span {
    display: block;

    min-width: 0;

    flex: 1;

    overflow-wrap: anywhere;

    word-break: break-word;
}


/* =========================================================
   DESKTOP
   1200px AND ABOVE
========================================================= */

@media (min-width: 1200px) {

    .footer-section {
        padding: 50px 0 30px;
    }


    .footer-section .footer-row {
        grid-template-columns:
            1.15fr
            0.65fr
            1.20fr
            1.20fr;

        column-gap: 20px;

        row-gap: 30px;
    }


    .footer-title {
        font-size: 24px;
    }


    .footer-text {
        font-size: 15px;
    }


    .footer-links a {
        font-size: 15px;
    }


    .footer-contact p {
        font-size: 14px;
    }

}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .footer-section {
        padding: 45px 0 30px;
    }


    .footer-section .footer-row {
        grid-template-columns:
            1.10fr
            0.65fr
            1.20fr
            1.20fr;

        column-gap: 16px;

        row-gap: 30px;
    }


    .footer-title {
        font-size: 22px;

        margin-bottom: 21px;
    }


    .footer-text {
        font-size: 14px;

        line-height: 1.7;

        max-width: 350px;
    }


    .footer-links a {
        font-size: 14px;

        gap: 9px;
    }


    .footer-contact p {
        font-size: 13px;

        gap: 8px;
    }


    .footer-contact i {
        flex-basis: 17px;

        width: 17px;
    }

}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .footer-section {
        padding: 45px 0 30px;
    }


    .footer-section .footer-row {
        grid-template-columns: 1fr 1fr;

        column-gap: 25px;

        row-gap: 35px;
    }


    .footer-title {
        font-size: 22px;

        margin-bottom: 21px;
    }


    .footer-text {
        font-size: 14px;

        line-height: 1.7;

        max-width: 100%;
    }


    .footer-links {
        width: 100%;

        text-align: left;
    }


    .footer-links a {
        justify-content: flex-start;

        font-size: 14px;

        gap: 9px;
    }


    .footer-contact p {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
   BELOW 768px
========================================================= */

@media (max-width: 767px) {

    .footer-section {
        width: 100%;

        padding: 40px 15px 28px;

        text-align: center;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .footer-section > .container {
        width: 100%;

        max-width: 100%;

        padding-left: 0 !important;

        padding-right: 0 !important;
    }


    /* =====================================================
       ONE COLUMN
    ===================================================== */

    .footer-section .footer-row {
        display: grid !important;

        grid-template-columns: 1fr;

        column-gap: 0;

        row-gap: 30px;

        width: 100%;

        margin: 0 !important;
    }


    /* =====================================================
       COLUMN
    ===================================================== */

    .footer-section .footer-row > .footer-column {
        width: 100% !important;

        max-width: 100% !important;

        text-align: center;

        padding: 0 !important;

        margin: 0 !important;
    }


    /* =====================================================
       TITLE
    ===================================================== */

    .footer-title {
        font-size: 21px;

        line-height: 1.3;

        margin: 0 0 22px;

        text-align: center;
    }


    .footer-title::after {
        left: 50%;

        transform: translateX(-50%);

        width: 40px;
    }


    /* =====================================================
       ABOUT TEXT
    ===================================================== */

    .footer-text {
        width: 100%;

        max-width: 500px;

        margin-left: auto;

        margin-right: auto;

        text-align: center;

        font-size: 14px;

        line-height: 1.7;
    }


    /* =====================================================
       SOCIAL
    ===================================================== */

    .footer-social {
        justify-content: center;

        gap: 10px;

        margin-top: 20px;
    }


    .footer-social a {
        width: 40px;

        height: 40px;
    }


    /* =====================================================
       QUICK LINKS
    ===================================================== */

    .footer-links {
        width: 100%;

        max-width: 380px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;
    }


    .footer-links li {
        width: 100%;

        margin-bottom: 12px;
    }


    .footer-links a {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 10px;

        font-size: 14px;

        text-align: left;
    }


    .footer-links a i {
        flex: 0 0 14px;

        width: 14px;

        text-align: center;
    }


    /* =====================================================
       CONTACT
    ===================================================== */

    .footer-contact {
        width: 100%;

        max-width: 380px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;
    }


    .footer-contact p {
        width: 100%;

        display: flex;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 9px;

        text-align: left;

        font-size: 14px;
    }


    .footer-contact i {
        flex: 0 0 18px;

        width: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
   BELOW 480px
========================================================= */

@media (max-width: 480px) {

    .footer-section {
        padding: 35px 15px 25px;
    }


    .footer-section .footer-row {
        row-gap: 28px;
    }


    /* =====================================================
       TITLE
    ===================================================== */

    .footer-title {
        font-size: 20px;

        margin-bottom: 21px;
    }


    .footer-title::after {
        width: 36px;

        height: 3px;

        bottom: -8px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .footer-text {
        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================================
       SOCIAL
    ===================================================== */

    .footer-social {
        gap: 8px;
    }


    .footer-social a {
        width: 38px;

        height: 38px;

        font-size: 14px;
    }


    /* =====================================================
       QUICK LINKS
    ===================================================== */

    .footer-links {
        max-width: 350px;

        text-align: left;
    }


    .footer-links li {
        margin-bottom: 10px;
    }


    .footer-links a {
        font-size: 14px;

        gap: 9px;
    }


    .footer-links a i {
        flex-basis: 13px;

        width: 13px;

        font-size: 11px;
    }


    /* =====================================================
       CONTACT
    ===================================================== */

    .footer-contact {
        max-width: 350px;
    }


    .footer-contact p {
        font-size: 13px;

        line-height: 1.6;

        gap: 8px;

        margin-bottom: 11px;
    }


    .footer-contact i {
        flex: 0 0 17px;

        width: 17px;

        font-size: 14px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   BELOW 360px
========================================================= */

@media (max-width: 360px) {

    .footer-section {
        padding: 32px 12px 23px;
    }


    .footer-section .footer-row {
        row-gap: 25px;
    }


    /* =====================================================
       TITLE
    ===================================================== */

    .footer-title {
        font-size: 19px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .footer-text {
        font-size: 12px;

        line-height: 1.65;
    }


    /* =====================================================
       QUICK LINKS
    ===================================================== */

    .footer-links {
        max-width: 320px;
    }


    .footer-links a {
        font-size: 13px;

        gap: 8px;
    }


    .footer-links a i {
        flex-basis: 12px;

        width: 12px;
    }


    /* =====================================================
       CONTACT
    ===================================================== */

    .footer-contact {
        max-width: 320px;
    }


    .footer-contact p {
        font-size: 12px;

        line-height: 1.6;

        gap: 7px;
    }


    .footer-contact i {
        flex: 0 0 16px;

        width: 16px;

        font-size: 13px;
    }


    /* =====================================================
       SOCIAL
    ===================================================== */

    .footer-social {
        gap: 7px;
    }


    .footer-social a {
        width: 36px;

        height: 36px;

        font-size: 13px;
    }

}


/* =========================================================
   COPYRIGHT
========================================================= */

.copyright {
    width: 100%;

    background: #05301a;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding: 13px 15px;
}


/* =========================================================
   COPYRIGHT CONTAINER
========================================================= */

.copyright .container {
    width: 100%;

    text-align: center;
}


/* =========================================================
   COPYRIGHT TEXT
========================================================= */

.copyright p {
    color: #e8f5e9;

    font-size: 14px;

    line-height: 20px;

    margin: 0 0 5px;

    overflow-wrap: break-word;

    word-wrap: break-word;
}


.copyright p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   COPYRIGHT LINK
========================================================= */

.copyright a {
    color: #d9ff63;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}


.copyright a:hover {
    color: #ffffff;
}


/* =========================================================
   SAFETY - LONG TEXT / EMAIL / PHONE / ADDRESS
========================================================= */

.footer-section a,
.footer-section p,
.footer-section span {
    overflow-wrap: break-word;

    word-wrap: break-word;

    max-width: 100%;
}


/* =========================================================
   BOX SIZING
========================================================= */

.footer-section *,
.copyright * {
    box-sizing: border-box;
}


/* =========================================================
   OVERFLOW PROTECTION
========================================================= */

.footer-section,
.copyright {
    max-width: 100%;

    overflow-x: hidden;
}
