/** anbudesign **/
:root {
    --color-violet: #ca0102;
   --color-violet: #653816;
    --color-secondary: #ca141d;
    --color-secondary: #653816;
    /*--color-violet:#b62020;
    --color-secondary: #b62020;*/
    --color-default: #000;
    --color-violet: #653816;
    --color-secondary: #653816;
        --color-primary: #653816;
}
body {
    padding: 0;
    margin: 0;
    font-weight: 400;
    position: relative;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 28px;
}
.xb-footer-main .footer-widget .xb-item--links li a{
        color: #fff;
}
.boxpulsenewanim{
        animation: boxpulsenew infinite 1.3s ease-in-out;
}
@keyframes boxpulsenew {
  0% {
    -moz-box-shadow: 0 0 0 0 rgb(107 73 48 / 30%);
    box-shadow: 0 0 0 0 rgb(107 73 48 / 30%);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgb(107 73 48 / 0);
      box-shadow: 0 0 0 10px rgb(107 73 48 / 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgb(107 73 48 / 0);
      box-shadow: 0 0 0 0 rgb(107 73 48 / 0);
  }
}
@keyframes boxpulsewhitenew {
  0% {
    -moz-box-shadow: 0 0 0 0 rgb(255 255 255 / 30%);
    box-shadow: 0 0 0 0 rgb(255 255 255 / 30%);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgb(255 255 255 / 0);
      box-shadow: 0 0 0 10px rgb(255 255 255 / 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgb(255 255 255 / 0);
      box-shadow: 0 0 0 0 rgb(255 255 255 / 0);
  }
}
@keyframes boxpulseblacknew {
  0% {
    -moz-box-shadow: 0 0 0 0 rgb(0 0 0 / 20%);
    box-shadow: 0 0 0 0 rgb(0 0 0 / 20%);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgb(0 0 0 / 0);
      box-shadow: 0 0 0 10px rgb(0 0 0 / 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgb(0 0 0 / 0);
      box-shadow: 0 0 0 0 rgb(0 0 0 / 0);
  }
}
@keyframes pulseeffectnew {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes shakenew {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shakenew {
  animation: shakenew 10s linear infinite;
}
.swinganm-new {
  animation: swingnew 10s linear infinite;
}
@keyframes headShakenew {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}
@keyframes swingnew {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.oscillatenew-anim{
    animation: oscillatenew 10s linear infinite;
}
@keyframes oscillatenew {
  0%   { transform: rotate(calc(90deg * -1)); }
  50%  { transform: rotate(calc(90deg * 1)); }
  100% { transform: rotate(calc(90deg * -1)); }
} 
.customnewbg-footer{
    background-color: var(--color-violet);
}
/** animation **/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
    30% {
        opacity: 0.7
    }
    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
    30% {
        opacity: 0.7
    }
    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@-webkit-keyframes ripple2 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0.4
    }
    50% {
        opacity: 0.3
    }
    80% {
        opacity: 0.2
    }
    100% {
        -webkit-transform: scale(2.2);
        transform: scale(2.2);
        opacity: 0
    }
}

@keyframes ripple2 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0.4
    }
    50% {
        opacity: 0.3
    }
    80% {
        opacity: 0.2
    }
    100% {
        -webkit-transform: scale(2.2);
        transform: scale(2.2);
        opacity: 0
    }
}

@-webkit-keyframes scrollMove {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

@keyframes scrollMove {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4,
.ripple-5 {
    width: 456px;
    height: 456px;
    text-align: center;
    margin: auto;
    background-color: transparent;
    border: 1px solid rgba(87, 88, 95, 0.5);
    border-radius: 50%;
    -webkit-animation: ripple2 10s linear infinite;
    animation: ripple2 10s linear infinite;
    opacity: 0
}

.ripple-1 {
    -webkit-animation-delay: 0;
    animation-delay: 0
}

.ripple-2 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.ripple-3 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.ripple-4 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

.ripple-5 {
    -webkit-animation-delay: 8s;
    animation-delay: 8s
}

.fancy-animation {
    -webkit-animation: morph 8s ease-in-out infinite;
    animation: morph 8s ease-in-out infinite
}

@-webkit-keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
    }
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
    }
}

.jumpAni {
    -webkit-animation: jumpAni 7s linear infinite;
    animation: jumpAni 7s linear infinite
}

@-webkit-keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.movingX {
    -webkit-animation: movingX 8s linear infinite;
    animation: movingX 8s linear infinite
}

@-webkit-keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.moving {
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite
}

@-webkit-keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.jump {
    -webkit-animation: jumpAni 7s linear infinite;
    animation: jumpAni 7s linear infinite
}

@keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.jump-reverse {
    -webkit-animation: jumpReverseAni 7s linear infinite;
    animation: jumpReverseAni 7s linear infinite
}

@-webkit-keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes titleFill {
    0% {
        width: 0
    }
    80% {
        width: 100%
    }
    100% {
        width: 100%
    }
}

@keyframes titleFill {
    0% {
        width: 0
    }
    80% {
        width: 100%
    }
    100% {
        width: 100%
    }
}

@-webkit-keyframes lineDown {
    0% {
        -webkit-transform: 0;
        transform: 0;
        opacity: 0
    }
    30% {
        opacity: 1
    }
    60% {
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        opacity: 1
    }
}

@keyframes lineDown {
    0% {
        -webkit-transform: 0;
        transform: 0;
        opacity: 0
    }
    30% {
        opacity: 1
    }
    60% {
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        opacity: 1
    }
}

.swing {
    -webkit-animation: swing 10s infinite ease-in-out;
    animation: swing 10s infinite ease-in-out
}

@-webkit-keyframes swing {
    0%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    25% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    75% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
}

@keyframes swing {
    0%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    25% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    75% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
}

@-webkit-keyframes scaleUpDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scaleUpDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes roundFill {
    0% {
        width: 0
    }
    60% {
        width: 100%;
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes roundFill {
    0% {
        width: 0
    }
    60% {
        width: 100%;
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.dance {
    -webkit-animation: dance 2s alternate infinite;
    animation: dance 2s alternate infinite
}

@-webkit-keyframes dance {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.dance2 {
    -webkit-animation: dance2 4s alternate infinite;
    animation: dance2 4s alternate infinite
}

@-webkit-keyframes dance2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(15px, -15px, 0);
        transform: translate3d(15px, -15px, 0)
    }
    100% {
        -webkit-transform: translate3d(0, -15px, 15px);
        transform: translate3d(0, -15px, 15px)
    }
}

@keyframes dance2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(15px, -15px, 0);
        transform: translate3d(15px, -15px, 0)
    }
    100% {
        -webkit-transform: translate3d(0, -15px, 15px);
        transform: translate3d(0, -15px, 15px)
    }
}

@-webkit-keyframes slideTop {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}

@keyframes slideTop {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}

@-webkit-keyframes zoom1 {
    0% {
        scale: 0.2
    }
    50% {
        scale: 1
    }
    100% {
        scale: 0.2
    }
}

@keyframes zoom1 {
    0% {
        scale: 0.2
    }
    50% {
        scale: 1
    }
    100% {
        scale: 0.2
    }
}

@-webkit-keyframes topBottomLine {
    0% {
        top: 0
    }
    50% {
        top: calc(100% - 30px)
    }
    100% {
        top: 0
    }
}

@keyframes topBottomLine {
    0% {
        top: 0
    }
    50% {
        top: calc(100% - 30px)
    }
    100% {
        top: 0
    }
}

.bg-color-ani,
.color-animate {
    -webkit-animation: bgColor 6s linear infinite;
    animation: bgColor 6s linear infinite
}

@-webkit-keyframes bgColor {
    0% {
        background-color: #F2BA4C
    }
    25% {
        background-color: #81F24C
    }
    50% {
        background-color: #41F27D
    }
    75% {
        background-color: #0500FF
    }
    100% {
        background-color: #F2BA4C
    }
}

@keyframes bgColor {
    0% {
        background-color: #F2BA4C
    }
    25% {
        background-color: #81F24C
    }
    50% {
        background-color: #41F27D
    }
    75% {
        background-color: #0500FF
    }
    100% {
        background-color: #F2BA4C
    }
}

@-webkit-keyframes footerLine {
    0% {
        left: 40px
    }
    50% {
        left: 0
    }
    100% {
        left: 40px
    }
}

@keyframes footerLine {
    0% {
        left: 40px
    }
    50% {
        left: 0
    }
    100% {
        left: 40px
    }
}

@-webkit-keyframes fadeLeftRight {
    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px)
    }
    50% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px)
    }
}

@keyframes fadeLeftRight {
    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px)
    }
    50% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px)
    }
}

@-webkit-keyframes animate-positive {
    0% {
        width: 0
    }
}

@keyframes animate-positive {
    0% {
        width: 0
    }
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
    opacity: 0;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-name: var(--animation-name);
    animation-name: var(--animation-name)
}

.th-ani {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.th-ani:hover {
    -webkit-transform: translate(0, -15px);
    -ms-transform: translate(0, -15px);
    transform: translate(0, -15px)
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.swiper-slide-active .fadein {
    --animation-name: fadein
}

.swiper-slide-active .scalein {
    --animation-name: scalein
}

.swiper-slide-active .slidetopleft {
    --animation-name: slidetopleft
}

.swiper-slide-active .slidebottomright {
    --animation-name: slidebottomright
}

.swiper-slide-active .slideinleft {
    --animation-name: slideinleft
}

.swiper-slide-active .slideinright {
    --animation-name: slideinright
}

.swiper-slide-active .slideinup {
    --animation-name: slideinup
}

.swiper-slide-active .slideindown {
    --animation-name: slideindown
}

.swiper-slide-active .rollinleft {
    --animation-name: rollinleft
}

.swiper-slide-active .rollinright {
    --animation-name: rollinright
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadein {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)))
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)))
    }
}

@-webkit-keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(180px);
        transform: translateX(180px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(180px);
        transform: translateX(180px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(120px) translateY(120px);
        transform: translateX(120px) translateY(120px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(120px) translateY(120px);
        transform: translateX(120px) translateY(120px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-webkit-keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.dance {
    -webkit-animation: dance 2s alternate infinite;
    animation: dance 2s alternate infinite
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.dance2 {
    -webkit-animation: dance2 4s alternate infinite;
    animation: dance2 4s alternate infinite
}

@keyframes dance2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    50% {
        -webkit-transform: translate3d(15px, -15px, 0);
        transform: translate3d(15px, -15px, 0)
    }
    100% {
        -webkit-transform: translate3d(0, -15px, 15px);
        transform: translate3d(0, -15px, 15px)
    }
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

.shape-mockup {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.xb-about-right p{
	text-align: justify;
}
.title.mediumfont{
	font-size: 30px;
    line-height: 38px;
}
.commonleft-right-wrapper{
	position: relative;
}
.commonleft-right-wrapper .xb-about_left{
	height: 100%;
}

.commonleft-right-wrapper .xb-about_left img{
	    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commonlistwrap ul{
	    list-style: none;
    padding: 0px;
    margin: 0px;
}
.commonlistwrap.footerlist-info ul li {
    font-size: 15px;
    font-size: 16px;
    color: #fff;
    text-align: left;
    line-height: 30px;
    position: relative;
    margin-bottom: 12px;
    padding-left: 38px;
}
.commonlistwrap.footerlist-info ul li .icon {
    position: absolute;
    left: 0px;
    top: 7px;
    color: #fff;
    font-size: 18px;
    line-height: 1em;
}
.commonlistwrap.footerlist-info ul li a {
    font-size: 15px;
    font-size: 17px;
    color: #fff;
    line-height: 30px;
}
.xb-footer-main .footer-widget .xb-item--links li a{
    font-size: 17px;
}
.xb-footer-main .footer-widget .xb-item--social_link li a{
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.copyrightnewfoot{
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.main-menu ul li:hover > a, .main-menu ul li.active > a{
	    background: none;
    color: #781921;
}
.cuscommon-equalheight-row .cuscommon-equalheightleft{
	display: flex;
	height: auto;
}
.cuscommon-equalheight-row .cuscommon-equalheightright{
	display: flex;
	height: auto;
}
.cuscommon-equalheight-row .mission-vission-item{
	height: 100%;padding: 40px 40px;    background: #ca0102;
}
.cuscommon-equalheight-row .mission-vission-item .xb-item--content{
	margin-bottom: 0;
}
.filterred{
	filter: brightness(0) invert(16%) sepia(100%) saturate(7500%) hue-rotate(-2deg) brightness(92%) contrast(80%);
}
.filterwhite{
    filter: invert(1) brightness(200);
}
.tagline-wrap .xb-item--list li {
    color: #000;
    color:#fff;
    display: flex;
    align-items: center;
}
.tagline-wrap .xb-item--list li:not(:last-child) {
    margin-bottom: 6px;
}
.tagline-wrap .xb-cta span{
	margin-left: 0;
	margin-right: 14px;
}
.tagline-wrap .xb-cta {
    padding: 55px 50px 55px;
    padding: 0;
    border-radius: 15px;
    margin-bottom: 0;
    z-index: 2;
}
.tagline-wrap{
    position: relative;
}
.tagline-wrap .tagpos-iconwrap{
    display: flex; width: 100%;padding: 30px 30px 30px;
}
.tagline-wrap .join-as-advisor{
    width: 50%;
}
.tagline-wrap .tagpos-iconwrap .xb-item--list{
    width: 100%;
}
.tagline-wrap .tagpos-iconwrap .tagpos-icon{
    width: 50%;
}
.tagline-wrap .tagpos-iconwrap .tagpos-icon img{
    height: 90px;
}

.run-wrapper {
  width: 60%;   /* 👈 limit area */
  position: relative;
  overflow: hidden;
}

.runner {
  animation: runtag 8s linear infinite;
}
@keyframes runtag {
  0% {
    left: 0;
  }

  50% {
    left: calc(100% - 70px); /* inside wrapper only */
    transform: rotateY(180deg);
  }

  100% {
    left: 0;
    transform: rotateY(0deg);
  }
}
.aboutbreadcrumb{
       /* background-position: 0 10%;*/
}
.breadcrumb{
    position: relative;z-index: 1;
}
.breadcrumb:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;z-index: -1;
}

.customnewblue-bg{
    background: #000080;
    /* background: #0018A8; */
    /* background: #002387;*/
    background: #000f89;
    background: #0213a0;
    color:#fff;
}
.customnewblue-bg .section-title .title{
    color:#fff;
}
.customnewblue-bg p{
    color:#fff;
}
.footer-cta{
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.animated-gifbgwrap{
    position: relative;
}
.animated-gifbg{
    position: absolute;
    top: 115px;
    bottom: 0px;
    height: 600px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    width: 100%;
    z-index: auto;
}
.filterpink{
    filter: invert(14%) sepia(95%) saturate(1800%) hue-rotate(320deg) brightness(102%) contrast(163%);
}

.filterblack{
    filter: brightness(0%) contrast(100%);
}

.thumb-style-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}
.thumb-style-two img.thumb-styleimg1{
    border-radius: 200px 200px 30px 30px;
    margin-top: 80px;
    max-width: 130%;
    border: 2px solid #fff;
}
.thumb-style-two img.thumb-styleimg2 {
   border-radius: 30px 30px 200px 200px;
    margin-left: -5%;
    max-width: 105%;
}
.thumb-style-two .border-shape {
    /* max-width: 347px; */
    width: calc(100% - 30%);
    height: 100%;
    border: 1px solid #ca141d;
    border-radius: 60px 0 60px;
    position: absolute;
    top: 60%;
    left: 15%;
    transform: translateY(-50%);
    z-index: -1;
}
.about2-counter-wrapper {
    position: absolute;
    right: 50px;
    bottom: 27px;
    display: flex;
    align-items: center;
    z-index: 3;
    background: #c90405;
    border-radius: 10px;
    padding: 10px 14px;
    color:#fff;gap: 0 10px;
}
.about2-counter-wrapper .icon img{
    width: 45px;
    filter: brightness(0) invert(1);
}
.about2-counter-wrapper .content .counts {
    color: #fff;
    line-height: 30px;
    font-size: 30px;
}

.about2-counter-wrapper .content .counts span{
    color: #fff;
    line-height: 30px;
    font-size: 30px;
    display: inline-block;
    margin: 0px;
    transition: all 0.4s ease-in-out;
}
.about2-counter-wrapper .content .text {
   color:#fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}


.tagline-iconwrap {
    position: relative;
    border-radius: 10px;
    background: #fff ;
    padding: 26px 30px;
    background: linear-gradient(135deg, #ca141d  40%,#0213a0 100%);
    background: linear-gradient(to right, #0066d4 0%, #2196f3 35%, #2196f3 50%, #2196f3 75%, #0213a0 100%);
}
.join-as-advisor > img {
    position: absolute;
    left: 100%;
    top: -40px;
    margin-left: -105px;
    width: 150px;
}
.tagline-iconwrap::after {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    content: "";
    bottom: -2px;
    right: -2px;
    background: linear-gradient(90deg, #ca141d  50%,#0213a0 100%);
    background: linear-gradient(to left, #0066d4 0%, #2196f3 35%, #2196f3 50%, #2196f3 65%, #0213a0 100%);
    z-index: -1;
    border-radius: 10px;
}

.category1-banner-item__shape2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;    height: auto;
}
.category1-banner-item__shape4 {
    position: absolute;
    bottom: 0%;
    height: auto;
    right: 0;
    z-index: 1;
}
.animatedrocket-imgwrap {
    position: relative;
}
.animatedrocket-imgwrap .animatedrocket-img {
    position: absolute;
    top:-115px;
     left: 0; 
    width: 100%;
    right: 0; 
}
:root{
    --customnewbg-themecolor:#000080;
    --customnewbg-themecolor:#00194c;
    --customnewbg-themecolor:#00236b;
    --customnewbg-themecolor: #00084e;
    --customnewbg-themecolor:#7b583a;
    --customnewbg-themecolor: #6b4930;
    --font-headingnew:'Jost', sans-serif;
    --font-headingnew2:'Quicksand', sans-serif;
    --bodynew-font:"DM Sans", sans-serif;
    --bodynew-font2: "Libre Baskerville", serif;
    --bluecolor-newtext:#00084e;
    --goldcolor-newtext:#6b4930;
    --themesmoke-color:#f6ebe4;
    --cusnewwhite-color:#fff;
    --thm-base-rgb:107, 73, 48;
    --customnew-themesmokecolor: #f4e8df;
    --cusnew-bordercolor:#d1ccca;
}
body{
    font-family: var(--bodynew-font);
}
.newblue-clrtext{
    color:var(--bluecolor-newtext);
}
.newgold-clrtext{
    color:var(--goldcolor-newtext);
}
.maincustombg{
        background: var(--customnewbg-themecolor);
}
.whitefullbg-main{
    background: #fff;
}
.breadcrumb:after {
    content: "";
    width: 100%;
    height: 50%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(0deg, var(--customnewbg-themecolor) 10%, transparent );
}
.hs-aboutbg {
    background: #fff;
    border-radius: 190px 0 0 190px;
    position: relative;
    z-index: 1;
}
.hs-aboutbg .xb-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.abouttitle{
    position: relative;
        display: flex;
    align-items: center;gap: 0 10px;
}
.abouttitle .abouttitle-icon{
    /*top: auto;
    left: 23%;
    right: auto;
    bottom: 25%;    
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: inline-block;
    line-height: 1;
    width: 75px;
    height: 75px;*/
}
.abouttitle .abouttitle-icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: inline-block;
    line-height: 1;
    width: 60px;
    height: 60px;
    transform: rotate(-30deg);
    display: none;
}
h1, h2, h3, h4, h5, h6{
        font-family: var(--font-headingnew2);
}
.title.cusnewtitle{
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
}
.cusnewtitle-xlsize{
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}
.cusnewtitlelg{
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 60px;
}
.title.cusnewtitle.cusnewtitle-medium {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    justify-content: flex-start;
}
.title.cusnewtitle.cusnewtitle-medium2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}
.thumb-style-two .roundimg-shape {
    /* max-width: 347px; 
    width: calc(100% - 25%);
    height: 97%;*/
    /* border: 1px solid #ca141d; */
    border-radius: 60px 0 60px;
    position: absolute;
    top: -16%;
    left: 7%;
    /* transform: translateY(-50%); */
    z-index: -1;
    animation: rotateabtircle 18s linear infinite;
    max-width: 360px;
}
@keyframes rotateabtircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotateaboutircle {
  animation: rotateabtircle 2s linear infinite;
}
.invertfilter-gif{
    filter: invert(1) brightness(200);
}
.abouttitle .abouttitle-icon.abouttitle-vissionicon{
    transform: rotate(32deg);
}
/*.thumb-style-two .border-shape {
    width: calc(100% - 30%);
    height: 100%;
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 2pt dashed var(--customnewbg-themecolor);
    animation: chRotateDash 18s linear infinite;
}*/
.thumb-style-two .border-shape{
        border: 1px dashed var(--customnewbg-themecolor);
        border-top: none;
}
.section-newtitle .abouttitle {
    justify-content: center;
}
.customnewblue-bg .section-newtitle .abouttitle {
    color: #fff;
}
.customnewblue-bg p, .customnewblue-bg a, .customnewblue-bg ul li, .customnewblue-bg span{
    color: #fff;
}
@keyframes chRotateDash { to { transform: rotate(360deg); } }
    @keyframes chFloatUp    { to { opacity: 1; transform: translateY(0); } }
.customnewblue-bg{
    background: var(--customnewbg-themecolor);
}


.event-style-one-item {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    margin-bottom: 50px;
}

.event-style-one-item:last-child {
    margin-bottom: 0;
}

.event-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    margin-bottom: 15px;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 5px;
}

.event-meta ul i {
    display: inline-block;
    font-weight: 100;
    min-width: 23px;
}

.event-style-one-item::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    height: 100%;
    width: 90%;
    background: rgba(255, 255, 255, 0.15);
    z-index: -1;
       /* border: 1px solid rgb(255 255 255 / 15%);*/
    border-radius: 30px;
    transition: all 0.35s ease-in-out;
    box-shadow: 0px -4px 50px -14px rgb(0 0 0 / 45%);
        background: rgb(107 73 48);
}

.bg-gray-gradient-secondary .event-style-one-item::after {
    box-shadow: none;
}
.right-info .event-cusicon {
    height: 100px;
    width: 100px;
    min-width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    margin-right: 0;
    padding: 10px;
}
.right-info .event-cusicon img{
        filter: invert(36%) sepia(29%) saturate(608%) hue-rotate(346deg) brightness(92%) contrast(85%);
        filter: invert(25%) sepia(44%) saturate(1050%) hue-rotate(347deg) brightness(90%) contrast(95%);
}
.event-style-one-item.event-style-one-even .event-stylerow{
    flex-direction: row-reverse;
}
.event-style-one-item.event-style-one-even::after{
    left: 0;
    right: auto;
}
@media (max-width: 991px) {
    .event-style-one-info {
        box-shadow: 0px -4px 50px -14px rgb(109 117 143 / 53%);
        border-radius: 0 0 10px 10px;
    }

    .event-style-one-item .event-thumb img {
        border-radius: 10px 10px 0 0;
    }
}

.event-style-one-item:hover::after {
    background: transparent;
    box-shadow: 0px -4px 50px -14px rgb(0 0 0 / 55%);
}

.event-style-one-item .event-thumb {
    overflow: hidden;
    border-radius: 30px;
    height: 100%;
}

.event-date {
    display: block;
    width: 100%;
    text-align: center;
    background: url(../img/shape/39.png);
    border-radius: 10px;
    padding: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.event-date h2 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 5px;
}

.event-date h6 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

.event-style-one-info .right-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    text-align: center;
    align-items: center;
    border-left: 1px solid #b9d3de;
    border-left: 1px solid rgb(255 255 255 / 25%);
    padding-left: 50px;
    order: 6;
}

.event-style-one-info .btn-style-two {
    margin-top: 25px;
}

.event-style-one-info p {
    margin: 0;
}

.event-style-one-item .event-thumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-style-one-info .right-info .btn {
    max-width: max-content;
    text-align: center;
}

.event-style-one-info .left-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-meta ul li {
    font-size: 18px;
}

.event-style-one-info .left-info .btn {
    max-width: max-content;
    margin-top: 25px;
}

.event-style-one-info .left-info h2 {
    margin-bottom: 20px;
}

.feature-item {
    /*-webkit-mask-image: url("..assets/img/customnew/polygon-shape.png");
    mask-image: url("../assets/img/customnew/polygon-shape.png");*/
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    mask-position: center;
    padding: 1.5rem;
    background: #f4e9ff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 33%, 100% 67%, 75% 100%, 25% 100%, 0% 67%, 0% 33%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.animation-item:hover .animate__wobble {
    animation: wobble 1.5s ease-in-out;
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* ============================================================== 
    # Newsletter
=================================================================== */
.newsletter-style-one-items {
    padding: 80px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.newsletter-style-one-items .shape img {
    position: absolute;
        left: -60px;
    bottom: -68px;
}





ul.list-check {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
    flex-direction: column;
    align-items: flex-start;
    margin: 25px auto;
    padding: 20px 10px;
}

ul.list-check li {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

ul.list-check li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    color: var(--customnewbg-themecolor);
}

.newsletter-style-one-items .shape img:nth-child(2) {
    left: auto;
    right: 5%;
    bottom: auto;
    top: 60px;
    z-index: -1;
}
:root{
   --home-bodyfontsm: 14px;
   --home-bodylinehgtsm: 23px;
}
@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn
}
.newsletter-style-one-items {
    position: relative;
    z-index: 1;
    font-weight: 700;
    transform-origin: left center;
    border: 1px solid var(--customnewbg-themecolor);
    border-radius: 10px;
    padding: 3px 6px;
    /* animation: headTurn 3s ease-in-out infinite; */
}
.newsletter-style-one-items::before {
    content: "";
    position: absolute;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle),#ebecf1,#ebecf1 5%,#ebecf1 60%,#ebecf1 95%);
   /* --main-bg: conic-gradient(from var(--border-angle),#d0c6be,#d0c6be 5%,#d0c6be 60%,#d0c6be 95%);*/
    
    --gradient-border: conic-gradient(from var(--border-angle),transparent 25%,var(--customnewbg-themecolor),var(--customnewbg-themecolor) 99%,transparent);
    animation: gradientmoving 3s linear infinite;
    background: var(--main-bg) padding-box,var(--gradient-border) border-box,var(--main-bg) border-box;
    background-position: 50%;
    border: 2pt solid transparent;
    place-content: center;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    left: 0;
    top: 0;
}
@keyframes gradientmoving {
    to {
        --border-angle: 1turn
    }
}
.filterblue{
    filter: brightness(0) saturate(100%) invert(14%) sepia(87%) saturate(4150%) hue-rotate(214deg) brightness(72%) contrast(98%);
}
.filtergold{
    filter: invert(36%) sepia(29%) saturate(608%) hue-rotate(346deg) brightness(92%) contrast(85%);
    filter: invert(25%) sepia(44%) saturate(1050%) hue-rotate(347deg) brightness(90%) contrast(95%);
}
.foot-shape-top svg {
    width: calc(200% + 1.3px);
    height: 160px;
    transform: translateX(-50%) rotateY(180deg);
    fill: :#fff;
}
.foot-shape-top {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    width: 100%;
    z-index: 1;
    background: #ca141d;
}
.foot-shape-top .elementor-shape-fill {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}
.animation-scalation {
    animation: scalation 8s linear infinite;
}
@keyframes scalation {
0% {
  transform: scale(1);
}
50% {
    transform: scale(0.5);
}
100% {
    transform: scale(1);
}
}
.star-group.stars-4 {
    top: auto;
    bottom: 100px;
    left: -200px;
    position: absolute;
}
.star-group.stars-4.tagwrapstar {
    top: 20%;
    bottom: 100px;
    left: 0;
    position: absolute;
    z-index: 10;
    right: 30%;
}

.star-group .star {
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    position: absolute;
    width: 40px;
    height: 50px;
    -webkit-animation: stars 5s infinite cubic-bezier(.65, .49, .21, .98);
    -moz-animation: stars 5s infinite cubic-bezier(.65, .49, .21, .98);
    animation: stars 5s infinite cubic-bezier(.65, .49, .21, .98);
}
.star-group .star:nth-child(1) {
    animation-delay: 0s !important;
    right: 1rem;
    top: 2rem;
}
.star-group .star:nth-child(2) {
  animation-delay: 2s !important;
  right: 0;
  top: 0;
}

.star-group .star:nth-child(3) {
  animation-delay: 3s !important;
  right: -1.5rem;
  top: 1.5rem;
}

@keyframes stars {

  0%,
  to {
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
.xb-shapegirl {
    top: 20%;
    bottom: -80px;
    left: auto;
    position: absolute;
    z-index: 10;
    right: 28%;
    width: 100px;
    top: auto;
    margin: 0 auto;
    text-align: center;
     animation: rungirl 30s linear infinite;
}
/*.xb-shapegirl {
    position: absolute;
    bottom: -80px;
    right: 28%;
    z-index: 10;
    animation: girlRun 6s linear infinite;
}*/

.xb-shapegirl img {
    width: 220px; /* adjust size */
    width: 250px; /* adjust size */
}
.newsletter-style-one-items {
    position: relative;
    z-index: 1;
    font-weight: 700;
    transform-origin: left center;
    border: 1px solid var(--customnewbg-themecolor);
    border-radius: 10px;
    padding: 3px 6px;
    /* animation: headTurn 3s ease-in-out infinite; */
    width: 90%;
    margin: 0 auto;
    margin-left: 10%;
}
/* Animation */
@keyframes girlRun {
    0% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(40%);
    }
    50% {
        transform: translateX(50%) scaleX(-1); /* flip direction */
    }
    90% {
        transform: translateX(0) scaleX(-1);
    }
    100% {
        transform: translateX(0) scaleX(1);
    }
}

@keyframes rungirl {
  0% {
    left: 0;
  }

  48% {
    -webkit-transform: rotateY(0deg);
  }

  50% {
    left: calc(100% - 100px);
    -webkit-transform: rotateY(180deg);
  }

  98% {
    -webkit-transform: rotateY(180deg);
  }

  100% {
    left: 0;
    -webkit-transform: rotateY(0deg);
  }
}
.patnerabout-slider {
    overflow: hidden !important;
    position: relative;
    padding: 50px 0 50px;
    padding: 16px 0 50px;
}

.patnerabout-slider .swiper-wrapper {
    align-items: center;
}

.patnerabout-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.patnerabout-slider .swiper-slide img {
    max-height: 80px;      /* adjust as needed */
    width: auto;
    object-fit: contain;
}
.patnerabout-slider .patnerabout-carouselnav {
   /* position: absolute;
    right: 0;
    top: 28px;*/
    display: flex;
    justify-content: center;
    gap: 0 10px;
    align-items: center;
}
.patnerabout-slider .patnerabout-carouselnav .patnerabout-arrow {
    width: 30px;
    height: 30px;
    background: var(--customnewbg-themecolor);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
}
.patnerabout-slider .patnerabout-carouselnav .patnerabout-arrow.patnerabout-next {
    margin-left: 2px;
}
.patnerabout-slider .patnerabout-carouselnav .patnerabout-arrow i {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;color: #fff;
    line-height: 19px;
}
.patnerabout-title{
    justify-content: center;
    align-items: center;
}
.abouttitle.patnerabout-title .abouttitle-icon{
    transform: none;
}
.customheading-designtwo .customheading-designtwo-line {
    width: 90px;
    height: 3px;
    background:linear-gradient(90deg, #b99473, #b7916e);
    margin:2px auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.customheading-designtwo .customheading-designtwo-line::after {
    content: "";
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--customnewbg-themecolor);
    animation: hadilineanim 2.5s infinite;
}
.customheading-designtwo.dark-hdbg .customheading-designtwo-line::after {
    background: #fff;
}


@keyframes hadilineanim {
  0% { left:-100%; }
  50% { left:100%; }
  100% { left:100%; }
}
.foot-shape-top{
    background:var(--color-secondary);
}

/** about **/

.principal-box .content {
}

.principal-box .content .heading-block {
    text-align: right;
}

.principal-box .content .feather {
    margin-right: 10px;
}

.principal-box .content .title {
    font-size: 32px;
    font-weight: 600;
    color: #c33;
    margin: 0;
    line-height: 1.2;
}

.principal-box .content .tagline {
    font-size: 22px;
    color: #1e9e48;
    margin-top: 5px;
}

.principal-box .content .quote {
    font-weight: bold;
    font-style: italic;
    margin: 20px 0;
}

.principal-box .content p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.principal-box .content .signature {
    margin-top: 30px;
}

.principal-box .content .signature h3 {
    color: #e00000;
    margin-bottom: 5px;
    font-size: 22px;
}

.principal-box .content .signature p {
    margin: 0;
    font-weight: 600;
}

.left-panel{
    width:45%;
    position:relative;
    /*background:#d4edfe;   */
}
.principal-box {
    background: #f6ebe4;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0px 0px 13px 2px rgb(101 56 22 / 36%);
    overflow: hidden;
    display: flex;
}
/* Pink big circle background */
.circle-bg {
     width: 300px;
    height: 300px;
    background: #f2d6c6;
    border-radius: 50%;
    position: absolute;
    left: -80px;
    top: -110px;
}

/* Blue arc border */
.arc-border {
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 10px solid #653816;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    left: -83px;
    top: -110px;
    transform: rotate(76deg);
}
.principal-photowrap{
    position: relative;z-index: 1;
}
/* Principal image */
.principal-photo{
    /*width:520px;
    position:absolute;
    left:50px;
    top:120px;
    z-index:5;
    border-radius: 50%;
    position: absolute;
    left: -250px;
    top: -350px;*/
    width: 100%;
    max-width: 100%;
    border-radius: 0px 0px 500px 0px;
    position: relative;
        height: 400px;
        height: auto;
    
}
.circle-bgnew{
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: #f2d6c6;
    /* border-radius: 50%; */
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0px 0px 500px 0px;
    z-index: -1;
}

/* Blue arc border */
.arc-bordernew {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: #653816;
    /* border-radius: 50%; */
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0px 0px 500px 0px;
    z-index: -2;
}
.right-panel{
    width:55%;
    padding:50px 40px 40px;
    
}
.text-alignright{
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}
.signature.text-alignright p, .signature.text-alignright h3{
text-align: right;
}
.animripbg{
    position: relative;
    z-index: 1;overflow: hidden;
}
.round-p-animation {
    position: absolute;
    bottom: -30px;
    left: -65px;
    margin-top: -50px;
    z-index: -1;
    background: transparent;
    width: 200px;
    height: 200px;
    border: 7px solid rgb(101 56 22 / 23%);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    -webkit-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
    -webkit-transition-property: color, background, border-color;
    transition-property: color, background, border-color;
}
.round-p-animation:after, .round-p-animation:before {content: ''; border: 10px solid; border-color: inherit; width: 270%; height: 270%; -webkit-border-radius: 100%; border-radius: 100%;
 position: absolute; left: -85%; top: -85%; opacity: 1; -webkit-animation: 2s videomodule-anim linear infinite; animation: 2s videomodule-anim linear infinite; }
.round-p-animation:before {-webkit-animation-delay: .5s; animation-delay: .5s; }
@-webkit-keyframes videomodule-anim {
  0% {
    -webkit-transform: scale(0.68);
            transform: scale(0.68); }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

@keyframes videomodule-anim {
  0% {
    -webkit-transform: scale(0.68);
            transform: scale(0.68); }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }
.round-p-animation.round-pright{
    left: auto;
    right: -65px;

}
/**contact ***/
.commoncontact-wrapper .contact_form {
    padding: 50px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border: 1px solid var(--customnewbg-themecolor);
}
.contact_form .form-group input.form-control, .contact_form .form-group select.form-select{
        height: 50px;
    padding: 6px 25px 13px;
    line-height: 1.5;
    display: block;
}
.thm-btn {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-primary);
    border-style: none;
    padding: 14px 30px;
    align-self: center;
    position: relative;
    line-height: 1.2;
    transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75);
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.01px;
    border-radius: 80px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
    color: #fff;
}
.thm-btn:hover{
    color: #fff;
}
.map-sec {
    position: relative;
    height: 600px;
    border-radius: 10px;
    overflow: hidden
}

.map-sec .map {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%
}

.map-sec .map iframe {
    height: 100%;
    width: 100%;
    /*-webkit-filter: grayscale(100);
    filter: grayscale(100)*/
}
.map-contact {
    max-width: 590px;
    padding: 60px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 3
}

.border-title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    margin-top: -0.22em;
    font-weight: 600
}

.border-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 80px;
    background-color: var(--customnewbg-themecolor)
}

.contact-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 340px;
    gap: 25px;
    margin-bottom: 40px
}

.contact-info:last-of-type {
    margin-bottom: 0
}

.contact-info_icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    background-color: rgba(13, 94, 244, 0.07);
    text-align: center;
    color: var(--customnewbg-themecolor);
    border-radius: 5px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.contact-info_title {
    font-size: 20px;
    margin-bottom: 6px;
    margin-top: -0.2em
}

.contact-info p,
.contact-info a,
.contact-info span {
    margin-bottom: -0.5em
}

.contact-info_text {
    margin-bottom: -0.45em;
    line-height: 1.5;
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;}

.contact-info_text p,
.contact-info_text a,
.contact-info_text span {}

.contact-info_text a {
    color: var(--title-color)
}

.contact-info_text a:hover {
    color: var(--customnewbg-themecolor)
}

.contact-info:hover .contact-info_icon {
    background-color: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color)
}
.contact-form-wrap {
    background-color: var(--themesmoke-color);
    padding: 50px 45px 50px 60px;
    border-radius: 10px;
    background-position: right center;
    margin-right: 0;
    /*margin-top: -85px;*/
    position: relative;
    z-index: 9;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: none!important;
}
.contact-feature {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    border-radius: 10px;
    border: 1px solid #ECF1F9;
    background: var(--cusnewwhite-color);
    box-shadow: 0px 5px 10px 0px #67452d;
    padding: 30px;
}
.contact-addresswrap {
    background: #6b4930;
    padding: 30px;
    border-radius: 10px;
    /*margin-right: -50px;*/
    z-index: 10;
    position: relative;
}
.contact-feature:not(:last-child) {
    margin-bottom: 24px
}

.contact-feature .contact-feature-icon {
    height: 60px;
    width: 60px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    border-radius: 10px;
    line-height: 60px;
    background: var(--themesmoke-color);
    font-size: 26px;
    text-align: center;
    color: var(--customnewbg-themecolor);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
    animation: boxpulsenew infinite 1.3s ease-in-out;
    position: relative;
}
.contact-feature .contact-feature-icon i{
    animation: swingnew infinite 1.3s ease-in-out;
}
.contact-feature .contact-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--customnewbg-themecolor);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}
.contact-feature:hover .contact-feature-icon::before {
    transform: scale(1);
}

.contact-feature .media-body {
    margin-bottom: -0.4em
}

.contact-feature .contact-feature_label {
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: -0.4em;
    margin-bottom: 5px
}

.contact-feature .contact-feature_link {
    line-height: normal;
    display: block;
        font-size: 16px;
    line-height: 28px;
}

.contact-feature .contact-feature_link span {
    color: var(--title-color)
}

.contact-feature:hover .contact-feature-icon {
    background: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color)
}
.common-form-wrap select.style-white, .common-form-wrap .form-control.style-white, .common-form-wrap .form-select.style-white, .common-form-wrap textarea.style-white, .common-form-wrap input.style-white {
    background-color: var(--cusnewwhite-color);
    border: none;
}
.common-form-wrap .form-group>i {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 19px;
    font-size: 16px;
    color: #93a5be;
}
.custh-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 20.5px 29px;
        padding: 14px 25px 14px 25px;
    box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
    border-radius: 5px
}

.custh-btn:before {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 600%;
    background-color: var(--color-secondary);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    transform: translateX(-50%) translateY(-50%) rotate(60deg);
    z-index: -1;
    -webkit-transition: 0.7s ease;
    transition: 0.7s ease
}

.custh-btn:hover,
.custh-btn.active {
    color: var(--cusnewwhite-color)
}

.custh-btn:hover::before,
.custh-btn.active::before {
    height: 560%
}
.whitebtn.custh-btn{
  background-color: var(--cusnewwhite-color);  
  color: #000;
}
.whitebtn.custh-btn:before {
    background-color: var(--themesmoke-color);
}
.whitebtn.custh-btn:hover,
.whitebtn.custh-btn.active {
    color:#000;
}
i.fal.fa-location-dot::before {
    content: "\f3c5";
}
.contact-feature .contact-feature_link {
    color: #000;
}
.xb-shapegirl-contact {
    top: 0;
    bottom: -80px;
    left: auto;
    position: absolute;
    z-index: 10;
    right: 28%;
    width: 100px;
    top: auto;
    margin: 0 auto;
    text-align: center;
    animation: rungirl 30s linear infinite;
    bottom: -100px;
    z-index: 10;
}
.xb-shapeft-bot{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
    background: #fff;
}
.mapiconwrap {
    top: -20px;
    right: 2%;
    text-align: right;
    filter: invert(1);
    z-index: 20;
    width: 180px;
}
.font16-style p{
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}
.darkbrownclr-text{
    color: var(--color-secondary);
}
.brownclr-text{
    color: var(--goldcolor-newtext);
}
.commonshad-boxbg {
    background: #f6ebe4;
    border-radius: 20px;
    padding: 60px 50px 55px;
    box-shadow: 0px 0px 13px 2px rgb(101 56 22 / 36%);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.topnew-panelwrap{
    display: flex;
}
.topnewpanel-photowrap {
    margin: 0 auto;
    text-align: center;    
    width: auto;
    box-shadow: 0 0 50px rgba(201, 168, 76, .2), inset 0 0 20px rgb(244 231 220);
    border: 5px solid #fff;
    border-radius: 10px;
}
.topnewpanel-photowrap .cuscircle-photo{
     border-radius: 10px;
    box-shadow: 0 0 50px rgba(201, 168, 76, .2), inset 0 0 20px rgb(244 231 220);
}

.standardsteps-section {
  color: #fff;
 /* padding: 80px 20px;*/
}


/* LEFT */
.standardsteps-left {
  flex: 1;
}

.badge {
  display: inline-block;
  background: var(--themesmoke-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
  color: #000;
}

.standardsteps-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.standardsteps-left p {
  color: #cbd5e1;
  margin-bottom: 25px;
}

.standardsteps-left img {
  width: 100%;
  border-radius: 20px;
}

/* RIGHT */
.standardsteps-right {
  flex: 1;
  position: relative;
}
.standardsteps-timeline::before {
    content: "";
    position: absolute;
    left: 37px;
    top: 12px;
    width: 2px;
    height: 80%;
    background: var(--cusnewwhite-color);
}

.standardstep-item {
  position: relative;
  margin-bottom: 40px;
}
.standardstep-item {
  position: relative;
  padding-left: 60px;
}

.standardstep-item::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--cusnewwhite-color);
}

.standardstep-item {
  position: relative;
  margin-bottom: 40px;
}

.standard-circle {
  position: absolute;
  left: 3px;
  top: 0;
  width: 45px;
  height: 45px;
  background: var(--cusnewwhite-color);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  z-index: 2;
  color: #000;
}

.standard-card {
  margin-left: 20px;
  background: var(--themesmoke-color);
  color: #000;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s; box-shadow: 0px -4px 50px -14px rgb(0 0 0 / 45%);
  /*transition: all 0.35s ease-in-out;
   
    background: rgb(107 73 48);*/
}

.standard-card.active {
  background: var(--cusnewwhite-color);
  color: #000;
}

.standard-card h4 {
  margin-bottom: 10px;
}

.standard-card:hover {
  transform: translateY(-5px);
}
.standardsteps-sectionwrapper {
    background: var(--customnewbg-themecolor);
    border-radius: 100px 0 100px 0;
    padding: 80px 50px;
    padding: 60px 50px;
     border-radius: 60px 0 60px 0;

}
ul.cuscommon-listwrap {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;    
    flex-direction: column;
    align-items: flex-start;
}

ul.cuscommon-listwrap li {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    text-align: left;
}

ul.cuscommon-listwrap li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    color: var(--customnewbg-themecolor);
}
.extracuri-innerwrap.img-box1 {
    position: relative;
    margin-right: 0;
    padding-bottom: 25px
}

.img-box1 .about-shape1 {
    z-index: 1
}

.img-box1 .about-shape1:after,
.img-box1 .about-shape1:before {
    content: '';
    position: absolute;
    left: 98px;
    bottom: 57px;
    border: 10px solid var(--customnewbg-themecolor);
    border-radius: 50%;
    width: 60px;
    height: 60px
}

.img-box1 .about-shape1:after {
    width: 122px;
    height: 122px;
    border: 5px solid var(--customnewbg-themecolor);
    left: 6px;
    bottom: 26px;
    z-index: -1
}

.img-box1 .img1 img {
    border-radius: 10px
}

.img-box1 .img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 1
}

.img-box1 .img2 img {
    border-radius: 10px
}

.img-box1 .img2:after {
    content: '';
    position: absolute;
    left: -10px;
    top: -10px;
    background: var(--cusnewwhite-color);
    height: 100%;
    width: 100%;
    border-radius: 10px;
    z-index: -1
}
.about-grid {
    position: absolute;
    top: -16px;
    right: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px rgba(19, 61, 117, 0.12);
    z-index: 2;
    overflow: hidden;
    padding: 40px 0px 42px;
}

/*.about-grid:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(top, rgba(13, 94, 244, 0) 0%, rgba(13, 94, 244, 0.6) 100%);
    background: linear-gradient(180deg, rgba(13, 94, 244, 0) 0%, rgba(13, 94, 244, 0.6) 100%);
    z-index: -1
}*/
.thumb-extra-two .about-grid {
    padding: 15px 20px;
    background: var(--customnewbg-themecolor);
    max-width: 223px;
}
.thumb-extra-two .about-grid .about-grid_text {
    max-width: 162px;
    margin: auto;
}
.about-grid_year {
    font-size: 30px;
    font-weight: 700;
    color: var(--cusnewwhite-color);
    margin-bottom: 1px;
}

.about-grid_text {
    color: var(--cusnewwhite-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    /* text-transform: uppercase; */
    max-width: 121px;
    margin: 0 17px;
}
.about-grid_img img {
    border-radius: 10px
}
.img-box4 {
    position: relative;
    padding-right: 246px;
    margin-right: 50px
}

.img-box4 .about-grid {
    padding: 45px 30px;
    background: var(--customnewbg-themecolor);
    max-width: 223px
}

.img-box4 .about-grid:after {
    display: none
}

.img-box4 .about-grid .about-grid_text {
    max-width: 162px;
    margin: auto
}

.img-box4 .img1 img {
    border-radius: 10px;
    width: 100%
}

.img-box4 .img2 {
    border-radius: 10px;
    z-index: 1;
    margin-top: 1.5rem;
    position: absolute;
    right: 0;
    bottom: 0
}

.img-box4 .img2 img {
    border-radius: 10px
}
.thumb-extra-two .thumb-extraimg1 {
    border-radius: 10px;
    
    max-width: 130%;
    border: 2px solid #fff;
}
.thumb-extra-two .thumb-extraimg2 {
    border-radius: 10px;
    margin-left: 0;
    max-width: 100%;
    margin-top: 130px;
    margin-left: -38px;
    z-index: 10;
}
.thumb-extra-two{
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}
.thumb-extra-two .thumb-extraimg img {
    border-radius: 10px;
    height: 260px;
    object-fit: cover;
}
.thumb-extra-two .thumb-extraimg{
    border: 5px solid #fff;
}
.img-box1 {
    position: relative;
    margin-right: 50px;
    padding-bottom: 87px
}

.img-box1 .about-shape1 {
    z-index: 1
}

.img-box1 .about-shape1:after,
.img-box1 .about-shape1:before {
    content: '';
    position: absolute;
    left: 98px;
    bottom: 57px;
    border: 10px solid var(--themesmoke-color);
    border-radius: 50%;
    width: 60px;
    height: 60px
}

.img-box1 .about-shape1:after {
    width: 122px;
    height: 122px;
    border: 8px solid #ae0f0b;
    left: 6px;
    bottom: 26px;
    z-index: -1
}

.img-box1 .img1 img {
    border-radius: 10px
}

.img-box1 .img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 1
}

.img-box1 .img2 img {
    border-radius: 10px
}

.img-box1 .img2:after {
    content: '';
    position: absolute;
    left: -10px;
    top: -10px;
    background: var(--white-color);
    height: 100%;
    width: 100%;
    border-radius: 10px;
    z-index: -1
}
.extra-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;    
    flex-direction: column;
    align-items: flex-start;
}

.extra-checklist ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.extra-checklist ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    color: var(--customnewbg-themecolor);
}
ul.flex-wraplist{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px 10px;
}
ul.flex-wraplist li {
    width: calc(20% - 20px);
    width: auto;
    /* min-width: 100px; */
    margin: 0 30px;
}
.benifitwrapper ul.flex-wraplist {
   
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.single-highlights-box {
    position: relative;
    display: block;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    display: flex;
    height: 100%;
    flex-direction: column;
}   
.single-highlights-box__inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 39px 40px 32px;
}
.single-highlights-box .text-box {
    position: relative;
    display: block;
    text-align: justify;
}
.single-highlights-box .text-box h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 13px 0 11px;
}
.single-highlights-box .text-box p {
    margin: 0;
}
.single-highlights-box__inner:before {
    content: '';
    position: absolute;
    border-style: solid;
        top: 8px;
    right: 28px;
    border-width: 7px;
    right: 8px;
    border-width: 20px;
    border-color:  var(--customnewbg-themecolor) var(--customnewbg-themecolor) transparent transparent ;
}
.whitecusbg{
    background: #fff;
}
.text-justify{
    text-align: justify;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol, li {
    margin: 0;
    padding: 0;
}
.dinline-block{
    display: inline-block;
    vertical-align: middle;
}
/*** 
=============================================
    Program Details Area Css
=============================================
***/
.program-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 10;
}

.program-details-area__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 270px;
    background: #f9f5f3;
    z-index: -1;
}

.program-details-tab-content {
    position: relative;
    display: block;
    padding-top: 0;
}

.program-details-tab-content__inner {
    position: relative;
    display: flex;
    background-color: var(--customnewbg-themecolor);
    padding: 50px 50px 50px;
    /* background: var(--themesmoke-color); */
    box-shadow: 0px -4px 50px -14px rgb(255 255 255 / 45%);
    border: 3px solid #fff;
    border-radius: 20px;
}

.program-details-tab-content__inner__shape {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.program-details-tab-content__text {
    position: relative;
    display: block;
    padding-right: 0;
    z-index: 2;
}

.program-details-tab-content__text:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 4px;
    width: 1px;
    background-color: rgba(var(--thm-black-rgb), .20);
}



.program-details-form-box .sec-title {
    margin-top: -6px;
    padding-bottom: 31px;
}

.program-details-tab-content__text .sec-title h2 {
    color: #ffffff;
}

.program-details-tab-content__text p {
    color: #ffffff;
    margin: 0;
}

.program-details-tab-content__text ul {
    position: relative;
    display: block;
    padding-top: 0;
}

.program-details-tab-content__text ul li {
    position: relative;
    display: block;
    padding-left: 40px;
}

.program-details-tab-content__text ul li+li {
    margin-top: 15px;
}

.program-details-tab-content__text ul li .icon {
    position: absolute;
    top: 6px;
    left: 0;
}

.program-details-tab-content__text ul li .icon span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
}

.program-details-tab-content__text ul li .inner-text {
    position: relative;
    display: block;
}

.program-details-tab-content__text ul li .inner-text h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    margin: 0 0 9px;
}

.program-details-tab-content__text ul li .inner-text p {
    color: #ffffff;
    margin: 0;
}



.program-details-form-box {
    position: relative;
    display: block;
    z-index: 5;border-left: 1px dashed rgba(255, 255, 255, 0.5);
}

.program-details-form-box .sec-title {
    margin-top: 0;
    padding-bottom: 0;
}

.program-details-form-box .sec-title h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 500;
}

.program-details-form-box form .input-box {
    position: relative;
    display: block;
    min-height: 60px;
    margin-bottom: 20px;
}

.program-details-form-box form input[type="text"],
.program-details-form-box form input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ffffff;
    width: 100%;
    height: 60px;
    color: #777777;
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.program-details-form-box form .nice-select {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 0px;
    border: 0px solid #ede8e6;
    font-family: var(--thm-font);
    color: #777777;
    font-size: 17px;
    font-weight: 500;
    height: 60px;
    line-height: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.program-details-form-box form input[type="text"]::-webkit-input-placeholder {
    color: #777777;
}

.program-details-form-box form input[type="text"]:-moz-placeholder {
    color: #777777;
}

.program-details-form-box form input[type="text"]::-moz-placeholder {
    color: #777777;
}

.program-details-form-box form input[type="text"]:-ms-input-placeholder {
    color: #777777;
}

.program-details-form-box form input[type="email"]::-webkit-input-placeholder {
    color: #777777;
}

.program-details-form-box form input[type="email"]:-moz-placeholder {
    color: #777777;
}

.program-details-form-box form input[type="email"]::-moz-placeholder {
    color: #777777;
}

.program-details-form-box form input[type="email"]:-ms-input-placeholder {
    color: #777777;
}

.program-details-form-box form .button-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 10px;
}

.program-details-form-box form .button-box button {
    border: 1px solid #ffffff;
    padding-top: 4px;
    padding-left: 40px;
    padding-bottom: 4px;
    padding-right: 40px;
}

.program-details-tab-content__img-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: 2;
}



.program-details-area--style2 {
    position: relative;
}

.program-details-area--style2 .program-details-area__bg {
    background: #f1f4fb;
}

.program-details-area--style2 .program-details-tab-content__inner {
    background-color: #035c96;
}



/*** 
=============================================
    Requirements For Degree Css
=============================================
***/
.requirements-for-degree {
    position: relative;
    display: block;
    padding: 0;
}

.requirements-for-degree__content {
    position: relative;
    display: flex;
    background-color: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
}

.requirements-for-degree__content:before {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background: #ede8e6;
}

.requirements-for-degree__content ul {
    position: relative;
    display: block;
    width: 50%;
    border-right: 1px solid #ede8e6;
}

.requirements-for-degree__content ul:last-child {
    border-right: none;
}

.requirements-for-degree__content ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #ede8e6;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 65px;
}

.requirements-for-degree__content ul li:first-child {
    padding-top: 20px;
}

.requirements-for-degree__content ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.requirements-for-degree__content ul li:before {
    font-family: 'icomoon' !important;
    position: absolute;
    top: 0px;
    left: 30px;
    bottom: 0;
    content: "\ea20";
    color: #947c6a;
    font-size: 24px;
    font-weight: 400;
    margin: 20px 0;
}



.requirements-for-degree--style2 {
    background: #f1f4fb;
}
/*** 
=============================================
    Departments Style2 Area Css
=============================================
***/
.departments-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px;
}

.single-department-box-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    margin-bottom: 30px;
        height: 100%;
}

.single-department-box-style2:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}

.single-department-box-style2:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border: 1px solid #ede8e6;
    z-index: 1;
}

.single-department-box-style2__inner {
    position: relative;
    display: block;
    padding: 30px 15px 0;
    overflow: hidden;
    z-index: 3;
}

.single-department-box-style2__inner .overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 3;
    transform: perspective(400px) translateY(0px) scale(0, 1);
    transform-style: preserve-3d;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
}

.single-department-box-style2__inner .overlay-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.10;
}

.single-department-box-style2__inner:hover .overlay-box {
    transform: perspective(400px) translateY(0px) scale(1, 1);
    transform-origin: left center;
}

.single-department-box-style2__ovarlay-content {
    position: absolute;
    top: 0;
    left: 100%;
    width: 400px;
    padding-left: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    transform-style: preserve-3d;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    z-index: 99;
}

.single-department-box-style2__ovarlay-content .inner {
    position: relative;
    display: block;
    padding: 36px 40px 40px;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}

.single-department-box-style2__ovarlay-content .inner:before {
    content: "";
    position: absolute;
    top: 40px;
    left: -15px;
    border-right: 15px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.single-department-box-style2:hover .single-department-box-style2__ovarlay-content {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}



.single-department-box-style2__ovarlay-content.left {
    left: auto;
    right: 100%;
    padding-left: 0px;
    padding-right: 30px;
}

.single-department-box-style2__ovarlay-content.left .inner:before {
    left: auto;
    right: -15px;
    border-left: 15px solid #ffffff;
    border-right: transparent;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}


.single-department-box-style2__ovarlay-content h5 {
    color: var(--customnewbg-themecolor);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-department-box-style2__ovarlay-content h3 {
    font-size: 20px;
    line-height: 22px;
    margin: 6px 0 13px;
}

.single-department-box-style2__ovarlay-content p {
    margin: 0;
}


.single-department-box-style2__ovarlay-content ul {
    position: relative;
    display: block;
    border-top: 1px solid #ede8e6;
    padding-top: 26px;
    margin-top: 22px;
}

.single-department-box-style2__ovarlay-content ul li {
    position: relative;
    display: block;
    padding-left: 15px;
    margin-bottom: 15px;
}

.single-department-box-style2__ovarlay-content ul li:last-child {
    margin-bottom: 0;
}

.single-department-box-style2__ovarlay-content ul li .dot-box {
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--customnewbg-themecolor);
    border-radius: 50%;
}

.single-department-box-style2__ovarlay-content ul li .inner-text {
    position: relative;
    display: block;
}

.single-department-box-style2__ovarlay-content ul li .inner-text h4 {
    color: #777777;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 5px;
}

.single-department-box-style2__ovarlay-content ul li .inner-text a {
    color: #a0a0a0;
    font-size: 16px;
    font-weight: 500;
}

.single-department-box-style2__ovarlay-content ul li .inner-text a:hover {
    color: var(--customnewbg-themecolor);
}

.single-department-box-style2__ovarlay-content ul li .inner-text a span {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.single-department-box-style2__ovarlay-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 24px;
}
.single-departments-box .text-holder h6 {
    position: relative;
    display: inline-block;
    background: var(--customnewbg-themecolor);
    padding: 10px 40px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-bottom: 20px;
}
.single-departments-box .text-holder h6:hover {
    background-color: #000;
}
.single-departments-box {
    position: relative;
    display: block;
}

.single-departments-box.marginbottom {
    margin-bottom: 61px;
}

.single-departments-box .icon {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.single-departments-box .icon span:before {
    position: relative;
    color: #b1b1b1;
    font-size: 80px;
    line-height: 80px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 3;
}

.single-departments-box:hover .icon span:before {
    color: var(--thm-black);
}

.single-departments-box .icon .round-box {
    position: absolute;
    top: 0;
    right: -10px;
    width: 45px;
    height: 45px;
    background: #f6f2f0;
    border-radius: 50%;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-departments-box:hover .icon .round-box {
    background-color: var(--themesmoke-color);
    transform: scale(1.1);
}



.single-departments-box .text-holder {
    position: relative;
    display: block;
    padding-top: 34px;
}
.gallery-img {
    position: relative;
}
.gallery-wrap .item{
    position: relative;
    box-shadow: 0.75rem 0.85rem 1.75rem 0rem rgba(0, 0, 0, 0.32);
    /* overflow: hidden; */
    border-radius: 10px;
}

.gallery-wrap .item::before,.gallery-wrap .item::after {
    position: absolute;
    width: 0;
    height: 50%;
    top: 0;
    left: 0;
    content: "";
    background:rgb(101 56 22 / 90%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 3;

}

.gallery-wrap .item:hover {
    cursor: pointer;
}

.gallery-wrap .item:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
     border-radius: 10px 10px 0 0;
}

.gallery-wrap .item:hover::before {
    width: 100%;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    border-radius: 0 0 10px 10px ;
}
.gallery-wrap .item .gallery-icon {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 22px;
    color: #fff;
    z-index: 5;
    width: 50px;
    height: 50px;
    background: var(--cusnewwhite-color);
    color: var(--customnewbg-themecolor);
    left: 0;
    margin: 0 auto;
    transform: translateY(-40%);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}
.gallery-wrap .item .gallery-icon::before{
    line-height: 50px;
}
.gallery-wrap .item:hover .gallery-icon {
    opacity: 1;
    visibility: visible;
}
@media (min-width: 1024px) {
    .customize-gallery .customgallery-row.row {
        --bs-gutter-x: 28px;
    }
}
.gallery-wrap {
    margin-bottom: 28px;
}
.custom-videosgallery .gallery-wrap .gallery-img{
    background:#000;
}
.header-top .xb-info ul li.tophd-li{
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    margin-left: 0;
}
.header-top .xb-help_desk ul li.tophd-li{
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    margin-left: 0;
    color: #fff;
}
.header-top .xb-help_desk ul li.tophd-li a{
    color: #fff;
}
.header-top .xb-help_desk .xb-helpwrap ul{
    display: flex;gap: 0 15px;
}
.main-slider--style8-shape-2 {
    position: absolute;
    left: auto;
    top: 5%;
    right: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rotate-me-2 {
    animation-name: rotateme2;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme2;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme2;
    -moz-animation-duration: 24s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme2;
    -ms-animation-duration: 24s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme2;
    -o-animation-duration: 24s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
@keyframes rotateme2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}
@keyframes MoveUpDown2 {
      0%   {
      left: 10%; 
      bottom: 2%;
      }
     100%  
     {
      left: 10%;
      bottom: 10%;
     }
}

@keyframes MoveUpDown3 {
    0%   {
    left: 25%; 
    }
   100%  
   {
    left: 65%;
   }
}
.busmove-elem6 {
    position: absolute;
    left: 20%;
    animation: MoveUpDown3 6s linear infinite;
    right: auto;
}
.animatedrocket-imgwrap2 .animatedrocket-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
}

.alumini-form-wrap {
    position: relative;
    display: flex;
    background-color: var(--color-secondary);
    padding: 50px 50px 50px;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    flex-wrap: wrap;
}
.alumini-form-wrap .program-details-tab-content__inner__shape{
    z-index: -1;
}
.common-form-wrap .form-group .form-group-inner{
    position: relative;
}
.common-form-wrap .form-group .form-group-inner>i {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 19px;
    font-size: 16px;
    color: #93a5be;
}
.common-form-wrap .form-label{
    color: #fff;
}
.form-group .radio-inline{
    color: #fff;
}
.formradiogroup {
    display: flex;
    align-items: center;
    height: 55px;
    gap: 0 25px;
}
@keyframes waveRun {
  0% {
    transform: translate(0, 0) scaleX(1);
  }
  10% {
    transform: translate(10%, -5px) scaleX(1);
  }
  20% {
    transform: translate(20%, 3px) scaleX(1);
  }
  30% {
    transform: translate(30%, -4px) scaleX(1);
  }
  40% {
    transform: translate(40%, 2px) scaleX(1);
  }
  50% {
    transform: translate(50%, 0px) scaleX(-1); /* flip direction */
  }
  60% {
    transform: translate(60%, 3px) scaleX(-1);
  }
  70% {
    transform: translate(70%, -5px) scaleX(-1);
  }
  80% {
    transform: translate(80%, 4px) scaleX(-1);
  }
  90% {
    transform: translate(90%, -2px) scaleX(-1);
  }
  100% {
    transform: translate(100%, 0) scaleX(-1);
  }
}
.rungirl1 {
    position: absolute;
    bottom: 5px; /* adjust for your wave */
    width: 100px;
    animation: waveRun 8s linear infinite;
}
.wave-svg {
    width: 200%;         /* important for movement */
    animation: waveMove 30s linear infinite;
    display: block;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.wave-container {
    overflow: hidden;     /* keeps wave inside */
    width: 100%;
}
.borderbtmrad0{
border-bottom-left-radius:0;
}

/*** 
=============================================
    Blog Style1 Area Css
=============================================
***/
.blog-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 80px;
    z-index: 9;
}

.single-blog-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.18);
    width: 100%;
}

.single-blog-style1 .img-holder {
    position: relative;
    display: block;
}

.single-blog-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--customnewbg-themecolor);
}

.single-blog-style1 .img-holder .inner::before {
    position: absolute;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0%;
    content: '';
    background-color: rgb(101 56 22 / 80%);
    transform: scaleY(1.0);
    opacity: 0;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    z-index: 2;
}

.single-blog-style1:hover .img-holder .inner::before {
    opacity: 0.70;
    transform: scaleY(1.0);
}

.single-blog-style1 .img-holder img {
    width: 100%;
    transform: scale(1.0);
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;

    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.single-blog-style1:hover .img-holder img {
    transform: scale(1.1) rotate(1deg);
}

.single-blog-style1 .category-box {
    position: absolute;
    left: 30px;
    bottom: -20px;
    display: flex;
    align-items: center;
    background-color: var(--customnewbg-themecolor);
    padding: 0 20px;
    z-index: 3;
    box-shadow: 6px 7px 0px rgb(252 190 37), 0 4px 12px rgb(249 176 34 / 50%);
}

.single-blog-style1 .category-box .dot-box {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background: #ffffff;
    transform: rotate(45deg);
}

.single-blog-style1 .category-box p {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.blogcolumn{
    display: flex;    margin-bottom: 30px;
}
.single-blog-style1 {
    display: flex;
    flex-direction: column;
    height: 100%;    margin-bottom: 0;
}

.single-blog-style1 .text-holder {
    flex-grow: 1;
}
.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 44px 30px 0px;
    /*box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);*/
    transition: all 200ms linear;
    transition-delay: 0.1s;
    height: auto;
}

.single-blog-style1 .text-holder h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
}

.single-blog-style1 .text-holder h3 a {
    color: var(--thm-black);
}

.single-blog-style1 .text-holder h3 a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style1 .text-holder .text {
    position: relative;
    display: block;
    padding-bottom: 22px;
}
.single-blog-style1 .text-holder .text {
        display: -webkit-box;
        -webkit-line-clamp:5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        /*min-height: 147px;*/overflow: hidden;text-overflow: ellipsis;
        padding-bottom: 0;
}
.single-blog-style1 .text-holder .text p {
    margin: 0;
     text-overflow: ellipsis;
}




.single-blog-style1 .text-holder .bottom-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0 15px;
    margin-top: 10px;
}

.single-blog-style1 .text-holder .bottom-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    height: 1px;
    background: #ede8e6;
}

.single-blog-style1 .text-holder .btn-box {
    position: relative;
    display: block;
}

.single-blog-style1 .text-holder .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--color-secondary);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.single-blog-style1 .text-holder .btn-box a:hover {
    color: var(--customnewbg-themecolor);
}

.single-blog-style1 .text-holder .btn-box a span:before {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--customnewbg-themecolor);
}


.single-blog-style1 .text-holder .meta-info {
    position: relative;
    display: block;
}

.single-blog-style1 .text-holder .meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1 .text-holder .meta-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
    line-height: 30px;
}

.single-blog-style1 .text-holder .meta-info ul li:last-child {
    margin-right: 0;
}

.single-blog-style1 .text-holder .meta-info ul li span:before {
    position: relative;
    top: -2px;
    display: inline-block;
    padding-right: 6px;
    color: var(--customnewbg-themecolor);
    font-size: 14px;
    font-weight: 700;
}

.single-blog-style1 .text-holder .meta-info ul li a {
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .text-holder .meta-info ul li a:hover {
    color: var(--customnewbg-themecolor);
}



.single-blog-style1--in-style2 {}

.single-blog-style1--in-style2 .category-box {
    top: 30px;
    bottom: auto;
}

.single-blog-style1--in-style2 .text-holder {
    padding: 98px 30px 0px;
}


.blog-style1-img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-style1-img-box img {
    width: 100%;
}


/*** 
=============================================
    Blog Page One Css
=============================================
***/
.blog-page-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 110px;
    z-index: 10;
}



/*** 
=============================================
    Blog Page Two Css
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 110px;
    z-index: 10;
}


.single-blog-style2 {
    position: relative;
    display: block;
    padding-left: 300px;
    min-height: 275px;
    margin-bottom: 30px;
}

.single-blog-style2__img-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    min-height: 275px;
}

.single-blog-style2__img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #000000;
}

.single-blog-style2__img-holder .inner img {
    width: 100%;
    opacity: 1;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
}

.single-blog-style2:hover .single-blog-style2__img-holder .inner img {
    opacity: 0.90;
}



.single-blog-style2__text-holder {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    padding: 30px 0 0;
    min-height: 275px;
}

.single-blog-style2__text-holder .top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 30px;
}


.single-blog-style2__text-holder .top .category-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--customnewbg-themecolor);
    padding: 0 20px;
    z-index: 3;
}

.single-blog-style2__text-holder .top .category-box .dot-box {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background: #ffffff;
    transform: rotate(45deg);
}

.single-blog-style2__text-holder .top .category-box p {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.single-blog-style2__text-holder .top .share-btn {
    position: relative;
    display: block;
}

.single-blog-style2__text-holder .top .share-btn a {
    position: relative;
    display: inline-block;
    color: #a0a0a0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style2__text-holder .top .share-btn a span:before {
    position: relative;
    display: inline-block;
    padding-right: 7px;
}

.single-blog-style2__text-holder .top .share-btn a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style2__text-holder .blog-title {
    position: relative;
    display: block;
    padding: 0 30px;
    font-size: 22px;
    line-height: 30px;
    margin-top: 24px;
    margin-bottom: 15px;
}

.single-blog-style2__text-holder .blog-title a {
    color: var(--thm-black);
}

.single-blog-style2__text-holder .blog-title a:hover {
    color: var(--customnewbg-themecolor);
}



.single-blog-style2__text-holder .text {
    position: relative;
    display: block;
    padding: 0 30px;
    padding-bottom: 22px;
}

.single-blog-style2__text-holder .text p {
    margin: 0;
}



.single-blog-style2__text-holder .bottom-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #ede8e6;
    padding: 13px 30px 14px;
}

.single-blog-style2__text-holder .bottom-box .btn-box {
    position: relative;
    display: block;
}

.single-blog-style2__text-holder .bottom-box .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-blog-style2__text-holder .bottom-box .btn-box a span:before {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--customnewbg-themecolor);
}

.single-blog-style2__text-holder .bottom-box .btn-box a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style2__text-holder .bottom-box .meta-info {
    position: relative;
    display: block;
}

.single-blog-style2__text-holder .bottom-box .meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style2__text-holder .bottom-box .meta-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
    line-height: 30px;
}

.single-blog-style2__text-holder .bottom-box .meta-info ul li:last-child {
    margin-right: 0;
}

.single-blog-style2__text-holder .bottom-box .meta-info ul li span:before {
    position: relative;
    top: -2px;
    display: inline-block;
    padding-right: 8px;
    color: var(--customnewbg-themecolor);
    font-size: 14px;
    font-weight: 700;
}

.single-blog-style2__text-holder .bottom-box .meta-info ul li a {
    color: #a0a0a0;
    font-size: 16px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style2__text-holder .bottom-box .meta-info ul li a:hover {
    color: var(--customnewbg-themecolor);
}



/*** 
=============================================
    Sidebar Css
=============================================
***/
.thm-sidebar-box {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.single-sidebar-box {
    position: relative;
    display: block;
    margin-top: 50px;
}

.sidebar-search-box {
    position: relative;
    display: block;
}

.sidebar-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #ede8e6;
    color: #777777;
    font-size: 17px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button {
    position: absolute;
    top: 7px;
    right: 7px;
    bottom: 7px;
    width: 46px;
    height: 46px;
    color: var(--customnewbg-themecolor);
    font-size: 16px;
    line-height: 46px;
    background: rgba(var(--customnewbg-themecolor-rgb), .05);
    text-align: center;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.sidebar-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.sidebar-search-box .search-form input[type="text"]:focus+button,
.sidebar-search-box .search-form button:hover {
    color: var(--thm-black);
}

.sidebar-search-box .search-form input::-webkit-input-placeholder {
    color: #777777;
}

.sidebar-search-box .search-form input:-moz-placeholder {
    color: #777777;
}

.sidebar-search-box .search-form input::-moz-placeholder {
    color: #777777;
}

.sidebar-search-box .search-form input:-ms-input-placeholder {
    color: #777777;
}



.sidebar-title {
    position: relative;
    display: flex;
    align-items: center;
    top: -2px;
    padding-bottom: 34px;
}

.sidebar-title .dot-box {
    position: relative;
    display: block;
    background-color: var(--customnewbg-themecolor);
    width: 14px;
    height: 12px;
    margin-right: 10px;
    transform: rotate(-60deg) skew(-30deg, 0deg);
}

.sidebar-title h3 {
    position: relative;
    color: var(--thm-black);
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
}


.sidebar-categories-box {
    position: relative;
    display: block;
}

.sidebar-categories-box li {
    position: relative;
    display: block;
    margin-bottom: 2px;
}

.sidebar-categories-box li:last-child {
    margin-bottom: 0;
}

.sidebar-categories-box li a {
    position: relative;
    display: block;
    color: #777777;
    font-size: 17px;
    font-weight: 500;
    line-height: 48px;
    text-transform: capitalize;
    border: 1px solid #ede8e6;
    padding-left: 19px;
    padding-right: 19px;
    font-family: var(--thm-font);
    letter-spacing: 0.0em;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar-categories-box li a:after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: 0px;
    background: var(--customnewbg-themecolor);
    transform: perspective(400px) scaleX(0);
    transform-origin: left;
    transition: all 600ms ease 100ms;
    z-index: -1;
}

.sidebar-categories-box li a:hover:after {
    transform: perspective(400px) scaleX(1.0);
    transform-origin: right;
}

.sidebar-categories-box li:hover a {
    color: #ffffff;
    padding-left: 22px;
}

.sidebar-categories-box li a span {
    position: relative;
    display: inline-block;
    float: right;
    padding-left: 17px;
}

.sidebar-categories-box li a span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 20px 0;
}



.sidebar-blog-post {
    position: relative;
    display: block;
}

.sidebar-blog-post ul {
    position: relative;
    display: block;
}

.sidebar-blog-post ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #ede8e6;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.sidebar-blog-post ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.sidebar-blog-post ul li .inner {
    position: relative;
    display: block;
    padding-left: 70px;
    min-height: 70px;
}

.sidebar-blog-post ul li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    background-color: var(--thm-bg);
}

.sidebar-blog-post ul li .img-box img {
    width: 100%;
}

.sidebar-blog-post ul li .img-box .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--customnewbg-themecolor-rgb), .80);
    border-radius: 0%;
    opacity: 0;
    transform: perspective(0px) scale(0);
    transform-origin: center;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sidebar-blog-post ul li:hover .img-box .overlay-content {
    opacity: 1;
    transform: perspective(400px) scale(1.0);
    transition: all 0.3s ease-in-out 0.3s;
}

.sidebar-blog-post ul li .img-box .overlay-content a {
    color: #ffffff;
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post ul li .title-box {
    position: relative;
    display: block;
    padding-left: 20px;
    min-height: 70px;
}

.sidebar-blog-post ul li .title-box .post-date {
    position: relative;
    color: #a0a0a0;
    font-size: 16px;
    line-height: 0;
    font-weight: 700;
}

.sidebar-blog-post ul li .title-box .post-date span:before {
    position: relative;
    display: inline-block;
    color: var(--customnewbg-themecolor);
    padding-right: 3px;
    font-weight: 700;
    font-size: 15px;
}

.sidebar-blog-post ul li .title-box h4 {
    position: relative;
    top: 5px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    margin: 10px 0 0;
}

.sidebar-blog-post ul li .title-box h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post ul li .title-box h4 a:hover {
    color: var(--customnewbg-themecolor);
}



.popular-tag-box {
    position: relative;
    display: block;
    margin-top: -5px;
}

.single-sidebar-box .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
}

.single-sidebar-box .popular-tag li {
    position: relative;
    display: block;
    float: left;
    padding: 0 10px 10px;
}

.single-sidebar-box .popular-tag li a {
    position: relative;
    display: block;
    color: #777777;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.single-sidebar-box .popular-tag li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: var(--customnewbg-themecolor);
    transform: perspective(400px) translateY(-100%) scale(0, 1);
    transform-style: preserve-3d;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
}

.single-sidebar-box .popular-tag li a:hover:before {
    transform: perspective(400px) translateY(0px) scale(1, 1);
    transform-origin: left center;
}

.single-sidebar-box .popular-tag li:hover a {
    color: var(--customnewbg-themecolor);
}




.sidebar-author-box {
    position: relative;
    display: block;
    padding: 45px 20px 50px;
    background-color: rgba(var(--customnewbg-themecolor-rgb), .05);
}

.sidebar-author-box .top {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.sidebar-author-box .top h3 {
    font-size: 22px;
    margin: 0 0 6px;
}

.sidebar-author-box .top p {
    font-weight: 500;
    margin: 0;
}

.sidebar-author-box .img-holder {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto 23px;
}

.sidebar-author-box .img-holder img {
    width: 100%;
    border-radius: 50%;
}


.sidebar-author-box .info {
    position: relative;
    display: block;
}

.sidebar-author-box .info ul {
    position: relative;
    display: block;
}

.sidebar-author-box .info ul li {
    position: relative;
    display: block;
    margin-bottom: 4px;
}

.sidebar-author-box .info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-author-box .info ul li a {
    color: #777777;
    font-size: 17px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-author-box .info ul li a:hover {
    color: var(--customnewbg-themecolor);
}

.sidebar-author-box .social-links {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 12px;
}

.sidebar-author-box .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.sidebar-author-box .social-links li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.sidebar-author-box .social-links li:before {
    position: absolute;
    right: 0;
    top: 7px;
    width: 1px;
    height: 10px;
    background: #ffffff;
    opacity: 0.30;
    content: "";
}

.sidebar-author-box .social-links li:last-child::before {
    display: none;
}

.sidebar-author-box .social-links li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: #3b5998;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
}

.sidebar-author-box .social-links li.linkedin a {
    background: #0077b5;
}

.sidebar-author-box .social-links li.instagram a {
    background: #e84c59;
}



.sidebar-subscribe-content-box {
    position: relative;
    display: block;
    min-height: 400px;
    margin-top: 34px;
    z-index: 1;
}

.sidebar-subscribe-content-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    border: 3px solid var(--customnewbg-themecolor);
    z-index: -1;
}

.sidebar-subscribe-content-box-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(18, 18, 18);
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.9472163865546218) 0%, rgba(18, 18, 18, 0.9023984593837535) 23%, rgba(18, 18, 18, 0.5494572829131652) 53%, rgba(18, 18, 18, 0) 70%);
}

.sidebar-subscribe-content-box .inner-content {
    position: relative;
    display: block;
    padding: 204px 20px 0;
}

.sidebar-subscribe-content-box .inner-content h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 17px;
}


.sidebar-subscribe-form {
    position: relative;
    display: block;
}

.sidebar-subscribe-form input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 0px solid #e5e5e5;
    color: var(--thm-gray);
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 60px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.sidebar-subscribe-form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    padding-left: 0;
    padding-right: 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-subscribe-content-box p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    margin: 16px 0 0;
}



/*** 
=============================================
    Blog Page Three Css
=============================================
***/
.blog-page-three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 110px;
    z-index: 10;
}

.blog-page-three__content {
    position: relative;
    display: block;
}

.blog-page-three__content .single-blog-style1 .text-holder h3 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 15px;
}



/*** 
=============================================
    Blog Details Css
=============================================
***/
.blog-details-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 110px;
    z-index: 10;
}

.blog-details-page__content {
    position: relative;
    display: block;
}


.blog-details-page__content__inner {
    position: relative;
    display: block;
}

.blog-details-page__img-box {
    position: relative;
    display: block;
}

.blog-details-page__img-box img {
    width: 100%;
}


.blog-details-page__top-text {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-top: 53px;
}

.blog-details-page__top-text .big-text {
    position: absolute;
    top: 7px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--customnewbg-themecolor);
    border-radius: 50%;
}

.blog-details-page__top-text .big-text h2 {
    position: relative;
    top: -4px;
    color: #ffffff;
    font-size: 60px;
    font-weight: 500;
    line-height: 36px;
}

.blog-details-page__top-text .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.blog-details-page__top-text .text p {
    margin: 0;
}



.blog-details-page__text-1 {
    position: relative;
    display: block;
    padding-bottom: 36px;
}



.blog-details-page__quote-box {
    position: relative;
    display: block;
    border-top: 4px solid var(--customnewbg-themecolor);
    padding-top: 33px;
}

.blog-details-page__quote-box .inner {
    position: relative;
    display: block;
    padding-left: 100px;
    min-height: 70px;
}

.blog-details-page__quote-box .icon {
    position: absolute;
    top: 6px;
    left: 0;
}

.blog-details-page__quote-box .icon span {
    position: relative;
    display: block;
    line-height: 0;
}

.blog-details-page__quote-box .icon span:before {
    position: relative;
    display: inline-block;
    font-size: 80px;
    line-height: 60px;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #f9f5f3;
}

.blog-details-page__quote-box .inner-title {
    position: relative;
    display: block;
    min-height: 70px;
}

.blog-details-page__quote-box .inner-title h3 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 500;
}


.blog-details-page__text-2 {
    position: relative;
    display: block;
    padding: 27px 0 32px;
}

.blog-details-page__text-2 span {
    color: var(--customnewbg-themecolor);
    font-weight: 500;
}



.blog-details-page__text-3 {
    position: relative;
    display: block;
    padding-bottom: 48px;
}

.blog-details-page__text-3 h3 {
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 26px;
}

.blog-details-page__text-3 .inner-text {
    position: relative;
    display: block;
}

.blog-details-page__text-3 .inner-text p {
    margin: 0;
}

.blog-details-page__text-3 .inner-text p span {
    color: var(--customnewbg-themecolor);
    font-weight: 500;
}

.blog-details-page__text-3 .inner-text p+p {
    margin: 25px 0 0;
}



.blog-details-page__text-4 {
    position: relative;
    display: block;
}

.blog-details-page__text-4 h3 {
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 26px;
}

.blog-details-page__text-4 .inner-text {
    position: relative;
    display: block;
}

.blog-details-page__text-4 .inner-text p {
    margin: 0;
}



.blog-details-page__text-5 {
    position: relative;
    display: block;
    margin-top: 29px;
    padding-left: 30px;
}

.blog-details-page__text-5:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 9px;
    width: 4px;
    background-color: var(--customnewbg-themecolor);
}

.blog-details-page__text-5 .inner-title {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.blog-details-page__text-5 .inner-title .dot-box {
    position: relative;
    display: block;
    background-color: var(--customnewbg-themecolor);
    width: 14px;
    height: 12px;
    margin-right: 10px;
    transform: rotate(-60deg) skew(-30deg, 0deg);
}

.blog-details-page__text-5 .inner-title h3 {
    font-size: 22px;
    line-height: 30px;
}

.blog-details-page__text-5 .inner-text {
    position: relative;
    display: block;
}

.blog-details-page__text-5 .inner-text p {
    margin: 0;
}

.blog-details-page__text-5 .inner-text ul {
    position: relative;
    display: block;
    padding-top: 23px;
}

.blog-details-page__text-5 .inner-text ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    line-height: 30px;
}

.blog-details-page__text-5 .inner-text ul li:before {
    content: "\ea8c";
    font-family: 'icomoon' !important;
    position: absolute;
    left: 0;
    color: var(--customnewbg-themecolor);
}

.blog-details-page__text-5 .inner-text ul li+li {
    margin-top: 7px;
}



.blog-details-page__text-6 {
    position: relative;
    display: block;
    padding-top: 47px;
}

.blog-details-page__text-6 h3 {
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 26px;
}

.blog-details-page__text-6 p {
    margin: 0;
}



.blog-details-page__tag-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 110px;
    margin-top: 47px;
    margin-bottom: 54px;
}

.blog-details-page__tag-box .inner-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
}

.blog-details-page__tag-box .inner-title h3 {
    color: var(--thm-black);
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.blog-details-page__tag-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-details-page__tag-box ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 5px;
    color: #777777;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
}

.blog-details-page__tag-box ul li:last-child {
    margin-right: 0;
}



.blog-details-page__author-box {
    position: relative;
    display: block;
    padding: 40px 0;
    border-top: 1px solid #ede8e6;
    border-bottom: 1px solid #ede8e6;
}

.blog-details-page__author-box__inner {
    position: relative;
    display: block;
    padding-left: 100px;
}

.blog-details-page__author-box__inner .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}

.blog-details-page__author-box__inner .img-box img {
    width: 100%;
}

.blog-details-page__author-box__inner .text {
    position: relative;
    display: block;
    padding-left: 30px;
}

.blog-details-page__author-box__inner .text h3 {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 18px;
}

.blog-details-page__author-box__inner .text p {
    margin: 0;
}



.blog-details-page__prev-next-option {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 55px;
}

.blog-details-page__prev-next-option .single-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
}

.blog-details-page__prev-next-option .single-box.right {
    display: flex;
    flex-direction: row-reverse;
    text-align: right;
}

.blog-details-page__prev-next-option .single-box .icon-box {
    position: relative;
    display: block;
}

.blog-details-page__prev-next-option .single-box.left .icon-box a {
    transform: rotate(180deg);
}

.blog-details-page__prev-next-option .single-box .icon-box a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #ede8e6;
    color: #a0a0a0;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-page__prev-next-option .single-box:hover .icon-box a {
    color: #ffffff;
    background-color: var(--customnewbg-themecolor);
    border-color: var(--customnewbg-themecolor);
}


.blog-details-page__prev-next-option .single-box .title-box {
    position: relative;
    display: block;
}

.blog-details-page__prev-next-option .single-box.left .title-box {
    padding-left: 20px;
}

.blog-details-page__prev-next-option .single-box.right .title-box {
    padding-right: 20px;
}

.blog-details-page__prev-next-option .single-box .title-box h3 {
    font-size: 20px;
    line-height: 30px;
}

.blog-details-page__prev-next-option .single-box .title-box h3 a {
    color: #777777;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-page__prev-next-option .single-box .title-box h3 a:hover {
    color: var(--customnewbg-themecolor);
}



/*** 
=============================================
   comments Box Css
=============================================
***/
.comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 72px;
}

.comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 13px;
}

.comment-box .inner-title h2 {
    font-size: 30px;
    line-height: 30px;
}


.comment-box .outer-box {
    position: relative;
    display: block;
}

.comment-box .single-comment {
    position: relative;
    display: block;
    padding-top: 21px;
    margin-bottom: 30px;
}

.comment-box .single-comment.marginleft30 {
    margin-left: 30px;
}

.comment-box .single-comment .inner {
    position: relative;
    display: block;
    background-color: #ffffff;
    border: 1px solid #ede8e6;
    padding: 40px 30px 36px;
}

.comment-box .single-comment-box {
    position: relative;
    display: block;
    padding-left: 80px;
    min-height: 80px;
}

.comment-box .single-comment-box .img-holder {
    position: absolute;
    left: 0;
    top: 0px;
    width: 80px;
    height: 80px;
}

.comment-box .single-comment-box .img-holder img {
    width: 100%;
}

.comment-box .single-comment-box .text-holder {
    position: relative;
    display: block;
    padding-left: 30px;
    min-height: 80px;
}

.comment-box .single-comment-box .text-holder .top {
    position: relative;
    display: block;
    top: -3px;
}

.comment-box .single-comment-box .text-holder .top h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.comment-box .single-comment-box .text-holder .top h3 span {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    color: var(--customnewbg-themecolor);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.comment-box .single-comment-box .text-holder .text {
    position: relative;
    display: block;
    padding-top: 9px;
}

.comment-box .single-comment-box .text-holder .text p {
    margin: 0;
}

.comment-box .single-comment .reply {
    position: absolute;
    top: 0px;
    right: 30px;
    z-index: 2;
}

.comment-box .single-comment .reply a {
    position: relative;
    display: inline-block;
    background: #ffffff;
    border: 1px solid #ede8e6;
    padding: 10px 25px 10px;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.comment-box .single-comment .reply a:hover {
    color: #ffffff;
    border-color: var(--customnewbg-themecolor);
    background-color: var(--customnewbg-themecolor);
}



/*** 
=============================================
   Add Comment Box Css
=============================================
***/
.add-comment-box {
    position: relative;
    display: block;
    padding: 56px 60px 60px;
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.add-comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.add-comment-box .inner-title h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 8px;
}

.add-comment-box .inner-title p {
    margin: 0;
}

.add-comment-box #add-comment-form {
    position: relative;
    display: block;
}

.add-comment-box #add-comment-form .input-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.add-comment-box #add-comment-form .input-box .field-label {
    position: relative;
    display: block;
    padding-bottom: 9px;
}

.add-comment-box #add-comment-form .input-box .field-label p {
    margin: 0;
}

.add-comment-box #add-comment-form input[type="text"],
.add-comment-box #add-comment-form input[type="email"],
.add-comment-box #add-comment-form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ede8e6;
    width: 100%;
    height: 60px;
    color: #777777;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    padding: 0 30px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.add-comment-box #add-comment-form textarea {
    height: 120px;
    padding: 14px 30px;
}

.add-comment-box #add-comment-form input[type="text"]:focus {
    border-color: var(--customnewbg-themecolor);
}

.add-comment-box #add-comment-form input[type="email"]:focus {
    border-color: var(--customnewbg-themecolor);
}

.add-comment-box #add-comment-form textarea:focus {
    border-color: var(--customnewbg-themecolor);
}

.add-comment-box #add-comment-form .button-box {
    position: relative;
    display: block;
    padding-top: 20px;
    line-height: 0;
}

.add-comment-box #add-comment-form .button-box button {
    padding-left: 50px;
    padding-right: 50px;
}




/*** 
=============================================
    Blog Style2 Area Css
=============================================
***/
.blog-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 70px;
    z-index: 9;
}

.single-blog-style3 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.single-blog-style3 .img-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.single-blog-style3 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.single-blog-style3 .img-holder .inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    transform: scale(0.9);
    transform-origin: bottom;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    border-radius: 15px;
    background-image: -moz-linear-gradient(90deg, rgb(21, 54, 58) 0%, rgba(21, 54, 58, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(21, 54, 58) 0%, rgba(21, 54, 58, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(21, 54, 58) 0%, rgba(21, 54, 58, 0) 100%);
}

.single-blog-style3:hover .img-holder .inner:before {
    opacity: 1.0;
    transform: scale(1.0);
    transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-blog-style3 .img-holder .inner img {
    width: 100%;
}

.single-blog-style3:hover .img-holder .inner img {
    transform: scale(1.1) rotate(1deg);
}

.single-blog-style3 .img-holder .overlay-content {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    transform: perspective(400px) translateY(0px) scale(0);
    transform-style: preserve-3d;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
}

.single-blog-style3:hover .img-holder .overlay-content {
    transform: perspective(400px) translateY(0px) scale(1);
    transform-origin: left center;
}

.single-blog-style3 .img-holder .overlay-content ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style3 .img-holder .overlay-content ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
}

.single-blog-style3 .img-holder .overlay-content ul li:last-child {
    margin-right: 0;
}

.single-blog-style3 .img-holder .overlay-content ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--thm-gray);
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style3 .img-holder .overlay-content ul li a:hover {
    color: #ffffff;
    background-color: var(--customnewbg-themecolor);
}



.single-blog-style3 .text-holder {
    position: relative;
    display: block;
    padding-top: 29px;
}

.single-blog-style3 .text-holder h3 {
    font-size: 24px;
    line-height: 30px;
}

.single-blog-style3 .text-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style3 .text-holder h3 a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style3 .text-holder .text {
    position: relative;
    display: block;
    padding: 16px 0 22px;
    border-bottom: 1px solid #dee5e4;
}

.single-blog-style3 .text-holder .text p {
    margin: 0;
}


.single-blog-style3 .text-holder .meta-info {
    position: relative;
    display: block;
    padding-top: 21px;
    padding-bottom: 15px;
}

.single-blog-style3 .text-holder .meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style3 .text-holder .meta-info ul li {
    position: relative;
    display: block;
    float: left;
    padding-right: 25px;
    margin-right: 20px;
    line-height: 30px;
}

.single-blog-style3 .text-holder .meta-info ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.single-blog-style3 .text-holder .meta-info ul li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 6px;
    height: 6px;
    background-color: #cdd4d3;
    transform: rotate(45deg);
    margin: 12px 0;
}

.single-blog-style3 .text-holder .meta-info ul li:last-child:before {
    display: none;
}

.single-blog-style3 .text-holder .meta-info ul li a {
    color: #636d7c;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style3 .text-holder .meta-info ul li a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style3 .text-holder .category-box {
    position: relative;
    display: inline-flex;
    background-color: #f1f6f5;
    padding: 0 20px;
    border-radius: 20px;
}

.single-blog-style3 .text-holder .category-box p {
    color: var(--thm-black);
    font-size: 17px;
    line-height: 40px;
    font-weight: 700;
    margin: 0;
    font-family: var(--thm-font-3);
}



/*** 
=============================================
    Blog Style4 Area Css
=============================================
***/
.blog-style4-area {
    position: relative;
    display: block;
    background-color: #f9f8ff;
    padding: 110px 0 80px;
    z-index: 10;
}

.single-blog-style4 {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.single-blog-style4__inner {
    position: relative;
    display: block;
    padding: 30px 30px 0px;
}

.single-blog-style4 .category-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: #f5f4fb;
    padding: 0 20px;
    border-radius: 6px;
    z-index: 1;
}

.single-blog-style4 .category-box .dot-box {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background: var(--customnewbg-themecolor);
    transform: rotate(45deg);
}

.single-blog-style4 .category-box p {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    color: #727078;
    font-size: 14px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.single-blog-style4 .blog-title {
    font-size: 20px;
    line-height: 30px;
    margin-top: 23px;
    margin-bottom: 15px;
}

.single-blog-style4 .blog-title a {
    color: var(--thm-black);
}

.single-blog-style4 .blog-title a:hover {
    color: var(--customnewbg-themecolor);
}

.single-blog-style4 .text {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.single-blog-style4 .text p {
    margin: 0;
}



.single-blog-style4 .bottom-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #e9e8ed;
    padding: 14px 30px 15px;
}

.single-blog-style4 .bottom-box .btn-box {
    position: relative;
    display: block;
}

.single-blog-style4 .bottom-box .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-4);
}

.single-blog-style4 .bottom-box .btn-box a span:before {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--customnewbg-themecolor);
}

.single-blog-style4 .bottom-box .btn-box a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style4 .bottom-box .meta-info {
    position: relative;
    display: block;
}

.single-blog-style4 .bottom-box .meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style4 .bottom-box .meta-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
    line-height: 30px;
}

.single-blog-style4 .bottom-box .meta-info ul li:last-child {
    margin-right: 0;
}

.single-blog-style4 .bottom-box .meta-info ul li span:before {
    position: relative;
    top: -2px;
    display: inline-block;
    padding-right: 8px;
    color: var(--customnewbg-themecolor);
    font-size: 14px;
    font-weight: 700;
}

.single-blog-style4 .bottom-box .meta-info ul li a {
    color: #a6a4ad;
    font-size: 16px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4 .bottom-box .meta-info ul li a:hover {
    color: var(--customnewbg-themecolor);
}



/*** 
=============================================
    Blog Style6 Area Css
=============================================
***/
.blog-style6-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 110px;
}

.single-blog-style6 {
    position: relative;
    display: block;
}

.single-blog-style6 .img-holder {
    position: relative;
    display: block;
}

.single-blog-style6 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
}

.single-blog-style6 .img-holder .inner::before {
    position: absolute;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0%;
    content: '';
    background-color: rgba(0,0,0, .90);
    transform: scaleY(1.0);
    opacity: 0;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    z-index: 2;
}

.single-blog-style6:hover .img-holder .inner::before {
    opacity: 0.70;
    transform: scaleY(1.0);
}

.single-blog-style6 .img-holder img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
}

.single-blog-style6:hover .img-holder img {
    transform: scale(1.1) rotate(1deg);
}

.single-blog-style6 .category-box {
    position: absolute;
    top: 20px;
    left: 0px;
    display: flex;
    align-items: center;
    background-color: var(--customnewbg-themecolor);
    padding: 0 20px;
    z-index: 3;
    color: #fff;
}

.single-blog-style6 .category-box .dot-box {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background: #ffffff;
    transform: rotate(45deg);
}

.single-blog-style6 .category-box p {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}


.single-blog-style6 .text-holder {
    position: relative;
    display: block;
    padding-top: 26px;
}

.single-blog-style6 .text-holder .meta-info {
    position: relative;
    display: block;
}

.single-blog-style6 .text-holder .meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style6 .text-holder .meta-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 26px;
}

.single-blog-style6 .text-holder .meta-info ul li+li {
    padding-left: 30px;
    margin-left: 20px;
}

.single-blog-style6 .text-holder .meta-info ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--customnewbg-themecolor);
    border-radius: 50%;
}

.single-blog-style6 .text-holder .meta-info ul li:first-child:before {
    display: none;
}

.single-blog-style6 .text-holder .meta-info ul li span:before {
    position: relative;
    display: inline-block;
    padding-right: 8px;
    color: #a0a0a0;
    font-size: 16px;
    line-height: 18px;
}

.single-blog-style6 .text-holder .meta-info ul li a {
    color: #a0a0a0;
    font-size: 16px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style6 .text-holder .meta-info ul li a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style6 .text-holder h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 16px 0 22px;
}

.single-blog-style6 .text-holder h3 a {
    color:#000;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style6 .text-holder h3 a:hover {
    color: var(--customnewbg-themecolor);
}


.single-blog-style6 .text-holder .btns-box {
    position: relative;
    display: block;
    line-height: 0;
}

.single-blog-style6 .text-holder .btns-box a {
    color: #000;
    line-height: 38px;
    padding-left: 30px;
    padding-right: 30px;
    border: 2px solid #000;
    background-color: transparent;
}

.single-blog-style6 .text-holder .btns-box a:hover {
    color: #ffffff;
    border-color: var(--customnewbg-themecolor);
}


.blog-carousel-style6 {}

.blog-carousel-style6.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -110px;
    right: 0;
}

.blog-carousel-style6.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    width: 50px;
    height: 50px;
    background-color: #f2efee;
    border-radius: 50%;
}

.blog-carousel-style6.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    margin-right: 10px;
}




/*** 
=============================================
    Blog Style7 Area Css
=============================================
***/
.blog-style7-area {
    position: relative;
    display: block;
    background: #f8f6f3;
    padding: 110px 0 70px;
}


.single-blog-style7 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.single-blog-style7 .img-holder {
    position: relative;
    display: block;
}

.single-blog-style7 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--customnewbg-themecolor);
    border-radius: 7px;
}

.single-blog-style7 .img-holder .inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    transform: scale(0.9);
    transform-origin: bottom;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background-color: #000000;
}

.single-blog-style7:hover .img-holder .inner:before {
    opacity: 0.8;
    transform: scale(1.0);
    transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-blog-style7 .img-holder .inner img {
    width: 100%;
}

.single-blog-style7:hover .img-holder .inner img {
    transform: scale(1.1) rotate(1deg);
}

.single-blog-style7 .img-holder .date-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 65px;
    height: 65px;
    background-color: var(--customnewbg-themecolor);
    border-bottom-right-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
     color: #ffffff;
}

.single-blog-style7 .img-holder .date-box h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 6px;
}

.single-blog-style7 .img-holder .date-box h5 {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
}


.single-blog-style7 .text-holder {
    position: relative;
    display: block;
    padding-top: 21px;
}

.single-blog-style7 .text-holder .category-box {
    position: relative;
    display: block;
    padding-bottom: 5px;
}

.single-blog-style7 .text-holder .category-box p {
    color: #a19e9b;
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
}

.single-blog-style7 .text-holder h3 {
    font-size: 18px;
    line-height: 28px;
}

.single-blog-style7 .text-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style7 .text-holder h3 a:hover {
    color: var(--customnewbg-themecolor);
}

.single-blog-style7 .text-holder .author-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.single-blog-style7 .text-holder .author-info .img-box {
    width: 40px;
    overflow: hidden;
    border-radius: 50%;
}

.single-blog-style7 .text-holder .author-info .img-box img {
    width: 100%;
}

.single-blog-style7 .text-holder .author-info .text-box {
    position: relative;
    flex: 1;
    margin-left: 15px;
}

.single-blog-style7 .text-holder .author-info .text-box h5 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}



/*** 
=============================================
    Blog Style8 Area Css
=============================================
***/
.blog-style8-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0 70px;
}

.blog-style8-title-box {
    position: relative;
    display: block;
    padding-top: 110px;
    padding-bottom: 200px;
    z-index: 1;
}

.blog-style8-title-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1000000px;
    bottom: 0;
    right: -200px;
    background-color: #f9f5f3;
    z-index: -1;
}

.blog-style8-title-box .sec-title h2 {
    font-size: 36px;
}

.blog-style8-title-box .sec-title {
    padding-bottom: 32px;
}

.blog-style8-title-box .btns-box {
    position: relative;
    display: block;
    line-height: 0;
}




.blog-style8-content-box {
    position: relative;
    display: block;
    padding-top: 110px;
    z-index: 5;
}

.blog-style8-content-box .single-blog-style2__text-holder {
    box-shadow: none;
    border: 1px solid #ede8e6;
    padding: 28px 0 0;
}

.blog-style8-content-box .slick-arrow {
    position: absolute;
    top: -110px;
    right: 0;
    width: 55px;
    height: 55px;
    color: #a0a0a0;
    background: #ffffff;
    border: 1px solid #ede8e6;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0px;
    line-height: 53px;
    border-radius: 0px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.blog-style8-content-box .slick-arrow.next-btn {
    right: 75px;
    transform: rotate(180deg);
}

.blog-style8-content-box .slick-arrow.prev-btn {}

.blog-style8-content-box .slick-dots {
    display: none !important;
}




/*** 
=============================================
    kindergarten Blog Page One Css
=============================================
***/
.kindergarten-blog-page-one {
    position: relative;
    display: block;
    padding: 110px 0 110px;
}



/*** 
=============================================
    kindergarten Blog Page Two Css
=============================================
***/
.kindergarten-blog-page-two {
    position: relative;
    display: block;
    padding: 110px 0 110px;
}

.kindergarten-blog-page-two .single-blog-style2__text-holder .blog-title {
    position: relative;
    display: block;
    padding: 0 30px;
    font-size: 20px;
}



/*** 
=============================================
    kindergarten Blog Page Three Css
=============================================
***/
.kindergarten-blog-page-three {
    position: relative;
    display: block;
    padding: 110px 0 110px;
}



/*** 
=============================================
    marketplace Blog Page One Css
=============================================
***/
.marketplace-blog-page-one {
    position: relative;
    display: block;
    padding: 110px 0 110px;
}



/*** 
=============================================
    Photography Blog Page One Css
=============================================
***/
.photography-blog-page-one {
    position: relative;
    display: block;
    padding: 110px 0 110px;
}

.photography-blog-page-one .single-blog-style6 {
    margin-bottom: 40px;
}



/*** 
=============================================
    Photography Blog Page Two Css
=============================================
***/
.photography-blog-page-two {
    position: relative;
    display: block;
    padding: 110px 0 110px;
}

.photography-blog-page-two .single-blog-style2__text-holder .blog-title {
    font-size: 18px;
    line-height: 26px;
}



/*** 
=============================================
    Cooking Blog Page One Css
=============================================
***/
.cooking-blog-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 110px;
}



/*** 
=============================================
    Cooking Blog Page Two Css
=============================================
***/
.cooking-blog-page-two {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 110px;
}

.cooking-blog-page-two .single-blog-style7 .text-holder h3 {
    font-size: 22px;
    line-height: 32px;
}



/*** 
=============================================
    Cooking Blog Page Three Css
=============================================
***/
.cooking-blog-page-three {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 110px;
}

.cooking-blog-page-three .single-blog-style2__text-holder .blog-title {
    font-size: 20px;
    line-height: 30px;
}



/*** 
=============================================
    quizzes Blog Page one Css
=============================================
***/
.quizzes-blog-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 110px;
}

.quizzes-blog-page-one-gray-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background-color: #f2f6f5;
    z-index: -1;
}

.quizzes-blog-page-one .single-blog-style1 .category-box p {
    color: var(--thm-black);
}

.quizzes-blog-page-one .single-blog-style1 .category-box .dot-box {
    background: var(--thm-black);
}



/*** 
=============================================
    quizzes Blog Page Two Css
=============================================
***/
.quizzes-blog-page-two {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 110px;
}

.quizzes-blog-page-two-gray-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #f2f6f5;
    z-index: -1;
}

.quizzes-blog-page-two .single-blog-style2__text-holder .top .category-box p {
    color: var(--thm-black);
}

.quizzes-blog-page-two .single-blog-style2__text-holder .top .category-box .dot-box {
    background: var(--thm-black);
}

.quizzes-blog-page-two .sidebar-categories-box li a {
    background: #fff;
}



/*** 
=============================================
    quizzes Blog Page Three Css
=============================================
***/
.quizzes-blog-page-three {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 110px;
}

.quizzes-blog-page-three-gray-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #f2f6f5;
    z-index: -1;
}

.quizzes-blog-page-three .single-blog-style1 .category-box p {
    color: var(--thm-black);
}

.quizzes-blog-page-three .single-blog-style1 .category-box .dot-box {
    background: var(--thm-black);
}

.quizzes-blog-page-three .sidebar-categories-box li a {
    background: #fff;
}




/*** 
=============================================
    quizzes Blog Page Four Css
=============================================
***/
.quizzes-blog-page-four {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 110px;
}

.quizzes-blog-page-four-gray-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #f2f6f5;
    z-index: -1;
}

.quizzes-blog-page-four .sidebar-categories-box li a {
    background: #fff;
}

.quizzes-blog-page-four .blog-details-page__text-2 span {
    color: var(--thm-black);
}

.quizzes-blog-page-four .blog-details-page__text-3 .inner-text p span {
    color: var(--thm-black);
}

/*** 
=============================================
    Essentials Area Css
=============================================
***/
.essentials-area {
    position: relative;
    display: block;
    z-index: 10;
}

.essentials-area .auto-container {
    max-width: 1830px;
    padding: 0 15px;
}

.features-style1-content {
    position: relative;
    display: block;
    background: var(--customnewbg-themecolor);
    border-radius: 10px;
}
.iitstdent-viewrapper .features-style1-content{
     background: var(--cusnewwhite-color);
}
.iitstdent-viewrapper .single-features-style1 .text-box h2{
     color: #000;
}
.features-style1-content ul {
    position: relative;
    display: block;
    overflow: hidden;
}

/*.features-style1-content ul li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    padding: 40px 40px 40px;
}*/
.features-style1-content ul li {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 40px 40px 40px;
    padding: 35px 35px 30px;
}

.features-style1-content ul li:last-child {
    border-right: none;
}

.single-features-style1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-features-style1 .text-box {
    position: relative;
    display: block;
    width: 100%;
}

.single-features-style1 .text-box h2 {
    color: #ffffff;
    font-size: 25px;
    line-height: 34px;
    /*padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);*/
        font-size: 20px;
}

.single-features-style1 .text-box h2 a {
    color: #ffffff;
}

.single-features-style1 .text-box p {
    color: #d4d6e2;
    line-height: 27px;
    margin: 24px 0 0;
}

.single-features-style1 .text-box p span {
    color: #fff;
}

.single-features-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    min-width: 100px;
}

.single-features-style1 .img-box::before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: 50%;
    content: '';
    background-color: rgba(0,0,0, .90);
    transform: scale(0) rotate(90deg);
    opacity: 1;
    transition: all 500ms ease;
    z-index: 1;
}

.single-features-style1:hover .img-box::before {
    opacity: 1.0;
    transform: scale(1.0) rotate(0deg);
}



.single-features-style1 .img-box img {
    width: 100%;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-style1:hover .img-box img {
    opacity: 0.50;
}


.single-features-style1 .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.single-features-style1 .overlay-content a {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    background-color: var(--customnewbg-themecolor);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    line-height: 58px;
    text-align: center;
    opacity: 0;
    transform: scale(1.9) rotate(180deg);
    transition: all 500ms ease;
}

.single-features-style1:hover .overlay-content a {
    opacity: 1;
    transform: scale(1.0) rotate(90deg);
}

.single-features-style1 .overlay-content a:hover {
    color: var(--customnewbg-themecolor);
    background-color: #ffffff;
}




.essentials-content-box {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    margin-top: -70px;
}

.essentials-content-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.essentials-content-box ul li {
    position: relative;
    display: block;
    width: 25%;
    float: left;
    border-right: 1px solid #ede8e6;
}

.essentials-content-box ul li:last-child {
    border-right: none;
}

.single-essentials-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 45px 30px 38px;
}

.single-essentials-box .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.single-essentials-box .icon span::before {
    position: relative;
    display: inline-block;
    font-size: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-essentials-box:hover .icon span::before {
    transform: scale(1.1);
}

.single-essentials-box h3 {
    margin-top: 23px;
}

.single-essentials-box h3 a {
    color: #fff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-essentials-box h3 a:hover {
    color: var(--customnewbg-themecolor);
}

.sec-title-style8 {
    position: relative;
    display: block;
    /* margin-top: -9px; */
    padding-bottom: 30px;
}

.sec-title-style8 h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 600;
    color: #fff;
}

.sec-title-style8 h2 span {
    position: relative;
    display: inline-block;
    z-index: 1;color: #fff;
}

.sec-title-style8 h2 span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    right: 0;
    height: 5px;
    background-color: var(--thm-base);
    z-index: -1;
}

.sec-title-style8 p {
    margin: 12px 0 0;color: #fff;
}




@keyframes slide5 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -200px 0;
    }
}

@-webkit-keyframes slide5 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -200px 0;
    }
}

/*** 
=============================================
    Learning Categories Area Css
=============================================
***/
.learning-categories-area {
    position: relative;
    display: block;
    padding: 110px 0 80px;
    z-index: 1;
}


.single-learning-categories-item {
    position: relative;
    display: block;
    background-color: rgb(242, 246, 245);
    border-bottom-left-radius: 50px;
    padding: 40px 40px 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    overflow: hidden;
    margin-bottom: 30px;
}
.darklearn-box .single-learning-categories-item{
    background: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color);
}

.single-learning-categories-item .couning-box {
    position: absolute;
    bottom: -10px;
    right: 0;
    color: #ffffff;
    font-size: 200px;
    line-height: 160px;
    font-weight: 700;
    z-index: 1;
}

.single-learning-categories-item:hover {
    border-bottom-left-radius: 0px;
}

.single-learning-categories-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: rgb(144 119 100);
    background: rgb(225 98 5);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.22);
}

.single-learning-categories-item:hover::before {
    transform: scaleX(1.0);
}



.single-learning-categories-item__inner {
    position: relative;
    display: block;
    padding-left: 95px;
}

.single-learning-categories-item__inner .icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.single-learning-categories-item__inner .icon span {
    position: relative;
    display: block;
    line-height: 0;
}

.single-learning-categories-item__inner .icon span:before {
    color: var(--color-secondary);
    font-size: 60px;
    line-height: 55px;
}

.darklearn-box .single-learning-categories-item__inner .icon span:before{
    color: var(--cusnewwhite-color);
}
.darklearn-box .single-learning-categories-item:before{
    background: linear-gradient(90deg, #6b4930 0%,#6b4930 60%, #ffffff 60%, #ffffff 100%);
}
.single-learning-categories-item__inner .text {
    position: relative;
    display: block;
    z-index: 2;
}

.single-learning-categories-item__inner .text h3 {
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 19px;
}

.single-learning-categories-item__inner .text p {
    margin: 0 0 22px;margin: 0;
}

.single-learning-categories-item__inner .text a.readmore {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: var(--thm-base);
    color: var(--thm-primary);
    font-size: 20px;
}

.single-learning-categories-item__inner .text a.readmore:hover {
    color: #ffffff;
    background-color: var(--thm-primary);
}




.learning-categories-btn-box {
    position: relative;
    display: block;
    line-height: 0;
    float: right;
    padding-top: 34px;
}

.learning-categories-btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--thm-font-4);
}

.learning-categories-btn-box a span {}

.learning-categories-btn-box a span:before {
    position: relative;
    display: inline-block;
    padding-right: 9px;
    color: var(--thm-primary);
    font-size: 16px;
}
.keybenifit-wrap{
    height: auto;
}
.keybenifit-wrap .about-style8-content-two {
    position: relative;
    display: block;
    margin-top: 30px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    padding: 40px 40px 14px;
    height: 100%;
}
.keybenifit-wrap .statements-content-box__inner {
    position: relative;
    display: block;
}

.keybenifit-wrap .single-statements-item {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 25px;
}

.keybenifit-wrap .single-statements-item .icon {
    position: absolute;
    top: 9px;
    left: 2px;
    width: 14px;
    height: 10px;
    background-color: var(--customnewbg-themecolor);
    transform: skew(-20deg, 0deg) rotate(35deg);
}

.keybenifit-wrap .single-statements-item .text {
    position: relative;
    display: block;
}
.keybenifit-wrap  .sec-title h2 {
    color: var(--thm-black);
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
}
.keybenifit-wrap .single-statements-item .text h3 {
   /* font-size: 22px;
    line-height: 30px;
    margin: 0 0 10px;*/
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}

.keybenifit-wrap .single-statements-item .text p {
    margin: 0;
}
.keybenifit-wrap.keybenifit-darkwrap .about-style8-content-two{
        background-color: var(--customnewbg-themecolor);
        position: relative;
}
.keybenifit-wrap.keybenifit-darkwrap .single-statements-item .text h3{
    color: var(--cusnewwhite-color);
}
.keybenifit-wrap.keybenifit-darkwrap .single-statements-item .icon{
    background: var(--cusnewwhite-color);
}

=============================================
    Event Style1 Area Css
=============================================
***/
.event-style1-area.iitactivity {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 110px 0 110px;
    z-index: 10;
}

.iitactivity .event-style1-img-box {
    position: relative;
    display: block;
    margin-right: -40px;
}

.iitactivity .event-style1-img-box img {
    width: 100%;
}


.iitactivity .event-style1-content-box {
    position: relative;
    display: block;
    margin-left: -40px;
   box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
   border: 4px solid #fcbe25;
   border-radius: 10px;
}
.iitactivity-wrapper .iitactivity-row{
    justify-content: center;
    align-items: center;
}
.iitactivity .event-style1-content-box ul {
    position: relative;
    display: block;
}

.iitactivity .event-style1-content-box ul li {
    position: relative;
    display: block;
}

.iitactivity .event-style1-content-box ul li .overlay-icon {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    display: flex;
    align-items: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.iitactivity .event-style1-content-box ul li:hover .overlay-icon {
    left: -40px;
}

.iitactivity .event-style1-content-box ul li .overlay-icon span:before {
    position: relative;
    display: inline-block;
    color: var(--customnewbg-themecolor);
    font-size: 60px;
    transform: rotate(180deg);
}


.iitactivity .single-event-box-style1 {
    position: relative;
    display: block;
    padding-left: 100px;
    min-height: 100px;
    background-color: #ffffff;
}

.iitactivity .single-event-box-style1--style2 {
    background-color: #faf6f4;
}


.iitactivity .single-event-box-style1 .date-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    background-color: var(--customnewbg-themecolor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.iitactivity .single-event-box-style1--style2 .date-box {
    background-color: rgba(var(--customnewbg-themecolor-rgb), .95);
}



.iitactivity .single-event-box-style1 .date-box h2 {
    color: #fdf9f7;
    font-size: 60px;
    line-height: 48px;
}

.iitactivity .single-event-box-style1 .date-box p {
    color: #fdf9f7;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0 0;
}

.iitactivity .single-event-box-style1 .title-box {
    position: relative;
    min-height: 100px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.iitactivity .single-event-box-style1 .title-box .event-time {
    position: relative;
    display: flex;
    align-items: center;
}

.iitactivity .single-event-box-style1 .title-box .event-time span:before {
    position: relative;
    top: -1px;
    display: inline-block;
    padding-right: 10px;
    color: var(--customnewbg-themecolor);
    font-size: 16px;
}

.iitactivity .single-event-box-style1 .title-box .event-time p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.iitactivity .single-event-box-style1 .title-box h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 0;
}

.iitactivity .single-event-box-style1 .title-box h3 a {
    color: #000;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.iitactivity .single-event-box-style1 .title-box h3 a:hover {
    color: var(--customnewbg-themecolor);
}

.iitactivity .single-event-box-style1--style2 .date-box {
    background-color: rgba(var(--thm-base-rgb), .95);
}
.iitactivity-wrapper{
    /*background: #fff;
   box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15); 
   border: 5px solid #fcbe25;*/
}
.features-style1-content ul li.single-features-lastli{
    border-bottom: none;
}
/*** 
=====================================================
    Main Slider style
=====================================================
***/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider.style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
}

.main-slider .slide {
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-slider .slide .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: var(--thm-bg);
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    z-index: 1;
}

.main-slider .active .slide .image-layer {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.main-slider .content {
    position: relative;
    z-index: 11;
}

.main-slider .auto-container {
    position: relative;
}

.main-slider .slide {
    position: relative;
    display: block;
    padding-top: 256px;
    padding-bottom: 250px;
}

.main-slider .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}



.main-slider.style1 .content.middle {
    align-items: center;
}

.main-slider.style1 .slide .image-layer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: -moz-linear-gradient(-90deg, rgb(26, 26, 26) 0%, rgba(26, 26, 26, 0) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(26, 26, 26) 0%, rgba(26, 26, 26, 0) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(26, 26, 26) 0%, rgba(26, 26, 26, 0) 100%);
    z-index: -1;
}


.main-slider.style1 .slide .image-layer:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(26, 26, 26);
    background: linear-gradient(270deg, rgba(26, 26, 26, 0) 30%, rgba(26, 26, 26, 1) 100%, rgba(26, 26, 26, 1) 100%);
    opacity: 0.70;
    z-index: -1;
}




.main-slider .content .big-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .active .content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .content .big-title h2 {
    color: #ffffff;
    font-size: 80px;
    line-height: 1.1em;
    font-weight: 500;
    text-transform: capitalize;
}


.main-slider .content .text {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 23px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-80px);
    transform: perspective(400px) rotateY(0deg) translateX(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .active .content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .content .text p {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
}


.main-slider .content .btns-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    line-height: 0;
    margin-top: 41px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider .active .content .btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider .content .btns-box a {}

.main-slider .content .btns-box a.style2 {
    background-color: var(--thm-bg);
}

.main-slider .content .btns-box a+a {
    margin-left: 16px;
}


.main-slider .content .video-gallery-btns-box {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 50px;
    line-height: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider .active .content .video-gallery-btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
}

.main-slider .content .video-gallery-btns-box a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 30px;
    line-height: 0px;
}

.main-slider .content .video-gallery-btns-box p {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    margin: 0;
}

.main-slider .content .video-gallery-btns-box p a {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
}






/*=== Main Slider Nav Style=========*/
.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    right: 15%;
    height: 150px;
    line-height: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: all 500ms ease;
    z-index: 3;
}

.main-slider:hover .owl-theme .owl-nav {
    opacity: 1;
    transform: scaleX(1.0) translateY(-50%);
}

.main-slider .owl-theme .owl-nav .owl-prev,
.main-slider .owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    /*height: 70px;
    width: 70px;*/
    height: 50px;
    width: 50px;
    background: rgba(255, 255, 255, .20);
    border: 0px solid rgba(255, 255, 255, .20);
    border-radius: 0%;
    text-align: center;
    color: rgba(255, 255, 255, .20);
    font-size: 25px;
    line-height: 70px;    line-height: 50px;
    font-weight: 100;
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-theme .owl-prev span,
.main-slider .owl-theme .owl-next span {
    display: block;
}

.main-slider .owl-theme .owl-prev span:before {
    transition: all 100ms ease;
}

.main-slider .owl-theme .owl-nav .owl-prev {
    transform: rotate(180deg);
}

.main-slider .owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.main-slider .owl-theme .owl-nav .owl-prev:hover,
.main-slider .owl-theme .owl-nav .owl-next:hover {
    color: var(--thm-black);
    background: rgba(255, 255, 255, 1.0);
}

.banner-carousel .owl-dots {
    display: block;
}




.main-slider.nav-style2 .owl-theme .owl-nav {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0px;
    opacity: 1;
    line-height: 0;
    transform: scaleX(1.0) translateY(-50px);
    transition: all 500ms ease;
}

.main-slider.nav-style2 .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 20px;
    transform: rotate(90deg);
}

.main-slider.nav-style2 .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 20px;
    transform: rotate(-90deg);
}







/*===== Main Slider Dot Style ====*/
.main-slider .banner-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 0;
    right: 70px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 0;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    display: none;
}

.main-slider:hover .banner-carousel.owl-carousel .owl-dots {
    opacity: 1;
    transform: scaleX(1.0) translateX(0px);
}

.main-slider .banner-carousel.owl-carousel button.owl-dot {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 26px;
    background-color: transparent;
    border: 1px solid #ffffff;
    margin: 0px 10px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.main-slider .banner-carousel.owl-carousel button.owl-dot:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    bottom: 8px;
    right: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: scale(1.0);
    transition: all 500ms ease;
}

.main-slider .banner-carousel.owl-carousel button.owl-dot.active {
    border-color: var(--thm-base);
}

.main-slider .banner-carousel.owl-carousel button.owl-dot.active:before {
    background: var(--thm-base)
}

/*** 
=====================================================
    Main Slider style9 Css
=====================================================
***/
.main-slider--style9 {
}

.main-slider--style9 .slide {
    /*padding-top: 342px;
    padding-bottom: 200px;*/
    padding-top: 150px;
    padding-bottom: 220px;
}

.main-slider--style9 .slide .image-layer {
    background-position: top right;
}
.main-slider--style9 .slide .image-layer{
    background-position: bottom center;
}
/*.main-slider--style9 .slide .image-layer{
    background-position: center center;
}*/
.main-slider--style9 .slide .image-layer:before {
    display: none;
}

.main-slider--style9 .slide .image-layer:after {
    display: none;
}


.main-slider--style9 .content.content--right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}


.main-slider--style9 .sub-title {
    position: relative;
    display: block;
    opacity: 0;
    padding-bottom: 7px;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider--style9 .active .sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider--style9 .sub-title h5 {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font);
}

.main-slider--style9 .content .big-title h2 {
    color: #ffffff;
    font-size: 72px;
    font-size: 60px;
    line-height: 1.1em;
    font-weight: 500;
    text-transform: capitalize;
    animation: normal;
    font-family: var(--thm-font-2);
}


.main-slider--style9 .content .text {
    margin-top: 15px;
}

.main-slider--style9 .content .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
}


.main-slider--style9.nav-style2 .owl-theme .owl-nav {
    top: 60%;
}


.main-slider--style9 .banner-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 90px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    opacity: 1;
}
.banner-carousel .slide{
    position: relative;
    z-index: 2;
}
.banner-carousel .slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(0,0,0,0.35);
}
.banner-carousel .slide:after {
    content: "";
    width: 100%;
    height: 40%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(0deg, var(--customnewbg-themecolor) 10%, transparent );
} 
.homeessentials-content-box {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    margin-top: -70px;
}

.homeessentials-content-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.homeessentials-content-box ul li {
    position: relative;
    display: block;
    width: 25%;
    float: left;
    border-right: 1px solid #ede8e6;
}

.homeessentials-content-box ul li:last-child {
    border-right: none;
}

.homesingle-essentials-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 45px 30px 38px;
}

.homesingle-essentials-box .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.homesingle-essentials-box .icon span::before {
    position: relative;
    display: inline-block;
    font-size: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.homesingle-essentials-box:hover .icon span::before {
    transform: scale(1.1);
}

.homesingle-essentials-box h3 {
    margin-top: 23px;color: var(--customnewbg-themecolor);
}

.homesingle-essentials-box h3 a {
    color: var(--customnewbg-themecolor);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.homesingle-essentials-box h3 a:hover {
    color: var(--customnewbg-themecolor);
}
.homeessentials-area .homeessentials-areacontain{
    margin: -70px auto 0;
    z-index: 20;
    position: relative;
}
.homesecond-gridsection{
    position: relative;
    z-index: 20;
}
.homefeature-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px 20px
}

.homefeature-box-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #E3E9F0;
    padding-top: 35px;
    padding-bottom: 35px
}

.homefeature-box_title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px
}

.homefeature-box_text {
    margin-bottom: 0
}

.homefeature-box_icon {
    position: relative;
    text-align: center;
    min-width: 50px;
    font-size: 30px;
    color: var(--color-secondary);
        z-index: 2
}
.abtthumb-extra-two .abtthumb-extraimg1 {
    border-radius: 300px 300px 0 0;
    max-width: 130%;
    border: 2px solid #653816;
    overflow: hidden;
}
.abtthumb-extra-two .abtthumb-extraimg2 {
    border-radius: 10px;
    margin-left: 0;
    max-width: 100%;
    margin-bottom: 15px;
    margin-left: -38px;
    z-index: 10;
}
.abtthumb-extra-two{
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
    align-items: end;
}
.abtthumb-extra-two .abtthumb-extraimg img {
    border-radius: 10px;    
    object-fit: cover;
}
.abtthumb-extra-two .abtthumb-extraimg{
    border: 3px solid var(--customnewbg-themecolor);
}
.abtthumb-left .counter-box {
    position: absolute;
    top: -16px;
    right: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px rgba(19, 61, 117, 0.12);
    z-index: 2;
    overflow: hidden;
    padding: 40px 0px 42px;
    color: #fff;
}
.abtthumb-left .counter-box {
    padding: 15px 20px;
    background: var(--customnewbg-themecolor);
    max-width: 223px;
}
.abtthumb-left{
    position: relative;
     padding-bottom: 150px;
}
.abtthumb-left .counter-box .counter-title{
   font-size: 30px;
   font-size: 23px;
    font-weight: 700;
    color: var(--cusnewwhite-color);
    margin-bottom: 1px;    
}

.abtthumb-left .counter-box .counter-text {
    color: var(--cusnewwhite-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    
}
.homeabout-secwrapper{
    position: relative;

}
.homeabout-secwrapper .homeroundimg-shape {
    /* border: 1px solid #ca141d; */
    border-radius: 60px 0 60px;
    position: absolute;
    top: auto;
    bottom: -60px;
    left: 17%;
    /* transform: translateY(-50%); */
    z-index: -1;
    animation: rotateabtircle 18s linear infinite;
    max-width: 360px;
}

.hmvisionmission-grid {
    gap: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--themesmoke-color);
    background-color: var(--cusnewwhite-color);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.hmvisionmission-grid .hmvisionmission-img {
    position: relative;
    min-width: 250px;
    height: 250px;
    overflow: hidden;
    margin: -1px;
}
.hmvisionmission-grid .hmvisionmission-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.hmvisionmission-grid .hmvisionmission-content {
    padding: 20px 10px 20px 10px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}
.hmvisionmission-info h2{
    margin-bottom: 10px;
     font-size: 28px;
    display: block;
}
.hmvisionmission-info h2,.hmvisionmission-info h2 a{
    color: var(--customnewbg-themecolor);
}
.hmvisionmission-info h2:hover,.hmvisionmission-info h2 a:hover{
    color: var(--customnewbg-themecolor);
       
}
/*.homeevision-missionleftwrap {
        background: #fff;
    padding: 30px 50px 30px 30px;
}*/
.feature-grid {
    padding: 60px 50px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #0B2950;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.feature-grid_icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--customnewbg-themecolor);
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 40px auto
}

.feature-grid_icon img {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.feature-grid_title {
    font-size: 24px;
    margin-bottom: 14px;
    margin-top: -0.28em;
    font-weight: 600;
    color: var(--cusnewwhite-color)
}

.feature-grid_text {
    margin-bottom: -0.48em;
    color: var(--light-color)
}

.feature-grid:hover {
    background-color: #092141
}

.feature-grid:hover .feature-grid_icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}
.feature-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.feature-block_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.feature-block_text {
    margin-bottom: -0.5em
}
.feature-list {
    padding: 40px 20px 55px 20px;
    background-color: var(--customnewbg-themecolor);
    box-shadow: 0px 6px 30px rgba(0, 6, 18, 0.06);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;border-radius: 10px;    
}
.feature-list:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--cusnewwhite-color);
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
     border: 1px solid rgb(107 73 48 / 40%);border-radius: 10px;
}

.feature-list_icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 36px;
    color: var(--cusnewwhite-color);
    background-color: var(--customnewbg-themecolor);
    border-radius: 50%;
    margin: 0 auto 25px auto;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
    z-index: 2;
    box-shadow: 0px 4px 20px rgb(107 73 48 / 40%);
    animation: boxpulsenew infinite 1.3s ease-in-out;
}

.feature-list_title {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: -0.24em;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.feature-list_title a {
    color: var(--title-color)
}

.feature-list_text {
    margin-bottom: -0.45em;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}
.feature-list_text a{

}
.feature-list .icon-btn {
    width: 50px;
    height: 50px;
    background-color: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color);
    box-shadow: 0px 4px 18px rgba(13, 94, 244, 0.24);
    position: absolute;
    bottom: -25px;
    left: 50%;
    margin-left: -25px;
    line-height: 45px;
    border-radius: 50px;

}

.feature-list_icon i{
      animation: swingnew infinite 1.3s ease-in-out;
      display: block;
    line-height: inherit;
}

.feature-list:hover:after {
    height: 0
}

.feature-list:hover .feature-list_icon {
    background-color: var(--cusnewwhite-color);
    color: var(--customnewbg-themecolor)
}

.feature-list:hover .feature-list_title a {
    color: var(--cusnewwhite-color)
}

.feature-list:hover .feature-list_text {
    color: var(--cusnewwhite-color)
}

.feature-list:hover .icon-btn {
    background-color: var(--cusnewwhite-color);
    color: var(--customnewbg-themecolor);
    -webkit-animation: jumpIcon 1s linear infinite;
    animation: jumpIcon 1s linear infinite
}

.feature-sec {
    background-image: -webkit-linear-gradient(right, var(--themesmoke-color), var(--themesmoke-color));
    background-image: linear-gradient(to left, var(--themesmoke-color), var(--themesmoke-color));
    background-size: 100% 60%;
    background-position: top center;
    background-repeat: no-repeat
}
.ourvission-missionhome .xb-shapeft-bot{
    background: var(--themesmoke-color);
}
.feature-list.darkfeature-list:hover ul.cuscommon-listwrap li::after{
    color: var(--cusnewwhite-color);
}

.featurehome-slider {
    overflow: hidden !important;
    position: relative;
    padding: 50px 20px 50px;
    background: #fff;
    border-radius: 50px 0 50px 0;
}

.featurehome-slider .swiper-wrapper {
    align-items: center;
}

.featurehome-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featurehome-slider .swiper-slide img {
    max-height: 80px;      /* adjust as needed */
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
}
.featurehome-slider .featurehome-carouselnav {
   /* position: absolute;
    right: 0;
    top: 28px;*/
    display: flex;
    justify-content: center;
    gap: 0 10px;
    align-items: center;
}
.featurehome-slider .featurehome-carouselnav .featurehome-arrow {
    width: 30px;
    height: 30px;
    background: var(--customnewbg-themecolor);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
}
.featurehome-slider .featurehome-carouselnav .featurehome-arrow.featurehome-next {
    margin-left: 2px;
}
.featurehome-slider .featurehome-carouselnav .featurehome-arrow i {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;color: #fff;
    line-height: 19px;
}
.featurehome-slider .swiper-slide{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    /*padding: 30px;
    gap: 20px;*/
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: start;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
   
}
.swiper-fetitem{
    width: 100%;
}
.swiper-fetitem .featuretab-btn {
    width: 100%;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     border-radius: 10px;
    padding: 15px 15px;
    gap: 20px;
     background-color: rgb(245 38 93 / 7%) ;
}
.swiper-fetitem .featuretab-btn .feature-homeicon {
    display: table-caption;
    width: 50px;
    height: 50px;
    /* line-height: 60px; */
    background: #fbd5b8;
    border-radius: 10px;
    display: inline-block;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    text-align: center;
    padding: 6px;
    display: block;
}
.swiper-fetitem .featuretab-btn .feature-homebox-title {
    text-transform: capitalize;
    font-size: 18px;
    display: block;
    color: var(--customnewbg-themecolor);
}
.swiper-fetitem .featuretab-btn{
    background: #fef0f4;
}
.swiper-fetitem.shadbg-itemviolet .featuretab-btn{
    background: #f3e8fd;
}
.swiper-fetitem.shadbg-itemgreen .featuretab-btn{
    background: #e5fbf7;
}
.swiper-fetitem.shadbg-itemorg .featuretab-btn{
    background: #d9f2fd;
}
.newsevent-homecol.blogcolumn .single-blog-style1 .text-holder .text {
        display: -webkit-box;
        -webkit-line-clamp:4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        /*min-height: 147px;*/overflow: hidden;text-overflow: ellipsis;
        padding-bottom: 0;
}
.newsevent-homecol.blogcolumn .single-blog-style1{
        border: 1px solid #b5a497;
    padding: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18);
}
.newsevent-homecol.blogcolumn .single-blog-style1 .text-holder{
        padding: 44px 0 0px;
}
.newsevent-homecol.blogcolumn .single-blog-style1 .text-holder .meta-info ul li a{
    font-size: 13px;
    font-weight: 400;
}
.newsevent-homecol.blogcolumn .single-blog-style1 .text-holder .meta-info ul li{
    margin-right: 15px;
}
.newsevent-homecol.blogcolumn .single-blog-style1 .img-holder img{
    height: 240px;
}
.newsevent-homecol.blogcolumn .single-blog-style1 .text-holder h3{
        font-size: 20px;
    line-height: 28px;
}
.newsevent-homecol.blogcolumn .single-blog-style1 .text-holder .bottom-box:before{
    left: 0;
    right: 0;
    background:#b5a497;
}
.newsevent-homecol.blogcolumn .single-blog-style1 .text-holder .bottom-box{
        margin-top: 15px;
}
.newsevent-carousel .owl-nav{
    text-align: center;
}
.newsevent-carousel .owl-nav button  {
    display: inline-block;
    padding: 0;
    z-index: 3;
    border-radius: 50%;
}
.newsevent-carousel .owl-nav button .sliderarrow {
    background-color: var(--customnewbg-themecolor);
    border-radius: 30px;
    color: var(--cusnewwhite-color);
    border: 1px solid var(--customnewbg-themecolor);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: block;
    line-height: 36px;
    margin: 0 5px;
}
.feature-arwwrap .icon-box .slider-arrow {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    left: 0;
}
.patnerhome-slider {
    overflow: hidden !important;
    position: relative;
    padding: 50px 20px 50px;
    background: #fff;
    border-radius: 50px 0 50px 0;
}


.patnerhome-slider .swiper-wrapper {
    align-items: center;
}

.patnerhome-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.patnerhome-slider .swiper-slide img {
    max-height: 80px;      /* adjust as needed */
    width: auto;
    object-fit: contain;
}
.patnerhome-slider .patnerabout-carouselnav {
   /* position: absolute;
    right: 0;
    top: 28px;*/
    display: flex;
    justify-content: center;
    gap: 0 10px;
    align-items: center;
}
.patnerhome-slider .patnerabout-carouselnav .patnerabout-arrow {
    width: 30px;
    height: 30px;
    background: var(--customnewbg-themecolor);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
}
.patnerhome-slider .patnerabout-carouselnav .patnerabout-arrow.patnerabout-next {
    margin-left: 2px;
}
.patnerhome-slider .patnerabout-carouselnav .patnerabout-arrow i {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;color: #fff;
    line-height: 19px;
}
.language_dropdown .flag{
    border-radius: 0;
}
.xb-footer-main .footer-widget .xb-item--title{
        font-family: var(--font-headingnew2);
        position: relative;
            padding: 0 0 18px 0;
}
.xb-footer-main .footer-widget .xb-item--title:before, .xb-footer-main .footer-widget .xb-item--title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 51px;
    height: 3px;
    background-color: var(--cusnewwhite-color);
}
.xb-footer-main .footer-widget .xb-item--title:after {
    width: 10px;
    left: 56px;
    border-right: 10px solid var(--cusnewwhite-color);
    box-shadow: 15px 0 0 0 var(--cusnewwhite-color);
}
.commonlistwrap.footerlist-infonew ul li .circle-iconfoot i {
    animation: swingnew infinite 1.3s ease-in-out;
}
.commonlistwrap.footerlist-infonew ul li .circle-iconfoot {
    height: 40px;
    width: 40px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    border-radius: 10px;
    line-height: 40px;
    background: var(--themesmoke-color);
    font-size: 20px;
    text-align: center;
    color: var(--customnewbg-themecolor);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
    animation: boxpulsewhitenew infinite 1.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
        margin-top: 9px;
}
.commonlistwrap.footerlist-infonew ul li{
    display: flex;
    gap: 0 20px;
}
.commonlistwrap.footerlist-infonew ul li a {
    font-size: 15px;
    font-size: 17px;
    color: #fff;
    line-height: 30px;
    
}
.commonlistwrap.footerlist-infonew ul li.center-icon{
    align-items: center;
}
.commonlistwrap.footerlist-infonew ul li.center-icon .circle-iconfoot{
    margin-top: 0;
}
.footmap-section .footmap-wrap iframe{
    width: 100%;
    height: 210px;
}
.contact-formfooter .contact-form-wrap{
    padding: 50px 45px 45px 45px;
}
.contact-formfooter .form-group textarea.form-control{
        min-height: 105px;
}
/*** 
=============================================
    Page Contains Area Css
=============================================
***/
.page-contains-area {
    position: relative;
    display: block;
    width: 100%;
    background: #fff;
    z-index: 9999;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

/* Update Mainmenu area Style */
@-webkit-keyframes menu_sticky {
    0% {
        margin-top: -150px;
    }

    50% {
        margin-top: -130px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes menu_sticky {
    0% {
        margin-top: -150px;
    }

    50% {
        margin-top: -130px;
    }

    100% {
        margin-top: 0;
    }
}

.page-contains-area.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation-name: menu_sticky;
    animation-name: menu_sticky;
    -webkit-animation-duration: 0.60s;
    animation-duration: 0.60s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    box-shadow: 0 3px 18px rgba(6, 27, 92, 0.09);
}



.page-contains-box {
    position: relative;
    display: block;
    padding-left: 150px;
    padding-left: 0;
    z-index: 1;
}
.page-contains-box ul.scroll-nav{
        margin: 0 auto;
    text-align: center;
    width: auto;
    max-width: max-content;
}
.page-contains-box:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 1px;
    background: #ede8e6;
}

.page-contains-box .inner-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    padding: 23px 0;
}

.page-contains-box .inner-title h3 {
    font-size: 18px;
    line-height: 24px;
}


.page-contains-btn {
    position: relative;
    display: block;
}

.page-contains-btn li {
    position: relative;
    display: block;
    overflow: hidden;
    float: left;
    padding: 21px 25px 21px;
    cursor: pointer;
    z-index: 1;
}

.page-contains-btn li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 4px;
    background: var(--customnewbg-themecolor);
    z-index: -1;
    transform: perspective(400px) translateX(-100%) scale(1.0);
    transform-style: preserve-3d;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
}

.page-contains-btn li:hover::before,
.page-contains-btn li.current::before {
    transform: perspective(400px) translateX(0) scale(1);
    transform-origin: left center;
}

.page-contains-btn li a {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-contains-btn li:hover a,
.page-contains-btn li.current a {
    color: var(--customnewbg-themecolor);
}
.pagestick-section{
        position: relative!important;
    z-index: 1000!important;
}
.extracuri-page-header #xb-header-area .xb-header-area-sticky.xb-header-fixed{
    opacity: 0;
    visibility: hidden;
}
.scrollhide-page-header #xb-header-area .xb-header-area-sticky.xb-header-fixed{
    opacity: 0;
    visibility: hidden;
}
.main-menu ul li .submenu{
    z-index: 3000;
}
.main-menu ul li a {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-heading);
    padding: 10px 10px;
    padding: 10px 18px;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}
.main-menu ul li .submenu.submenu-mediumwid{
    min-width: 165px;
}
.main-menu ul li .submenu.submenu-mediumwid2{
    min-width: 185px;
}
.main-menu ul li a.lastchild-mainmenu{
    padding-right: 0;
}
/*.extracuriinnerpage-mainfulwrapper .commonpage-sticksection {
  scroll-margin-top: 0;
}
[id^="hs-"] {
  scroll-margin-top: 40;
}*/
.newtitle__desc {
    font-size: 23px;
    font-family: var(--font-caveat);
    font-weight: 600;
}
.tickcmn-listwrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;    
    flex-direction: column;
    align-items: flex-start;
}

.tickcmn-listwrap ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.tickcmn-listwrap ul li::after {
    position: absolute;
    left: 0;
    top: 1px;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    color: var(--customnewbg-themecolor);
}

.griddesign-two {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
    opacity: 1;
    display: flex; 
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
}



.griddesign-two .border-outer {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    border: 1px solid var(--cusnew-bordercolor);
    transform: rotate(-7deg);
    border-radius: 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
    display: none;
}

.griddesign-two .content {
    
    width: 100%;
    background-color: var(--cusnewwhite-color);
    border-radius: 6px;
    padding: 35px 20px 30px;
    overflow: inherit;
    z-index: 10;

     border: 1px solid var(--cusnew-bordercolor)    ;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    height: 100%;
}
.gridesigntwo-wrapper{
    margin-bottom: 30px;
}
.griddesign-two .content:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
.griddesign-two .zigzag:before {
    height: 12px;
    top: 110%;
    background: linear-gradient(-135deg, #ffffff 9px, transparent 0) 0 9px, linear-gradient(135deg, #ffffff 9px, transparent 0) 0 9px;
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 16px 16px;
}

.griddesign-two .zigzag.left.bg-white::after {
    height: 16px;
    top: 100%;
    background: linear-gradient(-135deg, #f6931d 8px, transparent 0) 0 8px, linear-gradient(135deg, #f6931d 8px, transparent 0) 0 8px;
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 16px 16px;
}
.griddesign-two .griddesign-icon {
    font-size: 49px;
    text-align: center;
    margin: 0 auto;
    color: #b1b1b1;
    background: var(--themesmoke-color);
    color: var(--color-secondary);
    line-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0;
}
.griddesign-two .griddesign-icon span {
    display: block;
    width: 100%;
    height: 100%;
    padding: 14px;
    line-height: 20px;
}
.griddesign-two:hover .griddesign-icon{
    background: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color);
    
}
.griddesign-two:hover .griddesign-icon span{
    filter: invert(1) brightness(200);
}

/* BOOK */
.customstrick-book {
    display: flex;
    
    position: relative;
}
.book-icon{
    width: 100px;
    margin: 0 auto;
}
/* CENTER SPINE */
.customstrick-book::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #ccc, #999, #ccc);
    border-radius: 4px;
    z-index: 2;
        border: 1px solid #dad7d7;
}

/* PAGE BASE */
.bookpage{
    width: 50%;
    padding: 45px;
    background: #fffef9;
    box-sizing: border-box;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;

    /* NEW BORDER */
    border: 1px solid #e2dccf;
}

/* LEFT PAGE */
.bookleft {
    border-radius: 12px 0 0 12px;

    /* REDUCED INNER SHADOW */
    box-shadow:
        inset -10px 0 15px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.15);
}

/* RIGHT PAGE */
.bookright {
    border-radius: 0 12px 12px 0;

    /* REDUCED INNER SHADOW */
    box-shadow:
        inset 10px 0 15px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.15);
}

/* LIGHT PAGE CURVE */
.bookleft::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.05), transparent);
}

.bookright::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.05), transparent);
}

/* TITLE */
.bookpage h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* TEXT */
.bookpage p {
    text-align: justify;
    margin-bottom: 15px;
}

/* DROP CAP */
.drop:first-letter {
    font-size: 42px;
    float: left;
    margin-right: 6px;
    font-weight: bold;
}

/* PAGE NUMBER */
.page-number {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* HOVER (very subtle)
.customstrick-book:hover .bookleft {
    transform: rotateY(1deg);
}
.customstrick-book:hover .bookright {
    transform: rotateY(-1deg);
} */
.griddesign-twofull {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
    opacity: 1;
    display: flex; 
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
}



/*.griddesign-twofull .border-outer {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    border: 1px solid var(--cusnew-bordercolor);
    transform: rotate(-7deg);
    border-radius: 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}*/
.griddesign-twofull .border-outer {
    content: "";
    border-radius: 10px;
    transform: rotate3d(1, 1, 1, -10deg);
    width: calc(100% + 20px);
    height: calc(100% - 20px);
    display: block;
    position: absolute;
    left: -1%;
    top: 0;
    z-index: -2;
    /* filter: blur(1.08px); */
    background: transparent;
    border: 1px solid rgb(255 255 255 / 35%);
}
.griddesign-twofull .content {
    
    width: 100%;
    background-color: var(--cusnewwhite-color);
    border-radius: 6px;
    padding: 35px 20px 30px;
    overflow: inherit;
    z-index: 10;

     border: 1px solid var(--cusnew-bordercolor)    ;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    height: 100%;
}
.gridesigntwo-wrapper{
    margin-bottom: 30px;
}
.griddesign-twofull .content:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
.griddesign-twofull .zigzag:before {
    height: 12px;
    top: 110%;
    background: linear-gradient(-135deg, #ffffff 9px, transparent 0) 0 9px, linear-gradient(135deg, #ffffff 9px, transparent 0) 0 9px;
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 16px 16px;
}

.griddesign-twofull .zigzag.left.bg-white::after {
    height: 16px;
    top: 100%;
    background: linear-gradient(-135deg, #f6931d 8px, transparent 0) 0 8px, linear-gradient(135deg, #f6931d 8px, transparent 0) 0 8px;
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 16px 16px;
}
.griddesign-twofull .griddesign-icon {
    font-size: 49px;
    text-align: center;
    margin: 0 auto;
    color: #b1b1b1;
    background: var(--themesmoke-color);
    color: var(--color-secondary);
    line-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0;
}
.griddesign-twofull .griddesign-icon span {
    display: block;
    width: 100%;
    height: 100%;
    padding: 14px;
    line-height: 20px;
}
.griddesign-twofull:hover .griddesign-icon{
    background: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color);
    
}
.griddesign-twofull:hover .griddesign-icon span{
    filter: invert(1) brightness(200);
}

.coldesign-twofull{
    box-shadow: 5px 6px 0 rgb(221 0 49 / 70%);
    border-radius: 30px 0;
    padding: 18px 18px;
    border: 1px solid rgb(255 255 255 / 35%);
    box-shadow: 6px 7px 0px rgb(255 255 255 / 35%), 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    height: 100%;
    overflow: hidden !important;
    position: relative;
    background: #fff;
   
}
.coldesign-twofull .col-content {
     border: 1px solid var(--cusnew-bordercolor);
     padding: 20px 20px;
     box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}
.coldesign-twofull .colfull-icon {
     max-width: 250px; 
    display: block;
    opacity: 0.2;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.coldesign-twofull .colfull-icon img{
    width: 200%;
}
.tickcmn-listwrap ul.starlist li::after {
    position: absolute;
    left: 0;
    top: 1px;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    color: var(--customnewbg-themecolor);
    font-size: 12px;
    content: "\f70c";
    content: "\f005";
}
.breadcrumb__desc{
    text-align: center;
}
.groupdark-section{
    color: #fff;
}
.colbxshdw-wrap{
    margin-bottom: 30px;
    margin-top: 30px;
}
.colbxshdw-wrap .colbxshdw-block {
    /* background: rgba(255, 255, 255, 1); */
    box-shadow: 0px 7px 35px rgb(18 38 37 / 13%);
    border-radius: 0 0 10px 10px;
    padding: 30px 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgb(255 255 255 / 50%);
    /* color: #000; */
    border-top: 3px solid var(--themesmoke-color);
    height: 100%;
}
.colbxshdw-wrap .colbxshdw-block .boxshdw-shape {
    background: rgb(246 235 228 / 60%);
    filter: blur(50px);
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.colbxshdw-title h3{
    position: relative;
        padding-bottom: 8px;
}
.colbxshdw-title h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 1px;
    background-color: var(--cusnewwhite-color);
    right: 0;
    margin: 0 auto 0;
}
.colbxshdw-wrap .tickcmn-listwrap ul li::after {
    color: var(--cusnewwhite-color);
    content: "\f471";
    content: "\f559";
    font-weight: 400;
    font-size: 15px;
}
.colbxshdw-wrap .tickcmn-listwrap ul.sciencelist li::after{
    content: "\f471";
}
.colbxshdw-wrap .tickcmn-listwrap ul.mathslist li::after{
    content: "\f0eb";
}
.colbxshdw-style-one-info {
    display: flex;
    padding-right: 50px;
    gap: 20px;
    height: 100%;
}
.colbxshdw-style-one-info .colbxshdwright-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    text-align: center;
    align-items: center;
    /*border-left: 1px solid #b9d3de;
    border-left: 1px solid rgb(255 255 255 / 25%);
    padding-left: 50px;*/
    order: 6;
}
.colbxshdw-style-one-info .colbxshdwleft-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.colbxshdwright-info .colbxshdw-cusicon {
    height: 100px;
    width: 100px;
    min-width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--customnewbg-themecolor);
    border-radius: 50%;
    margin-right: 0;
    padding: 15px;
    position: absolute;
    left: 0;
    opacity: 1;
    bottom: -20px;
    right: -20px;
    left: auto;
}
.colbxshdw-splwrap.colbxshdw-wrap .colbxshdw-block{
    background: var(--cusnewwhite-color);
    color: #000;
}
.colbxshdw-splwrap.colbxshdw-wrap .colbxshdw-title h3{
    color: var(--customnewbg-themecolor);
}
.colbxshdw-splwrap.colbxshdw-wrap .colbxshdw-title h3:after{
    background-color: var(--customnewbg-themecolor);
}
.colbxshdw-splwrap.colbxshdw-wrap .tickcmn-listwrap ul li::after {
    color: var(--customnewbg-themecolor);
}
.colbxshdw-lighttheme.colbxshdw-wrap .colbxshdw-block{
    border-color: var(--cusnew-bordercolor);
    border-top-color:var(--customnewbg-themecolor) ;
    border-top-color: var(--cusnew-bordercolor);
    border-top-width:1px ;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
        padding: 28px 20px 25px;

}
.colbxshdw-lighttheme.colbxshdw-wrap .tickcmn-listwrap ul li::after{
    color: var(--customnewbg-themecolor);
}

.colbxshdw-lighttheme.colbxshdw-splwrap.colbxshdw-wrap .colbxshdw-block{
    background: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color);
    /*border-top-color: var(--cusnewwhite-color);*/
}
.colbxshdw-lighttheme.colbxshdw-splwrap.colbxshdw-wrap .colbxshdw-title h3{
    color: var(--cusnewwhite-color);
}
.colbxshdw-lighttheme.colbxshdw-splwrap.colbxshdw-wrap .colbxshdw-title h3:after{
    background-color: var(--cusnewwhite-color);
}
.colbxshdw-lighttheme.colbxshdw-splwrap.colbxshdw-wrap .tickcmn-listwrap ul li::after {
    color: var(--cusnewwhite-color);
}
.colbxshdw-lighttheme .colbxshdwright-info .colbxshdw-cusicon {
    background-color: var(--cusnewwhite-color);
}
.colbxshdw-lighttheme.colbxshdw-wrap .colbxshdw-block .boxshdw-shape {
    background: rgb(107 73 48 / 30%);
}
.colbxshdw-lighttheme.colbxshdw-splwrap.colbxshdw-wrap .boxshdw-shape {
    background: rgb(246 235 228 / 60%);
}
.colbxshdw-wrap .colbxshdw-block-main{
    padding: 12px 12px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.45);
    height: 100%;
}
.colbxshdw-wrap.colbxshdw-lighttheme .colbxshdw-block-main{
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}
.groupno-boxshadowsection .colbxshdw-block-main{
    box-shadow: none;
    padding: 0;
}
.groupspl-head {
    background: var(--cusnewwhite-color);
    color: #000;
    padding: 30px 50px;
    border-radius: 10px;
}
.groupno-boxshadowsection .colbxshdw-lighttheme.colbxshdw-wrap .colbxshdw-block{
    border-top-color: var(--customnewbg-themecolor);
    border-top-width: 4px;
}
/* SHIMMER TEXT */
.shimmerspltext {

    /* BASE COLOR */
    color: #6b4930;

    /* SHIMMER GRADIENT */
    background: linear-gradient(
        90deg,
        #6b4930 0%,
        #a67c52 25%,
        #f3e2c7 50%,   /* highlight shine */
        #a67c52 75%,
        #6b4930 100%
    );
    background: linear-gradient(90deg, #6b4930 0%, #a67c52 25%, #f7a829 50%, /* highlight shine */ #a67c52 75%, #6b4930 100%);

    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shimmerspl 3s linear infinite;
}

/* ANIMATION */
@keyframes shimmerspl {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}
.shimmerspllight {
    
    color: rgba(255,255,255,0.2);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, #fbab71 50%, rgba(255, 255, 255, 0.8) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerspl 2.5s linear infinite;
}
.splgrid-text{
    text-decoration: underline;
}
.tickcmn-listwrap ul.thumbok-list li::after{
    content: "\f164";
    top: 0;
    font-size: 14px;
}
.upperprimary-chosewrap  .choose__inner-wrap{
    position: relative;
}
.upperprimary-chosewrap .choose__content {
    background: var(--cusnewwhite-color);
    box-shadow: 0 0 30px 0 #e8e8e8;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    padding: 50px 60px 40px 40px;
    position: relative;
    z-index: 1;
}
.upperprimary-chosewrap .choose__img {
    /*position: absolute;
    right: 0;max-width: 740px;*/
    top: -40px;
    z-index: 2;    
    position: relative;
    margin-left:-65px;
    height: 100%;
}
.upperprimary-chosewrap .choose__img img {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    min-height: 300px;
    object-fit: cover;
    width: 100%;
    transition: all 0.3s ease-out 0s;
    height: 100%;
}
.upperprimary-chosewrap .choose__img .popup-video {
    position: absolute;
    width: 75px;
    height: 75px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cusnewwhite-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: var(--customnewbg-themecolor);
}
.upperprimary-chosewrap{
    position: relative;
}
.upperprimary-chosewrap .choose__shape img {
    position: absolute;
    z-index: -1;
}
.upperprimary-chosewrap .choose__shape img.tg-motion-effects4 {
    right: -40px;
    bottom: 20px;
}

/* Section */
.board-section{
  display:flex;
  justify-content:center;
  align-items:center;
  padding-bottom: 140px;
}

/* Chalkboard */
.board-section .board{
  position:relative;
  background:#4b7b57;
  border:20px solid #c89b6d;
  border-radius:10px;
  box-shadow:0 20px 40px rgba(0,0,0,0.25);
  width: 100%;
    max-width: 900px;
}

/* Wood joints */
.board-section .board::before{
  content:"";
  position:absolute;
  inset:-20px;
  border-radius:12px;
  box-shadow:inset 0 0 15px rgba(0,0,0,0.3);
}

/* Chalk dust texture */
.board-section .board::after{
  content:"";
  position:absolute;
  inset:0;
  background:url('https://www.transparenttextures.com/patterns/asfalt-light.png');
  opacity:0.15;
}

/* Stand */
.board-section .boardstand{
  position:absolute;
  bottom:-90px;
  width:100%;
  display:flex;
  justify-content:center;
  gap:120px;
}

.board-section .boardleg{
  width:18px;
  height:110px;
  background:#c89b6d;
  border-radius:10px;
      z-index: -1;
}

.board-section .boardleft{
  transform:rotate(20deg);
}
.board-section .boardright{
  transform:rotate(-20deg);
}
.board-section .boardcenter{
  position:absolute;
  bottom:-90px;
  width:18px;
  height:110px;
  background:#c89b6d;
  border-radius:10px;
         left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

/* Content */
.board-section .board-content {
    padding: 50px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
   /* font-family: 'Patrick Hand', cursive;*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

/* Chalk writing animation */
.board-section .board-content h2,
.board-section .board-content h3,
.board-section .boardtagline,
.board-section .boarddesc{
  opacity:0;
  animation:fadeWrite 1s ease forwards;
}

.board-section .board-content h2{ animation-delay:0.2s; }
.board-section .board-content h3{ animation-delay:0.4s; }
.board-section .boardtagline{ animation-delay:0.6s; }
.board-section .boarddesc{ animation-delay:0.8s; }

@keyframes fadeWrite{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Text styles */
.board-section .board-content h2{
  font-size:32px;
  margin:0;
}

.board-section .board-content h3{
  font-size:22px;
  margin:10px 0;
}

.board-section .boardtagline{
  font-size:20px;
  font-weight:bold;
  margin:15px 0;
}

.board-section .boarddesc{
  font-size:16px;
  line-height:1.6;
 /* max-width:500px;*/
  margin:auto;
}
.darklist-newwrap.tickcmn-listwrap ul li::after {
    color: var(--cusnewwhite-color);
}
.tickcmn-listwrap ul.mathslist li::after {
    content: "\f0eb";
}

.facilitynew-container{
    position: relative;
        padding: 30px;
    background: var(--cusnewwhite-color);
    background: var(--themesmoke-color);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 30px 0 rgb(10 0 0 / 80%);
}
.facilitynew-container:before {
    background: linear-gradient(270deg, #6b4930 0%,#6b4930 60%, #ffffff 60%, #ffffff 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}
.facilitynew-row{
    justify-content: center;
    align-items: center;
}

/* TABLET */
.newcus-tablet {
    width: 100%;
    height: auto;
    border-radius: 36px;
    padding: 22px 18px 52px;
    background: linear-gradient(145deg, #2c2c2c, #111);
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    max-width: 800px;
    margin: 10px auto 60px;
   /* font-family: 'Patrick Hand', cursive;*/
}

/* CAMERA */
.tabletcamera {
    width: 8px;
    height: 8px;
    background: #aaa;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

/* SCREEN */
.tabletscreen {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
}

/* CONTENT */
.tabletcontent {
    flex: 1;
    padding: 25px;
    text-align: center;
        display: flex;
    justify-content: center;
    align-items: center;
}

.tabletcontent h2 {
    margin: 0;
    font-size: 24px;
}
.tablet-boardtagline {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}
.tabletcontent p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* TAB BAR */
.tablet-tab-bar {
    height: 75px;
    background: rgba(255,255,255,0.95);
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    border-top: 1px solid #ddd;
}

/* TAB */
.tablet-tab {
    text-align: center;
    font-size: 12px;
    color: #777;
    flex: 1;
    font-weight: 600;
}

.tablet-tab i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

/* CENTER ROUND BUTTON */
.tablet-fab {
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: #8b5e3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* SQUARE BACK BUTTON BELOW */
.tabletcenter-box {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: #dcdcdc;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 2px 2px 4px #fff,
                inset -2px -2px 4px rgba(0,0,0,0.3);
}

.tabletcenter-box i {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.tablet-tab:hover i {
    color: #8b5e3c;
}
.commonleft-right-wrapper .xb-about_left img.thumb-styleimg1 {
    border: 3px solid var(--customnewbg-themecolor);
}
.commonleft-right-wrapper .xb-about_left img.thumb-styleimg2 {
    border: 3px solid var(--customnewbg-themecolor);
}
.standardsteps-leftimg  img{
    border-radius: 20px;
}
.centercontent-design{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FORM CONTAINER */
.form-box {
    max-width: 400px;
    margin: auto;
}

/* LABEL */
.form-resumebox label {
    display: block;
}

/* CUSTOM FILE UPLOAD */
.file-resumeupload {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.file-resumeupload:hover {
    border-color: #6b4930;
    background: #faf7f4;
}

/* HIDE DEFAULT INPUT */
.file-resumeupload input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
}

/* ICON */
.file-resumeupload i {
    font-size: 30px;
    color: #6b4930;
    margin-bottom: 10px;
    display: block;
}

/* TEXT */
.file-resumeupload span {
    font-size: 14px;
    color: #555;
}

/* FILE NAME DISPLAY */
.file-resumename {
    margin-top: 10px;
    font-size: 13px;
    color: #333;
}
.homesingle-essentials-box img.btmban-icon {
    width: 60px;
    filter: invert(36%) sepia(29%) saturate(608%) hue-rotate(346deg) brightness(92%) contrast(85%);
    filter: invert(25%) sepia(44%) saturate(1050%) hue-rotate(347deg) brightness(90%) contrast(95%);
}
.hdunderline{
    position: relative;
    padding-bottom: 10px;
}
.hdunderline::before{
    content: "";
    width: 100px;
    height: 2px;
    background: var(--customnewbg-themecolor);
    position: absolute;
    left: 0;
    bottom: 0;

}
.hdunderline.darkhd-line::before{
    background: var(--cusnewwhite-color);
}
.opacitycenter-icon {
    max-width: 250px;
    display: block;
    opacity: 0.1;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.border-radimg{
    border-radius: 20px;
}
.bordertopbtm-img{
    position: relative;
}
.bordertopbtm-img::before,.bordertopbtm-img::after{
    content: "";
    width: 50%;
    height: 4px;
    position: absolute;
    top: -2px;
    background: var(--customnewbg-themecolor);
}
.bordertopbtm-img::after{
     top: auto;
      bottom: -2px;
      right: 0;
      left: auto;
}
.bdrline-radimg{
  border-radius: 0 20px 0 20px;  
}
.border-radimghalf{
    border-radius:0 20px 0 20px ;
}
.bdrlft-radimghalf{
    border-radius: 20px 0 20px 0;
}
.cumrowtwo-row .cumrowtwo-rowleft{
    position: relative;
    border-right: 1px dashed rgba(0, 0, 0, 0.5);
}
/*.cumrowtwo-row .cumrowtwo-rowleft::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 4px;
    width: 1pt;
    border: 1px dashed rgba(0, 0 ,0, 0.5);
}*/
.darkwrap.tickcmn-listwrap ul li::after{
        color: var(--cusnewwhite-color);
}
.higherrow-section .program-details-tab-content__text ul li+li{
    margin-top: 5px;
}
.featurehm-con{
    filter: invert(1) brightness(200);
        padding: 15px;
        margin-top: 0px!important;
        width: 90%;
}
.feature-list:hover .feature-list_icon .featurehm-con{
    filter: invert(25%) sepia(44%) saturate(1050%) hue-rotate(347deg) brightness(90%) contrast(95%);
}
.header-logo img{
    width: 250px!important;
}



/*** 
=============================================
    Involment Activities Area Css
=============================================
***/
.involment-activities-area {
    position: relative;
    display: block;
    padding: 20px 0 0px;
}

/*.involment-activities-tab__button {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.involment-activities-tab__button .tabs-button-box {
    position: relative;
    display: flex;
    border-top: 1px solid #ede8e6;
    border-bottom: 1px solid #ede8e6;
}

.involment-activities-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    overflow: hidden;
    width: 50%;
    cursor: pointer;
    text-align: center;
    z-index: 1;
}

.involment-activities-tab__button .tabs-button-box .tab-btn-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f9f5f3;
    z-index: -1;
    transform: perspective(400px) translateY(0px) scale(0);
    transform-style: preserve-3d;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
}

.involment-activities-tab__button .tabs-button-box .tab-btn-item:hover::before,
.involment-activities-tab__button .tabs-button-box .tab-btn-item.active-btn-item::before {
    transform: perspective(400px) translateY(0px) scale(1);
    transform-origin: left center;
}

.involment-activities-tab__button .tabs-button-box .tab-btn-item h3 {
    position: relative;
    display: block;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin: 0;
    padding: 12px;
}

.involment-activities-tab__button .tabs-button-box .tab-btn-item:hover h3,
.involment-activities-tab__button .tabs-button-box .tab-btn-item.active-btn-item h3 {
    color: var(--title-color);
} */


.involment-activities-area {
    position: relative;
    display: block;
}

.involment-activities-tab__button {
    position: relative;
    display: block;
    /*border: 1px solid rgb(5 42 101 / 20%);
    background-color: #052a66;
    box-shadow: 0px 10px 50px rgba(135, 143, 151, 0.2);*/
    padding: 0 9px 0 0;
    z-index: 2;
    
}

.involment-activities-tab__button .sec-title {
    padding-bottom: 32px;
}

.involment-activities-tab__button .tabs-button-box {
    position: relative;
    display: block;
    border-top: 1px solid #e6e1df;
}

/*.involment-activities-tab__button .tabs-button-box li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid rgb(5 42 101 / 20%);
    padding: 15px 20px;
    color: #000;
    gap: 15px;
    background: #ecf0f9;
}*/
.involment-activities-tab__button .tabs-button-box li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    padding: 7px 15px;
    color: #000;
    gap: 10px;
    background: #ecf0f9;
    background: var(--themesmoke-color);
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    margin-bottom: 6px;
    clip-path: none;
    width: calc(100% - 35px);
    width: 100%;
    transition: 0.5s ease all;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px 16px;
}
.involment-activities-tab__button .tab-btn-item {
    position: relative;
}

/* RIGHT TRIANGLE */
.involment-activities-tab__button .tab-btn-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;   /* move outside */
    transform: translateY(-50%);

    width: 0;
    height: 0;

    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid transparent; /* triangle color */
}
.involment-activities-tab__button .tabs-button-box li.tab-btn-item:hover, .involment-activities-tab__button .tabs-button-box li.tab-btn-item.active-btn-item {
    color: #fff;
    background: var(--customnewbg-themecolor);
        
    width: 100%;
    /*clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
     width: calc(100% + 30px);*/
}
.involment-activities-tab__button .tabs-button-box li.tab-btn-item.active-btn-item::after {
    border-left-color: var(--customnewbg-themecolor);
}
.involment-activities-left{
    position: relative;
}
.involment-activities-left::after {
    content: "";
    width: 2pt;
    height: calc( 100% - 4px);
    position: absolute;
    right: 5px;
    top: 4px;
    background: var(--customnewbg-themecolor);
    z-index: 1;
}
.involment-activities-right {
     border: 1px solid var(--themesmoke-color); 
         border-left: none;
    margin-left: -7px;
    margin-top: 3px!important;
    padding-top: 30px;
    padding-bottom: 10px;
    padding-right: 30px!important;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
    box-shadow: 4px 6px 10px rgba(0,0,0,0.25);
    box-shadow: 4px 6px 10px rgba(0,0,0,0.25);
        padding-left: 30px;
}
#carrer-taboption{
        padding-bottom: 30px;
}
.involment-activities-tab__button .tabs-button-box li:last-child {
    border-bottom: none;
    /*padding-bottom: 0;*/
    margin-bottom: 0;
}
.involment-activities-tab__button .tabs-button-box li h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-bottom: 0;
    padding-right: 5px;
    position: relative;
    z-index: 1;
    margin-right: auto;
    margin: 0 auto;
}
.involment-activities-tab__button .tabs-button-box li.tab-btn-item:hover h3,
.involment-activities-tab__button .tabs-button-box li.tab-btn-item.active-btn-item h3 {
    color: #fff;
}


.involment-activities-tab__button .tabs-button-box li .round-box {
    position: relative;
    display: block;
    min-width: 30px;
    width: 30px;
    height: 30px;
    border: 2px solid #e6e1df;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.involment-activities-tab__button .tabs-button-ficon {
    min-width: 36px;
    max-width: 36px;
    width: 36px;
}
.involment-activities-tab__button .tabs-button-ficon img{
    filter: invert(25%) sepia(44%) saturate(1050%) hue-rotate(347deg) brightness(90%) contrast(95%) ;
}
.involment-activities-tab__button .tabs-button-box li.tab-btn-item:hover .tabs-button-ficon img,
.involment-activities-tab__button .tabs-button-box li.tab-btn-item.active-btn-item .tabs-button-ficon img{
    filter: invert(1) brightness(200);
}
.involment-activities-tab__button .tabs-button-ficon .fi{
    font-size: 30px; line-height: 30px;display: inline-block;   
}
.involment-activities-tab__button .tabs-button-ficon .fi::before{
   line-height: 30px;
}

.involment-activities-area .tabs-content-box {
    position: relative;
    display: block;
}

.involment-activities-area .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.involment-activities-area .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.involment-activities-area .tab-content-box-item .tabs-content-box__single-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
}

.involment-activities-area .tab-content-box-item.tab-content-box-item-active .tabs-content-box__single-item {
    opacity: 1.0;
    transform: scaleY(1);
}



.single-involment-activities-box {
    position: relative;
    display: block;
    transition: all 0.2s ease;
    z-index: 1;
}

.single-involment-activities-box .img-box .inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
    z-index: -1;
}

.single-involment-activities-box .img-box .inner:hover {
    transform: translateY(-5px);
}

.single-involment-activities-box .img-box .inner:hover::before {
    opacity: 1;
}


.single-involment-activities-box .img-box {
    position: relative;
    display: block;
    transition: all 0.2s ease;
    padding-bottom: 40px;
    
}
.single-involment-activities-box.activities-box-even .img-box{
    align-items: flex-end;
}
.single-involment-activities-box.activities-box-even .img-box .text-holder{
    margin-right: auto;
    margin-left: 0;
}
.single-involment-activities-box .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--customnewbg-themecolor);
    transition: all 0.5s ease;
    width: 60%;
}

.single-involment-activities-box .img-box .inner img {
    transition: all 0.5s ease;
    width: 100%;
    aspect-ratio: 1 / 0.581;
    object-fit: cover;
    
}

.single-involment-activities-box:hover .img-box .inner img {
    transform: rotate(2deg) scale(1.05);
    opacity: 0.5;
}
.single-involment-activities-box .img-box .text-holder {
    /* position: absolute; */
    /* left: 20px; */
    /* bottom: 0; */
    /* right: 0; */
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    padding: 32px 30px 32px;
    margin-top: -5%;
    width: calc(100% - 40px);
    margin-left: auto;
    z-index: 1000;
    position: relative;
}
.single-involment-activities-box .img-box{
        padding-top: 30px;
}
.single-involment-activities-box .img-box .activities-box-title{
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 5px;
    text-align: center;position: relative;
    padding: 0 35px;
}
.single-involment-activities-box .img-box .activities-box-title:before {
    content: "";
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    width: 100px;
    height: 1px;
    background-color: var(--customnewbg-themecolor);

}
.single-involment-activities-box .img-box .text-holder h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 13px;
}

.single-involment-activities-box .img-box .text-holder p {
    margin: 0 0 10px;
    text-align: justify;
}
.single-involment-activities-box .img-box .text-holder p:last-child{
    margin-bottom: 0;
}

.single-involment-activities-box .img-box .text-holder ul {
    position: relative;
    display: block;
    padding-top: 15px;
}

.single-involment-activities-box .img-box .text-holder ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    font-weight: 500;
}

.single-involment-activities-box .img-box .text-holder ul li+li {
    margin-top: 5px;
}

.single-involment-activities-box .img-box .text-holder ul li:before {
    content: "\ea0c";
    font-family: 'icomoon' !important;
    position: absolute;
    left: 0;
}
.involment-activities-area--style2 {
    position: relative;
}

.involment-activities-area--style2 .involment-activities-tab__button .tabs-button-box {
    border-top: none;
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
    background-color: #fff;
    padding: 0;
}

.involment-activities-area--style2 .involment-activities-tab__button .tabs-button-box .tab-btn-item:before {
    background: #f1f4fb;
}
.contactdetail-addres{
    margin-top: 0;
}

@keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }
    @-webkit-keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }
    @-ms-keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }
    @-moz-keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }

.backgroundmove-animate{background-repeat: repeat ; 
    background-size: auto ; 
    animation: animatedBackground 10s linear infinite;
    background-attachment: fixed;
    background-color: rgb(240 247 254 / 90%);
    padding: 60px 0;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
    overflow: visible;
    margin-top: 8px;
    /*box-shadow: 0 0 5px 2px rgb(0 126 229 / 20%);*/
    background-image: url(../../assets/images/pattern-movebg.png);
}

/** overlay*/
.single-involment-activities-box .img-box{
    display: block;
    background: #fff;
    box-shadow: 4px 13px 30px 1px rgba(255, 184, 14, 0.2);
    box-shadow: 4px 13px 30px 1px rgba(0, 47, 104, 0.2);
    box-shadow: 0 6px 10px rgba(0, 47, 104, 0.25), 0 8px 20px rgba(0, 0, 0, 0.25);
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
    padding-bottom: 0;
}
.single-involment-activities-box .img-box:hover{
    box-shadow:  0 6px 10px rgba(255, 184, 14, 0.4), 0 8px 20px rgba(0, 0, 0, 0.25);
}
.single-involment-activities-box .img-box .img-box-overlay{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px 0 35px ;
}

.single-involment-activities-box .img-box .inner{
    width: 60%;
    margin-left: -30px;
    box-shadow: 0 6px 10px rgba(0, 47, 104, 0.25), 0 3px 5px rgba(0, 0, 0, 0.25);
}
.single-involment-activities-box .img-box .inner img{
    width: 100%;
    aspect-ratio: 1 / 0.75;
    /*aspect-ratio: auto;*/
    object-fit: cover;
}
.single-involment-activities-box .img-box .text-holder{
    box-shadow: none;
    margin-top: 0;
    padding: 0 30px;
}
.single-involment-activities-box.activities-box-even .img-box .img-box-overlay{
    flex-direction: row-reverse;
    align-items: center;
}
.single-involment-activities-box.activities-box-even .img-box .inner{
    margin-left: 0px;
    margin-right: -30px;
}
.single-involment-activities-box.activities-box-even .img-box .text-holder{
    margin-right: auto;
    margin-left: 0;    
}
.single-involment-activities-box .img-box img.img-box-img2{
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius:50% ;
    border: 5px solid var(--customnewbg-themecolor);
}
.single-involment-activities-box .img-box.single-imgbox .img-box-overlay{
    flex-direction: column;
}
.single-involment-activities-box .img-box.single-imgbox .inner{
    margin-left: 0;
    margin-bottom: 30px;
}
.single-involment-activities-box .img-box.single-imgbox .text-holder{
    margin-right: auto;
}

/* Style for the gallery section */
/* GALLERY SECTION */
.gallery-section {
    margin-bottom: 60px;
}

.gallery-tabs button {
    padding: 8px 30px 10px;
    color: #000;
    border: none;
    background: var(--themesmoke-color);
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px 0 10px 0;
}

.gallery-tabs button.active {
     background: var(--customnewbg-themecolor);
    color: var(--cusnewwhite-color);
}


.gallery-tabs button .anime-iocn {
    display: inline-block;
    animation: swing infinite 2s ease-in-out;
    font-size: 22px;
    line-height: 22px;
    vertical-align: middle;
    margin-right: 8px;
}
.gallery-tabs button .anime-iocn::before{
    line-height: 19px;
}
.gallery-tabs{
        margin: 0 auto 40px;
    text-align: center;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@media (min-width: 1024px) {
    .customize-gallery .customgallery-row.row {
        --bs-gutter-x: 28px;
    }
}
.gallery-wrap {
    margin-bottom: 28px;
}

.gallery-tabs button img{
    width: 22px;
    filter: invert(1) brightness(200);
    filter: invert(25%) sepia(44%) saturate(1050%) hue-rotate(347deg) brightness(90%) contrast(95%);
    margin-right: 12px;
}
.gallery-tabs button.active img{
    filter: invert(25%) sepia(44%) saturate(1050%) hue-rotate(347deg) brightness(90%) contrast(95%);
    filter: invert(1) brightness(200);
}
.fal.fa-phone::before,.far.fa-phone::before,.fas.fa-phone::before{
    transform: rotate(90deg);
        display: block;
}

.hgroup-sliderwrapper .owl-carousel .owl-stage {
    display: flex;
}

.hgroup-sliderwrapper  .owl-carousel .owl-item {
    display: flex;
    height: auto !important;
}

.hgroup-sliderwrapper .slide {
    display: flex;
    width: 100%;
}

.hgroup-sliderwrapper .colbxshdw-wrap {
    display: flex;
    width: 100%;
}

.hgroup-sliderwrapper .colbxshdw-wrap > div {
    display: flex;
}

.hgroup-sliderwrapper .colbxshdw-block-main {
    display: flex;
    width: 100%;
}

.hgroup-sliderwrapper .colbxshdw-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.hgroup-carousel .owl-nav button .sliderarrow {
    background-color: var(--customnewbg-themecolor);
    border-radius: 30px;
    color: var(--cusnewwhite-color);
    border: 1px solid var(--customnewbg-themecolor);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: block;
    line-height: 36px;
    margin: 0 5px;
}
.darksliderwrapper .hgroup-carousel .owl-nav button .sliderarrow{
    background-color: var(--cusnewwhite-color);
    color: var(--customnewbg-themecolor);
    border-color: var(--cusnewwhite-color);
}
.hgroup-carousel .owl-nav {
    text-align: center;
}



.testi-area-1 {
    padding-top: 243px
}



.testi-box {
    padding: 50px;
    background-color: var(--themesmoke-color);
    box-shadow: 0px 10px 15px 0px rgba(208, 219, 233, 0.3);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    padding-top: 130px;    margin-top: 100px;
    border: 1px solid rgba(var(--thm-base-rgb), .45);

}

.testi-box .testi-box-bg-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}



.testi-box_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    flex-direction: column;

}

.testi-box_img {
    min-width: 210px;
    max-width: 210px;
    border-radius: 50%;
    /* overflow: hidden; */
    width: 210px;
    height: 210px;
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 8px solid #fff;
}
.testi-box_img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
        object-position: top center;
}
.testi-box_name .box_namespl{
    display: inline-block;
    letter-spacing: 1px;
    border-top: 1px solid #000;
}
.testi-box_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px dashed rgba(var(--thm-base-rgb), .45);
}

.testi-box_name {
    font-size: 24px;
    margin-bottom: 3px;
    margin-top: -0.24em;
    font-weight: 600
}

.testi-box_desig {
    color: var(--customnewbg-themecolor);
    margin-bottom: -0.45em;
    display: block
}

.testi-box_text {
    font-size: 20px;
    font-family: var(--title-font);
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 10px;
    min-height: 62px;
}

.testi-box_review {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px
}

.testi-box_review i {
    font-size: 14px;
    color: var(--customnewbg-themecolor)
}



.testi-thumb {
    border-radius: 20px
}

.testi-thumb img {
    border-radius: 20px
}

.testi-slider2 .slick-arrow {
    right: 0;
    bottom: 33px;
    top: auto;
    left: auto;
    opacity: 1;
    visibility: visible;
    -webkit-filter: drop-shadow(0px 0px 20px #DDE8FB);
    filter: drop-shadow(0px 0px 20px #DDE8FB);
    box-shadow: none
}

.testi-slider2 .slick-arrow.slick-prev {
    right: calc(60px + 20px)
}

.testi-card_quote {
    margin-bottom: 30px
}

.testi-card_name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px
}

.testi-card_desig {
    margin-bottom: 11px;
    font-weight: 400;
    display: block;
    color: var(--customnewbg-themecolor)
}

.testi-card_text {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--title-font);
    margin-top: -0.4em;
    margin-bottom: 40px;
    padding-bottom: 31px;
    border-bottom: 1px solid #D0DBE9
}

.testi-card_profile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.testi-card_avater {
    border-radius: 10px
}

.testi-card_avater img {
    border-radius: 10px
}
.alumini-carousel .owl-nav {
    z-index: 10;
    text-align: center;
    margin-top: -20px;
    position: relative;
}
.alumini-carousel .owl-nav button  {
    display: inline-block;
    padding: 0;
    z-index: 3;
    border-radius: 50%;
}
.alumini-carousel .owl-nav button .sliderarrow {
    background-color: var(--customnewbg-themecolor);
    border-radius: 30px;
    color: var(--cusnewwhite-color);
    border: 1px solid var(--customnewbg-themecolor);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: block;
    line-height: 36px;
    margin: 0 5px;
}
.program-details-tab-content__inner.higherrow-section{
    color: var(--cusnewwhite-color);
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--customnewbg-themecolor);
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    width: 45px;
    height: 45px;
    border: 1pt solid var(--cusnewwhite-color);
    line-height: 23px;
    text-align: center;
    background: linear-gradient(315deg, #562e10 0%, #ef6f11 100%);
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.breadcrumb-carousel .slide{
    position: relative;
    z-index: 2;
    padding: 120px 0;
    min-height: 400px;
}
.breadcrumb-carousel .slide .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: var(--thm-bg);
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    z-index: 1;
}
.breadcrumb-carousel .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    z-index: 25;
}
.breadcrumb-carousel .slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(0,0,0,0.35);
}
.breadcrumb-carousel .slide:after {
    content: "";
    width: 100%;
    height: 40%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(0deg, var(--customnewbg-themecolor) 10%, transparent );
} 
.stemnew-extraimg {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.spltext-fontfamily{
    font-family: var(--font-caveat);
}
.font26-style{
    font-size: 26px;
}
.spltext-btmscroll{
    font-family: var(--font-caveat);
    font-size: 25px;
    text-align: center;
}

.darkslider-mainwrapper .newsevent-carousel .owl-nav button .sliderarrow {
    background-color: var(--cusnewwhite-color);
    color: var(--customnewbg-themecolor);
    border-color: var(--cusnewwhite-color);
}
.darkslider-mainwrapper .newsevent-homecol.blogcolumn .single-blog-style1{
    background: var(--cusnewwhite-color);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.45);
        border: 1px solid #f9e3d2;
}
/*** responsive ***/

@media (max-width: 1199px) {

    .img-box4{
        margin-right: 0;
        padding-right: 245px;
        padding-bottom: 12px;
    }
    .feature-grid {
        padding: 45px 15px
    }
    .feature-grid_icon {
        margin: 0 auto 30px auto
    }
}
@media screen and (min-width: 768px) {
    .main-slider .content{
            padding-left: 20px;
    padding-right: 20px;    
    }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    .container, .container-sm {
        max-width: 700px;
    }
}
@media (max-width: 1199px) {
    .contact-form-wrap {
        margin: 0;

    }
    .img-box1 {
        display: inline-block;
        padding-bottom: 25px
    }
}
@media screen and (max-width: 1100px){
    .customanimate-shape .shape-mockuptop1{
        top: 40px;
        width: 85px;
    }
    .customanimate-shape .shape-mockuptop2{
        width: 80px;
        bottom: -25px!important;
    }
    .customanimate-shape .shape-mockup1{
        top: 40px!important;
        width: 85px;
    }
    .customanimate-shape .shape-mockup2{
        width: 80px;
    }
    .tagline-wrap .tagpos-iconwrap{
       width: calc(100% - 35px);
    }
}
@media screen and (max-width: 991px){
    .animatedrocket-imgwrap .animatedrocket-img {
        position: absolute;
        top: -93px;
        left: 0;
        width: 130%;
        right: 0;
    }
}
@media(max-width:768px){
  .board-section .board{
    width:95%;
  }

  .board-section .stand{
    gap:80px;
  }
}
@media screen and (max-width: 767px){
    .animated-gifbg {
       
        top: 80px;
        bottom: 0px;
        height: 750px;
        right: 0;
        width: 180%;
    }
    .tagline-wrap .join-as-advisor {
        width: 100%;
    }
    .animatedrocket-imgwrap .animatedrocket-img{
        width: 160%;top: -100px;right: -100px;
    }
    .map-sec {
        height: 400px
    }
    .map-contact {
        padding: 40px 40px
    }
    .contact-info {
        margin-bottom: 30px
    }
    .contact-info:last-of-type {
        margin-bottom: 0
    }
    .contact-form-wrap {
        padding: 40px 30px;
        background-position: left center
    }
    .extracuri-innerwrap.img-box1 {
        padding-bottom: 25px
    }
    .feature-grid_text {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
    .feature-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        gap: 15px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto
    }
}
@media screen and (max-width: 560px){
    .animated-gifbg {
        top: 90px;
        bottom: 0px;
        height: 750px;
        right: 0;
        width: 180%;
        background-size: 155%;
    }
    .tagline-wrap .tagpos-iconwrap .tagpos-icon {
        width: 100%;
    }
    .tagline-wrap .tagpos-iconwrap{
            flex-wrap: wrap;
            gap: 20px 0;
    }
    .map-contact {
        padding: 40px 20px
    }
}

@media (max-width: 575px) {
    .extracuri-innerwrap.img-box1 {
        padding-bottom: 278px
    }
}

@media screen and (max-width: 480px){
    .animated-gifbg {
        top: 150px;
        bottom: 0px;
        height: 750px;
        right: 0;
        width: 180%;
        background-size: 155%;
    }
    .animatedrocket-imgwrap .animatedrocket-img {
        width: 225%;
        top: -100px;
        right: -100px;
    }
}

@media (max-width: 375px) {
    .contact-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px
    }
    .contact-info .media-body {
        width: 100%
    }
    .contact-feature {
        display: block
    }
    .contact-feature .contact-feature-icon {
        margin-bottom: 20px
    }
    .img-box1 .img2 {
        position: relative;
        margin-top: 20px
    }
    .img-box1 .img2 img {
        width: 100%
    }
    .img-box1 {
        padding-right: 0;
        padding-bottom: 0
    }
}
.cg-section {
    background: #5C3317;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
}
.cg-section::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cg-section::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -40px;
    width: 260px; height: 260px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.cg-icon {
    width: 52px; height: 52px;
    margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.cg-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.6rem;
}
.cg-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.cg-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 2rem;
}
.cg-gmail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #3c1f0a;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    margin-bottom: 2.2rem;
    transition: background 0.2s, transform 0.15s;
}
.cg-gmail-btn:hover { background: #f5e8df; transform: translateY(-2px); }
.cg-gmail-btn img { width: 20px; height: 20px; }
.cg-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 0 auto 1.8rem;
    width: 60%;
}
.cg-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.cg-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.cg-pill-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #f0c080;
    flex-shrink: 0;
}



.customgallery-row{
    justify-content: center !important;
}
.img-cards img{
        object-fit: cover !important;
}
.facility-img img{
  height: auto;
}

.single-blog-style1 .news-events .inner {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.single-blog-style1 .news-events .inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-blog-style1 .news-events .inner .pdf-card-preview {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.single-blog-style1 .news-events .inner .pdf-card-preview iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .single-blog-style1 .news-events .inner {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .single-blog-style1 .news-events .inner {
        height: 180px;
    }
}
                                   
  .learn-section{
    display: none;
  }  

  .socialmedia-icons{
    display: flex;
    gap: 20px;
  } 

/* Home page */
@media (max-width: 991px) {
    .homeessentials-content-box ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .homeessentials-content-box ul li {
        width: 50%;
    }
    .homesingle-essentials-box {
        padding: 20px;
    }

    .abtthumb-left {
        padding-bottom: 160px !important;
    }
    .homeabout-secwrapper .homeroundimg-shape {
        max-width: 500px !important;
        bottom:-70px;
        left:15%;
    }

    .hmvisionmission-grid {
        align-items: stretch;
    }
    .hmvisionmission-img {
        width: 45%;
        flex-shrink: 0;
        overflow: hidden;
    }
    .hmvisionmission-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    .hmvisionmission-content {
        width: 55%;
    }
    .homecusbtn {
        margin-bottom: 15px !important;
    }

    /* News & Events image */
    .img-holder .inner {
        height: 200px !important;
        overflow: hidden;
    }
    .img-holder .inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .hmvisionmission-grid .hmvisionmission-img {
        height:350px !important;
}
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .homeessentials-content-box ul li {
        width: 50%;
    }
    .homesingle-essentials-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .homeroundimg-shape {
        left: 30px;
        right: 52px;
    }
    .abtthumb-left {
        padding-bottom: 60px !important;
    }

    /* Vision / Mission */
    .hmvisionmission-grid {
        flex-direction: column;
        text-align: center;
    }
    .hmvisionmission-img {
        width: 100%;
        overflow: hidden;
    }
    .hmvisionmission-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    .hmvisionmission-content {
        width: 100%;
    }
    .custh-btn {
        margin-bottom: 15px !important;
    }

    /* News & Events image */
    .img-holder .inner {
        height: 160px !important;
        overflow: hidden;
    }
    .img-holder .inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
     .hmvisionmission-grid .hmvisionmission-img {
        height:350px !important;
}
   
}




.event-style-one-item .event-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== FIX ROW ===== */
.event-style-one-item .row.event-stylerow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* ===== TABLET FIX (768px – 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {

    .event-style-one-item .col-lg-4 {
        width: 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .event-style-one-item .col-lg-8 {
        width: 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }
    .event-style-one-info {
            padding: 6px 18px;       
}
.event-style-one-info .right-info{
    padding-left:17px !important;
}
}

/* ===== MOBILE FIX for Mission/Vision (max 767px) ===== */
@media (max-width: 767px) {

    .event-style-one-item .row.event-stylerow {
        flex-direction: column;
        text-align: center;
    }

    .event-style-one-item .col-lg-4,
    .event-style-one-item .col-lg-8 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .event-style-one-item .event-thumb {
        margin-bottom: 15px;
    }

    /* Fix: remove excessive padding on mobile */
    .event-style-one-info {
        padding: 15px !important;
        display: block !important;
        box-shadow: none !important;
        text-align: center;
    }

    .event-style-one-info .right-info {
        padding-left: 0 !important;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        border-left:none !important;
        border-bottom:1px solid rgb(255 255 255 / 25%);
        padding-bottom:10px;    
    }
    

    .event-style-one-info .left-info {
        width: 100%;
    }

    .event-style-one-info .left-info h2 {
        font-size: 20px;
        text-align: center;
    }

    .event-style-one-info .left-info p {
        font-size: 14px;
        text-align: center;
        margin: 0 auto;
        max-width: 90%;
    }

    /* Fix: even card spacing */
    .event-style-one-item {
        margin-bottom: 20px;
    }
    .event-style-one-item::after {
        width:100% !important;
    }
    .event-style-one-item .event-thumb img {
        width:90% !important;
        border-radius: 10px;
    }
    .event-thumb{
        display:flex;
        justify-content: center;
    }
    
    .col-lg-6.d-flex {
        display: block !important;
    }
    .xb-about-right {
        margin-right: 0 !important;
        width: 100%;
    }

    .xb-about-right * {
        margin-bottom:30px;
    }
    

.abouttitle {
    justify-content:center;
}

}

/* ===== SMALL MOBILE (max 567px) ===== */
@media (max-width: 567px) {
    .event-style-one-info {
        padding: 12px !important;
        box-shadow: none !important;
        display: block !important;
    }

    .event-style-one-info .left-info p {
        max-width: 100%;
        font-size: 13.5px;
    }

    .event-style-one-info .left-info h2 {
        font-size: 18px;
    }
    
}
/* ===== TABLET (768px – 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {

    .principal-box {
        gap: 20px;
    }

    .right-panel .content {
        font-size: 15px;
    }

    .right-panel .title {
        font-size: 24px;
    }

    .right-panel .tagline {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    /* Stack layout */
    .principal-box {
        flex-direction: column;
        text-align: center;
    }

    /* Full width panels */
    .principal-box .left-panel,
    .principal-box .right-panel {
        width: 100%;
    }

    /* Image spacing */
    .principal-photowrap {
        margin-bottom: 20px;
    }

    /* Text readability */
    .right-panel .content {
        font-size: 14px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .right-panel .title {
        font-size: 20px;
    }

    .right-panel .tagline {
        font-size: 14px;
    }

    /* Signature align center */
    .signature {
        text-align: center !important;
    }
    .right-info .event-cusicon {
        height:65px;
        width:65px;
        min-width:56px;
}
}

.tabs.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* BUTTON STYLE FIX */
.tabs.gallery-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    white-space: nowrap;
}

/* ICON FIX */
.tabs.gallery-tabs button img {
    width: 18px;
    height: auto;
}

/* ===== TABLET ===== */
@media (min-width: 768px) and (max-width: 991px) {

    .tabs.gallery-tabs {
        gap: 10px;
        padding: 0 10px;
    }

    .tabs.gallery-tabs button {
        padding: 8px 14px;
        font-size: 14px;
    }

    .tabs.gallery-tabs button img {
        width: 16px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

    .tabs.gallery-tabs {
        justify-content: center;
        gap: 8px;
        padding: 0 10px;
    }

    .tabs.gallery-tabs button {
        padding: 7px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .tabs.gallery-tabs button img {
        width: 14px;
    }
}



@media (max-width: 767px) {
.stem-iconimg{
margin-top:20px !important;
}
.foot-shape-top svg {
    height:80px;
}
.header-logo img {
    width:200px !important;
}
.xb-logo-mobile img {
    height:65px !important;
    width:65px !important;
}
.choose__img{
    padding-left:70px !important;
  }
  .order-0 {
    order: 1 !important;
    margin-top: 74px;
}
.page-contains-btn li {
   padding: 5px 9px 7px;
}
.program-details-form-box{
    border-top:1px dashed rgba(255, 255, 255, 0.5);
    margin-top:10px !important;
    border-left:none !important;
}
.cusnewtitle, .darkbrownclr-text
{
    font-size:15px !important;
    margin-top:0px !important;
}
.tagline-wrap{
    padding-top:60px !important;
    padding-bottom: 0px !important;

}
.title.cusnewtitle.cusnewtitle-medium {
    justify-content:center !important;
    padding-top:0px !important;
}
.newsletter-style-one-items {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
    .page-contains-box ul.scroll-nav {
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }
    
/*** 
=============================================
    Extra curricular activities start
=============================================
***/
    .extracuri-section {
        padding-top:40px !important;
        padding-bottom:40px !important;
    }
    .requirements-for-degree__content {
        flex-direction: column;
    }

    .requirements-for-degree__content ul {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ede8e6;
    }

    .requirements-for-degree__content ul:last-child {
        border-bottom: none;
    }
    .iit-partnership-section{
        padding-bottom:140px !important;
    }
    .learning-categories-area{
        padding-top:30px !important;
    }
    .event-style1-area{
        padding-top:30px !important;
        padding-bottom :60px !important;
    }
    .iitactivity .event-style1-content-box {
        margin-left:1px !important;
        margin-top:15px !important;
    }
    .iitactivity .event-style1-img-box {
        margin-right:1px !important;
    }
    .customstrick-book {
        flex-direction: column;
    }

    .customstrick-book::before {
        display: none;
    }

    .bookpage {
        width: 100%;
        padding: 25px 20px;
    }

    .bookleft {
        order: 1;
        border-radius: 12px 12px 0 0;
        box-shadow: none;
        border-bottom: none;
    }

    .bookright {
        order: 2;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .bookleft::after,
    .bookright::after {
        display: none;
    }
    .cumrowtwo-row .cumrowtwo-rowleft {
        border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
        border-right:none !important;
    }
    .cumrowtwo-iconimg {
        padding-bottom:10px !important;
    }
    .cumrowtwo-rowryt {
        padding-top:10px !important;
    }
    .extracuriyoga-section{
        padding-bottom:128px !important;
    }
    .extracurisilambam-section{
        padding-top:20px !important;
    }
    .pe-4{
        padding-right:13px !important;
        padding-left:22px !important;
    }
    .thumb-extra-two{
        margin-left:42px !important;
    }
    .cuscommon-innerpara{
        padding-bottom:40px !important;
    }
    /*** 
=============================================
    Extra curricular activities end
=============================================
***/
.involment-activities-right {
    margin-left:0px !important;
    border:none !important;
    box-shadow:none !important;
   
}
.smart-gallery-section{
    padding-bottom:30px;
}
.tabs.gallery-tabs button {
    gap:0px !important;
}
.preheader_links{
    justify-content:center;
}
 .header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .xb-help_desk ul {
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .xb-help_desk ul li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .xb-info {
        margin-top: 8px;
        text-align: center;
    }
    /* =============================================
    higher secondary activities start
============================================= */
    .standardsteps-sectionwrapper .row {
        flex-direction: column;
    }
    .standardsteps-left {
        order: 1;
    }

    .standardsteps-right {
        order: 2;
    }

    .standardsteps-leftimg img {
        width: 100%;
        
        object-fit: cover;
        margin-top: 15px;
    }

    .standardsteps-left {
        padding: 0 15px;
    }
     /* =============================================
    higher secondary activities end
============================================= */
/* .benifitwrap-section{
    background-color: #6b4930;
} */
.newsevent-sec{
    padding-bottom:20px;
}
.patnerhome-slider {
    background:none !important;
}
.abouttitle{
    font-size:25px !important;
}
.menu-item-has-children a{
max-width:205px;
}
/* .xb-menu-primary li a {
    line-height:35px !important;
} */
.big-title h2{
    text-align:center !important;
}
.sub-title h5{
    text-align:center !important;
}
.header__wrap{
    padding:0px !important;

}
 .main-slider .slide {
        height: 600px; 
        position: relative;
    }

    .main-slider .image-layer {
        height: 100% !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat;
    }

    .main-slider .auto-container {
        height: 100%;
        display: flex;
        align-items: center; 
    }

    .main-slider .content {
        width: 100%;
    }
    .ourvission-missionhome{
        padding-bottom:150px;
        padding-top:0px !important;

    }
    .feature-sec{
        padding-top:20px;
    }
    .xb-footer-main{
        padding-bottom:10px !important;
    }
    .pagestick-section{
        padding-top:125px !important;
    }
    .customheading-designtwo{
        padding-top:0px !important;
    }
    .pop_eve{
        padding-top:10px !important;
    }
    .keybenifit-areasection{
        padding-bottom:125px !important;
        padding-top:125px !important;
    }
    .newsevents-section{
        padding-top:140px !important;
    }
    .aluminiform-section{
        padding-top:140px !important;
        padding-bottom:140px !important;

    }

   
    .alumini-carousel .slide {
        height: 100%;
    }
    .testi-box_content {
        flex-direction:row !important;
    }

    .testi-box {
        height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px 20px;
        padding-top: 110px;
    }

    /* Content area */
    .testi-box_content {
        flex-grow: 1;
        text-align: center;
        align-items: center;
    }

    /* TEXT */
    .testi-box_text {
        font-size: 16px;
        min-height: auto;
    }

    .testi-box_bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-top: auto;
    }

    /* NAME comes just below text */
    .testi-box_bottom > div:first-child {
        order: 1;
    }

    /* STARS always at bottom */
    .testi-box_review {
        order: 2;
        justify-content: center;
        margin-top:10px;
    }
    .mob_line li a{
        line-height:30px !important;

    }
    .computer-exam-section{
        padding-bottom:150px !important;
        padding-top:100px !important;
    }
    .programoffer-section{
        padding-top:30px !important;
       

    }
    .cusnewtitle{
        padding-top:70px !important;
    }
    .vis_mis{
        padding-top:0px !important;
    }
    .extracuri_image{
        margin-bottom:10px !important;
    }
    .patnerabout-title{
        padding-top:2px !important;
    }
    .newsevent-sec{
        padding-top:20px !important;
    }
    .featureslider-sec
    {
        padding-bottom:125px !important;
    }
    /* .newgold-clrtext {
        padding-top:5px !important;
    } */
    .commonleft-right-wrapper{
        padding-top:70px !important;
        padding-bottom:250px !important;

    }
   
    .mission-vission{
        padding-top:0px !important;
        padding-bottom:0px !important;

    }
    .smart-gallery-section{
        padding-top:0px !important;
    }
    .silam-icon{
        margin-top:10px !important;
    }
    .computer-suits-section{
        padding-bottom:50px !important;
    }
    .about-head{
        padding-top:5px !important;
    }
    .learning-categories-area{
        padding-bottom:40px !important;
    }
    .langlab-section{
        padding-top:50px !important;
    }
    .vis_mis{
        padding-top:30px !important;
    }
}



@media (min-width: 768px) and (max-width: 991px) {
    
    .newsletter-style-one-items  {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
     .iitactivity .event-style1-content-box {
        margin-left:1px !important;
        margin-top:15px !important;
    }
    .iitactivity .event-style1-img-box {
        margin-right:1px !important;
    }
     .steminner-rowright {
        padding-top:20px;
    }
    .involment-activities-right {
    margin-left:0px !important;
    border:none !important;
    box-shadow:none !important;
   
}
.preheader_links{
    justify-content:center;
}
 .header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .xb-help_desk ul {
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .xb-help_desk ul li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .xb-info {
        margin-top: 8px;
        text-align: center;
    }
 /* =============================================
    higher secondary activities start
============================================= */
     .standardsteps-sectionwrapper .row {
        text-align: center;
    }

    .standardsteps-left,
    .standardsteps-right {
        margin-bottom: 20px;
    }

    .standardsteps-leftimg img {
        max-height: 350px;
        object-fit: cover;
    }
    
.patnerhome-slider {
    padding:0px !important;
}
     /* =============================================
    higher secondary activities end
============================================= */

.order-0 {
    order: 1 !important;
    margin-top: 74px;
}
.choose__img{
    padding-left:70px;
}
 .mob_line li a{
        line-height:30px !important;

    }
        .menu-item-has-children a {
        max-width: 205px;
    }
    .abouttitle{
        padding-top:65px !important;
    }
    .ourvission-missionhome{
        padding-top:0px !important;
    }
    .feature-sec{
        padding-top:0px !important;
    }
    .aluminitesti-section{
        padding-top:0px !important;
    }
    .newsevent-sec{
        padding-top:0px !important;
    }
    .commonleft-right-wrapper{
        padding-bottom:150px !important;
        padding-top:20px !important;
    }
    .thumb-style-two .roundimg-shape {
        top:-9%;
        left:15%;
    }
    .smart-gallery-section{
        padding-top:0px !important;
    }
      .silam-icon{
        margin-top:25px !important;
    }

  
}

.map{
    height:290px !important;
}
.abtthumb-extraimg2 {
    margin-bottom:-80px !important;
}
.newsevent-carousel .owl-item {
    display: flex;
}

.newsevent-carousel .slide {
    display: flex;
    width: 100%;
}

.newsevent-carousel .blogcolumn,
.newsevent-carousel .newsevent-homecol {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.newsevent-carousel .single-blog-style1 {
    display: flex;
    flex-direction: column;
    height: 540px;
}

.newsevent-carousel .single-blog-style1 .img-holder {
    flex-shrink: 0;       
}

.newsevent-carousel .single-blog-style1 .img-holder .inner img {
    width: 100%;
    height: 220px;          
    object-fit: cover;
    object-position: center;
}

.newsevent-carousel .single-blog-style1 .text-holder {
    display: flex;
    flex-direction: column;
    flex: 1;               
}

.newsevent-carousel .single-blog-style1 .text-holder .text {
    flex: 1;                 
}

.newsevent-carousel .single-blog-style1 .text-holder h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsevent-carousel .single-blog-style1 .text-holder .text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;   
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsevent-carousel .single-blog-style1 .bottom-box {
    flex-shrink: 0;          
    margin-top: auto;
}