html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #0092bb;
}

.primary_container {
  width: 1000;
  max-width: 1000;
  margin: 0 auto;
  overflow: hidden;
}

.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.call_to-btn {
  display: inline-block;
  padding: 15px 45px;
  border-radius: 10px;
  font-size: 15px;
  background-color: #ffffff;
  color: #262627;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}

.hero_section .call_to-btn {}

.call_to-btn img {
  width: 18px;
  margin-left: 10px;
}

.btn_on-hover {
  transition: all 0.3s ease 0s;
}

.call_to-btn:hover,
.btn_on-hover:hover {
  -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.7);
  transform: translateY(-7px);
}

.main-heading {
  color: #082465;
  font-weight: bold;
  text-align: center;
}

/*header section*/

.header_section {
  position: fixed;
  padding-top: 7px;
  font-family: 'Poppins', sans-serif;
  top: 0;
  width: 100%;
  background-color: #00315c;
  z-index: 1000;

}

nav.navbar.navbar-expand-lg {

  padding: 10px 0;
}

.nav-item {
  padding: 7px;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 20px;

  text-align: center;
}

.nav-link {
  background: #00315c;
  color: #FFF;
  border-radius: 10px;
  padding: 3px;
}

.nav-link:hover {
  background: #fff;
  border-radius: 10px;
  color: #00315c;

}


a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

.hero_section {
  padding: 10px;

}

.top_container {
  position: relative;

}



.top_container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/hero-bg.png);
  background-size: 100% 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: -100;
}

.sub_page .top_container::before {
  background-color: #2CB4D8;
  background-image: none;
}

.top_container::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  bottom: 20%;
  left: 6%;
  background-color: #0088c7;
}


.sub_page .top_container::after {
  display: none;
}

.logo {
  width: 12%;
  min-width: 35px;
  height: auto;
  min-height: 35px;
}

.logo img {
  width: 100%;
  height: auto;

}


.navbar-brand img {
  width: 25px;
  margin-right: 7px;
}


.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 1%;
}

.navbar-brand span {
  font-size: 22px;
  font-weight: 700;
  color: #fefefe;
  padding: 1px;
}

.custom_nav-container {
  z-index: 99999;
  padding: 15px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 40px;
}

/*end header section*/

/* hero section */
.hero_section {
  position: relative;
  top: -100vh;
  transition: top 1s ease;
  padding-bottom: 1%;
}

.hero_section.active {
  top: 0;
}


.hero-container {
  display: flex;
  padding-top: 160px;
  padding-bottom: 325px;
}

.hero_detail-box {
  padding-top: 5%;
  width: 40%;
}

.hero_img-container {
  padding: 6%;
  width: 68%;
  margin-right: -8%;
  margin-top: -1%;
}

.children {
  display: flex;
  width: 100%;
  height: 330px;
}

.children img {
  width: 0px;
  flex-grow: 1;
  object-fit: cover;
  opacity: .8;
  transition: .5s ease;
}

.children img:hover {
  cursor: crosshair;
  width: 60%;
  opacity: 1;
  filter: contrast(120%);

}

.hero_detail-box {
  color: #fefeff;
  margin-left: -60px;

}

.hero_detail-box h2 {
  font-size: 40px;
  color: #00315c;
  font-weight: 600;
  width: 70%;
}


.hero_detail-box p {
  margin-top: 20px;
  margin-bottom: 35px;
}




/* end hero section */


/* common style for some sections */
.common_style {
  padding-top: 5px;
}

.common_style>section {
  padding: 50px 0;
}

.common_style .row {
  align-items: center;
}

.common_style h3 {
  font-weight: 600;
  color: #00315c;
}

.common_style p {
  font-weight: 600;
  color: #ffffff;
  margin: 30px 0 50px 0;
  padding-top: 1%;
}
.common_style h6{
  font-weight: 600;
  color: #ffffff;
  margin: 30px 0 50px 0;
  
}

.common_style img {
  width: 100%;
}


/* end common style */

/* about section */
.about_section {
  width: 100%;
  height: auto;
  padding-top: -15%;

}

.enlace {
  text-align: center;
}

.enlace map {
  margin: 0;
  display: inline-block;
  text-decoration: none;
  background-color: #0092bb;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.enlace map iframe {
  width: 100%;
  height: 200px;
  max-width: 100%;
}




.about_detail-box {
  height: auto;
  padding-top: 11px;
  padding-right: 50px;
  padding-left: 190px;
  padding-bottom: 110px;
  color: #ffff;
  align-items: center;
}

.about_detail-box h1 {
  font-weight: bold;
  color: #ffffff;
  font-size: 50;
}

.about_detail-box h2 {
  text-align: left;
  font-size: 20px;
  color: #ffffff;
  padding-top: 32px;

}
.about_text{
  text-align: justify;
}

.about_detail-box h3 {
  text-align: left;
  font-size: 28px;
  color: #00315c;
  padding-top: 32px;

}
.about_text{
  color: white;
}



.about_section a iframe{
  width: 90%;
}




.about_img-container {

  margin: 0;
  padding: 0;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0092bb;
  padding-top: 130px;
}
.slider{
  width: 130%;
  height: 66%;
  border-radius: 15px;
  overflow: hidden;
  

}
.slides{
  width: 500%;
  height: 500px ;
  display: flex;
  padding-bottom: 15px;
}
.slides input{
  display: none;

}
.slide {
  width: 30%;
  transition: 2s;
  align-items: center;
}
.slide img{
  width: 75%;
  height: auto;
}
.nav-manual{
  position: absolute;
  width: 40px;
  margin-top:65px ; 
  display: flex;
  justify-content: center;  
  padding-right: 51%;
  padding-top: 68%;

}
.manual-btn{
  border: 2px solid #ffffff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}
.manual-btn:not(:last-child){
  margin-right: 40px;
}
.manual-btn:hover{
  background-color: #e5e5e5;
  
}

#radio1:checked ~ .first {
  margin-left: 0;
}
#radio2:checked ~ .first {
  margin-left: -32%;
}
#radio3:checked ~ .first {
  margin-left: -60%;
}
#radio4:checked ~ .first {
  margin-left: -92%;
} 
.nav-auto{
  position: absolute;
  display: flex;
  width: 180px;
  justify-content: center;
  margin-top: -20px;
  
}
.nav-auto div {
  border: 2px solid #e5e5e5;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;

}
.nav-auto div:not(:last-child){
  margin-right: 40px;

}

#radio1:checked ~ .nav-auto .auto-btn1{
  background-color: #e5e5e5;
} 
#radio2:checked ~ .nav-auto .auto-btn2{
  background-color: #e5e5e5;
}
#radio3:checked ~ .nav-auto .auto-btn3{
  background-color: #e5e5e5;
}
#radio4:checked ~ .nav-auto .auto-btn4{
  background-color: #e5e5e5;
}

/*about page 2*/
.about_img-container1 {

  margin: 0;
  padding: 0;
  height: 60vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0092bb;
  padding-top: 130px;
}
.slider2{
  width: 100%;
  height: 150%;
  border-radius: 15px;
  overflow: hidden;
  

}
.slides1{
  width: 400%;
  height: 500px ;
  display: flex;
  padding-bottom: 15px;
}
.slides1 input{
  display: none;

}
.slide1 {
  width: 30%;
  transition: 2s;
  align-items: center;
}
.slide1 img{
  width: 75%;
  height: auto;
}
.nav-manual1{
  position: absolute;
  width: 40px;
  margin-top:65px ; 
  display: flex;
  justify-content: center;  
  padding-right: 51%;
  padding-top: 32%;

}
.manual-btn{
  border: 2px solid #ffffff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}
.manual-btn:not(:last-child){
  margin-right: 40px;
}
.manual-btn:hover{
  background-color: #e5e5e5;
  
}

#radio14:checked ~ .first {
  margin-left: 0%;
}
#radio24:checked ~ .first {
  margin-left: -29%;
}
#radio34:checked ~ .first {
  margin-left: -60%;
}
#radio44:checked ~ .first {
  margin-left: -89%;
} 
.nav-auto{
  position: absolute;
  display: flex;
  width: 180px;
  justify-content: center;
  margin-top: -20px;
  
}
.nav-auto div {
  border: 2px solid #e5e5e5;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;

}
.nav-auto div:not(:last-child){
  margin-right: 40px;

}

#radio14:checked ~ .nav-auto .auto-btn1{
  background-color: #e5e5e5;
} 
#radio24:checked ~ .nav-auto .auto-btn2{
  background-color: #e5e5e5;
}
#radio34:checked ~ .nav-auto .auto-btn3{
  background-color: #e5e5e5;
}
#radio44:checked ~ .nav-auto .auto-btn4{
  background-color: #e5e5e5;
}
.about_text1{
  padding-top: 10% !important ;
}
.about_detail-box1{
  height: auto;
  padding-top: 190px;
  padding-right: 50px;
  padding-left: 190px;
  padding-bottom: 110px;
  color: #ffff;
  align-items: center;
}




/* admission section */
.admission_detail-box{
  padding-top: 26%;
}


.admission_section a {
  background-color: #0088c7;
  color: #fefeff;
}

.admission_img-container {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0092bb;
  padding-top: 130px;
}

#radio12:checked ~ .first {
  margin-left: 0;
}
#radio22:checked ~ .first {
  margin-left: -32%;
}
#radio32:checked ~ .first {
  margin-left: -60%;
}
#radio42:checked ~ .first {
  margin-left: -92%;
} 

#radio12:checked ~ .nav-auto .auto-btn1{
  background-color: #e5e5e5;
} 
#radio22:checked ~ .nav-auto .auto-btn2{
  background-color: #e5e5e5;
}
#radio32:checked ~ .nav-auto .auto-btn3{
  background-color: #e5e5e5;
}
#radio42:checked ~ .nav-auto .auto-btn4{
  background-color: #e5e5e5;
}


/* end admission section */

/* why section */
.why_detail-box{
  width: 100%;
  height: auto;
  padding-top: -30%;
}
.why_img-container{
  margin: 0;
  padding: 0;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0092bb;
  padding-top: -10%;
}


.why_section .row {
  padding-top: 0;
}

.why_section a {
  background-color: #6ebca8;
  color: #fefeff;
}
.slider1{
  width: 105%;
  height: 66%;
  border-radius: 15px;
  overflow: hidden;
  

}



#radio13:checked ~ .first {
  margin-left: 0%;
}
#radio23:checked ~ .first {
  margin-left: -32%;
}
#radio33:checked ~ .first {
  margin-left: -61.5%;
}
#radio43:checked ~ .first {
  margin-left: -92%;
} 


#radio13:checked ~ .nav-auto .auto-btn1{
  background-color: #e5e5e5;
} 
#radio23:checked ~ .nav-auto .auto-btn2{
  background-color: #e5e5e5;
}
#radio33:checked ~ .nav-auto .auto-btn3{
  background-color: #e5e5e5;
}
#radio43:checked ~ .nav-auto .auto-btn4{
  background-color: #e5e5e5;
}

.why_detail-box{
  padding-left: 15px;
  text-align: justify;
}






/* end why section */

/* client section */
.client_section h2,
.client_section h5,
.client_section p {
  font-weight: 600;
}

.client_section h2 {
  text-align: center;
}


.client_section h5 {
  font-size: 24px;
  color: #0088c7;
}

.client_section .row {
  align-items: center;
  padding: 75px 0;
  margin: 0 15px;
}

.client_section img {
  width: 100%;
}

.client_img-box::before,
.client_img-box::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 30px;
  border-radius: 20px;
  background-color: #0098c7;
}

.client_img-box::before {
  top: -15px;
  transform: rotate(139deg);
  left: -15px;
  animation: beforeanimate 1s;
  animation-delay: .1s;
}

.client_img-box::after {
  bottom: -15px;
  transform: rotate(142deg);
  right: -15px;
  animation: afteranimate 1s;
  animation-delay: .1s;
}


@keyframes beforeanimate {
  0% {
    top: 43%;
    transform: rotate(142deg);
    left: 31%;

  }

  100% {
    top: -15px;
    transform: rotate(139deg);
    left: -15px;
  }
}

@keyframes afteranimate {
  0% {
    bottom: 46%;
    transform: rotate(142deg);
    right: 35%;
  }

  100% {
    bottom: -15px;
    transform: rotate(142deg);
    right: -15px;
  }
}

.client_section .carousel-indicators {
  margin: 0;
  justify-content: flex-end;
  padding-right: 15px;
  bottom: 20px;
}

.client_section .carousel-indicators li {
  width: 25px;
  height: 25px;
  background-color: #6bd1bd;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  background-color: #0088c7;
}

/* end client section */

/* contact section */

.contact_section {
  padding: 120px 45px;
  font-family: 'Poppins', sans-serif;
}

.contact_section .row {
  align-items: center;
}

.contact_section input {
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
  width: 90%;
  margin: 15px 0;
}



.contact_form-container button {
  border: none;
  background-color: #6bd1bd;
  color: #fff;
  font-size: 15px;
  padding: 15px 45px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.contact_img-box {

  display: flex;
  align-items: center;

}

.contact_img-box img {
  padding-top: 60px;
  width: 100%;
}

.contact_section h2 {
  font-size: 26px;
  color: #00315c;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 35px;
}


/* end contact section */


/* info section */
.info_section {
  background-color: #363636;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.info_logo-box {
  display: flex;
  justify-content: center;
}

.info_logo-box h2 {
  font-weight: bold;
  padding: 5px 7px;
  border-bottom: 1.5px solid #0088c7;
}

.info_section ul {
  padding: 0;
}

.info_section ul li {
  list-style-type: none;
  margin: 3px 0;
}

.info_section ul li a {
  color: #ffffff;
}

.info_section ul li a:hover {
  color: #0088c7;
}

.info_section h5 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #FFF;
  text-align: left;
}

.info_section h5:hover {
  color: #0088c7;
}

.info_section p {
  text-align: left;

}



.info_section .form_container input {
  width: 225px;
  height: 40px;
  padding: 10px;
}

.info_section .form_container input::placeholder {
  color: #ccc8c8;
}

.info_section .form_container button {
  background-color: #0088c7;
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 30px;
  margin-top: 15px;
  font-size: 15px;
  text-transform: uppercase;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 3px 3px 4px #FFF;
  z-index: 100;
}

.float:hover {
  text-decoration: none;
  color: #25d366;
  background-color: #fff;
}

.my-float {
  margin-top: 16px;
}

.social_container {
  width: 90%;
  margin: 0 auto;
  border-top: 1px solid #898989;
  padding: 25px 0;
}

.info_section .social-box {
  margin: 0 auto;
  width: 400px;
  display: flex;
  justify-content: center;
}

.info_section .social-box img {
  width: 35px;
  margin-right: 5px;
}

/* end info section */

/* footer section*/

.footer_section {
  background-color: #d8b109;
  padding: 20px 15px;
  font-family: 'Poppins', sans-serif;

}

.footer_section p {
  color: #fdfdfe;
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: #fdfdfe;
}

.back-to-top {
  background: white;
  position: fixed;
  bottom: 16px;
  left: 65px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1f1f1f;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: all .4s;
  z-index: 100;
}

.back-to-top.active {
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;

}

.back-to-top i {
  transform: rotate(0deg);


}

.back-to-top img {
  width: 30px;
  height: auto;
  margin-top: 0px;
  margin-left: 0px;
}




/* end footer section*/