@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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');
:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --color: #c7232f;
    --color2: #161d27;
    --color2-dark: #0f131a;
}
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    transition: 0.35s;
}
body.darkmode {
    color: #fff;
    background-color: var(--color2-dark);
}
main {
    overflow: hidden;
}
a, button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
   }
    100% {
        opacity: 1;
        transform: translateX(0%);
   }
}
@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
   }
    100% {
        opacity: 0;
        transform: translateX(100%);
   }
}
.section {
    margin: 0 auto;
    padding: 6rem 0 2rem;
}
.container-header {
    max-width: 100%;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}
.centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    background-color: transparent;
    box-shadow: var(--shadow-medium);
}
.header.sticky{
    position: sticky;
}
.darkmode .header {
    background-color: var(--color2);
}
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }
.navbar .navbar__left {
    display: flex;
    align-items: center;
    flex: 0 0 17%;
}
@media (max-width: 999px) {
    .navbar .navbar__left {
        flex: 0 0 auto;
   }
}
.navbar .navbar__center {
    display: flex;
}
@media (max-width: 999px) {
    .navbar .navbar__center {
        flex: 0 0 100%;
        order: 3;
        align-items: center;
   }
}
.navbar .navbar__right {
    display: flex;
    flex: 0 0 17%;
    align-items: center;
    justify-content: flex-end;
    column-gap: 1.5rem;
}
@media (max-width: 999px) {
    .navbar .navbar__right {
        flex: 0 0 auto;
        align-items: center;
   }
}
.brand {
    display: flex;
    align-items: center;
    order: 1;
}
.brand svg {
    width: 60px;
    height: 60px;
}
@media (max-width: 999px) {
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 350px;
        max-width: 85%;
        height: 100%;
        z-index: 100;
        overflow: hidden;
        background-color: #fff;
        transform: translate(-100%);
        transition: all 0.4s ease-in-out;
   }
    .menu.is-active {
        transform: translate(0%);
   }
    .darkmode .menu {
        background-color: var(--color2);
   }
}
.menu .menu__header {
    display: none;
    box-shadow: var(--shadow-medium);
}
@media (max-width: 999px) {
    .menu .menu__header {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        visibility: hidden;
        background: transparent;
   }
    .menu .menu__header.is-active {
        visibility: visible;
        background-color: #fff;
   }
    .menu .menu__header.is-active > .menu__arrow {
        display: flex;
   }
    .darkmode .menu .menu__header.is-active {
        background-color: var(--color2);
   }
}
@media (max-width: 999px) {
    .menu .menu__header .menu__arrow {
        display: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 3rem;
   }
    .menu .menu__header .menu__arrow:hover i {
        color: var(--color);
   }
    .menu .menu__header .menu__arrow > i {
        font-size: 1.5rem;
        color: #000;
        transition: all 0.25s ease;
   }
    .darkmode .menu .menu__header .menu__arrow > i {
        color: #fff;
   }
}
@media (max-width: 999px) {
    .menu .menu__header .menu__title {
        cursor: pointer;
        font-weight: 500;
        text-transform: capitalize;
        color: #000;
        transition: all 0.25s ease;
   }
    .menu .menu__header .menu__title:hover {
        color: var(--color);
   }
    .darkmode .menu .menu__header .menu__title {
        color: #fff;
   }
}
@media (max-width: 999px) {
    .menu .menu__inner {
        height: 100%;
        margin-top: -3rem;
        overflow-y: auto;
        overflow-x: hidden;
   }
}
.menu .menu__inner .menu__item {
    position: static;
    display: inline-block;
    /*! padding-right: 20px; */
    /*! padding: 15px 20px 15px 0; */
}
.menu .menu__inner .menu__item:last-child {
    padding-right: 0;
}
.menu .menu__inner .menu__item:hover > .menu__link {
    color: var(--color);
}
.darkmode .menu .menu__inner .menu__item:hover > .menu__link {
    color: var(--color);
}
.menu .menu__inner .menu__item .menu__link.active {
    color: var(--color);
    color: #95c41a;
}
.menu .menu__inner .menu__item:hover > .menu__link.second{
    color: purple;
}
.menu .menu__inner .menu__item:hover > .menu__link.third{
    color: orangered;
}
.menu .menu__inner .menu__item:hover > .menu__link.four{
    color: #4eb5ba;
}
.menu .menu__inner .menu__item:hover > .menu__link.five{
    color: blue;
}
.menu .menu__inner .menu__item:hover > .menu__link.six{
    color: cyan;
}
.menu .menu__inner .menu__item:hover > .menu__link.six {
  color: cyan;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}
@media (max-width: 999px) {
    .menu .menu__inner .menu__item {
        display: block;
        padding: 0;
   }
}
@media (min-width: 999px) {
    .menu .menu__inner .menu__item:hover > .menu__link i {
        transform: rotate(-90deg);
   }
}
@media (min-width: 999px) {
    .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
        opacity: 1;
        visibility: visible;
        top: 95%;
   }
}
.menu .menu__inner .menu__item .menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.25s ease;
    box-shadow: inset .07rem 0 0 rgba(0,0,0,.12);
    transition-property: color,opacity,transform;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.25,.8,.25,1);
    pointer-events: all;
    padding: 1.125rem 1.35rem;
    position: relative;
}
.menu .menu__inner .menu__item .menu__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  border-top: .22rem solid;
  transform: translateY(.22rem);
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.25,.8,.25,1);
  pointer-events: none;
  color: transparent;
}
.menu .menu__inner .menu__item .menu__link:hover::after {
  transform: translateY(0);
  color: inherit;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.25,.8,.25,1);
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  border-top: .22rem solid;
}
.menu .menu__inner .menu__item .menu__link.active::after{
    transform: translateY(0);
    color: inherit;
}
@media (max-width: 999px) {
    .menu .menu__inner .menu__item .menu__link {
        justify-content: space-between;
        padding: 20px;
   }
}
.menu .menu__inner .menu__item .menu__link > i {
    margin-left: 5px;
    font-size: 1.35rem;
    transform: rotate(90deg);
    transition: 0.35s;
}
@media (max-width: 999px) {
    .menu .menu__inner .menu__item .menu__link > i {
        margin-left: 10px;
        transform: rotate(0deg);
   }
}
@media (max-width: 999px){
    .menu .menu__inner .menu__item .menu__link{
        color: #000;
    }
}
.darkmode .menu .menu__inner .menu__item .menu__link {
    color: #fff;
}
.submenu {
    position: absolute;
    z-index: 100;
    top: 110%;
    left: 50%;
    width: 100%;
    height: auto;
/*     padding: 20px 15px; */
    border-radius: 0.25rem;
    border-top: 2px solid #4eb5ba;
    background-color: #fff;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    transform: translateX(-50%);
}
.darkmode .submenu {
    border-top: 2px solid var(--color);
    background-color: var(--color2);
}
@media (max-width: 999px) {
    .submenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding: 100px 15px 0 15px;
        border-radius: 0;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        transform: translateX(0%);
   }
    .submenu.is-active {
        display: block;
   }
}
@media (min-width: 999px) {
    .submenu {
        animation: none !important;
   }
}
/*@media (min-width: 999px) {*/
/*    .submenu.megamenu__normal {*/
/*        left: 65%;*/
/*        max-width: 275px;*/
/*        width: 100%;*/
/*        height: auto;*/
/*        margin: 0 auto;*/
/*   }*/
/*}*/

@media (min-width: 999px) {
  .submenu.megamenu__normal {
    left: 55%;
    max-width: 275px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    Transform: translate(-50%, 0%);
  }
}

@media (min-width: 999px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        display: flex;
        flex-wrap: wrap;
        max-width: 95%;
        height: auto;
        margin: 0 auto;
   }
}
@media (min-width: 999px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        max-width: 992px;
   }
}
.submenu.megamenu__image .submenu__inner a {
    display: flex;
    flex-flow: column;
    align-items: center;
}
@media (max-width: 999px) {
    .submenu.megamenu__image .submenu__inner a {
        flex-flow: row;
        align-items: center;
        padding-bottom: 20px;
   }
}
.submenu.megamenu__image .submenu__inner a img {
    display: block;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 999px) {
    .submenu.megamenu__image .submenu__inner a img {
        width: 30%;
        height: 80px;
        margin-bottom: 0;
        margin-right: 15px;
   }
}
.submenu .submenu__inner {
    width: 25%;
    padding: 0 15px;
}
@media (max-width: 999px) {
    .submenu .submenu__inner {
        width: 100%;
        padding: 0;
   }
}
.submenu .submenu__inner .submenu__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color);
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.darkmode .submenu .submenu__inner .submenu__title {
    color: var(--color);
}
@media (max-width: 999px) {
    .submenu .submenu__list {
        margin-bottom: 20px;
   }
}
.submenu .submenu__list li {
    display: block;
    line-height: 1;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    position: relative;
}
.submenu .submenu__list li:last-of-type{
    border-bottom: none;
}
.submenu .submenu__list li::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  display: block;
  background: #09926a;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.submenu .submenu__list li:hover::before {
  width: 100%;
}
.submenu .submenu__list li a {
    display: inline-block;
    padding: 10px 0;
    line-height: 1.4;
    text-transform: capitalize;
    color: #000;
    transition: all 0.25s ease-in-out;
    position: relative;
    display: block;
    padding: 12px 20px;
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    color: #252525;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.submenu .submenu__list li a:hover {
    color: #fff;
}
@media (max-width: 999px) {
    .submenu .submenu__list li a {
        display: block;
   }
}
.darkmode .submenu .submenu__list li a {
    color: #fff;
}
.darkmode .submenu .submenu__list li a:hover {
    color: var(--color);
}
.switch {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    margin-right: 10px;
}
.switch .switch__light, .switch .switch__dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in;
}
.switch .switch__light {
    font-size: 20px;
    visibility: visible;
    color: #000;
}
.darkmode .switch .switch__light {
    font-size: 0;
    visibility: hidden;
}
.switch .switch__dark {
    font-size: 0;
    visibility: hidden;
    color: #fff;
}
.darkmode .switch .switch__dark {
    font-size: 20px;
    visibility: visible;
}
.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
    pointer-events: none;
}
@media (max-width: 999px) {
    .overlay {
        cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
        pointer-events: visible;
   }
    .overlay.is-active {
        opacity: 1;
        visibility: visible;
   }
}
.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 25px;
    height: 15px;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}
@media (max-width: 999px) {
    .burger {
        opacity: 1;
        visibility: visible;
   }
   .burger {
    height: 50px;
  }
}
.burger .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 15px;
    background: #000;
}
.darkmode .burger .burger-line {
    background: #fff;
}
.burger .burger-line:nth-child(1) {
    top: 0px;
}
.burger .burger-line:nth-child(2) {
    top: 8px;
    width: 70%;
}
.burger .burger-line:nth-child(3) {
    top: 16px;
}

.text-con{
    height: 200vh;
}
header.sticky{
    background: #09926a;
    background: #000;
}


.txt-srt{
    page-break-inside: avoid;
    border: 3px solid #fff;
      border-left-width: 3px;
      border-left-style: solid;
      border-left-color: rgb(255, 255, 255);
    border-left-width: 3px;
    border-left-style: solid;
    border-left-color: rgb(255, 255, 255);
    -mox-box-shadow: inset 5px 0px 0px 0px #873939, 8px 8px 8px 2px #888;
    -ms-box-shadow: inset 5px 0px 0px 0px #873939, 8px 8px 8px 2px #888;
    box-shadow: inset 5px 0px 0px 0px #873939, 8px 8px 8px 2px #888;
    padding: 1% 2%;
    border-left: none;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 2%;
    margin-bottom: 2%;
  }
  .txt-srt h1 {
    font-size: 25px;
    margin-bottom: 10px;
    text-shadow: 0 1px #8da1ff, -1px 0 #c0cbff, -1px 2px #8da1ff, -2px 1px #c0cbff, -2px 3px #8da1ff, -3px 2px #c0cbff, -3px 4px #8da1ff, -4px 3px #c0cbff, -4px 5px #8da1ff, -5px 4px #c0cbff, -5px 6px #8da1ff, -6px 5px #c0cbff, -6px 7px #8da1ff, -7px 6px #c0cbff, -7px 8px #8da1ff, -8px 7px #c0cbff;
    font-family: "Henny Penny", cursive;
    color: #274dff;
    letter-spacing: 0.0015em;
    font-size: 3em;
    -webkit-animation: opacityAnimation 2s linear infinite;
    animation: opacityAnimation 2s linear infinite;
  }
@-webkit-keyframes opacityAnimation {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes opacityAnimation {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
  .txt-srt p{
    font-size: 16px;
    line-height: 30px;
  }
  hr {
    margin: 2% 35%;
    color: #ededed;
  }


  .th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 30px;
    min-width: 200px;
    border-radius: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
            clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  .th-btn:before, .th-btn:after {
    content: "";
    position: absolute;
    background-color: var(--title-color);
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    top: 5px;
    left: 5px;
    width: 16px;
    height: calc(100% - 10px);
    border-radius: 0;
    transition: -webkit-clip-path 0.2s ease;
    -webkit-transition: -webkit-clip-path 0.2s ease;
    transition: clip-path 0.2s ease;
    transition: clip-path 0.2s ease, -webkit-clip-path 0.2s ease;
    -webkit-clip-path: polygon(85% 0, 100% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%);
            clip-path: polygon(85% 0, 100% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%);
  }
  
  .th-btn:after {
    right: 5px;
    left: auto;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .th-btn i {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  
  .th-btn:hover, .th-btn.active {
    background: var(--white-color);
    -webkit-clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
            clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
  }
  
  .th-btn:hover:before, .th-btn:hover:after, .th-btn.active:before, .th-btn.active:after {
    -webkit-clip-path: polygon(2px 60%, 2px calc(100% - 2px), 100% calc(100% - 0px), 100% 100%, 0 100%, 0 100%);
            clip-path: polygon(2px 60%, 2px calc(100% - 2px), 100% calc(100% - 0px), 100% 100%, 0 100%, 0 100%);
  }

  .th-btn.style-border4 {
    display: inline-block;
    -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
            clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
    background: var(--theme-color2);
    padding: 0;
  }
  
  .th-btn.style-border4 .btn-border {
    display: inline-block;
    background-color: var(--title-color);
    -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
            clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
    border: 0;
    width: -webkit-fill-available;
    color: var(--white-color);
    border-radius: 0;
    margin: 1px;
    padding: 19px 30px;
  }
  
  .th-btn.style-border4:after, .th-btn.style-border4:before {
    -webkit-clip-path: polygon(45% 0, 50% 0, 5% 50%, 50% 100%, 45% 100%, 0% 50%);
            clip-path: polygon(45% 0, 50% 0, 5% 50%, 50% 100%, 45% 100%, 0% 50%);
    top: 6px;
    left: 8px;
    width: 26px;
    height: calc(100% - 12px);
    background: var(--theme-color2);
    z-index: 1;
  }
  
  .th-btn.style-border4:after {
    right: 8px;
    left: auto;
  }
  
  .th-btn.style-border4:hover {
    -webkit-clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
            clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
  }
  
  .th-btn.style-border4:hover .btn-border {
    -webkit-clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
            clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
  }
  
  .th-btn.style-border4:hover:after, .th-btn.style-border4:hover:before {
    -webkit-clip-path: polygon(2px 50%, 2px calc(100% - 2px), 100% calc(100% - 0px), 100% 100%, 0 100%, 0 100%);
            clip-path: polygon(2px 50%, 2px calc(100% - 2px), 100% calc(100% - 0px), 100% 100%, 0 100%, 0 100%);
  }
  :root {
    --theme-color: #45F882;
    --theme-color2: #FFBE18;
    --theme-color3: #6240CF;
    --title-color: #0B0E13;
    --body-color: #969EB2;
    --smoke-color: #F5F7FA;
    --smoke-color2: #F5F8FD;
    --black-color: #000000;
    --black-color2: #1A1D26;
    --black-color3: #0F1C23;
    --gray-color: #D8DDE1;
    --white-color: #ffffff;
    --light-color: #bdbdbd;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #F2003A;
    --th-border-color: #6C6C6C;
    --th-border-color2: #E6E6E6;
    --title-font: 'Rajdhani', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --style-font: 'Lobster', cursive;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1225px;
    --container-gutters: 24px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
    --th-body-background: #0B0E13;
  }  

  .section-heading__subtitle{
    text-align: center;
    padding-top: 2rem;
  }

  .section-heading__subtitle > a {
    color: #f60b0e;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    overflow: hidden;
  }
  .section-heading__subtitle > a::after, .section-heading__subtitle > a::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 1px;
    transition: all .6s cubic-bezier(.68,-.55,.265,1.55);
  }
  .section-heading__subtitle > a::before {
    right: 0;
    background-color: #f60b0e;
  }
  .section-heading__subtitle > a::after {
    left: 0;
    background-color: #000;
    transform: translateX(-150%);
  }
  .section-heading__subtitle > a:hover::after {
    transform: translateX(0);
  }
  .section-heading__subtitle > a:hover::before {
    transform: translateX(150%);
  }
  .section-heading__subtitle > a:hover {
    color: #000;
  }
  .header-inner-pages{
    position: relative;
    background: #000;
  }
  .header-inner-pages .brand-img {
    background: #000;
    border-radius: 0 0 35px 35px;
    padding: 5px;
  }
  
 @media (min-width: 250px) and (max-width: 380px){
     .navbar .navbar__left, .brand {
width: 100%;
}
.header-inner-pages .brand-img {
margin: auto;
}
.brand-img {
  width: 250px !important;
}
.burger .burger-line {
    background: #fff;
  }
 }
  
  
@media (min-width: 250px) and (max-width: 999px){
.navbar .navbar__left, .brand {
width: 100%;
}
.header-inner-pages .brand-img {
margin: auto;
}
.burger .burger-line {
background: #fff;
}
  }