/**
 * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
 */

/* Main Theme Styles */
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    margin: 0 auto;
    line-height: normal;
    color: #403C38;
    
}

a,
a:visited {
    color: #0092CB;
    text-decoration: none;    
}
a:hover,
a:focus {
    color: #01C5FF;
    text-decoration: none;
}

/* Overridden SCS Styles */

/* This is needed so that the dropdown in the navigation menu is not cut off at the bottom of the slot */
.headerContent .scs-container-styles {
    overflow: visible;
}

.scs-title .scs-title-text {
    font-size: 40px;
}

.scs-paragraph .scs-paragraph-text {
    font-size: 14px;
}

.scs-button .scs-button-button {
    padding: 10px;
    border-radius: 5px;
    font-size: 0.6vw;
    background-color: #ff8200;
    color: #fff;
}
.scs-button .scs-button-button:hover {
    padding: 10px;
    border-radius: 3px;
    font-size: 0.7vw; 
    background-color: #009cbd;
    color: #fff;
  }

.scs-component-bounding-box {
    -webkit-padding-before: 0px;
    -webkit-padding-after: 0px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  line-height: 1.2;
}

/*Configuración de Fuentes de Banner*/
.bannerContent .scs-title .scs-title-text {
    font-size: 3.3vw;
    background-color: rgba(0, 0, 0, 0.33);
    font-weight:bold;
    color: #fff;
}

.bannerContent .scs-paragraph .scs-paragraph-text {
    font-size: 1.2vw;
    background-color: rgba(0, 0, 0, 0.33);
    color: #fff;
        
}
@media screen and (max-width: 1200px) {

    /*Configuración de Fuentes de Banner*/

    .bannerContent .scs-title .scs-title-text {
        font-size: 4vw;
    }
    .bannerContent .scs-paragraph .scs-paragraph-text {
        font-size: 1.8vw;
    }

    .scs-button .scs-button-button {
        padding: 10px;
        border-radius: 1px;
        font-size: 1.1vw; 
        background-color: #ff8200;
        color: #fdfdfd;
      }
    
      .scs-button .scs-button-button:hover {
        padding: 10px;
        border-radius: 1px;
        font-size: 1.2vw;
        background-color: #009cbd;
        color: #fdfdfd;
      }

}
@media screen and (max-width: 767px) {

    /*Configuración de Fuentes de Banner*/

    .bannerContent .scs-title .scs-title-text {
        font-size: 8vw;
    }
     
    .bannerContent .scs-paragraph .scs-paragraph-text {
        font-size: 3.4vw;

    }

    .scs-button .scs-button-button {
        padding: 10px;
        border-radius: 1px;
        font-size: 2.7vw; 
        background-color: #ff8200;
        color: #fdfdfd;
      }
    
      .scs-button .scs-button-button:hover {
        padding: 10px;
        border-radius: 1px;
        font-size: 2.8vw; 
        background-color: #009cbd;
        color: #fdfdfd;
      }

}



/** boton subir arriba GOTOP**/
.go-top-container {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 4.4rem;
    height: 4.4rem;
    z-index: -1;
    text-align:center;
    vertical-align:middle;
}

.go-top-button{
width: 0rem;
height: 0rem;
background: hsla(197, 100%, 40%, 0.725);
border-radius: 50%;
cursor: pointer;
transition: .2s;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
}

.go-top-button i{
    position: absolute;
    font-size: 1.7rem;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    transition: .2s;
    
}

.show{
    z-index:10;
}

.show .go-top-button{
    animation: popup .3s ease-in-out;
    width: 4.4rem;
    height: 4.4rem;
    z-index: 11;

}
.show i{
    transform: translate(-50%,-50%) scale(1);
}

@keyframes popup{
    0%{
        width: 0rem;
        height: 0rem;

    }
    50%{
        width: 6rem;
        height: 6rem;

    }
    100%{
        width: 4.4rem;
        height: 4.4rem;
    }
}

/* twitter*/
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}