:root {
  scroll-behavior: smooth;
  --theme-color: #eb3838;
  --theme-color2: #15224b;
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --theme-bg-light: #F2F3F5;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --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);
  --box-shadow3: 0 15px 15px rgba(0, 0, 0, 0.50);
  --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: linear-gradient(90deg,#142149,#233ba2);
  --footer-bg2: #125875;
  --footer-text-color: #F5FAFF;
  --overlaybg:rgba(11, 28, 57, .90);
  --eduact-soft2: #F6F5F5;
}
.table>:not(caption)>*>* {
    background-color: revert-layer !important;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}
.ptb-80{padding:80px 0;}
.ptb-100{padding:100px 0;}
.downhouse{color:#1b3884!important;}
.dhouse{color:#016436!important;}
.lhouse{color:#da251c!important;}
.shouse{color:#ffc107!important;}
h1,
h2,
h3,
h4,
h5,
h6 {
/*  font-family: var(--font-primary);*/
}
body{ font-family: 'Roboto', sans-serif; overflow-x: hidden;}
.bg {background: var(--theme-bg-light);}
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}
.logo img {max-height: 70px;}
.header-top {
  padding: 5px 0 6px 0;
  position: relative;
  /*background: #192b6a;*/
  background-image: linear-gradient(to right, #03a9f4 , #c9528c);
  z-index: 1;
}

.header-top::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0px;
  width: 28%;
  /*background: var(--theme-color);*/
  clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%);
  z-index: -1;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  padding-left: 0;
}

.header-top-contact ul li{
  display: flex;
  gap: 10px;
  border-right: 1px solid #457A90;
  padding-right: 20px;
}

.header-top-contact ul li:last-child{
  border: none;
}

.header-top-contact-icon{
  text-align: center;
}

.header-top-contact-icon img{
  width: 15px;
  font-size:15px;
}
.header-top-contact-icon i{
  width: 15px;
  font-size:15px;
  color:rgba( 255,255,255,0.7);
}

.header-top-contact-info h6{
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.header-top-contact ul li a {
  color: rgba( 255,255,255,0.7);
  font-weight: 400;
  font-size: 0.875rem;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-social span{
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.875rem;
}

.header-top-social a {
  width: 25px;
  color: rgba( 255,255,255,0.7);
  font-size: 14px;
  text-align: center;
  transition: all .5s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-top-social a:hover {
  color: var(--color-white);
}

.logo2-border{/*border-left: 0px solid #125875;*/padding-left: 1rem}
@media all and (max-width: 1199px) {
  .header-top-account {
    display: none;
  }
  .header-top::before{
    width: 320px;
  }
  .header-top-contact ul{
    gap: 10px;
  }
  .header-top-social a{
    line-height: 37px;
    margin-left: 0;
  }
  .header-top-left{
    margin-right: 5px;
  }
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}

/*====================
12. Navbar css
======================*/
.header-nav{background-image: linear-gradient(to right, #6373be , #5ac0b2);/*padding-top: 0.5rem; padding-bottom: 0.5rem;*/position: relative; z-index: 2;-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);}
.navbar {
  z-index: 999;
  padding:0;
}

.custom-nav{
  background: var(--color-white);
  position: relative;
}

.navbar.fixed-top {
  background: var(--color-white) !important;
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 170px;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: bootstrap-icons !important;
  content: "\f282";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .nav-right-btn {
    display: none;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 1rem 0 1rem 0;
    font-size: 14px;
    font-weight: 600;
    color:  var(--color-white);
    text-transform: uppercase;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 0px;
    border-top: 4px solid var(--theme-color);
    background: var(--theme-color2);
    width: 220px;
    box-shadow: var(--box-shadow);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-white-color);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 8px 25px;
    font-weight: 500;
    color:  var(--color-white);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 32px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "//";
    position: absolute;
    left: 15px;
    top: 8px;
    color: var(--theme-color);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: flex-end;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: 45px;
  }

  .nav-right-link {
    position: relative;
    font-size: 20px;
    color:  var(--color-dark);
    transition: var(--transition);
  }

  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }

  .nav-right .sidebar-btn .nav-right-link,
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: transparent;
    color: var(--color-dark);
    font-size: 28px;
    padding-right: 0;
  }

  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }

  .nav-right .cart-btn .nav-right-link {
    position: relative;
    font-size: 20px;
    padding: 0;
    margin-right: 15px;
  }

  .nav-right .cart-btn span{
    position: absolute;
    right: -9px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
  }

}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  /*.navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }*/
  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color:  var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
  }

  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }

  .mobile-menu-right .nav-right-link:hover{
    color: var(--theme-color);
  }

  .search-area.open{
    top: 50px !important;
  }

  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color:  var(--color-white);
    font-weight: 500;
  }

.mobile-menu-right:before {
    color: #fff;
    content: "MENU";
    font-size: 18px;
    font-weight: 600;
    left: 0;
    position: absolute;
}
  .navbar .dropdown-menu {
    border-radius: 0px;
  }

  .nav-right {
    display: none;
  }

}


/*============================
13. Mega menu
==============================*/

@media (min-width: 992px){
  .nav-item.mega-menu {
    position: static;
  }
  
  .navbar .nav-item.mega-menu .dropdown-menu{
    width: 98%;
    left: 12px;
  } 

  .mega-menu .mega-content{
    padding: 30px;
  }

  .mega-menu .mega-content h5{
    color: var(--theme-color);
    font-size: 22px;
    margin-bottom: 20px;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item{
    padding-left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before{
    left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover{
    padding-left: 15px;
  }

  .menu-about-logo{
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .menu-about-logo img{
    width: 180px;
  }

  .menu-about p{
    color: var(--color-white);
  }
}


@media (max-width: 991px){
  .menu-about-logo{
    display: none;
  }

  .mega-menu .mega-content h5{
    margin: 15px 0;
  }
}



/*============================
14. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}



.hero-section {
  position: relative;
}

.hero-single {
  /*padding-top: 240px;
  padding-bottom: 240px;*/
  height: 100vh;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: rgba(11, 28, 57, .2);
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 72px;
  font-weight: 800;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span{
  color: var(--theme-color);
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color);
  font-size: 25px;
  letter-spacing: 6px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  border-bottom: 3px solid var(--theme-color);
}

.hero-single .hero-content p {
  color: var(--color-white);
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}

.hero-single .hero-img::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--theme-color);
  right: 100px;
  bottom: 0px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
}

.hero-single .hero-img{
  position: absolute;
  right: 100px;
  bottom: 120px;
  width: 50%;
  z-index: -1;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 1rem;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 1rem;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 30px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}

@media all and (max-width: 991px) {

  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }

  .hero-single .hero-img::before{
    width: 250px;
    height: 250px;
  }

}

.hero-slider .owl-dots {
  text-align: center;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 9;
}
.hero-slider .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: var(--color-white);
  margin: 0 3px;
}
.hero-slider .owl-dots button.owl-dot.active {
  background-color: var(--theme-color);
}
.hero-slider .owl-dots button.owl-dot:focus {
  outline: none;
}
.hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--theme-color) !important;
}
.hero-slider .owl-nav button span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.hero-slider .owl-nav button:focus {
    outline: none;
}

@media all and (max-width: 767px) {

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }

}

.feature-area {
  position: relative;
  padding-top: 5rem;
  z-index: 1;
}

.feature-item {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 30px 25px;
  border-radius: 8px;
  background: var(--theme-color2);
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  flex-direction: column;
  text-align: center;
}

.feature-item:hover{
  transform: translateY(-10px);
  box-shadow: var(--box-shadow3);
}

.feature-item::before{
  content: "";
  position: absolute;
  height: 3px;
  left: 20px;
  right: 20px;
  bottom: 0;
  background: var(--theme-color);
}

.feature-item .count{
  position: absolute;
  left: 20px;
  top: 0px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.feature-icon {
  width: 90px;
  height: 90px;
  line-height: 75px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
  background: var(--theme-color);
  margin-bottom: 10px;
  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: 60px;
  filter: brightness(0) invert(1);
}

.feature-content{
  flex: 1;
}

.feature-content h4 {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-content p{
  color: var(--color-white);
}

.feature-item.active{
  background: var(--theme-color);
}

.feature-item.active::before{
  background: var(--theme-color2);
}

.feature-item.active .count{
  -webkit-text-stroke-color: var(--theme-color2);
}

.feature-item.active .feature-icon{
  background: var(--theme-color2);
}


@media all and (max-width: 1199px) {
  .feature-area {
    margin-top: -20px;
  }
}

.about-left {
  position: relative;
  padding-right: 30px;
  z-index: 1;
}

.about-left::before{
  content: "";
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 250px;
  height: 250px;
  /*background: var(--theme-color2);*/
  background-image: linear-gradient(to right, #7e65d0 , #d84fa3);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  border-radius: 0 0 10px 0;
  z-index: -1;
 /* -webkit-animation: movebounce3 2s linear infinite;
    animation: movebounce3 2s linear infinite;*/
}

.about-left::after{
  content: "";
  position: absolute;
  top: -11px;
  left: -11px;
  width: 250px;
  height: 70%;
  /*border: 12px solid var(--theme-color);*/
  background-image: linear-gradient(to right, #7e65d0 , #d84fa3);
  border-radius: 10px;
  z-index: -1;
 /* -webkit-animation: movebounce3 2s linear infinite;
    animation: movebounce3 2s linear infinite;*/
}

.about-left img{
  width: 100%;
  border-radius: 5px;
  
}

.about-experience{
  position: absolute;
  bottom: 80px;
  left: -11px;
  text-align: center;
  /*background:  var(--theme-color);*/
  background-image: linear-gradient(to right, #7e65d0 , #af59b7);
  padding: 15px 20px 15px 15px;
  color: var(--color-white);
  border-radius: 0 10px 10px 10px;
  /*box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);*/
}

.about-experience-icon{
  color: var(--theme-color);
  font-size: 65px;
  width: 90px;
  height: 89px;
  line-height: 70px;
  text-align: center;
  margin: auto;
  background: var(--color-white);
  border-radius: 50px;
  margin-bottom: 5px;
}

.about-experience-icon img{
  width: 90px;
}

.about-right {
  position: relative;
  display: block;
}
.about-right p{
  color:#3c3c3c;
  line-height: 1.7;
  text-align:justify;
  
}

.about-content {
  margin-top: 30px;
  padding-bottom: 20px;
}

.about-item {
  display: flex;
  gap: 15px;
}

.about-item-icon {
  width: 70px;
  height: 70px;
  line-height: 58px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
  font-size: 45px;
  color: var(--theme-color);
}

.about-item-icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.about-item-content {
  flex: 1;
}

.about-item-content h5 {
  font-size: 22px;
  margin-bottom: 5px;
}


@media all and (max-width: 991px) {
  .about-right {
    margin-top: 70px;
  }
}

@media all and (max-width: 767px) {
  .about-left::after{
    left: -20px;
  }

  .about-item {
    margin-top: 30px;
  }
}

/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #3f51b5;
  position: relative;
/*  border-bottom: 2px solid var(--theme-color);*/
}

.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-color);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 10px; 
  border: 3px solid rgba(33, 46, 84, 1);
  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;
}

/*====================
8. Theme button
======================*/

.theme-btn {
  color: var(--color-white);
  padding: 14px 20px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background:  var(--theme-color2);
  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);
}

/*====================
28. Counter css 
======================*/

.counter-area {
  position: relative;
  background-image: url(../images/slide1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 50px;
}

.counter-area::before{
  content: "";
  position: absolute;
  background: rgba(11, 28, 57, .90);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
  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: 80px;
  height: 80px;
  line-height: 68px;
  border-radius: 20px;
  color: var(--color-white);
  /*background:  var(--theme-color);*/
  background-image: linear-gradient(to right, #6373be , #5ac0b2);
}

.counter-box .icon img{
  width: 40px;
  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);
  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: 2.2rem;
  font-weight: 900;
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}
.luminary{background:url(../images/msg_bg.jpg) center center cover;
background-repeat:no-repeat;
}
/*luminary-Quotes*/
.luminary-five{ background-color: #fff;
    -webkit-box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    position: relative;
    margin-bottom: 50px;
    z-index: 0;
	border-radius: 5px;}
/*.luminary-five::before, 
.luminary-five::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: #fff;
    z-index: -1;
}*/
/*.luminary-five::before{
    bottom: -15px;
    -webkit-transform: scaleX(0.948);
    transform: scaleX(0.948);
    opacity: 0.7;
}    

.luminary-five::after {
    bottom: -30px;
    -webkit-transform: scaleX(0.897);
    transform: scaleX(0.897);
    opacity: 0.5;
}*/
.luminary-five .desk{padding: 30px;}
.luminary-five .desk h1 {
    /*font-family: "Muli", sans-serif;*/
    font-size: 25px;
    color: #19232b;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
	opacity: 0.9;
}
.luminary-five .desk img {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 7px solid #eaf1fb !important;
	
}
.luminary-five .desk .eduact-btn-second {
    text-align: center !important;
    width: 100% !important;
	
}
.luminary-five .desk p {
    /*font-family: "Muli", sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 500;*/
    line-height: 1.8;
    text-align: justify;
}
.quotes-info{display: block; padding: 20px 0px 20px 0px;}
.quotes-info img{ width: 75px;height: 75px;border-radius: 100%; margin: 20px auto auto; }
.quotes-info h3 { font-weight: bold}
.quotes-info span {color: #a0a1a2}
.quotes-left{    
  position: absolute;
  height: 100%;
  width: 100%;}
    
.quotes-left::before {
    content: "";
    display: block;
    width: 20%;
    height: 100%;
    background: var(--theme-color2);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0.5rem;
}
.quotes-img {
    position: relative;
    z-index: 1;
}
.speakcontent-right,    
.speakcontent-left{
    background: #fff;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 50%);
    position: relative;
    padding: 30px 30px 20px;
    border-radius: 4px;
    }  
  
.speakcontent-inner{position: relative;}
/*.speakcontent-inner::before {
    content: "\f6b0";
    position: absolute;
    left: 0;
    top: 0;
    color: #f16748;
    font-family: bootstrap-icons !important;
    font-size: 30px;
    font-style: normal;
    
  }
.speakcontent-inner::after {
    content: "\f6b0";
    position: absolute;
    right: 0;
    bottom: 0;
    color: #f16748;
    font-family: bootstrap-icons !important;
    font-size: 30px;
    font-style: normal;
    transform: rotate(180deg);
    }   */ 
.speakcontent-left:after{
  content: "";
  border: 16px solid transparent;
  border-right: 16px solid rgb(255 255 255);
  position: absolute;
  top: 50px;
  left: -32px;
  }
 .speakcontent-right:after{
  content: "";
  border: 16px solid transparent;
  border-left: 16px solid rgb(255 255 255);
  position: absolute;
  top: 50px;
  right: -32px;
  }   

/*luminary-Quotes */
.image-aspect-ratio {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.image-aspect-ratio img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
.image-aspect-ratio img {
    min-height: 400px;
}

/*.arrow-carousel {}
.arrow-carousel .owl-nav, .arrow-carousel .owl-dots {    
  margin-top: 20px;
    text-align: center;}
.arrow-carousel .owl-next,
.arrow-carousel .owl-prev{
    display: inline-block;
    background: transparent;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #000;
    border-radius: 100%;
    line-height: 30px;
    font-size: 16px;
    margin-left: 2px;
    margin-right: 2px;
    transition: all 0.5s;
    border: 1px solid #000;
}
.arrow-carousel .owl-prev:hover, .arrow-carousel .owl-next:hover{background: #5f0e0a; color: #fff}

.arrow-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
    height: 10px;
    width: 10px;
    border-radius: 10px;
  background-color: #ddd;
  transition: all .3s;
  outline: none;
}

.arrow-carousel .owl-dot.active {background-color: #f16748;}
.arrow-carousel .owl-dot.active {background-color: #f16748;width: 20px;position: relative;} */

.department-slider .department-item{
  box-shadow: none;
  margin-bottom: 0;
}

.department-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.department-slider .owl-dots .owl-dot span {
  background: var(--theme-color);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.department-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 20px;
}

.department-slider .owl-nav {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin: 0;
}

.department-slider:hover .owl-nav{
  display: block;
  opacity:1;
  visibility:visible;
}

.department-slider .owl-nav button {
  height: 48px;
  width: 48px;
  line-height: 45px !important;
  top: 50%;
  background: var(--theme-color) !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: -54px;
}

.department-slider .owl-nav button:hover{
  background: var(--theme-color2) !important;
}

.department-slider .owl-nav .owl-prev{
  left:-55px;
}

.department-slider .owl-nav .owl-prev:hover{
  left:-45px;
}

.department-slider .owl-nav .owl-next{
  right:-55px;
}

.department-slider .owl-nav .owl-next:hover{
  right:-45px;
}




.choose-area{
  position: relative;
  padding-top: 75px;
  padding-bottom: 75px;
  overflow: hidden;
  background: var(--theme-color2);
}

.choose-item{
  display: flex;
  gap: 20px;
  position: relative;
  margin-top: 25px;
  z-index: 1;
}

.choose-item-content{
  flex: 1;
}

.choose-icon{
  width: 80px;
  height: 80px;
  line-height: 70px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 45px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 50px;
  text-align: center;
  position: relative;
  box-shadow: var(--box-shadow);
  transition: var(--transition2)
}

.choose-icon::before{
  content: "";
  position: absolute;
  border: 2px dashed var(--theme-color);
  border-radius: 50px;
  left: -6px;
  right: -6px;
  top: -6px;
  bottom: -6px;
  animation: animName 2s linear infinite;
}

.choose-icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.choose-item-content h4{
  margin-bottom: 10px;
  font-size: 24px;
  color: var(--color-white);
}

.choose-item-content p{
  color: var(--color-white);
}

.choose-img{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
/*  clip-path: polygon(10% 0, 100% 0, 100% 100%, 5% 100%, 0 66%);*/
}


@media all and (max-width: 1199px) {
  .choose-img{
    position: relative;
    width: 100%;
  }
}

@media all and (max-width: 991px) {
  .choose-content {
    margin-bottom: 60px;
  }
}

/*===================
41. Team css 
=====================*/

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  position: relative;
  background: var(--theme-bg-light);
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-img img{
  border-radius: 8px;
}

.team-content {
  margin-top: 15px;
  position: relative;
}

.team-bio h5 {
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.team-bio h5 a{color: var(--theme-color2);}
.team-bio span {
  font-size: 13px;
  font-weight: 500;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-bio h5 a:hover {
  color:  var(--theme-color);
}

.team-social-btn {
  position: absolute;
  right: -5px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  padding-left: 12px;
  border-radius: 50px 0 0 50px;
  cursor: pointer;
  background: var(--theme-color);
  color: var(--color-white);
  transition: var(--transition);
}

.team-item:hover .team-social-btn{
  background: var(--theme-color2);
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 50px;
  right: 0px;
  bottom: 0;
  opacity: 0;
  transition: var(--transition);
}

.team-item:hover .team-social {
  opacity: 1;
  right: 30px;
}

.team-social a {
  display: block;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  border-radius: 15px;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition2)
}

.team-social a:hover {
  background:  var(--theme-color2);
  color: var(--color-white);
}

.team-area2 .team-item{
  padding: 30px;
}

.team-area2 .team-img img{
  border-radius: 50%;
}

.team-area2 .team-content{
  margin-top: 30px;
}

.team-area2 .team-social-btn{
  bottom: 39px;
}
.team-img img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

/*====================
27. Testimonial css 
======================*/

.testimonial-area {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.ts-bg{
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.ts-bg::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--overlaybg);
}

.testimonial-single {
  background: var(--color-white);
  border-radius: 15px;
  padding: 25px 25px;
  margin: 6px;
  position: relative;
}

.testimonial-single::before{
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -6px;
  height: 6px;
  border-radius: 0 0 10px 10px;
  background: var(--theme-color);
}

.testimonial-content{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-quote p {
  color:  var(--color-dark);
}

.testimonial-author-info{
  margin: 15px 0 10px 0;
}

.testimonial-author-img {
  width: 75px;
  padding: 4px;
  border-radius: 50px;
  border: 2px dashed var(--theme-color);
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 20px;
  color:  var(--color-dark);
  margin-bottom: 2px;
}

.testimonial-author-info p {
  color: var(--theme-color);
  font-weight: 500;
}

.testimonial-quote-icon {
  position: absolute;
  right: 30px;
  bottom: 0px;
  color: var(--theme-color);
  font-size: 70px;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: var(--theme-color);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 20px;
}

.testimonial-rate {
  color: var(--theme-color);
  margin-bottom: 15px;
}

.testimonial-area2.ts-bg{
  padding-top: 120px;
  background-attachment: fixed;
}

.testimonials-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
  width: 100%;
  height: 100%;
  -webkit-animation: movebounce3 2s linear infinite;
  animation: movebounce3 2s linear infinite;
}
.testimonials-two__bg-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top right;
  width: 100%;
  height: 100%;
  -webkit-animation: movebounce3 2s linear infinite;
  animation: movebounce3 2s linear infinite;
}

@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.shape-1 {
    position: absolute;
    bottom: -20px;
    right: 0px;
    -webkit-animation: movebounce3 2s linear infinite;
  animation: movebounce3 2s linear infinite;
}
.shape-2 {
    position: absolute;
    bottom: 84px;
    left: 98px;
    -webkit-animation: movebounce3 2s linear infinite;
  animation: movebounce3 2s linear infinite;
}
.shape-3 {
    position: absolute;
    top: 24%;
    right: 0px;
    -webkit-animation: movebounce3 7s linear infinite;
    animation: movebounce3 7s linear infinite;
}

.shape-4 {
    position: absolute;
    top: 126px;
    right: 0;
    -webkit-animation: movebounce3 2s linear infinite;
    animation: movebounce3 2s linear infinite;
}

.heading-divider {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 10px; 
  border: 3px solid rgba(33, 46, 84, 1);
  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;
}



.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    border:2px solid var(--theme-color2);
    opacity: 0.3;
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 100%;
}

.circles li:nth-child(1){
    left: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 2s;
    animation-duration: 12s;
    border-radius: 100%;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 45px;
    height: 45px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 50px;
    height: 50px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 100%;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius:100%;
    }

}

@keyframes movement{
  0% {
    background-position:0px 0px;
  }
  100%{
    background-position:560px 0px;
  }
}

/* ===================
30. Event css 
====================== */

.event-item{
  position: relative;
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px 20px 20px 20px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.event-location{
  margin-bottom: 12px;
}

.event-location i{
  color: var(--theme-color);
}

.event-img{
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.event-img img{
  border-radius: 15px;
  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-color);
  margin-right: 5px;
}

.event-title{
  margin-bottom: 10px;
}
.event-title a{color: var(--theme-color2);}
.event-title:hover{
  color: var(--theme-color);
}

.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-color);
  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-color);
  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-color) !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-color2) !important;
}

.event-slider .owl-nav .owl-prev{
  left:-55px;
}

.event-slider .owl-nav .owl-prev:hover{
  left:-45px;
}

.event-slider .owl-nav .owl-next{
  right:-55px;
}

.event-slider .owl-nav .owl-next:hover{
  right:-45px;
}

.service-item {
  width: calc(100% / 3 - 0.5rem);
  height: 280px;
  margin: 0.25rem;
  display: flex;
  align-items: center;
}

.service-item:nth-of-type(1):before {
  background: url(../images/4.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(1) .hexagon-figure:before {
  background: url(../images/4a.svg) center center no-repeat;background-size: contain;
}

.service-item:nth-of-type(2):before {
  background: url(../images/3.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(2) .hexagon-figure:before {
  background: url(../images/3a.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(3):before {
  background: url(../images/1.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(3) .hexagon-figure:before {
  background: url(../images/1a.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(4):before {
  background: url(../images/5.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(4) .hexagon-figure:before {
  background: url(../images/5a.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(5):before {
  background: url(../images/2.svg) center center no-repeat;background-size: contain;
}
.service-item:nth-of-type(5) .hexagon-figure:before {
  background: url(../images/2a.svg) center center no-repeat;background-size: contain;
}

.service-item a{text-align: center; width: 100%}
.service-item:hover .hexagon-figure:before {opacity: 1;}
.service-item h5{margin-bottom: 0}
.service-item figure {margin: 0 0 0rem;}
.service-item .hexagon-figure:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.service-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (min-width: 992px){
  .service-item:nth-of-type(5),
  .service-item:nth-of-type(4) {
      margin-top: -6.5rem;
  }
}
@media (min-width: 144px){
  /*.service-item:nth-of-type(5),
  .service-item:nth-of-type(4) {
      margin-top: -2.5rem;
  }*/
}
@media (max-width: 991px){
  .service-item {height: 200px;width: calc(100% / 2 - 1rem);}
  .service-item:nth-of-type(3) {margin-top: 0rem;margin-bottom: -1rem;width: calc(100% / 2 - 1rem);}
}
@media (max-width: 767px){
 .service-item {height: 150px;}
 .service-item:nth-of-type(3) {width: calc(100% / 1 - 1rem);}
 .logo img {
    max-height: 60px;
    margin-top:5px;
    margin-bottom:5px;
}
.twm-bg-ring-right, .twm-bg-ring-left, .twm-bg-ring-right1, .twm-bg-ring-left1 {
    display:none;
}
}

.footer-area {
  /*background: #1b2e73;*/
  /*background-image: linear-gradient(to right, #4918af , #c9528c);*/
  background-image: url("../images/footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  font-size:15px;
  /*padding-bottom: 5px;*/
}

.footer-shape{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .04;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}
.footer-widget-box h6{
  margin-bottom: 0rem!important;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 240px;
  margin-bottom: 15px;
}

.copyright {
  position: relative;
  background: #192b6a;
  background-image: linear-gradient(to right, #c9528c , #4918af);
}

.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-color);
}

.copyright .copyright-text {
  color: rgba( 255,255,255,0.7);
  margin-bottom: 0px;
  font-size: 14px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  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: 190px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 1px;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  /*background: var(--theme-color);*/
  background:#00cae1;
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  list-style: none;
  padding: 0;
}
.footer-list li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 0px 0px 10px 0px;
}

.footer-list li a {
  color: rgba( 255,255,255,0.7);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  /*color: var(--theme-color);*/
  color:#00cae1;
  font-size:13px;
  opacity: 0.65;
}

.footer-list li a:hover {
  padding-left: 10px;
  /*color: var(--theme-color);*/
  color:#00cae1;
}

.footer-widget-box p {
  color: rgba( 255,255,255,0.7);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: start;
  list-style: none;
  padding: 0;
}



.footer-social li a {
  height: 38px;
  width: 38px;
  display: flex;
  border-radius: 5px;
  background: var(--color-white);
  color: var(--theme-color);
  transition: var(--transition);
  justify-content: center;
  align-items: center;
}

.footer-social li a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.footer-contact{list-style: none; padding: 0}
.footer-contact li {
  position: relative;
  color: rgba( 255,255,255,0.7);
  margin-bottom: 1.5rem;
  padding-left: 40px;
}

.footer-contact li a {
  color: rgba( 255,255,255,0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: flex;
}
.footer-contact li a:hover {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: flex;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 5px;
  /*background: var(--theme-color);*/
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: rgba( 255,255,255,0.9);
  position: absolute;
  left:0;
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: var(--theme-color);
}

.subscribe-form .theme-btn::before{
  background: var(--color-white);
}

.subscribe-form .theme-btn:hover::after{
  border-color: var(--theme-color);
}


@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%;
  }

  .copyright .copyright-text a{
    color: var(--theme-color);
  }
}

#scroll-top {
  position: fixed;
  bottom: -24px;
  right: 30px;
  z-index: 99;
  font-size: 15px;
  border: none;
  outline: none;
  border-radius: 8px;
  color: var(--color-white);
  /*background-color: var(--theme-color);*/
  background-color:#5ea0b7;
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 36px;
  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: 24px;
}
@media(max-width:991px){
  .quotes-info {
      padding: 20px 20px 23px 20px;
      background: #fff;
      position: relative;
      z-index: 1;
  }
  .about-experience{bottom: 50px;}
}
  
.eduact-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-image: linear-gradient(to right, #6373be , #5ac0b2);
  /*background-color: var(--theme-color);*/
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
  padding: 14px 22px 15px;
  overflow: hidden;
  z-index: 2;
  position: relative;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1), 0 2px 5px 0 rgba(0,0,0,0.15);
}

.eduact-btn-second {
  /*background-color: var(--theme-color2);*/
  background-image: linear-gradient(to right, #7e65d0 , #d84fa3);
}

.eduact-btn__text {
  position: relative;
  z-index: 2;
}

.eduact-btn__curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 33px;
  height: 100%;
  background: var(--color-white);
  opacity: 0.2;
  z-index: 0;
  -webkit-transform: skewX(-22deg);
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.eduact-btn i {
  display: inline-block;
  margin-left: 11px;
  position: relative;
  top: 1px;
}

.eduact-btn:hover {
  color: var(--color-white);
}

.eduact-btn:hover .eduact-btn__curve {
  right: 0;
  width: 100%;
  -webkit-transform: skewX(0deg);
  transform: skewX(0deg);
}

 .divider {
  /*margin-bottom: 20px;*/
  margin-top: 10px;
    position: relative;
    font-size: 20px;
    color: #3f51b5;
    display: inline-block;
}
.text-center .divider::before {
    display: block;
    width: 120px;
}
.divider-left::after {
    margin-left: 0.5rem;
}
 .divider::before {
    left: auto;
    right: 100%;
    top: 50%;
    display: none;
}
 .divider::before, 
 .divider::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 160px;
    background: var(--theme-color);
}
.text-center i {
    padding: 0 15px;
    animation: animName 10s linear infinite;
}


 .divider::before {
    left: auto;
    right: 100%;
    top: 50%;
    display: none;
}
 .divider::before, 
 .divider::after {
    content: "";
    position: absolute;
    height: 1px;
    background: #3f51b5;
}
.text-center .divider::after {
    width: 120px;
}
 .divider::after {
    left: 100%;
    top: 50%;
}

.box{
  animation: animName 3s linear infinite;
}

@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}

.counter-one__left img {
    position: absolute;
    left: 23px;
    top: -42px;
    -webkit-animation: rotated 20s infinite linear;
    animation: rotated 20s infinite linear;
}
/*.about-one__thumb__shape2 {
  position: absolute;
  z-index: 0;
  left: 36px;
  top: 25px;
}

@-webkit-keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}*/

.about-one__thumb__shape2 img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-timing-function: linear;
}
.twm-bg-ring-wrap2{
  overflow: hidden;
  position: relative;
  background-color:#f0f6fe;
}
.twm-bg-ring-right,
.twm-bg-ring-left,
.twm-bg-ring-right1,
.twm-bg-ring-left1{position: absolute;border-radius: 50%;overflow: hidden;}
.twm-bg-ring-left{width: 495px; height: 495px;border:100px solid #56d8b1; left: -200px; bottom: -200px; opacity: 0.2;}
.twm-bg-ring-right{width: 300px; height: 300px; border:60px solid #1967d2;right: -100px;top: -100px;opacity: 0.2;}
.twm-bg-ring-left1{width: 495px; height: 495px;border:100px solid #56d8b1; left: -200px; bottom: -200px; opacity: 0.15;}
.twm-bg-ring-right1{width: 300px; height: 300px; border:60px solid #1967d2;right: -100px;top: -100px;opacity: 0.15;overflow: hidden;}

@media(max-width:1199px){
.menubg{min-height: 40px;}
.nav-sm{ position: absolute;right: 0;top: 4px;}
}
/*Sub Pages*/
.spages{
background:#fff;
position:relative;
}

.spages .content h1{
	
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 30px;
    font-weight: 700;
    color: #19232b;
    position: relative;
	line-height: 1.5;
    padding-bottom: 10px;
    border-bottom: 1px solid #c5d9f5;

	}
	.spages .content h3{
	
	font-size:1.75rem;
	color: #002860;
	font-weight:600;
	line-height:1.8;
	margin-bottom: 16px;
	margin-top:30px;
	}
.spages .content h4{
	
	font-size:24px;
	color:#3f51b5;
	font-weight:600;
	line-height:1.5;
	margin-bottom: 16px;
	}
	.spages .content h5{
	
	font-size:1.25rem;
	color:#3f51b5;
	font-weight:600;
	line-height:1.8;
	margin-bottom: 16px;
	margin-top:30px;
	}
.spages .content img{
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 7px solid #eaf1fb !important;
	
	}
.spages .content strong{
	
	font-size:16px;
	color:#333;
	font-weight:600;
	line-height:1.8;
	text-align:justify;
	}
.spages .content p{
	color:#444444;
	font-size:16px;
	/*color:#5c5b5b;*/
	margin-top: 15px;
    margin-bottom: 20px;
	line-height:1.8;
	text-align:justify;
	letter-spacing: 0.2px;
}
.spages .content p i{
	color: #eb3838;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: 28px;
	}
.spages .content .form-control {
	margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 15px 15px;
    height: 50px;
    font-weight: 400;
    letter-spacing: 0;
    
}
.spages .content textarea{
    height:120px !important;
}
.spages .content select{
          padding: 12px 15px;
          margin-bottom: 15px;
          border: 1px solid #eee;

}
.spages .content select:focus {
    border-color: none;
    box-shadow: none;
}
.spages .content select:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    outline: 0;
   }
.spages .content .captcha{
height:50px;
margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 1px 15px;
}
.spages .content .captcha .img{
    border:0 !important;
    box-shadow:none !important;
    padding: 10px 0px;
}
.spages .content .eduact-btn-second {
    text-align: center !important;
    width: 100% !important;
    margin: 15px 0;
}
.spages .content .btnblue {
    height: 40px!important;
    line-height: 40px;
    padding: 0 20px;
    min-width: 100px;
	background: #002860;
	color:#fff;
	width: 100%!important;
	text-decoration:none;
	display: inline-block;
    border-radius: 3px;
    text-align: center;
    border: transparent;
    margin-top: 15px;
    margin-bottom:20px;
}
.spages .content .btnblue:hover {
	border-color: #252525;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    color: #fff!important;
    opacity: 0.9;
	text-decoration:none
}
.spages .sidebar1 {
	position: relative;
	-webkit-box-shadow: 0 1px 15px rgba(0,0,0,.35);
    -moz-box-shadow: 0 1px 15px rgba(0,0,0,.35);
    -ms-box-shadow: 0 1px 15px rgba(0,0,0,.35);
    box-shadow: 0 3px 15px rgba(0,0,0,.35);
    /*-webkit-box-shadow: 0px 0px 20px 0px rgb(72 127 255 / 35%);
    -moz-box-shadow: 0px 0px 20px 0px rgba(72, 127, 255, 0.35);
    box-shadow: 0px 0px 20px 0px rgb(72 127 255 / 35%);*/
   margin-bottom: 30px;
    background-color: #fff;
    padding: 28px;
    border-radius: 5px
}
.spages .sidebar1 .bg_overlay {
    background-image: url(../images/overlay.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transition: color .3s linear, background .3s linear;
    transition: color .3s linear, background .3s linear;
}
.spages .sidebar1 h1{
	font-family: "Muli", sans-serif;
	font-size:26px;
	color:#3f51b5;
	font-weight:600;
	line-height:1.5;
	margin-bottom: 10px;
	opocity:0.8;
}
.spages .sidebar {
	position: relative;
	-webkit-box-shadow: 0 1px 15px rgba(0,0,0,.20);
    -moz-box-shadow: 0 1px 15px rgba(0,0,0,.20);
    -ms-box-shadow: 0 1px 15px rgba(0,0,0,.20);
    box-shadow: 0 3px 15px rgba(0,0,0,.20);
    /*-webkit-box-shadow: 0px 0px 20px 0px rgb(72 127 255 / 35%);
    -moz-box-shadow: 0px 0px 20px 0px rgba(72, 127, 255, 0.35);
    box-shadow: 0px 0px 20px 0px rgb(72 127 255 / 35%);*/
   margin-bottom: 30px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 5px
}
.spages .sidebar .bg_overlay {
    background-image: url(../images/overlay.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transition: color .3s linear, background .3s linear;
    transition: color .3s linear, background .3s linear;
}
.spages .sidebar h3{
	
	font-size:26px;
	letter-spacing:1px;
	color:#3f51b5;
	font-weight:500;
	line-height:1.5;
	margin-bottom: 20px;
	
}
.spages .sidebar ul{
	position:relative;
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
	z-index:9;
}
.spages .sidebar li{
	line-height: 2.8;
    margin: 0;
	border-bottom: 1px dashed #d1cece;
	
}
.spages .sidebar li a{

font-size: 15px;
color: #252525;
letter-spacing:0.5;
    text-decoration: none;
	cursor:pointer;
	text-transform:uppercase;
	transition: all 0.3s ease-out 0s;
	opacity:0.8;
}
.spages .sidebar li a:hover{
	color: #eb3838;
    text-decoration: none;
	padding-left: 8px;
	transition: all 0.3s ease-out 0s;
}

.spages .sidebar li i {
    color: #eb3838;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
    margin: 5px 10px 5px 0;
    text-align: center;
    width: 28px;
	
}
.shadow{
position: relative;
    -webkit-box-shadow: 0 1px 15px rgba(0,0,0,.20);
    -moz-box-shadow: 0 1px 15px rgba(0,0,0,.20);
    -ms-box-shadow: 0 1px 15px rgba(0,0,0,.20);
    box-shadow: 0 3px 15px rgba(0,0,0,.20);}

.team .item {
    margin-bottom: 30px;
	border-bottom: 2px solid #004274;
}
.team .item:hover .info .social {
    top: 0;
}
.team .info {
    text-align: center;
    padding: 15px 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.team .info h6 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #3f51b5;
	padding-bottom:10px;
}
.team .info p {
    margin-bottom: 0px;
    color: #444;
	font-weight:500;
}
.team .info .social {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #004274;
    -webkit-transition: all .4s;
    transition: all .4s;
	padding: 15px 15px;
}
.team .info .social h6 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #fff;
	padding-bottom:10px;
}
.team .info .social p {
    margin-bottom: 0px;
    color: #fff;
	font-weight:500;
}
.team .info .social a {
    font-size: 15px;
    color: #aa8453;
    margin: 0 5px;
}
.team .info .social a:hover {
    color: #222;
}

.photo .item {
    margin-bottom: 30px;
	border-bottom: 2px solid #004274;
}
.photo .item:hover .info .social {
    top: 0;
}
.photo img{
    height:250px;
    width: -webkit-fill-available;
}
.photo .info {
    text-align: center;
    padding: 15px 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.photo .info h6 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #3f51b5;
	padding-bottom:10px;
}
.photo .info p {
    margin-bottom: 0px;
    color: #444;
	font-weight:500;
}
.photo .info .social {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #004274;
    -webkit-transition: all .4s;
    transition: all .4s;
	padding: 15px 15px;
}
.photo .info .social h6 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #fff;
	padding-bottom:10px;
}
.photo .info .social p {
    margin-bottom: 0px;
    color: #fff;
	font-weight:500;
}
.photo .info .social a {
    font-size: 15px;
    color: #aa8453;
    margin: 0 5px;
}
.photo .info .social a:hover {
    color: #222;
}

.shine .img {
	position: relative;
	overflow: hidden;
}
.shine .img::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.shine .img:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}


:root{
    --orange: #fd5d14;
	--red: #eb3838;
    --deep-blue: #061738;
    --grey: #606060;
    --white: #fff;
    --dark: #1c1c25;
    --yellow: #f2b32b;
}
.modal-body{text-align:center;
  width:100%;
  height:auto;}
  
.shine figure {
	position: relative;
	overflow: hidden;
}
.shine figure::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.shine figure:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

.home2.feature{
  /*margin-top: -150px;*/
  margin: 100px 0;
}

.home1.feature .item{
  width: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.home1.feature .item .item-inner{
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.home1.feature .item .front,
.home1.feature .item .back{
  padding: 50px 35px 45px 35px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.home1.feature .item .front{
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background: var(--white);
}
.home1.feature .item:hover .front{
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.home1.feature .item .back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.home1.feature .item:hover .back{
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.home1.feature .item .inner{
  transform: translateZ(60px) scale(.94);
  -webkit-transform: translateZ(60px) scale(.94);
  -ms-transform: translateZ(60px) scale(.94);
  -moz-transform: translateZ(60px) scale(.94);
  -o-transform: translateZ(60px) scale(.94);
  -webkit-perspective: inherit;
  perspective: inherit;
  text-align: center;
}

.home1.feature .item .icon{
  height: 70px;
  width: 70px;
  background: var(--red);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: auto;
  text-align: center;
}
.home1.feature .item .icon i{
  line-height: 70px;
  color: var(--white);
  font-size: 40px;
}
.home1.feature .item h4{
  text-transform: capitalize;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 25px;
}

.home1.feature .item .front{
  box-shadow: 0 0 95px rgba(0, 0, 0, 0.15);
}
.home1.feature .item .back{
  transform: rotateY(180deg);
  background: var(--red);
}
.home1.feature .item .back .icon{
  background: var(--white);
}
.home1.feature .item .back .icon i{
  color: var(--red);
}
.home1.feature .item .back h4,
.home1.feature .item .back p{
  color: var(--white);
 }
 .home1.feature .item .back h5,
 .home1.feature .item .back h6{
 color: var(--white);
 
 }h6{
 padding-bottom: 1rem;}
.home1.feature .item .back p{
  color: var(--white);
  text-align:justify;
}
.home1.feature .item .front p{
  color: #212529;
  text-align:justify;
}
.breadcrumb {
    align-self: center;
    background-position: 50%;
    background-size: cover!important;
    padding: 100px 0;
    position: relative;
	z-index:1;
}
.breadcrumb .bg-overlay {
    background-color: rgba(30,41,59,.7);
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.breadcrumb .title-heading {
    line-height: 26px;
	z-index:1;
	position:relative;
}
.breadcrumb .title-heading  h2{
font-size:56px;
margin-bottom: 20px;
font-weight: 500!important;
color:#ffffff;
opacity:0.8;
margin-top:0!important;
}
.breadcrumb .title-heading ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
	letter-spacing: .5px;
    color: #56b8e6;
	text-align:center;
	justify-content: center!important;
}
.breadcrumb .title-heading ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
	text-align:center;
	cursor:pointer;
}
.breadcrumb .title-heading ol a:hover {
	color: #56b8e6;
	text-decoration:none;}
.breadcrumb .title-heading ol li+li {
    padding-left: 10px;
	text-align:center;
}
.breadcrumb .title-heading ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}
.breadcrumb  .title-heading p {
    font-size: 20px;
    letter-spacing: .5px;
	color: hsla(0,0%,100%,.5)!important;
}
.breadcrumb .bshape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .2;
    z-index: 1;
	width:200px;
}
.map {
    padding: 0;
    margin-bottom: -6px;
}

.map iframe {
    width: 100%;
    height: 380px;
}
/* contact */
/*body .pbmit-bg-color-light {
    background-color: #e9edf3;
}*/
.contact_section{
	position: relative;
	z-index: 1;
	padding:60px 0;
}
.contact_section .contact-left_box{
padding-top:40px;
padding-bottom:30px;
}
.contact_form{
	padding: 40px 40px 40px 40px;
	border-radius: 0px 0px 50px 0px;
	background-color: #ffffff;
}
.contact_section .contact-heading .contact-title{
	font-weight: 400;
}
.contact_form .form-control{
	margin-bottom: 15px;
	border: 1px solid #eee;
	padding: 15px 15px;
	height: 50px;
	font-weight: 400;
	letter-spacing: 0;
}
.contact_form textarea.form-control{
	height: 113px;
	resize: none;
}
.contact_form button{
	margin-top: 20px;
}
.contact_form .form-select{
	color: rgba(3, 3, 10,0.50);
}
<!-- Shortcode-->

.contact-heading{
    margin-bottom: 60px;
}
.contact-heading .contact-title{
	position: relative;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0px;
	margin-bottom: 0;
    color: #333;
    font-style: normal;
	font-family: 'Jost', sans-serif;
}
.contact-heading {
    margin-bottom: 30px;
}
article{
    margin-bottom: 0px;
}
/** Style 16 **/
.contact-detail .contact-box:before,
.contact-detail .contact-box-icon-wrapper{
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.contact-detail .contact-box-headingicon{
    margin-right: 80px;
}
.contact-detail .contact-box{
    position: relative;
    overflow: hidden;
}
.contact-detail .contact-box-icon-wrapper{
    background: #dce8f8;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: #4540df;
    font-size: 20px;
}
.contact-detail .contact-box-icon-wrapper i{
top:-1px;
position:relative;
}
.contact-detail .contact-box:after,
.contact-detail .contact-box:before{
    position: absolute;
    content: '';
    left: 22px;
    height: 100%;
    width: 1px;
    background-color: #ddd;
    z-index:-1;
}
.contact-detail .contact-box:after {
    animation: cont_move 2s infinite;
}
@keyframes cont_move {
    0% {
        transform: translate3d(0, -80%, 0)
    }
    30% {
        transform: translate3d(0, 30%, 0)
    }
    50% {
        transform: translate3d(0, 100%, 0)
    }
    100% {
        transform: translate3d(0, 100%, 0)
    }
}
.contact-detail:hover .contact-box:after{
    background-color: #4540df;
}
.contact-article{
    margin-bottom: 0px;
}
.contact-article .contact-box-btn a,
.contact-article .contact-box-subtitle,
.contact-article .contact-heading-desc{
    line-height: 33px;
    font-size: 16px;
    font-weight: 400;
}
.contact-detail .contact-box-title{
    font-size: 18px;
    line-height: 28px;
    color: #4540df;
    margin-bottom: 10px;
    font-weight: 400;
}
.contact-article:first-child .contact-detail .contact-box{
    padding-bottom: 60px;
} 
.contact-article .contact-box-btn a{
    color: #4540df;  
    text-decoration: underline !important;
	text-transform: capitalize;
}
.contact-article .contact-box-btn a:hover{
    color: #03030a;  
}
.contact-detail:hover .contact-box-icon-wrapper{
    background: #4540df;
    color: #ffffff;
}
.contact-detail .contact-box-subtitle{
    margin-bottom: 5px;
}
.contact-detail .contact-box-subtitle a{
    text-decoration:none;
	color:#333;
}
.contact-detail .contact-box-subtitle a:hover{
color:#0d6efd;
}
.form-control {
box-shadow: none;
    height: 45px;
    border: 1px solid #eeeeee;}
.form-control:focus {
  border-color: none;
  box-shadow: none;
}
@media(max-width:991px) {
	.contact-heading .contact-title{
		font-size: 32px;
    	line-height: 36px;
	}
	.contact-heading .contact-title br,
	.contact-heading .contact-heading-desc br{
		display: none;
	}
    /** Section Padding **/
	.section-lg {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	}

@media(min-width: 1200px) and (max-width: 1399px){

	.home1.feature .item .front, 
    .home1.feature .item .back {
        padding: 35px 35px 35px 35px;
    }
}
@media(min-width: 992px) and (max-width: 1199px){
	.home1.feature{
        padding-bottom: 90px;
    }
    .home1.feature .item {
        margin-bottom: 30px;
    }
	}
@media(min-width: 768px) and (max-width: 991px){
	.home1.feature{
        padding-bottom: 90px;
    }
    .home1.feature .item {
        margin-bottom: 30px;
    }
}
@media(min-width: 576px) and (max-width: 767px){
	.home1.feature{
        padding-bottom: 90px;
    }
    .home1.feature .item {
        margin-bottom: 30px;
    }
	
}
@media (max-width: 767px){
.breadcrumb {
    height: auto;
    padding: 100px 0!important;
}
.breadcrumb .title-heading  h2{
font-size:28px;
margin-bottom: 10px;
}
@media(min-width: 320px) and (max-width: 575px){
	.p-120{
        padding: 100px 0;
    }
    .pt-120{
        padding-top: 100px;
    }
    .pb-120{
        padding-bottom: 100px;
    }
    .pb-90{
        padding-bottom: 70px;
    }
	.home1.feature{
        padding-bottom: 70px;
    }
    .home1.feature .item {
        margin-bottom: 30px;
    }
}


