.font18{
    font-size: 18px!important;
}
.font20{
    font-size: 20px!important;
}
.font21{
    font-size: 21px!important;
}
.font22{
    font-size: 22px!important;
}
.font24{
    font-size: 24px!important;
}
.font30{
    font-size: 30px!important;
}
.font35{
    font-size: 35px!important;
}

.font40{
    font-size: 40px!important;
}
.font45{
    font-size: 45px!important;
}
.font50{
    font-size: 50px!important;
}
.font60{
    font-size: 60px!important;
}

.font70{
    font-size: 70px!important;
}

.font100{
    font-size: 100px!important;
}

.font200{
    font-weight: 200!important;
}
.font300{
    font-weight: 300!important;
}
.font400{
    font-weight: 400!important;
}

.font600{
    font-weight: 600!important;
}
.font700{
    font-weight: 700!important;
}


.min-vh-45 {
    min-height: 45vh !important;
}

.home-bg{
    background: #f8fbf6;
}

.pull-right{
    float: right!important;
}

.pull-left{
    float: left!important;
}



/*Contact Form*/
.contact-form-input, input.form-control.bg-transparent.contact-form-input:focus{
    border: 1px solid #86D2D9;
    border-radius: 50px;
    height: 3em;
    color: #fff!important;
    box-shadow: 0 0 0 .25rem #01122C0a;
}


.contact-form-text-area, .contact-form-text-area:focus{
    border: 1px solid #86D2D9;
    border-radius: 50px;
    color: #fff!important;
    box-shadow: 0 0 0 .25rem #01122C0a;
}


#loader {
    display: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    /* Add more styling as needed */
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.home-head{
    color: #86D2D9!important;
}

.home-section{
    padding: 0% 0 0px 0;
    min-height: 125vh;
}

.pt-3per{
    padding-top: 3% !important;
}

.home-content-section{
    padding: 2% 0 2% 0;
    min-height: 30vh;
}

.header .logo img {
    max-height: max-content;
}

.feature-box{
    padding: 5%;
    background-color: #86d2d9;
    width: 78%;
    margin-left: 11%;
    height: 100%;
}

.feature-border{
    border: 5px solid #86d2d9;
    margin-top: 3% !important;
    width: 25%;
    border-radius: 30px;
    text-align: center;
    margin: 0 auto;
}

.pb-divider-right {
    position: relative;
}
.pb-divider-right::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%; /* Adjust this value to control border height */
    width: 1px;
    background-color: #ffffff; /* White vertical line */
}


.solution-box {
    position: relative;
    overflow: hidden;
}

.solution-img-container {
    position: relative;
}

.solution-img-container img {
    width: 100%;
    display: block;
    border-radius: 60px;

}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 83%); /* Adjust the color and opacity as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 10px;
}

.solution-overlay h3, .overlay p {
    margin: 0;
}

.border-polycon {
    position: relative;
    height: 3px;
    background-color: #5BCBF5;
    margin: 20px auto;
    width: 35%;
}

.border-polycon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #86d2d9;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid #5BCBF5; /* Light blue color, same as the line */
}

.advantage-box:hover .border-polycon::before {
    animation: moveHexagon 1.5s ease-in-out infinite;
}

@keyframes moveHexagon {
    0%, 100% { left: 50%; }
    25% { left: calc(25% - 15px); }
    75% { left: calc(75% + 15px); }
}



.solution-box img{
    transition: transform 0.5s ease-in-out;
}

.solution-box:hover img {
    transform: scale(1.1);
}