body {
    margin: 0;
    
}

/* banner start */
.bannerHalfimg {
    width: 100%;
    position: relative;
    background-color: #0033a1;
}
.formCal-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bannerHalfimg_box p {
    font-size: 16px; font-weight: 500; color: #00aeef;
    margin-bottom: 12px;
    padding-bottom: 7px;
    margin-top: 0;
}
.bannerHalfimg h1 {
    font-size: 50px;
    margin-bottom: 0px;
    margin-top: 0;
    padding-right: 0px;
    color: #fff;
}
.bannerHalfimg_box {
    width: 60%;
    flex: 0 0 60%;
    padding: 80px 0 80px 20px;
    position: relative;
}

.bannerHalfimg_box::after {
    content: '';
    position: absolute; height: 20px;
    top: 100%; z-index: 0; 
    width: 480px; background-color: #0033a1;
    -webkit-box-shadow: 0 9px 15px 15px rgba(0,51,161,.1);
    box-shadow: 0 9px 15px 15px rgba(0,51,161,.1);
}
.bannerHalfimg_imgBox {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    width: 40%;
    flex: 0 0 40%;
}
.bannerHalfimg_imgBox img {
    width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 1199px) {
    .bannerHalfimg h1 {
        font-size: 40px;
    }
    .bannerHalfimg_imgBox {
        width: 35%;
        flex: 0 0 35%;
    }
}
@media (max-width: 767px) {
    .bannerHalfimg h1 {
        font-size: 30px;
    }
    .bannerHalfimg_imgBox {
        display: none;
    }
    .bannerHalfimg_box {
        width: 100%;
        flex: 0 0 100%;
        padding-left: 0; 
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .bannerHalfimg_box::after {
        display: none;
    }
    .bannerHalfimg .formCal-container {
        padding: 0 15px;
    }
}
/* banner end */
.position-relative {
    position: relative;
}
.errorMsg label.error {
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 14px;
    color: #e50d0d;
}
.findCmSec {
    padding: 50px 20px;
}
.findCmSec_head {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-bottom: 20px;
}
.findCmSec #map {
  margin:0 auto;
  width:100%;
  height: calc(100vh - 180px);
}
.findCmSec form {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}
.custom_select {
    font-size: 16px;
    height: 40px;
    width: 100px;
    color: #212529;
    border: 1px solid #ccc;
    padding: 0px 15px;
    border-radius: 5px; 
    margin-right: 20px;
    min-width: 200px;
        box-sizing: border-box;
}
.custom_select:focus-visible {
    outline: none;
}

.findCmSec p {margin:15px 0;}

/* modal box */
/* The Modal (background) */
.mapModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
}
.mapModal.mystyle {
    opacity: 1;
    visibility: visible;
}
.mapModal-content {
    position: absolute; width: 500px; background-color: #fff;
    transform: translate(-50%, -50%);
    top: 50%; left: 50%; padding: 50px; border-radius: 5px;
}
.mapModal-body form {
    display: flex; 
    flex-direction: column;
}
.mapModal-body .custom_select {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
}
.mapBtn {
    background: #0033a1;
    display: inline-flex;
    padding: 0 15px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    text-align: center;
    justify-content: center;
    height: 40px;
    align-items: center;
    cursor: pointer;
    text-transform: capitalize;
}
.close-button {
    float: right;
    width: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    background: #0033a1;
    color: #fff;
    position: absolute; 
    top: 10px; right: 10px;
}
.close-button:hover {
    background-color: #002678;
}
.searchResult {
    display: flex; align-items: center;
 }
.searchResult .noteText {
    font-size: 18px; margin:0 15px 0 0;
}
.searchResult.searchResult-fail {
    color: red;
}
.searchResult.searchResult-fail .mapBtn {
    display: none;
}


/* loeader */
.loaderBox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999; background-color:#00000078;
}
.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%; left: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid;
    border-color: #00aeef transparent;
}

/* Footer */
.footerImg {
    height: 320px; position: relative;
}
.footerImg img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
.footerImg .notched {
    height: 20px;
    margin-bottom: -20px;
    z-index: 2;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footerImg .flex-1-0-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.footerImg .background-color--white {
    background: #ffffff;
}

.footerImg .notched .wrapper {
    max-width: 1180px;
    background-color: transparent;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.footerImg .knockout {
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footerImg .notch {
    width: 400px;
    height: 20px;
    position: relative;
}
.footerImg .flex-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
/* Footer end */
  
@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
} 


@media (max-width:1199px) {
    .searchResult {
        flex-direction: column; align-items: flex-start;
    }
    .searchResult .noteText {
        font-size: 16px; margin: 0 0 10px 0;
    }
}
@media (max-width:767px) {
    .mapModal-body form {
        margin-bottom: 0;
    }
    .mapModal-content {
        padding: 20px;
        width: 400px;
    }
    .close-button {
        border-radius: 100%; top: -10px; right: -10px;
    }
}
@media (max-width:575px) {
    
    .findCmSec form {
        flex-direction: column;
        align-items: flex-start;
    }
    .findCmSec form .position-relative.errorMsg {
        width: 100%; margin-bottom: 25px;
    }
    .custom_select {
        margin-right: 0; min-width: 100%;
    }
    .findCmSec form.cmxform  .mapBtn {
        margin-top: 25px;
    }
    .mapBtn {
        font-size: 15px;
    }
    .mapModal-content {
        width: 80%;
    }
}