/* contact */
.banner {
    background-color: #fffaef;
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #00622c;
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    background-image: url(../img/images/bannerbg.svg);
}

.bancont{
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.breadcrumb{
    background-color: #00a92f;
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: -36px;
    width: max-content;
    font-size: 0.875rem;
    padding-left: 17px;
    padding-right: 17px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.breadcrumb-item.active::before, .breadcrumb-item+.breadcrumb-item::before{
    content: '' !important;
    background-image: url(../img/icons/breadcrumb.svg);
    width: 12px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-main{
    width: 100%;
    display: flex;
    justify-content: center;
}
.breadcrumb-item a{
    color: #fff;
}
.breadcrumb-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumb-item.active{
    color: #fff;
    opacity: .7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.contactform input, .contactform textarea{
    display: block;
    width: 100%;
    height: 44px;
    font-size: .875rem;
    background: transparent;
    border: 1px solid rgb(0 98 44 / 20%);
    color: #333;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    padding: 0 15px;
    outline: 0;
    border-radius: 0.3rem;
}
/* Remove arrows in input type=number for all browsers */
input[type="number"]::-webkit-inner-spin-button,  
input[type="number"]::-webkit-outer-spin-button {  
    -webkit-appearance: none;  
    margin: 0;  
}  

input[type="number"] {  
    -moz-appearance: textfield; /* Firefox */  
}

.contactform input::placeholder, .contactform textarea::placeholder{
    opacity: .8;
    font-size: 0.8rem;
}
 .contactform textarea{
    padding-top: 10px;
}
.contactform input:focus, .contactform textarea:focus{
    border-color: #00622c;
}
.contact-section{
    position: relative;
}
.contact-section::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    background: #00622c1a;
    margin: auto;
    left: 50%;
}
.contactform{
    padding-right: 25px;
}
.contact-right{
    padding-left: 25px;
}
.conflex{
    display: flex;
    gap: 10px;
    align-items: center;
}
.conicn{
    height: 50px;
    width: 50px;
    background: #00622c;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.concont{
    width: calc(100% - 50px);
}
.conicn img{
    filter: brightness(0) invert(1);
    padding: 10px;
}
.conicn i{
    color: #fff;
    font-size: 1.5rem;
}
.contact-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-flex .flexicon a{
    color: #333;
}
.contact-flex .flexicon{
    border-right: 0;
}
.contact-flex h6{
    font-weight: 600;
    color: #00622c;
    margin: 0;
    font-size: 1.2rem;
}
/* ABOUT */
.visbox{
    height: 100%;
    width: 100%;
    border: 1px solid #33333321;
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    transition: all .3s;
}
.visicn{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #00622c40;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}
.visicn i{
    font-size: 1.5rem;
    color: #00622c;
}
.viscont h5{
    font-weight: 700;
}
.visimg{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
}
.visbox:hover{
    border-color: #00622c;
}
.visbox:hover .visicn{
    background-color: #00622c;
}
.visbox:hover .visicn i{
    color: #fff;
}
.abtin .why-cont .para{
    max-height: 100%;
}
.abtin .why-cont{
    min-height: 220px;
}

/* RESPONSIVE */
@media(max-width: 991px){
    .abtin .why-cont {
        min-height: 150px;
    }
    .contact-section::before{
        display: none;
    }
    .contact-right{
        padding-left: 0;
    }
}
