@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Questrial&family=Roboto+Condensed&family=Sarabun&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
    background: #f6f6f6;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: red;
}

h1 {
    font-family: 'Sarabun', sans-serif;
    font-size: 2.1rem;
    color: #110c40;
}

.tour-heading span {
    color: rgb(225, 82, 31);
}

/*========================Header Start===========================*/
.header-top {
    padding: 1rem 0;
    /* background: #EEFAFA; */
    background-color: #F7EEEE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top a {
    color: #0a062b;
    font-size: 1.2rem;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0 10rem;
}

.header-top a:hover {
    color: red;
}

.header-top a .fa-solid {
    color: #110c40;
}

nav {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    /* background-color: #F7EEEE; */
    background: #EEFAFA;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

nav .navbar {
    max-width: 1200px;
    height: 100%;
    /* background: #F7EEEE; */
    background: #EEFAFA;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

nav .navbar .logo img {
    height: 3rem;
    width: 10rem;
}

nav .navbar .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100%; */
    line-height: 6.1rem;
}

nav .navbar .nav-links .links {
    display: flex;
}

nav .navbar .nav-links .links li {
    position: relative;
    display: flex;
    list-style: none;
    padding: 0 12px;
    z-index: 9999;
}

nav .navbar .nav-links .links li a {
    color: rgb(0, 0, 0);
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
}

nav .navbar .nav-links .links li a:hover {
    color: #312479;
}

nav .navbar .nav-links .links li .arrow {
    height: 100%;
    width: 1.2rem;
    text-align: center;
    color: black;
    display: inline-block;
    line-height: 6rem;
    transition: all .3s ease;
}

nav .navbar .nav-links .links li:hover .dropdown {
    transform: rotate(180deg);
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 89px;
    left: 0;
    line-height: 2rem;
    background: #F7EEEE;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
}

nav .navbar .links li:hover .dropdown-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu li a {
    color: rgb(66, 44, 44);
    font-size: 1rem;
    font-weight: 500;
}

.navbar .links li .sub-menu li a:hover {
    color: red;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 2.6rem;
    text-align: center;
    font-size: 22px;
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #F7EEEE;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.navbar.showInput .search-box .input-box {
    top: 71px;
    opacity: 1;
    pointer-events: auto;
    background: #F7EEEE;
    z-index: 9999;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #F7EEEE;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
    z-index: 9999;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

/*========================Header End===========================*/


.whatsapp {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    text-align: right;
    z-index: 34;
}

.whatsapp-img {
    width: 3.4rem;
    cursor: pointer;
}

/*====================Creating Sticky Navbar===================*/
.sticky .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* .sticky .header {
    margin-top: 10rem;
} */

/*====================End Sticky Navbar=========================*/


/*==========================Hero Section Start============================*/

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.text {
    position: relative;
    bottom: 3.5rem;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 600;
    font-family: 'Questrial', sans-serif;
    width: 100%;
    text-align: center;
    background-color: #0a062b;
    opacity: .7;
}


.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    color: #110c40;
    width: 2.8rem;
}

.swiper-button-prev,
.swiper-button-next {
    font-weight: 500;
    margin: 0 -1.1rem;
}

/*==========================Hero Section End============================*/

/* =====================Searcbar Second Start===========================*/
.search-bar {
    background-color: rgb(238, 250, 250);
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar {
    width: 46%;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 6rem;
    padding: .6rem 2rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.bar input {
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    font-size: 1.2rem;
    color: #110c40;
}

::placeholder {
    color: #9a9aa3;
}

.bar button .fa-solid {
    width: 2.2rem;
    font-size: 1.2rem;
}

.bar button {
    border: 0;
    cursor: pointer;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: rgb(238, 250, 250);
}

/* =====================Searcbar Second End===========================*/


/*========================Start Tour And Destination details=====================*/
.destination1 {
    /* height: 48rem; */
    height: auto;
    background: #f7eeee;
}

.destination2 {
    background-color: #f6f6f6;
    /* height: 48rem; */
    height: auto;
}

.packages {
    max-width: 1200px;
    width: 80%;
    margin: auto;
}

.tour-heading {
    padding: 3rem 0;
    text-align: center;
}

/* .package-detail {
    display: flex;
    gap: 1rem;
} */

.column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tours {
    position: relative;
    border: 3px solid rgb(0, 0, 0);
    /* border-radius: 5.5px; */
    padding: .5rem;
}

.tours img {
    /* display: block; */
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
    transition: .9s ease;
}

.tours:hover {
    transform: translateY(-.2rem);
    transition: all .3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s ease;
    /* background-color: #c5c5e0; */
    background-color: #ac94fd;

    cursor: pointer;
    /* border-radius: 4px; */
}

.text-block {
    position: absolute;
    bottom: 9px;
    right: 50px;
    left: 50px;
    background-color: black;
    color: white;
    padding: .8rem 0;
    border-radius: 4px;
}

.text-block p {
    text-align: center;
}

.tours:hover .overlay {
    opacity: 0.8;
}

.common {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Sarabun', sans-serif;
}

.btn-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding-bottom: 3.5rem;
}

.button {
    padding: .4rem .8rem;
    color: #110c40;
    background-color: #f6f6f6;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    border: 3px solid #110c40;

}

.button:hover {
    color: #f6f6f6;
    background-color: #110c40;
    transform: translateY(.2rem);
    box-shadow: 0px 20px 20px 0px rgb(186, 191, 201);
    transition: all .3s ease;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;

}

/*========================End Tour And Destination details=====================*/


/*========================Testimonial Section Start=====================*/
.testimonial {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-container {
    max-width: 1120px;
    width: 100%;
    /* background-color: grey; */
    height: 30rem;
}

.slide-content {
    margin: 4rem 40px;
    overflow: hidden;
    /* background-color: red; */
    border-radius: 25px;
    height: 23rem;
}

.card {
    /* width: 32rem; */
    width: 24rem;
    border-radius: 25px;
    background-color: #f7eeee;
    border: 1px solid #110c40;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.4rem;
}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.overlay-testimonial {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #272560;
    border-radius: 25px 25px 0 25px;
}

.overlay-testimonial::before,
.overlay-testimonial::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -4rem;
    height: 4rem;
    width: 0rem;
    background-color: #6a63d1;
}

.overlay-testimonial::after {
    border-radius: 0 25px 0 0;
    background-color: #f7eeee;
}

.card-image {
    position: relative;
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    background: #f7eeee;
    padding: 3px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* border: 4px solid #6a63d1; */
}

.name {
    font-size: 1rem;
    font-weight: 600;
    color: black;
}

.description {
    font-size: 1rem;
    color: #110b49;
    text-align: center;
}

/*========================Testimonial Section End=====================*/

.packages-head {
    text-align: center;
}

/*========================Gallery Section End========================*/
.gallery-container {
    background-image: url(images/gallery/gallery-back2.avif);
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}

.gallery-container .heading {
    width: 50%;
    padding: 60px 0;
}

.gallery-container .heading h3 {
    color: rgb(219, 227, 230);
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    /* border-bottom: 3px solid #EEFAFA; */
}

.gallery-container .heading h3 span {
    color: rgb(255, 138, 95);
    font-weight: 100;
    font-family: 'Roboto Condensed', sans-serif;
}

.gallery-container .box {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 5rem;
}

.gallery-container .box .dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

.gallery-container .box .dream img {
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}

.gallery-container .box .dream img:hover {
    transform: perspective(50px) translateZ(2px);
}

/*========================Gallery Section End========================*/

/*========================Contact Section Start========================*/
.contact {
    height: auto;
}

.section-contact-main {
    max-width: 700px;
    width: 80%;
    margin: 0 auto;
    align-items: center;
    padding-bottom: 3rem;
}

.section-contact-main form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.section-contact-main input,
.section-contact-main textarea {
    padding: 1rem 2rem;
    border: .1rem solid #110c40;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.section-contact-main input[type="submit"] {
    max-width: 25%;
    border: 3px solid #110c40;
}

/*========================Contact Section End=====================*/


/*=========================About Us Start================================*/
.about {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
}

.about h1 {
    font-size: 3rem;
    text-align: center;
    color: #292828;
    margin-bottom: 1rem;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

/*=========================About Us End==================================*/


/*========================Footer Section Start=====================*/

.footer {
    margin-top: 4rem;
    background-color: #f7eeee;
    /* height: 8.linksvh; */
}

.footer .box-container {
    max-width: 1200px;
    width: 80%;
    margin: auto;
    border: 0px solid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.footer .box-container .box .social-icon a {
    border: 0px solid;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: .2rem;
    font-size: 1.3rem;
    color: #110b49;
    margin-left: .4rem;
    background: #dbd7d7;
    text-align: center;
    padding: .5rem;
}

.footer .box-container .box .social-icon a:hover {
    background-color: #990000;
    color: #dbd7d7;
}

.footer .box-container .box h3 {
    margin-top: 1.2rem;
    font-size: 1.8rem;
    font-family: 'Sarabun', sans-serif;
    color: #110c40;
    padding: 1.2rem 0;
}

.footer .box-container .box .links {
    display: block;
    font-size: 1rem;
    color: #990000;
    padding: 1rem 0;
}

.footer .box-container .box .links i {
    color: #110c40;
    padding-right: .5rem;
}

.footer .box-container .box .links:hover i {
    padding-right: 1rem;
}

.footer .box-container .box p {
    line-height: 1.8rem;
    font-size: 1rem;
    color: #990000;
    padding: 1rem 0;
}

.footer .box-container .box .email {
    width: 100%;
    /* margin: .7rem 0; */
    padding: .5rem;
    border-radius: .3rem;
    background: #dbd7d7;
    border: none;
    font-size: 1rem;
    color: black;
    text-transform: none;
    margin-bottom: 1.4rem;
}

.footer .box-container .box .pay-image {
    width: 100%;
    height: 6rem;
    margin-top: .4rem;
    border-radius: .3rem;
}

.footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    padding-top: 2.1rem;
    font-size: 1.2rem;
    color: black;
    font-family: 'Sarabun', sans-serif;
    border-top: #110b49 3px solid;
}

.footer .credit span {
    color: #990000;
    font-family: 'Roboto Condensed', sans-serif;
}

/*========================Footer Section End========================*/


/*=====================Scroll styling start=========================*/
.scrollTop-style {
    position: fixed;
    left: 2rem;
    bottom: 3rem;
    z-index: 1;
}

.scroll-top {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 10px;
    background: #2AB318;
    display: inline-block;
    padding: 12px;
    position: relative;
    color: white;
    cursor: pointer;
}

/*========================Scroll Section End=====================*/

.static {
    margin-bottom: 2rem;
}

.static-img img {
    width: 100%;
    object-fit: cover;
}

.specific {
    background-color: #F7EEEE;
    margin-bottom: 3rem;
}

.specific-grid {
    max-width: 1200px;
    width: 80%;
    margin: auto;

}

.specific-column {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.left-brief {
    padding: 2rem 0;
}

.accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin: 1rem 0;
    border-bottom: 1px solid #faabab;
}

.accordion-header {
    background-color: #fff;
    color: #333;
    cursor: pointer;
    /* font-weight: bold; */
    line-height: 2rem;
    padding: 10px;
}

.accordion-header::before {
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

.accordion-content {
    padding: 10px;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header::before {
    content: '-';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

.accord-item {
    border: 1px solid #faabab;
    margin: 1rem 0;
    padding: 1rem 0;
    background: #fff;
}

.accord-header h4 {
    /* line-height: 2rem; */
    margin-left: .8rem;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: bold;
}

.accord-item p::before {
    content: '•';
    margin: 0 16px;
    font-size: 14px;
    font-weight: 600;
}

.accord-item p {
    font-size: 14px;
    /* padding: 0 10px; */
    margin: 5px 10px;
    text-align: justify;
}

.quick-form {
    /* width: 100%; */
    height: 84vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.quick-form form {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    /* width: 80%; */
    max-width: 600px;
}

.quick-form form h3 {
    color: #b90505;
    font-weight: 800;
    margin-bottom: 10px;
}

.quick-form form input,
form textarea {
    border: 0;
    margin: 10px 0;
    padding: 10px;
    outline: none;
    background: #ebeaea;
    font-size: 14px;
}

.quick-form form button {
    cursor: pointer;
    width: 100px;
    margin: 20px auto 0;
}

.right-brief {
    margin-top: 1rem;
}


/* ----------------------------------------------------------------------------------------------------------------------------
@media queries Started
-------------------------------------------------------------------------------------------------------------------------------*/

@media (max-width:1280px) {
    .logo img {
        height: 2.8rem;
        width: 7rem;
    }

    .text {
        font-size: 50px;
    }

    .packages {
        overflow: hidden;
        width: 0 auto;
    }

    .tours img {
        width: 100%;
        height: 100%;
        /* width: 20.2rem;
        height: 13rem; */
    }

    .overlay {
        width: 100%;
        height: 100%;
        /* width: 20.2rem;
        height: 13rem; */
    }

}


@media (max-width: 800px) {
    .header-top a {
        margin: 0 2rem;
    }

    nav .navbar .nav-links {
        /* height: 800px; */
        display: block;
        position: fixed;
        top: 8%;
        left: -100%;
        max-width: 468px;
        width: 100%;
        background: #F7EEEE;
        z-index: 9999;
        padding: 20px;
        line-height: 40px;
        transition: all .4s ease;
    }

    nav .navbar .nav-links .sidebar-logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links .sidebar-logo img {
        height: 2rem;
    }

    .navbar .bx-menu,
    .nav-links .sidebar-logo .bx-x {
        font-size: 25px;
        font-weight: 600;
    }

    .navbar .bx-menu,
    .nav-links .sidebar-logo img,
    .nav-links .sidebar-logo .bx-x {
        display: block;
    }

    nav .navbar .nav-links .links {
        display: block;
        margin-top: 20px;

    }

    nav .navbar .nav-links .links li {
        display: block;
    }

    .navbar .nav-links .links .sub-menu {
        display: none;
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
    }

    .navbar .nav-links .links .sub-menu li {
        border-bottom: none;
    }

    nav .navbar .links li:hover .dropdown-sub-menu {
        display: block;
    }

    nav .navbar .nav-links .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .nav-links .links li:hover .dropdown {
        transform: rotate(0deg);
    }

    .navbar .nav-links.show1 .links .sub-menu{
        display: block;
    }
    

    .column {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .box-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .box-container .box h3 {
        font-size: 1.5rem;
    }

    .footer .credit {
        font-size: 1rem;
    }

    .text {
        bottom: 1.7rem;
        font-size: 1.4rem;
    }

    .gallery-container {
        /* background-size: 200%; */
        background-size: cover;
        padding: 0 1.2rem;
    }

    .gallery-container .box {
        flex-direction: row;
    }

    .gallery-container .box .dream {
        width: 100%;
    }

    .specific-column {
        grid-template-columns: repeat(1, 1fr);
    }

    .about h1{
        font-size: 2rem;
      }
    .about p{
        font-size: 1rem;
      }
      
    .whatsapp img {
        width: 44px;
        height: 44px;
    }
    
    .scroll-top {
        width: 25px;
        height: 24px;
        border-radius: 5.5px;
        padding: 9px;
    }  
    
}


@media (max-width:480px) {
    .header-top {
        padding: 1rem 0;
        background: #EEFAFA;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-top a {
        font-size: 1rem;
        margin: 0 .8rem;
    }

    nav .navbar .nav-links {
        top: 0%;
        max-width: 310px;
    }

    .whatsapp {
        right: .5rem;
    }

    .whatsapp img {
       width: 38px;
       height: 38px;
    }

    .scrollTop-style {
        left: .5rem;
    }

    .scroll-top {
        width: 19px;
        height: 18px;
        border-radius: 5.5px;
        padding: 9px ;
    }

    .text {
        bottom: 1.3rem;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .bar {
        width: 56%;
        border-radius: 5rem;
        padding: .2rem 1.1rem;
    }

    .bar input {
        font-size: .8rem;
    }

    .bar button .fa-solid {
        width: 2rem;
        font-size: .9rem;
    }

    .bar button {
        width: 2rem;
        height: 2rem;
    }

    .tours img {
        border-radius: 6px;
    }

    .column {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1.4rem;
    }
    
    .section-contact-main form{
        gap: 1rem;
    }
    
    .grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .section-contact-main input[type="submit"] {
        max-width: 45%;
        border: 3px solid #110c40;
    }

    .footer .box-container {
        grid-template-columns: repeat(1, 1fr);
    }

    iframe {
        width: 300px;
        height: 200px;
    }

    .gallery-container .box {
        height: auto;
        flex-direction: column;
    }

    .gallery-container .box .dream {
        width: 100%;
    }

    .specific-column {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:380px) {
    nav .navbar .nav-links {
        max-width: 80%;
    }

    .bar {
        width: 56%;
        border-radius: 5rem;
        padding: .2rem 1rem;
    }

    .bar input {
        font-size: .6rem;
    }

    .bar button .fa-solid {
        width: 2rem;
        font-size: .8rem;
    }

    .bar button {
        width: 2rem;
        height: 2rem;
    }
    
}