* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #38B6FF;
    --primary-hover: #54bdfa;
}

header {
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    background-color: white;
    padding: 10px;
    border: 1px;
    border-color: rgb(223, 223, 223);
    border-bottom-style: solid;
    z-index: 2;
}

nav a {
    text-decoration: none;
    color: black;
    margin: 10px;
    transition: 0.4s;
}

nav a:hover {
    color: var(--primary-hover);
}

.fi-rs-settings {
	font-size: 22px;
	margin-left: 20px;
	display: flex;
	transition: 0.4s;
	cursor: pointer;
	color: var(--primary-color);
}

.fi-rs-settings:hover {
	color: var(--primary-hover);
}

section {
    height: 100vh;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
}

.titulo-page {
    color: black;
    font-size: 3em;
    margin: 30px;
    text-align: center;
}

.link-empresa {
    color: var(--primary-color);
    text-decoration: none;
}

.link-empresa:hover {
    color: var(--primary-hover);
}

.link-empresa:visited {
    color: blueviolet;
}

html {
    scroll-behavior: smooth;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    width: 12px;
    box-shadow: inset 0 0 .3rem #00000050;
    background-color: #fff ;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

.mobile-menu > div {
    width: 32px;
    height: 3px;
    margin-bottom: 6px;
    background-color: var(--primary-hover);
}

#line3 {
    margin: 0px;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

@media only screen and (max-width: 1110px) {
    nav#menu-desktop {  
        display: none;
    }

    .mobile-menu {
        display: block;
    }
    
    *::-webkit-scrollbar-thumb {
        background-color: var(--primary-hover);
    }
}

@media only screen and (max-width > 1110px) {
    #menu-mobile {
        right: -300px;
        width: 0px;
        display: none;
    }
}

#menu-mobile {
    position: fixed;
    top: 56px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    align-items: flex-end;
    width: 0vw;
    right: -300px;
    background-color: var(--primary-color);
   	padding-top: 10px;
   	transition: 0.4s;
}

#menu-mobile a {
    color: white;
    margin-right: 40px;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    border-bottom: solid 1px white;
}

.google-icons {
	font-size: 30px !important;
	margin-right: 10px;
	color: var(--text);
}

button {
    padding: 7px;
    border-radius: 5px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}