@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --bs-dark: #333;
    --bs-white: #FFF;
    --bs-blue: #377dff;
    --bs-primary: #0073c1;
    --bs-success: #32b845;
    --bs-secondary: #EEE;
    --bs-warning: #f75700;
    --bs-info: #0073c1;
    --bs-danger: #d94545;
    --bs-gray: #acafb2;
    --bs-yellow: #ffc502;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1rem;
}

a {}
a:hover {
    transition: 500ms ease-out;
}


/********************************
    HEADER
********************************/

.navbar-brand .logo {
    max-height: 130px;
}

.nav-link {
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 500;
}
.nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.fixed-nav {
    position: fixed;
    right: 0px;
    z-index: 1000;
    top: 50%;
    margin-top: -100px;
}
.fixed-nav:before {
    content: '-------------------------------------------------';
    letter-spacing: -5px;
    color: #fff;
    margin-left: 8px;
    margin-bottom: 60px;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    display: block;
}
.fixed-nav > a:hover, .fixed-nav > a.active, .fixed-nav > a.active > span, .fixed-nav > a:hover > span {
    color: rgba(255, 255, 255, 1);
}
.fixed-nav > a {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    width: 15px;
    height: 15px;
    margin-bottom: 15px;
    position: relative;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
.fixed-nav > a > i {
    font-size: 15px;
    display: inline-block;
    transform: rotate(45deg);
    transform-origin: center center;
}
.fixed-nav > a.active > span, .fixed-nav > a:hover > span {
    display: inline-block;
}
.fixed-nav > a:hover, .fixed-nav > a.active, .fixed-nav > a.active > span, .fixed-nav > a:hover > span {
    color: rgba(255, 255, 255, 1);
}
.fixed-nav > a > span {
    display: none;
    position: absolute;
    right: 35px;
    font-size: 11px;
    text-align: right;
    text-transform: uppercase;
    width: 130px;
    top: 1px;
}


/********************************
    FOOTER
********************************/

.footer {
    background-color: rgb(35, 35, 35);
    background-size: cover;
    background-attachment: fixed;
    color: rgb(153, 153, 153);
    padding: 40px;
    text-align: center;
}
.footer .fa-stack {
    width: 2.8em;
    height: 2.8em;
    line-height: 2.7em;
    font-size: 1.1em;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(154, 154, 154);
    border-image: initial;
    border-radius: 50%;
}
.footer .follow .follow-text {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}
.footer .follow a {
    opacity: 0.5;
    margin: 8px;
}
.footer .follow a:hover {
    opacity: 1;
}

.contact {
    background-color: #e25da1;
    height: auto;
    min-height: 200px;
    padding: 70px 0;
}
.contact .info {
    text-align: right;
    position: relative;
    z-index: 2;
}
.contact .logo {
    position: relative;
    z-index: 1;
    margin-left: -50px;
}

/********************************
    PAGINA
********************************/

h1 {
    color: #FFF;
    font-size: 55px;
    font-weight: 700;
    line-height: 48px;
}

.section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
#section1 { 
    
}
#section2 { 
    
}
#section3 { 
    
}

.btn {
    text-transform: uppercase;
    font-size: 15px;
    border-radius: 0;
    padding: 14px 30px;
    border-width: 1px;
    color: #FFF;
}
.btn-primary {
    background-color: #3aceea;
    border-color: #3aceea;
}
.btn-outline-primary {
    border-color: #3aceea;
}

.subtitulo {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    line-height: 14px;
    display: inline-block;
    margin-bottom: 5px;
}
.titulo {
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 50px;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}
.titulo span {
    color: #3aceea;
}


.display-1, .display-2, .display-3 {
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2rem;
}  
.display-1 {
    font-size: 40px;
}
.display-2 {
    font-size: 34px;
}

.lead {
    line-height: 1.2rem;
}

.card {
    border-radius: 0;
}

.icono {
    text-align: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: #3aceea;
    color: #fff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
.icono .fa-right {
    padding: 8px 14px;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.icono .fa-bottom {
    padding: 10px 14px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fw-light { font-weight: 300 !important; }
.fw-regular { font-weight: 400 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }
}

@media (max-width: 750px) {

}