@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');

:root {
    --blue: #2490EB;
    --darkblue: #0092cb;
    --grey: #000000;
    --green: #3ba931;
    --bg: #F4F6F9;
    --white: #ffffff;
    --light-green: #affda8;
    --pink: #cb348a;
    --grey-color: #f4f6f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
}

p {
    font-size: 17px;
}

a {
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
}

p,
span,
li {
    color: var(--grey);
    line-height: 1.8;


}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Quicksand", sans-serif;
}

h1 {
    font-size: 56px;
    font-weight: 600;

}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 36px;
}

h5 {
    font-size: 22px;
}

.logo {
    width: 90px;
}

.bgdarkblue {
    background: var(--darkblue);
}
.nav_menu li a{
    font-size: 18px;
    font-weight: 600;
    padding:10px 15px !important;
    display: inline-block;
    position: relative;
}

.nav_menu li > a::after {
    content: "";
    display: block;
    margin: auto;
    height: 3px;
    width: 0;
    top: 5px;
    background: transparent;
    transition: all 0.3s;
    
}
.nav_menu li > a:hover::after, 
.nav_menu li > a.active::after {
    width: 100%;
    background: var(--pink);
}

.banner_slider .item {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 100vh;
}

.banner_slider .slide1 {
    background: url(../images/1.jpg);
}

.banner_slider .slide2 {
    background: url(../images/2.jpg);
}

.banner_slider .slide3 {
    background: url(../images/3.jpg);
}

.text-primary {
    color: var(--blue) !important;
}
.text-green{
    color: var(--green) !important;
}
.main_slide {
    height: inherit;
    display: flex;
    align-items: center;
}
.mt-53{
    margin-top: 53px;
}
.banner_line {
    background: #D3E9FB;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}
.banner_green_line {
    background: var(--light-green);
    display: inline-block;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--grey);
}

.partner_sec {
    background: var(--darkblue);
    position: relative;
    text-align: center;
    margin-top: -50px;
}

.bg_overlay {
    background-image: url(../images/overlay.png);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: .2;
}

.part_inner {
    z-index: 1;
    position: relative;
}

.parner_iconbox {
    position: relative;
}

.partner_sec .box_icon i {
    font-size: 34px;
    background: var(--pink);
    color: #fff;
    padding: 23px;
    border-radius: 50%;
    width: 85px;
    height: 80px;
    margin-top: -35px;
}

.more_btn {
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    color: var(--blue);
}

.more_btn span {
    color: var(--blue);
    font-size: 17px;
}

.partner_sec2 {
    padding: 60px 0
}

.logo_slider img {
    padding: 0 20px
}

.section {
    margin-top: 100px;
}

.provide_heading {
    background: var(--darkblue);
}

.provide_box_img {
    overflow: hidden;
}

.provide_box img {
    transition: 1s;
}

.provide_box:hover img {
    transform: scale(1.1);
    transition: 1s;
}

.provide_box:hover .provide_heading {
    background: var(--blue);
    transition: 1s;
}

.about_sec {
    background: var(--bg);
}

.about_sec .about_bg {
    background-image: url(../images/about_img.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    /* min-height: 780px; */
    min-height: 100%;
    position: relative;
}
.play_icon{
    position: absolute;
    bottom: 50px;
    right: 50px;
}
.play_icon i{
    background: var(--blue);
    padding: 30px 35px;
    font-size: 25px;
    color: #fff;
    animation-name: zoomIn;
    animation-duration: 1.25s;
}
.modal-header{
    display: block;
    text-align: center;
}
.btn-close{
    position: absolute;
    right: 15px;
    top: 25px;
}
.btn-primary{
    background: var(--blue);
    display: inline-block;
}
.btn-green{
    background: var(--green);
    display: inline-block;
}
.btn-pink{
    border: 1px solid var(--pink);
    background: var(--pink);
    display: inline-block;
    color: #fff;
}
.btn-pink:hover{
    border: 1px solid var(--pink);
    background: var(--white);
    display: inline-block;
    color: var(--pink);
    transition: .3s ease;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}
.about_sec .about_con {
    max-width: 615px;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
}

.counter_box {
    text-align: center;
    font-family: "Quicksand", Sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.counter_box .counter_number {
    color: var(--pink);
    font-size: 46px;
    font-weight: 600;
    line-height: 54px;
    margin-bottom: 0;
}

.counter_box .counter_title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 22px;
    color: #000;
}
.liver-height svg{
    min-height: 90px;
}
.services_sec {
    /* margin-top: -130px; */
    background: var(--darkblue);
    /* padding: 230px 0 80px 0; */
    padding: 80px 0 80px 0;
}

.services_sec h5 {
    font-size: 24px;
}

.services_sec .icon_box {
    border: 1px solid #F4F6F938;
    padding: 45px 30px;
    transition: all 0.5s ease;
    min-height: 275px;
    text-align: center;
}

.services_sec .icon_box i {
    font-size: 54px;
    transition: all 0.5s ease;
}

.services_sec .icon_box svg{
    max-width: 80px;
    transition: all 0.5s ease;
}

.eye-w-100 svg{
    max-width: 100px !important;
}
.services_sec .icon_box:hover i {
    transform: rotateY(180deg);
    transition: all 0.5s ease;
}

.services_sec .icon_box:hover {
    background: var(--green);
    transition: all 0.5s ease;
}
.services_sec .icon_box_pink:hover {
    background: var(--pink);
    transition: all 0.5s ease;
}

.portfolio_slider .portfolio_img {
    position: relative;
}

 .portfolio_slider .portfolio_con {
    background: #fff;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 20px;
    z-index: 10;
    opacity: 1;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;

}

/* .portfolio_slider .portfolio_con {
    background: #fff;
    position: absolute;
    bottom: -15px;
    left: 30px;
    right: 30px;
    padding: 20px;
    opacity: 0;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;

}

.portfolio_slider .portfolio_slide:hover .portfolio_con {
    opacity: 1;
    z-index: 10;
    bottom: 30px;
} */

.portfolio_slider .portfolio_con p {
    color: var(--blue);
    font-weight: 500;

}

.portfolio_slider .owl-dots,
.hospital_slider .owl-dots,
.testimonial_slider .owl-dots {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.portfolio_slider .owl-dots span,
.hospital_slider .owl-dots span,
.testimonial_slider .owl-dots span{
    width: 25px;
    display: block;
    background: #18100f;
    opacity: .5;
    height: 3px;
    border-radius: 2px;
}
.hospital_slider .owl-dots span {
    width: 5px;
}
.portfolio_slider .owl-dot.active span,
.hospital_slider .owl-dot.active span,
.testimonial_slider .owl-dot.active span{
    background: var(--darkblue);
    opacity: 1;
}
.hospital_img{
    height: 250px;
    object-fit: cover;
}
.hospital_img img{
    height: 100%;
}

.hospital_name{
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, .8);
    width: 100%;
    padding: 15px;
    border-radius: 0 0 5px 5px;
}
.hospital_name p{
    color: var(--white);
    line-height: 16px;
    margin-bottom: 5px;
}
.hospital_name p.sub_heading{
    font-size: 13px;
}
.owl-prev, .owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border:0px solid black;
}
.owl-prev { left: -20px; }
.owl-next { right: -20px; }
.owl-prev i, .owl-next i {
    transform : scale(2,2); 
    color: var(--blue);
}
.flags_section{
    padding-top: 80px;
}
.flags-flex{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}
.flag-box{
    margin: 10px;
    text-align: center;
    font-weight: 600;
}
.flag-box button{
    background: none;
    border: none;
}
.flag-box img{
    max-width: 150px;
}
.main_footer{
    /* margin-top:150px; */
    padding-top: 80px;
    
}
.footer-link{
    color: var(--white);
}
.footer-link:hover{
    color: var(--pink);
    transition: .3s ease;
}
.main_footer, .bottom_bar{
    background: var(--darkblue);
}
.bottom_bar{
    border-top: 1px solid rgba(255, 255, 255, 0.1)
}
.main_footer .social_btn{
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
}
.foo{
    padding-bottom:80px
}
.Newsletter{
    background:var(--blue);
    padding: 40px;
    position: relative;
    top: -70px;
}
.Newsletter input{
    padding: 9px 20px;
}
.newsletter_form_sec{
    display: flex;
    gap:25px;
}
.newsletter_form_sec input{
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    border: none;
    padding: 13px 20px;
}
.newsletter_form_sec button{
    background:#fff;
    color: #000;
    border-radius: 3px;
    border: none;
    padding: 13px 20px;
}
.newsletter_form_sec input::placeholder{
    color:#fff
}
.my_pro_bar label{
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
}
.est_sec{
    padding: 80px 0;
    position: relative;
    background: var(--bg);
}
.bg_img_overlay{
    background: url(../images/doc_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    opacity: .1;
}
.est_sec .container{
    z-index: 1;
    position: relative;
}
.my_pro_bar .myProgress {
    width: 100%;
    background-color: #fff;
  }
  
.my_pro_bar .myBar {
    width: 1%;
    height: 10px;
    background-color: var(--blue);
  }
.progress_bars .progress{
    height: 10px;
}
.progress_bars .progress .progress-bar{
    background: var(--blue);
}
.w-90{
    width: 90%;
}
.w-80{
    width: 80%;
}
.cost_form_sec{
    padding: 50px;
}
.est_total{
    display: flex;
    align-items: center;
}

.est_total .pt-cost-value{
    font-size: 36px;
    line-height: 44px;
    color: var(--blue);
    font-weight: 600;
}
.est_radio input[type="radio"] {
    display: none;
}

.est_radio .form-check {
    margin-bottom: 1rem;
    padding-left: 0;
}

.est_radio  .form-check-label.cus_radio {
    display: inline-block;
    width: 120px;
    height: 50px;
    border: 1px solid var(--bg);
    background: var(--bg);
    border-radius: 3px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.form-check-input:checked ~ .form-check-label.cus_radio {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.form-check-input:checked ~ .form-check-label.cus_radio .dot {
    background: #fff;
}

.form-check-input:checked ~ .form-check-label.cus_radio .dot::before {
    opacity: 1;
    transform: scale(1);
}

.est_radio .cus_radio .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.est_radio .cus_radio .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}

.est_radio .cus_radio span {
    font-size: 20px;
    color: #808080;
}

.est_radio .form-check-input:checked ~ .form-check-label.cus_radio span {
    color: #fff;
}
.est_radio{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cost_form_sec select{
    background: var(--bg);
    border: none;
    height: 54px;
    padding: 0 30px 0 15px;
}
.cost_form_sec label{
    font-weight: 500;
    margin-bottom: 4px;
}
.review_sec .review_slide{
    background: var(--bg);
    padding: 30px;
}
.review_sec .review_star i{
    font-size: 14px;
    color: gold;
}
.review_desc p{
    color: #000;
    font-size: 16px;
    line-height: 1.9;
}
.review_slide{
    position: relative;
}
.review_sec .review_quote_icon{
    position: absolute;
    right: 50px;
    bottom: 110px;
}
.review_sec .review_quote_icon i{
    font-size: 64px;
    line-height: 72px;
    color: var(--blue);
    opacity: 0.1;
}
.top_bar_icons{
    display: flex;
    /* gap: 10px; */
}
.top_bar_icons .top_icon i{
    padding: 16px 15px;
    border-right: 1px solid rgb(255, 255, 255, 0.3);
}
.achievements{
    padding: 80px 0;
}
.achievements ul li i {
    font-size: 3.5rem;
}
.achievements ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    margin-top: 20px;
}
.achievements ul li {
    list-style: none;
    line-height: 2;
    margin-bottom: 15px;
    font-size: 14px;
    margin-top: 20px;
    padding: 0 20px;
    text-align: center;
}
.achievements ul li h5 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px 0;
}
.achievements ul li p {
    font-size: 1rem;
}
/*contact us*/
.contact-page-box{
    text-align: center;
    margin: 0px 0px 0px 0px;
    padding: 60px 30px 60px 30px;
    background-color: #F4F6F9;
    border-radius: 3px 3px 3px 3px;
    min-height: 355px;
    margin-bottom: 20px;
}
.elementor-icon {
    font-size: 40px;
    border-radius: 3px 3px 3px 3px;
    background-color: var(--green);
    padding: .5em;
    display: inline-block;
    text-align: center;
    color: var(--white);
}

.elementor-icon i, .elementor-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}
.contact-us-link{
    color: var(--grey);
    font-size: 17px;
}

.contact-form{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F4F6F9;
    text-align: center;
    max-width: 1000px;
    margin: 10px auto 80px;
    padding: 60px 45px;
    box-shadow: 0px 0px 30px 0px rgba(20, 20, 20, 0.1);
}
.contact-input{
    background: var(--grey-color);
    color: var(----dark-color);
    border: 1px solid var(--grey-color);
    border-radius: 3px;
    font-size: 16px;
    font-weight: 400;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    width: 100%;
    margin-bottom: 20px;
}
.contact-textarea{
    min-height: 100px;
}
:focus-visible{
    outline: var(--blue);
}
.blank-space {
    padding: 30px 0px;
    background-color: var(--darkblue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 100px;
}
.text-white{
    color: var(--white);
}
.contact-map{
    margin-bottom: -5px;
}
.text-danger{
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 5px;
}
/* .pt-applyform .wpcf7-form-control-wrap input {
    background: rgba(255, 255, 255, 0.14);
    border: none;
    margin-bottom: 30px;
    color: var(--white-color);
} */
.cXopAD {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 20px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.jfSeEW {
    cursor: pointer;
    color: black;
    position: relative;
    display: flex;
    margin-top: 10px;
    margin-bottom: 50px;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
    padding: 20px;
    /* width: 340px; */
    width: 100%;
    /* height: 350px; */
}
.eGXJZR {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 0px;
    z-index: 2;
    background-color: white;
    padding: 15px;
    border-radius: 50%;
}
.djNHFU {
    height: 100%;
    width: 100%;
    /* border: 4px solid rgb(95, 166, 191); */
    border: 4px solid var(--darkblue);
    border-radius: 50px;
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
}
.gTMUFb {
    height: 60px;
    width: 60px;
    position: absolute;
    bottom: 0px;
    right: 12px;
    z-index: 2;
    background-color: white;
    padding: 15px;
    border-radius: 50%;
}
.jRpnpq {
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 2;
    right: 0px;
    bottom: 8px;
    transform: rotate(180deg);
}
.bhURGc {
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 2;
    left: 7px;
    top: 7px;
}
.eGXJZR {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 0px;
    z-index: 2;
    background-color: white;
    padding: 15px;
    border-radius: 50%;
}
.cdWETC {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: rgb(48, 47, 47);
    line-height: 20px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 2;
}
.hWkxQg {
    height: 15px;
    width: auto !important;
    display: inline !important;
    margin-left: 10px;
}
.jRpnpq svg, .jRpnpq path {
    fill: var(--darkblue);
    stroke: var(--darkblue);
    /* fill: rgb(86, 161, 187);
    stroke: rgb(86, 161, 187); */
}
.bhURGc svg, .bhURGc path {
    fill: var(--darkblue);
    stroke: var(--darkblue);
}
.ldedwB {
    display: flex;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    width: 100%;
    margin-left: 10px;
}
.coCDoO {
    margin-top: 12px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    -webkit-box-pack: justify;
    /* justify-content: space-between; */
    margin-bottom: 20px;
}
.bnMpi {
    display: flex;
    align-items: center;
}
.bppZwa {
    color: rgb(100, 100, 100);
    font-size: 16px;
}
.blEtLw {
    height: 13px;
    margin-left: 10px;
}
.jEfFWw {
    height: 80px;
    width: 80px !important;
    -webkit-user-drag: none;
    border-radius: 50%;
}
.fyMxdg {
    margin-top: 16px;
    display: flex;
    /* -webkit-box-align: center;
    align-items: center; */
}
.hutdvM {
    color: rgb(91, 91, 91);
    /* height: 38px; */
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}
.iXdYJK {
    font-size: 14px;
    color: rgb(91, 91, 91);
    line-height: 16px;
}
.ewQPSy{
    text-align: justify;
}


.pt-breadcrumb {
    background-image: url(../images/breadcrumb-image-1.jpg) !important;
}
.pt-breadcrumb {
    background: var(--grey-color);
    color: var(--white);
    padding: 130px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.pt-breadcrumb nav {
    position: relative;
}
.pt-breadcrumb .pt-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 15px;
    color: var(--grey);
}
.pt-breadcrumb-container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}
.pt-breadcrumb-container .breadcrumb li {
    list-style-type: none;
    margin-right: 15px;
    padding-left: 0;
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--grey);
}
.pt-breadcrumb-container .breadcrumb li a {
    color: var(--grey);
}
.pt-breadcrumb-container .breadcrumb li.active {
    color: var(--darkblue);
}
.about-paralex{
    background-image: url("../images/about-paralex-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0 60px;
}
.color-white{
    color: var(--white);
}
.text-justify{
    text-align: justify;
}
.color-pink{
    color: var(--pink);
}
.about-heading{
    border-bottom: 2px solid;
    display: inline-block;
}
@media(min-width:1500px) {}

@media(min-width: 1200px) {
    .container {
        max-width: 1240px
    }
}

@media(max-width:999px) {
    body{
        overflow-x: hidden;
    }
    .banner_slider .item {
        height: auto;
    }
    .partner_sec{
        margin-top: 0;
    }
    .partner_sec .container{
        max-width: 100%;
        width: 100%;
        padding: 80px 0
    }
    .partner_sec .box_icon i{
        margin: 0;
    }
    .partner_sec .parner_iconbox{
        padding: 20px 30px
    }
    .partner_sec .row {
        width: 100%;
    }
    .about_sec .about_bg{
        min-height:600px;
    }
    .about_sec .about_con{
        padding:0 20px 50px 10px  !important ;
        max-width: 100%;
        margin-top:50px;
        

    }
    .cost_form_sec {
        padding: 40px;
    }
    .services_sec{
        margin-top:0;
        padding: 60px 0px;
    }
    .newsletter_form_sec{
        margin-top:30px;
    }
    .about_sec .col-md-12{
        padding-right:0
    }
    .main_slide{
        padding:60px 10px
    }
    h3 {
        font-size: 44px;
    }
    .hide_mob{
        display: none;
    }
    .cost_form_sec{
        margin-top: 60px;
    }
}

@media(max-width:768px) {
    .review_sec .review_slide{
        padding: 20px;
    }
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 32px;
    }

    body {
        overflow-x: hidden;
    }

    .banner_slider .item {
        height: auto;
    }
    .about_sec .about_bg{
        min-height:450px;
    }
    .newsletter_form_sec{
        display: block;
    }
    .newsletter_form_sec input{
        width: 100%;
        margin-bottom: 20px;
    }
    .newsletter_form_sec button{
        width: 100%;
    }
    .Newsletter{
        max-width: 95%;
    }
    .foo{
        padding-bottom: 40px;
    }
    .foo .col-md-3{
        margin-bottom: 30px;
    }
    .section {
        margin-top: 70px;
    }
    .partner_sec .container{
        padding: 50px 0
    }
    .cost_form_sec {
        padding: 20px;
    }
    .Newsletter .gap-5{
        gap: 1rem !important;
    }
    .Newsletter {
        background: var(--blue);
        padding: 20px;
    }
    .est_sec .row{
        /* width: 100%; */
    }
    .flags-flex{
        flex-wrap: wrap;
    }
    .achievements ul li {
        max-width: 350px;
    }
}
@media (max-width: 575px){
    .about_sec .about_bg {
        min-height: 250px;
    }
}