@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100..900&family=Lexend+Zetta:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

*::-webkit-scrollbar{ 
	background-color: #fff; 
	width: 8px;
}

*::selection{
  background-color: #00000000;
  color: #75c951;
}

*::-webkit-scrollbar-thumb{
	background-color: #034689;
}

body {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;  
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.bg-primary {
  background-image: url(/images/home.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-green {
  color: #75c951;
}

.text-blue {
  color: #034689;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: 500;
  margin: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.container_border_style {
  position: relative;
  padding: 20px;
}

.container_border_style::before, .container_border_style::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 90px;
  background-color: #034689;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.container_border_style::before {
  left: 0;
}

.container_border_style::after {
  right: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  background-image: url(../images/carousel-1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #011d39b0; /* Fondo azul semi-transparente */
}

.sub_page .hero_area {
  min-height: auto;
}

/* Default navbar styling */
.header_section {
  position: fixed; /* Se fija en la ventana del navegador */
  top: 0;
  left: 0;
  width: 100%; /* Ocupa todo el ancho de la ventana */
  z-index: 10; /* Asegura que esté por encima de otros elementos */
  transition: background-color 0.5s ease; /* Transición suave para el color de fondo */
}

.header_section.sticky {
  background-image: url('/images/home2.png'); /* Fondo azul oscuro */
  background-size: cover;
  background-position: center;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2); /* Sombra suave */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand img {
  max-width: 200px;
}

.custom_nav-container {
  padding: 10px 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 3px 15px;
  margin: 10px 15px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover,
.custom_nav-container .navbar-nav .nav-item .active {
  color: #75c951;
}

.custom_nav-container .navbar-nav .nav-item .contact {
  background-color: #75c951;
  color: #011D39;
  border-radius: 5px;
  padding: 5px 15px;
  border: 1px solid #75c951;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-nav .nav-item .contact:hover {
  background-color: transparent; 
  color: #75c951;
  border: 1px solid #75c951;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
  margin: 0 20px;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
  transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #ffffff;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}
/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 45px;
  padding-bottom: 90px;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
  text-align: center;
}

.slider_section .detail-box h1 {
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 4rem;
}

.slider_section .detail-box h1 span {
  font-size: 3rem;
  color: #034689;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}

.slider_section .detail-box a {
  margin: 5px;
  width: 195px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
}

.slider_section .detail-box .btn-1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #034689;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #034689;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.slider_section .detail-box .btn-1:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;

}

.slider_section .detail-box .btn-2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #75c951;
  color: #011D39;
  border-radius: 5px;
  border: 1px solid #75c951;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.slider_section .detail-box .btn-2:hover {
  background-color: transparent;
  color: #75c951;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel_btn-box {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 50px;
  z-index: 3;
  font-size: 22px;
}

.slider_section .carousel_btn-box .carousel-control-prev,
.slider_section .carousel_btn-box .carousel-control-next {
  position: unset;
  width: 50px;
  height: 50px;
  background-color: #034689;
  opacity: 1;
  font-size: 28px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.slider_section .carousel_btn-box .carousel-control-prev:hover,
.slider_section .carousel_btn-box .carousel-control-next:hover {
  background-color: #75c951;
  color: #034689;
}

.brands{
  background-color: #ffffff;
  justify-content: center;
} 

.brands p {
  color: #000;
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.brands .brand-carousel .single-logo img {
  max-width: 20%;
}

.single-logo {
  margin-bottom: 0.5rem; /* Ajusta el margen inferior según sea necesario */
}

.about_section hr{
  width: 150px;
  margin: 15px 0 0 0;
  border: 2.5px solid #034689;
}

.hr-clients {
  width: 100% !important;
  margin: 3rem 0 3rem 0 !important;
  border: 1.5px solid #034689;
}


.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box img {
  max-width: 100%;
}

.about_section .detail-box p {
  color: #101010;
  margin-top: 15px;

}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #011D39;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #011D39;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #011D39;
}

.service_section {
  position: relative;
}

.service_section .box {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 25px;
  min-height: 320px;
  background-image: url(../images/home.png);
}

.service_section .box .img-box {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s;
  transition: all .2s;
  padding: 10px;
}

.service_section .box .img-box img {
  width: 100%;
  max-width: 55px;
  max-height: 55px;
}

.service_section .box .detail-box {
  margin-top: 15px;
  color: #ffffff;
}

.service_section .box .detail-box h4 {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.service_section .box .detail-box p {
  font-size: 1.1rem;
}

.service_section a {
  display: inline-block; /* Convertir el enlace en bloque para aplicar ancho y centrado */
  padding: 10px 30px; /* Ajustar el relleno del botón */
  max-width: 200px; /* Establecer ancho máximo para el botón */
  margin: 0 auto; /* Centrar horizontalmente */
  background: #75c951;
  color: #011D39;
  border-radius: 5px;
  border: 1px solid #75c951;
  -webkit-transition: all .3s;
  transition: all .3s;
}


.service_section a:hover {
  background-color: transparent;
  color: #75c951  !important;
}

.server_section {
  background: #000;
  padding: 55px 0;
  color: #ffffff;
  box-shadow: #000 0px 0px 15px;
}

.server_section .img-box {
  position: relative;
}

.server_section .img-box img {
 
  width: 100%;
}


.server_section hr{
  width: 125px;
  margin: 15px 0 0 0;
  border: 2.5px solid #fff;

}

.server_section .img-box .play_btn, .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  height: 65px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: none;
}

.server_section .img-box .play_btn button, .play_btn button {
  background-color: transparent;
  border: none;
  background-color: #034689;
  color: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: relative;
  z-index: 3;
  outline: none;
}

.server_section .img-box .play_btn:before, .server_section .img-box .play_btn:after, .play_btn:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #034689;
  opacity: 1;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.server_section .img-box .play_btn:before, .play_btn:before {
  z-index: 2;
  -webkit-animation: before-animation 1500ms infinite;
          animation: before-animation 1500ms infinite;
}

.server_section .img-box .play_btn:after, .play_btn:after {
  z-index: 1;
  -webkit-animation: after-animation 1500ms infinite;
          animation: after-animation 1500ms infinite;
}


.server_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #75c951;
  color: #000;
  border-radius: 5px;
  border: 1px solid #75c951;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-top: 25px;
}

.server_section .detail-box a:hover {
  background-color: transparent;
  color: #75c951;
}

/* General modal styling */
.modal-content {
  background-color: #fff;
  color: #000;
  border-radius: 30px;
}

.display-none-clients{
  display: none;
}

.modal-header {
  border-bottom: none; 
  justify-content: center;
}

.modal-header h5 {
  font-weight: bold;
  font-size: 1.7rem;
}

/* Style for image boxes within the modal */
.img-box {
  position: relative;
  width: 100%; /* Full width inside the modal */
  margin-bottom: 20px; /* Spacing between images */
}

.img-box img {
  width: 100%; /* Responsive image width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove bottom space/gap */
}

.btn-close {
  color: #000;
  font-size: 40px;
  background: none;
  border: none;
  position: absolute;
  top: 0;
  right: 20px;
  padding: 0;
  margin: 0;
  transition: all 0.3s;
}

.btn-close:hover {
  color: #75c951;
}

.modal-body {
  padding: 35px; 
}

.detail-box a {
  color: #007bff; 
  text-decoration: none; /* No underline */
  margin-top: 15px; /* Space above the link */
  display: inline-block; /* Allows margin to work properly */
}


.price_section {
  background-image: url(../images/parallax2.jpg);   
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.price_section .heading_container {
  color: #ffffff;
}

.price_section .price_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.price_section .price_container .box {
  margin: 45px 15px 0 15px;
}

.price_section .price_container .box .detail-box {
  width: 300px;
  padding: 40px 20px 15px 20px;
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.price_section .price_container .box .detail-box h2 {
  font-weight: bold;
}

.price_section .price_container .box .detail-box h2 span {
  font-size: 3rem;
}

.price_section .price_container .box .detail-box h6 {
  text-transform: uppercase;
  color: #034689;
  font-size: 20px;
  margin-bottom: 10px;
}

.price_section .price_container .box .price_features {
  padding: 0;
  list-style-type: none;
}

.price_section .price_container .box .price_features li {
  margin: 10px 0;
}

.price_section .price_container .box .btn-box {
  margin-top: 25px;
}

.price_section .price_container .box .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #75c951;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #75c951;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.contact_section {
  background-image: linear-gradient(#1b62a8, #010e1b);
  color: #fff; /* Asegura que el texto sea legible */
  box-shadow: #000 0px 7px 30px;
}


.contact_section .heading_container {
  margin-bottom: 2rem; /* Bootstrap spacing */
}

.contact_section .form_container, .bg-transparent {
  background-color: rgba(255, 255, 255, 0.8); /* Ligeramente transparente para ver el fondo */
  padding: 1rem;
  border-radius: 0.25rem; /* Redondeo suave */
}

.contact_section hr{
  width: 200px;
  margin-bottom: 0;
  border: 2.5px solid #fff;
}

/* Estilos de Bootstrap para formularios y botones */
.contact_section input, .contact_section textarea {
  width: 100%;
  margin-bottom: 0.5rem;
}

.contact_section button {
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem; /* Bootstrap border radius */
  transition: all .3s;
}

.contact_section button {
  background-color: #011D39;
  border: 1px solid #011D39;
  color: #fff;
}

.contact_section .contact_text hr{
  margin: 15px 0 0 0;
}

.contact_section button:hover {
  background-color: #00000000;
  color: #fff;
}

.info_section{
  background-color: #101010;
  color: #ffffff;
}

.info_section .powing img{
  margin-bottom: 10px;
}

.info_section .powing img {
  filter: drop-shadow(0px 0px 15px #ffffff80);
}



.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  transition: all .3s;
}


.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
  transition: all .3s;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #75c951;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 3rem;
  font-size: 24px;
  transition: all .3s;
}

.info_section .info_social a:hover {
  color: #75c951;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
  transition: all .3s;
}

.info_section .info_links a img {
  margin-right: 10px;
}

.info_section .info_links a:hover, .info_section .info_links a.active {
  color: #75c951;
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  background-color: #101010;
  text-align: center;
}

.footer_section p {
  color: #ffffff;
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid #ffffff;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */




.switch {
  position: relative;
  display: inline-block;
  margin: 11px 5px 0 0;
}

.switch > span {
  position: absolute;
  top: 8px;
  pointer-events: none;
  font-family: 'Helvetica', Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  width: 50%;
  text-align: center;
}

input.check-toggle-round-flat:checked ~ .off {
  color: #fff;
}

input.check-toggle-round-flat:checked ~ .on {
  color: #034689;
}

.switch > span.on {
  left: 0;
  padding-left: 2px;
  color: #fff;
}

.switch > span.off {
  right: 0;
  padding-right: 4px;
  color: #034689;
}

.check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input.check-toggle-round-flat + label {
  padding: 2px;
  width: 102px;
  height: 32px;
  background-color: #034689;
  -webkit-border-radius:35px;
  -moz-border-radius:35px;
  -ms-border-radius:35px;
  -o-border-radius:35px;
  border-radius:35px;
}
input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #fff; 
  -webkit--moz-border-radius:35px;
  -ms-border-radius:35px;
  -o-border-radius:35px;
  border-radius:35px;
}
input.check-toggle-round-flat + label:after {
  top: 5px;
  left: 5px;
  bottom: 4px;
  width: 48px;
  background-color: #034689;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}

input.check-toggle-round-flat:checked + label:after {
  margin-left: 44px;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;

  }
}


/* ---------------------------------
            SCROLL TOP
--------------------------------- */

#scroll-Top  .return-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  color: #F27F1B;
  background:#034C8C;
  border: 2px solid #F27F1B;
  border-radius:50%;
  -webkit-transition: .5s; 
  -moz-transition:.5s; 
  -ms-transition:.5s; 
  -o-transition:.5s;
    transition: .5s;
  z-index: 4;
}

#scroll-Top  .return-to-top:hover {
  background:#155fa0;
  color: #F27F1B;
}

#scroll-Top  .return-to-top i{
  position:relative;
  bottom:0;
  font-weight: bolder;
}

#scroll-Top  .return-to-top i{
  position: relative;
  animation-name: example;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-duration:1s;
}

@keyframes example {
  0%   {bottom:0px;}
  100%  {bottom:7px;}
}

.h-60{
  height: 60% !important;
  min-height: 60% !important;
}

.linkedin{
  padding: 0.7rem 1rem !important;
  background-color: #0e76a8 !important;
  border: none !important;
  position: absolute;
  right: 0rem;
  top: 0;
}
