/*================================= TIPO DE FUENTE =====================================*/
/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700");*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jaro:opsz@6..72&family=Jersey+25+Charted&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*======================================= ROOT =========================================*/

:root {
    --clr: 67, 160, 95;
    --color_verde: rgba(var(--clr), 255);
    --color_verde_tr: rgba(var(--clr), .5);
    --color_negro: #070707;
    --color_gris_os: #717275;
    --color_blanco: #ffffff;
    --color_span: #b2e48c;
    --color_gris_cl: #f9f7f7;
    /*#fdfdfd; */
}

/*=================================== SCROLL =========================================*/

html::-webkit-scrollbar {
    font-size: 9px;
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: var(--color_blanco);
}

html::-webkit-scrollbar-thumb {
    background: var(--color_verde);
    border-radius: 5rem;
}

/*============================= ESTILOS GENERALES ===================================*/

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none !important;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    height: 100%;
}

.pt90 {
    padding-top: 60px;
    padding-bottom: 83px;
}

.bg-gris{
  background: var(--color_gris_cl);
}

.btn-default{
    outline: none;
    display: inline-block;
    border: 2px solid var(--color_blanco);
    background: var(--color_verde);
    color: var(--color_blanco) !important;
    transition: all 0.3s ease-in-out 0s;
}

.btn-default:hover,
.btn-sm:hover {
    background: var(--color_verde);
    border: 2px solid var(--color_negro);
    color: var(--color_negro) !important;
}

.section-title h2 {
    color: var(--color_verde);
    margin-bottom: 25px;
    font-weight: 800;
}

.section-title span {
    font-weight: 500;
    color: var(--color_verde);
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    background: var(--color_span);
    border-radius: 8px;
    display: inline-block;
    padding: .25em .4em;
    border: 3px solid var(--color_verde);
}

.bg-img {
    background: url(../img/943096.jpg) no-repeat;
    background-color: var(--color_verde_tr);
    background-size: cover;
    margin: 0 auto;
    height: 550px;
    position: relative;
}


/*=============================== LOADING ====================================*/

.loader_bg{
    position: fixed;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color_negro);
    width: 100vw;
    height: 100vh;
}

.loading span{
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
    animation: jump 1.5s infinite ease-in;
}

.loading span:nth-child(1){
    animation-delay: .1s;
}

.loading span:nth-child(2){
    animation-delay: .2s;
}

.loading span:nth-child(3){
    animation-delay: .3s;
}

.loading span:nth-child(4){
    animation-delay: .4s;
}

.loading span:nth-child(5){
    animation-delay: .5s;
}

.loading span:nth-child(6){
    animation-delay: .6s;
}

.loading span:nth-child(7){
    animation-delay: .7s;
}               

@keyframes jump {
    0%{
        color: var(--color_blanco);
        transform: translateY(0);
        margin-right: 0; 
    }
    25%{
        color: var(--color_verde);
        transform: translateY(15px);
        margin-right: 2px; 
        text-shadow: 0 10px 0 rgba(17,17,17, .8);
        margin-right: 2px;
    }
    100%{
        color: var(--color_blanco);
        transform: translateY(0);
        margin-right: 0; 
    }
}

/*============================ NAVBAR - STICKY ===================================*/

.navbar {
    background: #505050;
    /*padding-top: 0.91429rem !important;
    padding-bottom: 0.91429rem !important;*/

    padding-bottom: 0.2px !important;
}

.navbar .navbar-nav .nav-link{
    color: var(--color_blanco);
}

.sticky .navbar {
    background: #505050;
    border-radius: 0 0 7px 7px;
    box-shadow: rgba(188,188,188,.6) 0 2px 2px 2px;
}

.sticky .navbar .navbar-nav .nav-link{
    color: var(--color_blanco);
}

.navbar .navbar-toggler{
    color: var(--color_verde);
}

.navbar .navbar-nav .active .nav-link {
    text-align: center;
    color: var(--color_verde);
}

.navbar .navbar-nav .nav-link{
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: var(--color_blanco);
    text-shadow: 1px 1px var(--color_negro);
    text-transform: uppercase;
}

.navbar .navbar-nav .nav-link:hover{
    color: var(--color_verde);
}

/*=============================== TOGGLER ===================================*/        

.navbar-toggler{
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.navbar-toggler span{ /*segunda barra*/
  position: absolute;
  width: 35px;
  height: 5px;
  left: 1px;
  background: var(--color_verde);
  border-radius: 4px;
  transition: 0.5s
}

.navbar-toggler span:nth-child(1){ /*primera barra*/
  transform: translateY(-15px);
  width: 35px;
  left: 1px;
}

.navbar-toggler.active span:nth-child(1){
  width: 40px;
  transform: translateY(0px) rotate(45deg);
  transition-delay: 0.125s;
}

.navbar-toggler span:nth-child(2){ /*tercera barra*/
  transform: translateY(15px);
  width: 35px; 
  left: 1px;
}

.navbar-toggler.active span:nth-child(2){
  width: 40px;
  transform: translateY(0px) rotate(315deg);
  transition-delay: 0.25s;
}

.navbar-toggler.active span:nth-child(3){
  transform: translateX(60px);
}


/*============================ CALL TO ACTION ================================*/

.calltoaction {
    width: auto;
    padding: 50px 0;
    margin-top: 10px;
    border-radius: 1.5rem;
    background: var(--color_verde);
    background-image: linear-gradient(to right, var(--color_verde_tr), var(--color_verde_tr)), url(../img/bluegears2_sswjhb.jpg);
    padding-left: 15px;
    padding-right: 15px;
}

.parallex-text {
    padding: 100px 20px;
    text-align: center;
    color: var(--color_blanco);
}

/*=============================== CAROUSEL ===================================*/  

.carousel-item{
    height: 80vh !important;
}

.carousel-item img{
    height: 100%;
}

.carousel-item h2{
    font-weight: 900;
    text-transform: uppercase;
    font-size: 4.5rem;
    text-shadow: 0 6px var(--color_verde_tr);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color_negro);
    color: var(--color_verde);
}

.carousel-caption {
    top: 20%;
    text-align: center;
}

/*#d9dfdf;*/

.carousel-caption p {
    margin: 0 auto 20px auto;
    width: 100%;
    color: var(--color_verde_tr);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;    
    text-shadow: 1px 0px 1px var(--color_negro);
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--color_verde);
    border: 3px solid var(--color_blanco);
    top: 50%;
    opacity: .8;
}

.carousel-indicators li{
    text-indent: 0;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
    line-height: 30px;
    color: var(--color_blanco);
    background-color: var(--color_verde);
    transition: all 0.25s ease;
}

/*============================== JUMBOTRON ===================================*/ 

.jumbotron h1 {
    position: relative;
    font-weight: 900;
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: var(--color_blanco);
    padding-top: 110px;
}

/*============================== BREADCRUMB ==================================*/ 

.breadcrumb {
  display: inline-flex;
  background-color: var(--color_verde_tr);
  border-radius: 30px;
}

.breadcrumb li a {
  color: var(--color_verde);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: none; 
}

.breadcrumb-item.active {
  color: var(--color_blanco); 
}

/*============================================================================*/ 
/*================================= INICIO ===================================*/ 
/*============================================================================*/ 

.title-strong{
    font-size: 45px;
    text-shadow: 0 5px var(--color_verde_tr);
}

.box-1{
    font-size: 4.5rem;
    color: #cfc215;
}

.box-2{
    font-size: 4.5rem;
    color: #ffa518;
}

.box-3{
    font-size: 4.5rem;
    color: #15cf88;
}

.panels {
    border-radius: 8px;
    box-shadow: 7px 7px 13px 0px rgba(50, 50, 50, 0.22);
    padding: 5%;
    margin-bottom: 8px;
    width: 100%;
    height: 120px;
    transition: all 0.3s ease-out;
}

.panels:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.panels .icon{
    font-size: 43px;
    line-height: 1;
}

.panels .announcement-text{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    margin-left: 20px;
}

.cl-ser{
    color: #20418f !important;
}

.cl-lap{
    color: #208e8f !important;    
}

.cl-inv{
    color: #7d8f20 !important;
}

.cl-glo{
    color: #eb8d2a !important;
}

.content {
    margin-bottom: 50px;
}

.logros{
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.b-right{
    border-right: 3px dashed var(--color_verde);
}

/*por revisar*/
.count-box span {
    font-weight: 400;
    font-size: 66px;
    display: block;
    position: relative;
    line-height: 1;
    padding: 10px;
}

.count-box span,
.count-box .num, 
.count-box h6 {
    color: var(--color_verde);
}

.img-area{
    padding: 20px;
    display: block;
    height: 200px;
    width: 200px;
}

.img-area img{
    top: 50%;
    left: 50%;
    position: relative;
}

.owl-dot{
    display: inline-block;
    height: 15px !important;
    width: 15px !important;
    border: 3px solid var(--color_verde) !important;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-dots{
    text-align: center;
}

.owl-dot.active{
    border: 3px solid var(--color_verde) !important;
    background-color: var(--color_blanco) !important;
}

/*============================================================================*/ 
/*=============================== NOSOTROS ===================================*/ 
/*============================================================================*/ 

.b-pic{
    padding: 30px;
    box-shadow: 1px 1px 19px 14px rgba(0,0,0,0.15);
    -webkit-box-shadow: 1px 1px 19px 14px rgba(0,0,0,0.15);
    -moz-box-shadow: 1px 1px 19px 14px rgba(0,0,0,0.15);
}

.right-side img{
    border-radius: 10px;
    box-shadow: 17px 9px 29px 4px rgba(0,0,0,0.75);
    -webkit-box-shadow: 17px 9px 29px 4px rgba(0,0,0,0.75);
    -moz-box-shadow: 17px 9px 29px 4px rgba(0,0,0,0.75);
    border: 4px solid var(--color_verde);
}

.card-box{
    display: flex;
    align-items: center;
    border: 1px solid var(--color_verde_tr);
    margin-bottom: 8px;
    padding: 5px;
    color: var(--color_verde);
    border-left: 5px solid var(--color_verde);
}

.icon-wrapper{
    display: inline-flex;
    font-size: 2.5rem;
    color: var(--color_verde);
    padding-right: 1rem;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
}

.content-wrap h2{
    font-size: 1.2rem;
}

.content-wrap p{
    font-size: 10px;
    text-transform: uppercase;
}

.icon-ser {
    display: inline-block;
    height: 4.5rem;
    width: 4.5rem;
    position: relative;
    background: var(--color_verde);
    color: var(--color_blanco);
    border-radius: 50%;
    font-size: 40px;
    padding-top: 8px;
    margin-bottom: 22px;
}

.wrapp{
    height: 90%;
    background-color: var(--color_verde);
    border-radius: .6rem !important;
    padding: 4px;
}

.side {
    position: relative;
    margin-bottom: 16px;
}

.side img{
    display: inline-flex;
    height: 360px;
    border-radius: .6rem !important;
    object-fit: cover;
    width: 100%;
}

.wrapp .content{
  font-weight: 800;
  color: white;
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 50px;
}

/*============================================================================*/ 
/*================================ PRODUCTOS =================================*/ 
/*============================================================================*/ 

#exampleModal1 .modal-header, #exampleModal1 .modal-body, #exampleModal1 .modal-footer,
#exampleModal2 .modal-header, #exampleModal2 .modal-body, #exampleModal2 .modal-footer,
#exampleModal3 .modal-header, #exampleModal3 .modal-body, #exampleModal3 .modal-footer,
#exampleModal4 .modal-header, #exampleModal4 .modal-body, #exampleModal4 .modal-footer,
#exampleModal5 .modal-header, #exampleModal5 .modal-body, #exampleModal5 .modal-footer,
#exampleModal6 .modal-header, #exampleModal6 .modal-body, #exampleModal6 .modal-footer{
    background: linear-gradient(90deg, rgba(10,10,24,1.5), rgba(22,126,124,7.3));
    color: var(--color_blanco);
    border-bottom: 0;
    border-top: 0; 
}

#exampleModal1 .modal-header span,
#exampleModal2 .modal-header span,
#exampleModal3 .modal-header span,
#exampleModal4 .modal-header span,
#exampleModal5 .modal-header span,
#exampleModal6 .modal-header span{
    color: #e91212;
}

.medias{
    color: var(--color_verde);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

/*.medias ul li{
    font-size: 13px;
}*/

.profile img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.modal-body .profile .ratings{
    color: #ffd700;
}




/*.productos .card .notify-badge{
    position: absolute;
    right:-20px;
    top:10px;
    background:red;
    text-align: center;
    border-radius: 50%;
    color:white;
    padding:5px 10px;
    font-size:10px;
}*/

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
}

.ribbon__content {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
  position: absolute;
  display: block;
  width: 220px;
  padding: 10px 0;
  background-color: var(--color_span);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  color: var(--color_verde);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  border: 2px solid var(--color_verde);
}

.media {
    border-radius: 10px;
    height: 100px;
    padding: 20px;
    border: 4px double var(--color_verde);
    margin-bottom: 5px;
    color: var(--color_verde);
    background: var(--color_verde_tr);
}

.productos .card{
  height: 84%;
  padding: 10px 10px; 
  border-radius: 20px;
}

.productos .card p{
  font-size: 0.75rem;
  color: var(--color_gris);
  margin: 10px 0 0 0;
  text-transform: uppercase;
}

.productos .card img{
  object-fit: contain;
  height: 70%;
}

/*.productos .card img:hover{
  scale: 1.2;
  clip-path: circle(50%);
  border: 1px solid black;
}*/


.productos .card-body{
  height: 300px;
  max-height: 300px;
  padding: 5px;
}

.productos .card-body h5{
  font-size: 18px;
  font-weight: 800;
}

.productos .card-body ul li{
  list-style: none;
  font-size: 13px;
  color: var(--color_gris_os);
}

.productos .card-footer{
  padding: 0;
  background: transparent;
  border-top: 0px solid; 
}

.productos .card-footer a{
    cursor: pointer;
}


.border-blue {
  border: 5px double #174B94;
  color: #174B94;
}

.border-green {
  border: 5px double #085939;
  color: #085939;
}

.border-yellow {
  border: 5px double #CE9B25;
  color: #CE9B25;
}

.border-brown{
  border: 5px double #8C554E;
  color: #8C554E;
}


.border-silver{
  border: 5px double #958995;
  color: #958995;
}

.border-black{
  border: 5px double #171717;
  color: #171717;
}

.featurette-heading{
  font-weight: 600;
  color: var(--color_negro);
  text-transform: uppercase;
  position: relative;
  top: 5%;
  margin-bottom: 15px;
  font-size: 16px;
}

.lead{
  color: var(--color_verde_tr);
  position: relative;
  /*top: 10%;*/
}


/*.featurette-divider{
  background-color: var(--color_verde_tr);
  background-image: linear-gradient(90deg, transparent, var(--mdb-divider-blurry-color), transparent);
  height: 1px;
  opacity: 0.25;
  width: 90%;
  left: 2%;
  position: absolute;
}*/




/*.img-bg {
    border-radius: 50%;
    height: 303px;
    width: 303px;
    border: 9px solid #fff;
    box-shadow: 0 8px 32px 0 var(--color_verde_tr);
    margin-right: 32px;
    margin-left: 32px;
}*/



/*============================================================================*/ 
/*================================ CONTACTO =================================*/ 
/*============================================================================*/ 

.bg-contact h2{
    color: var(--color_blanco);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px;
    background: linear-gradient(90deg, rgba(67,160,95,1) 17%, rgba(246,246,246,1) 68%);
}


.bg-contact span{
    color: var(--color_verde);
}


.contact .card{
  border: 2px solid var(--color_verde);
  height: 180px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact .card-header{
  background: var(--color_verde);
  color: var(--color_blanco);
  border-bottom: 0px solid transparent;
}

.contact .card-body{
  padding: 1rem;
}

.text-justify{
  text-align: justify;
}

.maps{
  border: 5px double var(--color_verde_tr);
  width: 100%;
  height: auto;
}

/*============================================================================*/ 
/*================================ RECLAMOS ==================================*/ 
/*============================================================================*/ 

.reclamante{
    height: 100vh;
}

.header-text {
    text-align: center;
    padding: 16px 8px;
    border: 3px solid var(--color_verde);
    background-color: var(--color_verde_tr);
    margin-bottom: 13px;
    color: var(--color_verde);
}

form h5 {
    margin-bottom: 1.6rem;
    font-weight: 700;
    font-size: 24px;
    line-height: 2.2rem;
    padding-top: 1.6rem;
    color: var(--color_verde);
}

form strong{
    color: red;
}

.form-control:focus{
    border-color: var(--color_verde);
    box-shadow: none ;
}

.form-control[type=text]:hover,
.form-control[type=number]:hover,
.form-control[type=email]:hover,
select:hover, 
textarea:hover{
    border-color: var(--color_verde);
}

input{
    accent-color: var(--color_verde);
}

textarea{
    height: 70px !important;
    max-height: 70px !important;
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/*============================================================================*/ 
/*================================== FOOTER ==================================*/ 
/*============================================================================*/ 

.footer{
  padding-top: 60px;
  position: relative;
  background: var(--color_negro);
}

.footer p{
  color: var(--color_blanco);
  font-size: 15px;
  text-align: justify;
  line-height: 22px;
  margin-top: 25px;
}


.footer h2{
  width: 164px;
height: 18px;
display: flex;
justify-content: center;
align-items: center;
color: var(--color_blanco);
font-size: 14px;
background: var(--color_verde_tr);
}

.footer ul{
  list-style: none;
  color: var(--color_blanco);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer ul a{
  text-decoration: none;
  outline: none;
  color: var(--color_blanco);
  transition: 0.3s;  
}

.footer ul a:hover{
  color: var(--color_verde);
}

.footer ul li{
  margin: 10px 0;
  height: 25px; 
}

.footer li i{
  margin-left: 20px !important;
}

.footer-bottom{
  padding: 10px;
  background: var(--color_negro);
  color: var(--color_blanco);
  font-size: 12px;
  text-align: center; 
}

.footer-bottom hr{
  border: 1px solid var(--color_verde);
}

/*============================= FLOTANTES ================================*/

.addtools {
  position: fixed;
  display: flex;
  height: 52px;
  width: 52px;
  left: 1rem;
  bottom: 5rem;
  /*line-height: 55px;*/
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: #6647db;
  font-size: 40px;
  background: #9c8fcd;
  border-radius: 8%;
  border: 2px double #6647db;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
  z-index: 100;
}

.scroll-to-top{
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  height: 50px;
  width: 50px;
  font-size: 30px;
  border-radius: 50%;
  background: var(--color_verde);
  box-shadow: 0px 1px 10px rgba(0,0,0,0.25);
  z-index: 100;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  }

.scroll-to-top:hover{
  background: var(--color_verde);  
  color: var(--color_blanco);
  border: 2px solid var(--color_blanco);
}

.sc-wsp {
  position: fixed;
  display: flex;
  height: 52px;
  width: 52px;
  left: 1rem;
  bottom: 1rem;
  line-height: 55px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
  z-index: 100;
}

.sc-wsp:hover{
  text-decoration: none;  
  background: #0df053;
  color: #fff;
}

.widget{
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  line-height: 35px;
  padding: 5px 15px;
  border-radius: 30px;
  border: 2px solid #fc630d;
  background: linear-gradient(90deg, rgba(252,99,11,0.45) 0%, rgba(252,99,11,0.45) 62%);
  color: #fc630d;
  z-index: 100;
}

/*.widget:hover{
    width: 120px;
    transition: margin-left 2s ease-in-out .5s;
}

.widget:hover:after{
    content: 'Cotizar';    
}*/

.widget a{
  color: #fc630d;
  font-weight: 300;
  text-decoration: none !important;
}

/*=============================== TOOLS ==================================*/

.social-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 200px;
}

.social-panel ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 10px;
}

.social-panel ul li {
    margin: 0 5px;
    box-shadow: 0 0 5px var(--color_verde_tr);
    border-radius: 8px;
}

.social-panel ul li a {
    border: 1px solid #DCE1F2;
    display: flex;
    justify-content: center;
    height: 80px;
    width: 110px;
    padding: 2px;
    text-decoration: none;
}

.social-panel span{
    text-align: center; 
    display: block; 
    font-size: 11px; 
    color: var(--color_verde); 
    font-weight: 900;
}

/*============================= COTIZA ================================*/

.msj-conti{
    background: var(--color_verde); 
    height: 100%;
    padding: 13px;
    color: var(--color_blanco);
}

#form_id{
    padding: 10px 10px 10px 0px;
}

#form_id textarea{
    height: 70px;
    max-height: 70px;
    resize: none;
}

label{
  font-size: 11px;
  font-weight: 600;
  color: var(--color_verde);
  margin: 0;
}

.form-control {    
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid var(--color_verde);
    color: var(--color_negro);
    background: #f0fff1;
}

.form-control:focus{
  border: 1px solid var(--color_verde);
  box-shadow: none;
}





/*============================= RESPONSIVE ================================*/

@media (max-width: 575px) {
    .btn-default,
    .btn-sm{
        width: 100%;
    }

    .carousel-item h2{
      font-size: 2rem;
    }

    .carousel-item p{
      font-size: 13px;
    }

    .b-right{
      border-right: 0px;
    }

    .section-title h2 {
      font-size: 23px;
    }

    .section-title h2 span {
      font-size: 40px;
    }

    .side img {
      height: 100%;
    }

    .border-right{
      border: 0px !important; 
    }
}

