.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 #F8B600;
    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 #F8B600;
    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: #F8B600!important;
}

.home-section{
    padding: 15% 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;
}



.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
}

.btn-custom {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    text-align: center;
    flex: 1;
    margin: 0 10px; /* Add space between buttons */
    border-bottom-right-radius: 90px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-top-radius: 20px;
}

.about-section{
    min-height: 30vh;
    padding: 2% 0 8% 0;
}

.border-img {
    margin: 0 auto;
    display: block;
    position: relative;
    top: -10px; /* Adjust as needed */
}

.about-border{
    text-align: left;
    padding-left: 20%;
}

.feature-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-container img {
    width: 100%;
    height: auto;
}
.feature-point {
    position: absolute;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 700;
}
.point1 { top: 70%; left: 3%; }
.point2 { top: -10%; left: 30%; }
.point3 { top: 100%; left: 50%; }
.point4 { top: -2%; left: 80%; }
.point5 { top: 100%; left: 100%; }


.feature-section{
    padding: 8% 0 16% 0;
}

.feature-img{
    height: auto!important;
    object-fit: scale-down!important;
}

.medical-box{
    border: 5px solid #F8B600;
    border-radius: 20px;
    padding: 10%;
    height: 90%;
}

.advantage-box-img{
    border: 3px solid #F8B600;
    border-top-right-radius: 100px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 100px;
}

.advantage-section{
    min-height: 80vh;
}

.pb-mt-30per{
    margin-top: -30%;
}

.circle {
    width: 25px;
    height: 25px;
    background-color: #F8B600;
    border-radius: 50%;
    position: absolute;
    bottom: -12.5px; /* Adjusted to center the circle on the border */
    left: calc(50% - 12.5px); /* Adjusted to center the circle */
    transition: all 1s ease-in-out;
}

.medical-box:hover .circle {
    animation: moveCircle 5s infinite;
}

@keyframes moveCircle {
    0% {
        bottom: -12.5px;
        left: calc(50% - 12.5px);
    }
    20% {
        bottom: -12.5px;
        left: calc(100% - 12.5px);
    }
    40% {
        bottom: calc(100% - 12.5px);
        left: calc(100% - 12.5px);
    }
    60% {
        bottom: calc(100% - 12.5px);
        left: -12.5px;
    }
    80% {
        bottom: -12.5px;
        left: -12.5px;
    }
    100% {
        bottom: -12.5px;
        left: calc(50% - 12.5px);
    }
}


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

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