@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
 position: relative;
}
h1, h2, h3, h4, h5, h6{font-family: 'Montserrat', sans-serif; margin: 0;padding: 0;}
p{font-family: 'Poppins', sans-serif; font-size: 16px;font-weight: 400;padding: 0;margin: 0;line-height: 25px;}
img {max-width: 100%;border: none;}
figure{margin: 0;}
a, button {
    text-decoration: none;
    outline: none !important;
    -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.form-group{
    position: relative;
    margin-bottom: 12px;
}
.form-group label {
    color: #272727;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.form-control {
    height: 45px;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    border-radius: 0;
}
.form-control::placeholder{
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}
.form-control:focus{
    box-shadow: none;
}
textarea.form-control{
    height: 90px;
    padding: 15px;
    resize: none;
}
.form-group .icon {
    position: absolute;
    bottom: 13px;
    right: 13px;
    color: #656565;
    font-size: 22px;
}
.datepicker td, .datepicker th {
    width: 40px;
    height: 40px;
}
.pt-90{padding-top: 90px;}
.pb-90{padding-bottom: 90px;}
.card, .card-body, .card-header, .card-footer{
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}
.btn-secondary{
    background-color: #f1f5f5;
    border: 1px solid #f1f5f5;
    color: #053887 !important;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 17px;
    font-weight: 500;
}
.btn-secondary:hover, .btn-secondary:focus{
    border-color: #053887;
    background-color: #053887;
    color: #ffffff !important;
}
.btn-primary{
    background-color: #053887;
    border: 1px solid #053887;
    border-radius: 0;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    box-shadow: 10px 0 22px rgba(0,0,0,0.17);
}
.btn-primary:hover, .btn-primary:focus{
    border-color: #000000;
    background-color: #000000;
    box-shadow: 0;
}
.btn-light {
    background-color: #f1f5f5;
    border: 1px solid #f1f5f5;
    color: #053887 !important;
    border-radius: 5px;
    padding: 13px 18px;
    font-size: 17px;
    font-weight: 500;
}
.btn-light:hover, .btn-light:focus{
    border-color: #053887;
    background-color: #053887;
    box-shadow: 0;
    color: #ffffff !important;
}
.form-select-box{
    position: relative;
}
.form-select-box::after{
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    top: 15px;
    right: 15px;
}
select.form-control{
    cursor: pointer;
}
/*---------- footer area start ---------*/
.footer-area{
    background-image: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.footer-body{
    padding: 80px 0;
}
.footer-body .footer-logo{
    width: 100%;
    max-width: 236px;
    margin-bottom: 55px;
}
.footer-body .footer-logo img{
    width: 100%;
    object-fit: cover;
}
.footer-social{
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 18px;
}
.footer-social li {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-right: 12px;
}
.footer-social li a {
    width: 30px;
    height: 30px;
    position: relative;
}
.footer-social li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    transform: rotate(45deg);
    z-index: 0;
    -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}
.footer-social li a:hover::before{
    background-color: #e8b230;
}
.footer-social li a i{
    position: relative;
    z-index: 1;
    color: #0750c1;
    -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}
.footer-social li a:hover i{
    color: #ffffff;
}
.footer h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: capitalize;
}
.footer h4::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background-color: #e8b230;
}
.footer ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer ul li {
    padding: 0 0 0 25px;
    margin: 0 0 10px;
    position: relative;
}
.footer ul li::before {
    content: "\f101";
    position: absolute;
    top: 0;
    left: 0;
    font-family: FontAwesome;
    font-size: 15px;
    color: #e8b230;
}
.footer ul li a {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 300;
}
.footer ul li a:hover{
    color: #e8b230;
}
.footer-address{
    margin-bottom: 20px;
}
.footer-address:last-child{
    margin-bottom: 0;
}
.footer-address .heading{
    margin-bottom: 15px;
}
.footer-address .heading h5 {
    font-size: 18px;
    font-weight: 500;
    color: #e8b230;
    text-transform: capitalize;
}
.footer-address .heading .icon{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #e8b230;
    color: #ffffff;
    font-size: 12px;
    margin-right: 5px;
}
.footer-address address {
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
}
.footer-address address:last-child{
    margin-bottom: 0;
}
.copyright {
    padding: 20px 0;
    background-color: rgba(18 39 73 / 96%);
}
.copyright p{
    padding: 0;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}
.payment{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.payment li{
    padding: 0;
    margin: 0;
    margin-right: 0;
}
.copyright p a{
    color: #e8b230;
}
.copyright p a:hover{
    text-decoration: underline;
}
/*---------- footer area stop ---------*/
/*---- banner area start ----- height: 910px; */
.banner-area {
    height: 548px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0px 0;
}
.banner-area::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.6530987394957983) 0%, rgba(6,124,185,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.6530987394957983) 0%, rgba(6,124,185,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.6530987394957983) 0%, rgba(6,124,185,0) 100%);
}
.banner-area .container{
    position: relative;
    z-index: 1;
}
.banner-contain-box {
    width: 100%;
    max-width: 75%;
}
.banner-contain-box h1{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 58px;
    font-weight: 500;
}
.banner-contain-box h1 strong{
    font-weight: 700;
}
.banner-form {
    position: relative;
    padding-right: 15px;
    padding-bottom: 0px;
    z-index: 1;
    width: 100%;
    max-width: 77%;
}
.banner-form::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 60%;
    height: 90%;
    background-color: #053784;
    z-index: 0;
}
.banner-form .form-body {
    width: 100%;
    padding: 0px 25px;
    background-color: #ECBA3B;
    position: relative;
    z-index: 1;
}
 

.banner-form .form-body h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0D131C;
    position: relative;
    line-height: 30px;
    padding: 10px;
    /* margin-bottom: 15px; */
    text-align: center;
}

 

.banner-form .form-body h2::after {
    position: absolute;
    content: '';
    bottom: 7px;
    left: 161px;
    width: 100%;
    max-width: 91px;
    height: 3px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../images/line-one.png);
}

/*---- banner area stop -----*/
/*-- header area start --*/
.header-area {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.header-top{
    padding: 15px 0;
    background-color: #012660;
}
.header-top p{
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    padding: 0;
    margin: 0;
}
.header{
    padding: 10px 0;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.logo {
    width: 100%;
    max-width: 200px;
}
.logo img{
    width: 100%;
    object-fit: cover;
}
.address-card{
    margin-left: 30px;
}
.address-card .address-card-icon{
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #053784;
    font-size: 13px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.address-card .address-card-body{
    padding-left: 10px;
}
.address-card .address-card-body p{
    margin: 0 0 0;
    color: #2B2C2D;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}
.address-card .address-card-body .link {
    color: #053784;
    font-size: 16px;
    font-weight: 600;
    display: block;
}
.address-card .address-card-body .link:hover{
    text-decoration: underline;
}
@media screen and (min-width:320px){
    .header-area.fix{
        z-index: 9;
    }
    .header-area.fix .header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1;
        background-color: rgb(255 255 255 / 80%);
        border: none;
        box-shadow: 0 2px 10px rgba(0,0,0,12%);
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
    }
}
@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
100%{opacity:1;-webkit-transform:none;transform:none}
}
@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
100%{opacity:1;-webkit-transform:none;transform:none}
}
/*-- header area stop --*/
/*-- webtext area start --*/
.webtext{
    margin-bottom: 50px;
}
.webtext h3 {
    font-size: 42px;
    color: #000000;
    font-weight: 600;
    padding: 0 0 25px;
    margin: 0 0 50px;
    position: relative;
}
.webtext h3 strong{
    color: #053784;
    font-weight: 600;
}
.webtext h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 91px;
    height: 3px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/line-one.png);
    margin: 0 auto;
    filter: brightness(0) saturate(100%) invert(14%) sepia(32%) saturate(6743%) hue-rotate(210deg) brightness(94%) contrast(96%);
}
.package-card .package-imgbox{
    overflow: hidden;
    border-radius: 15px;
    height: 260px;
}
.package-card .package-imgbox img{
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}
.package-card:hover .package-imgbox img{
    transform: scale(1.1);
}
.package-card .package-boxbody {
    width: 100%;
    max-width: 90%;
    margin: -80px auto 0;
    box-shadow: 0 -3px 4px rgba(0,0,0,0.10);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 47px;
    text-align: center;
    position: relative;
}
.package-card .package-boxbody h4{
    color: #023a8f;
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 5px;
}
.package-card .package-boxbody p{
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 10px;
}
.package-card .package-boxbody .btn {
    padding: 8px 15px;
    font-size: 15px;
}
.package-card .package-boxbody .tag {
	border-radius: 5px;
	color: #fff;
	border: 1px solid #e8b230;
	padding: 8px 10px;
	display: inline-block;
	margin-bottom: 12px;
	font-size: 13px;
	background-color: #e8b230;
}
.package-card {
    margin-bottom: 30px;
}
.package-area{
    background-color:#F9F9F9;
}
/*-- webtext area stop --*/
/*-- rate area start --*/
.rate-area{

}
.rate-img img{
    width: 100%;
    object-fit: cover;
}
.rate-body {
    position: relative;
    background-color: #F4F3F1;
    padding: 60px 60px 0;
}
.rate-body::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #ffffff;
    z-index: 0;
}
.rate-area .webtext{
    padding-left: 30px;
    position: relative;
    z-index: 1;
}
.rate-area .webtext h3 {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.rate-area .webtext h3:after{
    right: auto;
}
.rate-img{
    position: relative;
    z-index: 1;
}
/*-- rate area stop --*/


/* ======== Thank you page css =========== */

.inheader{position: relative;}
.thank-page{ padding:90px 0; text-align:center; }
.thankbox {
    max-width: 100%;
    margin: auto;
    border: none;
    padding: 0;
    text-align: left;
}
.thankbox .envelopebox {
    max-width: 80px;
    margin: 0;
    margin-bottom: 15px;
}
.thankbox h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 11px;
}
.thankbox p {
    font-size: 18px;
    text-transform: capitalize;
    color: #525252;
    font-weight: 300;
}
.thankbox .btn-back {
    background-color: #053784;
    font-size: 18px;
    box-sizing: border-box;
    padding: 12px 30px;
    color: #fff;
    display: inline-block;
    margin-top: 30px;
}
.thankbox .btn-back:hover{
    background-color: #e8b230;
}
  
/* END */

p.c4wp-display-captcha-form img.c4wp_image {
    float: none;
    width: 100%;
    max-width: 135px;
}
p.c4wp-display-captcha-form br{
    display:none;
}
p.c4wp-display-captcha-form{
    display:flex !important;
    flex-direction: column;
}
p.c4wp-display-captcha-form strong {
    margin-top: 10px;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
}

.package-card .package-boxbody .whatsappbox {
    background-color: #1bd741;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    position: absolute;
    left: 12px;
    top: -22px;
    box-shadow: 0px 0px 7px rgb(0 0 0 / 23%);
}

.package-card .package-boxbody .whatsappbox a {
    color: #fff;
}


