 

/* Font for headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/* Font for paragraphs */
p {
  font-family: "Poppins", sans-serif;
}

/* Font for navigation links */
.nav__link {
  font-family: "Poppins", sans-serif;
}

.image{width: 100%;}
.dec{display: block;}
.mob{display: none;}

/* Font for footer headings */
.footer .foot-box .fbox h3 {
  font-family: "Poppins", sans-serif;
}

/* Font for footer copyright text */
.footer h4 {
  font-family: "Poppins", sans-serif;
}

body{ font-family: "Poppins", sans-serif;}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* --first-color: hsl(230, 75%, 56%); */
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(0, 0%, 100%);
  --border-color: hsl(230, 25%, 80%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  /* --body-font: "Syne", sans-serif; */
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.homeoverview {
  margin: 0 auto;
  padding: 0% 0 0 0%;
  top: 40px;
  left: 0;
  position: relative;
  width: 100%;
  text-align: left;
}

.vihang-four {
  width: 100%;
  margin: 0 auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}


.containerr {
  max-width: 90%;    margin: 9px auto;
  /* margin-inline: 1.5rem;*/
}

.main {
  position: relative;
  height: 100vh;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}



.search__close,
.login__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  padding: 10px 0;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  /* background-color: var(--body-color); */
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__search, 
.nav__login, 
.nav__toggle, 
.nav__close {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .4s;
}

:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {
  color: var(--first-color);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    /*top: -100%;*/
            top: -142%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, .15);
    width: 100%;
    padding-block: 4.5rem 4rem;
    transition: top .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}

.nav__link {
  color: #000;
  font-weight:  normal;
  transition: color .4s;
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== SEARCH ===============*/
.search__form {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--container-color);
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  padding-inline: 1rem;
  border-radius: .5rem;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.search__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.search__input {
  width: 100%;
  padding-block: 1rem;
  background-color: var(--container-color);
  color: var(--text-color);
}

.search__input::placeholder {
  color: var(--text-color);
}




/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.show-login .login__form {
  transform: translateY(0);
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .search,
  .login {
    padding-top: 10rem;
  }

  .search__form {
    max-width: 450px;
    margin-inline: auto;
  }

  .search__close,
  .login__close {
    width: max-content;
    top: 5rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 2rem;
  }

}

/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 0rem;
  }
  .nav__close, 
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 1rem;
  }

}

@media screen and (min-width: 1150px) {
  .containerr {
   /* margin-inline: auto;*/
  }
}

.swiper-button-next, .swiper-button-prev{color: #fff !important;}
.swiper-pagination-bullet{background: #fff!important;}

/* slider */
 /* banner slider */
 .main{
    height: auto;
    width: 100%;
    /* background-color: red; */
  }
  .wrapper, .slide{
    width: 100%;
       margin-top: 2.5rem;
    /* overflow: hidden; */
    height: 100%;
  }
  .slide .image{
width: 100%;
/*height: 100%;*/
object-fit: cover;
  }

  .slide .image-data{
    position: absolute;
left: 50%;
transform: translate(-50%, -50%);
    top: 50%;
    text-align: center;
    width: 100%;z-index: 100;
  }
  .image-data span.text{
    color: white;
    font-size: 14px;
    font-weight: 400;
  }
.slide::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 10;
  /*  background-color: rgb(0,0, 0, 0.4);*/
}
  .image-data h2{
    font-size: 45px;
    color: white;
    font-weight: 600;
  }
  .swiper-button-next{
    right: 50px;
    color: white !important;

  }
/* slider */

/* about Us */
.section__container{
  max-width: 1200px;
  margin: auto;
  padding: 5rem 1rem;
}
#about{
 margin-top: 3rem;
  margin-bottom: 8rem;
}
.about-row{
  width: 80%;
  padding: 1rem;
/*   max-width: 1170px;
justify-items: center; */
margin: auto;
  grid-gap:50px 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.about-left img{
  width: 100%;
height: 100%;
margin: 1rem;
z-index: 1;
object-fit: cover;
}
.about-left{
  overflow: hidden;

  position: relative;
  
}


.about-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 16px  solid #55c1b1; width: 80%; 
  border-left: 16px solid #55c1b1;

  z-index: 0;
}

/* .about-left {
  position: relative;
}

.about-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 10px solid red;
  border-left: 10px solid red;
  transform: skew(deg); 
} */



.about-row .right{
display: flex;
align-items: center;
}

.about-row .right .content{
 /* border: 1px solid rebeccapurple; */
  padding-left: 20px;
}
.about-row .right .content h1{
  margin-bottom: 1rem;
  color: #005e84;
  font-weight: bold;
}
.about-row .right .content p{
  font-size: 15px;
  color: #808285;
  text-align: justify;
  margin: 0 0 20px 0;
  line-height: 25px;
}

.about-row .right .content button{
  padding: 8px 19px;
  background-color: #005d83;
  margin-top: 1rem;
  border: 0px solid red;
  border-radius: 5px;
}
.about-row .right .content button a {
  color: white;
  
}
/* about us end*/

.key-personal{    width: 100%;
  margin: 0 auto;
  object-fit: cover;
  padding: 5rem;
  background-color: #ffffff;
  /* border: 1px solid red; */
  margin-top: 5rem;
  /* margin: auto; */
  /* padding: 1rem; */
  margin-bottom: 5rem;
  float: left;}

  .key-personal-main{width: 50%; margin: 0 auto;}



/* mission start  */
.mission{
  padding: 5rem;
  background-color: #eff1f3;
  /* border: 1px solid red; */
  margin-top: 5rem;
  /* margin: auto; */
  /* padding: 1rem; */
  margin-bottom: 0rem;
}
.mission-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  padding: 1rem;
  max-width: 1500px;
  /* justify-items: center; */
  /* border: 1px solid red;  */
  margin: auto;
  grid-gap:40px 50px;
}
.mission-two .content h1,
.mission-one .content h1{
margin-bottom: 0rem;
margin-top: 2rem;
  padding: 0rem;
  color: #005d83;
}

.mission-one .content p,
.mission-two .content p{
text-align: justify;font-size: 15px;
color: #005d83;
 
line-height: 25px;
  }
/* mission end */


/*service box  */
.service-box{
  padding: 5rem;
  background-color: #ffffff;
  /* border: 1px solid red; */
  margin-top: 5rem;
  /* margin: auto; */
  /* padding: 1rem; */
  margin-bottom: 5rem;
}

.service-box h2{ margin-bottom: 3rem;
  color: #005e84;    font-size: 1.5em;
  font-weight: bold; text-align: center;}


  .key-personal-main h2 {
    margin-bottom: 1rem;
    color: #005e84;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}

.service-boxes{
  /* margin: auto; */
  width: 100%;
  padding: 1rem;
  /* max-width: 1500px; */
  /* max-height: 1100px; */
  /* justify-items: center; */
  margin: auto;
  grid-gap:40px 50px;
  gap: 10px 10px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

  .business-box {
  position: relative;
}

.name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 9;
  width: 80%;
  text-align: center;
  background: #0b6c91;
  font-size: 1rem;
  padding: 1rem .5rem;
  box-shadow: 0px 10px 20px rgb(0 0 0 / 8%);
  text-transform: uppercase;
  color: #fff;
} .name:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 0;
  background: #a81531;
  transition: .5s all linear;
  z-index: -1;
}
.img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.img img {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-box-one{
  display: grid;
  padding: 0;
  /* background-color: red; */
  background-color: #55c1b1;
  grid-template-columns: repeat(2,1fr);
}
.service-box-one .imgage{
  width: 100%;
  height: fit-content;
  /* object-fit: cover; */
}
.service-box-one .imgage img{
  /* height: 100px; */
  width: 100%;
  object-fit: cover;
}
.service-box-one .service-text {
  margin-left: 2rem;
  margin-top: 2rem;
  color: white;
  text-align: start;
  margin-right: 2rem;
}
.service-box-one .service-text button{
  background-color: #005e84;
  padding: 7px 15px;
margin-top: 15px;
margin-bottom: 15px;
border-radius: 10px;
}
.service-box-one .service-text button a{
  color: white;
}

.overlay::before, 
.overlay::after{ 
  content: '';
  position: absolute;
  right: 50%;
  /* top: -10%; */
  bottom: -500px;
  height: 40px;
  width: 40px;
  background-color: red;
}

/*service box  */



/* Counter Box  */
.counter-box-section {
  position: relative; /* Ensure the container is positioned relatively */
  padding: 10rem 0;
  background: url("../images/bg.jpg");
  background-size: cover; /* Adjust as needed */
}
.counter-box{

  z-index: 99; /* Apply z-index to ensure it's above the overlay */
}
.counter-box h1{
  text-align: center;
  color: #54c1b1;
position: relative;
z-index: 99;
font-size: 65px;
font-weight: 500;
  

}
.counter-box-section::after {
  content: ""; /* Create the pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /* background-color: rgba(0, 0, 0, 0.5); */
}

.box{
  width: 100%;
  padding: 1rem;
  display: grid;
  grid-gap: 15px 15px;
  grid-template-columns: repeat(3, 1fr);
}
.box-one{
  z-index: 99;
  text-align: center;
  padding: 1rem;
  color: white;
}
.box-one .counter-one{
    /* border: 1px solid red; */
  padding: 1rem;
}
.box-one .counter-one span{
  font-size: 3.5rem;
  font-weight:400;
  color: #55c1b1;font-family: "Poppins", sans-serif;
}

/* Counter Box */


/* Awards Start*/
.awards{
  padding: 5rem;
  background-color: #ffffff;
  /* border: 1px solid red; */
  margin-top: 0rem;
  /* margin: auto; */
  /* padding: 1rem; */
  margin-bottom: 5rem;
}
.awards-box{
  /* margin: auto; */
  width: 100%;
  padding: 1rem;
  max-width: 1600px;
  /* max-height: 1100px; */
  /* justify-items: center; */
  margin: auto;
  /* grid-gap:50px 50px; */
  gap: 50px 10px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.awards-boxs-one{
  display: grid;
  /* margin-right: 5rem; */
  position: relative;
  gap: 50px;
  grid-template-columns: repeat(2,1fr);
}

.awards-boxs-one .imges{
  width: 100%;
  margin-bottom: 2px;
  position: relative;
  /* height: fit-content; */
  object-fit: cover;
}
.awards-boxs-one .imges img{
  /* height: 100px; */
  width: 100%;
  /* margin-bottom: 15px; */
  object-fit: cover;
}


.awards-boxs-one .textt{
  /* border: 1px solid red;
   */
  /* margin: auto; */
margin-top: 2rem;
}
/* Awards End*/
.awards-boxs-one .textt h3{
  font-size: 1rem;
}


/* footer */
.footer {
  color: white;
  width: 100%;
  background-color: #005e84;
  padding: 5rem 0rem 5rem 0rem; /* Add padding to provide space between footer content and edges */
  float: left;
}

.footer h4{
  margin: 0 auto; /* Center the foot-box horizontally */
  max-width: 1700px; /* Set maximum width for the foot-box */
text-align: end;
}

.footer .foot-box {
  gap: 1rem; /* Reduce the gap between foot-box items */
  margin: 0 auto; /* Center the foot-box horizontally */
  max-width: 1700px; /* Set maximum width for the foot-box */
  padding: 0 20px; /* Add padding to the sides of the foot-box */
  overflow: hidden;
  /* border: 1px solid red; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); /* Adjust grid columns */
}

.footer .foot-box .fbox {
  display: flex;
  flex-direction: column; /* Align fbox items in a column */
}

.footer .foot-box .fbox h3 {
  padding: 1rem 0;
  font-size: 1.5rem;
  color: rgb(248, 245, 245);
}

.footer .foot-box .fbox a {
  display: block;
  padding: 9px 0;
  color: white;
  text-decoration: none; /* Remove underline from anchor links */
  font-family: "Poppins", sans-serif;
}


.footer .foot-box .fbox a:hover i {
  padding-right: 2px;
}


.subnav {
  display: none; /* Hide sub-navigation by default */
  position: absolute;
  background-color: #fff; /* Change background color as needed */
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  z-index: 999; /* Ensure sub-navigation appears above other elements */
}

.subnav li {
  display: block;
}

.subnav a {
  display: block;
  padding: 10px;
  color: #333; /* Change text color as needed */
  text-decoration: none;
}

/* Show sub-navigation when hovering over Services */
.nav__item:hover .subnav {
  display: block;
}


/* Responsive styles for header-top */
.header-top {
  background-color: #fff; /* Example background color */
  
  padding: 10px 0; /* Adjust padding as needed */
}

.container {
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
}

.header-cta ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-cta ul li {
  display: inline-block;
  margin-right: 20px; /* Adjust margin as needed */
}

.header-cta ul li:last-child {
  margin-right: 0;
}

.header-social {
  text-align: right;
}

.header-social a {
  margin-left: 10px; /* Adjust margin as needed */
}



.top-btn:hover {
  background-color: #0056b3; /* Example button background color on hover */
}

/* Responsive styles for header-top */
@media screen and (max-width: 991px) {
  .header-top {
    display: none; /* Hide header-top on smaller screens */
  }
}













/* about us */

.abtsection{
  width:100%;
 
}

.gtco-testimonials {
  position: relative;
  padding: 5rem 0;
}
.gtco-testimonials h2 {
  color: #005e84;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}
.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #005e85;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: #005e85;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #ebebeb;
  box-shadow: 0 8px 30px -7px #d2d2d2;
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 0;
  border: 0;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  margin: 50px auto 0;
  
  box-shadow: 0 8px 20px -4px #95abbb;
  width: 100px;
  height: 100px;
}
.gtco-testimonials .card h5 {
  color: #005d84;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  padding: 30px 0 0;
}
.gtco-testimonials .card h5 span {
  font-size: 16px;
  color: #666666;
  text-align: center;
}
.gtco-testimonials .card p {
  font-size: 14px;
    color: #555;
    padding-bottom: 15px;
    text-align: center;
    padding: 10px;
    line-height: 25px;
    margin: 0 0 30px 0;
}
.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
}
.gtco-testimonials .center h5 span {
  font-size: 20px;
}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 210px;
  width: 210px;
}


.newcard{
  position: relative !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  min-width: 0 !important;
  word-wrap: break-word !important;
  /* background-color: #fff !important; */
  background-clip: border-box !important;
  border: 0;
  border-radius: 0;
}

@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }

  
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
}

/* about us */




/* careers */

.carrearsec{
  width: 100%;
  float: left;
  margin-bottom: 5rem;
    padding: 0 0rem 5rem 0rem;
}


.carrearseccontenat{
  width: 80%;
  margin: 0 auto;
}

.carrearseccontenat_left{
  width: 50%;
  float: left;
  padding: 30px;
}

.carrearseccontenat_right{
  width: 50%;
  float: right;
  padding: 30px;
}


.carrearsec h1{
  text-align: center;
}

.carrearseccontenat_left p{
  font-size: 15px;
  color: #808285;
  text-align: justify;
  margin: 0 0 20px 0;
  line-height: 25px;
}

.carrearseccontenat_left ul li{
  font-size: 17px;
  color: #808285;
  text-align: justify;
  margin: 0 0 20px 0;
  line-height: 20px;
}

.carrearseccontenat_left button{

  font-size: 16px;
  color: white;
  outline: none;
  border: none;
  cursor: pointer; 
    background-color:#005e84;
    margin-top: 1rem;
    border: 0px solid red;
    border-radius: 0px;
    padding: 15px 30px;
}

.carrearseccontenat_left button:hover{
  background-color: black;
}

/* careers */


/* contct form */

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{display: block !important;}

.contform{
  width: 100%;
  float: left;
  margin-bottom: 5rem;
  padding: 0 0rem 5rem 0rem;
}


.contform_contenar{
  width: 80%;
  margin:5% auto;
  display: flex;
}
.contform h1{

  margin-bottom: 1rem;
}

.contform_contenar_left{
  width: 50%;
  float: left;
}


.contform_contenar_right{
  width: 50%;
  float: right;
}

.contform h1{
  text-align: center;
}


.containercont {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block; 
  font-weight: 400;
  font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-group textarea {
  height: 100px;
}

.form-group input[type="submit"] {
  background-color: #005e84;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 0;
  cursor: pointer;
  font-size: 16px;
}

.forbtt{
  font-size: 14px;
  color: white;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 8px 19px;
    background-color: #005d83;
    margin-top: 1rem;
    border: 0px solid red;
    border-radius: 5px;
}

.form-group input[type="submit"]:hover {
  background-color: #000;
}

@media (max-width: 600px) {
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea,
  .form-group input[type="submit"] {
      width: 100%;
  }
}



/* contct form */



.awards h1{
  color: #005e84;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}





.mediasection{
  width: 100%;
  float: left;
  margin-bottom: 5rem;
    padding:0 0rem 5rem 0rem;
}


.mediasection h1{
  color: #005e84;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}


.carrearsec h1{
  color: #005e84;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}


.contform h1{
  color: #005e84;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}


.carrearseccontenat_left h1 {
  margin-bottom: 1rem;
  color: #005e84;
  font-weight: bold;
}
.btn{
  background-color: #005e84;
  padding: 15px 30px;
/* justify-content: center; */
color: white;
border-radius: 0px;
cursor: pointer;
margin-bottom: 1rem;
text-align: center;
/* margin-left:5rem; */
/* margin-right: 15rem; */
/* width: 10%; */
border: 0;
}
.btn:hover{
background-color: #000;
}

button{
  /* text-align: center; */
}

@media only screen and (min-width: 0px) and (max-width: 1000px) {
.dec{display:  none;}
.mob{display:block;}

}


.owl-prev,
.owl-next {
    font-size: 80px !important; /* Adjust the font size to make the buttons larger */
    color: #2a83a7
    !important; /* Set the color to white */
    background-color: transparent !important; /* Make the background transparent */
    /* border: 2px solid #ffffff !important; Add a white border */
    /* border-radius: 10% !important; Make the button circular */
    padding: 10px !important; /* Adjust padding for better visibility */
}


.Bannerdesktop{
display: block;
}
.Bannermobile{
  display: none;
}
