:root {
  --primary-color: #1f439c;
  --primary-color-dark: #162e6c;
  --primary-color-light: #3d5fa8;
  --secondary-color: #56c9f3;
  --secondary-color-dark: #2fa6d6;
  --secondary-color-light: #8be2ff;
  --primary-font: 'Mulish', sans-serif;
  --footer-bg: #002a87;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color 0.5s;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*:focus {
  outline: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #cccccc;
}

::-webkit-scrollbar-thumb {
  background: #505050;
  border-radius: 5px;
}

body {
  background: #fffbfb;
  color: #151640;
  font-family: var(--primary-font);
  font-optical-sizing: auto;
  font-size: 18px;
  font-style: normal;
  line-height: 1.8rem;
  visibility: visible;
  -webkit-transition: opacity 0.24s ease-in-out;
  -moz-transition: opacity 0.24s ease-in-out;
  transition: opacity 0.24s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #041126;
  font-family: var(--primary-font);
  font-weight: 600;
  font-style: normal;
  line-height: 120%;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 0.5rem;
}

small {
  font-size: 0.833rem;
}

table,
pre,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  /* width: 100%; */
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
}

.img-fluid {
  width: 100%;
}

a,
a:hover,
button,
button:hover,
input[type="submit"],
input[type="submit"]:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:focus {
  text-decoration: none;
}

button,
input,
select,
select option,
textarea,
input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.active-text,
.active-link,
.active-link:focus {
  color: #1f439c;
  font-weight: 400;
  display: inline-block;
}

.active-link:hover {
  text-decoration: none;
  color: #1f439c;
}

a,
dt {
  color: #041126;
  outline: none;
  text-decoration: none;
}

a:focus,
a:hover,
dt:hover,
dt:focus {
  color: #041126;
  text-decoration: none;
}

.btn {
  outline: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:active,
.btn.active {
  outline: none;
  box-shadow: none;
}

/******** custom-btn ********/
.buttons button {
  padding: 0 25px;
  border-radius: 4px;
  min-width: 140px;
  height: 40px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: solid 2px #1f439c;
  cursor: pointer;
}

.buttons button:after,
.buttons button:before {
  width: 0%;
  height: 0%;
  content: "";
  position: absolute;
  border-radius: 100%;
}

.buttons button:after {
  transition: all 0.5s ease;
  background-color: white;
}

.buttons button:before {
  transition: all 0.5s ease-out;
  background: #1f439c;
}

.buttons button span {
  z-index: 1;
  transition: all 0.3s ease-out;
}

.buttons button.cta-01 {
  background: linear-gradient(90deg, #1f439c 0%, #1582ee 100%);
  color: white;
}

.buttons button.cta-02 {
  background-color: transparent;
  color: #1f439c;
}

.buttons button.cta-02:after {
  background: linear-gradient(90deg, #1f439c 0%, #1f439c 100%);
}

.buttons button:hover.cta-01 {
  color: #1f439c;
}

.buttons button:hover.cta-02 {
  color: white;
}

.buttons button:hover:after,
.buttons button:hover:before {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.buttons button:hover:after {
  transition: all 0.7s ease-in;
}

.buttons button:hover:before {
  transition: all 0.5s ease-in;
}

.custom-btn {
  position: relative;
  background-color: #1f439c;
  border-radius: 0;
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 32px;
  transition: all 0.3s ease;
  appearance: none;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.custom-btn:hover,
.custom-btn:focus {
  background-color: #1f439c;
  color: #fff;
}

.custom-btn span {
  line-height: 24px;
  font-size: 16px;
  margin-left: 8px;
}

.btn_read {
  position: relative;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid #1f439c;
  outline: none;
  color: #1f439c;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 24px;
  transition: all 0.3s ease;
  appearance: none;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.btn_read a {
  color: #1f439c;
}

.read__btn {
  color: #0071bc;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
}

.read__btn span {
  color: #0071bc;
  font-size: 18px;
  margin-left: 10px;
}

.btn-read {
  display: inline-block;
  position: relative;
  color: #0071bc;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: capitalize;
}

.btn-read span {
  font-size: 18px;
  margin-left: 10px;
}

.btn-read:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0071bc;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.btn-read:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.btn-read:hover,
.btn-read:focus {
  background-color: none;
  border: none;
  box-shadow: none;
  outline: none;
  color: #005f9e;
}

.form-group {
  position: relative;
}

input,
textarea,
select,
button {
  outline: none;
  font-size: 0.875rem;
}

input.form-control,
.form-select,
textarea.form-control,
select.form-control,
.form-select {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #939393;
  height: 50px;
  font-size: 0.875rem !important;
  padding: 10px !important;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgb(122, 122, 122);
  outline: none;
  box-shadow: none;
  border-color: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -moz-webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-webkit-appearance: textfield;
}

textarea.form-control {
  height: 100px;
}

.form-control.ndate-picker {
  background-color: #ffffff;
}

.form-label {
  margin-bottom: 0.2rem;
}

label {
  display: inline-block;
  font-weight: 400;
  font-size: 0.833rem;
  margin-bottom: 0;
}

.title-widget {
  position: relative;
  z-index: 1;
}

.title-widget h1,
.title-widget h2,
.title-widget h3,
.title-widget h4,
.title-widget h5,
.title-widget h6 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  line-height: 36px;
  text-transform: capitalize;
  -webkit-animation: animatedIntro 1.5s;
  -ms-animation: animatedIntro 1.5s;
  -o-animation: animatedIntro 1.5s;
  animation: animatedIntro 1.5s;
}

.title-widget h1 span,
.title-widget h2 span,
.title-widget h3 span,
.title-widget h4 span,
.title-widget h5 span,
.title-widget h6 span {
  color: #1f439c;
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.tit__sm {
  color: #1f439c;
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.position-relative {
  position: relative !important;
  z-index: 2;
}

.py-100 {
  padding: 100px 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.py-80 {
  padding: 80px 0;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.py-60 {
  padding: 60px 0;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.py-50 {
  padding: 50px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.py-30 {
  padding: 30px 0;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.py-20 {
  padding: 20px 0;
}

.pt-20 {
  padding-top: 20px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.p-0 {
  padding: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-10 {
  margin-bottom: 10px;
}

hr {
  background-color: rgba(245, 245, 245);
  opacity: 1;
}

.radius-8 {
  border-radius: 8px;
}

.line {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  border-bottom: 1px solid rgb(245, 245, 245);
}

.site-bg {
  background-color: #2e3192;
}

.site-light {
  background-color: rgba(46, 49, 146, 0.04);
}

.section-content {
  position: relative;
  padding: 50px 0 50px 0;
}

main.section-all {
  min-height: 700px;
}

.container-fluid {
  padding: 0 90px;
}

/******** header ********/

.top-info p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 6px 0;
  margin-bottom: 0;
}

.top-info p span {
  color: white;
}

.top-info p a {
  color: white;
}

.top-info p a:hover {
  color: #fafafa;
  text-decoration: underline;
}

/* Separated header sections styling */
.registration-info {
  text-align: left !important;
  font-size: 13px;
}

.expert-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-info {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 6px 0;
  margin-bottom: 0;
}

.expert-link {
  color: #56c9f3 !important;
  font-weight: 600;
  text-decoration: none;
}

.expert-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.header-container {
  position: relative;
  background: rgb(255, 255, 255);
  width: 100%;
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: stickyTransition;
  animation-name: stickyTransition;
}

/* .sticky .logo-widget {
	width: 100px;
	height: 120px;
} */

.logo-widget {
  position: relative;
  margin: 10px 0;
}

.nav_rit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  float: right;
}

.h-rit {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 22px;
  margin-right: 20px;
  vertical-align: middle;
}

.openBtn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #041126;
  font-size: 18px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.openBtn span {
  color: #484554;
  font-size: 18px;
}

.openBtn:hover {
  background: transparent;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.75);
}

.overlay-content {
  position: relative;
  top: 46%;
  width: 50%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 58px;
  right: 20px;
  cursor: pointer;
  color: #1f439c;
  z-index: 99999;
  font-size: 40px;
  background-color: #fff;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 100px;
}

.overlay .closebtn:hover {
  color: #595959;
}

.overlay input[type="text"] {
  padding: 15px 20px;
  font-size: 17px;
  border: none;
  float: left;
  width: 1000%;
  background: white;
}

.overlay input[type="text"]:hover {
  background: white;
}

.overlay button {
  float: left;
  width: auto;
  padding: 15px;
  background: #1f439c;
  color: #fff;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

.overlay button:hover {
  background: #1f439c;
}

.continfo {
  float: left;
  margin-right: 20px;
}

.contact-top {
  margin-top: 25px;
}

.continfo p {
  color: #3d3d3d;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 0;
}

.phone-text {
  color: #1f439c;
  font-size: 18px;
  font-weight: 600;
}

.whatapp-icon {
  color: #29a71a;
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-top: 4px;
}

.whatapp-icon span {
  color: #29a71a;
  font-size: 32px;
}

/* media queries */

@media (max-width: 1200px) {
  .content {
    top: 18%;
  }

  .content[data-content="two"],
  .content[data-content="three"] {
    top: 5%;
    width: 50%;
  }
}

@media (max-width: 900px) {
  .content,
  .content[data-content="three"] {
    top: 55%;
    left: 2%;
    width: 60%;
  }

  .content[data-content="two"] {
    top: 10%;
  }

  .content h1 {
    margin-bottom: 14px;
  }

  .content p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .btn-1 {
    padding: 8px 16px;
  }
}

@media (max-width: 790px) {
  .btn-1 {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

@media (max-width: 660px) {
  .content,
  .content[data-content="two"],
  .content[data-content="three"] {
    top: unset;
    left: 2%;
    bottom: 3%;
    width: 80%;
  }

  .content p {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .background[data-item="two"] {
    background-position: 40% 50%;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .swiper-pagination-bullet-active {
    height: 24px;
  }
}

.welcome-section {
  position: relative;
  background: url(../assets/images/image-wrapper-bg.png) left top;
  background-repeat: no-repeat;
}

.wrap-img {
  position: relative;
}

.wel-title h5 {
  color: #0071bc;
  display: block;
}

.wel-title h1 {
  color: #041126;
  font-size: 40px;
}

.wel-title h1 span {
  color: #1f439c;
  font-family: "Yesteryear", serif;
  font-weight: 400;
  font-style: normal;
}

.siteinfo {
  color: #041126;
  font-size: 50px;
  font-weight: 700;
}

.siteinfo span {
  color: #484848;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
}

/**** pkg ****/
/* Modern Card Design for Featured Trips */
.container-card {
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: white;
}
.container-card:hover {
  box-shadow: 0 6px 8.73px .27px rgba(39,105,157,.1);
}
.card-box {
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  position: relative;
}
.imgBox {
  position: relative;
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgBox img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.container-card:hover .imgBox img {
  transform: scale(1.06);
}
.sub-tittle {
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.sub-tittle h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 8px 0;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.adds {
  color: #888;
  font-size: 15px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.adds span {
  color: var(--primary-color);
  margin-right: 6px;
  font-size: 15px;
}
.rating ul {
  margin: 0 0 8px 0;
}
.rating ul li {
  color: #fbbf24;
  font-size: 15px;
  margin-right: 1px;
}
.d-flex.justify-content-between {
  margin-top: 12px;
  align-items: center;
}
.duration {
  font-size: 15px;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.duration span {
  color: var(--primary-color);
  margin-right: 6px;
  font-size: 16px;
}
.pptag {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pptag strike {
  color: #bdbdbd;
  font-size: 16px;
  margin-left: 6px;
}
.pptag sub {
  color: #888;
  font-size: 14px;
  font-weight: 400;
  margin-left: 2px;
}

.container-wrapper {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  overflow: hidden;
  z-index: 1;
}

.adds {
  color: #5a5a5a;
  font-size: 14px;
  text-transform: capitalize;
}

.adds span {
  color: #1f439c;
  font-size: 14px;
  margin-right: 6px;
}

.duration {
  font-size: 14px;
  font-weight: 500;
}

.duration span {
  color: #041126;
  margin-right: 8px;
}

.pptag {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.pptag sub {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 400;
}

.rating ul {
  padding-left: 0;
  margin-bottom: 0;
}

.rating ul li {
  color: #e04712;
  display: inline-block;
  font-size: 14px;
}

.rating ul li span {
  color: #464646;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}

.rate-tt {
  display: flex;
  color: #041126;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  vertical-align: middle;
  padding: 2px 6px;
}

.rate-tt span {
  color: #f22626;
  font-size: 12px;
  margin-right: 3px;
}

.pptag span {
  color: #1f439c;
  font-size: 16px;
  display: block;
  line-height: 20px;
  font-weight: 400;
}

/******destination******/
.container-1 {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.container-1:after {
  display: table;
  content: " ";
}

.container-1:before {
  display: table;
  content: " ";
}
.wrapper {
  position: relative;
}

.wrapper.no-top {
  margin-top: 0;
}

.container-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.img-card {
  position: relative;
  margin: 3px;
  float: left;
}

.img-card img {
  width: 100%;
  height: 100%;
  padding: 5px;
}

.one {
  flex: 1;
}

.two-third {
  flex: 0.69;
}

.one-third {
  flex: 0.31;
}

.one-fourth {
  flex: 0.237;
}

.flex-3 {
  flex: 0.526;
}

@media all and (max-width: 770px) {
  .img-card {
    flex: 100% !important;
  }
}

.desti-wrap {
  position: relative;
}

.img640 img {
  position: relative;
  object-fit: cover;
  height: 640px;
}

.border-8 {
  border-radius: 8px;
}

.title-overlay {
   position: absolute;
   content: '';
   left: 0;
   right: 0;
   top: 50%;
}

.title-desti h3 {
  color: #fff;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.img310 img {
  object-fit: cover;
  height: 310px;
}


.feature-bx {
  position: relative;
  padding: 30px 20px;
  min-height: 160px;
}

.f-Img span {
  width: 40px;
  font-size: 40px;
}


.feature-info p {
  font-size: 14px;
  line-height: 24px;
}



.selling-tabs .nav-pills {
  display: flex;
  justify-content: center;
}

.selling-tabs .nav-item {
  margin: 0 4px;
}

.selling-tabs .nav-pills .nav-link {
  background-color: #2E3192 !important;
  border: 2px solid #2E3192;
  border-radius: 4px;
  color: #fff;
  font-size: 14px !important;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 6px 24px !important;
  /* margin: 0 6px; */
}

.selling-tabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #1f439c !important;
  border: 2px solid #1f439c;
  border-radius: 4px;
  color: #ffffff;
  padding: 6px 24px !important;
}


.activitie-section {
  position: relative;
  background: url(../assets/images/section-bgimage3\ 1.png ) no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  background-size: cover;
}


.testi-container {
  position: relative;
  border: 2px solid #1f439c;
  border-radius: 8px;
  padding: 30px;
}

.quote-icon {
  float: left;
  background-color: #1f439c;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-size: 25px;
  margin-right: 20px;
}

.text-holder p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.trek-name {
  margin-left: 70px;
}

.client-pp {
  float: left;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  overflow: hidden;
}

.client-dtl {
  margin-left: 90px;
}

.client-dtl h6 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  display: block;
}

.client-dtl small {
  font-size: 16px;
  line-height: 28px;
}

.information-section {
  position: relative;
  background: url(../assets/images/Nepal.png ) no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-attachment: scroll;
}

.information-section::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(90deg, #000 0%, #00000000 100%);
  z-index: 1;
}

.info-tittle h5 {
  font-size: 44px;
  font-weight: 600;
  line-height: 50px;
}

.p-icon {
  float: left;
  margin-right: 10px;
}

.cnt-wrap {
  margin-left: 70px;
}

.cnt-wrap h5, .cnt-wrap h4 {
  color: #fff;
}

.cnt-wrap h5 a, .cnt-wrap h4 a {
  color: #fff;
}

.blog-card {
  position: relative;
}

.overlay-bolg {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(360deg, #000 0%, #00000000 100%);
  min-height: 100%;
  z-index: 1;
}

.blogtitle {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}

.blogtitle h4 {
  color: #fff;
  font-size: 20px;
}

.b-cte {
  display: flex;
  color: #fff;
  font-size: 16px;
}

.b-cte .bbx {
  background-color: #fff;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 100%;
  color: #1f439c;
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  margin-right: 6px;
}

.associt-wrap ul {
  padding-left: 0;
}

.associt-wrap ul li {
  display: inline-block;
  list-style: none;
  margin-right: 15px;
  margin-bottom: 10px;
}

.reco-end {
  float: right;
}
footer {
  position: relative;
  background: var(--footer-bg) !important;
}

.footer__tittle {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

.cnt-icon {
  background-color: #1f439c;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  text-align: center;
  float: left;
  margin-right: 10px;
  overflow: hidden;
}

.cnt-icon span {
  color: #fff;
  font-size: 13px;
}

.cnt-title {
  font-size: 0.875em;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.5em;
  text-transform: uppercase;
}

.cnt-text {
  margin-left: 40px;
  font-size: 0.875em;
  color: #fff;
  line-height: 1.125em;
  display: block;
}

.cnt-text a {
  color: #fff;
}

.cnt-text span {
  display: block;
}

.listing {
  padding-left: 0;
}

.listing li {
  position: relative;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.listing li a {
  color: #fff;
}

.listing li a:hover {
  color: #252525;
}

.subscribe__text {
  color: #fff;
  font-size: 14px;
}

.subscribe-from {
  position: relative;
}

.subscribe-from p {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}

.input-box {
  position: relative;
}

.input-box input {
  display: block;
  height: 42px;
  width: 100%;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 0;
  color: #393939;
  outline: none;
  font-size: 14px;
  padding: 0 20px;
  margin-bottom: 10px;
}

.input-box .button {
  display: block;
  height: 42px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 0;
  background-color: #1f439c;
  text-align: center;
  cursor: pointer;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.h__line {
  border-top: 1px solid #1f439c;
}

.copy-right {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cpy-info p {
  color: #041126;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

.cpy-info p a {
  color: #7c7c7c;
}

.cpy-info p a:hover {
  color: #1f439c;
  text-decoration: underline;
}

.logo-fot {
  float: left;
  margin-right: 30px;
  border-right: 1px solid #d9d9d9;
  padding-right: 20px;
}

.links-fot ul {
  padding-left: 0;
  margin-bottom: 0;
}

.links-fot ul li {
  display: inline-block;
  color: #1f439c;
  font-size: 12px;
  font-weight: 500;
  padding-right: 20px;
  line-height: 16px;
}

.links-fot ul li a {
  color: #1f439c;
}

.logo-fot img {
  width: inherit !important;
  max-width: inherit;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}

.social-icons ul li {
  display: inline-block;
  font-size: 1rem;
  text-align: center;
  margin-left: 4px;
}

.social-icons ul li a {
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 2px;
  text-align: center;
}

.social-icons ul li:nth-child(1) a {
  background: #1974d0;
  color: #ffffff;
}

.social-icons ul li:nth-child(2) a {
  background: #1596e7;
  color: #ffffff;
}

.social-icons ul li:nth-child(3) a {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  color: #ffffff;
}

.social-icons ul li:nth-child(4) a {
  background: #000;
  color: #ffffff;
}

.social-icons ul li:nth-child(5) a {
  background: #db0505;
  color: #ffffff;
}

.social-icons ul li:nth-child(6) a {
  background: #006394;
  color: #ffffff;
}

/******** all page css *******/
.site_page-title-inner {
  position: relative;
}

.page-titleShape {
  position: relative;
  padding: 150px 0 150px 0;
  text-align: center;
}

.page-titleShape::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #070707 3.98%, rgba(7, 7, 7, 0) 127.57%);
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.page-titleShape {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  /* Remove any gradient or solid color that could override the image */
}

.page-title {
  position: relative;
  z-index: 2;
}

.page-title ul li {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 10px 0;
}

.page-title ul li a {
  color: #1f439c;
}

.page-title ul li + li::before {
  content: "\f054";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  font-size: 10px;
  display: inline-block;
  margin: 0 5px 0 8px;
}

.page-title h3 {
  color: #fff;
  font-size: 30px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
}

ul.list-item {
  padding-left: 0 !important;
}

.list-item li {
  position: relative;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  list-style: disc;
  list-style-position: inside;
  line-height: 32px;
  margin: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn_1 {
  border: 1px solid #041126;
  height: 30px;
  width: 30px;
  border-radius: 2px;
  background: none;
  cursor: pointer;
}

.btn-icon {
  width: 15px;
  height: 15px;
  stroke: #041126;
}

.btn_1:hover {
  background-color: #041126;
}

.btn_1:hover .btn-icon {
  stroke: #fff;
}

.page-link:link,
.page-link:visited {
  text-decoration: none;
  color: #041126;
  font-size: 15px;
  height: 30px;
  width: 30px;
  border-radius: 2px;
  border: 1px solid #041126;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link:hover,
.page-link:active,
.page-link.page-link--current {
  background-color: #041126;
  color: #fff;
}

.searchwrap {
  display: inline-block;
}

.mbl-screen,
.screen-sm {
  display: none;
}

.pe-20 {
  padding-right: 20px;
}

.snip1336 {
  font-family: "Roboto", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #ffffff;
  text-align: left;
  line-height: 1.4em;
  background-color: #141414;
}

.snip1336 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.snip1336 img {
  max-width: 100%;
  vertical-align: top;
  opacity: 0.85;
}

.snip1336 figcaption {
  width: 100%;
  background-color: #141414;
  padding: 25px;
  position: relative;
}

.snip1336 figcaption:before {
  position: absolute;
  content: "";
  bottom: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 55px 0 0 400px;
  border-color: transparent transparent transparent #141414;
}

.snip1336 figcaption a {
  padding: 5px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.7em;
  text-transform: uppercase;
  margin: 10px 0;
  display: inline-block;
  opacity: 0.65;
  width: 47%;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.snip1336 figcaption a:hover {
  opacity: 1;
}

.snip1336 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 100%;
  left: 25px;
  z-index: 1;
  max-width: 90px;
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.snip1336 .follow {
  margin-right: 4%;
  border-color: #2980b9;
  color: #2980b9;
}

.snip1336 h2 {
  color: #fff;
  margin: 0 0 5px;
  font-weight: 300;
  font-size: 18px;
}

.snip1336 h2 span {
  display: block;
  font-size: 14px;
  color: #2980b9;
}

.snip1336 p {
  font-size: 14px;
  letter-spacing: 0;
  opacity: 0.8;
}

.navside {
  border-radius: 4px;
  position: relative;
  box-shadow: 0 1px 2px rgba(11, 60, 93, 0.4), 0 -1px 2px rgba(11, 60, 93, 0.04);
  padding: 20px;
}

.blogimg {
  position: relative;
  float: left;
  margin-right: 20px;
}

.blogimg img {
  border-radius: 0;
  width: 74px;
  height: 58px;
  object-fit: cover;
}

.recent-blg {
  position: relative;
  margin-left: 96px;
}

.galleryImage img {
  height: 500px;
  object-fit: cover;
}


.social-share-btns-container {
  overflow: hidden;
  width: 100%;
}

.social-share-btns {
  display: inline-block;
  overflow: hidden;
  float: right;
}
.social-share-btns .share-btn {
  float: left;
  margin: 0 5px;
  padding: 8px 16px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  vertical-align: middle;
  -moz-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.social-share-btns .share-btn i {
  margin-right: 5px;
  display: inline-block;
  font-size: 18px;
  vertical-align: middle;
}

.share-btn {
  background-color: #95a5a6;
}
.share-btn:hover {
  background-color: #798d8f;
}

.share-btn-twitter {
  background-color: #00aced;
}
.share-btn-twitter:hover {
  background-color: #0087ba;
}

.share-btn-facebook {
  background-color: #3b5998;
}
.share-btn-facebook:hover {
  background-color: #2d4373;
}

.share-btn-linkedin {
  background-color: #007bb6;
}
.share-btn-linkedin:hover {
  background-color: #005983;
}

.share-btn-reddit {
  background-color: #c26508;
}
.share-btn-reddit:hover {
  background-color: #d06e0d;
}

.share-btn-mail {
  background-color: #f1c40f;
}
.share-btn-mail:hover {
  background-color: #dab10d;
}

.blog-filter-list ul {
  padding-left: 0;
}

.blog-filter-list ul li {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  color: rgb(90, 90, 90);
  display: inline-block;
  font-size: 13px;
  padding: 1px 8px;
  text-transform: capitalize;
  margin-right: 6px;
  margin-bottom: 6px;
}

.blog-filter-list ul li:hover {
  background-color: #2E3192;
  border: 1px solid #2E3192;
  border-radius: 3px;
  color: rgb(255, 255, 255);
}


.toc-list {
  padding-left: 25px !important;
} 

.toc-list {
  margin: 0;
}

.toc-list li {
  list-style: decimal;
  font-size: 16px;
  line-height: 30px;
}

.toc-link a {
  color: #222;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}

.toc-link a:hover {
  color: #1f439c !important;
}

.toc-link.is-active-link {
  font-weight: 700 !important;
}



.section {
	color: #5c6166;
}
.hr.invisible_hr {
    height: 0;
    padding: 0;
}
.hr.big_size_hr {
    margin: 30px 0;
}
.hr {
    clear: both;
    display: block;
    font-size: 0;
    height: 24px;
    margin: 20px 0;
    overflow: hidden;
    padding: 2px 0;
    position: relative;
    text-align: center;
    width: 100%;
}
.highlight_secondary {
    color: #F24046;
}
.team-role {
    color: #A4A7AA;
}

.img-circle {
  border-radius: 50%;
}
/********responsive css*********/

@media (max-width: 1280px) {
  .container {
    max-width: calc(100% - 20px) !important;
  }

  .container-fluid {
    padding: 0 20px;
  }

  .section-content {
    padding: 40px 0;
  }

  .h-rit {
    margin-top: -14px;
    margin-bottom: 10px;
  }

  .nav-header {
    float: left;
    margin-right: 10px;
  }

  .nav-menu > li > a {
    font-size: 13px;
    padding: 30px 8px;
  }

  .content[data-content="two"],
  .content[data-content="three"] {
    top: 35%;
    width: 50%;
  }
}

@media (max-width: 1200px) { 
  .h-rit {
    margin-top: 18px;
    margin-right: 10px;
  }

  .call-icon img {
    width: 22px !important;
    max-width: 22px !important;
  }
  
  .s-icon img {
    width: 22px !important;
    max-width: 22px !important;
  }
}


@media (max-width: 1080px) {
  .search-box {
    border-right: none;
    padding-right: 10px;
  }

  .custom-btn {
    font-size: 15px;
    padding: 8px 18px;
  }

  .custom-btn span {
    margin-right: 4px;
  }

  .title-widget h1,
  .title-widget h2,
  .title-widget h3,
  .title-widget h4,
  .title-widget h5,
  .title-widget h6 {
    position: relative;
    font-size: 24px;
    line-height: 32px;
  }

  .swiper-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
  }

  .swiper-slide {
    position: relative;
    width: 100%;
    height: 600px;
  }

  .content h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .wel-title h1 {
    font-size: 32px;
  }

  .siteinfo {
    font-size: 30px;
  }
  .title-desti h3 {
    font-size: 30px;
  }

  .img640 img {
    height: 510px;
  }

  .img310 img {
    object-fit: cover;
    height: 246px;
  }
}

@media (max-width: 992px) {
  .pt-100 {
    padding-top: 40px;
  }

  .pb-100 {
    padding-bottom: 40px;
  }

  .py-80 {
    padding: 40px 0;
  }

  .pb-80 {
    padding-bottom: 30px;
  }

  .py-60 {
    padding: 30px 0;
  }

  .pb-60 {
    padding-bottom: 30px;
  }

  .mt-30 {
    margin-top: 20px;
  }

  .mb-30 {
    margin-bottom: 20px;
  }

  .mt-50 {
    margin-top: 30px;
  }

  .menu_toogle {
    display: none;
  }

  .section-content {
    padding: 30px 0;
  }

  .main_header_area {
    padding-bottom: 0;
  }

  .nav-header {
    margin-right: 0;
  }

  .nav-brand img {
    width: 160px !important;
  }

  .nav-toggle {
    top: 24px;
  }

  .nav_rit {
    margin-right: 20px;
  }
  .h-rit {
    margin-top: 16px;
  }

  .search-box {
    margin-top: 10px;
  }

  .contact-top {
    margin-top: 15px;
  }

  .openBtn {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .mbl-screen {
    position: absolute;
    right: 70px;
    top: 30px;
    display: block;
  }

  .search-box {
    margin-right: 10px;
  }

  .overlay-content {
    width: 100%;
  }

  /* Responsive styles for separated header */
  .registration-info {
    text-align: center !important;
    font-size: 12px;
  }

  .expert-contact {
    justify-content: center;
    margin-top: 5px;
  }

  .expert-info {
    font-size: 12px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 5px;
  }

  .navigation-portrait .nav-menus-wrapper {
    width: 300px;
    height: 100%;
    top: 0;
    left: -100%;
    position: fixed;
    background-color: #2E3192;
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: 0.2s;
    transition-timing-function: ease;
  }

  .navigation-portrait .nav-menu > li {
    border-top: solid 1px #4043a9;
  }

  .nav-menu > li > a {
    color: #fff;
  }

  .nav-dropdown > li > a {
    background-color: #2B2E8B;
  }

  .nav-dropdown > li > a {
    color: #fff;
  }

  .nav-menu > li.focus > a {
    color: #fff;
  }

  .nav-dropdown > li.focus > a {
    color: #7074E8;
  }

  .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
  }

  .nav-menu > .focus > a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
  }

  .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
  }

  .screen-sm {
    display: block;
  }

  .sm-scren-cnt ul {
    padding-left: 0;
    margin-left: 20px;
  }

  .sm-scren-cnt ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .sm-scren-cnt ul li span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin-right: 10px;
    color: #00993a;
    float: left;
  }

  .sm-scren-cnt ul li a {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: calc(100% - 15px);
    padding: 0 15px;
  }

  .pt-40 {
    padding-top: 30px;
  }

  .pb-40 {
    padding-bottom: 30px;
  }

  .btn-button {
    font-size: 0.875rem;
    padding: 0.5em 1.4em;
  }

  .title-widget h1,
  .title-widget h2,
  .title-widget h3,
  .title-widget h4,
  .title-widget h5,
  .title-widget h6 {
    position: relative;
    font-size: 24px;
  }

  .title-widget h1 span,
  .title-widget h2 span,
  .title-widget h3 span,
  .title-widget h4 span,
  .title-widget h5 span,
  .title-widget h6 span {
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 400;
  }

  .sticky {
    position: inherit;
  }

  .nav_rit {
    margin-right: 50px;
  }

  .nav-toggle {
    top: 28px;
  }

  .menu-bar {
    display: flex;
    justify-content: inherit;
  }

  .menu-link {
    padding: 8px 16px;
  }

  .continfo {
    display: none;
  }

  .search-box {
    margin-top: 15px;
  }

  .whatapp-icon {
    margin-left: 10px;
    margin-top: 4px;
  }

  .search-box {
    margin-right: 0;
  }
  .associt-wrap ul li {
    margin-right: 10px;
    margin-left: 10px;
  }

  .associt-wrap ul li img {
    width: inherit;
  }

  .social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
  }

  .swiper-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  .swiper-slide {
    position: relative;
    width: 100%;
    height: 500px;
  }

  .welcome-section {
    background: none;
  }

  /* Mobile styles for separated header */
  .top-header .row > div {
    margin-bottom: 5px;
  }

  .registration-info,
  .expert-info {
    font-size: 11px;
    padding: 3px 0;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons ul li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }

}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }

  .title-widget h1,
  .title-widget h2,
  .title-widget h3,
  .title-widget h4,
  .title-widget h5,
  .title-widget h6 {
    font-size: 18px;
    line-height: 24px;
  }

  .nav-brand img {
    width: 180px;
  }

  .mbl-screen {
    top: 20px;
  }

  .nav-toggle {
    top: 27px;
  }

  .content[data-content="two"],
  .content[data-content="three"] {
    top: 35%;
    width: 90%;
  }

  .content h1 {
    font-size: 20px;
  }

  .swiper-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
  }

  .swiper-slide {
    position: relative;
    width: 100%;
    height: 380px;
  }

  .selling-tabs .nav-pills .nav-link {
    font-size: 12px !important;
    padding: 4px 16px !important;
    margin-bottom: 10px;
  }

  .selling-tabs .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    padding: 4px 16px !important;
  }

  .wel-title h1 {
    font-size: 24px;
  }

  .f-Img span {
    width: 24px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
 
  .nav_rit {
    margin-right: 20px;
  }
  .h-rit {
    margin-top: 15px;
    margin-right: 14px;
  }
}

/* Price Ribbon - Slanted Flag Style */
.price-ribbon {
  position: absolute;
  top: 18px;
  left: 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 28px 10px 18px;
  border-radius: 0 8px 8px 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(31,67,156,0.10);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  min-width: 70px;
  height: 40px;
  line-height: 1;
}
.price-ribbon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid var(--primary-color);
  border-bottom: 20px solid var(--primary-color);
  border-left: 20px solid transparent;
  border-radius: 0 0 0 8px;
}
.price-ribbon sub, .price-ribbon strike {
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 400;
  margin-left: 4px;
}

/* Remove hover effect for .container-card, .blog-card, .mt-20 */
.container-card:hover, .blog-card:hover, .mt-20:hover {
  box-shadow: none;
  transform: none;
  transition: none;
}

/* Add padding to blog-content so text does not touch card edges */
.blog-content {
  padding: 24px;
}

.wrapper-container .row {
  margin-bottom: 32px;
}