@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --theme-color: #d6a354;
    --light-theme-color: #fbf7ee;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
}

.section-padding {
    padding: 80px 0px;
}

p,
a,
div,
span,
ul,
li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    line-height: 26px;
    font-size: 16px;
    color: #707070;
    font-family: "Rubik", sans-serif;
}

ul li {
    margin-bottom: 10px;
}

.list-item {
    padding-left: 1rem;
}

.list-item li {
    list-style: circle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
}

a {
    text-decoration: none;
    color: #10181a;
}

a:hover {
    color: var(--theme-color);
    transition-duration: 0.7s;
}

.spacing {
    padding: 70px 0;
}

.main-heading {
    color: #252525;
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
}

.heading-title {
    font-size: 22px;
    color: var(--theme-color);
    font-weight: 600;
}

.sub-heading {
    color: #252525;
    font-weight: 900;
    font-size: 28px;
    text-transform: uppercase;
}

.justify {
    text-align: justify;
}

.bg {
    background: var(--light-theme-color);
}

.heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

/* header css */

.header-social {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-social li {
    margin: 0px 10px;
}
.header-social li a {
    color: #fff;
    transition: 0.3s ease-in-out;
}

header {
    width: 100%;
}

.top-header .top-text {
    color: #fff;
    font-size: 14px;
}

.top-header {
    background: var(--theme-color);
}

.logo {
    width: 7rem;
    height: 7rem;
    object-fit: contain;
}

.slider-section {
    padding: 0 !important;
    margin: 0 !important;
}

.nav-header-bg {
    background: #1f1f1f;
    transition: 0.5s ease-in-out;
}

.navbar {
    width: 100%;
    padding: 0;
}

.navbar-collapse {
    display: flex;
    justify-content: center;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 25px;
    text-transform: uppercase;
    transition-duration: 0.5s;
}

.navbar-nav .nav-item {
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0 !important;
    box-shadow: none;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--theme-color);
}

/* end */

/* slider section  */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url(../images/slider/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.hero-section .heading-section {
    position: relative;
    top: 18%;
}

.hero-section .slider-heading {
    color: #fff;
    font-size: 7rem;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    letter-spacing: 25px;
}

.hero-section .slider-text {
    color: #fff;
    font-size: 22px;
    line-height: 1.5;
}

.theme-btn {
    color: #fff;
    padding: 11px 18px;
    background: var(--theme-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-transform: capitalize;
    transition-duration: 0.5s;
    letter-spacing: 2px;
    display: block;
    width: fit-content;
}

.theme-btn:hover {
    color: #fff;
    background: #1e272d;
}

/* end */

/* why us css */

.why-us-contnet {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    line-height: 1.6;
}

.why-us-contnet p {
    margin-bottom: 10px;
}

.whychoose-outer {
    margin-top: 30px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 20px 40px;
}

.whychoose-points {
    display: flex;
    align-items: center;
    padding: 20px 0px;
    border-bottom: 1px solid var(--theme-color);
    position: relative;
    z-index: 1;
    justify-content: space-between;
}

.whychoose-points:last-child {
    border: none;
}

.whychoose-points .point {
    position: relative;
    z-index: 1;
    width: 40%;
    height: 10rem;
    display: flex;
    align-items: center;
}
.whychoose-points .point span {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--theme-color);
}

.whychoose-points span:nth-child(2) {
    width: 50%;
    flex-grow: 1;
}

.whychoose-points .point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/logo/logo.png);
    background-repeat: no-repeat;
    z-index: -1;
    filter: invert(1);
    opacity: 0.09;
    background-position: center;
}

.whychoose-points .point::after {
    content: "";
    position: absolute;
    right: 29px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 1px;
    z-index: -1;
    background: var(--theme-color);
}

/* end */

/* testimonial Slider */

.our-team .member-card {
    border: none;
    background-position: inherit;
    background-color: #fff;
    border-radius: 0;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.member-card .card-head {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.member-card .card-head::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: var(--theme-color);
}

.our-team .member-card .card-body {
    padding: 0;
}

.our-team .member-card .name-text {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #383838;
    padding: 8px 0 0;
    text-transform: capitalize;
}

.our-team .member-card .designation-text {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #525252;
}

.our-team .member-card .experience-text {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #585858;
}

.our-team .member-card .text {
    padding: 10px;
    text-align: center;
    font-weight: 400;
    font-size: 17px;
    font-family: "Rubik", sans-serif;
    color: var(--theme-color);
}

.our-team .member-card .member-img {
    position: relative;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    height: 140px;
    width: 140px;
    object-fit: cover;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: #fff;
    top: 27px;
    outline: 10px solid #ffffff;
    outline-offset: 2px;
}

/* end  */

/* blog section */

.blog-card {
    padding: 10px;
    background: var(--light-theme-color);
    border: none;
    transition-duration: 0.5s;
}

.blog-card:hover {
    background: #fff;
    box-shadow: 10px 0 60px rgb(31 31 31 / 10%);
}

.blog-card .blog-heading {
    font-family: "Oswald", sans-serif;
    color: #707070;
    font-size: 20px;
    font-weight: 600;
    transition-duration: 0.5s;
}

.blog-card .blog-heading:hover {
    color: var(--theme-color);
}

/* end */

/* menu section */

.menu-sec {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(../images/menu/pricing-plan-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.menu-sec .header-btn {
    width: fit-content;
    margin: auto;
}

.menu-sec .tab-wrap {
    background: #fff;
    margin: 2rem 0;
    padding: 1rem;
}

.menu-sec .main-heading {
    color: #fff;
}

.menu-sec .sub-text {
    color: #fff;
    line-height: 28px;
}

.menu-sec .tab-content .menu-item {
    background: #f9f1e6;
    padding: 16px;
    margin: 2rem;
}

.menu-sec .tab-content .menu-item .menu-price {
    font-size: 30px;
    font-weight: 600;
    color: var(--theme-color);
    font-family: "Oswald", sans-serif;
    height: 100%;
    display: flex;
    align-items: baseline;
}

.menu-sec .tab-content .menu-item .service-wrap {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
}

.menu-sec .nav-link {
    color: #10181a;
    padding: 20px 5px;
    border: 1px solid #d6a37a;
    margin-bottom: 10px;
    border-radius: 0px;
    width: 100%;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    border-radius: 0;
    background: #fff;
}

.nav-pills .nav-link.active {
    color: var(--theme-color);
}

.tab-wrap {
    position: relative;
}

.tab-wrap .nav li button h5 {
    margin: 0;
    font-size: 15px;
}

.tab-wrap .nav {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 19px 0px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 0;
}

.tab-wrap .nav li {
    margin: 0px 10px;
}

/* end */

/* breadcrunb css */

.my-breadcrumb {
    background-image: linear-gradient(to right, #000000c4, #0000006e, #0000007a),
        url(../../assets/images/breadcrumb/banner.jpg);
    background-position: center 59%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 15rem;
    width: 100%;
}

.my-breadcrumb .breadcrumb-heading {
    font-family: Oswald, sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 56px;
    letter-spacing: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-style: normal;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.my-breadcrumb nav li a {
    text-decoration: none;
    color: var(--theme-color);
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.my-breadcrumb nav li a:hover {
    color: #fff;
}

.my-breadcrumb .breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}

/* end */

/* service page men/women css */

.service-img-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

/* end */

/* Contact us css */

.contact-info {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form-control {
    border-radius: 0;
    padding: 12px;
    border: 1px solid var(--theme-color);
    font-size: 16px;
    color: var(--theme-color);
}

textarea {
    resize: none;
}

.contact-form .form-control:focus {
    border: 1px solid #525252 !important;
    box-shadow: none !important;
}

.contact-info .info-box {
    display: flex;
}

.contact-us .contact-info .info-box {
    color: var(--theme-color);
    padding: 1rem;
    margin-bottom: 0rem;
    border-radius: 3px;
}

.contact-info .contact-box {
    background-color: #fff;
    width: fit-content;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border: none;
}

.contact-head {
    margin-bottom: 35px;
}

.contact-heading {
    font-size: 28px;
    color: var(--theme-color);
}

.contact-us .contact-info .info-box .location-info .heading {
    font-size: 24px;
    color: #252525;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
}

.contact-us .contact-info .info-box .location-info p {
    font-size: 16px;
}

.contact-us .contact-info .info-box .location-info {
    padding: 0px 20px;
}

.contact-us .contact-info .info-box i {
    font-size: 2rem;
    padding-top: 2px;
    height: fit-content;
    width: fit-content;
}

.contact-us .contact-info .info-box .location-info a {
    text-decoration: none;
    color: #707070;
}

/* end */

/* about location */
.about-location img {
    margin: 1rem 0;
}

.about-location .text {
    text-align: justify;
    margin: 1rem;
}

/* end */

/* location section */

.location-card {
    padding: 10px;
    margin: 2rem 0;
    background: var(--light-theme-color);
    border: none;
    transition-duration: 0.5s;
}

.location-card:hover {
    background: #fff;
    box-shadow: 10px 0 60px rgb(31 31 31 / 10%);
}

.location-card .blog-heading {
    font-family: "Oswald", sans-serif;
    color: #707070;
    font-size: 20px;
    font-weight: 600;
    transition-duration: 0.5s;
}

.location-card .blog-heading:hover {
    color: var(--theme-color);
}

.location-card .location-btn {
    margin-top: 20px;
}

.location-card .readmore-btn {
    color: #1f1f1f;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    transition-duration: 0.5s;
    border: 1px solid;
    padding: 4px;
}

.location-card .readmore-btn:hover {
    color: var(--theme-color);
    padding-left: 10px;
}

/* css */

/* footer css  */

.app-icon {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.app-icon li {
    margin-right: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
    padding: 10px;
    background: linear-gradient(
        227deg,
        rgb(209 162 77 / 76%) 0%,
        rgb(209 162 77 / 13%) 100%
    );
    backdrop-filter: blur(3px);
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
}
.app-icon li:hover img {
    transform: scale(1.1);
}
.app-icon li img {
    max-width: 130px;
    filter: brightness(7);
    object-fit: contain;
    transition: 0.3s all ease-in-out;
    object-fit: contain;
}

.footer-widge {
    background: url(../images/footer/footer-bg.png);
    background-color: #1f1f1f;
    padding: 50px 0px;
}

.footer-widge .adderess {
    justify-content: center;
}

.footer-widge .footer-text {
    color: #fff;
    font-size: 17px;
    padding: 7px 2rem;
    line-height: 26px;
}

.footer-widge .heading {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-logo {
    width: 10rem;
    margin: 2rem 0 0 15px;
    object-fit: contain;
}

.footer-widge .link-list li {
    display: flex;
    align-items: baseline;
}

.footer-widge .link-list li i {
    color: var(--theme-color);
    font-size: 18px;
}

.footer-widge .link-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding-left: 10px;
    transition-duration: 0.5s;
}

.footer-widge .link-list li a:hover {
    color: var(--theme-color);
}

.copyright-sec {
    background: #1e272d;
    padding: 15px;
}

.copyright-sec .copyright-text {
    color: #fff;
    padding: 0 2rem;
    font-size: 15px;
    text-align: center;
}

.copyright-text .company-name {
    color: var(--theme-color) !important;
}

.footer-widge .social-contact {
    margin-top: 20px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}

.footer-widge .social-contact li a i {
    color: #fff;
    font-size: 32px;
    transition-duration: 0.5s;
}

.footer-widge .social-contact li a i:hover {
    color: var(--theme-color);
}

.footer-widge .fa-circle {
    font-size: 7px !important;
    position: relative;
    top: -3px;
}

.footer-widge .timing-text {
    color: #fff;
    padding-left: 10px;
    font-size: 16px;
}

.footer-widge .circle-ico {
    padding-top: 10px;
}

.whatsapp {
    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00e676;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 3px;
    transition: 0.4s ease-in-out;
}

.whatsapp:hover {
    transform: scale(0.7);
}

.whatsapp i {
    font-size: 30px;
    color: #ffffff;
    display: flex;
}

/* end */

/* testimonial */

.testimonial-section .flickity-slider {
    display: flex;
    align-items: center;
}

.flickity-prev-next-button.next:hover {
    background: #f8e74c;
    color: #10181a;
}

.flickity-prev-next-button.previous {
    left: -1rem !important;
    background: #0000008c;
    color: #fff;
    transition-duration: 0.5s;
}

.flickity-prev-next-button.previous:hover {
    background: #f8e74c;
    color: #10181a;
}

.testimonial-section .carousel .owl-items .user-des h4 {
    color: var(--theme-color);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 900;
    font-family: "Oswald";
    margin-bottom: 15px;
}

.testimonial-section .carousel .owl-items .user-des {
    display: flex;
    flex-flow: column;
}

.testimonial-section .carousel .owl-items .staff-img-wrap {
    display: flex;
    align-items: center;
}

.testimonial-section .carousel .owl-items .staff-img-wrap img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-right: 40px;
    object-fit: cover;
}

.testimonial-section .carousel .owl-items .user-des h6 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
}

.testimonial-section .carousel .owl-items .user-des .about-staff {
    color: #1f1f1f;
    font-size: 15px;
}

.testimonial-section .carousel .owl-items .text {
    color: #000;
    padding: 0 2em;
    font-size: 18px;
}
.staff-content .about-staff {
    overflow: hidden;
    height: 10rem;
    width: 92%;
    text-align: center;
}

/*=========== end ========= */

/* blog start */

.blog-arrows {
    display: flex;
    justify-content: center;
}
.blog-arrows a {
    margin: 0px 10px;
}

/*=========== Mens page css ========= */
.why-haircut .service-img-wrap img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.call-to-action .header-btn {
    margin-top: 10px;
}

.call-to-action {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.cta-bg {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: #fff;
    padding: 25px 30px;
    width: 100%;
    height: fit-content;
}

.call-to-action p {
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 10px;
}

.call-to-action .header-btn {
    margin-top: 20px !important;
}

.call-to-action .main-heading {
    margin-bottom: 20px;
}

.call-to-action .heading-title {
    margin-bottom: 20px;
}

.price-card {
    text-align: center;
    position: relative;
    z-index: 9;
    padding: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    height: 100%;
}

.price-card .card-header {
    text-align: center;
    border-radius: 0;
    background: 0;
    border-bottom: 0;
}

.price-card .card-body {
    padding: 0;
}

.price-card .card-header {
    z-index: 1;
    position: relative;
}
.price-card .card-header img {
    height: 50px;
    width: 50px;
}

.price-card .card-header:before {
    background-color: #fff3d4;
    border-radius: 50%;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 1;
    position: absolute;
    transition: all 0.8s ease;
    height: 70px;
    width: 70px;
    z-index: -1;
}

.price-card .card-body h5 {
    font-size: 20px;
    margin: 10px 0;
}

.price-card .card-body .price {
    font-size: 18px;
    color: var(--theme-color);
}

.cta-wrap.women {
    padding: 80px 0px;
    background: url(../images/womens/women-cta.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cta-wrap.men {
    padding: 80px 0px;
    background: url(../images/mens/cta-men.jpg);
    background-repeat: no-repeat;
    background-position: center 66%;
    background-size: cover;
}

.cta-content {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.cta-content h4 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
    line-height: 1.5;
}

/*=========== end ========= */

.intl-tel-input {
    width: 100%;
}

.otp-btn {
    background-color: var(--theme-color);
    color: #fff;
    position: absolute;
    right: 0;
    padding: 12px 55px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    justify-content: center;
    border: none;
}

button {
    border: none;
}

#testimonial-carousel .owl-items {
    padding: 2rem;
    background-color: #fff;
}

.owl-nav {
    position: absolute;
    width: fit-content;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -39px;
}

.owl-nav.disabled {
    display: block !important;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff !important;
    background: var(--theme-color) !important;
    margin: 0px 5px;
    transition: 0.5s ease-in-out;
}

.owl-nav button:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.owl-nav button span {
    color: #fff !important;
    font-size: 27px;
}

#testimonial-carousel .owl-items.is-selected {
    transition: 0.3s ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    z-index: 1000;
}
#testimonial-carousel .flickity-viewport {
    height: 400px !important;
}

.cta-outer-wrap {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.5s ease-in-out;
}

.form-aside .contact-form {
    padding: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: #fff;
}

.contact-form .form-control {
    border: 1px solid #b1b1b152;
}

.contact-form .form-control:focus {
    border: 1px solid var(--theme-color) !important;
}

.contact-bg {
    position: relative;
    z-index: 1;
}
.contact-bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../images/contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.6;
    filter: invert(1);
}

/* pirvacy-poslicy */

.privacy-heading {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 25px;
    font-family: "Oswald", sans-serif;
}

/*................................
          media query
................................*/

@media screen and (max-width: 1199.98px) and (min-width: 992px) {
    .tab-wrap .nav li {
        margin: 0 2px;
    }
    .tab-wrap .nav li button h5 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991.5px) {
    .privacy-heading {
        font-size: 20px;
    }
    .why-choose-img {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    p,
    a,
    div,
    span,
    ul,
    li {
        font-size: 15px;
    }

    .whychoose-points .point {
        width: 45%;
    }

    .whychoose-outer {
        padding: 20px 25px;
    }

    .whychoose-points .point span {
        font-size: 16px;
    }

    ::-webkit-scrollbar {
        height: 5px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #f0e9e9fc;
        border-radius: 5px;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #7a6139;
        border-radius: 0px;
    }

    .tab-wrap .nav {
        margin: 0;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        grid-column-gap: 1rem;
        align-items: center;
    }
    .tab-wrap .nav li {
        margin: 0 !important;
    }
    .menu-sec .nav-link {
        width: 12rem;
        margin: 0;
    }
    .menu-item .service-img-wrap {
        display: flex;
        justify-content: center;
    }
    .menu-sec .tab-content .menu-item .service-wrap {
        text-align: center;
    }

    .hero-section .slider-heading {
        font-size: 3rem;
        letter-spacing: 12px;
    }
    .logo {
        margin-left: 0 !important;
    }
    .top-header {
        display: none;
    }
    .navbar-nav .nav-item .nav-link {
        padding: 6px;
    }
    .navbar-nav {
        margin-bottom: 2rem;
    }
    .navbar-toggler {
        color: #fff;
        background-color: #fff;
        position: relative;
        right: 2rem;
        border-radius: 3px;
    }
    .footer-widge .copyright-sec .copyright-text {
        padding: 0;
        font-size: 12px;
        text-align: center;
        float: none !important;
    }
    .footer-widge .copyright-sec .copyright-text .company-name {
        font-size: 12px;
    }
    .service-img-wrap {
        padding-bottom: 20px;
    }
    .section-padding {
        padding: 40px 0px;
    }
    .main-heading {
        font-size: 34px;
    }
    .blog-card {
        margin: 1rem 0;
    }
    .blog-card .blog-heading {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767.5px) {
    .contact-info .contact-box {
        margin: 1rem 0;
    }

    .whychoose-points .point::before {
        display: none;
    }

    .whychoose-points .point::after {
        display: none;
    }

    .whychoose-points::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(../images/logo/logo.png);
        background-repeat: no-repeat;
        z-index: -1;
        filter: invert(1);
        opacity: 0.09;
        background-position: center;
    }

    .whychoose-points {
        flex-flow: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .whychoose-points .point {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: fit-content;
        margin-bottom: 20px;
    }

    .whychoose-points span:nth-child(2) {
        width: 100%;
    }

    .hero-section .slider-text {
        font-size: 18px;
    }
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url(../images/slider/hero-bg.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 100vh;
    }
    .my-breadcrumb {
        padding: 2rem;
    }

    .theme-btn {
        font-size: 14px;
    }
    .cta-content h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (min-width: 991.5px) {
    .navbar-expand-lg .navbar-nav {
        margin: 0 !important;
        flex-grow: 1;
        justify-content: center;
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end;
    }
}

@media (min-width: 990.5px) and (max-width: 1200.5px) {
    .header-btn .theme-btn {
        padding: 15px 8px;
    }

    .logo {
        margin-left: 0rem;
    }
}

@media screen and (max-width: 575.98px) {
    .privacy-heading {
        font-size: 18px;
    }
    .main-heading {
        font-size: 27px;
    }
    p,
    a,
    div,
    span,
    ul,
    li {
        font-size: 13px;
    }
    .our-team .member-card .name-text {
        font-size: 25px;
    }
    .our-team .member-card .designation-text {
        font-size: 18px;
    }
    .our-team .member-card .text {
        font-size: 14px;
    }
    .contact-us .contact-info .info-box .location-info .heading {
        font-size: 20px;
    }
    .contact-us .contact-info .info-box i {
        font-size: 1.6rem;
    }

    .theme-btn {
        padding: 15px;
        font-size: 12px;
    }
    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        font-weight: 600;
    }
    .cta-content h4 {
        font-size: 20px;
    }
    .cta-wrap {
        background-position: right !important;
        padding: 38px 0px !important;
    }
    .contact-us .contact-info .info-box .location-info p {
        font-size: 14px;
    }
}

.otp-btn {
    z-index: 9;
}
