:root {
  --primary: #0c7735;
  --secondary: #ffb200;
  --ternary: #5f5f5f;
  --bg: #edf2ec;
  --black: #18271e;
  --border: rgba(91, 140, 81, 0.26);
}
html {
  overflow-x: hidden;
}
body {
  /*font-family: "DM Sans", sans-serif;*/
  font-family: "Anek Gujarati", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  margin-bottom: 100px;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* font size */

h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
}

h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
}

h3 {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.3;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
}

h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ternary);
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}
/* font size */
.transition-3 {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.main-wrapper {
  overflow-x: hidden;
}


.primary {
  color: var(--primary);
}
.btn-fill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  width: auto;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 24px;
  color: #fff;
  background: var(--primary);
  border: 0;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

.btn-fill svg {
  transform: rotate(-30deg);
  transition: transform 0.4s ease-in-out;
}

.btn-fill::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 320%;
  content: "";
  top: 182%;
  left: 50%;
  background: var(--secondary);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}

.btn-fill:hover::before {
  top: -110%;
}
.btn-fill:hover svg {
  transform: rotate(0deg);
}
/* HEADER */
header {
  position: relative;
  z-index: 999;
  box-shadow: 0px 3px 20px rgb(0 0 0 / 6%);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.header-top {
  padding: 15px 0;
}
header .navigation {
  position: relative;
  z-index: 1;
}

.header-logo {
  width: auto;
  height: 100px;
  object-fit: contain;
}

header .nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul li {
  float: left;
  position: relative;
}

header nav ul li a,
nav ul li a:visited {
  color: #fff;
  position: relative;
  display: block;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 12px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

header nav ul li .dropdown-menu li {
  width: 100%;
}

header nav ul li .dropdown-menu .dropdown-item {
  width: 100%;
  font-size: 16px;
  color: #000;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

header nav ul li .dropdown-menu li:hover a {
  color: var(--primary);
  font-weight: 500 !important;
}

header nav ul li .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}

.dropdown .dropdown-toggle::after {
  border: 0 !important;
  content: url(../img/icons/down.svg);
  width: 12px;
  height: 6px;
  object-fit: contain;
  vertical-align: 0.2em;
}

.header-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  border-radius: 100px;
  right: 0;
  bottom: 0px;
  background: var(--secondary);
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.header-link.active {
  font-weight: 600;
}

.header-link:hover::before,
.header-link.active::before {
  width: 100%;
}

header nav ul li ul li {
  min-width: 190px;
}

header nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
  font-size: 14px !important;
}

/* Mobile navigation */
header .nav-mobile {
  display: none;
  height: 55px;
  width: 55px;
}

#nav-toggle {
  cursor: pointer;
  padding: 10px 35px 16px 0px;
  border: none;
  background: transparent;
  outline: none;
}

#nav-toggle span {
  position: relative;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 28px;
  background: #000;
  position: absolute;
  display: block;
  border-radius: 8px;
  content: "";
  transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -8px;
}

#nav-toggle span:after {
  bottom: -8px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

.navigation-menu ul li a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
.navigation-menu ul li:last-child a {
  background-color: var(--secondary);
  color: #000;
}
.contact-info {
  background-color: var(--primary);
  padding: 15px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  border-radius: 100px;
  transition: all 0.3s linear;
}
.contact-info:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-info .icon-box {
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.contact-info h6 {
  transition: all 0.3s linear;
}
.contact-info:hover h6 {
  color: var(--black);
}

.fs-section {
  padding: 80px 0;
}

/* <========== home banner section start ========== > */
.banner {
  width: 100%;
  height: calc(100vh - 187px);
  background-image: url(../img/home-banner.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 79, 11, 0.5);
  z-index: -1;
}
.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url(../img/icons/1.svg);
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.banner .header {
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.banner .header svg {
  width: 18px;
  height: 18px;
}

/* home-about page start */

.home-about .img-box {
  width: 100%;
  height: 520px;
  border-radius: 15px;
  overflow: hidden;
}
.home-about .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-right p {
  margin-bottom: 15px;
}
.home-about-right li {
  position: relative;
  padding-left: 32px; /* space for SVG */
  margin-bottom: 10px;
}
.home-about-right li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1.5 12.5L5.576 16.576C5.6885 16.6884 5.841 16.7515 6 16.7515C6.159 16.7515 6.3115 16.6884 6.424 16.576L9 14M16 7L12 11' stroke='%230C7735' stroke-width='1.5' stroke-linecap='round'/><path d='M7 12L11.576 16.576C11.6885 16.6884 11.841 16.7515 12 16.7515C12.159 16.7515 12.3115 16.6884 12.424 16.576L22 7' stroke='%230C7735' stroke-width='1.5' stroke-linecap='round'/></svg>")
    no-repeat center;
  background-size: 24px 24px;
}
.home-about-right li p {
  margin-bottom: 0;
}
.heading {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
}

.home-about-section .img-box {
    width: 50%;
    height: 520px;
    border-radius: 15px;
    aspect-ratio: 2/2.8;
    overflow: hidden;
    float: left;
    margin-right: 15px;  
}
.home-about-section .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-about-section .desc-box{
    order: 2;
}

/* <========== home-service-box section start ==========> */
.home-service-box {
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 15px;
}

.home-service-box .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.home-service-box .icon-box svg {
  width: 30px;
  height: 30px;
}

.home-service-box .icon-box svg path {
  stroke: #fff;
}

.gallery .img-box,
.gallery-details .img-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.gallery .img-box img,
.gallery-details .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}

.gallery .img-box:hover img,
.gallery-details .img-box:hover img {
  transform: scale(1.1);
}

.table-wrapper {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;

  &::after {
    --shadow-size: 20px;
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 calc(var(--shadow-size) * -1) var(--shadow-size)
      calc(var(--shadow-size) * -1) rgb(0 0 0 / 0.35);
    pointer-events: none;
  }
}

.table-container {
  max-height: 520px;
  overflow: auto;
  height: 100%;
}

table {
  width: 100%;
  border-collapse: separate; /* make border sticky */
}

.home-table th,
.inner-table th,
.home-table td,
.inner-table td {
  border: none;
  padding: 1rem 2rem;
  text-align: left;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--border);
  
}
.home-table th,
.inner-table th{
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  position: sticky;
  top: 0;
  text-align: center;
}
.home-table .table-container
{
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: overlay;
}
.broker_list_table  {
  border: 1px solid #e2e2e2;
}
.dropdown-menu {
  background-color: #fff !important;
}
.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled]
{

  background-color: var(--primary) !important;
  background-image: unset !important;
}

.datepicker td, .datepicker th
{
  width: 40px !important;
  height: 40px !important;
}
.datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover {
background-color: var(--primary) !important; background-image: unset !important; }


.inner-table table tbody tr td:nth-child(3) span,
.home-table table tbody tr td:nth-child(2) span
{
    padding: 3px 12px;
    border-radius: 50px;
    display: inline-block;
    background-color: #CEE4D7;
    color: var(--primary);
}
.inner-table table tbody tr td:nth-child(4) span,
.home-table table tbody tr td:nth-child(3) span {
    padding: 3px 12px;
    border-radius: 50px;
    display: inline-block;
    background-color: #F8D7DA;
    color: #DC3545;
}

.home-table table tbody tr td:nth-child(4) span, 
.inner-table table tbody tr td:nth-child(5) span {
   padding: 3px 12px;
  border-radius: 50px;
    display: inline-block;
  background-color: #CCD1F4;
  color: #001BCA;
}

.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

.gallery.fs-section {
  background-color: var(--bg);
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}
.gallery .top-svg {
  width: 100%;
  height: 60px;
  overflow: hidden;
}
.gallery .top-svg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.gallery::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url(../img/icons/2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.home-news .heading {
  margin-left: 0;
  margin-right: 0;
  text-align: start;
}
.news-box h5 {
  margin-top: 8px;
  margin-bottom: 15px;
}

.news-box .btn-fill {
  margin-top: 15px;
}
.news-box {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.news-box .img-box {
  width: 100%;
  height: 270px;
  overflow: hidden;
  position: relative;
}
.news-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
/*.news-box .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(36, 79, 11, 0.1) 0%,
    rgba(36, 79, 11, 0.4) 100%
  );
  z-index: 2;
}*/

.news-box:hover .img-box img {
  transform: scale(1.1);
}
.news-box .card-body > p {
     overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}
.cot .heading {
  margin-left: 0;
  margin-right: 0;
  text-align: start;
}

.cot-inner {
  width: 100%;
  height: auto;
  background-image: url(../img/8.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  position: relative;
}

.cot-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(36, 79, 11, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 15px;
}

.cot .left {
  z-index: 2;
  padding: 40px;
  position: relative;
}

.cot .right{
  width: 100%;
  height: 100%;
  position: relative;
}
.cot .right img{
  max-width: 100%;
  height: 470px;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  object-position: bottom;
  padding-bottom: 2px;
}


/* footer section start */
footer{
  background-color: #18271E;
  position: relative;
  margin-top: 60px;
}
footer::before{
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url(../img/icons/4.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
footer p, 
footer h6 {
  color: #fff;
}

footer .footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  z-index: 2;
}
.footer-row .logo {
  width: auto;
  height: 50px;
  overflow: hidden;
}
.footer-row .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-widget-box1 {
  max-width: 315px;
}
.footer-widget-box1 .logo-box {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.footer-widget-box1 .logo-box img {
  height: 100%;
  object-fit: contain;
}

.footer-widget-box2 ul li:not(:last-child) {
  margin-bottom: 8px;
}
.footer-widget-box2 ul li a {
  color: var(--ternary);
  transition: all 0.3s linear;
}
.footer-widget-box2 ul li a:hover p{
  color: var(--secondary);
}
.footer-widget-box3 {
  max-width: 360px;
}
.footer-widget-box3 ul {
  margin: 30px 0;
}
.footer-widget-box3 ul li a {
  display: flex;
  gap: 10px;
  color: var(--ternary);
  margin-bottom: 15px;
  transition: all 0.3s linear;
}

.footer-widget-box3 ul li a {
  color: var(--ternary);
  transition: all 0.3s linear;
}
.footer-widget-box3 ul li a:hover {
  color: var(--secondary);
}
footer .social-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
}
footer .social-icon:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
footer .social-icon svg path {
  transition: all 0.3s linear;
}
footer .social-icon:hover svg path {
  fill: var(--);
}
footer .widget-img {
  width: 280px;
  height: 220px;
  overflow: hidden;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1;
}
footer .widget-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-widget-box svg path {
  stroke: #fff;
}
.footer-widget-box .social-icon svg path {
  fill: var(--primary);
}


/* about us page start */

.inner-banner {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.inner-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}
.inner-banner .container {
  position: relative;
  z-index: 2;
  color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.inner-banner h2 {
  max-width: 750px;
}



.swiper--top .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  
}
.swiper--top .swiper-wrapper{
  -webkit-transition-timing-function:linear!important;    transition-timing-function:linear!important; 
  position: relative;
}
.swiper--top .swiper-slide {
  text-align: center;
  font-size: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}
.fixed-price-bottom {
  background-color: #FFF7E5;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  padding: 8px 0;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.price-swiper .item-box div h6:first-child {
  color: var(--primary);
}
.price-swiper .item-box div h6:nth-child(3) {
  color: #DC3545;
}

.price-swiper .item-box div h6:last-child {
  color: #2515de  ;
}

@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.daily-rates .table-container {
  max-height: 700px;
}

.news-box.gallery-box .img-box {
  height: 220px;
}

.news-details p{
  margin-bottom: 15px;
}

.news-details .news-details-img{
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
/*.news-details .news-details-img::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 79, 11, 0.1) 0%, rgba(36, 79, 11, 0.5) 100%);
}*/

.news-details .news-details-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* contact us page start */


.contact-box {
  width: 100%;
  height: 100%;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-box h6,
.contact-box p {
  color: #fff;
}

.contact-box .icon-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  gap: 10px;
  background-color: #fff;
}
.contact-box .icon-box svg {
  width: 26px;
  height: 26px;
}
.contact-box1 {
  background: linear-gradient(rgba(26, 74, 150, 0.5), rgba(26, 74, 150, 0.5)),
    url("../img/img2.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-right {
  width: 100%;
  height: 610px;
  border-radius: 15px;
  overflow: hidden;
}
.contact-right iframe {
  width: 100%;
  height: 100%;
}
.contact-box .icon-box svg path {
  stroke: var(--primary);
}

/* important_news_box page start */
.important_news_box {
  width: 100%;
  height: auto;
  padding: 40px;
  display: flex;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}
.important_news_box:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.important_news_box .img-box {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.important_news_box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.important_news_box h4 {
  font-weight: 600;
  color: var(--black);
}
.important_news_box .date-box {
  background-color: rgba(0, 27, 202, 0.2);
  border-radius: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(0, 27, 202, 0.2);
}
.important_news_box .date-box span {
  color: #001BCA;
  font-weight: 500;
}
.important_news_box .date-box svg path {
  fill: #001BCA;
}
.important_news_box .announcement-box 
{
  background-color: rgba(12, 119, 53, 0.2);
  border-radius: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(12, 119, 53, 0.2);
}
.important_news_box .announcement-box span {
  color: rgba(12, 119, 53);
  font-weight: 500;
}
.important_news_box .announcement-box svg path {
  stroke: var(--primary);
}

.important_news_box .desc {
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}
.google-play{
  width: auto;
  height: 60px;
  overflow: hidden;
}
.google-play img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-main-title
{
  color: #000;
  font-weight: 700;
  min-width: 120px;
  line-height: 1;
}
.price-main-desc {
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
}
.price-swiper .item-box h6 {
  font-size: 16px;
}
.fixed-price-rows:not(:last-child)
{
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #E3E3E3;
}
.fixed-price-bottom .left-part
{
    position: absolute;
    top: 0px;
    width: 90px;
    left: 0px;
    height: 100%;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: #34CE57 #34CE57 #28A745;
    background-color: #00A95A;
    background-repeat: no-repeat;
    text-align: center;
}
.fixed-price-bottom .left-part h6 {
  font-weight: 700;
  color: #fff;
}

.price-swiper .item-box h6 {
  font-size: 12px;
}
.price-swiper {
  overflow: hidden;
}