@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..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&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --theme: #901C24;
    --black: #000;
    --gray: #696969;
    --secondary: #97989F;
    --dark-gray: #181A2A;
    --white: #ffffff;
    --blue: #4B6BFB;
    --rounded-10: 0.625rem;
    --rounded-6: 0.375rem;
    --font-work-sons: "Work Sans", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-playfair: "Playfair", serif;
}


/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body {
    font-size: 1.15rem;
    font-family: "Poppins", sans-serif;
    font-style: 400;
    background: #F2EFED;
}

/*--------------------------------------*/

/*Typography
/*--------------------------------------*/

h1 {
    font-family: "Playfair", serif;
    font-size: 3.563rem;
    font-weight: 400;
}

h2 {
    font-family: "Playfair", serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--theme);

}

h3 {
    font-family: "Playfair", serif;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 400;
}

h4 {
    font-family: "Playfair", serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--theme);
}

h5 {
    font-family: "Playfair", serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--theme);
}

h5 {
    font-family: "Playfair", serif;
    font-size: 1rem;
    font-weight: 500;
}

h6 {
    font-family: "Playfair", serif;
}

.sub-title {
    color: #000;
    font-size: 1.313rem;
    font-weight: 600;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
}

ul li a {
    text-decoration: none;
}

/*--------------------------------------*/

/*Buttton
/*--------------------------------------*/
.btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    padding: .75rem 2.5rem;
    border-radius: .25rem;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all .5s;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn.btn-primary {
    background: var(--theme);
    color: var(--white);

}

.btn.btn-primary:hover {
    background: var(--black);
}
.btn.btn-dark{
     background: var(--black);
     text-align:center;
     text-decoration:none;
     padding: .75rem 1.2rem;
}
.btn.btn-dark:hover {
    background: var(--white);
    color: var(--black);
}

.btn.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn.btn-white:hover {
    background: var(--theme);
    color: var(--white);
}

.btn.btn-sm {
    font-weight: 300;
    padding: .5rem 1.25rem;
    font-size: .9rem;
}

.btn-close {
    position: absolute;
    z-index: 1;
    opacity: 1;
    color: #fff;
    right: 1rem;
    top: 1rem;
    padding: .75rem;
    background: url(../images/close-icon.svg) no-repeat center;
    background-color: var(--theme);
    top: 1rem;
    right: 1rem;
}

.btn-close:hover {
    opacity: .8;
}

.sepraion {
    padding-top: 100px;
}

.z-index-9 {
    z-index: 9;
}

.text-justify {
    text-align: justify;
}

date {
    font-size: 1rem;
    color: var(--secondary);
}

.modal-content {
    border-radius: 0;
    box-shadow: 0px 0px 20px 1px rgba(144, 28, 36, .3)
}

/*--------------------------------------*/

/*Accordion
/*--------------------------------------*/
.accordion-item {
    margin-bottom: 1.5rem;
    padding: 1.15rem 1rem;
    border: 0;
    min-height: 7.5rem;
}

.accordion-button {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-playfair);
}

.accordion-button span {
    padding-right: 6rem;
}

.accordion-body {
    font-size: 1rem;
    color: var(--gray);
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
    color: var(--black);
}

.accordion-item:last-of-type,
.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type {
    border-radius: 0;
}

.accordion-button::after {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 25rem;
    background-color: var(--theme);
    display: flex;
    background-position: center;
    background-image: url(../images/arrow-down.svg);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/arrow-down.svg);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

/*--------------------------------------*/

/*Header
/*--------------------------------------*/


.navbar-brand img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-top {
    background: var(--theme);
    padding: .75rem 0;
}

.header-bottom {
    transition: all .5s;
}


.header-top,
.header-bottom {
    transition: all .4s linear;
}


.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 105;
}

.header-top ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
    grid-gap: 20px;
    align-items: center;
}

.header-top li {
    color: var(--white);
    font-size: .85rem;
    font-weight: 400;
    line-height: 0;
}

.header-top li a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    grid-gap: 10px;
    transition: all .3s;
    font-weight: 500;
}

.header-top li a:hover {
    text-decoration: underline;
}

.header-top svg {
    height: 18px;
    width: 18px;
    transition: all .3s;
}

ul.social-media li a:hover {
    opacity: .5;
}

.navbar-brand {
    height: 100px;
    width: auto;
}

.navbar {
    padding: 1rem 0;
}

.navbar-nav.primary-menu {
    flex-direction: row;
}

.navbar-nav.primary-menu .nav-link {
    padding: .5rem .5rem !important;
}

.navbar.navbar-expand-lg.bg-light {
    background-color: #F2EFED !important;
    padding: 20px 0;
}

.navbar .nav-link {
    font-family: "Poppins", sans-serif;
    color: var(--theme);
    font-size: 1rem;
    opacity: 1;
    font-weight: 400;
    padding: .5rem 1rem;
    margin: 0 .85rem;
    transition: all .5s;
    text-transform: uppercase;
}
.navbar .nav-link:hover {
    color: var(--black);
}
.navbar .nav-link.active{
    font-weight: 600;
    color: var(--black);
}
.navbar-nav .nav-link.show {
    color: var(--theme);
}
.fixed-top.sticky .header-top {
    opacity: 0;
}

.fixed-top.sticky .header-bottom {
    margin-top: -73px;
    position: fixed;
    width: 100%;
    box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, .1);
}
.offcanvas{
    background: white;
}
.offcanvas .nav-link {
    margin: 0;
    border-bottom: 1px solid var(--theme);
    font-size: 1rem;
    padding: .75rem 1.5rem;
    color: var(--theme);
}

.offcanvas .nav-link:hover {
   /* background: var(--theme);*/
    color: var(--theme);
}

.dropdown-menu {
    border: 0;
    padding: 0;
    border-radius: 0;
}

.dropdown-item {
    padding: .5rem 1.5rem;
    text-transform: uppercase;
    font-size: .9rem;
}

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--theme);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    margin-left: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    padding: 0;
}

.navbar-toggler-icon {
    background: url(../images/toggler-icon.svg) no-repeat center;
}


/*--------------------------------------*/

/*Hero Banner Section
/*--------------------------------------*/
main {
    margin-top: 177px;
}

.hero-banner {
    position: relative;
    display: flex;
    align-items: center;

}

.hero-slider img {
    height: 650px;
    object-fit: cover;
    object-position: center;
}

.hero-slider .owl-dots {
    position: absolute;
    z-index: 99;
    width: 100%;
    bottom: 20px;

}

.update-news{
    background: var(--theme);
    box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, .1);
    line-height: 1.4;
    font-size: .9rem;
    color: var(--white);
}
.update-news .update-title{
    font-family: var(--font-playfair);
    background: var(--white);
    color: var(--theme);
    padding: .5rem;
    min-width: fit-content;
    font-weight: 700;
    font-size: 1rem;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    background: var(--theme);
    color: #ffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.hero-banner button.owl-prev {
    position: absolute;
    left: 50px;
    top: 40%;
}
.hero-banner button.owl-next {
    position: absolute;
    right: 50px;
    top: 40%;
}
.hero-banner .owl-prev span {
    display: block;
    color: #ffff;
    font-size: 32px;
    line-height: 24px;
}
.hero-banner .owl-next span {
    display: block;
    color: #ffff;
    font-size: 32px;
    line-height: 24px;
}
/*--------------------------------------*/

/*Our Legacy Section
/*--------------------------------------*/
.our-legacy-block {
    min-height: 365px;
    background: url(../assets/img/legacy1.png) no-repeat center;
    background-size: cover;
    border-radius: 0.625rem;
    overflow: hidden;
    padding: 4rem 12rem;
}

.our-legacy-block::before {
    background-color: rgba(0, 0, 0, .38);
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;

}

/*--------------------------------------*/

/*Principal Section
/*--------------------------------------*/
.principal-block {
    border: 1px solid var(--theme);
    border-radius: var(--rounded-10);
    background: var(--white);
    padding: 2.5rem 1.5rem;

}

/*--------------------------------------*/

/*Gallery Section
/*--------------------------------------*/
.gallery-block {
    cursor: pointer;
    position: relative;
}

.gallery-block .img-fluid {
    width: 100%;
    object-fit: cover;
}

.gallery-block .h-full {
    height: 420px
}

.gallery-block .h-half {
    height: 198px;
}

.gallery-block .img-widget {
    margin-bottom: 1.5rem;
}

.gallery-block .img-widget::before {
    content: '+';
    background: rgba(0, 0, 0, .5);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -moz-transition: all .4s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.gallery-block .img-widget:hover::before {
    opacity: 1;
}

/*--------------------------------------*/

/*Latest News Section
/*--------------------------------------*/
.latest-news-section .card {
    border: 1px solid var(--theme);
    padding: 1rem;
    border-radius: var(--rounded-10);
    cursor: pointer;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -moz-transition: all .4s linear;
}

.latest-news-section .card:hover {
    background: var(--theme)
}

.latest-news-section .card .card-img-top {
    border-radius: .5rem;
    height: 220px;
    border: 0;
    object-fit: cover;
}

.latest-news-section .card:hover .card-img-top {
    filter: grayscale(100%);
}

.latest-news-section .card .card-title {
    background: rgba(75, 107, 251, 0.05);
    display: inline-block;
    color: var(--blue);
    padding: .325rem .75rem;
    border-radius: var(--rounded-6);
    font-family: var(--font-work-sons);
    font-weight: 500;
}

.latest-news-section .card:hover .card-title {
    background: var(--white);
    color: var(--theme);
}

.latest-news-section .card .card-text {
    color: var(--dark-gray);
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: var(--font-work-sons);
    font-weight: 600;
}

.latest-news-section .card:hover date,
.latest-news-section .card:hover .card-text {
    color: var(--white);
}

.latest-news-section .item {
    margin-left: 1px;
}

.news-slider .owl-nav {
    position: absolute;
    top: -3.5rem;
    right: 0;
}

.news-slider .owl-nav button.owl-prev span,
.news-slider .owl-nav button.owl-next span {
    display: none;
}

.news-slider .owl-nav button.owl-prev,
.news-slider .owl-nav button.owl-next {
    border: 1px solid var(--theme);
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 1;
    border-radius: 3rem;
    margin-left: .75rem;
    font-size: 2rem;
}

.news-slider .owl-nav button.owl-prev {
    background-image: url(../images/prev-hover.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.news-slider .owl-nav button.owl-next {
    background-image: url(../images/next-hover.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.news-slider .owl-nav button.owl-prev:hover,
.news-slider .owl-nav button.owl-next:hover {
    background: var(--theme);
}

.news-slider .owl-nav button.owl-prev:hover {
    background-image: url(../images/prev-hover.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.news-slider .owl-nav button.owl-next:hover {
    background-image: url(../images/next-hover.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/*--------------------------------------*/

/*About
/*--------------------------------------*/
.inner-banner {
    background: var(--theme);
    padding: 150px 0;
    margin-top: 195px;
}
.inner-banner h2{
    color: #fff;
    margin: 0;
    line-height: 0;
}    
.pb-100 {
    padding-bottom: 100px;
}
/*--------------------------------------*/

/*About
/*--------------------------------------*/
.event-list {
    display: flex;
    grid-gap: 10px;
}
.event-right-img {
    height: 80px;
    width: 100px;
    border-radius: 12px;
    overflow: hidden;
}
.event-right-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    -webkit-transition: 1s ease;
    transition: 1s ease;
}
.event-content h4 {
    font-family: var(--font-work-sons);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--dark-gray);
    height: 45px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-details .card {
    border: 1px solid var(--theme);
    padding: 1rem;
    border-radius: var(--rounded-10);
    cursor: pointer;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -moz-transition: all .4s linear;
}
.news-details .card .card-text {
    color: var(--dark-gray);
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: var(--font-work-sons);
    font-weight: 600;
}
.event-content {
    width: calc(100% - 80px);
}
/* -----------------------------------
      Gallery Section
--------------------------------------*/
.portfolio-section {
  padding: 50px 0;
}
.portfolio-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.portfolio-menu {
  text-align: center;
}
.control {
    font-size: 15px;
    font-weight: 600;
    background: #1D1D1D;
    color: #fff;
    border-radius: 8px;
    padding: 6px 25px;
    margin: 5px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}
.mixitup-control-active {
  color: #fff;
  background: var(--theme);
}
.fancybox-container button:focus {
  outline: 0;
  box-shadow: none;
}
.portfolio-item {
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
}
.portfolio-item li {
    position: relative;
    list-style: none;
}
.pd {
  padding: 0;
  padding: 10px;
}
.pd img {
    height: 250px;
    transition: all 0.5s;
    width: 100%;
    border-radius: 8px;
}
.banner.inner-banner{
    height: 300px;
}
.magnify-icon img{
    width: 16px;
    height: 16px;
    margin-top: 10px;
    object-fit: contain;
}
.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
  border-radius: 8px;
}
.overlay-content {
    padding-top: 30px;
}
button.fancybox-button.fancybox-button--thumbs {
    display: none;
}
.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}
.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}
.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}
.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid var(--theme);
  border-right: 1px solid var(--theme);
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}
.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid var(--theme);
  border-left: 1px solid var(--theme);
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}
.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}
.portfolio-overlay .category {
  margin-top: 70px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: var(--theme);
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}
.portfolio-overlay .magnify-icon:hover {
  background: #000;
}
.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}
/*--------------------------------------*/

/*Footer
/*--------------------------------------*/
footer {
    background: var(--theme);
}

.footer-list {
    font-size: .9rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}


.footer-list li {
    color: var(--white);
    font-size: .9rem;
    font-weight: 400;
    padding-bottom: 15px;
    line-height: 2.2;
}

.footer-list a {
    color: var(--white);
    font-size: .9rem;
    font-weight: 400;
}

.footer-list a {
    color: var(--white);
    font-size: .9rem;
    font-weight: 400;
    transition: all .3s;
}

.footer-list a:hover {
    color: var(--black);
}

ul.social-media {
    grid-gap: 15px;
}

ul.footer-menu {
    display: flex;
    grid-gap: 20px;
    justify-content: end;
}

ul.footer-menu a {
    color: var(--white);
    font-size: .9rem;
    font-weight: 400;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #FFFFFF26;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: .9rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}
.navbar-nav .dropdown-menu {
    position: absolute;
}
/*--------------------------------------*/

/*Responsive
/*--------------------------------------*/
@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end{ right:0; left: auto;  }
    .navbar .nav-item .dropdown-menu{  display:block; opacity: 0;  visibility: hidden; margin-top:0;  }
    .navbar .nav-item:hover .nav-link{ color: var(--theme);  }
    .navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
    .navbar .dropdown-menu.fade-up{ top:180%;  }
    .navbar .nav-item:hover .dropdown-menu{ transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
    }
@media all and (max-width: 1399px) {
    .navbar-brand {
        height: 90px;
    }

    .navbar-nav.primary-menu .nav-link {
        padding: .5rem .25rem !important;
    }
}

@media all and (max-width: 1199px) {
    .navbar-brand {
        height: 50px;
    }
    .header-top li a {
    font-size: 13px;
}
.header-top li a {
    color: var(--white);
    font-size: 12px;
    font-weight: 300;
    display: inline-flex
;
    align-items: center;
    grid-gap: 6px;
}
    .navbar-nav.primary-menu .nav-link {
        padding: .5rem 0rem !important;
        font-size: .8rem;
        margin: 0 10px;
    }

    .hero-slider img {
        height: 432px;
    }

    main {
        margin-top: 120px;
    }

    .our-legacy-block {
        padding: 4rem 6rem;
    }

    .gallery-block .h-full {
        height: 320px;
    }

    .gallery-block .h-half {
        height: 148px;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    h4 {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }
}
@media all and (min-width: 991px) {
.navbar-toggler-icon {
    display: none;
}
}
@media all and (max-width: 991px) {
    .sepraion {
        padding-top: 60px;
    }
.navbar-nav .dropdown-menu {
    position: static;
    width: 100%;
}
    .hero-slider img {
        height: 360px;
    }
    .d-flex.align-items-center.justify-content-end {
    justify-content: start !important;
    margin-top: 10px;
}
.fixed-top.sticky .header-bottom {
    margin-top: -100px;
    position: fixed;
    width: 100%;
    box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, .1);
}
}

@media all and (max-width: 767px) {

    .header-top ul.social-media {
        display: none;
    }

    .header-top ul {
        display: block;
        list-style: none;
        margin-bottom: 0 !important;
        grid-gap: 20px;
        align-items: center;
    }

    .header-top ul li {
        padding-bottom: 10px;
    }

    .header-top ul li:last-child {
        padding-bottom: 0;
    }

    .fixed-top.sticky .header-bottom {
        margin-top: -200px;
    }

    main {
        margin-top: 152px;
    }

    .hero-slider img {
        height: 300px;
    }

    .our-legacy-block {
        padding: 4rem 3rem;
    }
    ul.login-btn.me-4 {
    display: block;
    margin: 0 !important;
    margin-top: 10px !important;
}
.d-flex.align-items-center.justify-content-end {
    justify-content: flex-start !important;
}
.hero-banner button.owl-next {
    top: 55%;
}
.hero-banner button.owl-prev {
    top: 55%;
}
.btn.btn-dark {
    background: var(--black);
    text-align: center;
    text-decoration: none;
    padding: .75rem 1.2rem;
    width: 100%;
}
.hero-banner {
    margin-top: 280px;
}
.inner-banner {
    padding: 80px 20px;
        margin-top: 280px;
}
}

@media (max-width: 567px) {
    .navbar {
        padding: .5rem 0;
    }

    .navbar-brand {
        height: 70px;
    }

    .hero-slider img {
        height: 200px;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 2.3rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    h4 {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }

    .accordion-button span {
        padding-right: 2rem;
    }

    .gallery-block .h-full {
        height: 250px;
    }
    .gallery-block .h-half {
        height: 112px;
    }
    .footer-list {
        max-width: 300px;
        margin: auto;
    }
}
  .navbar .nav-link {
      font-family: "Poppins", sans-serif;
      color: var(--theme);
      font-size: 14px;
      opacity: 1;
      font-weight: 400;
      padding: .5rem .4rem;
      margin: 0 .4rem;
      transition: all .5s;
      text-transform: uppercase;
    }
    .navbar-nav.primary-menu .nav-link {
      padding: .5rem .5rem !important;
    }