:root {
  --body-font: "Roboto", sans-serif;
  --heading-font: "Yantramanav", sans-serif;
  --theme-color: #1a1926;
  --theme-color2: #FDA31B;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #012758;
  --footer-bg2: #1a1926;
  --footer-text-color: #F5FAFF;
}

.img,
img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

a {
  color: var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

body {
  background: #ffdca7 url("../img/bg01.png") !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header-top {
  padding: 0px 0;
  position: relative;
  background: var(--theme-color);
  z-index: 1;
}

.header-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 25%;
  background: var(--theme-color2);
  z-index: -1;
}

.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-contact ul li {
  display: flex;
  gap: 10px;
  /* border-right: 1px solid rgba(255, 255, 255, .2); */
  /* padding-right: 20px; */
}

.header-top-contact ul li:last-child {
  border: none;
  padding-right: 0;
}

.header-top-contact ul li a {
  color: var(--color-white);
  font-weight: 400;
}

.header-top-contact ul li a i {
  color: var(--theme-color2);
  margin-right: 5px;
}

.header-top-social span {
  color: var(--color-white);
  font-weight: 500;
}

.header-top-social a {
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: var(--color-white);
  font-size: 14px;
  background: var(--theme-color);
  text-align: center;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}

.header-top-social a:hover {
  color: var(--theme-color2);
}

@media all and (max-width: 1199px) {
  .header-top-contact ul {
    gap: 10px;
  }
  .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }
}
.navbar {
  background: #fff url(../img/h_bg.png);
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 999;
}

.feature-area {
  position: relative;
  z-index: 1;
}

.fa-negative {
  margin-top: 50px;
  margin-right: 20px;
}

.feature-item {
  position: relative;
  padding: 20px 25px;
  background: var(--color-white);
  border-radius: 50px 50px 50px 0px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.feature-item .count {
  position: absolute;
  right: 30px;
  top: 0px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
  background: var(--theme-color);
  margin-bottom: 25px;
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon img {
  width: 48px;
  filter: brightness(0) invert(1);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  color: var(--color-dark);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--color-dark);
  margin: 0;
}

@media all and (max-width: 1199px) {
  .fa-negative {
    margin-top: -50px;
    margin-left: 20px;
  }
  .feature-item.active::before {
    transform: scale(1);
  }
}
.theme-btn {
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 20px 0px 20px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}

.carousel-item {
  border-radius: 10px;
  overflow: hidden !important;
}

.btn-swap {
  background-color: #fff;
  border: 2px solid #5800d6;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  color: #5800d6;
}
.btn-swap span {
  position: relative;
  z-index: 1;
}
.btn-swap:hover {
  color: #fff !important;
}
ss .btn-swap:hover:after {
  width: 100%;
  z-index: 0;
}
.btn-swap:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #5800d6;
}

.bgth {
  background: url("../img/bg.jpg");
  background-size: cover;
}

.i_box {
  display: flex;
  background: #fff;
  gap: 10px;
  align-items: center;
  border: #211d70 1px solid;
  padding: 1em;
  border-radius: 1em;
  box-shadow: #dddddd 4px 5px 0;
  color: #211d70;
}
.i_box:hover {
  border-color: #f00;
  box-shadow: rgba(184, 0, 0, 0.1843137255) 4px 5px 0;
}

@media only screen and (max-width: 768px) {
  .hero-single {
    padding-top: 0;
    margin-top: 46px;
  }
  .hero-single::before {
    display: none;
  }
  .hero-single .container {
    display: none;
  }
  .fa-negative {
    margin-top: 2.2em;
  }
  .hero-slider.owl-theme .owl-nav {
    display: none;
  }
  .bgdsfds .col-md-2 {
    margin-top: 2em;
  }
  .counter-box .counter {
    font-size: 3em;
  }
}
.about-content {
  border-bottom: 0;
}

.header-top-social {
  padding: 2px 0;
}

.header-top-right ul li a {
  line-height: 32px;
}

.title_bx {
  position: relative;
  margin-bottom: 1.7em;
}
.title_bx h4 {
  margin: 0px;
  margin: 0em;
  background: #fda31b;
  padding: 4px;
  height: 48px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.title_bx .card {
  border: #fda31b 1px solid !important;
}
.title_bx ul li a {
  color: #211d70;
}

.terms-content {
  background: hsla(0, 0%, 100%, 0.55);
  border-radius: 1em;
}

#eapps-instagram-feed-1 {
  overflow: hidden !important;
  height: 350px;
}

.news_bx {
  border-bottom: rgba(33, 29, 112, 0.315) 1px dotted;
  padding-bottom: 1em;
  display: inline-block;
}
.news_bx:last-child {
  border-bottom: 0 !important;
}
.news_bx .news_img {
  margin-top: 5px;
}
.news_bx .news_img img {
  height: 30px;
  width: auto;
}
.news_bx .date_st {
  font-size: 12px;
  color: rgba(33, 29, 112, 0.462);
}
.news_bx:hover {
  color: #f00;
}

.bg_blink {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #c70000, #fff200);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.adm_c .feature-item {
  padding: 13px;
}
.adm_c .feature-content h4 {
  margin: 0;
}
.adm_c .feature-img {
  margin: 0;
}
.adm_c .feature-img img {
  aspect-ratio: 3/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.bgdsfds .feature-item {
  padding-top: 0px;
  overflow: hidden;
}
.bgdsfds .feature-item .feature-content h3 {
  background: #fda31b;
  margin: 0 -26px;
  color: #fff;
  margin-top: -1px;
  text-align: center;
  padding: 0.7em 0;
  font-size: 1.4em;
}

.news_marquee {
  background: #fff;
}

.menu_stl {
  margin: 0;
  line-height: 1.8em !important;
}

@media screen and (min-width: 992px) {
  .menu_stl .nav-link {
    font-weight: bold;
  }
  .navbar {
    padding: 0;
    line-height: 3rem;
  }
  .navbar .dropdown-menu {
    line-height: initial;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover > .dropdown-menu,
  .dropend:hover > .dropdown-menu {
    display: block;
  }
  .dropdown:hover > .dropdown-menu {
    margin-top: -0.5rem;
  }
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: -0.5rem;
    left: 100%;
    margin-left: 0;
  }
  .dropend .dropdown-toggle::after {
    left: calc(100% - 15px);
    top: 40%;
    background: none !important;
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.3s ease-in-out;
  }
  /* Nested dropdowns (dropend) on hover */
  .dropdown-menu .dropend:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 100%;
    animation: fadeIn 0.3s ease-in-out;
  }
  /* Hide dropdowns by default */
  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }
  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media only screen and (min-width: 768px) {
  .dropdown-item {
    position: relative;
    padding-bottom: 0.4rem;
    transition: color 0.3s ease;
    text-decoration: none;
    line-height: 1.7em;
  }
  .dropdown-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: rgba(109, 109, 109, 0.2);
    transition: width 0.3s ease;
  }
}
.dropdown-item:hover::after,
.dropdown-item:focus::after {
  width: 100%;
}

.StudentZone {
  background: #ffecd5;
}
.StudentZone .offcanvas-header {
  background: #fda31b;
}
.StudentZone ul {
  margin: 0;
  padding: 0;
}
.StudentZone ul li {
  display: block;
  padding: 5px 0;
  border-bottom: rgba(0, 0, 0, 0.05) 1px solid;
}

.feature-img {
  margin-bottom: 1em;
  text-align: center;
}

.feature-img img {
  width: 100%;
  border-radius: 50%;
  border: 1px dashed #999999;
  padding: 4px;
}

.feature-item {
  border: #d7d7d7 1px solid;
  border-radius: 50px 0 50px 0px;
}

/*.bgrs{background-image: url('../img/cicrle-shape.webp') !important; background-color: : #f7ffd8; background-size: cover; }*/
.bgrs {
  position: relative;
  background: #fff5f8;
  z-index: 1;
  background-repeat: repeat-x;
  background-size: auto;
  background-position: bottom;
  overflow: hidden;
}

.bgrs::before {
  /*width: 100%;
  height: 100%;
  bottom: 0px;
  right: 1%;
  content: "";
  position: absolute;
  background-image: url('../img/bg2.png');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;*/
  background-image: url("../img/bg2.png");
  top: 0;
  left: 0;
  background-size: 100% 100%;
  opacity: 0.1;
  z-index: 0;
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  height: 100%;
}

.scrolling-text {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  margin-top: 2em;
  /* color: #fff; */
}

.scrolling-text ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  top: 100%;
}

.scrolling-text li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 18px;
  margin-bottom: 1em;
}

/* .scrolling-text li a{color: #fff; } */
.scrolling-text span {
  font-size: 14px;
  /* color: #fff; */
  padding: 0;
  margin: 0;
}

.cta-area {
  position: relative;
  padding-bottom: 4em;
}

.cta-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.list_style ul li {
  padding: 2px 0;
}

.list_style ul li a {
  display: block;
}

.list_style ul li a:hover {
  color: var(--theme-color2);
  text-decoration: underline;
}

/*====================
28. Counter css 
======================*/
.counter-area {
  position: relative;
  background-image: url(../img/counter/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

.counter-area::before {
  content: "";
  position: absolute;
  background: var(--theme-color);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: -1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  width: 100px;
  height: 100px;
  line-height: 88px;
  color: var(--color-white);
  background: var(--theme-color2);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}

.counter-box .icon img {
  width: 60px;
  filter: brightness(0) invert(1);
}

.counter-box .icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 3px solid var(--color-white);
  transition: var(--transition);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: -1;
}

.counter-box:hover .icon::before {
  left: 0;
  top: 0;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}
/*====================
29. Cta css 
======================*/
/* ===================
30. Event css 
====================== */
.event-item {
  position: relative;
  background: var(--color-white);
  border-radius: 50px 0px 50px 0;
  padding: 20px 20px 20px 20px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.event-location {
  margin-bottom: 12px;
}

.event-location i {
  color: var(--theme-color2);
}

.event-img {
  position: relative;
  overflow: hidden;
  border-radius: 40px 0px 40px 0;
}

.event-img img {
  border-radius: 40px 0px 40px 0;
  box-shadow: var(--box-shadow);
}

.event-item:hover .event-img img {
  transform: scale(1.1);
}

.event-meta {
  display: flex;
  gap: 15px;
  margin: 14px 0;
}

.event-meta i {
  color: var(--theme-color2);
  margin-right: 5px;
}

.event-title {
  margin-bottom: 10px;
}

.event-title:hover {
  color: var(--theme-color2);
}

.event-btn {
  margin-top: 20px;
}

.event-btn .theme-btn {
  padding: 11px 15px;
}

.event-slider .event-item {
  box-shadow: none;
  margin-bottom: 0;
}

.event-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.event-slider .owl-dots .owl-dot span {
  background: var(--theme-color2);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.event-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color2);
  width: 20px;
}

.event-slider .owl-nav {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin: 0;
}

.event-slider:hover .owl-nav {
  display: block;
  opacity: 1;
  visibility: visible;
}

.event-slider .owl-nav button {
  height: 48px;
  width: 48px;
  line-height: 45px !important;
  top: 50%;
  background: var(--theme-color2) !important;
  color: var(--color-white) !important;
  font-size: 25px !important;
  position: absolute;
  border: none;
  margin: 0;
  padding: 0;
  transition: var(--transition);
  border-radius: 100%;
  margin-top: -24px;
}

.event-slider .owl-nav button:hover {
  background: var(--theme-color) !important;
}

.event-slider .owl-nav .owl-prev {
  left: -75px;
}

.event-slider .owl-nav .owl-prev:hover {
  left: -65px;
}

.event-slider .owl-nav .owl-next {
  right: -75px;
}

.event-slider .owl-nav .owl-next:hover {
  right: -65px;
}

/* ===================
31. Event single css 
====================== */
@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
/* ========================
25. Gallery css 
=========================== */
.gallery-item {
  position: relative;
  width: 100%;
}

.gallery-img {
  height: 100%;
}

.gallery-img img {
  width: 100%;
  border-radius: 50px 0px 50px 0;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.gallery-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--theme-color2);
  border-radius: 50px 0px 50px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.gallery-content:hover::before {
  opacity: 0.9;
  visibility: visible;
}

.gallery-link {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 60px;
  color: var(--color-white);
}

.gallery-link:hover {
  color: var(--color-white);
}

.gallery-content:hover .gallery-link {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/*====================
26. Choose css 
======================*/
/*====================
7. Site title css
======================*/
.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.site-heading p {
  margin: 0;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: 2px solid var(--theme-color2);
}

.site-title-tagline i {
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 55px;
  color: var(--color-dark);
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.site-title span {
  color: var(--theme-color2);
}

.heading-divider {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 10px;
  border: 3px solid rgb(33, 46, 84);
  border-right-color: transparent;
}

.heading-divider.light {
  border-color: rgba(255, 255, 255, 0.2);
  border-right-color: transparent;
}

.heading-divider::after {
  position: absolute;
  content: "";
  width: 30px;
  background-color: var(--theme-color);
  top: 0;
  bottom: 0;
  left: 18px;
}

/*====================
43. Video css 
======================*/
.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 80px 0px 80px 0;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(3, 2, 7, 0.2);
  border-radius: 80px 0px 80px 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 350px;
  z-index: 100;
}

.video-wrapper img {
  border-radius: 12px;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }
}
/*===================
18. Play btn
=====================*/
.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color2);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
.bgdsfds {
  background-color: #000;
  background-image: url(../img/bg_header.png);
}

.bg {
  background: var(--theme-bg-light);
}

/*====================
70. Footer css 
======================*/
.footer-area {
  background: var(--footer-bg);
  position: relative;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 220px;
  margin-bottom: 25px;
}

.copyright {
  position: relative;
}

.copyright .copyright-wrapper {
  padding: 25px 0;
  border-top: 1px solid var(--border-white-color);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color2);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color2);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--theme-color2);
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color2);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color2);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  /* justify-content: end; */
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 10px 0px 10px 0;
  background: var(--color-white);
  color: var(--theme-color2);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color2);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  transition: 0.3s;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 10px;
  border-radius: 10px 0px 10px 0;
  background: var(--theme-color2);
  text-align: center;
  transition: 0.3s;
  color: var(--color-white);
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: var(--theme-color2);
}

.subscribe-form .theme-btn::before {
  background: var(--color-white);
}

.subscribe-form .theme-btn:hover::after {
  border-color: var(--theme-color2);
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}
@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .copyright::before {
    width: 40%;
  }
}
/*====================
10. Scroll top css
======================*/
#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color2);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}
.logoname h4 {
  color: #542112;
  font-family: "Roboto";
}
.logoname p {
  margin: 0;
  padding: 0;
  font-size: 0.8em;
}

.ts-bg {
  background-image: url(../images/bgl.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ts-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 39, 88, 0.85);
}

.image-style-align-left {
  display: inline-block;
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
  max-width: 40%;
  height: auto;
}

.image-style-align-right {
  float: right;
  display: inline-block;
  margin-left: 1em;
  margin-bottom: 1em;
  max-width: 40%;
  height: auto;
}

p:has(img:first-child) {
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  .image-style-align-left {
    float: none;
    display: block;
    margin: 0 auto 1em auto;
    max-width: 100%;
  }
  .image-style-align-right {
    float: none;
    display: block;
    margin: 0 auto 1em auto;
    max-width: 100%;
  }
  .header-top::before {
    background: none;
  }
  .theme-btn {
    font-size: 12px;
  }
}
/*====================
46. Breadcrumb css
======================*/
.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--hero-overlay-color);
  opacity: 0.65;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 45px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  right: -21px;
  top: -2px;
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 900;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color2);
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .logo_Style .logo_img {
    width: 80px;
  }
  .logo_Style .logoname h4 {
    font-size: 0.95em;
  }
  .header-top-social {
    padding: 0;
  }
  .header-top-social a {
    line-height: 32px;
  }
}
@media only screen and (max-width: 1008px) {
  .logo_Style .logo_img {
    width: 80px;
  }
  .logo_Style .logoname h4 {
    font-size: 0.95em;
  }
  .header-top-social {
    padding: 0;
  }
  .header-top-social a {
    line-height: 32px;
  }
}
.highlight::after {
  content: url("../images/newicon.png");
  margin-left: 5px;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.blinking-text {
  animation: blinker 1s linear infinite;
}

.video_iframe {
  position: relative;
}
.video_iframe iframe {
  width: 100%;
  min-height: 450px;
}
.video_iframe .btnvideo {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 99;
}

#backToTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--theme-color2);
  color: white;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 5px;
}

#backToTopBtn:hover {
  background-color: #555;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 50px 0px 50px 0;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

/* .contact-info::before{
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  background: var(--theme-color);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  height: 20px;
  z-index: -1;
} */
.contact-info-icon {
  font-size: 35px;
  color: var(--color-white);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  background: var(--theme-color);
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  top: -15px;
  bottom: -15px;
  border: 3px solid var(--theme-color);
  border-radius: 40px;
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.contact-info p {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}

@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}
.contact-wrapper {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.contact-img {
  position: relative;
  padding-left: 20px;
}

.contact-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: var(--theme-color);
  border-radius: 20px 0 0 20px;
  clip-path: polygon(100% 0, 20% 50%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
}

.contact-img img {
  width: 100%;
  clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 50%, 10% 0);
}

.contact-form {
  padding: 25px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color2);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 50px 0px 50px 0;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.partner-area .owl-carousel .owl-item img {
  height: 105px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  max-width: 100% !important;
}/*# sourceMappingURL=mystyle.css.map */