@import url('https://fonts.googleapis.com/css2?family=Barlow: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&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    max-width: 100%;
}

summary {
    display: list-item;
}

body,
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.4;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    transition: all 0.3s ease-in;
}

p {
    color: rgb(29, 29, 31);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 400;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none !important;
}

h1,
.h1 {
    font-size: 60px;
    color: #30373f;
}

h2,
.h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #30373f;
}

h3,
.h3 {
    font-size: 24px;
    color: #30373f;
}

h4,
.h4 {
    font-size: 20px;
    color: #30373f;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.sec_padding {
    padding: 60px 0px;
}

.sec_heading {
    position: relative;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.color-1 {
    color: var(--color-1);
}

.sub_heading {
    color: #E6AF5D;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 46px;
}

.sub_heading:before {
    content: '';
    position: absolute;
    height: 2px;
    background: #E6AF5D;
    width: 36px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.theme_btn {
    background-color: #000;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
}

.theme_btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.theme_btn img {
    width: 50px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.row .col-2 {
    width: calc(100% / 2 - 15px);
}

.text-center {
    text-align: center;
}


/* nav */

header {
    padding: 15px 0;
}

.nav_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logo_div {
    width: 15%;
}

.nav_row nav {
    width: 70%;
}

.nav_row nav ul {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.nav_row nav ul li a {
    color: #000;
    font-size: 20px;
    padding: 10px;
    display: block;
    width: 100%;
}

.nav_row nav ul li ul {
    flex-direction: column;
    z-index: 999999999999;
    background: #fff;
    width: 262px;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.nav_row nav ul li {
    position: relative;
}

.sub-menu li {
    width: 100%;
    position: relative;
    border-bottom: 1px dashed #cccc;
    overflow: hidden;
    transition: all .3s ease;
}

.toggle-button span {
    display: block;
    width: 40px;
    height: 5px;
    background: #E6AF5D;
    border-radius: 100px;
}

.toggle-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    display: none;
    cursor: pointer;
}

.has-sub-menu {
    position: relative;
}

.has-sub-menu ul {
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    padding: 10px;
    width: 290px;
    z-index: 1000;
    transform: translateY(54px);
    transition: all .3s ease;
}

.has-sub-menu ul li ul {
    left: 100%;
    top: 0;
}

.has-sub-menu:hover .sub-menu {
    visibility: visible;
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.mob-logo {
    display: none;
}

.has-sub-menu i {
    margin-left: 8px;
}


/* banner_css */

section.banner-section {
    height: 780px;
    overflow: hidden;
    position: relative;
}

.banner-slider {
    height: 100%;
}

.slick-list,
.slick-track {
    height: 100%;
}

.slide-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slide-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

ul.slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    bottom: 20px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

ul.slick-dots li {
    width: 15px;
    height: 15px;
    border-radius: 100px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.slick-dots li button {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: none;
    opacity: 0;
}

ul.slick-dots li.slick-active {
    background-color: #e6af5d;
}


/* About_css */

.small_flex_box .col-2 {
    display: flex;
    align-items: center;
    gap: 22px;
}

.small_flex_box .col-2 figure {
    width: 20%;
}

.small_flex_box .col-2 .small_heading {
    width: 74%;
}

.small_flex_box {
    margin-top: 48px;
}

.about_list_box ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 40px;
}

.about_list_box ul li {
    font-size: 20px;
}

.about_list_box ul li i {
    margin-right: 16px;
    color: rgb(230, 175, 93);
}

.btn-box {
    margin-top: 40px;
}

.about_img_box {
    position: relative;
}

.about_img_box img {
    width: 100%;
    padding-left: 200px;
}

.about_img_box .info_box {
    background: #000;
    padding: 40px;
    width: 58%;
    position: absolute;
    bottom: 88px;
    left: 0;
}

.about_img_box .info_box h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 200;
}

.small-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.small-card-grid .item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #F8F8F8;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #000;
}

.small-card-grid .item figure img {
    width: 77px;
    margin: 0 auto;
}

.card-slider .slide-item {
    margin: 0 12px;
}

.small-card_sec {
    padding-bottom: 0px;
}

.small-card_sec .heading-box {
    justify-content: center;
}


/* Gallery */

.gallery-sec .col-div {
    width: calc(100% / 2 - 15px);
}


/* tabs */

.inspired_sec .tab {
    display: none;
    height: 100%;
}

.inspired_sec .tab.active {
    display: block;
}

.inspired-row .col-div {
    width: calc(100% / 2 - 15px);
}

.inspired_image_box {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.inspired_image_box img {
    width: 398px;
}

.inspired_image_box .info-box {
    background: #30373F;
    padding: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 398px;
}

.inspired_image_box .info-box p {
    color: #fff;
    font-size: 16px;
}

.tab-content {
    height: 100%;
    width: 100%;
}

a.read-more {
    width: 64px;
    display: block;
}

.insired_tabs .tab-links li a {
    color: #30373f;
    font-size: 24px;
    font-weight: 600;
}

.insired_tabs .tab-links {
    display: flex;
    gap: 28px;
    flex-direction: column;
}

.insired_tabs .tab-links li.active a {
    color: #E6AF5D;
}

.inspired_sec {
    background: url('/assets/images/peten2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.heading-box {
    margin-bottom: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.explore_box {
    background: #F6F4F5;
    padding: 38px;
    transition: all .3s linear;
}

.explore_box p {
    font-size: 16px;
    margin-bottom: 0;
}

.explore_box:hover {
    background-color: #30373f;
}

.explore_box:hover .card_heading,
.explore_box:hover p {
    color: #fff;
}

.explore_sec .row {}

.explore_sec .row .col-div {
    width: calc(100% / 3 - 20px);
    display: flex;
}

.explore_box .card_heading {
    padding-bottom: 10px;
    margin-bottom: 16px;
    position: relative;
}

.explore_box .card_heading:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 22%;
    background: #E6AF5D;
}

.mt-0 {
    margin-top: 0;
}


/* form-section */

.form_sec {
    background: url('/assets/images/form.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.form-row {
    background: #ffffffad;
    padding: 36px;
    border-radius: 8px;
    width: 836px;
    margin: 0 auto;
}

.form-row .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-row form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-control {
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #E6AF5D;
}

.form-control:focus-visible {
    outline: none;
}

label.form-label {
    font-size: 20px;
    font-weight: 500;
}

.form-group .theme_btn {
    text-align: center;
    justify-content: center;
    padding: 20px;
    font-size: 20px;
}


/* footer */

footer {
    background-color: #30373f;
    padding-top: 128px;
    position: relative;
    z-index: 1;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background: url('/assets/images/bg-overlay.png');
    z-index: -1;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-row .footer-col {
    width: calc(100% / 4 - 23px);
}

h4.footer-heading {
    color: #fff;
    font-size: 24px;
    margin-bottom: 22px;
}

ul.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.footer-list li {}

ul.footer-list li a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    transition: all .3s linear;
}

.footer-col p {
    color: #fff;
    font-size: 16px;
}

.copy-right {
    border-top: 1px solid hsl(0deg 0% 100% / 20%);
    padding: 10px 0;
    margin-top: 48px;
}

.copy-right p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
}

.tiles-arrow {
    background: #E6AF5D;
    display: inline-block;
    border-radius: 100px;
    width: 44px;
    height: 44px;
    padding: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.tiles-arrow.tiles_right {
    right: 0;
}

.bread-crumbbanner-section {
    background: linear-gradient(45deg, #30373fb5, #30373f54), url(/assets/images/inner-banner.png);
    padding: 200px 0;
    background-position: center;
    background-attachment: fixed;
}

.bread-crumbbanner-section .row {
    justify-content: center;
}

.page_heading {
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.inner-about-img img {
    padding-left: 0;
}

.grid-row {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, 1fr);
}

.grid_item figure {
    overflow: hidden;
}

.catalogue-info {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: relative;
    width: 90%;
    margin: 0 auto;
    margin-top: -30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all .3s linear;
}

figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s linear;
}

.grid_item:hover img {
    transform: scale(1.2) rotate(4deg);
}

.grid-row2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    display: grid;
}

.contact-page-sec .form-row {
    width: 100%;
}

.address_item .top {
    display: flex;
    gap: 16px;
}

.address_box {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address_item .top i {
    font-size: 30px;
    color: #f0c15d;
}

.address_item .top h4 {}

.address_item .top h4 span {
    display: block;
    font-size: 18px;
    font-weight: 400;
}

.address_item ul li a {
    color: #E6AF5D;
}

.address_item ul {
    margin-top: 26px;
}

.address_item {
    border-bottom: 1px solid #cccccc6e;
    padding-bottom: 36px;
}

.address_item .top h4 span a {
    color: #E6AF5D;
    font-size: 16px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    /* display: flex;
    gap: 20px;
    flex-wrap: wrap; */
}

.image-title {
    background: #fff;
    border: 2px solid #E6AF5D;
    text-align: center;
    padding: 14px;
}

.gallery-row img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.grid_item {
    display: flex;
    flex-direction: column;
}

.image-title h3 {
    font-size: 16px;
}

.gallery-row .showcase {
    border: 2px solid #E6AF5D;
    padding: 12px;
    /* width: calc(100% / 4 - 15px); */
    /* height: fit-content; */
    margin: 0;
    display: flex;
    flex-direction: column;
}

.inner-sec_heading {
    font-size: 30px;
}

h2.sec_heading.inner-sec_heading {
    font-size: 30px;
}

ul.service_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 38px;
}

.service_list li {
    font-size: 20px;
}

.service_list li i {
    color: #E6AF5D;
    margin-right: 10px;
}

.service_sec .row {
    align-items: center;
}

.main-img {
    margin-bottom: 58px;
}

.main-img .sec_heading {
    margin-top: 30px;
}

.mid-heading {
    font-size: 22px;
    margin: 40px 0;
}

.content-sec p {
    font-size: 16px;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f1f1f1;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
}

.accordion-header.bg-color {
    background-color: #E6AF5D;
}

.accordion-content {
    padding: 15px;
    display: none;
    background-color: #fff;
}

.mission-sec {
    background: #1c1b1b;
    position: relative;
    z-index: 1;
}

.mission-sec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background: url(/assets/images/bg-overlay.png);
    z-index: -1;
}

.mission_row {
    display: flex;
    gap: 34px;
}

.mission_box img {
    width: 54px;
    margin-bottom: 18px;
}

.mission_row .heading {
    color: #fff;
}

.mission_row p {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.mission-left {
    position: sticky;
    top: 80px;
    height: 100%;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.mission_row .col-div {
    width: calc(100% / 2 - 15px);
}

.update-content {
    text-align: center;
}