@import url("https:fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@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=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@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");

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #1d1f21 !important;
    color: #fff !important;
}

a.nav-link.active {
    /* color: #37190e !important; */
    color: #fff !important;
    /* background-color: #37190e; */
    /* border-radius: 10px; */
}

/* .nav-link.active {
    color: #be768b;
} */

html {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--primary-color);
    /* background-color: #381a0f; */
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    /* font-size: 24px;
    color: #ffffff;
    line-height: 0; */
    font-size: 2rem;
    color: #fff;
    line-height: 0;
    /* background-color: #be768b; */
    background-color: #999;
    border-radius: 50%;
    padding: 0.2rem;
}

.scroll-top:hover {
    background-color: rgba(var(--primary-color-rgb), 0.8);
    color: #ffffff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader start
  --------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader div {
    width: 13px;
    height: 13px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    position: absolute;
    left: 50%;
}

#preloader div:nth-child(1) {
    left: calc(50% + 8px);
    animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
    left: calc(50% + 8px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
    left: calc(50% + 32px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
    left: calc(50% + 56px);
    animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes animate-preloader-3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes animate-preloader-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
  # Preloader end
  --------------------------------------------------------------*/
/* FORM START */

/* Header Section */
img.img_width {
    /* width: 8rem; */
    width: 12rem;
    position: absolute;
    top: -15px;
    left: 0;
    padding: 1rem;
    background: #252b38;
    border-radius: 4px;
}
.nav_section {
    position: relative;
    background-color: #252b38 !important;
    box-shadow:
        0 3px 6px -4px #0000001f,
        0 6px 16px 0 #00000014,
        0 9px 28px 8px #0000000d;
}
.home-section {
    overflow: hidden;
}
.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.04em;
}

.container-fluid {
    max-width: 1188px;
    padding: 4px 6rem;
    margin: 0 auto;
}

.header-section .nav-link:hover {
    /* color: #37190e; */
    color: #fff;
}

.container-img {
    min-height: 40rem;
    width: 100%;
    /* background-image: url(/assets/img/home.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color:  #ffcccc; */
}

.header {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    width: 80%;
    margin: 0 auto;
    z-index: 100;
}

.head {
    max-width: 1230px;
    padding: 5px 2rem;
    margin: 0 auto;
}

.home-title {
    /* margin-bottom: 18rem; */
    font-family: "Dancing Script", cursive;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: inherit;
    /* margin-top: 10rem; */
    /* position: relative;
    top: 13rem;
    right: 23rem;
    text-align: center; */
}

.home-ptag {
    /* margin-bottom: 18rem; */
    font-family: "Dancing Script", cursive;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: inherit;
    margin: 1rem 0rem !important;
}

.hero_btn {
    background: transparent !important;
    border-color: #fff !important;
    border-radius: 20px;
    color: #fff;
}

.hero_btn:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #000;
}

/*  team section start */
.team_section {
    overflow: hidden;
}

.cust_card {
    box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.2);
    padding: 1rem 1rem;
    height: 14rem;
}

.chef_detail img {
    border-radius: 50%;
    height: 6rem;
    object-fit: cover;
    width: 8rem !important;
    padding: 0rem 1rem;
    margin: 0 auto;
}

.logo_image img {
    padding: 0rem 2rem;
    margin-top: 8px;
    margin-bottom: 1rem !important;
    width: 10rem !important;
    margin: 0 auto;
}

.owl_carousel_sec .owl-stage-outer.owl-height {
    height: 21rem !important;
}

.chef_detail h4 {
    text-align: center;
    padding: 0.5rem 0.5rem;
    font-weight: 600;
    font-size: 17px;
    margin: 0 auto;
}

.chef_detail p {
    text-align: center;
    padding: 0rem 1rem;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin-top: 0px !important;
}

.owl-prev {
    font-size: 3rem !important;
    position: absolute;
    top: 35%;
    right: 106%;
}

.owl-next {
    font-size: 3rem !important;
    position: absolute;
    top: 35%;
    left: 106%;
}

/* Team section end */

.about-section {
    min-height: 500px;
    width: 100%;
    /* background-color: aliceblue; */
    overflow: hidden;
}

.about-heading {
    text-align: center;
    margin: 2rem;
}

.about-heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-top: 3rem;
}

img.elevate_img {
    /* height: 32rem; */
    width: 100%;
}

.about_sec2 {
    padding: 0rem 4rem;
}

.about_sec3 p {
    padding: 0px;
    margin: 0px 10px 10px;
    text-align: justify;
}

.about_sec3 {
    padding: 4rem 2rem;
    display: flex;
    flex-flow: wrap;
}

.about_sec3 .about-h4 {
    text-align: center;
    color: #000;
    font-weight: 600;
    margin: 1rem auto;
}

.about_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 900;
    color: #999;
}

/* service section start */
.service_section {
    min-height: 500px;
    overflow: hidden;
    padding: 1rem 4rem;
}

.service_heading {
    margin: 2rem;
    text-align: center;
}

.service_heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-top: 2rem;
}

.service_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 900;
    color: #999;
}

.service_card {
    /* background-color: #00000010; */
    background-color: #252b38;
    /* border-radius: 7px; */
    height: 15rem;
    padding: 1rem 1rem;
}

.service_link a {
    text-decoration: none;
    color: cornflowerblue;
    text-align: end;
}

.service-h4 {
    font-weight: 1000;
    font-family: "Dancing Script", cursive;
    text-align: center;
    margin: 1rem;
    color: #fff;
    font-size: 30px;
}

.service_p {
    font-size: 15px;
    padding: 0rem !important;
    font-weight: 500;
    margin: 1.5rem 1.5rem;
    height: 4rem;
}

.service_card:hover {
    /* background-color: #be768b29;
    color: black;
    box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.2); */
    background-color: #fff;
    color: #000;
    transition: 1s;
}
.service_card:hover h4 {
    color: #000 !important;
}
.service_card:hover a.link_h4 {
    border: 1px solid #000;
    color: #000 !important;
}

a.link_h4 {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 0.5rem;
    border-radius: 20px;
    margin-left: 12rem;
    float: right;
}

/*  service section end*/

/* GALLERY SECTION START */
.gallery_section {
    min-height: 500px;
    overflow: hidden;
    padding: 0 1rem;
}
.gallery_section .nav-link:focus,
.nav-link:hover {
    color: black;
}

.gallery_heading {
    margin: 2rem;
    text-align: center;
}

.gallery_heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
}

.gallery_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 900;
    color: #999;
}

.gallery_nav ul {
    display: flex;
    justify-content: center;
    border: 2px solid #fff;
    max-width: 60rem;
    /* margin-left: 12rem; */
    border-radius: 27px;
    margin-bottom: 2rem !important;
    padding: 0.4rem 0.5rem;
    margin: 0 auto;
    width: 60%;
}

.pic1 {
    height: 485px;
    width: 100%;
    object-fit: cover;
    padding: 5px 1px;
    /* border-radius: 15px; */
}

.pic2 {
    height: 550px;
    width: 100%;
    object-fit: cover;
    padding: 5px 1px;
    /* border-radius: 15px; */
}

.img1 {
    height: 680px !important;
    width: 100% !important;
    object-fit: cover !important;
    padding: 5px 1px;
    /* border-radius: 15px; */
}

.galleryimage .row {
    --bs-gutter-x: 1rem !important;
}

.pic4 {
    height: 350px;
    width: 100%;
    object-fit: cover !important;
    padding: 5px 1px;
    /* border-radius: 15px; */
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #fff;
    border-radius: 20px;
    color: #000;
}

.nav-tabs .nav-link {
    border: unset !important;
    color: #fff;
}

.gallery_nav .nav-tabs {
    --bs-nav-tabs-border-width: unset;
}

/* GALLERY SECTION END */

/* <!-- PASTRY CLASS SECTION START --> */

.pastry_section {
    min-height: 500px;
    overflow: hidden;
    margin-top: 3rem;
}

.pastry_img {
    object-fit: cover;
    height: 31rem;
    width: 100%;
}

.pastry_section .pastry_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 3rem;
    text-align: center;
    margin: 1.5rem;
    font-weight: 900;
    color: cornflowerblue;
}

.pastry_section .pastry_h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
}

.pastry_heading h2 {
    font-family: "Inter", sans-serif;
}

.pastry_sec1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.pastry_sec1 p {
    font-size: 18px;
}

.pastry_btn {
    background-color: rgba(0, 0, 0, 0.87);
    padding: 1rem 2.5rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
}

.pastry_btn_sec {
    margin-top: 3rem;
    text-align: center;
}

.pastry_btn:hover {
    background-color: #be768b;
    text-decoration: none;
    color: white;
}
/* <!-- PASTRY CLASS SECTION END --> */

/* CHEF SECTION START */

.team_section {
    min-height: 600px;
    /* overflow: hidden; */
}

.team_heading {
    margin: 2rem;
    text-align: center;
}

.team_heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
}

.team_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 900;
    color: cornflowerblue;
}

.owl_carousel_sec .owl-item {
    margin-top: 1rem !important;
}

/* CHEF SECTION END */

/* QUESTION SECTION START */

.que_section {
    min-height: 500px;
    overflow: hidden;
}

.que_heading {
    margin: 2rem;
    text-align: center;
}

.que_heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
}

.que_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 900;
    color: cornflowerblue;
}

.qa_btn {
    height: 5rem;
    width: 72rem;
    border-radius: unset;
    display: flex;
    align-items: center;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    background-color: #dccecf;
    border: unset !important;
    color: #000 !important;
    font-weight: 600;
    font-size: 18px;
}

.qa_btn:hover {
    background-color: #dccecf !important;
    border: unset !important;
}

.answer_sec {
    height: 5rem;
    width: 72rem;
    margin-top: -1rem;
    border-radius: unset;
}

.faq_section {
    margin-bottom: 1rem !important;
}

.faq_width {
    width: 72rem;
    min-height: 7rem !important;
    text-align: start;
    border-radius: 0px !important;
    background-color: #dccecf !important;
    border: none;
    border-top: 0.1rem solid rgba(190, 118, 139, 0.5);
}

/* QUESTION SECTION END */

/* contact section */

.contacts__section {
    min-height: 500px;
    overflow: hidden;
}

.contact_section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact_heading {
    margin: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.contact_heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #fff;
}

.contact_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 900;
    color: #999;
}

.contact1 {
    background-color: #252b38;
    height: 30rem;
    padding: 2rem;
}

.contact2 {
    background-color: #252b38;
    height: 30rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.name_input {
    width: 30.2rem !important;
}
.form_input {
    height: 3rem;
    width: 15rem;
    margin: 1rem 0rem;
    border: 0.1rem dashed #fff;
    padding: 0.5rem;
    color: #fff;
    background: #252b38;
}

.form__textarea {
    height: 9rem;
    width: 30.2rem;
    margin: 1rem 0rem;
    border: 0.1rem dashed #fff;
    padding: 0.5rem;
    color: #fff;
    background: #252b38;
}

.form__btn {
    background-color: #fff !important;
    color: #000 !important;
    border: 0px !important;
    padding: 1rem 2rem;
    font-size: 17px;
    font-weight: 600;
    border-radius: 32px;
}
.form__btn:hover {
    background-color: #fff !important;
    color: #000 !important;
}

.contact_head {
    font-size: 2rem;
    text-align: center;
    margin: 2rem;
}

.contact_details ul {
    list-style-type: none;
}

.contact_details li {
    margin-bottom: 1rem;
    font-size: 16px;
    cursor: pointer;
    padding: 0.5rem 0.5rem;
}

.contact__details ul {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    font-size: 30px;
    cursor: pointer;
    padding-left: 0rem !important;
}
.contact__details a {
    color: #fff;
}

.contact_details li:hover {
    /* color: #be768b; */
    color: #000;
    background: #fff;
    border-radius: 10px;
}
.contact__details li a {
    padding: 0.2rem 0.5rem;
}
.contact__details li:hover a {
    /* color: #be768b; */
    color: #000 !important;
    background: #fff;
    border-radius: 10px;
}

.contact_head h2 {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
}

/* contact section */

/* footer section */

.footer_section {
    overflow: hidden;
}
.footer_section p {
    text-align: center;
    margin: 1rem !important;
}
/* footer section */

/*  */
/*  */
/* about.php */

/* banner section */
.banner_section {
    overflow: hidden;
    height: 28rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.banner_contents h2 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    position: relative;
    top: 50%;
    font-size: 7rem;
}

.banner_contents {
    background-color: #000000a3;
    height: 28rem;
    color: white;
    text-align: center;
}
.ban_content_sec {
    padding: 4rem 4rem;
}
.banner_grid {
    display: flex;
    place-items: center;
    height: 100vh;
    height: 40rem;
    /* background-color: #ebd3da !important; */
    /* background-color: #37190e !important; */
    background-color: rgba(0, 0, 0, 0.5);
}
/* banner section */

/* team section */

.team_section {
    min-height: 500px;
    /* overflow: hidden; */
}

.team_item {
    box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.2);
    padding: 1rem 0rem !important;
    margin: 0rem 1rem;
}

/* team section */

/* review section */
/* .review_section{
    min-height: 500px !important;
} */

.review-heading h2 {
    margin-top: 2rem;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
}

.review_h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    color: #999;
    margin-bottom: 0rem !important;
}

.review_section .owl-next {
    position: absolute;
    left: 92%;
}

.review_section .owl-prev {
    position: absolute;
    top: 32%;
    right: 92%;
}

.str-img {
    height: 16rem;
    padding: 0rem 7rem;
    border-radius: 50%;
}

.happy_customer {
    display: flex;
    padding: 1rem;
}

.happy_customer h4,
.happy_customer p {
    margin: 0rem 2rem;
    margin-top: 7px;
}

.cust_img {
    border-radius: 50%;
    height: 4rem;
}

.cust_review p {
    font-size: 16px;
    line-height: 24px;
    /* text-align: justify; */
}

.cust_card {
    padding: 1rem 2rem;
}

.owl-carousel .owl-stage {
    margin-top: 2rem;
}

.owl-carousel .owl-stage-outer {
    height: 17rem !important;
}

.carousel_sec .owl-item {
    margin: 0.5rem !important;
}

.carousel_sec {
    padding: 1rem 4rem;
}

/* .item_img {
    height: 10rem;
    box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.2);
} */
.item_img img {
    background-color: #fff;
    height: 8rem;
    object-fit: contain;
    border-radius: 4px;
}

/* review section */

/* about.php */
.owl-carousel .owl-item {
    transition: transform 0.3s ease;
}

.owl-carousel .owl-item.active.center {
    transform: scale(1.3);
    /* Increase size of the center item */
    transition: transform 0.3s ease-in-out;
}

.owl-carousel .owl-item:not(.active) {
    transform: scale(0.9);
    /* Smaller size for non-active items */
    opacity: 0.8;
    /* Lower opacity for non-active items */
}
.galleryimage .imglist {
    position: relative;
    overflow: hidden;
}
.galleryimage .serviceoverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}
.galleryimage .serviceoverlay:hover {
    background: rgba(3, 15, 39, 0.349);
    opacity: unset;
}
a.plusicons {
    text-decoration: none;
    font-size: 5rem;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .header {
        width: 94% !important;
    }

    .home-section {
        padding: 0;
        margin-top: 0;
    }

    .container-img {
        padding: 0rem;
    }

    .home-title {
        right: 0rem !important;
        background-color: #0000006e;
        color: white;
        padding: 1rem 15px;
        margin: 0px 8px;
        font-size: 3rem;
        /* z-index: 15; */
    }
    .ban_content_sec {
        padding: 4rem 1rem;
    }
    .banner_grid {
        background-color: transparent !important;
    }
    .home-ptag {
        font-weight: 700;
        /* position: relative;
        right: 0 !important;
        top: 14rem !important;
        color: #020202; */
    }

    .btn_btn {
        top: 16rem;
        left: 8rem;
    }

    /* about section */

    img.elevate_img {
        /* height: 28rem;
        position: relative;
        right: 2rem; */
        width: 100% !important;
        height: unset !important;
    }

    /* service section */
    .service_section {
        padding: 0rem 1rem !important;
    }

    .service_card {
        margin: 1rem 0rem !important;
        height: 16rem !important;
    }

    .happy_customer h4,
    p {
        margin: 0rem 0rem;
    }

    a.link_h4 {
        margin-left: 11rem !important;
    }

    .service_p {
        font-size: 17px;
    }

    /* gallery section */
    .gallery_nav ul {
        justify-content: center;
        border: 2px solid #be768b;
        /* margin: 0rem 1rem; */
        margin-bottom: 2rem;
        padding: 11px 15px;
        border-radius: 20px;
    }
    .review_h3 {
        margin-bottom: 0rem !important;
    }

    .img1 {
        height: 15rem !important;
        width: 23rem !important;
    }

    .pic1 {
        height: 29rem !important;
        width: 23rem !important;
    }

    .pic2 {
        height: 29rem !important;
        width: 23rem !important;
    }

    .pic4 {
        width: 23rem !important;
    }

    /* pastry section */
    .pastry_h3 {
        margin: 1rem !important;
    }

    .pastry_img {
        margin-top: 3rem;
    }

    /* team section */
    .team_item {
        margin: 0rem 4rem !important;
    }

    .owl-prev {
        right: 98% !important;
    }

    .owl-next {
        left: 98% !important;
    }

    /* q&a section */
    .qa_btn {
        width: 21rem !important;
        text-align: left;
        height: 6rem !important;
    }

    .faq_width {
        width: 21rem !important;
    }

    /* review section */
    .carousel_sec {
        padding: 1rem 1rem;
    }

    .owl-carousel .owl-stage-outer {
        height: 13rem !important;
    }

    .cust_card {
        height: 17rem !important;
        padding: 1rem 0.5rem;
    }

    /* contact section */
    .form_input {
        width: 19rem !important;
    }
    .contact__details ul {
        padding-left: 0rem !important;
    }

    .contact_details ul {
        padding-left: 1rem !important;
    }

    .contact2 {
        display: block;
        text-align: start;
        padding: 0rem 1rem;
    }

    .form__textarea {
        width: 19rem !important;
    }

    .contact1 {
        height: 28rem !important;
    }

    .contact2 {
        height: 31rem !important;
    }

    .form__btn {
        margin-left: 10rem !important;
    }
}

@media only screen and (max-width: 980px) {
}

@media only screen and (max-width: 800px) {
}

@media only screen and (max-width: 640px) {
}

@media only screen and (max-width: 480px) {
}

@media only screen and (max-width: 360px) {
    a.link_h4 {
        margin-left: 8rem !important;
    }
    .form_input {
        width: 16rem !important;
    }
    .form__textarea {
        width: 16rem !important;
    }
}

@media only screen and (max-width: 320px) {
}
