/* my edits start */



  .disabled-link {
    pointer-events: none;
    color: gray;
    cursor: not-allowed;
    text-decoration: none;
  }


.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #212529;
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


.blog-img-inner {
    height: 220px;
    overflow: hidden;
}

.blog-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-product-image {
    border: 2px solid transparent;
    transition: border 0.2s;
}

.small-product-image {
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.small-product-image.active-thumb {
    border-color: #8d3414;
}

#product-detail {
    transition: opacity 0.35s ease, transform 0.35s ease;
    will-change: opacity, transform;
}


/* cart */
/* ===============================
CART PAGE – ISOLATED STYLES
=============================== */
.custom-selects {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    /*background: #fff url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e) no-repeat right .75rem center / 8px 10px;*/
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-controls {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #757575;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    
}

.cart-page .cart-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cart-page .cart-product img {
    width: 50px;
    height: auto;
}

.cart-page .cart-product-title {
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}


.cart-page .col-lg-4 {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
}

.cart-page .bg-light {
  width: 100%;
  max-width: 360px;      /* controls how wide the summary box is */
}

.cart-page .input-groups {
  display: flex;
  width: 100%;
}

.cart-page .input-groups input {
  flex: 1;
  border: 1px solid #ddd;
}

.cart-page .input-groups-append button {
  white-space: nowrap;
}


.p-44 {
}

.input-groups {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.cart-page {
background: #f5f5f5;
/*padding: 40px 0;*/
/*font-family: Arial, sans-serif;*/
}

/* Table */
.cart-page table {
width: 100%;
background: #fff;
border-collapse: collapse;
}

.cart-page th {
background: #2c2c2c;
color: #fff;
padding: 12px;
text-transform: uppercase;
font-size: 13px;
border-bottom: 15px solid #fff;
   
}

.cart-page td {
padding: 15px;
vertical-align: middle;
border-bottom: 1px solid #ddd;
text-align: center;
border-bottom: 15px solid #ddd;
}

.cart-page img {
border-radius: 6px;
}

/* Quantity box */
.cart-page .quantity {
display: flex;
align-items: center;
justify-content: center;
}

.cart-page .quantity input {
width: 40px;
height: 32px;
text-align: center;
border: none;
background: #eee;
}

.cart-page .btn-minus,
.cart-page .btn-plus {
width: 30px;
height: 32px;
border: none;
background: #198754;
color: #fff;
cursor: pointer;
border-radius: 0.25rem;
}

.cart-page .btn-minus:hover,
.cart-page .btn-plus:hover {
background: #0056b3;
}

/* Remove button */
.cart-page .btn-danger {
background: #dc3545;
color: #fff;
border: none;
border-radius: 0.25rem;
padding: 6px 10px;
cursor: pointer;
}

.cart-page .btn-danger:hover {
background: #b02a37;
}

/* Coupon */
.cart-page .input-group input {
padding: 15px;
border: 1px solid #ddd;
width: 100%;
}

.cart-page .input-group button {
background: #198754;
border: none;
color: #fff;
padding: 15px 25px;
cursor: pointer;
}

/* Summary box */
.cart-page .cart-summary {
background: #fff;
padding: 25px;
}

.cart-page .cart-summary h6,
.cart-page .cart-summary h5 {
margin: 0;
}

.cart-page .cart-summary .line {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}

.cart-page .checkout-btn {
width: 100%;
padding: 0px;
background: #198754;
color: #fff;
border: none;
margin-top: 20px;
font-weight: bold;
cursor: pointer;
}

.cart-page .checkout-btn:hover {
background: #0056b3;
}

/* Back to top */
.cart-page .back-to-top {
position: fixed;
right: 20px;
bottom: 20px;
background: #198754;
color: #fff;
padding: 10px 14px;
border-radius: 50%;
text-align: center;
}

.cart-page .mb-30 { margin-bottom: 30px; }
.cart-page .p-30 { padding: 30px; }
.cart-page .bg-light { background: #ffffff; }
.cart-page .bg-secondary { background: #f5f5f5; }
.cart-page .border-bottom { border-bottom: 1px solid #ddd; }

.cart-page .d-flex { display: flex; }
.cart-page .justify-content-between { justify-content: space-between; }

.cart-page .btn-block { width: 100%; }

.cart-page .section-title {
font-weight: bold;
margin-bottom: 20px;
/*border-bottom: 2px solid #198754;*/
display: inline-block;
}

/* ===== Quantity Control ===== */
.qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f8f8;
    color: #333;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #8b3e19; /* your brand color */
    color: #fff;
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-value {
    width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    user-select: none;
}

/* my edits start */



button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.cart-badge {
position: absolute!important;
    top: 25px;
    right: 3px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 50%;
}


#archive-events {
    min-height: 200px;
    transition: opacity .25s ease, transform .25s ease;
}

#archive-events.loading {
    opacity: 0.4;
    transform: translateY(10px);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.product-card { position: relative; }

.card-badges {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 9999px;
}

.card-badges .special-event-badge {
    position: absolute;
    bottom: 140px;
    right: 0;
    padding: 3px 10px;
    border-radius: 999px 0 0 999px;
    font-size: 12px;
    font-weight: 600;
}

.product-image-wrapper img {
    object-fit: cover;
}

.secondary-img {
    opacity: 0;
    transition: opacity .35s ease;
}

.product-card:hover .secondary-img {
    opacity: 1;
}








/* Mobile: always show colored logo */
@media (max-width: 768px) {
    .logo {
        content: url('/img/logo-color.svg'); /* overrides src */
    }
}

.what-we-offer {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.offer-intro {
  /*font-size: 1.15rem;*/
  font-weight: 500;
  margin-bottom: 1.8rem;
  color: #05122b;
}

.offer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.6rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--bs-primary) ;

}

.hl961 {
   color: var(--bs-primary) ; 
}



.offer-text {
  /*font-size: 1rem;*/
  color: #05122b;
  margin-bottom: 1rem;
}



@media (max-width: 768px) {

  .what-we-offer {
    padding: 0 15px;
  }

  .offer-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .offer-title {
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    margin-top: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .offer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

}









@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}


/* Flex container for products grid */
#products-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

/* Each product column */
.product-col {
    padding: 0 10px;
    margin-bottom: 20px;

    /* Default: 2 per row (mobile) */
    flex: 0 0 50%;
    max-width: 50%; 
}

/* Desktop: 5 per row */
@media (min-width: 992px) {
    .product-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Corner badges on main product image */
.card.position-relative {
    overflow: hidden;
}

.card.position-relative .badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.25rem;
}

.card.position-relative .badge i {
    font-size: 0.8rem;
}

/* wedding */ 
/* Limit modal width and make responsive */
.modal-gallery {
    width: 90%;          /* default width */
    max-width: 900px;    /* max width for large screens */
    margin: 1.75rem auto; /* center vertically with some top/bottom space */
}

/* Make modal images scale correctly */
.modal-body img {
    width: 100%;
    height: auto;
    max-height: 70vh;    /* prevents too tall images on desktop */
    object-fit: contain;
    display: block;
    margin: auto;
}

/* Optional: add scroll if content is taller than screen */
.modal-body {
    overflow-y: auto;
}

/* Thumbnail slider responsive */
.port-slider-nav img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.description {
    overflow: hidden;
}

/* ================================================= */
/* ---------------- Portfolio Style ---------------- */
/* ================================================= */

#portfolio {
    position: relative;
    padding: 50px 0 60px 0;
}

.port-item {
	overflow: hidden;
	padding: 0px;
}

.port-item img{
	height: 100%;
	width: 100%;
}

.modal .modal-header button {
    margin: 0 auto;
    padding: 0px 8px 5px 8px;
    font-size: 25px;
    border-radius: 20px;
    background: #8D3414;
    color: #fff;
}

.modal .modal-body img {
    height: 100%;
    width: 100%;
}

.modal .modal-body h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal .modal-body .download-content {
    font-size: 14px;
}

.custom-control-label:before{
    background: #FF1493;
    border: none;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background: #222222;
    border: none;
}

.custom-radio .custom-control-input:focus~.custom-control-label::before,
.custom-checkbox .custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
    border: none;
}

.modal .modal-body .download-content button {
    display: inline-block;
    padding: 8px 15px;
    background: #FF1493;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    border: none;
}

.modal .modal-body .download-content button:hover {
    color: #FF1493;
    background: #222222;
}

.modal .modal-body .download-content button i {
    margin-right: 5px;
}

.modal .port-slider-nav .slick-track {
    padding: 30px 0 15px 0;
}

.modal .port-slider-nav .slick-center img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.box3:hover:before {
    border-top: 3px solid #FF1493;
    border-bottom: 3px solid #FF1493
}

.box:hover:after {
    border-left: 3px solid #FF1493;
    border-right: 3px solid #FF1493
}

.box3 .title {
    font-weight: 700;
    color: #FF1493;
}

.box3 .icon li a {
    margin-top: 10px;
    background: #FF1493;
}

/* ================================================= */
/* ----------------- Booking Style ----------------- */
/* ================================================= */
/* ================================================= */
/* ------------------ Client Style ----------------- */
/* ================================================= */

#client {
    position: relative;
    padding: 45px 0 40px 0;
}

#client .client-cols {
    position: relative;
}

#client .client-col {
    background: #f2f2f2;
    border-radius: 6px;
    margin-bottom: 20px;
}

#client .client-col .img {
    position: relative;
    border-radius: 6px 6px 0 0;
    transition: .3s;
    overflow: hidden;
}

#client .client-col img {
    border-radius: 6px 6px 0 0;
    transition: .3s
}

#client .client-col:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


#client .client-col .photo {
    width: 180px;
    height: 48px;
    padding-top: 10px;
    text-align: center;
    position: absolute;
    background: #f2f2f2;
    text-align: center;
    border-radius: 30px 30px 0 0;
    left: calc( 50% - 90px);
    bottom: -4px;
    transition: 0.3s;
}

#client .client-col .photo a {
    font-size: 24px;
    line-height: 1;
    color: #666;
    transition: 0.3s;
    font-weight: 700;
}

#client .client-col:hover .photo {
    background: #8D3414;
}

#client .client-col:hover a {
    color: #FFFFFF;
}

#client .client-col h3 {
    text-align: center;
    margin: 15px 0 10px 0;
    font-size: 24px;
}

#client .client-col p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin-bottom: 0;
    padding: 0 30px 25px 30px;
}

#about:hover .section-header::after,
#portfolio:hover .section-header::after,
#booking:hover .section-header::after,
#subscribe:hover .section-header::after,
#client:hover .section-header::after,
#call-us:hover .section-header::after,
#contact:hover .section-header::after,
#login:hover .section-header::after {
    color: #FF1493;
}


.client-col p {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.description {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* show first 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    display: inline-block;
    margin-top: 5px;
    color: #007bff;
    cursor: pointer;
}


/* Container for social buttons */


.guide-hero {
    width: 100%;          /* full width on small screens */
    max-width: 400px;     /* cap width on large screens */
    height: auto;         /* maintain aspect ratio */
    display: block;
    margin: 0 auto 30px auto; /* center + spacing below */
    border-radius: 12px;
}

.guide-content {
    font-size: 16px; /* desktop default */
}


/* Optional: slightly smaller on very small screens */
@media (max-width: 576px) {
    .guide-hero {
        max-width: 100%;   /* mobile fills container width */
        margin-bottom: 20px;
    }
}



.xx-1 {
        border-left: 4px solid #198754;
}

.event-countdown {
    font-weight: bold;
    color: #ff4d00;
    margin-top: 0px;
    font-size: 1.1rem;
    

}
.event-countdown span {
    margin-right: 5px;
}

.social-share {
    display: flex;
    gap: 10px; /* space between buttons */
}


     .terms-note {
      margin-top: 30px;
      padding: 15px;
      background: rgba(25, 135, 84, 0.2); 
      border-left: 4px solid #198754;
      border-bottom-right-radius: 0px;
      border-bottom-left-radius: 0px;
      border-top-left-radius:9px;
      border-top-right-radius:9px;
      font-size: 1rem;
      font-weight: 600;
    } 
    
@font-face {
    font-family: 'LemonMilk';
    src: url('/fonts/LEMONMILK.woff2') format('woff2'),
         url('/fonts/LEMONMILK.woff') format('woff'),
         url('/fonts/LEMONMILK.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



/* Style for each social button */
.social-share a,
#shareBtn {
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-share a:hover,
#shareBtn:hover {
    opacity: 0.6;
}

.share-icon i {
    font-size: 18px;
}

#shareBtn {
    border-radius: 30px;
    padding: 6px 14px;
}

/* Platform-specific colors */
.social-share a.facebook { background: #3b5998; }
.social-share a.twitter { background: #1da1f2; }
.social-share a.whatsapp { background: #25d366; }
.social-share a.copy { background: #6c757d; }

/* Optional: icon inside button */
.social-share a i {
    font-size: 18px;
}

/* calculator start */
.easy { color: #28a745; }        /* green */
.easyplus { color: #6cc070; }
.moderate { color: #ffc107; }   /* yellow */
.advanced { color: #fd7e14; }   /* orange */
.difficult { color: #dc3545; }  /* red */

.result {
    background-color: #ffffff; /* white background */
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;   /* shrink-wrap content */
    min-width: 200px;        /* optional, nice for layout */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* subtle shadow */
    color: #000;             /* default text color */
}

.custom-border::before {
  border: 1px solid white;
}

/* calculator end */


/* <!-- CSS --> */
.about-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: #198754;
    /* نفس primary */
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}



.next-destination-post {
    font-family: 'Arial', sans-serif;
    color: #1F3D2B;
    background: #f5f5f5;
    padding: 50px 20px;
}

.next-destination-post .post-header h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #1F3D2B;
}

.next-destination-post .subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
    color: #3c3c3c;
}

.slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 10px;
}

.slides img {
    width: 100%;
    display: none;
}

.slides img.active {
    display: block;
}

.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(141, 52, 20, 0.7);
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.slider .prev {
    left: 10px;
}

.slider .next {
    right: 10px;
}

.post-details h3 {
    margin-top: 25px;
    color: #1F3D2B;
}

.details-list {
    list-style: none;
    padding-left: 0;
}

.details-list li {
    margin: 10px 0;
}

.cta {
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
    color: #8D3414;
}


.offer-sticker {
    background: #fc1414;
    /* red sticker */
    color: #fff;
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.offer-ribbon {
    position: absolute;
    /* top: 10px; */
    /* left: -30px; */
    background: #ff4d4f;
    /* red color */
    color: white;
    font-weight: bold;
    /* padding: 5px 20px; */
    /* font-size: 0.9rem; */
    text-align: center;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;

    font-size: 1rem;
    padding: 6px 39px;
    top: 97px;
    left: -32px;
}

.mountain-info {
    text-align: left;
}

.logo,
.logo-svg {
    width: 150px;
    height: auto;
    transition: opacity 0.3s ease; /* optional fade effect */


}


/* my edits end  */




/*** Spinner Start ***/
/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}




.section-title--alt::after {
    left: 10px;
}





/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}
/*** Navbar ***/
/*.nav-x {*/
/*    font-family: 'Roboto', sans-serif;*/
/*    position: relative;*/
/*    padding: 10px 15px;*/
/*    color: var(--bs-white) !important;*/
/*    font-size: 17px;*/
/*    font-weight: 400;*/
/*    outline: none;*/
/*    transition: .5s;*/
/*}*/


/*.nav-x {*/
/*    padding: 10px 15px;*/
/*    color: var(--bs-dark) !important;*/
/*}*/

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {

    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 600px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(31, 61, 43, 0.5), rgba(31, 61, 43, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}

.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}

/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(31, 61, 43, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}

/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(31, 61, 43, 0.6) rgba(31, 61, 43, 0.6) rgba(31, 61, 43, 0.6) rgba(31, 61, 43, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 70px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: start;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(31, 61, 43, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(31, 61, 43, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
    margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(68, 93, 115, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(31, 61, 43, .8), rgba(31, 61, 43, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(31, 61, 43, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}

/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(31, 61, 43, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}

/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(31, 61, 43, .6), rgba(31, 61, 43, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}

/*** copyright end ***/