:root {
  --greyish: #8c8c8c;
  --redish: #540700;
  --blackish: #070511;
}

* {
  box-sizing: border-box;
}

.radial-bg {
  background-image: radial-gradient(#540700, #070511);
}

.dark-linear {
  background-image: linear-gradient(45deg, black, #3a0200);
}

.dark-linear-invert {
  background-image: linear-gradient(-45deg, black, #3a0200);
}

* {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
}

.sticky-img {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.sticky-img.sticky-active {
  opacity: 0.15;
}

/* ______________NAVBAR______________ */
nav {
  width: 100%;
  z-index: 1000;
  height: 100px;
}

@media (min-width: 992px) {
  .height-v {
    height: 100vh;
  }
}



.custom_nav {
  width: 86%;
  margin: auto;
  /* position: fixed; */
  z-index: 20;
}


.logo {
  margin-left: 26px;
  margin-top: 55px;
  z-index: 50;
  left: 88px;
}

.silos {
  top: 43px;
  right: 260px;
}

.top_link_item {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 2.1rem;
  color: currentColor;
  cursor: pointer;
}

.right-bar-nav {
  right: 120px;
  top: 30px;
}

.fs-14px {
  font-size: 14px !important;
}

.filled-text {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
}

.yinyans {
  top: 0;
}
@media (max-width: 1250px){
  .filled-text {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {


  .logo {
    margin-left: 26px;
    margin-top: 40px;
    z-index: 50;
    left: 0px;
  }

  .right-bar-nav {
    right: 10px;
    top: 5px;
  }

  .yinyans {
    top: 60px;
  }

  .svgs-forloop {
    width: 30px !important;
    height: 30px !important;
  }

  nav {
    height: 55px;
  }

  .logo {
    margin-left: -10px;
    margin-top: 2px;
  }
}

@media(max-width:574px){
      .svgs-forloop {
    width: 22px !important;
    height: 22px !important;
  }
  .fs-14px {
  font-size: 12px !important;
}
}
@media (min-width: 575px) {

  /* .svg-bulu {
    width: 60px !important;
    height: 60px !important;
  } */
  .height-v-perma {
    height: 100vh;
  }

  .sv-text-second {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
}

.svg-bulu {
  width: 60px !important;
  height: 60px !important;
}
@media(max-width:1250px){
    .svg-bulu {
      width: 44px !important;
      height: 44px !important;
    }

}
.svgs-forloop {
  transition: width 0.2s ease;
}



/* TOGGLER!! 
{ 


 */
.cursor {
  cursor: pointer;
}

.toggle {
  cursor: pointer;
  overflow: hidden;
  width: 80px;
  height: 30px;
  border-radius: 10px;
  /* box-shadow: 0 3px 7px 0 #000; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-toggle {
  position: absolute;
  display: block;
  width: 75px;
  height: 4px;
  /*background: #540700;*/
  background: #000;
  border-radius: 5px;
  transition: all 0.4s;
}

.line-toggle:first-child {
  transform: translateY(-5px);
  width: 32px;
  transition-delay: 0s;
}

.toggle .line-toggle:nth-child(2) {
  transition-delay: 0.15s;
}

.line-toggle:last-child {
  transform: translateY(5px);
  width: 32px;
  transition-delay: 0s;
}

.toggle.activate .line-toggle:first-child {
  background: orangered !important;
  transform: translateY(0) translateX(0) rotate(45deg);
  width: 34px;
  height: 3px;
  transition-delay: 0.0s;
}

.toggle.activate .line-toggle:nth-child(2) {
  transform: translateX(110px);
  transition-delay: 0s;
}

.toggle.activate .line-toggle:last-child {
  background: orangered !important;
  transform: translateY(0) translateX(0) rotate(-45deg);
  width: 34px;
  height: 3px;
  transition-delay: 0.1s;
}
@media (max-width:574px) {
.head-new-font{
    font-size:12px !important;
}
    /*#logo-main{*/
    /*    width:55px;*/
    /*    height:55px;*/
    /*}*/
    #in-svg{
        width:20px;
        height:20px;
    }
    .toggle.activate .line-toggle:last-child, .toggle.activate .line-toggle:first-child, .line-toggle:last-child, .line-toggle:first-child   {
        width: 28px;
        /*height: px;*/
    }
}
/*
 }
 TOGGLER END!  */

/* SIDEBAR */
.side-bar {
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 10;
}

.inner-silo,
.inner-silo>a {
  font-size: 42px;
  color: var(--greyish);
  transition: 0.5s;
}

.iwwo>a:hover {
  color: black;
}

.greyish {
  color: var(--greyish);
}

.inner-mails {
  color: var(--greyish);
  transition: 0.5s;
}

.inner-mails:hover {
  color: black;
}

.lead-bar {
  opacity: 0;
  border-bottom-left-radius: 50%;
  transform: translate(100%, -100%);
  transition: all 0.5s;
  z-index: 500;
  background: white;
}

.side-bar-hidden {
  opacity: 1;
  transform: translate(0%, 0%);
}

.lead-bar.side-bar-hidden {
  border-bottom-left-radius: 0%;
}

.lead-bar>div {
  transform: translate(-100%, 100%);
  transition: all 0.5s;
}

.side-bar-hidden.lead-bar>div {
  transform: translate(0%, 0%);
}

.logo-follow {
  position: absolute;
  transition: transform 0.2s ease;
}

/* SIDEBAR END */

/* The progress container (grey background) */
.progress-container {
  width: 3px;
  /* height: 200px; */
  background: #420600;
  top: 40%;
  z-index: 500;
  display: none;
}

@media (min-width: 1350px) {
  .progress-container {
    display: block;
  }
}

.pre-progress {
  width: 3px;
  height: 200px;
  background: #420600;
  top: 100%;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 0%;
  background: #d51200;
  width: 3px;
}

.z-indexor {
  z-index: -100;
}

.heh {
  height: 900px;
  margin: 10px;
  border: 1px solid red;
}

.heh1 {
  height: 1000px;
  margin-top: 500px;
  border: 1px solid red;
}

.circler {
  background: inherit;
  right: -6.5px !important;
}

.circler:hover {
  background: inherit;
  right: -6.5px !important;
  border: 1px solid;
}

.circler-parent:first-child {
  top: 0%;
}

.colored-circle {
  background: #d51200;
}

.circler:nth-child(2) {
  top: 0% !important;
}

.circler:nth-child(3) {
  top: 23% !important;
}

.circler:nth-child(4) {
  top: 48% !important;
}

.circler:nth-child(5) {
  top: 73% !important;
}

.circler:nth-child(6) {
  top: 98% !important;
}

/* ---------sec-1 */
.first-head {
  margin-top: 40vh;
  font-size: 4rem !important;
  font-weight: 400;
}

@media (max-width: 992px) {
  .first-head {
    margin-top: 20vh;
    font-size: 2.8rem !important;
  }

  .main-bg-img {
    width: 100%;
  }

  /* video {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px ;
  } */
}

/* ----------end */

/* scroller */

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8d8c8c;
}

/* scroller end */

.btn-first {
  background: transparent;
  border: 1px solid black;
}

.btn-first:hover {
  background: #540700;
  color: white;
}

.btn-second {
  background: transparent;
  border: 1px solid #e9e9e9;
}

.btn-second:hover {
  background: #540700;
  color: white;
}

.head-2 {
  font-size: 11cqw;
  height: 100vh;
}


/* sec 3 */

/* .card-big-btn{
  

} */
.video-div {
  border-top-right-radius: 33%;
}

@media (max-width: 992px) {
  .video-div {
    border-top-right-radius: 0%;
  }
}

.yinyan {
  max-width: 100%;
  height: auto;
}

.yinyan-heading {
  font-size: 3rem;
}

@media (max-width: 574px) {
  .yinyan {
    width: 100%;
    height: auto;
  }
  .btn-second {
 
 font-size:small !important;
}
    .inner-silo,
    .inner-silo>a {
        font-size: 24px;
    
    }
  .yinyan-heading {
    font-size: 1.75rem;
  }

  .btn-first {
    font-size: 0.7rem;
  }

  .fs-about {
    font-size: 0.7rem !important;
  }

  .fs-custom {
    font-size: 0.7rem;
  }


  .fs-head {
    font-size: 1.8rem;
  }

}

/* sec 3 */

/* 3 CARDS */

/* .carder {
  height: 500px;
  }
  .cardo-1,
  .cardo-2,
  .cardo-3 {
    border-radius: 50px;
    height: 500px;
    }
.cardo-1 > .position-absolute,
.cardo-2 > .position-absolute,
.cardo-3 > .position-absolute {
  top: 1.7rem;
  right: 1.7rem;
  }
  
  
  .cardo-1{
    background: #0A062B;
    }
    .cardo-2{
      background: #657EFD;
      }
      .cardo-3{
        background: #540700;
        } */

/* 3 CARDS */

/* carousel */
.owl-carousel {
  transform: rotate(90deg);
  width: 270px;
  margin-top: 100px;
}

.item {
  transform: rotate(-90deg);
}

.owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: calc(50% - 33px);
}

div.owl-carousel .owl-nav .owl-prev,
div.owl-carousel .owl-nav .owl-next {
  font-size: 36px;
  top: unset;
  bottom: 15px;
}

.card-section {
  transition: filter 0.5s ease;
  position: sticky;
}

.blur {
  filter: blur(10px);
  transform: scale(0.95);
  transition: filter 0.5s, transform 0.5s;
}

.section {
  /* opacity: 0; */
  /* Initially hide sections */
  transition: opacity 0.5s ease;
  /* Smooth transition */
}

.active {
  opacity: 1;
  /* Show active section */
}

.list-img {
  max-width: 100%;
  height: 100%;
  max-height: 200px;
  transition: opacity 0.5s ease;
  max-height: 200px;
  width: 100%;
  transition: opacity 1s linear;
}

#fader,
#fader-2 {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.opacitier {
  opacity: 0 !important;
}

/* .progress-bar {
  height: 3px;
  background-color: #6e6e73;
  width: 0;
  transition: width 0.25s ease;
  } */
.top-mine2 {
  top: 18%;
}

.top-mine {
  top: 25%;
}

.top-mine3 {
  top: 30%;
}

.progress {
  height: 3px;
  background-color: blue;
  width: 0;
}

.progressor {
  width: 100px;
}

.bg-rere {
  background-image: url(../images/background.jpg);
  /*background-attachment: fixed;*/
  background-position:right;
  background-size: cover;
}

.back-drop {
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.25);
}

.outer-scrolled {
  background: #cfcfcf;
  width: 150px;
  height: 2px;
}

.inner-scrolled {
  width: 0;
  background: #e01010;
  height: 100%;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.inside-dropper {
  max-width: 995px;
  height: 100vh;
}

@media (min-height:900px) and (min-width:992px) {
  .inside-dropper {
    height: 50vh;
  }

  .inside-dropper>.row {
    height: 75%;
  }
}

.custom-img {
  transition: opacity 0.5s ease-in-out;
}

.custom-img.fade-in {
  animation: fadeIn 0.33s ease-in-out;
}

.opacity-0 {
  opacity: 0;
}

.white-f {
  fill: #f1f1f1;
}

.bg-f {
  background: #f1f1f1 !important;
}

.lead-bar.side-bar-hidden:has(~ .white-f)~.white-f {
  fill: #000 !important;
}

.fs-custom {
  font-size: 1.25rem;
}

.fs-head {
  font-size: 3.1rem;
}

.videor {
  width: 100%;
}
.modal-address{
   /*background-image: radial-gradient(    farthest-corner at 40px 40px,    #500700 0%,    #000 69%,#000 100%  )*/
   background: #000
}
@media (max-width: 991px) {
  .head-3 {
    font-size: 2rem;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .head-3 {
    font-size: 3rem;
  }

  .end-borders {
    border-right: 1px solid black;
  }

  .div-3000 {
    height: 3000px;
  }

  .height-v-perma {
    height: 100vh;
  }
}

@media (min-width: 1188px) {
  .head-3 {
    font-size: 4rem;
  }
}

@media (min-width: 1875px) {
  .head-3 {
    font-size: 6rem;
  }
}

@media (max-width:1399px) {
  .videor {
    width: 430px;
    height: 430px;
  }
}

@media (max-width:1199px) {
  .fs-about {
    font-size: 1.2rem !important;
  }

  .fs-custom {
    font-size: 1.2rem;
  }


  .fs-head {
    font-size: 2.1rem;
  }

}

@media (max-width:991px) {

  .toggle {
    width: 50px
  }

  .card-section {
    position: relative;
  }

  .top-mine {
    top: 15%;
  }
}

@media(max-width:1499px) {
  .list-img {
    width: 100%;
    height: 100%;
  }

  .custom-blog-card>div {
    width: 100%;
    height: 150px;

  }
}

@media (min-width:1500px) {
  .list-img {
    width: 100%;
    height: 100%;
  }

  .custom-blog-card>div {
    height: 100%;
    width: 100%;
  }
}

.go-up {
  animation: uppar 0.5s ease-in-out;
}

/* @media(min-width:768px) {} */
@keyframes uppar {
  0% {
    transform: translateY(0%);
  }

  40% {
    transform: translateY(-100%);
  }

  41% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(100%);

  }


  100% {
    transform: translateY(0%);
  }
}

.text-container {
  overflow: hidden;
}
.footer-links {
  font-size: 18px;
}
@media(max-width:650px){
      .footer-links {
    font-size: small;
  }
  .filled-text {
    font-size: 1.3rem;
  }
   .custom-blog-card>div {
    width: 100%;
    height: 100px;

  }
}
@media (max-width: 574px) {
  .filled-text {
    font-size: 0.9rem;
  }

  .fs-about {
    font-size: 0.7rem !important;
  }

  .fs-custom {
    font-size: 0.7rem;
  }


  .fs-head {
    font-size: 1.8rem;
  }
}