/********** Template CSS **********/
:root {
    --primary: #1E8F4E;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: #1E8F4E;
}

.read-more{
    background-color: transparent;
    border-radius: 28px;
    border: 1px solid #fff;
    margin-top:5px;
    margin-bottom:5px;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: capitalize;    
    transition: opacity .5s ease-out, visibility 0s linear .5s;    
}

.read-more:hover{
    background-color: #1E8F4E;
    color: white;
    border: none;
}

.geo-banner{
    background-color: #03421d;
    border-radius: 20px;    
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 3px;
    padding-bottom: 8px;
    top: 30%;
}

.bn-top{
    top: 25%;
    /* width: 75%; */
}

/*** 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;
}

#loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#loader.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

.loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #1E8F4E;
    animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}


.translate-middle {
    transform: translate(-50%, -50%) !important
}

.translate-middle-x {
    transform: translateX(-50%) !important
}

.translate-middle-y {
    transform: translateY(-50%) !important
}

.bg-white {
    background-color: #fff !important
}

.position-fixed {
    position: fixed !important
}

.top-50 {
    top: 50% !important
}

.start-50 {
    left: 50%
}

.w-100 {
    width: 100% !important
} 
 .vh-100 {
    height: 100vh !important
} 

.d-flex {
    display: flex !important
}

.align-items-center {
    align-items: center !important
}

.justify-content-center {
    justify-content: center !important
} 
/* End of spinner */

.bg-geo-darkergreen{
    background-color: #1E8F4E;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: capitalize;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    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;
    border-radius: 2px;
}


/* Major service hover */
.mj-serv{
    position: relative;   
}

.mj-serv-text{
    transition: .8s ease-out;
}

.mj-img{
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.mj-serv:hover .mj-img {
    opacity: 0.3;
    transform: scale(1.2);   
}

.mj-serv:hover .mj-serv-text{
    color: #3dbe73;    
    font-weight: 500;
}

/* Major service end */

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* Extras */
 .h4{
    font-size: 24px;
 }

 @media screen and (max-width: 360px) {
     .h4 {
         font-size: 10px;
     }

    .geo-banner {
        background-color: #03421d;
        border-radius: 20px;
        margin: 0 auto;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 2px;
        padding-bottom: 5px;
        top: 22%;
    }

    .bn-top {
        top: 20%;
        width: 85%;
    }
}

 @media screen and (max-width: 768px){
    .h4{
        font-size: 18px;
    }

    .read-more {
        background-color: transparent;
        border-radius: 28px;
        border: 1px solid #fff;
        margin: 0 auto;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
        text-transform: capitalize;
        transition: opacity .5s ease-out, visibility 0s linear .5s;
    }

    .geo-banner {
        background-color: #03421d;
        border-radius: 20px;
        margin: 0 auto;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 2px;
        padding-bottom: 5px;      
        top: 30%;
    }

        .bn-top {
            top: 25%;
            width: 85%;
        }
        
 }

 .right {
     position: absolute;
     right: 0px;
     width: 300px;
     border: 3px solid #73AD21;
     padding: 10px;
 }
