@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler .navbar-toggler-icon:focus,
.navbar-toggler-icon {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

.color1 {
    color: #E03500;
}

.btn1 {
    background-color: #E03500;
    font-family: "Anton", sans-serif;
    padding: 7px 35px;
    font-size: 37px;
    color: white;
    position: absolute;
    top: 32%;
    transition: all 0.5s ease;
    border: 1px solid transparent;
}

.btn1:hover {
    color: white;
}

section.form_box {
    background-image: url(../images/landing_page_bg1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

section.form_box .card {
    /* background-color: rgba(204, 158, 6, 0.493); */
    background-color: #e03500ad;
    box-shadow: 0 0 10px #efb25c;
    padding: 20px;
    backdrop-filter: blur(6px);
}

.offcanvas {
    --bs-offcanvas-height: auto;
}

.offcanvas-body {
    overflow-y: auto;
    overflow-x: hidden;
}

.btn_off {
    width: 100%;
    background-color: #E03500;
    color: white;
    font-weight: 500;
    font-size: 17px;
    opacity: 1;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: inherit;
}

.form-check-input:focus {
    box-shadow: none;
}

/************************take the css from here */

section.loc_table {
    background-image: url(../images/location_bg-01.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    flex-direction: column; */
}

section.loc_table .table_div thead {
    background-color: #ffffffab;
    color: black;
}


section.loc_table .table {
    border: 1px solid white;
    color: white;
    table-layout: auto;
}

section.loc_table .table>:not(caption)>*>* {
    border-right: 1px solid white;
    vertical-align: middle;
    padding: 9px 10px;
}

/************** ladning page */
section.landing_page {
    background: url(../images/landing_page_bg1.jpg) no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.insta_page {
    background: url(../images/instagram-ad-mockup.png) no-repeat center center;
    background-size: contain;
    height: 100vh;
    display: block;
}

section.location .card-img-overlay {
    background-color: white;
    top: auto;
}

.offcanvas_ul li {
    list-style: disc;
    margin-left: 1.2rem;
}

.location_icn i {
    width: 41px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #efb25c;
    border: 1px solid #efb25c;
    font-size: 21px;
    border-radius: 50%;
}

@media only screen and (max-width: 600px) {
    section.loc_table .table_div {
        overflow-x: scroll;
    }
}