

    
  
  :root {
    --red:red;
 
     --white:#fff;
     /* --gap-4: 0.2rem;
     --gap-2: 0.4rem; */
     /* --gap1: 0.8rem;
     --gap1_5: 1.2rem; */
     --gap2: 1.6rem;
     --gap3: 2.4rem;
     --gap4: 3.2rem;
     --gap5: 4rem;
     --gap6: 4.8rem;
     --gap7: 5.6rem;
     --gap8: 6.4rem;
     --gap9: 7.2rem;
     --gap10: 8rem;
     --gap12: 9.6rem;
   
   
 
     --smalldevice-h1-font-family: var(--font2);
     --smalldevice-h1-font-size: 2.8rem;
     --smalldevice-h1-font-weight: normal;
     --smalldevice-h1-line-height: 1.14;
     --smalldevice-h1-letter-spacing: normal;
     --smalldevice-h2-font-family: var(--font2);
     --smalldevice-h2-font-size: 2.4rem;
     --smalldevice-h2-font-weight: normal;
     --smalldevice-h2-line-height: 1.25;
     --smalldevice-h2-letter-spacing: normal;
     --smalldevice-h3-font-family: var(--font2);
     --smalldevice-h3-font-size: 2rem;
     --smalldevice-h3-font-weight: normal;
     --smalldevice-h3-line-height: 1.1;
     --smalldevice-h3-letter-spacing: normal;
     --smalldevice-h4-font-family: var(--font2);
     --smalldevice-h4-font-size: 1.8rem;
     --smalldevice-h4-font-weight: normal;
     --smalldevice-h4-line-height: 1.11;
     --smalldevice-h4-letter-spacing: normal;
     --h1-font-family: var(--font2);
     --h1-font-size: 4.2rem;
     --h1-font-weight: normal;
     --h1-line-height: 1.19;
     --h1-letter-spacing: normal;
     --h2-font-family: var(--font2);
     --h2-font-size: 3.2rem;
     --h2-font-weight: normal;
     --h2-line-height: 1.2;
     --h2-letter-spacing: normal;
     --h3-font-family: var(--font2);
     --h3-font-size: 2.8rem;
     --h3-font-weight: normal;
     --h3-line-height: 1.2;
     --h3-letter-spacing: normal;
     --h4-font-family: var(--font2);
     --h4-font-size: 2.4rem;
     --h4-font-weight: normal;
     --h4-line-height: 1.42;
     --h4-letter-spacing: normal;
     --h5-font-family: var(--font2);
     --h5-font-size: 1.8rem;
     --h5-font-weight: normal;
     --h5-line-height: 1.3;
     --h5-letter-spacing: normal;
 
     --body-font-size: 1.6rem;
     --body-font-weight: normal;
     --body-line-height: 1.75;
     --body-letter-spacing: normal;
  
     --line-border: #0000004a;
  
     
  
   }
   
  
 
   
  
   .full-width {
     width: 100vw;
     text-align: center;
   }
   .full-width,
   .full-width-with-padding {
     margin-left: calc(-50vw + 50%);
     margin-right: calc(-50vw + 50%);
   }
   .full-width-with-padding {
     padding-left: calc(50vw - 50%);
     padding-right: calc(50vw - 50%);
   }
   
   .hidden {
     display: none !important;
   }
   @media screen and (max-width: 767px) {
     .hidden-mobile {
       display: none !important;
     }
   }
   @media (min-width: 768px) {
     .hidden-desktop {
       display: none !important;
     }
   }
 
 
   @media (min-width: 1452px) {
     .main-page {
       display: grid;
       justify-content: center;
       align-items: flex-start;
       grid-template-columns: 1fr minmax(1140px, 1fr) 1fr;
       grid-template-areas: "ads-left content ads-right";
     }
   }
   @media (min-width: 1452px) {
     .main-page .page-content {
       grid-column: 1/-1;
       grid-row: 1 / span 1;
     }
   }
   .main-page .ad-tower-left {
     display: none;
     position: sticky;
     top: 150px;
     margin-right: var(--gap2);
   }
   @media (min-width: 1452px) {
     .main-page .ad-tower-left {
       display: flex;
       grid-area: ads-left;
     }
   }
   .main-page .ad-tower-right {
     display: none;
     position: sticky;
     top: 150px;
     margin-left: var(--gap2);
   }
   @media (min-width: 1452px) {
     .main-page .ad-tower-right {
       display: flex;
       grid-area: ads-right;
     }
   }
   .main-content {
     display: flex;
     flex-direction: column;
     min-height: 100vh;
     touch-action: pan-Y;
   }
   /* section 1 */
 
  
 /* 
   .bt-web-starting-place {
     display: grid;
     grid-gap: var(--gap2);
   }
   @media (max-width: 767px) {
     .bt-web-starting-place {
       grid-template-columns: 100%;
     }
   } */
 
   .bt-web-section-one {
     box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
     background-color: #fff;
     padding: 1.2rem;
     border-radius:  0.8rem;
   }
 
   .bt-web-section-one-title {
     font-size: 28px;
     padding-bottom: 8px;
     border-bottom: 1px solid #ababab;
     margin: 0 0 16px;
     position: relative;
     color: var(--title-color);
   }
   @media (max-width: 767px) {
     .bt-web-section-one-title {
       font-size: 24px;
     }
   }
   .bt-web-section-one-title:before {
     content: "";
     position: absolute;
     background-color: var(--red);
     width: 100px;
     height: 4px;
     bottom: -2px;
     left: 0;
   }
 
 
   .bt-web-section-one-s {
     --background-color: var(--white);
     --accent-color: var(--yellowish-orange);
     background-color: var(--background-color);
   }
   .bt-web-section-one-s .premium-badge {
     right: 5%;
     left: auto;
   }
   .bt-web-section-one-s:last-of-type {
     margin-bottom: 0;
   }
   .bt-web-section-one-image {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     grid-gap: 0;
   }
   @media (max-width: 767px) {
     .bt-web-section-one-image {
       display: block;
       grid-template-columns: auto;
     }
   }
 
   .bt-web-section-one-card {
     grid-gap: 0;
   }
 
   .bt-web-section-one-a:first-of-type {
     border-bottom: 1px solid #e5e5e5;
     padding-bottom: 1.2rem;
     grid-column: span 2;
   }
   @media (max-width: 767px) {
     .bt-web-section-one-a:first-of-type {
       padding-bottom: 0;
       margin-bottom: 0;
     }
   }
   .bt-web-section-one-a:first-of-type .bt-web-section-one-t {
     display: grid;
     grid-template-columns: 7fr 4fr;
     align-items: center;
     grid-gap: var(--gap2);
   }
   @media (max-width: 767px) {
       grid-template-columns: auto;
     }
   }
   .bt-web-section-one-a:first-of-type
     .bt-web-section-one-t
     .bt-web-section-one-sk-am {
     font-size: 19px;
     line-height: 34px;
   }
   @media (max-width: 767px) {
     .bt-web-section-one-a:first-of-type
       .bt-web-section-one-t
       .bt-web-section-one-sk-am {
       font-size: 26px;
       line-height: 32px;
     }
   }
   .bt-web-section-one-a:first-of-type
     .bt-web-section-one-t
     .bt-web-section-one-sk-code {
     overflow: hidden;
     max-height: calc(6 * var(--h3-line-height) * 1em);
   }
   .bt-web-section-one-a:first-of-type
     .bt-web-section-one-h {
     padding-top: 56.66667%;
   }
   .bt-web-section-one-a:first-of-type
     .styles-m__contributor__1Jd31 {
     margin-top:  0.8rem;
   }
   .bt-web-section-one-a:nth-of-type(2) {
     border-right: 1px solid var(--line-border);
     border-bottom: 1px solid var(--line-border);
     padding: 1.2rem 1.2rem 1.2rem 0;
   }
   @media (max-width: 767px) {
     .bt-web-section-one-a:nth-of-type(2) {
       border-right: 0;
       padding: 1.2rem 0 0;
     }
   }
   .bt-web-section-one-a:nth-of-type(3) {
     border-bottom: 1px solid var(--line-border);
     padding: 1.2rem 0 1.2rem 1.2rem;
   }
   @media (max-width: 767px) {
     .bt-web-section-one-a:nth-of-type(3) {
       padding: 1.2rem 0 0;
     }
   }
   .bt-web-section-one-a:nth-of-type(4) {
     border-right: 1px solid var(--line-border);
     padding: 1.2rem 1.2rem 0 0;
   }
   @media (max-width: 767px) {
     .bt-web-section-one-a:nth-of-type(4) {
       border-right: 0;
       border-bottom: 1px solid var(--line-border);
       padding: 1.2rem 0 0;
     }
   }
   .bt-web-section-one-a:nth-of-type(5) {
     padding: 1.2rem 0 0 1.2rem;
   }
   @media (max-width: 767px) {
     .bt-web-section-one-a:nth-of-type(5) {
       padding: 1.2rem 0 0;
     }
   }
   @media (max-width: 767px) {
     .bt-web-section-one-a:nth-of-type(5) .bt-web-section-one-t {
       margin-bottom: 0;
     }
   }
   @media (min-width: 768px) {
     .bt-web-section-one-n:hover .bt-web-zoom-desktop {
       transform: scale(1.1);
     }
   }
 
    .bt-web-section-one-t {
     grid-template-columns: 5fr 7fr;
   }
   
     .bt-web-section-one-t
     .bt-web-section-one-sk-am {
     color: var(--title-color);
     margin: 0;
   }
   @media (max-width: 767px) {
     
       .bt-web-section-one-t
       .bt-web-section-one-sk-am {
       font-size: 20px;
       line-height: 22px;
     }
   }
   @media (min-width: 768px) {
     
       .bt-web-section-one-t
       .bt-web-section-one-sk-am {
      font-size: 14px;
         line-height: 22px;
         margin: 0;
     }
   }
   @media (min-width: 768px) {
     
       .bt-web-section-one-t
       .bt-web-section-one-sk-code {
       overflow: hidden;
       max-height: calc(4 * var(--h3-line-height) * 1em);
     }
   }
   @media (max-width: 767px) {
     
       .bt-web-section-one-t
       .bt-web-section-one-sk-code {
       overflow: hidden;
       max-height: calc(3.6 * var(--h3-line-height) * 1em);
     }
   }
   
 .bt-web-section-one-t {
   display: grid;
   grid-template-columns: 3fr 7fr;
   grid-gap: 1.2rem;
   align-items: center;
 }
 @media (max-width: 767px) {
   .bt-web-section-one-t {
     margin-bottom: 1.2rem;
   }
 }
 
   .bt-web-section-one-h {
   padding-top: 75%;
 }
 
 .bt-web-section-one-h {
   padding-top: 75%;
   border-radius:  0.8rem;
 }
 .bt-web-section-one-h {
   position: relative;
 }
 .bt-web-section-one-s{
   background:#fff !important;
 }
 .bt-web-section-one-sk {
   padding: 0;
 }
 .bt-web-section-one-sk-am {
   color: var(--title-color);
   margin: 0;
 }
 @media (min-width: 768px) {
   .bt-web-section-one-sk-am {
     font-size: 14px;
     line-height: 22px;
     margin: 0;
 }
 }
 
 @media (min-width: 768px) {
   .bt-web-section-one-sk-code {
     overflow: hidden;
     max-height: calc(4 * var(--h3-line-height) * 1em);
   }
 }
 @media (max-width: 767px) {
   .bt-web-section-one-sk-code {
     overflow: hidden;
     max-height: calc(3.6 * var(--h3-line-height) * 1em);
   }
 }
 
 .bt-web-section-two-mp {
   border-radius:  0.8rem;
   margin-bottom:  0.8rem;
   padding-top: 80%;
 }
 @media (min-width: 768px) {
   .bt-web-section-two-mp {
     padding-top: 65%;
   }
 }
 
 .side-bar {
   margin-bottom: var(--gap3);
   background-color: transparent;
   overflow: hidden;
   height: 295px;
 }
 @media (max-width: 767px) {
   .side-bar {
     height: auto;
     margin-bottom: 0;
   }
 }
 
 
 .bt-web-section-one-s .bt-web-image {
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   height: 100%;
   width: 100%;
   object-fit: cover;
   object-position: 0 15%;
 }
 @media (min-width: 768px) {
   .bt-web-zoom-desktop {
     transform: none;
     transition: transform 0.3s ease-out;
   }
 }
 
 
 
 
 
 /*section -2 */
 
 
 .bt-web-section-two-news-main {
   background-color: #eaeaea;
   padding: 1.2rem;
   border-radius:  0.8rem;
   margin: var(--gap3) auto;
 }
 .bt-web-section-two-news-main-of {
   margin: 0 auto;
 }
 .bt-web-section-two-news-main-of .bt-web-section-two-main-ll {
   grid-template-columns: repeat(3, 1fr);
 }
 .bt-web-section-two-grid {
   display: grid;
   grid-template-columns: auto -webkit-max-content;
   grid-template-columns: auto max-content;
   align-items: center;
   margin-bottom: 1.2rem;
 }
 .bt-web-section-two-main-img {
   --line-border: var(--title-color);
  
   font-size: var(--h4-font-size);
   font-weight: var(--h4-font-weight);
   line-height: var(--h4-line-height);
   letter-spacing: var(--h4-letter-spacing);
   color: var(--title-color);
   margin: 0;
   align-items: center;
   justify-content: center;
 }
 .bt-web-section-two-main-img:after,
 .bt-web-section-two-main-img:before {
   content: "";
   flex-grow: 1;
   opacity: 0.3;
 }
 
 
 .bt-web-section-two-main-mt-mt {
   padding: 0;
   font-size: 16px;
   font-weight: 700;
 }
   .bt-web-section-two-news-a {
   color: #6b6b6b;
 }
 
 
   
   .bt-web-section-two-news-a,
   .bt-web-section-two-news-a {
   color: #fff;
 }
 
   
   .bt-web-section-two-news-a.svg-comments {
   padding: 10px 0 8px 10px;
 }
 
  .bt-web-section-two-news-a {
   color: #fff;
 }
 .bt-web-section-two-news-a:hover  {
   display: block;
 }
 
   
 
   .bt-web-section-two-news-a {
   color: #fff;
 }
 
   
 
   .bt-web-section-two-news-a {
   color: #fff;
 }
 
   
 
   
  
   .bt-web-section-two-news-a {
   color: #fff;
 }
 .expandView span.bt-web-section-two-news-a {
   transition: 0.3s;
   vertical-align: middle;
   transform: rotate(0);
 }
 @media (max-width: 767px) {
   
     .show-mobile-and-tablet.story-section
     
     .loadmore-stories
     
     .bt-web-section-two-news-a {
     color: #fff;
   }
 }
 .bt-web-section-two-arrows {
   font-size: 20px;
   color: #2e308f;
 }
 @media (max-width: 767px) {
   .bt-web-section-two-arrows {
     color: var(--black-color);
   }
 }
 
 .bt-web-section-two-main-ll {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   grid-gap: 1.2rem;
 }
 @media (max-width: 767px) {
   .bt-web-section-two-main-ll {
     display: flex;
     flex-wrap: nowrap;
     overflow-x: auto;
   }
   .bt-web-section-two-main-ll ::-webkit-scrollbar-track {
     box-shadow: inset 0 0 1px var(--line-border);
     background-color: var(--background-color);
   }
   .bt-web-section-two-main-ll::-webkit-scrollbar {
     height: 0;
     background-color: var(--background-color);
   }
 }
 @media (max-width: 767px) and (max-width: 767px) {
   .bt-web-section-two-main-ll::-webkit-scrollbar {
     display: none;
   }
 }
 @media (max-width: 767px) {
   .bt-web-section-two-main-ll::-webkit-scrollbar-thumb {
     background-color: var(--line-border);
   }
 }
 .bt-web-section-two-main-ll:after {
   content: none;
   position: absolute;
   top: 0;
   bottom: 0;
   left: calc(100vw - var(--gap6));
   width: var(--gap6);
   background: linear-gradient(90deg, transparent, #000);
 }
 @media (min-width: 768px) {
   .bt-web-section-two-main-ll:after {
     content: none;
   }
 }
 .bt-web-section-two-card {
   margin-right: 0;
   min-width: 220px;
 }
 @media (min-width: 768px) {
   .bt-web-section-two-card {
     flex: 0 1 25%;
   }
 }
 .bt-web-section-two-card:last-child {
   margin-right: 0;
 }
 .bt-web-section-two-ml {
   --background-color: transparent;
   --accent-color: var(--yellowish-orange);
   background-color: var(--background-color);
   margin-bottom: 0;
 }
 .bt-web-section-two-oo .bt-web-section-two-mp {
   padding-top: 57.77778%;
 }
 .bt-web-section-two-mz {
   background-color: var(--white);
   padding: 1.2rem;
   border-radius:  0.8rem;
   display: grid;
   grid-template-rows: 1fr 88px;
 }
 
 .bt-web-section-one-s {
   margin: 0;
   position: relative;
   overflow: hidden;
   background-color: var(--fallback-image-bg);
 }
 
 
 
 
 .bt-web-section-one-s .fallback-image {
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   max-width: 200px;
   width: 40%;
   height: auto;
 }
 .bt-web-sk-am-d {
   display: flex;
   position: absolute;
   padding:  0.4rem;
   /* background-color: var(--jade-green); */
   border-radius: 25% 25% 0 0;
   z-index: 1;
 }
 .bt-web-sk-am-d.bottomLeft,
 .bt-web-sk-am-d.bottomRight {
   bottom: 0;
   right: 5%;
 }
 .bt-web-sk-am-d.topLeft {
   bottom: 100%;
   left: 5%;
 }
 .bt-web-sk-am-d.topRight {
   bottom: 100%;
   right: 5%;
 }
 
 
 
 .bt-web-section-two-news-b {
   font-size: 1.6rem;
   color: #fff;
 }
 .bt-web-section-two-sk-am-w {
   padding-top: 0;
 }
 .bt-web-section-two-news {
   overflow: hidden;
   max-height: calc(5 * var(--h5-line-height) * 1em);
 }
 @media (max-width: 767px) {
   .bt-web-section-two-news {
     overflow: hidden;
     max-height: calc(6 * var(--h5-line-height) * 1em);
   }
 }
 .bt-web-section-two-news-p {
   /* font-family: var(--h5-font-family);
   font-size: var(--h5-font-size);
   font-weight: var(--h5-font-weight);
   line-height: var(--h5-line-height);
   letter-spacing: var(--h5-letter-spacing);
   color: var(--title-color);
   margin: 0; */
       margin: 8px 6px 2px 5px;
 }
 
 .bt-web-section-three {
   box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
   background-color: #fff;
   border-radius:  0.8rem;
   padding: 1.2rem;
 }
 @media (max-width: 767px) {
   .bt-web-section-three {
     padding-bottom: 0;
   }
 }
 
 .bt-web-section-three-div {
   display: block;
 
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 0;
 }
 @media (max-width: 767px) {
   .bt-web-section-three-div {
     display: block;
     grid-template-columns: auto;
   }
 }
 
 .bt-web-section-three-card-normal {
   grid-gap: 0;
   padding: 0;
 }
 
 .bt-web-section-three-inner:first-of-type {
   border-right: 1px solid var(--line-border);
   border-bottom: 1px solid var(--line-border);
   padding: 0 1.2rem 1.2rem 0;
 }
 @media (max-width: 767px) {
   .bt-web-section-three-inner:first-of-type {
     border-right: 0;
     padding: 0;
   }
 }
 .bt-web-section-three-inner:nth-of-type(2) {
   border-bottom: 1px solid var(--line-border);
   padding: 0 0 1.2rem 1.2rem;
 }
 @media (max-width: 767px) {
   .bt-web-section-three-inner:nth-of-type(2) {
     padding: 1.2rem 0 0;
   }
 }
 .bt-web-section-three-inner:nth-of-type(3) {
   border-right: 1px solid var(--line-border);
   padding: 1.2rem 1.2rem 0 0;
 }
 @media (max-width: 767px) {
   .bt-web-section-three-inner:nth-of-type(3) {
     border-right: 0;
     border-bottom: 1px solid var(--line-border);
     padding: 1.2rem 0 0;
   }
 }
 .bt-web-section-three-inner:nth-of-type(4) {
   padding: 1.2rem 0 0 1.2rem;
 }
 @media (max-width: 767px) {
   .bt-web-section-three-inner:nth-of-type(4) {
     padding: 1.2rem 0 0;
   }
 }
 
 
 
 /* section 4 */
 .bt-web-section-fourth-main {
   background-color: var(--white);
   box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
   padding: 1.2rem;
   border-radius:  0.8rem;
 }
 .bt-web-section-fourth-collection {
   display: flex;
   grid-gap:  0.8rem;
   flex-wrap: nowrap;
   overflow-x: auto;
   width: 100%;
   justify-self: flex-end;
 }
 @media (max-width: 767px) {
   .bt-web-section-fourth-collection ::-webkit-scrollbar-track {
     box-shadow: inset 0 0 1px var(--line-border);
     background-color: var(--background-color);
   }
   .bt-web-section-fourth-collection::-webkit-scrollbar {
     height: 0;
     background-color: var(--background-color);
   }
 }
 @media (max-width: 767px) and (max-width: 767px) {
   .bt-web-section-fourth-collection::-webkit-scrollbar {
     display: none;
   }
 }
 @media (max-width: 767px) {
   .bt-web-section-fourth-collection::-webkit-scrollbar-thumb {
     background-color: var(--line-border);
   }
 }
 .bt-web-section-fourth-collection-name {
   background-color: #000000;
   border-radius: 4px;
   font-size: 12px;
   line-height: 12px;
   color: var(--white);
   padding:  0.8rem 1.2rem;
   cursor: pointer;
   white-space: nowrap;
   text-overflow: ellipsis;
   overflow: hidden;
   min-width: 100px;
   text-align: center;
 }
 .bt-web-section-cm {
   background-color: var(--red);
   color: var(--white);
 }
 .bt-web-section-fourth-image .bt-web-section-fourth-image-f {
   padding-top: 80%;
   height: 100%;
 }
 
 .bt-web-section-fourth-image-f {
   border-radius:  0.8rem;
   padding-top: 66.66667%;
 }
 .bt-web-section-fourth-image-f:before {
   content: "";
   position: absolute;
   top: 50%;
   right: 0;
   /*bottom: 0;*/
   left: 0;
   opacity: 0.5;
   background-image: linear-gradient(180deg, transparent, #000);
   z-index: 1;
 }
 @media (max-width: 767px) {
   .bt-web-section-fourth-image-f {
     padding-top: 60%;
   }
 }
 
 .bt-web-section-fourth-inner {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap:  0.8rem;
 }
 @media (max-width: 767px) {
   .bt-web-section-fourth-inner {
     grid-template-columns: 100%;
   }
 }
 .bt-web-section-fourth-inner:after {
   content: none;
   position: absolute;
   top: 0;
   bottom: 0;
   left: calc(100vw - var(--gap6));
   width: var(--gap6);
   background: linear-gradient(90deg, transparent, #000);
 }
 @media (min-width: 768px) {
   .bt-web-section-fourth-inner:after {
     content: none;
   }
 }
 .bt-web-section-fourth-cardgrid {
   grid-template-columns: repeat(2, 1fr);
 }
 @media (max-width: 767px) {
   .bt-web-section-fourth-cardgrid {
     grid-template-columns: 100%;
   }
 }
 .bt-web-section-fourth-we {
   padding: 0;
   border-radius:  0.8rem;
 }
 .bt-web-section-fourth-we .styles-m__contributor__3kGTo {
   --content-color: var(--meta-color);
   --icon-color: var(--title-color);
   margin-bottom: 0.2rem;
 }
 .bt-web-section-fourth-image {
   background-color: #ffdada;
   display: grid;
   grid-template-columns: 1fr 2fr;
   grid-gap:  0.8rem;
   align-items: center;
   padding:  0.8rem;
 }
 
 .bt-web-section-fourth-image .bt-web-section-last-two {
   padding: 0;
 }
 
 .bt-web-section-last-two {
   padding:  0.8rem 0;
 }
 .bt-web-section-last-three {

   font-size: var(--h5-font-size);
   font-weight: var(--h5-font-weight);
   line-height: var(--h5-line-height);
   letter-spacing: var(--h5-letter-spacing);
   color: var(--title-color);
   margin: 0;
 }
 
 .bt-web-section-last-fourth {
   overflow: hidden;
   max-height: calc(3 * var(--h5-line-height) * 1em);
   font-size: 15px;
   color: black;
 }
 
 
 /*section 5*/
 
 .bg-diamond-dark {
   background-color: var(--greyish-brown);
   background-image: linear-gradient(
       135deg,
       transparent 24%,
       var(--seven-story-7s-bg-line-color) 25%,
       var(--seven-story-7s-bg-line-color) 26%,
       transparent 27%,
       transparent 74%,
       var(--seven-story-7s-bg-line-color) 75%,
       var(--seven-story-7s-bg-line-color) 76%,
       transparent 77%,
       transparent
     ),
     linear-gradient(
       45deg,
       transparent 24%,
       var(--seven-story-7s-bg-line-color) 25%,
       var(--seven-story-7s-bg-line-color) 26%,
       transparent 27%,
       transparent 74%,
       var(--seven-story-7s-bg-line-color) 75%,
       var(--seven-story-7s-bg-line-color) 76%,
       transparent 77%,
       transparent
     );
   height: 100%;
   background-size: 30px 30px;
 }
 
 
 @media (max-width:1200px) {.bt-web-section-fourth-inner {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 0.8rem;
 }}
 
 /*section 6*/
 .bt-web-section-fourth-2nd-main {
   display: grid;
   grid-template-columns: auto -webkit-max-content;
   grid-template-columns: auto max-content;
   align-items: center;
   grid-gap:  0.8rem;
   margin-bottom: 1.2rem;
 }
 @media (max-width: 767px) {
   .bt-web-section-fourth-2nd-main {
     grid-template-columns: 100%;
   }
 }
 .bt-web-section-last {
   grid-gap: 0.3rem;
   grid-row-gap: 0.8rem;
 }
 @media (max-width: 767px) {
   .bt-web-section-last {
    display: contents;
     flex-wrap: nowrap;
     overflow-x: auto;
   }
   .common-image-size {
     width: 100% !important;
     height: auto !important;
 }
   .bt-web-section-last ::-webkit-scrollbar-track {
     box-shadow: inset 0 0 1px var(--line-border);
     background-color: var(--background-color);
   }
   .bt-web-section-last::-webkit-scrollbar {
     height: 0;
     background-color: var(--background-color);
   }
 }
 @media (max-width: 767px) and (max-width: 767px) {
   .bt-web-section-last::-webkit-scrollbar {
     display: none;
   }
 }
 @media (max-width: 767px) {
   .bt-web-section-last::-webkit-scrollbar-thumb {
     background-color: var(--line-border);
   }
 }
 
 @media (max-width: 767px) {
   .bt-web-section-last-one {
     min-width: 85%;
   }
 }
 
 
 
 

  /* menu nav */

  .menu-icons {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}

.gg-menu {
    transform: scale(var(--ggs,1))
}
.gg-menu,
.gg-menu::after,
.gg-menu::before {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: currentColor
}
.gg-menu::after,
.gg-menu::before {
    content: "";
    position: absolute;
    top: -6px
}
.gg-menu::after {
    top: 6px
}
.header {
    transition: all 0.5s;
}
.header-end {
    height: 228px;
}
.desktop {
    display: block;
}

.header {
    /* position: absolute; */
    top: -1px;
    z-index: 15;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.160784);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.3s;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
.header-logo-cont {
    padding: 30px 0 0;
    margin: 0 auto;
    text-align: center;
   width: 100%;
    z-index: 9999;
    position: relative;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.pt-1 {
    padding-top: .25rem !important;
}
.header-menu {
    position: relative;
    margin-top: 1%;
}
.navmenu-container.main-menu {
    z-index: 4;
}
.navmenu-container {
    max-width: 980px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}
/* .navbar-inverse {
    border: 0;
    margin-bottom: 0;
    padding: 30px 0 17px;
    
} */
.navbar-inverse{
  border: 0;
  margin-bottom: 31px;
    padding: 30px 0 17px;
}
@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}
.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-light .navbar-nav .nav-item.scroll-logo {
    display: none;
    margin-top: -15px;
    padding: 0;
}
.navbar-light .navbar-nav .nav-item.scroll-logo a {
    border: 0;
    width: auto;
    margin-right: 15px !important;
}
.navbar-light .navbar-nav .nav-link {
    border-top: 5px solid rgb(0, 0, 0);
    transition: border-color 1s;
}
.navbar-light .navbar-nav .nav-link {
    text-align: center;
    color: black;
    font-size: 18px;
    font-weight: 900;
    padding-left: 0;
    padding-right: 0;
    margin-right: 70px;
    border-top: 5px solid #000;
    width: 170px;
    position: relative;
    padding-top: 2px;
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
}
.navmenu-container .menu-btn {
    position: absolute;
    right: 4px;
    top: 0;
    cursor: pointer;
    border: 1px solid rgba(141, 141, 141, 0.6);
    border-radius: 4px;
    padding: 4px 6px;
    width: 39px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
@media (min-width: 768px) {
    .dropdown {
        display: none;
    }
}
.dropdown {
    position: absolute;
    background: #f1f1f1;
    top: calc(100% - 66px);
    width: 100%;
    padding: 0;
    z-index: 3;
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.133333);
    display: none;
}
.dropdown, .dropup {
    position: relative;
}

.fixed-menu {
    margin: 5px 0 0;
}
.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-list li {
    width: 24.5%;
    display: inline-block;
   
    margin: 8px 0;
}
.menu-list li a {
   
    font-size: 18px;
    color:#000;

    text-decoration: none;
    text-transform: capitalize;
}
.header-end {
    height: 228px;
}
.breadcrumb {
    padding: 0.5rem 0.02rem !important;
    margin-bottom: -3.9rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

/* .breadcrumb {
padding: .75rem 1rem;
margin-bottom: 1rem;
list-style: none;
background-color: #ffffff;
border-radius: .25rem;
} */


.nav-link:hover {
 color:red !important;}
  
  
/* Hide on mobile devices */
@media (max-width: 992px) {
.desktop-only {
display: none;
}
.menu-list li {
    width: 100%;
    display: block;
   
    margin: 8px 0;
}
/* .mani-menu ,.menu-list{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
} */
}
@media (min-width: 992px) {
.mobile-only {
display: none;
}
.nav-link {
display: block;
padding: 0 4rem;}

}
.navbar-light .navbar-nav .nav-link:hover {
color: #e53935;
text-decoration: none;
}
.navbar-light .navbar-nav .nav-link:hover {
border-top-color: #e53935;
}
.navbar-nav .nav-link{
  color:#000;

  font-size: 18px;

  text-decoration: none;
  text-transform: capitalize;
}
.navbar-light .navbar-nav .nav-link {
color: black;
}


@media  (min-width:900px) {
  .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 2.5em;
}
.menu-list li a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
}
}


h3.title-medium-dark{
  overflow: hidden;
  max-height: calc(3* var(--h5-line-height)* 1.4em);
  font-size: 15px;
}






/*mobile nav menu*/

    :root {
    --primary-color: #000;
    --secondary-color: #ddd;
    --complimentary-color: #abc;
    --accent-color: #f6a61e;
    --mercury: #e6e6e6;
    --black: #000;
    --white-two: #f5f5f5;
    --button-light-grey: #eaeaea;
    --greyish-brown: #404040;
    --white: #fff;
    --alto: #dadada;
    --gray: #929292;
    --off-white: #faf9f1;
    --cherry-red: #e92227;
    --jade-green: #2bab64;
    --eucalyptus: #269457;
    --yellowish-orange: #f6a61e;
    --ecstasy: #f76c20;
    --tundora: #4a4a4a;
    --boulder: #767676;
    --mine-shaft: #333;
    --gallery: #eaeaea;
    --nobel: #b4b4b4;
    --alabaster: #f7f7f7;
    --pelorous: #37bdc9;
    --mariner: #2f81cd;
    --hollywood-cerise: #e4008f;
    --seven-story-7s-bg-line-color: var(--mine-shaft);
    --dusk-blue: #2e308f;
    --dusty-grey: #9b9b9b;
    --vermillion: #ff3c00;
    --seashell: #f1f1f1;
    --hawaiian-tan: #9a4517;
    --whisper: #ececec;
    --concrete: #f3f3f3;
    --adcolor: #f2f2f2;
    --smokewhite: #f8f8f8;
    --fallback-image-bg: var(--smokewhite);
    --title-color: var(--greyish-brown);
    --content-color: var(--greyish-brown);
    --background-color: var(--white);
    --meta-color: var(--gray);
    --border-color: var(--alto);
    --accent-color: var(--mariner);
    --container-width: 100%;
    --container-padding: var(--space2);
    --space-4: 0.2rem;
    --space-2: 0.4rem;
    --space1: 0.8rem;
    --space1_5: 1.2rem;
    --space2: 1.6rem;
    --space3: 2.4rem;
    --space4: 3.2rem;
    --space5: 4rem;
    --space6: 4.8rem;
    --space7: 5.6rem;
    --space8: 6.4rem;
    --space9: 7.2rem;
    --space10: 8rem;
    --space12: 9.6rem;
    --font1: "Noto Sans Tamil", sans-serif;
    --font2: "taun-tamil", sans-serif;
  
    --mobile-h1-font-size: 2.8rem;
    --mobile-h1-font-weight: normal;
    --mobile-h1-line-height: 1.14;
    --mobile-h1-letter-spacing: normal;
    --mobile-h2-font-family: var(--font2);
    --mobile-h2-font-size: 2.4rem;
    --mobile-h2-font-weight: normal;
    --mobile-h2-line-height: 1.25;
    --mobile-h2-letter-spacing: normal;
    --mobile-h3-font-family: var(--font2);
    --mobile-h3-font-size: 2rem;
    --mobile-h3-font-weight: normal;
    --mobile-h3-line-height: 1.1;
    --mobile-h3-letter-spacing: normal;
    --mobile-h4-font-family: var(--font2);
    --mobile-h4-font-size: 1.8rem;
    --mobile-h4-font-weight: normal;
    --mobile-h4-line-height: 1.11;
    --mobile-h4-letter-spacing: normal;
    --h1-font-family: var(--font2);
    --h1-font-size: 4.2rem;
    --h1-font-weight: normal;
    --h1-line-height: 1.19;
    --h1-letter-spacing: normal;
    --h2-font-family: var(--font2);
    --h2-font-size: 3.2rem;
    --h2-font-weight: normal;
    --h2-line-height: 1.2;
    --h2-letter-spacing: normal;
    --h3-font-family: var(--font2);
    --h3-font-size: 2.8rem;
    --h3-font-weight: normal;
    --h3-line-height: 1.2;
    --h3-letter-spacing: normal;
    --h4-font-family: var(--font2);
    --h4-font-size: 2.4rem;
    --h4-font-weight: normal;
    --h4-line-height: 1.42;
    --h4-letter-spacing: normal;
    --h5-font-family: var(--font2);
    --h5-font-size: 1.8rem;
    --h5-font-weight: normal;
    --h5-line-height: 1.2;
    --h5-letter-spacing: normal;
    --body-font-family: var(--font1);
    --body-font-size: 1.6rem;
    --body-font-weight: normal;
    --body-line-height: 1.75;
    --body-letter-spacing: normal;
    --body-bold-font-family: var(--font1);
    --body-bold-font-size: 1.6rem;
    --body-bold-font-weight: bold;
    --body-bold-line-height: 1.75;
    --body-bold-letter-spacing: normal;
    --body-sm-font-family: var(--font1);
    --body-sm-font-size: 1.2rem;
    --body-sm-font-weight: normal;
    --body-sm-line-height: 1.83;
    --body-sm-letter-spacing: normal;
    --mobile-body-font-family: var(--font1);
    --mobile-body-font-size: 1.2rem;
    --mobile-body-font-weight: normal;
    --mobile-body-line-height: 1.83;
    --mobile-body-letter-spacing: normal;
    --body-sm-bold-font-family: var(--font1);
    --body-sm-bold-font-size: 1.2rem;
    --body-sm-bold-font-weight: bold;
    --body-sm-bold-line-height: 1.83;
    --body-sm-bold-letter-spacing: normal;
    --footer-bold-font-family: var(--font1);
    --footer-bold-font-size: 1.2rem;
    --footer-bold-font-weight: bold;
    --footer-bold-line-height: 1;
    --footer-bold-letter-spacing: normal;
    --footer-font-family: var(--font1);
    --footer-font-size: 1.2rem;
    --footer-font-weight: normal;
    --footer-line-height: 1;
    --footer-letter-spacing: normal;
    --jumbo-font-family: var(--font2);
    --jumbo-font-size: 6.4rem;
    --jumbo-font-weight: normal;
    --jumbo-line-height: 1.2;
    --jumbo-letter-spacing: normal;
    --button-bold-font-family: var(--font1);
    --button-bold-font-size: 1.4rem;
    --button-bold-font-weight: bold;
    --button-bold-line-height: 1.2;
    --button-bold-letter-spacing: normal;
    --button-font-family: var(--font1);
    --button-font-size: 1.4rem;
    --button-font-weight: normal;
    --button-line-height: 1.2;
    --button-letter-spacing: normal;
    --button-sm-font-family: var(--font1);
    --button-sm-font-size: 1rem;
    --button-sm-font-weight: normal;
    --button-sm-line-height: 1.2;
    --button-sm-letter-spacing: normal;
    --menu-font-family: var(--font2);
    --menu-font-size: 1.5rem;
    --menu-font-weight: normal;
    --menu-line-height: 1.2;
    --menu-letter-spacing: normal;
    --menu-sm-font-family: var(--font2);
    --menu-sm-font-size: 1.3rem;
    --menu-sm-font-weight: normal;
    --menu-sm-line-height: 1.2;
    --menu-sm-letter-spacing: normal;
    --meta-font-family: var(--font1);
    --meta-font-size: 1.1rem;
    --meta-font-weight: normal;
    --meta-line-height: 1.2;
    --meta-letter-spacing: normal;
}

@media (max-width: 767px) {
    #header {
        width: 100%;
        margin-bottom: 110px;
    }
}
#header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: top .3s;
    margin-bottom: 94px;
}
.BT-Dev__header__3KpsD {
    background-color: transparent;
    width: 100%;
}

.BT-Dev__brand-row-container__YB-8d {
    padding: var(--space1);
}
.BT-Dev__brand-row-inner-wrap___iYpn {
    display: grid;
    align-items: center;
    grid-template-columns: max-content auto;
}
.BT-Dev__home-link__ZV5nl {
    display: inline-block;
}
@media (max-width: 767px) {
    /* .BT-Dev__brand-logo__1UNN8 {
        width: 105px;
        height: 30px;
        vertical-align: middle;
    } */
}
/* .BT-Dev__brand-logo__1UNN8 {
    width: 135px;
    height: 38px;
} */
.BT-Dev__brand-logo-icon__943S3 {
    display: none;
}
.BT-Dev__header-right-panel__30I5A {
    display: flex;
    align-items: center;
    justify-self: flex-end;
}
/*@media (max-width: 767px) {
    .BT-Dev__brand-row-right__weOKk {
        grid-gap: 5px;
    }
}*/
.BT-Dev__brand-row-right__weOKk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 0 50%;
}
.BT-Dev__header-right__2jK_y {
    justify-self: flex-end;
}
@media (max-width: 767px) {
    .BT-Dev__brand-row-right__weOKk > * {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .BT-Dev__header-coins__1OXRe {
        width: 66px;
    }
}
.BT-Dev__header-coins__1OXRe {
    cursor: pointer;
    background-color: #e7e9ef;
    border-radius: 30px;
    color: #414141;
    margin-left: var(--space2);
    width: 84px;
}
@media (max-width: 767px) {
    .BT-Dev__coin-img__qeRLV {
        width: 22px;
        height: 22px;
    }
}
.BT-Dev__coin-img__qeRLV {
    width: 29px;
    height: 29px;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .BT-Dev__header-coins__1OXRe span {
        padding: 0 4px 0 3px;
        font-size: 12px;
        width: 42px;
    }
}
.BT-Dev__header-coins__1OXRe span {
    padding: 0 8px 0 5px;
    font-weight: 700;
    font-size: 14px;
    width: 54px;
    display: inline-block;
    text-align: center;
}
*, ::after, ::before {
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .BT-Dev__header-coins__1OXRe span {
        padding: 0 4px 0 3px;
        font-size: 12px;
        width: 42px;
    }
}
.BT-Dev__header-coins__1OXRe span {
    padding: 0 8px 0 5px;
    font-weight: 700;
    font-size: 14px;
    width: 54px;
    display: inline-block;
    text-align: center;
}
@media (max-width: 767px) {
    .BT-Dev__brand-row-right__weOKk > * {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .BT-Dev__subscribe-btn-des__2g6WR {
        padding: 4px var(--space1) 2px;
        font-size: 9px;
        text-align: center;
        width: 76px;
        height: 28px;
        margin-left: 0;
        margin-right: 0;
    }
}
.BT-Dev__subscribe-btn-des__2g6WR {
    background-color: var(--cherry-red);
    color: var(--white);
    border-radius: 30px;
    font-size: 9px;
    padding: 0;
    font-weight: 700;
    width: 100px;
    height: 30px;
    display: table;
    align-items: center;
    justify-content: center;
    margin-right: 0;
}
@media (max-width: 767px) {
    .BT-Dev__readapp-link__25i6R {
        padding-top: 0;
    }
}
.BT-Dev__readapp-link__25i6R {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-top: 4px;
}
.BT-Dev__hamburger__2RswR {
    width: 34px;
    background-color: var(--white);
    align-self: center;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin: calc(-1*var(--space1)) 0;
    cursor: pointer;
}
@media (max-width: 767px) {
    .BT-Dev__brand-row-right__weOKk > * {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .BT-Dev__user__2KCKb {
        width: 34px;
        height: 28px;
    }
}
.BT-Dev__user__2KCKb {
    --background-color: var(--white);
    --accent-color: var(--off-white);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 116px;
    height: 30px;
}
@media (max-width: 767px) {
    .BT-Dev__login__wEc1v {
        background-color: var(--eucalyptus);
        padding: 2px 1px 2px 2px;
        font-size: 20px;
    }
}
.BT-Dev__login__wEc1v {
    cursor: pointer;
   
    font-size: var(--meta-font-size);
    font-weight: var(--meta-font-weight);
    line-height: var(--meta-line-height);
    letter-spacing: var(--meta-letter-spacing);
    border-radius: 30px;
    background-color: var(--eucalyptus);
    padding: 0;
    transition: background-color .2s ease-in-out;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 4px;
    width: 100%;
    height: 100%;
}
.BT-Dev__base__2LTRF svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.BT-Dev__login__wEc1v {
    cursor: pointer;
   
    font-size: var(--meta-font-size);
    font-weight: var(--meta-font-weight);
    line-height: var(--meta-line-height);
    letter-spacing: var(--meta-letter-spacing);
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}
.BT-Dev__hamburger__2RswR {
    width: 34px;
    background-color: var(--white);
    align-self: center;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin: calc(-1*var(--space1)) 0;
    cursor: pointer;
}
.BT-Dev__hamburger__2RswR {
    width: 34px;
    background-color: var(--white);
    align-self: center;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin: calc(-1*var(--space1)) 0;
    cursor: pointer;
}
.BT-Dev__menu-search__2SASe {
    margin-top: 5px;
}

.BT-Dev__navbar__1-MRX {
    --background-color: var(--white);
    --border-color: var(--gray);
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--background-color);
    overflow: auto;
}



@media (max-width: 767px) {
   /* .hidden-menubar {
        top: 46px;
        height: 90px;
        transition: height 1s ease 0s;
    }*/
    
    
    
    
}





/*.hidden-menubar {
    position: absolute;
    width: 100%;
    top: 92px;
    height: 92px;
    transition: height 1s ease 1s;
}*/
.BT-Dev__navbar-inner-wrap__3o_dK {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.BT-Dev__navbar-inner-wrap__3o_dK {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.BT-Dev__menu-item__UDA_g:first-child .BT-Dev__menu-item-link__1fQqs {
    padding-left: 0;
}
.BT-Dev__menu-item-link__1fQqs {
   
    font-size: var(--menu-font-size);
    font-weight: var(--menu-font-weight);
    line-height: var(--menu-line-height);
    letter-spacing: var(--menu-letter-spacing);
    padding: var(--space1) var(--space1_5) var(--space1) var(--space1_5);
    display: flex;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: var(--white);
    align-items: center;
    color: var(--content-color);
    white-space: nowrap;
}
.BT-Dev__icon__2G0LQ {
    font-size: 1.6rem;
}
.BT-Dev__base__2LTRF {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.BT-Dev__menu-item-link__1fQqs {
   
    font-size: var(--menu-font-size);
    font-weight: var(--menu-font-weight);
    line-height: var(--menu-line-height);
    letter-spacing: var(--menu-letter-spacing);
    padding: var(--space1) var(--space1_5) var(--space1) var(--space1_5);
    display: flex;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: var(--white);
    align-items: center;
    color: var(--content-color);
    white-space: nowrap;
}
.BT-Dev__icon__2G0LQ {
    font-size: 1.6rem;
}
.BT-Dev__base__2LTRF {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.BT-Dev__menu-item-link__1fQqs svg {
    margin-right: var(--space-2);
    font-size: 16px;
}
.BT-Dev__base__2LTRF svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
@media (max-width: 767px) {
    .BT-Dev__navbar__osJQ6 {
        padding: 0;
    }
}
.BT-Dev__navbar__osJQ6 {
    --background-color: var(--white);
    --border-color: var(--gray);
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    overflow: auto;
    box-shadow: 0 6px 11px 0 rgba(0,0,0,.16);
    padding: 8px 0;
}
@media (max-width: 767px) {
    .BT-Dev__navbar-inner-wrap__35xF- {
        padding: var(--space1);
    }
}
.BT-Dev__navbar-inner-wrap__35xF- {
    align-items: center;
}
@media (max-width: 767px) {
    .BT-Dev__menus__2tDSs {
        justify-content: flex-start;
    }
}
.BT-Dev__menus__2tDSs {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .BT-Dev__menu-item__2T-lB:first-child .BT-Dev__menu-item-link__2y2Hl {
        margin-right: var(--space1_5);
        font-size: 12px;
    }
}
.BT-Dev__menu-item__2T-lB:first-child .BT-Dev__menu-item-link__2y2Hl {
    margin-right: var(--space3);
    padding: 5px var(--space1);
    background-color: var(--cherry-red);
    color: var(--white);
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}
.BT-Dev__menu-item-link__2y2Hl {
   
    font-size: var(--menu-font-size);
    font-weight: var(--menu-font-weight);
    line-height: var(--menu-line-height);
    letter-spacing: var(--menu-letter-spacing);
    padding: var(--space1) var(--space1_5) var(--space1) var(--space1_5);
    display: flex;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: var(--white);
    align-items: center;
    color: var(--content-color);
    white-space: nowrap;
}
.BT-Dev__sub-menu__1A4rO {
    display: flex;
    width: 100%;
    align-items: center;
    white-space: nowrap;
    overflow: auto;
    padding: 5px 0;
}
.BT-Dev__navbar__1-MRX {
    --background-color: var(--white);
    --border-color: var(--gray);
}
.BT-Dev__menus__2_0yf {
    display: flex;
    align-items: center;
}
.BT-Dev__menu-item__UDA_g:first-child .BT-Dev__menu-item-link__1fQqs {
    padding-left: 0;
}
.BT-Dev__menu-item-link__1fQqs {
   
    font-size: var(--menu-font-size);
    font-weight: var(--menu-font-weight);
    line-height: var(--menu-line-height);
    letter-spacing: var(--menu-letter-spacing);
    padding: var(--space1) var(--space1_5) var(--space1) var(--space1_5);
    display: flex;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: var(--white);
    align-items: center;
    color: var(--content-color);
    white-space: nowrap;
}
.BT-Dev__icon__2G0LQ {
    font-size: 1.6rem;
}
.BT-Dev__base__2LTRF {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.BT-Dev__menu-item-link__1fQqs {
   
    font-size: var(--menu-font-size);
    font-weight: var(--menu-font-weight);
    line-height: var(--menu-line-height);
    letter-spacing: var(--menu-letter-spacing);
    color: var(--content-color);
    white-space: nowrap;
}
.BT-Dev__menu-item-link__1fQqs svg {
    font-size: 16px;
}
.BT-Dev__base__2LTRF svg {
    fill: currentColor;
}
.BT-Dev__sub-menu__bh6Kw {
    display: none;
}
.BT-Dev__sub-menu__bh6Kw > li {
    border-bottom: 1px solid #e5e5e5;
}
.BT-Dev__menu-item__UDA_g:first-child .BT-Dev__menu-item-link__1fQqs {
    padding-left: 0;
}
@media (min-width: 768px) {
    .BT-Dev__menu-item-link__1fQqs {
       
        font-size: var(--menu-font-size);
        font-weight: var(--menu-font-weight);
        line-height: var(--menu-line-height);
        letter-spacing: var(--menu-letter-spacing);
    }
}
.BT-Dev__menu-item-link__1fQqs {
   
    font-size: var(--menu-font-size);
    font-weight: var(--menu-font-weight);
    line-height: var(--menu-line-height);
    letter-spacing: var(--menu-letter-spacing);
    padding: var(--space1) var(--space1_5) var(--space1) var(--space1_5);
    display: flex;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: var(--white);
    align-items: center;
    color: var(--content-color);
    white-space: nowrap;
}
.BT-Dev__navbar-inner-wrap__3o_dK .BT-Dev__menus__2_0yf {
    margin: 0;
    padding: 0;
    list-style: none;
}
.BT-Dev__navbar-inner-wrap__3o_dK {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 767px) {
    .BT-Dev__header-coins__1OXRe {
        width: 66px;
    }
}
.BT-Dev__header-coins__1OXRe {
    cursor: pointer;
    background-color: #e7e9ef;
    border-radius: 30px;
    color: #414141;
    margin-left: var(--space2);
    width: 84px;
}
@media (max-width: 767px) {
    .BT-Dev__coin-img__qeRLV {
        width: 22px;
        height: 22px;
    }
}
.BT-Dev__coin-img__qeRLV {
    width: 29px;
    height: 29px;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .BT-Dev__header-coins__1OXRe span {
        padding: 0 4px 0 3px;
        font-size: 12px;
        width: 42px;
    }
}
.BT-Dev__header-coins__1OXRe span {
    padding: 0 8px 0 5px;
    font-weight: 700;
    font-size: 14px;
    width: 54px;
    display: inline-block;
    text-align: center;
}
@media (max-width: 767px) {
.BT-Dev__header-coins__1OXRe span {
padding: 0 4px 0 3px;
font-size: 12px;
width: 42px;
}
}

.BT-Dev__menu-item-link__1fQqs{
font-size: 14px;
}
.fa-youtube-play{
padding: 4px 1px 2px 2px;
font-size: 20px;
}
.round-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px; /* Adjust width and height for your icon size */
height: 40px;
background-color: var(--accent-color); /* Use your desired background color */
border-radius: 50%; /* Makes the background circular */
color: var(--white); /* Icon color */
font-size: 20px; /* Adjust font size for the icon */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for depth */
}


.bt-web-section-two-main-mt-mt {
    color:red;
}
 /* Style for the menu container */
    #menu {
      display: none; /* Hide the menu by default */
      background-color: #333;
      color: white;
      padding: 10px 0;
    }

    /* Style for the menu when it's active */
    #menu.active {
      display: block; /* Show the menu when 'active' class is added */
    }

    /* Style the navigation links */
    #menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
      margin-top: 6%;
    }

    #menu ul li {
      padding: 10px 20px;
      font-size: 19px;
    }

    #menu ul li a {
      color: white;
      text-decoration: none;
    }

    #menu ul li a:hover {
      text-decoration: underline;
    }

   /*.BT-Dev__brand-logo__1UNN8 {
width: 100%;
height: 74px;
}
*/


@media (max-width: 991px) {
  .bt-santhosh__navbar-inner-wrap {
    margin-top: 0;
  }
.BT-Dev__brand-logo__1UNN8 {
   width: 56%;}
 /*  .BT-Dev__brand-logo__1UNN8 {
   width: 100%;}*/
  .bg-boder-color {
 
    border-top: 3px solid #ec000000;
   
}
.bt-santhosh__menu-item:first-child .bt-santhosh__menu-item-link{
    
    width: 30%;
    font-size: 12px;
}
a:hover {
    color: #ff0018 !important;
    text-decoration: underline;
}
.BT-Dev__brand-row__YG4vi{
    display: flex;
}

/*.BT-Dev__home-link__ZV5nl{
width: 62%;
}*/



video{
width: 100%;     
}




.BT-Dev__brand-row-container__YB-8d, .BT-Dev__brand-row-inner-wrap___iYpn{
width: 27% !important;
}

.footer-social {
  width: 60%;
 
}
.footer-logo img {
  width: 33%;
  margin-top: 7%;
}
footer .footer-box {
  width: 100%;
  margin-bottom: 0px;
  display: inline-block;
  text-align: center;
}
.title-bar-left::before {
  content: "";
 background-color: #fff0;
}

.title-bar-left {
  position: relative;
  margin-bottom: 18px;
}

.media .media-body {
  margin-left: 0px;
}


.BT-Dev__navbar__1-MRX {
    --background-color: var(--white);
    --border-color: var(--gray);
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--background-color);
    overflow: auto;
    padding-bottom: 1px;
    box-sizing: border-box;
    scrollbar-gutter: stable;
}

.BT-Dev__navbar__1-MRX::-webkit-scrollbar {
    height: 0px; /* Adjust scrollbar height */
}

.BT-Dev__navbar__1-MRX::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 0px;
}

.BT-Dev__navbar__1-MRX::-webkit-scrollbar-track {
    background-color: var(--white);
}

.bt-santhosh__sub-menu {
    display: flex;
    width: 100%;
    align-items: center;
    white-space: nowrap;
    overflow: auto;
    padding: 5px 0;
    box-sizing: border-box; /* Ensures padding and borders are included in size */
    scrollbar-gutter: stable; /* Prevents scrollbar overlap with content */
}

 

.bt-santhosh__sub-menu::-webkit-scrollbar {
    height: 6px; /* Adjust the height of the scrollbar */
}

.bt-santhosh__sub-menu::-webkit-scrollbar-thumb {
    background-color: #fff; /* Match scrollbar thumb with design */
    border-radius: 0px;
}

.bt-santhosh__sub-menu::-webkit-scrollbar-track {
    background-color: var(--white); /* Match scrollbar track with background */
}



.bt-web-section-one-sk-am a{
font-size: 16px;
}

	
}


@media (max-width: 767px) {
    .bt-web-section-one-a:first-of-type .bt-web-section-one-t {
        grid-template-columns: auto;
    }
}










