
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap');

body {
  font-family: "inter", sans-serif;
  color: #444444;
}

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

h2 {
  color: #2c3f99;
  font-weight: 700;
  font-size: 30px;
}

h5 {
  color: #2c3f99;
}

p {
  color: #3B3B3B;
}

/*-------------------Header start--------------------------*/
#header {
  top: 50px;
  height: 90px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(25, 23, 21, 0.851);
  display: flex;
  align-items: center;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

.logo img {
  max-height: 80px;
}

.container.sub-top {
  display: flex;
  align-items: center;
}
.img-fluid {
  max-width: 100% ;
}
/*-------------reachus button Menu---------*/
.reachus-btn {
  background: #fbc110;
  color: #2c3f99;
  border-radius: 5px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
}

.reachus-btn:hover {
  background: #2c3f99;
  color: #fff;
}
a:hover {
  color: #fff;
}
@media (max-width: 992px) {
  .reachus-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}


/*----------------------------Navigation Menu--------------------------*/
/**
* Desktop Navigation
*/
.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: 24px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  transition: 0.9s;
}

.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: #fbc110;
}

.logo {
  margin-right: auto;
}

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

@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(39, 37, 34, 0.9);
  transition: 0.9s;
  z-index: 0;
}

.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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.9s;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*---------------------Hero Section start-----------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
  margin-bottom: 100px;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
  max-width: 1200px;
}

#hero h2 {
  color: #fff;
  margin: auto;
  max-width: 90%;
  margin-bottom: 30px;
  font-size: 75px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 22px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-reach {
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  padding: 13px 30px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;

}


#hero .btn-reach:hover{
  color: #ffffff;
  background:#00a884;
  border: 1px solid #00a884;

}



#hero .btn-reach2 {
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  padding: 13px 30px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;

}


#hero .btn-reach2:hover{
  color: #2c3f99;
  background:#fbc110;
  border: 1px solid #fbc110;

}



#hero .btn-reach-us {
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  padding: 13px 30px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  color: #fff;
  background: linear-gradient( 51deg, #90278E 0%, #652D90 100%);
  border: 1px solid #652D90;
  font-family: 'Comfortaa', cursive;
}



#hero .btn-reach-us:hover{
  color: #fff;
  background: linear-gradient( 51deg, #652D90 0%, #90278E 100%);
  border: 1px solid #652D90;
}


@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 65%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*---------------------Hero Section end-----------------------*/


/*---------------------home abouts Section start-----------------------*/
#about {
  margin-bottom: 100px;
  position: relative;
}

.commen-heading h5 {
  margin-bottom: 20px;
}

.commen-heading h2 {
  margin-bottom: 30px;
}

.common-heading.text-center {
  margin-bottom: 50px;
}

h5:after {
  content: "";
  width: 60px;
  height: 3px;
  display: inline-block;
  background: #fbc110;
  margin: 4px 10px;
  border-radius: 50px;
}

a.viewmore-btn {
  background: #fbc110;
  color: #2c3f99;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
  margin-top: 20px;
}

a.viewmore-btn:hover{
  background: #2c3f99;
  color: #fff;
}


.home-abt-img {
  width: 75%;
  height: 100%;
  border-radius: 10px;
}

.about-inner {
  background: rgba(255,255,255,0.9);
  padding: 20px;
  width: 20%;
  position: absolute;
  right: 16%;
  top: 20%;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
}

.about-icon-box {
  background-color: #fbc110;
  width: 90px;
  height: 90px;
  line-height: 25px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.about-inner-box p {
  color: #00244D;
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  text-align: justify;
}

span.inner-line {
  height: 65%;
  position: absolute;
  border: 2px solid #fbc110;
  top: 48px;
  right: 0;
}


/*---------Home page service-sec start--------------*/



/*---------our-principle-sec start--------------*/

#our-principle-sec {
  margin-bottom: 100px;
}

#our-principle-sec .outer-box {
  width: 100%;
  padding: 20px;
  text-align: center;
  margin-bottom: 23px;
  border-radius: 5px;
  transition: 1s;
}

#our-principle-sec .outer-box:hover {
  transform: translateY(-10px);
}

#our-principle-sec .icon-outer-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


#our-principle-sec i {
  font-size: 25px;
}

#our-principle-sec h4 {
  font-size: 18px;
  color: #00244D;
  margin: 10px 0 10px 0;
  font-weight: 600;
}

#our-principle-sec p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 26px;
}

#Principle-sub {
  background-image: url(../img/background-factory-blue.png);
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 200px;
}

#Principle-sub h2 {
  color: #ffffff;
  margin-top: 180px;
}

#Principle-sub p {
  color: #ffffff;
  text-align: justify;
}

.Principle-sub .video-box {
  background: url(../img/NoPath.png) center center no-repeat;
  background-size: cover;
  min-height: 620px;
  width: 50%;
  margin-top: 180px;
  margin-left: 50px;
  /* border: #fbc110 solid 5px; */
  position: relative;
}

.Principle-sub .play-btn {
  width: 100px;
  height: 100px;
  background: radial-gradient(#ffffff 50%, #fbc110 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(20% - 47px);
  top: calc(20% - 47px);
  overflow: hidden;
}

.Principle-sub .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fbc110;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Principle-sub .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid #fbc110;
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.Principle-sub .play-btn:hover::after {
  border-left: 15px solid #2c3f99;
  transform: scale(20);
}

.Principle-sub .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Testimonials Section
--------------------------------*/


#testimonial-sec {
  padding: 80px 0px;
  background: #FAFBFF;
  margin-bottom: 80px;
}

#testimonial-sec .outer-box {
  background-color: #f9f9f9;
  padding: 20px 25px;
  border-radius: 10px;
  position: relative;
  margin-right: 10px;
}

#testimonial-sec .inner-content-sec {
  display: flex;
  margin-bottom: 15px;
}

#testimonial-sec img.testim-profile {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  border-radius: 50%;
}

img.testim-quotes {
  right: 17px;
  top: 9px;
  position: absolute;
}

#testimonial-sec .inner-content-sec h3 {
  font-size: 20px;
  margin-bottom: 2px;

}


#testimonial-sec .inner-title-sec {
  padding-left: 120px;
}

#testimonial-sec .inner-title-sec {
  padding-left: 120px;
  padding-top: 30px;
}


.owl-carousel .owl-item img {
  display: block;
  width: 10%;
}







/* logo Section
--------------------------------*/
section#logo-sec {
  padding: 50px 0px;
  margin-bottom: 100px;
}
#logo-sec .outer-box {
 display: flex;
 align-items: center;
 justify-content: space-around;
}





/* ----------home footer section Starts------------ */
.footer {
  background-color: #00244D;
  width: 100%;
  height: auto;
  padding: 60px 0 0 0;
}

.footer h2 {
  font-size: 18px;
  font-weight: 500;
  color: #FAFAFA;
  margin-bottom: 20px;

}

.footer img {
  margin-bottom: 20px;
}

.footerLogo{
  max-height: 60px;
}

.footer-aboutus-sec p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 200;
}

.footer-aboutus-sec,
.footer-Links-sec,
.footer-cu-sec {
  margin-bottom: 30px;
}

.footer-Links-sec ul li {
  list-style-type: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 14px;
  padding: 0;
  font-weight: 200;
}

.footer-Links-sec ul {
  padding: 0;
}

.footer hr {
  color: #ffffff;
}

.footer-cu-sec address {
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 200;
  display: flex;
  align-items: baseline;
}

.footer-cu-sec p {
  color: #ffffff;
  margin-bottom: 23px;
  font-weight: 200;
}

.footer-cu-sec-align,
.footer-Links-sec-align {
  display: flex;
  justify-content: center;
}



.copy-rights {
  color: #ffffff;
  font-size: 14px;
}

.copy-rights p {
  text-align: start;
}

.footer-bt-sec {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #ffffff;
}

.footer-bt-sec p {
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
  font-weight: 200;
}


.footer a {
  text-decoration: none;
  position: relative;
  color: #ffffff;
  transition: 0.5s;
  font-size: 14px;
}

.footer a:hover {
  text-decoration: none;
  position: relative;
  color: #fff;
}

.social-links {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.social-links a {
  font-size: 21px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}


/* ----------home footer section ends------------ */





/* ----------Aboutus-page-sec-start ------------ */

header#sub-header {
  background: #191715d9;
  padding: 10px;
}

.breadcrumbs nav {
  background-color: #F5F5F5;
  padding: 20px 0;
  margin-bottom: 50px;
}
.breadcrumbs {
  margin-top: 104px;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: #fbc110;
  transition: 0.3s;
  text-decoration: none;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #191715d9;
  content: ">";
}

.aboutus-inner {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  width: 18%;
  position: absolute;
  right: 16%;
  top: 45%;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
}

/*================Services-page-starts====================  */
#services-sec {
  margin-bottom: 100px;
}

#services-sec .outer-box {
  margin-bottom: 25px;
  min-height: 410px;
}

#services-sec .outer-box p {
  margin-bottom: 0px;
}

#services-sec .outer-box a {
  text-decoration: none;
}


#services-sec .outer-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
}

#services-sec img {
  width: 100%;
  margin-bottom: 15px;
}

#services-sec h3 {
  font-size: 25px;
  font-weight: 600;
  color: #00244D;
  margin-bottom: 12px;
}

/*================Services-page-ends====================  */


/*================Services-department-page-start====================  */
#departments {
  margin-bottom: 100px;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  border-radius: 0;
  border: 1px solid #C2C2C2;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 200;
}

.departments .nav-link.active {
  background: #fbc110;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.departments .nav-link.active span.arrow{
  color: #ffffff;
}
span.arrow {
  color: #3B3B3B;
}
.departments .nav-link.active p {
  color: #ffffff;
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;

}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

ul.nav.nav-tabs.flex-column {
  background: #F2F6F7;
  padding: 30px;
}

.tab-content h2 {
  margin: 16px 0px;
}

/*================Services-department-page-end====================  */




/*================team-sec-start====================  */
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #00244D;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 300px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #00244D;
  position: relative;
}

.team .member span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

span.inne-line {
  height: 68%;
  position: absolute;
  border: 2px solid #fbc110;
  top: 14px;
}

#team {
  margin-bottom: 100px;
}

/*================team-sec-end====================  */


/*================button-Start====================  */
.common-contact-sec {
  background-color: #fbc110;
  padding: 44px 0px;
}

.common-contact-sec .custom-container {
  padding: 0px;
}

.contact-sec a{
  color: #828282;
  text-decoration: none;
}

.contact-sec a:hover{
  text-decoration: underline;
}

.common-contact-content h5 {
  font-weight: 700;
  color: #00244D;
}

.common-container-sec {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.custom-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}


.reachus-btn2 {
  background: linear-gradient( 51deg, #90278E 0%, #652D90 100%);
  border: 1px solid #652D90;
  color: #fff;
  border-radius: 5px;
  margin: 0 0 0 20px;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
  font-family: 'Comfortaa';
  display: block;
    width: 170px;
}
.reachus-btn2:hover {
  background: linear-gradient( 51deg, #652D90 0%, #90278E 100%);
}

.reachus-btn2 img{
  height: 20px;
  margin-right: 10px;
}


.common-contact-content p {
  margin-bottom: 0px;
  font-size: 24px;
  color: #2c3f99;
}

/*================button-End====================  */


/* Our Gallery starts */
.gallery-sec {
  margin-bottom: 100px;
}

.gallery-sec h4 {
  text-align: center;
  margin-top: 30px;
  color: #000000;
  text-transform: capitalize;
  font-size: 32px;
  font-weight: bold;
}

.gallery-sec .mb-3 {
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.gallery-sec .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #fbc110;
  border-radius: 5px;
  padding: 8px 26px;
  margin-right: 20px;
  border: none;
}


.gallery-sec .nav-pills .nav-link {
  color: #3B3B3B;
  background: none;
  border: 0;
  border: 1px solid #9F9F9F;
  border-radius: 5px;
  padding: 8px 26px;
  margin-right: 20px;

}

.container .gallery a img {
  width: 32%;
  height: auto;
  margin: 7px;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}

.clear {
  clear: both;
}

.contact-sec-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;

}

.contact-sec-img {
  position: relative;
  max-height: 440px;
  overflow-y: hidden;
  object-fit: cover;
  z-index: -1;
}

.contact-form-sec h2 {
  margin-bottom: 36px;
}

.contact-form-sec {
  padding: 40px;
  background: #F5F5F5;
}

.contact-form-sec p {
  color: #828282;
  font-size: 14px;
  line-height: 26px;
}

.contact-form-sec h4 {
  margin-bottom: 14px;
  font-weight: 600;
  color: #00244D;
  font-size: 28px;
}

button.btn.contact-btn {
  background: #00244D;
  color: #fff;
  border-radius: 5px;
  margin: 20px 0px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
}

button.btn.contact-btn:hover {
  background: #fbc110;
  color: #00244D;
}


iframe {
  width: 100%;
  height: 500px;
}

.contact-form-sec .social-links a {
  text-decoration: none;
  color: #00244D;
}



#contactus-sec {
  margin-bottom: 100px;
}

.form-control {
  border: 1px solid #DEDEDE;
  border-radius: 0rem !important;

}





.wed-sec {
  padding: 0 12px;
  margin-bottom: 100px;
}

.wed-left-sec {
  background-color: #00244D;

  position: relative;
  background-image: url(../img/9.png);
  background-position: center;
  background-repeat: no-repeat;
}

.wed-right-sec img {
  width: 100%;
}

.wed-right-sec {
  position: relative;
}


.wed-content-sec p {
  font-size: 15px;
  color: #D9D9D9 !important;
  margin-bottom: 20px;
  line-height: 30px;
  text-align: justify;
}

.wed-inner h4 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}
.wed-inner-icon {
  display: flex;
  padding: 50px;
}
.wed-inner-icon img {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.wed-content-sec {
  margin-top: 70px;
}
.carousel-content .btn-reach-us img, .carousel-content .btn-reach img{
  height: 25px;
  margin-right: 5px;
}

#callActions{
  position: fixed ;
  z-index: 99999;
  right: 20px;
  bottom: 30px;
  width: 70px;
}

.callActions a{
  text-decoration: none;
}

.callActions .item img{
  width: 60px;
}


.callBtn{

  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fbc110;
  color: #2c3f99;
  text-align: center;
  cursor: pointer;
}

.callBtn i{
  transform: rotate(-45deg);
  font-size: 25px;
}

.callBtn:hover i{
  transform:rotate(-45deg) scale(1.2);
}

.content p{
  text-align: justify;
}

.wBig{
  font-size: 60px;
}


#testimonial-sec p{
  text-align: justify;
}


.nav-link.active a{
  color: #fbc110;
}

#our-principle-sec .icon-outer-box img{
  width: 100px;
}


.dotIcon {
  display: inline-block;
  margin-left: -5px;
}

.dotIcon i{
  font-size: 5px;
  color: #6EBE46;
}



#logo-sec .owl-carousel .owl-item img{
  width: auto;
}

#logo-sec .owl-dots{
  margin-top: 30px;
}

#hero .carousel-item img{
  object-fit: cover;
  object-position: right bottom;
}
