/* 
Theme Name: Snad
Description: Snad: Explore the Unique Way
Author: Bridging Technologies Pvt. Ltd.
*/
* {
    margin: 0;
    padding: 0;
}

html {
    margin-top: 0 !important;
}

body {
    font-family: "Albert Sans", sans-serif;
    overflow-x: hidden;
}

.container-fluid {
    padding: 0;
}

li {
    list-style-type: none;
}

ul,
li {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
}

a:focus,
a:focus-visible,
.btn:focus,
.btn:focus-visible {
    outline: none;
    box-shadow: none;
}

p {
    font-size: 18px;
    margin: 0;
}

/* Button css */
.primary-btn {
    position: relative;
    padding: 10px 24px;
    background: #FFCA4D;
    color: #181818;
    font-weight: 700;
    font-size: 18px;
    border-radius: 28px;
    border: 1px solid #FFCA4D;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.primary-btn:hover,
.primary-btn:focus {
    color: #181818;
}

.primary-btn.black-btn {
    color: #ffffff;
    border: 1px solid #000000;
    background: #000000;
}

.primary-btn.white-btn {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    color: #181818;
}

.primary-btn.arrow-btn {
    padding-right: 48px;
}

.primary-btn.arrow-btn:after {
    content: url("./images/right-arrow.png");
    position: absolute;
    right: 18px;
    top: 12px;
}

/* Button css */

/* header */
.header {
    display: block;
    background: #FFFFFF;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    padding: 18px 0 0;
    position: relative;
    width: 100%;
}

.header.sticky {
    position: sticky;
    width: 100%;
    top: 0;
}

.header .navbar {
    position: relative;
    padding: 0;
}

.header .navbar .navbar-toggler {
    width: 36px;
    height: 32px;
    border-radius: 6px;
    border: solid 1px #BBBCBD !important;
    background-color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.25rem 0.25rem;
    gap: 4px;
}

.header .navbar .navbar-toggler:focus,
.header .navbar .navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: 0;
}

.header .navbar .navbar-toggler .navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.header .navbar .navbar-toggler .toggler-icon {
    width: 20px;
    height: 2px;
    background-color: #959b9f;
    display: block;
    transition: all 0.2s;
    border-radius: 50px;
}

.header .navbar #menuData {
    justify-content: flex-end;
}

.header .navbar .navbar-collapse>div .header_menu_wrapper {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .navbar .navbar-collapse>div .header_menu_wrapper li:last-child a {
    padding-right: 0;
}

.header .navbar .navbar-collapse>div .header_menu_wrapper li a {
    width: 100%;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    padding: 0 16px;
    color: #000000;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.header .close-nav {
    display: none;
}

/* footer */
footer {
    position: relative;
    padding: 80px 0;
}