@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Passions+Conflict&display=swap");

@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: "Poppins-Black";
  src: url(../fonts/Poppins-Black.ttf);
}

@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: "Poppins-Italic";
  src: url(../fonts/Poppins-Italic.ttf);
}

html {
  scroll-behavior: smooth;
}

input:focus {
  outline: none;
  border: none;
}

.text-primary {
  color: #383e42;
}

:root {
  --tab-color: #f6f7fb;
  --color-primary-dark: #e6b410;
  --color-interaction: #ffc709;
  --color-light-1: #f3f6f6;
  --color-dark: #2f4037;
  --color-dark-1: #2a332e;
  --text-18: 18px;
  --text-16: 16px;
  --text-color: #4285f4;
}

/* Styles for Fade-In */
section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 1s ease;
  will-change: opacity, transform;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.mx-7 {
  margin-left: 6rem;
  margin-right: 6rem;
}

@media (max-width: 992px) {
  .mx-7 {
    margin: 0 !important;
  }
}

@media (max-width: 1200px) {
  .mx-7 {
    margin: 0 !important;
  }
}

.header p {
  font-size: 16px;
  font-family: "Poppins-Regular";
  color: #4b5054;
  background: #f6f7fb;
}

.header {
  position: sticky;
  top: -2px;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0px 10px;
}

.header .navbar {
  height: 100px;
}

.header .navbar {
  height: auto;
  padding: 0.5rem 1rem;
}

.nav-header a {
  font-size: 16px;
  font-family: "Poppins-Regular";
  color: #383e42;
}

.nav-header a:hover {
  color: #4285f4;
  transition: all 0.3s ease;
}

.english-btn {
  border: 1px solid #4b5054;
  border-radius: 5px;
  background: #f8f9fa;
  height: 40px;
  width: 138px;
  font-size: 16px;
  font-family: "Poppins-Regular";
}

.english-btn:hover {
  color: #4285f4;
}

.dropdown-menu .dropdown-item:hover {
  color: #4285f4;
  background-color: #f0f8ff;
}

.english-btn i {
  font-size: 12px;
  margin-left: 5px;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown.show .english-btn i {
  transform: rotate(180deg);
}

@media (max-width: 992px) {
  .custom-hamburger-menu {
    display: none;
  }
}

.custom-hamburger-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
}

@media (max-width: 492px) {
  .custom-hamburger-menu:not(.d-lg-none) {
    display: none;
  }

  .custom-hamburger-menu.d-lg-none {
    display: flex;
    /* justify-content: center; */
    margin-top: 1rem;
  }
}

@media (max-width: 992px) {
  .custom-hamburger-menu:not(.d-flex) {
    display: none;
  }
}

/* Main */
.terms-conditions {
  min-height: 900px;
}

.bg-gradient-terms-conditions {
  background: linear-gradient(
      0deg,
      rgba(227, 237, 254, 0) 0%,
      rgba(227, 237, 254, 0.6) 100%
    )
    no-repeat fixed top / contain;
  /* padding-top: 30px; */
  padding: 30px 0 150px;
}

.terms-conditions-section {
  background-image: url("../../Image/charter-bg-img-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: fixed;
  mix-blend-mode: multiply;
}

.title span {
  color: var(--text-color);
  /* margin-right: 10px; */
  /* font-size: 36px; */
  font-size: clamp(32px, 4vw, 36px);
  font-family: "Poppins-SemiBold";
}

.title {
  display: flex;
  align-items: start;
  justify-content: start;
  /* font-size: 36px; */
  font-size: clamp(32px, 4vw, 36px);
  font-family: "Poppins-SemiBold";
  position: sticky;
  top: 120px;
  /* z-index: 22; */
}

@media (max-width: 1200px) {
  .title {
    position: sticky;
    top: 0 !important;
  }
  .terms-conditions-selection-box {
    width: 100% !important;
    height: auto !important;
  }
}

.terms-and-conditions {
  margin-bottom: 100px;
}

.terms-conditions-selection-box {
  height: 65vh;
  overflow-y: auto;
  border-radius: 12px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #dbdfe5;
  width: 90%;
  margin-bottom: 40px;
  position: sticky;
  top: 210px;
  scroll-behavior: smooth;
}

.list-group {
  --bs-list-group-border-color: none !important;
  border: 1px solid #dbdfe5;
}

.list-group-item.active {
  z-index: 2;
  color: #4285f4 !important;
  background-color: #f5f9fe !important;
  border-left: 3px solid #4285f4 !important;
}

.list-group-item {
  font-family: "Poppins-Medium";
  font-size: 16px;
  border-bottom: 1px solid #dbdfe5 !important;
  border: none;
  color: #14406d !important;
  --bs-list-group-item-padding-y: 1rem !important;
}

.list-group-item a {
  color: var(--bs-list-group-border-color) !important;
}

ul li a {
  color: #1f1a17 !important;
  font-family: "Poppins-SemiBold";
  font-weight: 400;
  font-size: 14px;
}

ul li a:hover {
  color: #4285f4 !important;
}

.terms-conditions-list-items ul li {
  font-size: 0.875rem;
  color: #1f1a17;
  font-weight: 400px;
  font-family: "Poppins-Regular";
  /* line-height: 1.8; */
  letter-spacing: 0.3px;
  list-style-type: disc !important;
  padding-top: 5px;
}

.color-blue {
  color: #4285f4;
}

.section-title {
  font-weight: 600;
  font-size: 1.375rem;
  color: #383e42;
  font-family: "Poppins-SemiBold";
  padding-top: 20px;
}

.subsection-titles {
  font-family: "Poppins-Bold";
  color: #6c757d;
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
.sernet-section {
  padding-top: 70px;
}

.subsection-desc p {
  font-size: 0.875rem;
  color: #1f1a17;
  font-weight: 400px;
  font-family: "Poppins-Regular";
  line-height: 1.8;
  letter-spacing: 0.3px;
}
.terms-conditions-selection-box::-webkit-scrollbar {
  display: none;
}

.subsection-desc .list-roman {
  list-style-type: upper-roman !important;
  font-family: "Poppins-Regular";
  font-size: 0.875rem;
  color: #1f1a17;

}

.subsection-desc .lower-alpha {
  list-style-type: lower-alpha;
  font-family: "Poppins-Regular";
  color: #1f1a17;
  font-size: 0.875rem;

}

/* End Main */
