@import url('https://fonts.googleapis.com/css2?family=AR+One+Sans:wght@400..700&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Onest:wght@100..900&display=swap');


.lato {
  font-family: "Lato", sans-serif;
}
.ar-one-sans {
  font-family: "AR One Sans", sans-serif;
}
.fraunces {
  font-family: "Fraunces", serif;
}
.crimson {
  font-family: "Crimson Text", serif;
}
.onest {
  font-family: "Onest", sans-serif;
}   

.font-16{font-size: 16px;}
.font-18{font-size: 18px;}
.font-19{font-size: 19px;}
.font-20{font-size: 20px;}
.font-24{font-size: 24px;}
.font-28{font-size: 28px;}
.font-30{font-size: 30px;}
.font-36{font-size: 36px;}
.font-48{font-size: 48px;}

.lh_23{line-height: 23px;}
.lh_25{line-height: 25px;}
.lh_71{line-height: 71px;}

.medium{font-weight: 500;}
.semi{font-weight: 600;}

.letter_sp05{letter-spacing: 0.5px;}
.letter_sp1{letter-spacing: 1px;}
.letter_sp15{letter-spacing: 1.5px;}
.letter_sp2{letter-spacing: 2px;}

.opicity-5{opacity: 0.5;}

.color-DEDBFB{color: #DEDBFB;}

body{
    background: url('../images/body-bg.webp') no-repeat;
    background-size: cover;
    font-size: 16px;
    color: #FFF;
    font-family: "Lato", sans-serif;
}

.gold-text{
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* container style */

@media (min-width: 1500px) {
  .container {
    max-width: 1448px;
  }
}


/************************************************** header *************************************************/

.header{
    padding-top: 32px;
    position: absolute;
    width: 100%;
}
.header .navbar{
    background-color: rgba(21, 20, 34, 1);
    box-shadow: 0px 3.74px 50.51px 0px rgba(9, 8, 20, 1);
    border-radius: 22px;
    padding: 26px 46px;
}
.nav_a{
    font-size: 15px;
    color: #FFF;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 50px !important;
    font-family: "Lato", sans-serif;
    transition: 0.4s ease;
}
.nav_a.active, .nav_a:hover,
.footer_ul a.active {
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}
.nav_flexbtn{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 11px;
    padding-left: 50px;
}
.nav_btn{
    background-color: rgba(255, 191, 71, 1);
    border-radius: 12px;
    padding: 13px 20px;
    min-width: 145px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1D191F;
    font-family: "AR One Sans", sans-serif;
    border: 0;
    display: inline-block;
    border: rgba(255, 191, 71, 1) solid 2px;
    transition-duration: 0.3s;
    position: relative;
    overflow: hidden;
}
.nav_btn span{
    position: relative;
    z-index: 1;
}
.nav_btn:hover{
    background-color: transparent;
    color: #FFBF47;
    border: rgba(255, 191, 71, 1) solid 2px;
}
.nav_btn::before, .yellow_btn::after {
    content: '';
    background: rgba(255, 191, 71, 1);
    width: 100%;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 12px;
}
.nav_btn:hover::before, .yellow_btn:hover::after {
    transform: translate3d(100%, 0, 0);
}


/************************************************** main banner *************************************************/

.main_banner{
    background: url('../images/banner-bg.webp') no-repeat;
    background-size: cover;
    background-position-y: center;
    padding: 307px 0 450px;
}
.banner_content{
    max-width: 680px;
}
.banner_title{
    font-size: 74px;
    line-height: 80px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: "Fraunces", serif;
}
.banner_content > p{
    padding-right: 90px;
}
.btn_shadowdiv{
    position: relative;
    width: fit-content;
    margin-top: 54px;
}
.btn_shadowdiv::before{
    content: '';
    background-color: #FFBF47;
    position: absolute;
    width: 82%;
    height: 40px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(12px);
    box-sizing: content-box;
}
.yellow_btn{
    background-color: #12111C;
    border: 1px solid #FFDA94;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #1D191F;
    font-family: "AR One Sans", sans-serif;
    position: relative;
    transition: 0.3s ease;
    overflow: hidden;
}
.yellow_btn span{
    position: relative;
    display: block;
    padding: 17px 20px;
    z-index: 1;
}
.yellow_btn::after{
    border: 1px solid #FFDA94;
    border-radius: 0px;
}
.yellow_btn:hover, .yellow_btn:hover span{
    color: #FFBF47;
}
.banner_btn{
    min-width: 248px;
}


/************************************************** card sec *************************************************/

.card_sec{
    margin-top: -255px;
}
.card_flexdiv{
    background-color: rgba(21, 20, 34, 1);
    box-shadow: 0px 4px 54px 0px rgba(9, 8, 20, 1);
    border-radius: 28px;
    padding: 23px;
    display: flex;
    gap: 20px;
}
.card_col{
    background-color: rgba(40, 38, 59, 1);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 5px 5px 20px;
    display: block;
    text-decoration: none;
    width: 100%;
    transition: 0.3s ease;
}
.card_col:hover{
    border: 1px solid #FFDA94A1;
}
.card_imgdiv{
    width: 100%;
    height: 209px;
    margin-bottom: 15px;
    position: relative;
}
.card_imgdiv img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}
.card_text{
    font-size: 28px;
    line-height: 71px;
    color: #FFF;
    font-weight: 600;
    text-align: center;
    font-family: "Fraunces", serif;
    margin-bottom: 0;
}
.premium_card{
    position: relative;
}
.premium_card::before{
    content: '';
    background-color: rgba(255, 196, 54, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 1;
    border-radius: 16px;
}
.premium_card::after{
    content: '';
    background-image: url('../images/lock-icon.webp');
    width: 60px;
    height: 60px;
    background-size: 60px 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}


/************************************************** dob sec *************************************************/

.dob_sec{
    padding: 180px 0;
}
.dob_content{
    background-color: rgba(21, 20, 34, 1);
    box-shadow: 0px 4px 54px 0px rgba(9, 8, 20, 1);
    border-radius: 30px;
    padding: 16px;
    margin: 0 40px;
}
.dob_row{
    background-color: rgba(30, 28, 48, 1);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    padding: 82px 0;
}
.dob_textcol{
    padding: 0 0 0 75px;
    width: 64%;
}
.dob_select_row{
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 37px;
}
.form-select{
    background-color: rgba(255, 255, 255, 0.2);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-size: 18px 18px;
    background-position: right 28px center;
    border: 0;
    border-radius: 12px;
    height: 62px;
    /* width: 201px; */
    padding: 10px 28px 13px 23px;
    font-size: 16px;
    color: #FFF;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Lato", sans-serif;
}
.dob_btn{
    margin-top: 35px;
}
.dob_btn .yellow_btn{
    min-width: 265px;
    text-transform: uppercase;
}
.dob_imgcol{
    width: 36%;
    flex-shrink: 0;
    text-align: center;
}
.dob_img{
    position: relative;
    display: block;
    margin: 0 auto;
    width: fit-content;
}
.dob_img::before{
    content: '';
    background-color: rgba(255, 167, 0, 1);
    opacity: 45%;
    width: 62%;
    height: 62%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(224px);
    z-index: -1;
}
.form-select option{
    color: #1D191F;
}

/************************************************* advance report ************************************************/

.advance_report_slider{
    margin-top: 45px;
    padding-left: 237px;
}
.advance_report_slide{
    background-color: rgba(30, 28, 48, 1);
    border-radius: 30px;
    padding: 12px 12px 32px;
    text-align: center;
    height: 100%;
}
.report_slide_img{
    position: relative;
    width: 100%;
    height: 454px;
    margin-bottom: 25px;
}
.report_slide_img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}
.slide_label{
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2.5px;
    padding: 5px 20px;
    background: linear-gradient(180deg, rgba(233, 164, 42, 0.3) 0%, rgba(242, 200, 117, 0.3) 111.17%);
    border: 1px solid #E9A42A24;
    border-radius: 54px;
    backdrop-filter: blur(20px);
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
}
.advance_report_slider .slick-slide{
    margin-right: 20px;
    height: auto;
}
.advance_report_slider .slick-slide > div{
    height: 100%;
}
.advance_report_slider .slick-track{
    display: flex;
}

.upgrade-btn-wrapper {
    display: inline-block;
    margin-top: 40px;
}
.upgrade-btn {
    background: #FFC436;
    color: #291E3C;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.arrow-img {
    width: 14px;
}
.upgrade-btn:hover {
    background: #f6bf3e;
    color: #291E3C;
    transform: translateY(-2px);
}

/************************************************ premium access ***********************************************/

.premium_access{
    padding: 180px 0;
}
.premium_access_row{
    display: flex;
    align-items: center;
    margin-top: 55px;
}
.premium_access_textcol{
    width: 50%;
}
.premium_access_list{
    margin: 22px 0 0;
}
.premium_access_list li{
    font-size: 19px;
    line-height: 32px;
    color: #FFF;
    letter-spacing: 1.5px;
    margin-top: 20px;
}
.premium_access_btn{
    margin-top: 35px;
}
.premium_access_btn .yellow_btn{
    min-width: 253px;
    text-transform: uppercase;
}
.premium_access_imgcol{
    width: 50%;
}
.premium_access_imgdiv{
    width: fit-content;
    margin: 0 0 0 auto;
}
.premium_access_imgdiv img{
    border-radius: 30px;
}
.premium_access_imgdiv.premium_card::before{
    background-color: rgba(255, 196, 54, 0.35);
    border-radius: 30px;
}
.premium_access_imgdiv.premium_card::after{
    width: 100px;
    height: 100px;
    background-size: 100px 100px;
}


/************************************************** how it works *************************************************/

.work_box_row{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 88px;
}
.work_box{
    background-color: rgba(24, 27, 42, 0.8);
    border: 1px solid rgba(222, 219, 251, 0.2);
    border-radius: 30px;
    padding: 147px 21px 28px;
    width: 33.3%;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    min-height: 325px;
}
.workbox_number{
    background-color: rgba(222, 219, 251, 1);
    width: 157px;
    height: 157px;
    border-radius: 50%;
    position: absolute;
    top: -36px;
    left: -20px;
}
.workbox_number span{
    font-size: 71px;
    font-weight: 600;
    color: #1A1D2E;
    font-family: "Fraunces", serif;
    display: block;
    text-align: center;
    padding-top: 35px;
}
.work_textbox{
    background: rgba(24, 27, 42, 0.1);
    border-radius: 12px;
    padding: 14px 12px;
}
.work_textbox h6{
    margin-bottom: 5px;
}
.work_box:hover{
    background: linear-gradient(157.21deg, #FFBF47 -85.01%, #FFEB9A 99.69%);
    border-color: #FFDA94;
    box-shadow: 0px 20px 56px 0px #ffbf479e;
    transform: rotate(0deg);
}
.work_box:hover .work_textbox{
    background-color: rgba(249, 178, 45, 1);
}
.work_box:hover .workbox_number{
    background-color: rgba(255, 192, 72, 0.5);
}
.work_box:hover .workbox_number span{
    color: #FFFFFF;
}

.rotate_1{
    transform: rotate(0.33deg);
}
.rotate_2{
    transform: rotate(-2.25deg);
    margin-top: 47px;
}
.rotate_3{
    transform: rotate(0.28deg);
}
.rotate_4{
    transform: rotate(-4.8deg);
    margin-top: 20px;
}


/************************************************* testimonial sec ************************************************/

.testimonial_sec{
    padding: 180px 0;
}
.testimonial_slider{
    padding-top: 55px;
}
.review_box {
    background-color: rgba(30, 28, 48, 1);
    padding: 30px 20px 43px 25px;
    position: relative;
    border-radius: 30px;
}
.review_box::after {
    content: '';
    background-image: url('../images/quote-icon.webp');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    width: 168px;
    height: 143px;
    opacity: 0.6;
    border-radius: 0 30px 0 0;
}
.review_box_head {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}
.user_review_img {
    width: 50px;
    height: 50px;
    position: relative;
}
.user_review_img img{
    border-radius: 50%;
}
.review_box_user_name {
    font-family: "Crimson Text", serif;
    font-weight: 700;
    font-size: 22px;
    color: #FFF;
    margin-bottom: 2px;
}
.slick-slide img {
    display: block;
}
.user_review_text {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.5px;
    color: #FFF;
    margin-bottom: 0;
}
.testimonial_slider .slick-slide{
    margin-right: 19px;
}
.testimonial_slider .slick-dots li button:before{
    width: 20px;
    height: 8px;
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    border-radius: 10px;
    opacity: 0.4;
}
.testimonial_slider .slick-dots li.slick-active button:before{
    opacity: 1;
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    width: 35px;
}
.testimonial_slider .slick-dots li{
    height: 20px;
    margin: 0 4px;
}
.testimonial_slider .slick-dots li.slick-active{
    width: 35px;
}
.testimonial_slider .slick-dots li button{
    padding: 0;
    height: 8px;
}
.testimonial_slider .slick-dots{
    bottom: -60px;
}
.review_readmore{
    font-size: 18px;
    font-weight: 500;
    color: #FFBF47;
    letter-spacing: 0px;
    text-decoration: none;
}
.review_readmore:hover{
    text-decoration: unset;
    color: #FFBF47;
}

/* testimonial Modal style */

.review_box_mdl .modal-dialog{
    max-width: 600px;
}
.review_box_mdl .modal-content{
    background-color: rgba(30, 28, 48, 1);
    border-radius: 36px;
    border: none;
    position: relative;
}
.review_box_mdl .modal-content::after{
    content: '';
    background-image: url('../images/modal-quote-icon.png');
    background-repeat: no-repeat;
    width: 170px;
    height: 119px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.6;
    border-radius: 0 36px 0 0;
}
.review_box_mdl .modal-header{
    border: none;
    padding: 31px 24px 2px;
    z-index: 1;
    position: relative;
}
.review_box_mdl .review_box_user_name {
    font-size: 24px;
    margin-bottom: 8px;
}
.review_box_mdl .review_box_right > p{
    font-weight: 300;
    margin-bottom: 14px;
}
.review_box_mdl .btn-close {
    box-sizing: content-box;
    width: 45px;
    height: 45px;
    padding: 0;
    color: #000;
    background: #FFC436 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/13px auto no-repeat;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
}
.review_box_mdl .modal-body{
    padding: 10px 24px 30px 16px;
    position: relative;
    z-index: 1;
}
.review_box_mdl .user_review_text{
    letter-spacing: 0px;
}


/************************************************* blog post ************************************************/

.blog_post{
    padding-left: 237px;
}
.blogpost_slider{
    margin-top: 55px;
}
.blogpost_slide{
    background-color: rgba(30, 28, 48, 1);
    border-radius: 30px;
    padding: 12px 12px 0;
    height: 100%;
}
.blogpost_imgdiv img{
    border-radius: 20px;
    width: 100%;
    height: 350px;
}
.blogpost_text{
    padding: 25px 13px 43px;
}
.blogpost_text h6{
    margin-bottom: 18px;
}
.read_morebtn{
    background: linear-gradient(91.94deg, #E9A42A 7.07%, #F2C875 80.33%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}
.read-more-review {
    background: linear-gradient(91.94deg, #E9A42A 7.07%, #F2C875 80.33%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.5px;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}
.read_morebtn img{
    width: 10px;
    height: 12px;
    margin-top: 5px;
    transition: 0.3s ease;
}
.read_morebtn:hover{
    background: linear-gradient(91.94deg, #E9A42A 7.07%, #F2C875 80.33%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.read_morebtn:hover img{
    transform: translateX(3px);
}
.blogpost_slider .slick-track{
    display: flex;
}
.blogpost_slider .slick-slide{
    height: auto;
    margin-right: 20px;
}
.blogpost_slider .slick-slide > div{
    height: 100%;
}


/************************************************* newslatter ************************************************/

.newslatter{
    padding: 180px 0;
}
.mb_6{
    margin-bottom: 6px;
}
.newslatter_row{
    display: flex;
    align-items: center;
    margin-top: 105px;
}
.newslatter_formdiv{
    background-color: rgba(30, 28, 48, 1);
    border-radius: 30px;
    padding: 30px 38px;
}
.inputblock{
    margin-bottom: 16px;
}
.inputblock label{
    font-size: 20px;
    color: #FFF;
    letter-spacing: 1px;
    font-family: "Lato", sans-serif;
    margin-bottom: 5px;
}
.inputblock .form-control, .inputblock .form-select{
    background-color: rgba(222, 219, 251, 0.05);
    border-radius: 20px;
    border: 2px solid transparent;
    height: 60px;
    width: 100%;
    padding: 6px 30px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-family: "Lato", sans-serif;
}
.inputblock .form-control::placeholder, .inputblock .form-control::-webkit-input-placeholder{
    color: #FFFFFFB2;
    font-family: "Lato", sans-serif;
}
.form-control:focus, .form-select:focus, .form-check-input:focus, .form-check-input:checked{
    box-shadow: unset;
    border-color: #f2c87569;
}
.input_wrapper{
    display: flex;
    align-items: center;
    gap: 16px;
}
.inputblock .form-select{
    color: #FFFFFFB2;
    background-size: 20px 20px;
}
.input_checkbox .form-check-input{
    background-color: rgba(222, 219, 251, 0.2);
    border-radius: 8px;
    width: 37px;
    height: 37px;
    margin: 0;
    padding: 0;
}
.input_checkbox{
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 24px 0 45px;
    padding: 0;
    border: 1px solid transparent;
}
.input_checkbox .form-check-label{
    font-size: 24px;
    color: #FFF;
    font-weight: 400;
}
.input_checkbox .form-check-label a{
    color: #FFF;
}
.newslatter_btn{
    width: 100%;
    margin-top: 0;
}
.newslatter_btn .yellow_btn{
    min-width: 100%;
    text-transform: uppercase;
    font-size: 22px;
}
.newslatter_btn.btn_shadowdiv::before {
    width: 100%;
}

.newslatter_contact{
    width: 40%;
    margin: 0 0 0 auto;
}
.contact_text{
    margin-bottom: 30px;
}
.contact_text > h6{
    margin-bottom: 15px;
}
.contact_wrapper{
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0 0 11px;
}
.contact_wrapper a, .contact_wrapper p{
    font-size: 24px;
    font-weight: 400;
    color: #FFF;
    letter-spacing: 1.5px;
    font-family: "Lato", sans-serif;
    margin-bottom: 0;
    text-decoration: none;
    transition: 0.3s ease
}
.contact_wrapper a:hover{
    text-decoration: underline;
}

/************************************************* footer ************************************************/

.footer{
    padding-bottom: 30px;
}
.footer_content{
    padding: 55px 0 0;
    position: relative;
}
.footer_content::before {
    content: '';
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}
.flex_footer{
    display: flex;
    align-items: center;
    margin: 34px 0 65px;
}
.footer_ul{
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 auto 0;
}
.footer_ul a{
    font-size: 16px;
    line-height: 23px;
    color: #FFF;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease
}
.footer_ul a:hover{
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}
.social_media_icons{
    display: flex;
    align-items: center;
    gap: 21px;
}
.social_media_icons a{
    text-decoration: none;
    transition: 0.3s ease;
}
.social_media_icons a:hover svg path{
    fill: #F2C875;
}
.error, .newLetterError {
    color: #ff0000;
}

/************************************************* terms-and-condition ************************************************/

.blog_page_content{
    padding: 150px 0px 100px !important;
}
.blog_page_content .blog_page_text .top_title {
    font-size: 30px;
}
.blog_page_content .blog_page_text{
    font-size: 17px;
    line-height: 30px;
    text-align: center;
}
.blog_page_content .blog_page_text span{
    font-size: 25px;
}
.blog_page_text {
    margin-top: 30px;
}

/************************************************* contact-us ************************************************/
/*.newsletter_sec{
    padding-bottom: 200px;
}*/
.newsletter_sec .newsletter_form h6{
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 1.05px;
    background: var(--gold, linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 15px;
}
.newsletter_sec .newsletter_form h4{
    color: #FFF;
    text-align: center;
    font-family: Aurora Regular;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    padding-bottom: 20px;
}
.newsletter_sec .newsletter_form{
    background: url(../images/newsletter_bg.webp) no-repeat;
    background-size: cover;
    border-radius: 30px;
    padding: 37px 10px 35px;
}
.newsletter_sec .newsletter_bg{
    background: url(../images/newsletter-bg-dark-blue.png)  no-repeat;
    background-size: cover;
}

/* .newsletter_sec .newsletter_bg h4 {
    background: var(--gold, linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter_sec .newsletter_bg h6 {
    background: var(--gold, linear-gradient(180deg, #000 0%, #000 121.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.newsletter_bg .sub_title {
    background: var(--gold, linear-gradient(180deg, #ee9b06 0%, #c79023 121.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.newsletter_bg label, .newsletter_bg input, .newsletter_bg select, .newsletter_bg input::placeholder{
    color: #000 !important;
}
.newsletter_bg select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
} */

.newsletter_sec #contactForm{
    padding: 37px 10px 41px;
    margin-bottom: 100px;
}
.px-30{
    padding-left: 30px;padding-right: 30px;
}
.newsletter_sec .newsletter_form label{
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0.9px;
}
.newsletter_sec .newsletter_form .form-control, .newsletter_sec .newsletter_form .form-select{
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background-color: rgba(255, 255, 255, 0.40);
}
.newsletter_sec .newsletter_form .form-control::placeholder {
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
}
.newsletter_sec input, .newsletter_sec .form-select{
    color: rgba(255, 255, 255, 0.60);
    font-family: Lato;
    font-size: 14px!important;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.7px;
    padding: 10px 20px!important;
    text-align: left;
}
.newsletter_sec .form-select{
    background-image:  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-size: 20px 20px;
    background-position: right 30px center;
}
.newsletter_sec .form-select option{
    color: #000;
}

.btn_style{
    color: #291E3C;
    text-align: center;
    font-family:  'Lato', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    border-radius: 100px;
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    padding: 18px 40px;
    min-width: 300px;
}
.btn_style:hover{
    background: linear-gradient(0deg, #E9A42A 0%, #F2C875 121.79%);
    color: #291E3C;
}
.mt-30{
    margin-top: 30px;
}

.homepage_content{
    padding: 150px 0px 100px;
}
.newsletter_form{
    border: 2px solid #8594a9;
}
 .error{
    display: block;
    color: red !important;
}
input.error, text-area.error{
    color: #fff !important;
}
#contactForm .btn_style{
    width: 50%;
}
.checkbox-field input {
    padding: 10px 10px !important;
}
.accept-acknowledgment {
    cursor: pointer;
}
.newsletter_sec option {
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0.9px;
}
.accept-acknowledgment span{
    line-height: 30px;
}
.disclaimer_section{
    margin-top: 100px;
}
.disclaimer_section h3, .disclaimer_section p{
    letter-spacing: 2.88px;
}

.disclaimer_section h4 {
    color: #FFF;
    text-align: center;
    font-family: Aurora Regular;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    padding-bottom: 20px;
}

.alert-success-msg{
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

/* Body Scroll Arrow  */

.body_scroll_arrow{
    background: linear-gradient(90deg, #E9A42A 0%, #F2C875 100%);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1;
}
.body_scroll_arrow img{
    width: 40px;
    transform: rotate(180deg);
}


/************************************************* Responsive ************************************************/

@media (max-width: 1699.98px) {
    .main_banner{
        padding: 257px 0 390px;
    }
    .banner_title {
        font-size: 64px;
        line-height: 70px;
    }

    .card_sec {
        margin-top: -280px;
    }
    .card_text {
        font-size: 23px;
        line-height: 66px;
    }

    .dob_sec {
        padding: 140px 0;
    }
    .dob_row{
        padding: 55px 0;
    }
    .font-36 {
        font-size: 32px;
    }

    .font-48 {
        font-size: 44px;
    }
    .advance_report_slider {
        padding-left: 79px;
    }

    .premium_access {
        padding: 140px 0;
    }
    .testimonial_sec {
        padding: 140px 0;
    }

    .blog_post {
        padding-left: 79px;
    }

    .newslatter {
        padding: 140px 0;
    }
    .newslatter_row{
        margin-top: 90px;
    }
}

@media (max-width: 1610px) {    

    /**************************** terms-and-condition *****************************/
    .blog_page_content .blog_page_text span {
        font-size: 23px;
    }

    /**************************** contact-us *****************************/
    .newsletter_sec .form-select{
        background-position: right 13px center;
    }
    .newsletter_sec #contactForm{
        margin-bottom: 50px;
    }
    /*
    .newsletter_sec{
        padding-bottom: 150px;
    }*/

    .btn_style{
        padding: 18px 20px;
    }
}

@media (max-width: 1499.98px) {
    .nav_a{
        padding: 0 40px !important;
    }
    .btn_shadowdiv{
        margin-top: 46px;
    }
    .card_flexdiv{
        padding: 21px;
        gap: 16px;
    }
    .card_imgdiv{
        height: 188px;
    }
    .card_text {
        font-size: 22px;
        line-height: 64px;
    }
    .dob_sec {
        padding: 120px 0;
    }
    .dob_content{
        margin: 0 20px;
    }
    .dob_textcol {
        padding: 0 0 0 60px;
    }
    .font-48 {
        font-size: 42px;
    }
    .advance_report_slider {
        padding-left: 55px;
    }
    .report_slide_img{
        height: 367px;
    }
    .premium_access {
        padding: 120px 0;
    }
    .premium_access_row{
        justify-content: space-between;
    }
    .premium_access_textcol {
        width: 56%;
    }
    .premium_access_imgcol {
        width: 42%;
    }
    .work_box_row{
        margin-top: 55px;
    }
    .work_box{
        padding: 140px 16px 25px;
    }
    .workbox_number{
        width: 147px;
        height: 147px;
    }
    .workbox_number span{
        font-size: 60px;
    }
    .work_box .font-24{
        font-size: 22px;
    }
    .testimonial_sec {
        padding: 120px 0;
    }
    .review_box{
        padding: 30px 20px 38px 25px;
    }
    .review_box_head{
        padding-bottom: 22px;
    }
    .blogpost_slider {
        margin-top: 44px;
    }
    .blog_post {
        padding-left: 55px;
    }
    .newslatter{
        padding: 120px 0;
    }
    .newslatter .font-28 {
        font-size: 25px;
    }
    .newslatter_row {
        margin-top: 60px;
    }
    .newslatter_formdiv{
        padding: 40px 36px;
    }
}

@media (max-width: 1399.98px) {
    .header{
        padding-top: 24px;
    }
    .header .navbar{
        padding: 22px 36px;
    }
    .nav_a {
        padding: 0 16px !important;
    }
    .nav_btn{
        padding: 10px 16px;
        min-width: 132px;
    }
    .main_banner {
        padding: 214px 0 370px;
    }
    .banner_title {
        font-size: 50px;
        line-height: 56px;
        padding-right: 91px;
    }
    .banner_content > p {
        padding-right: 97px;
    }
    .btn_shadowdiv {
        margin-top: 38px;
    }
    .card_flexdiv {
        padding: 16px;
        gap: 12px;
    }
    .card_imgdiv{
        height: 165px;
    }
    .card_text {
        font-size: 20px;
        line-height: 54px;
    }
    .dob_content {
        margin: 0 10px;
    }
    .dob_textcol {
        padding: 0 0 0 42px;
        width: 60%;
    }
    .font-36 {
        font-size: 30px;
    }
    .dob_textcol .lh_71{
        line-height: 60px;
    }
    .dob_btn {
        margin-top: 35px;
    }
    .dob_imgcol {
        width: 40%;
    }
    .dob_img img{
        width: 75%;
    }
    .dob_img::before {
        filter: blur(86px);
    }
    .advance_report_slider {
        padding-left: 106px;
        margin-top: 36px;
    }
    .advance_report_slide{
        padding: 8px 8px 26px;
    }
    .report_slide_img{
        height: 324px;
        margin-bottom: 20px;
    }
    .advance_report_slide .font-20 {
        font-size: 17px;
    }
    .font-48 {
        font-size: 38px;
    }
    .slide_label {
        font-size: 10px;
        line-height: 19px;
        padding: 5px 15px;
    }
    .premium_access_btn {
        margin-top: 35px;
    }
    .premium_access_imgdiv.premium_card::after {
        width: 80px;
        height: 80px;
        background-size: 80px 80px;
    }
    .work_box_row {
        margin-top: 40px;
        align-items: center;
    }
    .work_box {
        padding: 120px 10px 20px;
        min-height: 288px;
    }
    .workbox_number {
        width: 134px;
        height: 134px;
    }
    .workbox_number span {
        font-size: 52px;
        padding-top: 39px;
    }
    .work_box .font-24 {
        font-size: 20px;
    }
    .work_box .font-16 {
        font-size: 14px;
    }
    .testimonial_slider {
        padding-top: 40px;
    }
    .review_box {
        padding: 28px 16px 28px 18px;
    }
    .review_box::after {
        width: 118px;
    }
    .user_review_img {
        width: 46px;
        height: 46px;
    }
    .review_box_user_name{
        font-size: 20px;
    }
    .review_box_head {
        padding-bottom: 15px;
    }
    .user_review_text{
        font-size: 16px;
        line-height: 26px;
    }
    .blog_post {
        padding-left: 106px;
    }
    .blogpost_slider{
        margin-top: 32px;
    }
    .blogpost_text {
        padding: 25px 13px 28px;
    }
    .blogpost_text .font-20 {
        font-size: 18px;
    }
    .read_morebtn{
        margin-top: 18px;
    }
    .newslatter_row {
        margin-top: 42px;
    }
    .newslatter .font-28 {
        font-size: 20px;
    }
    .newslatter_formdiv {
        padding: 35px 32px;
    }
    .inputblock {
        margin-bottom: 25px;
    }
    .inputblock label{
        font-size: 18px;
        margin-bottom: 12px;
    }
    .inputblock .form-control, .inputblock .form-select {
        font-size: 16px;
        height: 58px;
        padding: 6px 20px;
    }
    .input_wrapper{
        gap: 12px;
    }
    .inputblock .form-select {
        background-size: 16px 16px;
        background-position: right 20px center;
    }
    .input_checkbox{
        gap: 15px;
        margin: 24px 0 30px;
    }
    .input_checkbox .form-check-input{
        width: 32px;
        height: 32px;
    }
    .input_checkbox .form-check-label {
        font-size: 18px;
    }
    .newslatter_btn{
        margin-top: 0;
    }
    .newslatter_btn .yellow_btn{
        font-size: 18px;
    }
    .newslatter_btn .yellow_btn span{
        padding: 14px 20px;
    }
    .contact_text {
        margin-bottom: 70px;
    }
    .contact_text .font-30{
        font-size: 28px;
    }
    .contact_text > h6 {
        margin-bottom: 24px;
    }
    .contact_wrapper{
        margin: 14px 0 0 12px;
    }
    .contact_wrapper a, .contact_wrapper p {
        font-size: 21px;
    }
    .footer_logo img{
        width: 75px;
    }
    .flex_footer{
        margin: 34px 0 54px;
    }

    /******************************* terms-and-condition ***********************************/
    .blog_page_content .blog_page_text{
        font-size: 16px;
        line-height: 26px;
    }
    .blog_page_content {
        padding: 140px 0px 100px;
    }
    .blog_page_content .blog_page_text span {
        font-size: 21px;
    }

    /**************************** contact-us *****************************/
    .newsletter_sec .newsletter_form h4{
        font-size: 30px;
    }
    .newsletter_sec .newsletter_form h6{
        font-size: 18px;
        line-height: 30px;
    }
    .newsletter_sec input, .newsletter_sec .form-select{
        line-height: 35px!important;
    }
    .newsletter_sec .form-select{
        background-position: right 14px center;
    }
    .newsletter_sec #contactForm{
        margin-bottom: 0px;
    }
    /*.newsletter_sec{
        padding-bottom: 120px;
    }*/

    .homepage_content {
        padding: 140px 0px 100px;
    }

    .footer_ul{
        gap: 9px;
    }
    .footer_ul a{
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 1px;
    }
    .footer .social_media_icons{
        gap: 14px;
    }
}

@media (max-width: 1290.98px) {
    .advance_report_slider {
        padding-left: 72px;
    }
    .blog_post {
        padding-left: 72px;
    }

    /**************************** contact-us *****************************/
    .newsletter_sec .form-select{
        background-size: 14px 14px;
        background-position: right 8px center;
    }
}

@media (max-width: 1199.98px) {
    .header .navbar {
        padding: 18px 30px;
    }
    .nav_a {
        padding: 0 10px !important;
        font-size: 14px;
    }
    .nav_flexbtn{
        padding-left: 45px;
    }
    .nav_btn {
        padding: 9px 14px;
        min-width: 128px;
        font-size: 14px;
    }
    .main_banner {
        padding: 184px 0 290px;
    }
    .banner_title {
        font-size: 44px;
        line-height: 52px;
        padding-right: 153px;
        margin-bottom: 14px;
    }
    .card_sec {
        margin-top: -200px;
    }
    .card_imgdiv{
        height: 135px;
        margin-bottom: 12px;
    }
    .card_flexdiv {
        padding: 12px;
        gap: 10px;
    }
    .card_text {
        font-size: 18px;
        line-height: 28px;
        padding-bottom: 10px;
    }
    .dob_sec {
        padding: 90px 0;
    }
    .dob_row {
        padding: 46px 0;
    }
    .dob_textcol {
        padding: 0 0 0 36px;
    }
    .font-36 {
        font-size: 28px;
    }
    .dob_textcol .lh_71 {
        line-height: 56px;
    }
    .dob_textcol .font-19 {
        font-size: 17px;
    }
    .dob_select_row{
        gap: 12px;
        margin-top: 32px;
    }
    .dob_img img {
        width: 69%;
    }
    .font-48 {
        font-size: 34px;
    }
    .report_slide_img{
        height: 259px;
    }
    .advance_report_slider {
        padding-left: 57px;
    }
    .premium_access{
        padding: 90px 0;
    }
    .premium_access_row{
        margin-top: 40px;
    }
    .premium_access_list {
        margin: 18px 0 0;
    }
    .premium_access_list li {
        font-size: 17px;
        margin-top: 18px;
    }
    .premium_access_imgcol {
        width: 44%;
    }
    .work_box {
        padding: 105px 6px 18px;
        min-height: 284px;
    }
    .workbox_number {
        width: 128px;
        height: 128px;
    }
    .workbox_number span {
        font-size: 48px;
        padding-top: 42px;
    }
    .work_box .font-24 {
        font-size: 17px;
    }
    .testimonial_sec{
        padding: 90px 0;
    }
    .review_box {
        padding: 24px 16px 28px 18px;
    }
    .review_box::after {
        width: 100px;
        height: 65px;
    }
    .review_box_user_name {
        font-size: 18px;
    } 
    .user_review_img {
        width: 40px;
        height: 40px;
    }
    .review_box_right img{
        width: 82px;
    }
    .user_review_text {
        font-size: 14px;
        line-height: 22px;
    }
    .blog_post {
        padding-left: 57px;
    }
    .blogpost_text {
        padding: 25px 8px 28px;
    }
    .blogpost_text .font-20{
        font-size: 17px;
    }
    .newslatter{
        padding: 90px 0;
    }
    .newslatter.lh_71 {
        line-height: 58px;
    }
    .newslatter_formdiv {
        padding: 30px 24px;
    }
    .input_checkbox .form-check-input {
        width: 30px;
        height: 30px;
    }
    .input_checkbox {
        gap: 12px;
        margin: 24px 0 28px;
    }
    .contact_wrapper a, .contact_wrapper p {
        font-size: 19px;
    }
    .contact_wrapper{
        gap: 14px;
    }

    /* testimonial Modal style */
    .review_box_mdl .user_review_text {
        letter-spacing: 0px;
        font-size: 16px;
        line-height: 26px;
    }
    .review_readmore {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .header {
        padding-top: 20px;
    }
    .header .navbar {
        padding: 12px 24px;
    }
    .header .navbar-toggler-icon{
        background-image: url('../images/menu-icon.webp');
        background-repeat: no-repeat;
    }
    .navbar-toggler:focus{
        box-shadow: unset;
    }
    .header .navbar-nav{
        flex-direction: row;
        justify-content: center;
    }
    .nav_flexbtn {
        padding-left: 0;
        justify-content: center;
        margin: 24px 0 20px;
    }
    .main_banner {
        padding: 160px 0 260px;
        background-position: center;
    }
    .banner_content {
        max-width: 86%;
    }
    .banner_title {
        font-size: 40px;
        line-height: 48px;
    }
    .card_sec {
        margin-top: -204px;
    }
    .card_flexdiv {
        padding: 8px;
        gap: 8px;
    }
    .card_col{
        padding: 4px 4px 20px;
    }
    .card_imgdiv{
        height: 100px;
    }
    .card_text {
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 2px;
    }
    .premium_card::after {
        width: 42px;
        height: 42px;
        background-size: 42px 42px;
    }
    .dob_sec {
        padding: 80px 0;
    }
    .dob_row {
        padding: 40px 0;
    }
    .dob_textcol {
        padding: 0 0 0 32px;
        width: 63%;
    }
    .font-36 {
        font-size: 26px;
    }
    .dob_select_row {
        gap: 8px;
        margin-top: 28px;
    }
    .dob_select_row .form-select{
        padding: 10px 16px 13px 16px;
        height: 55px;
        background-size: 15px 15px;
        background-position: right 16px center;
    }
    .dob_img::before {
        filter: blur(70px);
    }
    .dob_img img {
        width: 70%;
    }
    .advance_report_slider {
        padding-left: 40px;
    }
    .advance_report_slide {
        padding: 8px 8px 22px;
    }
    .advance_report_slider .slick-slide {
        margin-right: 12px;
    }
    .font-48 {
        font-size: 32px;
    }
    .advance_report_slide .font-20 {
        font-size: 16px;
    }
    .premium_access {
        padding: 80px 0;
    }
    .premium_access_row{
        margin-top: 28px;
    }
    .premium_access_list li {
        font-size: 15px;
        margin-top: 15px;
        line-height: 26px;
    }
    .work_box_row {
        margin-top: 2px;
        align-items: center;
    }
    .work_box {
        padding: 87px 2px 18px;
        min-height: 266px;
    }
    .workbox_number {
        width: 115px;
        height: 115px;
    }
    .workbox_number span {
        font-size: 40px;
    }
    .work_box .font-24 {
        font-size: 15px;
    }
    .work_box .font-16 {
        font-size: 12px;
    }
    .testimonial_sec {
        padding: 80px 0;
    }
    .review_box {
        padding: 20px 10px 24px 16px;
    }
    .review_box_head {
        padding-bottom: 9px;
    }
    .user_review_img {
        width: 36px;
        height: 36px;
    }
    .review_box_user_name {
        font-size: 16px;
    }
    .review_box_right img {
        width: 75px;
    }
    .blog_post {
        padding-left: 40px;
    }
    .blogpost_slide{
        padding: 10px 10px 0;
    }
    .blogpost_text {
        padding: 18px 5px 24px;
    }
    .blogpost_text .font-20 {
        font-size: 16px;
    }
    .blogpost_text h6 {
        margin-bottom: 12px;
    }
    .blogpost_text .font-16 {
        font-size: 14px;
    }
    .blogpost_text .lh_23 {
        line-height: 21px;
    }
    .read_morebtn {
        margin-top: 14px;
        font-size: 16px;
    }
    .read_morebtn img {
        width: 9px;
        height: 10px;
    }
    .newslatter {
        padding: 80px 0;
    }
    .newslatter .lh_71 {
        line-height: 47px;
    }
    .newslatter_row{
        gap: 15px;
    }
    .newslatter_formdiv {
        padding: 30px 20px;
    }
    .input_wrapper {
        gap: 6px;
    }
    .inputblock .form-control, .inputblock .form-select {
        font-size: 15px;
        height: 58px;
        padding: 6px 13px;
    }
    .inputblock .form-select {
        background-size: 15px 15px;
        background-position: right 12px center;
    }
    .input_checkbox .form-check-input {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    .input_checkbox .form-check-label {
        font-size: 16px;
    }
    .newslatter_contact {
        width: 42%;
        flex-shrink: 0;
    }
    .contact_wrapper {
        gap: 9px;
        margin: 15px 0 0 9px;
    }
    .contact_wrapper img{
        width: 22px;
    }
    .contact_wrapper a, .contact_wrapper p {
        font-size: 16px;
    }
    .flex_footer {
        margin: 28px 0 40px;
    }
    .footer_logo img {
        width: 60px;
    }
    .footer_ul{
        gap: 12px;
    }
    .footer_ul a {
        font-size: 14px;
    }
    .social_media_icons{
        gap: 12px;
    }
}

@media (max-width: 780.98px) {
    .font-48 {
        font-size: 30px;
    }
    .work_box .font-24 {
        font-size: 14px;
    }

    /**************************** contact-us *****************************/
    .newsletter_sec .newsletter_bg{
        background: url(../images/newsletter-bg-dark-blue.png) no-repeat;
        background-size: cover;
        border-radius: 30px;
        padding: 37px 10px 35px;
    }
    .newsletter_sec .newsletter_form h6 {
        font-size: 16px;
        line-height: 22px;
    }
        .newsletter_sec .newsletter_form h4 {
        font-size: 24px;
        line-height: 32px;
    }
    .newsletter_sec .form-select{
        background-size: 16px 16px;
        background-position: right 10px center;
    }
    .newsletter_sec input, .newsletter_sec .form-select{
        padding: 10px 12px!important;
    }
    .newsletter_sec #contactForm{
        margin-bottom: 0px;
    }   
    /*.newsletter_sec{
        padding-bottom: 60px;
    }*/
}

@media (max-width: 760.98px) {
    .main_banner {
        padding: 160px 0 100px;
    }
    .banner_content{
        max-width: 100%;
        text-align: center;
    }
    .banner_title {
        font-size: 37px;
        line-height: 46px;
        padding-right: 0;
    }
    .banner_content > p {
        padding-right: 0;
    }
    .banner_content .btn_shadowdiv{
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    .card_sec {
        margin-top: -46px;
    }
    .card_flexdiv {
        padding: 5px;
        gap: 6px;
    }
    .card_col{
        width: 96px;
        flex-shrink: 0;
        padding: 2px 2px 18px;
    }
    .card_imgdiv {
        height: 75px;
    }
    .card_text {
        font-size: 12px;
        line-height: 15px;
        padding-bottom: 0px;
    }
    .premium_card::after{
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
    }
    .dob_sec {
        padding: 60px 0;
    }
    .dob_content {
        margin: 0 0px;
        padding: 12px;
    }
    .dob_row{
        flex-direction: column;
        gap: 15px;
        padding: 26px 0 30px;
    }
    .dob_textcol {
        padding: 0 20px 0 20px;
        width: 100%;
        text-align: center;
        order: 1;
    }
    .dob_btn {
        margin: 35px auto 0;
    }
        .dob_imgcol {
        width: 100%;
    }
    .advance_report_slider {
        padding-left: 0;
    }
    .premium_access {
        padding: 60px 0;
    }
    .premium_access .font-48 {
        font-size: 28px;
    }
    .premium_access .lh_71{
        line-height: 40px;
    }
    .premium_access_row{
        flex-direction: column;
        gap: 30px;
    }
    .premium_access_textcol {
        width: 100%;
        order: 1;
    }
    .premium_access_textcol h6{
        text-align: center;
    }
    .premium_access_list{
        text-align: left;
    }
    .premium_access_btn {
        margin: 35px auto 0;
    }
    .premium_access_imgcol {
        width: 90%;
    }
    .work_box_row {
        margin-top: 2px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .work_box {
        padding: 87px 2px 18px;
        min-height: 217px;
        width: 47%;
    }
    .testimonial_sec {
        padding: 60px 0;
    }
    .review_box {
        padding: 24px 15px 29px 20px;
        min-height: 250px;
    }
    .testimonial_slider .slick-slide {
        margin: 0 7px;
    }
    .testimonial_slider .slick-dots {
        bottom: -46px;
    }
    .blog_post {
        padding-left: 0;
    }
    .blog_post div > h6{
        text-align: center;
    }
    .blogpost_text h6{
        text-align: left !important;
    }
    .blogpost_slider .slick-slide{
        margin: 0 10px;
    }
    .newslatter {
        padding: 60px 0;
    }
    .newslatter  .font-48 {
        font-size: 30px;
    }
    .newslatter .font-28 {
        font-size: 18px;
    }
    .newslatter_row{
        flex-direction: column;
    }
    .newslatter_contact {
        width: 100%;
        flex-shrink: 0;
        text-align: center;
    }
    .contact_text{
        width: fit-content;
        margin: 0 auto 50px;
    }
    .footer_content {
        padding: 42px 0 0;
    }
    .flex_footer{
        flex-direction: column;
        gap: 20px;
    }
    .footer_ul {
        gap: 14px;
    }
    .footer_content > p{
        font-size: 14px;
    }

    /******************************* terms-and-condition ***********************************/
    .blog_page_content .blog_page_text .top_title{
        font-size: 24px;
        line-height: normal;
     }
    .blog_page_content .blog_page_text span{
        font-size: 21px;
    }
    .blog_page_content .blog_page_text{
        text-align: center;
        font-size: 14px;
        line-height: 25px;
    }
    .blog_page_content {
          padding: 110px 0px 60px;
    }
    .blog_page_text {
        margin-top: 0px;
    }

    /**************************** contact-us *****************************/
    .homepage_content {
        padding: 110px 0px 60px;
    }

}

@media (max-width: 432.98px) {
    .header {
        padding-top: 14px;
    }
    .header .navbar-nav {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
    .logo img{
        width: 46px
    }
    .main_banner {
        padding: 124px 0 100px;
        background-position: center right;
    }
    .banner_title {
        font-size: 33px;
        line-height: 43px;
    }
    .banner_content .font-18 {
        font-size: 16px;
    }
    .yellow_btn span{
        padding: 15px 20px;
    }
    .card_flexdiv{
        flex-wrap: wrap;
        padding: 8px;
    }
    .card_col {
        width: 49%;
        padding: 4px 4px 18px;
    }
    .card_imgdiv {
        height: 120px;
    }
    .card_text {
        font-size: 14px;
        line-height: 18px;
    }
    .last_card{
        width: 100%;
    }
    .dob_textcol {
        padding: 0 16px;
    }
    .dob_select_row {
        gap: 3px;
        margin-top: 21px;
        gap: 10px;
    } 
    .dob_img img {
        width: 60%;
    }
    .dob_select_row .form-select {
        padding: 10px 14px 13px 14px;
        height: 49px;
        background-size: 14px 14px;
        background-position: right 14px center;
        font-size: 14px;
    }
    .font-48 {
        font-size: 29px;
    }
    .advance_report_slider .slick-slide {
        margin: 0 6px;
    }
    .advance_report_slide {
        padding: 8px 8px 18px;
    }
    .report_slide_img{
        height: 380px;
    }
    .premium_access .font-48 {
        font-size: 25px;
    }
    .premium_access .lh_71 {
        line-height: 36px;
    }
    .newslatter .font-48 {
        font-size: 25px;
    }
    .newslatter .lh_71 {
        line-height: 37px;
    }
    .newslatter .font-28 {
        font-size: 16px;
    }
    .blog_post > h6{
        text-align: center;
    }
    .newslatter_formdiv {
        padding: 20px 18px 30px;
    }
    .contact_text .font-30 {
        font-size: 26px;
    }
    .contact_text > h6 {
        margin-bottom: 18px;
    }
    .footer_content {
        padding: 36px 0 0;
    }
    .flex_footer {
        margin: 44px 0 40px;
    }
    .footer_ul {
        gap: 7px;
        flex-direction: column;
    }
    .footer_content > h6 {
        font-size: 14px;
    }

    /**************************** contact-us *****************************/
    .newsletter_sec input{
        font-size: 14px;
    }

    /* testimonial Modal style */
    .review_box_mdl .btn-close{
        width: 35px;
        height: 35px;
        transform: translate(8%, -20%);
    }
    .review_box_mdl .modal-header{
        padding: 31px 20px 0px;
    }
    .review_box_mdl .review_box_user_name {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .review_box_mdl .modal-body {
        padding: 26px 20px 30px 16px;
    }
    .review_box_mdl .user_review_text { 
        font-size: 14px;
        line-height: 24px;
    }

    .body_scroll_arrow{
        width: 45px;
        height: 45px;
    }
    .body_scroll_arrow img {
        width: 34px;
    }
}

@media (max-width: 392.98px) {
    .dob_row{
        gap: 2px;
    }
    .font-36 {
        font-size: 22px;
    }
    .dob_textcol .font-19 {
        font-size: 14px;
    }
    .dob_textcol .lh_71 {
        line-height: 50px;
    }
   .dob_select_row {
        gap: 3px;
        margin-top: 20px;
    }
    .dob_btn {
        margin: 26px auto 0;
    }
    .font-48 {
        font-size: 26px;
    }
    .premium_access .font-48 {
        font-size: 22px;
    }
    .premium_access .lh_71 {
        line-height: 32px;
    }
    .premium_access_imgdiv.premium_card::after {
        width: 70px;
        height: 70px;
        background-size: 70px 70px;
    }
    .premium_access_btn {
        margin: 30px auto 0;
    }
    .testimonial_slider {
        padding-top: 18px;
    }
    .newslatter .font-48 {
        font-size: 22px;
    }
    .newslatter .font-28 {
        font-size: 15px;
    }
    .newslatter_formdiv {
        padding: 20px 16px 30px;
    }
    .inputblock label {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .inputblock {
        margin-bottom: 16px;
    }
}

@media (max-width: 365.98px) {
    .header .navbar {
        padding: 12px 12px;
    }
    .banner_title {
        font-size: 30px;
        line-height: 38px;
    }
    .card_imgdiv {
        height: 106px;
    }
    .dob_row{
        padding: 18px 0 30px;
    }
    .dob_img img {
        width: 46%;
    }
    .dob_textcol .lh_71 {
        line-height: 46px;
    }
  
    .font-36 {
        font-size: 20px;
    }
    .font-48 {
        font-size: 24px;
    }
    .premium_access .font-48 {
        font-size: 20px;
    }
    .premium_access .lh_71 {
        line-height: 29px;
    }
    .testimonial_slider {
        padding-top: 6px;
    }
    .review_box_head{
        gap: 14px;
    }
    .user_review_img {
        width: 39px;
        height: 39px;
    }
    .testimonial_slider .slick-dots li button{
        height: 4px;
    }
    .testimonial_slider .slick-dots li button::before{
        height: 4px;
        width: 16px;
    }
    .testimonial_slider .slick-dots li.slick-active {
        width: 26px;
    }
    .testimonial_slider .slick-dots li.slick-active button::before{
        width: 26px;
    }
    .testimonial_slider .slick-dots li {
        height: 4px;
        margin: 0px 3px;
    }
    .testimonial_slider .slick-dots li{
        width: 16px;
    }
    .newslatter {
        padding: 60px 0 40px;
    }
    .newslatter .font-48 {
        font-size: 20px;
    }
    .newslatter .font-28 {
        font-size: 14px;
    }
    .input_checkbox {
        gap: 10px;
        margin: 20px 0 28px;
        align-items: start;
    }
    .input_checkbox .form-check-input {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
        margin-top: 5px;
    }
    .contact_text{
        margin: 0 auto 40px;
    }
    .footer_content > p {
        font-size: 12px;
    }
}