#gallery {
    padding: 50px 0 50px;
}

.gallery_header h3 {
    font-family: var(--secondary_font);
    font-size: 1.4em;
    color: var(--black);
    text-align: center;
}

.gallery_header h1 {
    font-family: var(--primary_font);
    font-size: 2em;
    text-align: center;
    margin-top: 10px;
}

.gallery_header .header_shape {
    width: 230px;
    margin: 0px auto 20px;
}

.gallery_header .header_shape img {
    width: 100%;
}

.gallery_tab .tab_box {
    max-width: 780px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 10px auto;
}

.gallery_tab .tab_box {
    position: relative;
}

.gallery_tab .tab_box .tab_btn {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    outline: none;
    font-family: var(--primary_font);
    font-size: 1.2em;
    background: transparent;
    border-bottom: 3px solid transparent;
    padding: 0px 5px;
    transition: 0.4s;
    background-color: #d7a469;
    padding: 6px;
    /* color: #fff; */
}

.tab_line {
    position: absolute;
    top: 42px;
    left: 0px;
    width: 54px;
    height: 2px;
    background-color: var(--primary_color);
    transition: 0.5s;
}

.tab_line::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: rgb(215, 164, 105);
}

.tab_line::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: rgb(215, 164, 105);
}

.tab_content_box .tab_content {
    display: none;
    transition: 0.5s;
}

.tab_content_box .tab_content.active {
    display: block;
    animation: 1s ease 0s 1 normal none running fade;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
}

.pagination a {
    display: inline-block;
    border: 2px solid var(--primary_color);
    padding: 10px 18px;
    font-family: var(--secondary_font);
    font-size: 1.1em;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.5s;
}

.pagination a.active, .pagination a:hover {
    background-color: var(--primary_color);
    color: var(--white);
}

.gallery_cards {
    position: relative;
    border-radius: 10px 0px;
    overflow: hidden;
    margin-top: 25px;
}

.gallery_cards img {
    width: 100%;
    border-radius: 10px 0px;
}

.gallery_cards:hover .gallery_card_overlay {
    opacity: 1;
    user-select: all;
    pointer-events: all;
}

.gallery_card_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: 0.5s ease-in-out;
}

.gallery_card_btn {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary_color);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
}

.gallery_card_btn a {
    text-decoration: none;
    color: var(--white);
}

.gallery_card_btn a i {
    text-decoration: none;
    color: var(--white);
}

.gallery_card_btn:hover {
    background-color: var(--primary_color);
    color: var(--white);
}

.gallery_card_btn a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.8em;
}

.preview-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: rgb(255, 255, 255);
    max-width: 900px;
    width: 80%;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 15px;
    border-top: 5px solid var(--primary_color);
    border-bottom: 5px solid var(--primary_color);
    border-radius: 15px 0px;
    z-index: 999999 !important;
}

.preview-box.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: 0.3s;
}

.preview-box .details {
    display: flex;
    align-items: center;
    padding: 12px 15px 12px 10px;
    justify-content: space-between;
}

.preview-box .details .title {
    display: flex;
    font-size: 18px;
    font-weight: 400;
}

.details .title p {
    margin: 0px 5px;
}

.details .title p.current-img {
    font-weight: 500;
}

.details .icon {
    color: rgb(0, 123, 255);
    font-size: 20px;
    cursor: pointer;
}

.preview-box .image-box {
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: contain;
    position: relative;
}

.image-box .slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(255, 255, 255);
    font-size: 50px;
    cursor: pointer;
    height: 50px;
    width: 60px;
    line-height: 50px;
    text-align: center;
    border-radius: 3px;
}

.slide.prev {
    left: -60px;
}

.slide.next {
    right: -60px;
}

.image-box img {
    width: 100%;
    border-radius: 0px 0px 3px 3px;
}

.shadow {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999 !important;
}

@media screen and (max-width: 990px) {
    .gallery_header h3 {
        font-size: 1.1em;
    }

    .gallery_header h1 {
        font-size: 2em;
        margin-top: 10px;
    }

    .gallery_header .header_shape {
        width: 180px;
        margin: 0px auto;
    }
}

@media screen and (max-width: 768px) {
    .gallery_tab .tab_box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 15px 35px;
        justify-content: center;
        margin: 20px auto 10px;
        /* text-align: center; */
    }

    .tab_line {
        display: none;
    }

    .gallery_tab .tab_box .tab_btn {
        font-size: 1.2em;
        /* padding: 6px; */
        /* padding: 5px 10px 5px 10px; */
        /* width: 50%; */
    }

    .tab_box .tab_btn.active {
        position: relative;
        border-bottom: 3px solid var(--primary_color);
    }

    .tab_box .tab_btn.active::before {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0px;
        width: 6px;
        height: 6px;
        background: var(--primary_color);
        transform: rotate(45deg);
    }

    .tab_box .tab_btn.active::after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: 0px;
        width: 6px;
        height: 6px;
        background: var(--primary_color);
        transform: rotate(45deg);
    }

    .pagination {
        gap: 10px;
    }

    .pagination a {
        padding: 8px 15px;
        font-size: 1em;
    }
}

@media screen and (max-width: 575px) {
    .preview-box {
        width: 100%;
    }

    .slide.prev {
        left: 0px;
    }

    .slide.next {
        right: 0px;
    }
}

#contact {
    padding: 100px 0px;
}

.contact_header h3 {
    font-family: var(--secondary_font);
    font-size: 1.4em;
    color: var(--black);
    text-align: center;
}

.contact_header h1 {
    font-family: var(--primary_font);
    font-size: 3em;
    text-align: center;
    margin-top: 20px;
}

.contact_header .header_shape {
    width: 230px;
    margin: 0px auto 50px;
}

.contact_header .header_shape img {
    width: 100%;
}

.contact_wrapper {
    border: 1px solid var(--primary_color);
    padding: 20px 20px 60px;
    border-radius: 12px;
}

.contact_item {
    padding-top: 40px;
    text-align: center;
}

.contact_item_icon {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.contact_item_icon svg {
    width: 40px;
    height: 40px;
}

.contact_item h2 {
    font-family: var(--primary_font);
    font-size: 1.8em;
    font-weight: 600;
    margin: 15px 0px 40px;
}

.contact_item p {
    margin-bottom: 20px;
}

.contact_item p:last-child {
    margin-bottom: 0px;
}

.contact_item p a {
    color: var(--black);
    text-decoration: none;
    font-family: var(--secondary_font);
    font-size: 1em;
}

.contact_item p a span {
    color: var(--primary_color);
}

@media screen and (max-width: 990px) {
    .contact_header h3 {
        font-size: 1.1em;
    }

    .contact_header h1 {
        font-size: 2em;
        margin-top: 10px;
    }

    .contact_header .header_shape {
        width: 180px;
        margin: 0px auto;
    }
}

#active_timing {
    padding-bottom: 100px;
}

.active_timing_content h1 {
    font-family: var(--primary_font);
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.active_content_time {
    margin-top: 25px;
}

.active_content_time h2 {
    font-family: var(--secondary_font);
    font-size: 1.4em;
    color: var(--primary_color);
    text-align: center;
}

.active_content_time p {
    font-family: var(--secondary_font);
    font-size: 1em;
    color: var(--black);
    text-align: center;
    margin-bottom: 0px;
}

#contact_form {
    padding: 30px 0px 50px;
}

#contact_form .form {
    border: 1px solid var(--primary_color);
    border-radius: 12px 0px;
    padding: 40px 30px;
}

#contact_form .form h1 {
    font-family: var(--primary_font);
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 0px;
}

.contact_form_items {
    margin-top: 25px;
}

.contact_form_items input, .contact_form_items textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--primary_color);
    border-radius: 5px;
    padding: 10px 30px;
    font-family: var(--secondary_font);
    outline: none;
    color: var(--black);
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
}

.contact_form_items input::placeholder, .contact_form_items textarea::placeholder {
    font-family: Metal;
}

.contact_form_items textarea {
    height: 120px;
}

.contact_form_items .contact_form_btn {
    padding: 10px 60px;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-top: 4px solid var(--primary_color);
    border-bottom: 4px solid var(--primary_color);
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    font-family: var(--secondary_font);
    font-size: 1em;
    border-radius: 8px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
    transition: 0.5s;
}

.contact_form_items .contact_form_btn:hover {
    background-color: var(--primary_color);
    color: var(--white);
}

#map iframe {
    width: 100%;
    height: 500px;
    margin-bottom: -10px;
}

#service {
    padding: 100px 0px;
}

.service_header h3 {
    font-family: var(--secondary_font);
    font-size: 1.4em;
    color: var(--black);
    text-align: center;
}

.service_header h1 {
    font-family: var(--primary_font);
    font-size: 3em;
    text-align: center;
    margin-top: 20px;
}

.service_header .header_shape {
    width: 230px;
    margin: 0px auto 40px;
}

.service_header .header_shape img {
    width: 100%;
}

.service_card {
    height: 280px;
    padding: 20px;
    display: grid;
    align-content: space-between;
    border: 2px solid var(--primary_color);
    border-radius: 15px 0px;
    margin: 35px 5px 0px;
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
}

.service_card .service_card_icon {
    width: 65px;
    height: 65px;
    margin: auto;
}

.service_card .service_card_icon svg {
    width: 100%;
    height: 100%;
}

.service_card .service_card_icon svg path, .service_card .service_card_icon svg circle {
    stroke: var(--primary_color);
    transition: 0.5s ease-in-out;
}

.service_card:hover .service_card_icon svg path, .service_card:hover .service_card_icon svg circle {
    stroke: rgb(199, 129, 47) !important;
}

.service_card h1 {
    font-family: var(--primary_font);
    font-size: 2em;
    text-align: center;
    word-spacing: 10px;
    margin: 30px 0px 0px;
}

.service_card p {
    font-family: var(--secondary_font);
    font-size: 1em;
    color: var(--primary_color);
    text-align: center;
    margin-bottom: 0px;
    transition: 0.5s ease-in-out;
}

.service_card_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0px;
    z-index: -1;
    background-color: rgb(255, 219, 176);
    border-radius: 13px 0px;
    transition: 0.5s ease-in-out;
    opacity: 0;
    user-select: none;
    pointer-events: none;
}

.service_card_overlay img {
    width: 60px;
    z-index: 9999 !important;
}

.service_card_overlay img:nth-child(1) {
    position: absolute;
    top: -35px;
    right: -35px;
}

.service_card_overlay img:nth-child(2) {
    position: absolute;
    bottom: -35px;
    left: -35px;
    transform: rotate(-180deg);
}

.service_card:hover .service_card_overlay {
    opacity: 1;
    user-select: auto;
    pointer-events: visible;
}

.service_card:hover.service_card {
    border-color: rgb(199, 129, 47);
}

.service_card:hover.service_card p {
    color: var(--black);
}

@media screen and (max-width: 990px) {
    .service_header h3 {
        font-size: 1.1em;
    }

    .service_header h1 {
        font-size: 2em;
        margin-top: 10px;
    }

    .service_header .header_shape {
        width: 180px;
        margin: 0px auto 20px;
    }
}

@media screen and (max-width: 575px) {
    .service_card {
        width: 85%;
        height: 280px;
        display: grid;
        align-content: space-between;
        padding: 20px;
        margin: 40px auto 0px;
    }
}

#rooms {
    padding: 50px 0px 55px;
    background-color: #ddd7d7;
}

.rooms_header h3 {
    font-family: var(--secondary_font);
    font-size: 1.4em;
    color: var(--black);
    text-align: center;
}

.rooms_header h1 {
    font-family: var(--primary_font);
    font-size: 2em;
    text-align: center;
    margin-top: 10px;
}

.rooms_header .header_shape {
    width: 230px;
    margin: 0px auto;
}

.rooms_header .header_shape img {
    width: 100%;
}

.room_item {
    padding: 50px 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px 0px;
    margin-top: 40px;
}

.room_content .room_img img {
    width: 100%;
    border-radius: 25px 0px;
}

.choose_room_head h3 {
    font-family: var(--primary_font);
    font-size: 1.6em;
    text-align: center;
}

.choose_room_head p {
    font-family: var(--secondary_font);
    font-size: 1em;
    text-align: center;
}

.choose_room_special_btn {
    display: flex;
    justify-content: center;
    margin: 25px 0px;
}

.choose_room_special_btn a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 28px;
    line-height: 30px;
    text-align: center;
    background-color: var(--primary_color);
    border-radius: 4px 0px;
    margin: 0px 8px;
}

.choose_room_btn a img {
    width: 24px;
}

.choose_room_rating {
    text-align: center;
}

.choose_room_rating a {
    text-decoration: none;
    color: rgb(244, 163, 41);
    font-size: 1em;
    margin: 0px 1px;
}

.choose_room_rating a:hover {
    color: rgb(244, 163, 41);
}

.choose_room_desc p {
    text-align: center;
    color: var(--primary_color);
    font-family: var(--secondary_font);
    font-size: 1em;
    margin: 25px 0px 30px;
}

.choose_room_price p {
    font-family: var(--secondary_font);
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 0px;
}

.choose_room_price p span {
    font-size: 1.15em;
    font-weight: 500;
}

.choose_room_price_btn {
    text-align: center;
    margin-top: 15px;
}

.choose_room_price_btn a {
    text-decoration: none;
    display: inline-block;
    width: 160px;
    border-top: 3px solid var(--primary_color);
    border-bottom: 3px solid var(--primary_color);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 9px 0px;
    color: var(--black);
    text-align: center;
    font-family: var(--secondary_font);
    font-size: 1em;
    border-radius: 8px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
    transition: 0.8s;
}

.choose_room_price_btn a:hover {
    background-color: var(--primary_color);
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px, rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
    transform: translateY(-6px);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
}

.pagination a {
    display: inline-block;
    border: 2px solid var(--primary_color);
    padding: 10px 18px;
    font-family: var(--secondary_font);
    font-size: 1.1em;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.5s;
}

.pagination a:hover {
    background-color: var(--primary_color);
    color: var(--white);
}

@media screen and (max-width: 990px) {
    .rooms_header h3 {
        font-size: 1.1em;
    }

    .rooms_header h1 {
        font-size: 2em;
    }

    .choose_room_head h3 {
        margin-top: 15px;
    }
}

@media screen and (max-width: 576px) {
    .pagination {
        gap: 10px;
        & .pagination {
            gap: 10px;
            margin-top: 60px;
        }
    }

    .pagination a {
        padding: 6px 10px;
        font-size: 0.9em;
    }
}

.contact_form_items label {
    font-family: var(--secondary_font);
    font-size: 1em;
    margin-bottom: 6px;
    display: inline-block;
}

.event_select {
    width: 100%;
    padding: 10px 30px;
    border: 1px solid var(--primary_color);
    border-radius: 5px;
    font-family: var(--secondary_font);
    font-size: 1em;
    color: var(--black);
    background-color: var(--white);
    outline: none;
    appearance: none;        /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;

    /* custom dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d7a469' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/* Hover & Focus */
.event_select:focus,
.event_select:hover {
    border-color: var(--primary_color);
    box-shadow: 0 0 5px rgba(215, 164, 105, 0.4);
}

/* Option styling */
.event_select option {
    font-family: var(--secondary_font);
    font-size: 1em;
}

/* Date field design */
.datepicker_input {
    width: 100%;
    height: 46px;
    padding: 10px 30px;
    border: 1px solid var(--primary_color);
    border-radius: 5px;
    font-family: var(--secondary_font);
    font-size: 1em;
    color: var(--black);
    background-color: var(--white);
    outline: none;
    box-sizing: border-box;

    /* calendar icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23d7a469' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h.5A1.5 1.5 0 0 1 15 2.5V14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V2.5A1.5 1.5 0 0 1 2.5 1H3V.5a.5.5 0 0 1 .5-.5zM2 6v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V6H2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    cursor: pointer;
}

/* Focus effect */
.datepicker_input:focus {
    border-color: var(--primary_color);
    box-shadow: 0 0 5px rgba(215, 164, 105, 0.4);
}


/* Coming Soon Start */
.coming-soon {
  width: 100%;
  background: var(--white);
  margin-top: 111px;
}

.coming-soon .description .image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon .description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  justify-content: center;
}
.coming-soon .description svg {
  width: 20%;
  aspect-ratio: 16 / 16;
}

.animatedPath2 {
  stroke: #d7a469;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 5s linear infinite;
  -webkit-animation: draw 5s linear infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.coming-soon .title {
  font-size: 46px;
  font-family: var(--primary_font);
  margin: 10px 0;
  text-align: left;
  font-weight: bold;
  color: var(--black);
}

.coming-soon .desc {
  display: block;
  text-align: center;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary_font);
  color: var(--black);
  font-weight: 400;
}

.coming-soon .contact_btn {
  padding: 10px 60px;
  border: none;
  border-top: 4px solid var(--primary_color);
  border-bottom: 4px solid var(--primary_color);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  margin-top: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.coming-soon .contact_btn:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

@media screen and (max-width: 992px) {
  .coming-soon {
    margin-top: 84.36px;
  }
}

@media screen and (max-width: 768px) {
  .coming-soon .title {
    font-size: 34px;
  }

  .coming-soon .contact_btn {
    padding: 10px 30px;
    font-size: 16px;
  }

  .coming-soon .description svg {
    width: 70%;
    aspect-ratio: 16 / 16;
  }
}

/* Coming Soon Start */

/* Page 404 Error Start */

.page_404 {
  margin-top: 40px;
  padding: 0px 0px 50px;
  background: #fff;
  font-family: "Arvo", serif;
}

.page_404 img {
  width: 100%;
}

.page_404 .bg {
  width: 100%;
  max-width: 480px;
  text-align: center;
  margin: auto;
}

.four_zero_four_bg {
  background-image: url(../../../../../cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
  height: 300px;
  background-position: center;
  background-size: cover;
}

.four_zero_four_bg h2 {
  font-size: 46px;
  font-family: var(--primary_font);
  margin: 10px 0;
  text-align: left;
  font-weight: bold;
  color: var(--black);
}

.contant_box_404 h3 {
  font-size: 46px;
  font-family: var(--primary_font);
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: var(--black);
}

.contant_box_404 p {
  display: block;
  text-align: center;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary_font);
  color: var(--black);
  font-weight: 400;
}

.link_404 {
  color: var(--white) !important;
  padding: 10px 20px;
  margin: 20px 0;
  display: inline-block;
}
.contant_box_404 {
  margin-top: -50px;
}

.page_404 .buttons {
  margin-top: 30px;
}
.page_404 .back_btn {
  padding: 10px 60px;
  border: none;
  border-top: 4px solid var(--primary_color);
  border-bottom: 4px solid var(--primary_color);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.page_404 .back_btn:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

@media screen and (max-width: 992px) {
  .page_404 {
    margin-top: 40.36px;
  }

  .four_zero_four_bg h2 {
    font-size: 34px;
  }

  .contant_box_404 h3 {
    font-size: 34px;
  }
}

/* Page 404 Error End */

