@import url('https://fonts.googleapis.com/css2?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=Lora:ital,wght@0,400..700;1,400..700&family=Noto+Serif:ital,wght@0,100..900;1,100..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');
@import url('https://fonts.googleapis.com/css2?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=Lora:ital,wght@0,400..700;1,400..700&family=Noto+Serif:ital,wght@0,100..900;1,100..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');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

:root {
    --color-white: white;
    --color-black: black;
    --color-darkBlue: #393536;
    --color-blue: #ec4357;
    --font-lora: "Lora", serif;
}

.container,
.container-fluid {
    padding: 0px;
}

.row {
    margin: 0px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    padding: 0px;
}

li,
a {
    list-style: none;
    text-decoration: none;
}

ul {
    margin: 0px;
    padding: 0px;
}

.flex_prop {
    display: flex;
    align-items: center;
}

p {
    margin-bottom: 0px;
}

.black {
    color: var(--color-black);
}

.white {
    color: var(--color-white) !important;
}

.font_13 {
    font-size: 13px;
}

.font_14 {
    font-size: 14px;
}

.font_15 {
    font-size: 15px !important;
}

.bg_props {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.fw-500 {
    font-weight: 500;
}

.margin_top {
    margin-top: 60px;
}

.color-light {
    opacity: 0.7;
}

.relative {
    position: relative;
}

img {
    width: 100%;
}
/*header*/

.logo_img img{
    height: 55px;
    width: auto;
}
.nav_header{
    padding: 10px 25px;
    background-color: rgba(255,255,255,1); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav_cust ul{
    display: flex;
    align-items: center;
    gap: 45px;
}
.line_span{
    width: 15px;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 50px;
    display: none !important;
}
.nav_cust ul li a{
    color: var(--color-black);
}
.nav_btns a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-black);
}
.num_call{
    font-weight: 700;
    font-size: 22px;
    font-family: var(--font-lora);
}
.nav_img{
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-darkBlue)
}
.nav_img img{
    height: 30px;
    width: auto;
}
.hero_section{
    position: relative;
    height: 100%;
    padding-top: 9rem;
    padding-bottom: 7rem;
    width: 100%;
    background-image: url("../imgs/bg3.png");
    z-index: 1;
}
.sub_header{
    padding: 13px 0px;
}
.hero_section::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.2),rgba(0,0,0,0.8));
    z-index: -1;
}
.banner_title{
    font-size: 35px;
    font-weight: 600;
    font-family: var(--font-lora);
    color: var(--color-white);
    text-transform: uppercase;
    font-style: italic;
}
.banner_para{
    font-size: 15px;
    font-weight: 600;
    background-color: var(--color-blue);
    color: black;
    border-radius: 50px;
    display: inline-flex;
    padding: 4px 20px;
    margin-bottom: 6px;
}
.sub_header{
    background-color:#fffaf2;
    padding: 7px 0px;
}
.sub_content2 img{
    height: 25px;
    width: auto;
}
/*Footer*/
.footer {
   border-radius: 50px 50px 0px 0px;
}

.margin_top2 {
    margin-top: 120px
}

.loc_container {
    gap: 10px
}

.loc_img {
    background-color: var(--color-white);
    width: 55px;
    height: 55px;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, .2)
}

.loc_container .loc_content {
    width: calc(100% - 55px)
}

.loc_img img {
    height: 32px;
    width: auto
}

.loc_content p {
    font-size: 15px;
    font-weight: 500
}

.line_l {
    height: 60px;
    width: 1px;
    background-color: rgba(0, 0, 0, .5);
    margin: 0 20px
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.social_links {
    gap: 12px
}

.social_links li a {
    width: 35px;
    height: 35px;
    background-color: var(--color-blue);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px
}

.loc_content a {
    color: var(--color-black);
    font-weight: 500;
    display: inline-flex
}

.footer_hr {
    margin: 15px 0
}

.footer_logo img {
    height: 65px;
    width: auto
}

.con_btn {
    background-color: var(--color-black);
    color: var(--color-white);
    width: 100%
}

.footer_title {
    font-size: 20px
}
.fw-600{
    font-weight: 700;
}
.footer_ul {
    gap: 6px
}

.footer_ul li a {
    color: var(--color-black);
    font-size: 15px;
}

.footer_ul_cust_h li a {
    font-weight: 500
}
footer{
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.supp_f {
    gap: 20px
}

.sup_img img {
    height: 25px;
    width: auto
}

.pay_img img {
    height: 20px;
    width: auto
}

.payments_img {
    gap: 10px
}

.gg-15 {
    gap: 15px
}

.note_c {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 6px
}

.copy_right {
    background-color: var(--color-black)
}
.table_cust table{
    width: 100%;
    margin-top: 10px;
    border: 1px solid rgba(0,0,0,0.2);
}
.table_cust table tbody tr:nth-child(odd){
    background-color: #eee;
}
.table_cust table thead{
    background-color: var(--color-blue);
    color: white;
}
.table_cust table th,.table_cust table td{
    padding: 13px;
     border: 1px solid rgba(0,0,0,0.2);
} 
.cont_td{
    display: flex;
    justify-content: space-between;
}
.bg_about{
    background-color: #eee;
}
.ul_list{
    padding-left: 25px;
}
.ul_list li{
    margin: 7px 0px;
    list-style: disc;
}
 .book_t{
    font-weight: 800;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
    font-size: 38px;
    -webkit-text-stroke: 1px var(--color-white);
    text-transform: uppercase;
   }
   
   .call_fixedd{
    color: var(--color-white);
    background-color: #FE5A03;
    padding: 10px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;
    display: none;
}
.big_fixedd{
    font-size: 27px;
    font-weight: 600;
}
.call_fixedd img{
    height: 70px;
    width: auto;
}
.call_fixedd_semi{
    border: 1px dashed rgba(255,255,255,0.6);
    padding: 7px 0px;
}
.book_fixeed{
    font-weight: 500;
    font-size: 15px;
}