html {
  font-size: 93.75%;
}

@media (max-width: 1199px) {
  html {
    font-size: 87.5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 81.25%;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 62.5%;
  }
}
body {
  font-size: 1rem;
  color: #505050;
  position: relative;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans", sans-serif;
  margin-bottom: 0;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 0;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

svg:focus {
  outline: none;
}

.form-control {
  font-size: 1rem;
}

.form-control:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.border {
  border-bottom: 1px solid #cdcdcd;
}

.whatsapp_icon {
  position: fixed;
  z-index: 9999;
  bottom: 12px;
  right: 12px;
  width: auto;
  height: auto;
}
.whatsapp_icon .whatsapp_link img {
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 991px) {
  p {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  p {
    font-size: 1rem;
  }
}
.primary_text {
  color: #FE492E !important;
}

.secondary_text {
  color: #002280 !important;
}

.green_text {
  color: #0a5f59 !important;
}

.highlight_text {
  color: #6F2AF5 !important;
}

.primary_label {
  background: #FE492E;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.4rem;
}
.primary_label:hover {
  color: #fff;
  background: #de3d25;
}

.green_label {
  background: #0a5f59;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.4rem;
}
.green_label:hover {
  background: #003632;
  color: #fff;
}

.secondary_label {
  background: #002280;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.4rem;
}
.secondary_label:hover {
  color: #fff;
  background: #00063a;
}

.green_border_label {
  background: #fff;
  color: #0a5f59;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.4rem;
  border: 1px solid #0a5f59;
}
.green_border_label:hover {
  background: #003632;
  color: #fff;
}

.label_lg {
  padding: 0.6em 1rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 8px;
  border: 0;
  background-color: transparent;
  text-transform: capitalize;
}
.btn span {
  margin-right: 0.7rem;
}
.btn:focus {
  box-shadow: none;
  outline: 0;
  border: 0;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.btn-sm svg {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 991px) {
  .btn {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 575px) {
  .btn svg {
    margin-left: 0;
  }
}
.btn-primary {
  background: #FE492E;
}
.btn-primary:hover {
  color: #fff;
  background: #de3d25;
}

.btn-secondary {
  background: #002280;
}
.btn-secondary:hover {
  color: #fff;
  background: #00063a;
}

.btn-search {
  padding: 6px 8px;
}

.btn-white {
  background: #fff;
  color: #FE492E;
  text-align: left;
}
.btn-white:hover {
  background: #e4e4e4;
  color: #FE492E;
}

.btn-green {
  background: #0a5f59;
  color: #fff;
}
.btn-green:hover {
  background: #003632;
  color: #fff;
}

.btn-primary-border {
  background: #fff;
  color: #FE492E;
  border: 1px solid #FE492E;
}
.btn-primary-border:hover {
  color: #fff;
  background: #FE492E;
}

.btn-green-border {
  background: #fff;
  color: #0a5f59;
  border: 1px solid #0a5f59;
}
.btn-green-border:hover {
  color: #fff;
  background: #0a5f59;
}

.btn-highlight-border {
  background: #fff;
  color: #6F2AF5;
  border: 2px solid #6F2AF5;
}
.btn-highlight-border:hover {
  color: #fff;
  background: #6F2AF5;
}

.btn-black {
  border: 1px solid #2f2f2f;
  background: #fcfcfc;
  color: #2f2f2f;
}
.btn-black:hover {
  color: #fff;
  background: #2f2f2f;
}
.btn-black:focus {
  border: 1px solid #2f2f2f;
}

.btn-transparent {
  color: #2f2f2f;
  background: transparent;
}
.btn-transparent:hover {
  background: #fff;
  color: #FE492E;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 8px;
}

/* TEXT STYLE */
.container {
  --bs-gutter-x: 1.5rem;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100%;
  }
}
/* HEADER */
header .navbar .navbar-brand {
  max-width: 154px;
  padding: 0;
  margin-right: 30px;
}
header .navbar .navbar-brand.mobile_logo {
  display: none;
}
header .navbar .navbar-brand span {
  font-weight: 700;
  color: #FE492E;
  font-size: 1.6rem;
}
header .navbar .navbar-nav .nav-item .nav-link {
  color: #002280;
  font-size: 1rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  padding: 1.5rem 0.7rem;
}
header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #FE492E;
}
header .navbar .navbar-nav .nav-item .dropdown-menu {
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 0.3rem;
  border: 0;
  box-shadow: 0 0px 0.3rem 0.05rem rgba(0, 0, 0, 0.1);
}
header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover, header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #1e2125;
  background-color: #ededed;
  border-radius: 4px;
}
header .navbar .mobile_btn_group {
  display: flex;
}
header .navbar .search-box {
  position: relative;
  margin-right: 0;
  margin-bottom: 0;
}
header .navbar .search-box .form-control {
  font-size: 0.9rem;
  width: 100%;
  height: 2.4rem;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  padding: 0.4rem 2.5rem 0.4rem 1rem;
}
header .navbar .search-box .form-control::-moz-placeholder {
  font-size: 0.9rem;
}
header .navbar .search-box .form-control::placeholder {
  font-size: 0.9rem;
}
header .navbar .search-box .btn-search {
  color: #8d8d8d;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  line-height: 1;
  font-size: 1rem;
  width: auto;
}
header .navbar .search-box .btn-search svg {
  width: 1.1rem;
  height: 1.1rem;
}
header .navbar .mobile-btn {
  display: none;
}
header .navbar .btn {
  margin-right: 0.625rem;
  width: 84px;
}
header .navbar .btn:last-child {
  margin-right: 0;
}
header .navbar .logo-sm {
  display: none;
}

@media (min-width: 991px) {
  header .navbar {
    padding: 0 0;
  }
}
@media (max-width: 991px) {
  header .navbar {
    background-color: #FE492E !important;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  header .navbar .navbar-brand.mobile_logo {
    display: block;
  }
  header .navbar .navbar-brand span {
    color: #fff;
  }
  header .navbar .search-box {
    display: none;
  }
  header .navbar .logo-lg {
    display: none;
  }
  header .navbar .logo-sm {
    display: block;
  }
  header .navbar .nav_btns {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  header .navbar .nav_btns .search_btn {
    display: block;
    padding: 0.8rem 1rem;
    background: transparent;
    border: 0;
    padding: 0;
  }
  header .navbar .nav_btns .search_btn svg {
    color: #fff;
    height: 1.8rem;
    width: 1.8rem;
  }
  header .navbar .nav_btns .navbar-toggler {
    padding: 0;
    border: 0;
    color: #fff;
    margin-left: 20px;
  }
  header .navbar .nav_btns .navbar-toggler svg {
    color: #fff;
    height: 2rem;
    width: 2rem;
  }
  header .navbar .mobile-btn {
    display: block;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    padding: 6px 0;
    color: #fff;
    font-size: 1.2rem;
  }
  header .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }
  header .navbar .navbar-brand {
    max-width: 100px;
  }
  header .navbar .navbar-toggler {
    order: 4;
  }
  header .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  header .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("../images/menu-svg.png");
  }
  header .navbar .navbar-collapse {
    order: 5;
  }
}
@media (max-width: 400px) {
  header .topbar .con_details {
    flex-flow: column;
  }
  header .topbar .con_details li {
    margin-bottom: 5px;
  }
  header .topbar .con_details li .con_link .icon svg {
    width: 15px;
    height: 15px;
  }
  header .topbar .con_details li:last-child {
    margin-bottom: 0;
  }
}
/* FOOTER */
footer {
  background: #0a5f59;
  padding: 60px 0 20px;
}
footer .foot_top_left {
  margin-bottom: 40px;
}
footer .foot_top_left h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
footer .foot_top_left h5 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
footer .foot_top_left p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2rem;
}
footer .foot_top_right {
  display: flex;
  justify-content: end;
  align-items: center;
}
footer .foot_top_right .btn-primary {
  padding: 1rem 2.5rem;
}
footer .menu-list {
  list-style: none;
  padding-left: 0;
}
footer .menu-list .menu-item {
  padding: 5px 0;
}
footer .menu-list .menu-item .menu-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
footer .menu-list .menu-item .menu-link:hover {
  color: #FE492E;
}
footer .menu-list .menu-item .menu-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
footer .social {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 1.4rem;
}
footer .social .social-link {
  color: #fff;
  margin: 0 8px;
}
footer .social .social-link svg {
  width: 25px;
  height: 25px;
}
footer .social .social-item:first-child .social-link {
  margin-left: 0;
}
footer .copyright {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  margin-top: 25px;
}
footer .copyright .c_text {
  text-align: center;
  width: 85%;
}
footer .copyright .c_text a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
}
footer .copyright .c_text a .red_text {
  color: #FE492E;
  margin-left: 0.2rem;
}

@media (max-width: 991px) {
  footer .foot_top_left p {
    font-size: 1.2rem;
  }
  footer .foot_top_right {
    justify-content: start;
    margin-bottom: 20px;
  }
  footer .menu-list .menu-item .menu-link {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  footer .copyright {
    display: block;
  }
  footer .copyright .c_text {
    width: 100%;
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
.section_pad_top {
  padding-top: 4rem;
}

.section_pad_bottom {
  padding-bottom: 4rem;
}

@media (min-width: 991px) {
  .section_pad_top {
    padding-top: 8rem;
  }
  .section_pad_bottom {
    padding-bottom: 8rem;
  }
}
@media (min-width: 767px) {
  .section_pad_top {
    padding-top: 4rem;
  }
  .section_pad_bottom {
    padding-bottom: 4rem;
  }
}
.desktop_view {
  display: none;
}
.desktop_view .btn {
  border-radius: 5px;
}

@media (min-width: 991px) {
  .mobile_view {
    display: none;
  }
  .desktop_view {
    display: block;
  }
}
.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 0.1rem;
  font-size: 1.2rem;
  color: #FFBD13;
  margin-bottom: 0;
}
.rating svg {
  fill: #FFBD13 !important;
  width: 1.2rem;
}

.rating .star {
  cursor: pointer;
}

.rating .star.active {
  opacity: 0;
  animation: animate 0.5s calc(var(--i) * 0.1s) ease-in-out forwards;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.rating .star:hover {
  transform: scale(1.1);
}

.pagination {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.pagination .page-item {
  margin: 0 0.3rem;
}
.pagination .page-item .page-link {
  color: #FE492E;
  font-weight: 700;
  border-radius: 8px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}
.pagination .page-item .page-link:hover {
  color: #FE492E;
}
.pagination .page-item .page-link.active {
  background: #FE492E;
  color: #fff;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  background: transparent;
  border: 0;
}
.pagination .page-item:first-child .page-link span, .pagination .page-item:last-child .page-link span {
  font-size: 25px;
  line-height: 1;
}

.modal.search-model {
  top: 30%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}

.modal-content {
  border-radius: 12px;
}

.search-model .modal-body {
  padding: 2rem 1.4rem;
}

.search-model .search-box {
  position: relative;
  margin-bottom: 20px;
}

.search-model .search-box svg {
  color: #FE492E;
}

.search-model .search-box .btn-search {
  padding: 6px 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
}

.search-model .search-box .form-control {
  height: 4rem;
  border: 1px solid #2f2f2f;
  border-radius: 8px;
  padding: 0.5rem 2rem 0.5rem 3.2rem;
  line-height: 1;
}

.search-model .search-box .form-control:focus,
.search-model .search-box .form-control:focus-visible {
  border: 1px solid #FE492E;
}

.search-model .recent h2 {
  color: #FE492E;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.search-model .recent .recent-box {
  padding: 1rem;
  display: block;
  min-height: 56px;
  background: #002280;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-model .recent .recent-box p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.search-model .recent .recent_list {
  max-height: 190px;
  overflow: auto;
  padding-right: 2px;
}

.search-model .recent .recent_list::-webkit-scrollbar {
  width: 8px;
  background: #cdcdcd;
  border-radius: 25px;
}

.search-model .recent .recent_list::-webkit-scrollbar-thumb {
  background: #b5b5b5;
  border-radius: 25px;
}

.search-model .recent .recent_list li {
  margin-bottom: 10px;
}

.search-model .recent .recent-box svg {
  color: #fff !important;
  width: 20px;
  height: 20px;
}

.search-model .recent .recent-box .left-side svg {
  fill: #fff !important;
}

.search-model .recent .recent-box .right-side svg:first-child {
  stroke: #fff !important;
  fill: transparent !important;
}

.search-model .recent .recent-box .left-side,
.search-model .recent .recent-box .right-side {
  display: flex;
  align-items: center;
}

.search-model .recent .recent-box .left-side svg {
  margin-right: 8px;
}

.search-model .recent .recent-box .right-side svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.search-model .recent .recent-box .right-side svg:last-child {
  margin-right: 0;
}

@media (max-width: 1199px) {
  .search-model .search-box .form-control {
    padding: 0.5rem 2rem 0.5rem 3.8rem;
  }
}
@media (max-width: 991px) {
  .search-model .search-box .form-control {
    padding: 0.5rem 2rem 0.5rem 4rem;
  }
  .search-model .recent h2 {
    font-size: 1.4rem;
  }
  .search-model .search-box .form-control::-moz-placeholder {
    font-size: 1.2rem;
  }
  .search-model .search-box .form-control::placeholder {
    font-size: 1.2rem;
  }
  .search-model .recent .recent-box p {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  .search-model .search-box svg {
    width: 20px;
    height: 20px;
  }
}
.love_react {
  color: #ff485e;
}
.love_react svg {
  color: #ff485e;
}

.pg_breadcrumb {
  padding: 0.8rem 0;
  background: #F2F7FF;
}
.pg_breadcrumb .breadcrumb {
  margin-bottom: 0;
}
.pg_breadcrumb .breadcrumb .breadcrumb-item {
  color: #2f2f2f;
  font-weight: 500;
  font-size: 0.9rem;
}
.pg_breadcrumb .breadcrumb .breadcrumb-item a {
  color: #8f8f8f;
  font-size: 0.9rem;
}
.pg_breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #FE492E;
}

.input-group-append.btn-primary svg {
  fill: #fff !important;
  width: 18px;
  height: 18px;
}

.pg_add {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg_add img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 20.09.2024 */
.bdetail_r_tab.first.mobileactive {
  display: none !important;
}

#mobileactivesearch {
  display: none !important;
}

@media (max-width: 767px) {
  #desktopactive {
    display: none !important;
  }
  #mobileactivesearch {
    display: block !important;
    padding: 1.2rem !important;
    box-shadow: 2px 2px 10px rgba(115, 115, 115, 0.2) !important;
    margin-bottom: 1.2rem !important;
    border-radius: 8px !important;
  }
  .bdetail_r_tab.first.mobileactive .nav.nav-pills .nav-item .nav-link:hover,
  .bdetail_r_tab.first.mobileactive .nav.nav-pills .nav-item .nav-link.active {
    background: #FE492E !important;
    color: #fff !important;
    margin-bottom: 1rem !important;
  }
  .detail_right {
    margin-top: 1.5rem !important;
  }
}
.blog-detail .detail_right .bdetail_r_tab.first .nav.nav-pills .nav-item {
  width: auto !important;
}

.editor_section ul {
  list-style: disc !important;
  padding-left: 15px !important;
}

.editor_section ul li::marker {
  height: 6px;
  width: 6px;
  color: #FE492E !important;
}

.editor_section ul li {
  margin-bottom: 0.6rem !important;
}

.editor_section h2,
.editor_section p {
  margin-bottom: 0.6rem !important;
}

.read_more {
  margin-bottom: 0.6rem !important;
}

.page-item.active .page-link {
  color: #fff !important;
  background-color: #FE492E !important;
  border: 0 !important;
}

.page-item.active .page-link:hover {
  color: #fff !important;
}

#asdsed {
  border: 1px solid #FE492E !important;
  border-radius: 10px !important;
}

#asdsed span {
  font-weight: 600 !important;
}

.contact_in {
  padding: 20px 30px !important;
}

.contact_in p {
  margin-bottom: 0.6rem !important;
}

.dbtn svg {
  margin-left: 6px !important;
  fill: rgb(255, 255, 255) !important;
}

#Description a {
  color: #002280 !important;
  font-weight: 600 !important;
}

@media (max-width: 575px) {
  header .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    font-size: 1.2rem;
  }
  .btn span {
    font-size: 1.4rem;
  }
  .form-control {
    font-size: 1.4rem;
  }
  .pg_breadcrumb .breadcrumb .breadcrumb-item {
    font-size: 1.2rem;
  }
  .pg_breadcrumb .breadcrumb .breadcrumb-item a {
    font-size: 1.2rem;
  }
  .primary_label {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */