@import url("https://fonts.googleapis.com/css2?family=Oranienbaum&display=swap");

/* for logo^  */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oranienbaum&display=swap");

/* fort-text ^  */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* for title ^  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

:root {
  --blue: #19173b;
  /*--golden: #b47f4e;*/
  --golden: #e5b80b;
}

.carousel-caption {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 100px;
  text-align: left;
  width:30%;
  color: black;
  padding: 10px;
  background-color:rgba(211, 184, 79, 0.70);
  border-radius:5px;
  animation: animatecap;
  animation-duration:1.5s;
 
}

@keyframes animatecap {
  0%   {opacity:0}
  20%  {opacity:0.2}
  40%  {opacity:0.4}
  60%  {opacity:0.6}
  80%  {opacity:0.8}
  100% {opacity:1}
}
.carousel-caption h5
{
    color:var(--blue);
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 5px;
}

.slide-wrapper {
  position: relative; /* Ensure positioning context for the caption */
}

/* text related css  */

.title-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--blue);
}

.text-golden {
  font-family: "Roboto", sans-serif;
  /* font-weight: 700; */
  font-style: normal;
  color: var(--golden);
}
.text-color {
  color: var(--blue);
}

p {
  font-family: "Montserrat", sans-serif;
  /*font-optical-sizing: auto;*/
  font-size:0.9rem;
  font-weight:500;
  text-align:justify;
}

h5{
    font-size:1rem;
   text-align:justify;
   font-weight:700;
   
}

.nav-item
{
     font-size:0.9rem;
}
li{
    font-size:0.8rem;
   text-align:justify;
   font-weight:500;
}

.logo-font {
  font-family: "Oranienbaum", serif;
  font-weight: 400;
  font-style: normal;
}



/* text related css -------------------- */
.section-height {
  height: auto;
  padding: 80px 0;
}

@media (max-width: 760px) {
  .section-height {
    height: auto;
  }
}
.bg-color {
  background-color: var(--blue);
}

.bg-golden {
  background-color: var(--golden) !important;
  color: white !important;
}

.gradient-border {
  width: 100%;

  background-image: linear-gradient(
    to right,
    #e5b80b 25%,
    #b08e0f 50%,
    #e5b80b
  ); /* Gradient colors */
  background-size: 100% 4px; /* Width and height of the gradient */
  background-position: bottom; /* Position at the bottom */
  background-repeat: no-repeat; /* Do not repeat the gradient */
}

.heroimg {
  clip-path: polygon(25% 0%, 100% 0%, 100% 99%, 0% 100%);
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .heroimg {
    clip-path: none;
    max-width: 100%;
    object-fit: cover;
    height: auto;
    display: block;
  }

  .nav-btn {
    background-color: transparent !important;
    color: var(--golden) !important;
    font-weight: bold;
  }
}

/* Services Css  */

/* Virtual page  */

.mobileShow {
  display: none;
}

@media (max-width: 600px) {
  .mobileShow {
    display: block;
  }

  .desktopShow {
    display: none;
  }
}

/* Finance css  */

.mypath {
  width: 300px;
  --mypath-radius: 31px;
  --mypath-border: 2px dashed;
}

.mypath > div {
  border-top: var(--mypath-border);
  border-color: #777 !important;
  margin: 0;
  padding: var(--mypath-radius);
}
.border-danger {
  border-color: var(--blue) !important;
}

.mypath > div:nth-child(even) {
  border-left: var(--mypath-border);
  border-top-left-radius: var(--mypath-radius);
  border-bottom-left-radius: var(--mypath-radius);
  margin-right: var(--mypath-radius);
  padding-right: 0;
}

.mypath > div:nth-child(odd) {
  border-right: var(--mypath-border);
  border-top-right-radius: var(--mypath-radius);
  border-bottom-right-radius: var(--mypath-radius);
  margin-left: var(--mypath-radius);
  padding-left: 0;
}

.mypath > div:first-child {
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.mypath > div:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.bg-img {
  background: url("Images/Finance.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* end  */

/* FOOTER CSS  */

.footer-links-list ul {
  padding-left: 0;
}
.footer-links-list ul li {
  list-style-type: none;
  padding-left: 0;
}
.footer-links-list a {
  text-decoration: none;
  color: rgb(221, 221, 221);
}

.footer-links-list {
  text-decoration: none;
  color: rgb(221, 221, 221);
}
