/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  background-color: var(--bs-white);
}


@media (max-width: 575px) {
    .service .hoverservice p{
        text-align: center !important;
    }
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #d71f27;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #133c92;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #133c92;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #133c92;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
  background: #ffff;
  padding: 3px 0px 0px 10px;
  border-radius: 20px;

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .btn-read-more,
.navbar .btn-read-more:focus {
  padding: 4px 18px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.navbar .btn-read-more i {
  background-color: #ffffff;
  padding: 4px 5px;
  border-radius: 50%;
  margin-left: 6px;
  font-size: 20px;
  color: #133c92;
  font-weight: 700;
  animation: bounce .7s infinite alternate;
}

@keyframes bounce {
  0%, 80% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(7px);
  }
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 5px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #133c92;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


@media (max-width: 575px) {
.navbar .btn-read-more {
  display: none !important;
}
}


/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}


/*--------------------------------------------------------------
# hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #133c92;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

#hero .container {
  padding-top: 73px;
}

#hero .hero-img img {
  width: 100%;
  margin-top: -50px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 37px;
  font-weight: 600;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 20px;
  text-align: justify;
}

#hero .btn-read-more,
#hero .btn-read-more:focus {
  padding: 4px 25px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #ffff;
  font-size: 16px;
  border: 2px solid #ffff;
  font-weight: 600;
}

#hero .btn-read-more i {
  background-color: #133c92;
  padding: 0px 5px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}


#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 50vh;
    text-align: center;
  }

  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 27px;
    font-weight: 600;
    line-height: 35px;
    color: #fff;
  }

  #hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 18px;
    text-align: justify;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img img {
    width: 100%;
    margin-top: 0px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 80vh;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  #hero h1 {
    font-size: 24px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
    text-align: center !important;
  }

  #hero .hero-img img {
    width: 100%;
    margin-top: 0px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 90%;
    margin-top: 0px;
  }

  #hero {
    height: 85vh;
    text-align: center;
  }


}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 35px 0 50px;
}

.counts .count-box {
  align-items: center;
  padding: 20px 30px;
  width: 100%;
}

.counts .count-box .awards {
  font-size:35px;
  line-height: 0;
  margin-right:18px;
  color: #e2454c;
  margin-top: -23px;
  margin-left:10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color: #e2454c;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000;
  font-weight:500;
}

@media (max-width: 768px) {
  .counts {
    padding: 0px 0 50px;
  }
}

/*=====Ends Counts============/




/*============Explore=================*/
.explore {
  margin-top: -100px;
}

.explore11 {
  padding: 35px 40px;
}

.explore12 {
  border-radius: 25px;
}

.explore .bgcolor1 {
  background-color: #133c92;
  height: 80px;
  width: 80px;
  padding: 10px;
  border-radius: 15px;
}


.explore .bgcolor2 {
  background-color: #d71f27;
  height: 80px;
  width: 80px;
  padding: 10px;
  border-radius: 15px;
}

.explore h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
  color: #000;
}

.explore p {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.explore .btn-read-more,
.explore .btn-read-more:focus {
  padding: 2px 25px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #133c92;
  font-size: 16px;
  border: 2px solid #133c92;
  font-weight: 700;
}

.explore .btn-read-more i {
  background-color: #133c92;
  padding: 0px 5px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  animation: bounce .7s infinite alternate;

}

@keyframes bounce {
  0%, 80% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(7px);
  }
}

.explore .btn-read-more2,
.explore .btn-read-more2:focus {
  padding: 2px 25px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #d71f27;
  font-size: 16px;
  border: 2px solid #d71f27;
  font-weight: 700;
}

.explore .btn-read-more2 i {
  background-color: #d71f27;
  padding: 0px 5px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  animation: bounce .7s infinite alternate;

}

@media (max-width: 768px) {
  .explore11 {
    padding: 20px 20px;
  }
  .explore {
    margin-top: 30px;
  }

  .explore12{
    box-shadow: none !important;
  }

  .explore .bgcolor1 {
    background-color: #133c92;
    height: 60px;
    width: 60px;
    padding: 7px;
    border-radius: 15px;
  }

  .explore .bgcolor2 {
    background-color:#d71f27;
    height: 60px;
    width: 60px;
    padding: 7px;
    border-radius: 15px;
  }

  .explore h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
    line-height: 1.15;
    color: #000;
  }

  .explore p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .explore .margin-bottomm{
    margin-bottom: 2rem!important;
  }

.explore .btn-read-more,
.explore .btn-read-more:focus {
  padding: 0px 18px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #133c92;
  font-size: 15px;
  border: 2px solid #133c92;
  font-weight: 700;
}

.explore .btn-read-more i {
  background-color: #133c92;
  padding: 0px 5px;
  border-radius: 50%;
  margin-left: 6px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  animation: bounce .7s infinite alternate;

}

@keyframes bounce {
  0%, 80% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(7px);
  }
}

.explore .btn-read-more2,
.explore .btn-read-more2:focus {
  padding: 0px 25px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #d71f27;
  font-size: 14px;
  border: 2px solid #d71f27;
  font-weight: 700;
}

.explore .btn-read-more2 i {
  background-color: #d71f27;
  padding: 0px 5px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  animation: bounce .7s infinite alternate;

}
}

/*============Explore=================*/


/* ========== Start Clients Section =========*/

.clients_section {
  background-size: cover;
  padding: 10px 0px 30px;
}

.cllient_bg {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px 0px;
  border-radius: 15px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

.clients_slide {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative ;
}

.clients_slide img {
  height: 100px;
  width:250px;
}

.clients_slide .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.clients_slide .slide {
  height: 100px;
  width: 250px;
}


@media (max-width: 576px) {
  .clients_slide img {
    height: 60px;
    width: 150px;
  }

  .clients_slide .slide {
    height: 60px;
    width: 150px;
  }
  .cllient_bg {
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #fff;
    padding: 30px 0px;
    border-radius: 15px;
    margin: 0px 0px;
  }

  .clients_slide {
    height: 65px;
    margin: auto;
    overflow: hidden;

  }

}
/* ========== End Clients Section ====== */


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--bs-black-title);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #133c92;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  section {
    padding: 10px 0;
    overflow: hidden;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 25px;
    font-weight: 702;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--bs-black-title);
  }

  .section-title {
    text-align: center;
    padding-bottom: 10px;
  }


}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.plus-icon-counter1::after {
    content: " +";
    color: #e2454c;
}

.plus-icon-counter2::after {
    content: " +";
    color: #28786b;
}

.plus-icon-counter3::after {
    content: " +";
    color: #2b5eb0;
}

.plus-icon-counter4::after {
    content: " +";
    color: #d9c12c;
}


.about {
  padding: 50px 0px 12px;
  text-align: center;
}

.about h4{
    text-align: left;
    color: #133c92;
    font-weight: 600;
    margin-top: 20px;
    font-size: 20px;
}

.abouttt .btn-read-more,
.abouttt .btn-read-more:focus{
  padding: 4px 30px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  background-color: #d71f27;
  border: 2px solid #d71f27;
  font-weight: 700;
}

.abouttt .btn-read-more i {
  background-color: #ffff;
  padding: 0px 5px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 20px;
  color: #d71f27;
  font-weight: 800;
  animation: bounce .7s infinite alternate;

}

@keyframes bounce {
  0%, 80% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(7px);
  }
}


@media (max-width: 991px) {
    .about {
        padding: 15px 0px 12px !important;
        text-align: center;
    }
}


@media (max-width: 575px) {
  .about p {
    text-align: justify;
    font-size: 16px;
  }

}


.about_breadcrumbs{
    background: linear-gradient(rgba(5, 81, 89, 0.4), rgba(6, 74, 56, 0.5)), url("../img/aboutHeader.png") fixed center center !important;
}


/*--------------------------------------------------------------
# Mision Vision
--------------------------------------------------------------*/
.mission h4{
    text-align: center;
    color: #133c92;
    font-weight: 600;
    font-size: 20px;
}

@media (max-width: 768px) {
    .mission .margin_none{
        padding: 0px !important;
    }
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.service {
  background:linear-gradient(rgba(5, 40, 80, 0.9), rgba(50, 50, 80, 0.9)), url("../img/bgimage.jpg");
  height:auto;
  background-size: cover;
  padding: 60px 0;
  padding-bottom: 0px !important;
}

.service h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.service p {
  color: #fff;
  font-size: 15px;
}

.service .hoverservice p {
  color: #fff;
  font-size: 15px;
  text-align: justify;
}

.servicebtn .Readmore {
    line-height: 0;
    transition: 0.5s;
    color: #133c92;
    font-size: 17px;
    font-weight: 600;
}

.servicebtn .Readmore i {
margin-left: 5px;
font-size: 18px;
transition: 0.3s;
}

.servicebtn .Readmore:hover i {
transform: translateX(10px);
}

.service .Readmore {
  line-height: 0;
  transition: 0.5s;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.service .Readmore i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.service .Readmore:hover i {
  transform: translateX(10px);
}


.service .hoverservice {
  transition: 0.3s;
}

.service .hoverservice:hover {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1024px) {
  .service {
    background-attachment: scroll;
  }
}

@media (max-width: 991px) {
    .service-details .borderrrrr{
        margin-bottom: 50px !important;
    }

    .service-details .borderrr{
        border: none !important;
    }
    .service-details .marginnn{
        margin-left: 0px !important;
    }
}

@media (max-width: 768px) {
    .service {
    text-align: center;
    padding: 30px 0px;
    }

    .service-details .meee3{
        margin-left: 0px !important;
    }
}

.service-details .borderrr{
    border: 1px solid #e3d9d9;
}

.service-details .borderr{
    border: 1px solid #e3d9d9;
}

/*============Project CSS============
====================================*/

.project-main-content .nav-pills .nav-link:not(.active) {
  background: rgb(243, 243, 243);
  color: #000;
}
.project-main-content .card {
  border-radius: 6px!important;
}
.project-main-content .card .card-img-top {
  height: 230px;
  width: 100% !important;
}
.project-main-content .card .position-absolute {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, rgba(35, 35, 35, 0) 0%, rgba(6, 14, 43, .7) 21.88%);
  color: #fff;
}
.project-main-content  h4{
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 10px;
}

.project-main-content p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.project-main-content .card-body {
  padding: 20px;
}
.project-main-content .card-body .name {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.project-main-content .card-body img {
  height: 24px;
}
.project-main-content .card-title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}

.project-main-content .Readmore {
  line-height: 0;
  transition: 0.5s;
  color: #3f5c8b;
  font-size: 15px;
  font-weight: 600;
}

.project-main-content .Readmore i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.project-main-content .Readmore:hover i {
  transform: translateX(10px);
}


.project-main-content .btn-read-more,
.project-main-content .btn-read-more:focus{
  padding: 4px 30px;
  padding-right: 10px !important;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  background-color: #3f5c8b;
  border: 2px solid #3f5c8b;
  font-weight: 500;
}

.project-main-content .btn-read-more i {
  background-color: #ffff;
  padding: 0px 5px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 20px;
  color: #3f5c8b;
  font-weight: 800;
  animation: bounce .7s infinite alternate;

}

@keyframes bounce {
  0%, 80% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(7px);
  }
}


.project-main-content .project-img[data-v-7a213d8c] {
  background: #BDE2F8;
  padding: 5px;
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
#product {
  background: #f0f0f385 fixed center center;
  background-size: cover;
  padding: 60px 0;
  margin-top: 0px;
}

.product .product-item {
  margin-bottom: 30px;
}

.product .product-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.product .product-wrap::before {
  content: "";
  background: rgba(122, 105, 96, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.product .product-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
  height: 230px;
}

.product .product-wrap .product-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.product .product-wrap .product-links a {
  color: #1e7eeb;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.product .product-wrap .product-links a i {
  line-height: 0;
  font-size: 20px;
}

.product .product-wrap .product-links a:hover {
  background: #1e7eeb;
  color: #fff;
}

.product .product-wrap .product-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.product .product-wrap .product-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin: 3px;
}

.product .product-wrap .product-info p {
  color: #ffffff;
  font-size: 13px;

}

.product .product-wrap:hover::before {
  left: 0;
}

.product .product-wrap:hover .product-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.product .product-wrap:hover .product-info {
  opacity: 1;
  bottom: 0;
}

@media (max-width: 768px) {
  #product{
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# portfolios
--------------------------------------------------------------*/
.portfolio{
  padding: 60px 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
  margin-top: -25px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 16px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 3px 10px 3px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #174797;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .portfolio{
    padding: 40px 0;
  }

  .portfolio-details .portfolio-info img{
    height:auto !important;
    width: 100% !important;
}
}

.portfolio-details .portfolio-info p{
    text-align:justify;
    font-size:15px;
    margin-bottom: 5px !important;
}


.portfolio-details .portfolio-info img{
    height: 380px;
    width: 100%;
}


/*--------------------------------------
# Start Our Language
------------------------------------------
*/
.language{
  padding: 60px 0;
}


@media (max-width: 768px) {
  .language{
    padding: 40px 0;
  }
}


/*-------------------------------------
# End Our Language
---------------------------------------
*/

/*--------------------------------------------------------------
# Certificates
--------------------------------------------------------------*/
.certificate .certificate-item {
  margin-bottom: 30px;
}

.certificate #certificate-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
  margin-top: -25px;
}

.certificate #certificate-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 16px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 3px 10px 3px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.certificate #certificate-flters li:hover,
.certificate #certificate-flters li.filter-active {
  background: #174797;
  color: #fff;
}

.certificate #certificate-flters li:last-child {
  margin-right: 0;
}

.certificate .certificate-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #174797;
  border-radius: 5px;
  height:250px;
  overflow:hidden;
}

.certificate-wrap img {
  height: auto;
  width: 100%;
}

.certificate .certificate-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.certificate .certificate-wrap .certificate-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.certificate .certificate-wrap .certificate-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.certificate .certificate-wrap .certificate-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.certificate .certificate-wrap .certificate-info h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  padding: 0px 30px;
}

.certificate .certificate-wrap .certificate-info p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 10px;
}

.certificate .certificate-wrap .certificate-links {
  text-align: center;
  z-index: 4;
}

.certificate .certificate-wrap .certificate-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.certificate .certificate-wrap .certificate-links a:hover {
  color: #6b92ec;
  padding: 20px;

}

.certificate .certificate-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.certificate .certificate-wrap:hover .certificate-info {
  opacity: 1;
}

.certificate .certificate-wrap:hover .certificate-info::before {
  top: 15px;
  left: 15px;
}

.certificate .certificate-wrap:hover .certificate-info::after {
  bottom: 15px;
  right: 15px;
}


@media (max-width: 768px) {
  .certificate{
    padding-top: 25px !important;
    padding-bottom: 50px !important;
  }
}

/*--------------------------------------------------------------
#End Certificate
--------------------------------------------------------------*/


/*========Testimonial Start=========*/
/*===================================*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 0px 15px;
  margin-top: 0px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
  border:1px solid #dee2e6;
}

.testimonials .testimonial-item .testimonial-img {
  width: 75px;
  height: 75px;
  border-radius: 50px;
  border: 2px solid #ab620b;
  margin: 0 10px 0 0;
  margin-bottom: 10px;
}

.testimonials .testimonial-item h3 {
  font-size:22px;
  font-weight:600;
  margin: 0px 0 5px 0;
  color: #133c92;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ab620b;
  margin: 0;
}

.testimonials .testimonial-item .fa-quote-right,
.testimonials .testimonial-item .fa-quote-left {
    color: #c171124a;
    font-size: 18px;
}

.testimonials .testimonial-item .fa-quote-left {
  display: inline-block;
  left: -3px;
  position: relative;
}

.testimonials .testimonial-item .fa-quote-right {
  display: inline-block;
  right: -3px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {

  margin: 10px auto 0px auto;
  font-size: 15px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #133c92;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #133c92;
}
/*========Testimonial End==========*/
/*===================================*/



/*======Frequently Asked Questions=========*/
/*=========================================*/
.faq{
  margin-top:30px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
  background: #e1e9f6;
}

.faq .faq-list li .bgbgbg {
  background: #fff;
  color: #133c92;
  padding: 15px 10px;
  border-radius: 5px;
}

.faq .faq-list .bgbgbgss {
  padding: 0px 20px;
  margin-bottom: 15px !important;
}

.faq .faq-list li {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a .number111 {
  color: #133c92;
  padding: 0px 5px;
  border: 2px solid #133c92;
  border-radius: 50%;
  font-size: 12px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding: 0 30px;
  padding-left: 0px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 7px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: 14px;
  text-align: justify;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;

}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

@media (max-width: 768px) {
    .faq {
        margin-top: 0px;
    }
}

/*======Frequently Asked Questions=========*/
/*=========================================*/



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.ipsita_form{
  border-radius:30px;
}

.info .offer h3{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.info .offer .p{
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  color: #000;
}

.contact .info {
  padding: 10px 30px;
}

.contact .info i {
  font-size: 20px;
  color: #174797;
  float: left;
  width: 40px;
  height: 40px;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.phone{
  margin-top:40px;
}

.contact .info p{
  margin-bottom: 30px;
  font-size: 15px;
  color: #51555a;
  /*text-align: justify;*/
  font-weight: 500;
}

.contact .info .ppp{
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 14px;
}

.contact .info .d-flex{
margin: 15px 0px !important;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #174797;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: rgba(52, 104, 190, 0.30) 0px 5px 15px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input{
  border-radius: 0;
  box-shadow: none;
  font-size:16px;
  font-weight:500;
  color:#4e5255;
}

.contact .php-email-form textarea{
    border-radius: 0;
    box-shadow: none;
    font-size:16px;
    font-weight:500;
    color:#4e5255;
}

.contact .php-email-form .form-select .ffffff{
    border-radius: 0;
    box-shadow: none;
    font-size:16px;
    font-weight:500;
    color:#4e5255;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;

}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contact{
    padding-top: 20px !important;
    padding-bottom: 50px !important;
  }

  .contact .info .mp{
    margin-left: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 14px;
  }

  .contact .info {
    padding: 0px 3px;
  }

  .contact .buttonnn{
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  height: 180px;
  margin-top: 70px;
}

.breadcrumbs h2 {
    margin-top: 40px;
    font-size: 30px;
    font-weight: 600;
    color: #ffff;
}

.breadcrumbs p{
    margin-top: 5px;
    font-size: 15px;
    color: #fff;
}

@media (max-width: 991px) {
    .breadcrumbs {
        padding: 15px 0;
        background: #f3f5fa;
        height: 150px;
        margin-top: 60px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* #footer {
  font-size: 14px;
  background: #174797;

}

#footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 15px;
  color: #fff;
}

#footer .copyright {
  font-size: 16px;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 15px;
  }

  #footer {
    font-size: 12px;
    background: #174797;
  }


  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

} */


/* service Menu Click */
.service-item {
    padding: 30px 25px;
    border-radius: 5px;
    border: 3px solid #EEF6FD;
    background: #FFFFFF;
    transition: all .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
  }
  .service-item:after, .service-item:before {
    position: absolute;
    content: "";
    width: 1000%;
    height: 1000%;
    top: -100px;
    right: -100px;
    background-image: url(../assets/img/service2/service-bg.97394cce.svg);
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
    transition: all .5s;
  }
  .service-item:before {
    transform: rotate(180deg);
    top: auto;
    bottom: -100px;
    right: auto;
    left: -100px;
  }
  .service-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
  }
  .service-item h3, .service-item .h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  
.service-item p {
    font-size: 15px;
    margin-bottom: 0px !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

@media (max-width: 991.98px) {
.service-item p {
    margin-bottom: 20px;
}
}

.service-item:hover {
    box-shadow: 5px 5px 35px #00000026;
}

.service-item:hover:after {
    right: 0;
}

.service-item:hover:before {
    bottom: 0;
    left: 0;
}



/*================Page Link ========*/
.active>.page-link, .page-link.active {
    background-color: #174797 !important;
    color:white !important;

}
.page-link {
    color: #174797 !important;
    font-weight: 600 !important;

}
.pagination{
    margin: auto !important;
}



/*=======training=========*/
#traningipsita .train-data{
 -webkit-line-clamp:5 !important;
}


.breadcrumb-item + .breadcrumb-item::before {
    color: white !important;
}



.footer {
  background: rgb(19, 60, 146);
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 11%);
  background-size: 30px 30px;
  animation: move 10s linear infinite;
}
@keyframes move {
  100% { transform: translate(50px, 50px); }
}
.footer .footer-top {
  padding: 60px 0 0px 0;
  position: relative;
  z-index: 2;
}
.footer h3, .footer h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  padding: 5px 0;
}
.footer ul li a {
  color: #ffffff;
  transition: 0.3s;
  text-decoration: none;
}
.footer ul li a:hover {
  color: #b9b8b8;
  padding-left: 5px;
}
.footer .social-links {
  margin-top: 15px;
}
.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff20;
  color: #fff;
  line-height: 1;
  padding: 10px 10px;
  margin-right: 6px;
  border-radius: 50%;
  transition: 0.4s ease;
  backdrop-filter: blur(4px);
}
.footer .social-links a:hover {
  background: rgb(8, 32, 85);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 15px rgba(255,102,0,0.5);
}
.footer .footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #dfdfdf;
  text-align: center;
  font-size: 15px;
  z-index: 2;
  margin-top: 30px;
  position: relative;
}

#footer .logo img {
  max-height: 40px;
  background: #ffff;
  padding: 3px 0px 0px 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .footer .footer-contact, 
  .footer .footer-links, 
  .footer .footer-social {
    margin-bottom: 10px;
  }


  .footer .footer-top {
    padding: 30px 0 0px 0;
    position: relative;
    z-index: 2;
  }
}