/*
Theme Name: RMG
Theme URI: 
Author: 
Author URI: 
Description:
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rmg
Tags: rmg
*/

@font-face {
    font-family: 'Social Media Circled Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Social Media Circled Regular'), url('./fonts/Social Media Circled.woff') format('woff');
}


:root{    
    --primary-font: 'Helvetica Neue';    
    --social-media: 'Social Media Circled Regular';
    --red-color: #CE0E2D;
    --dark-color:#0D0F16;
    --gray-color:#26272E;
    --gray2-color:#606060;
    --green-color: #A6C731;
}

body{
    font-family:var(--primary-font);
    background:var(--gray-dark);
    color:#FFF;
    font-size: 20px;    
    position: relative;
    background:var(--dark-color);
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden !important;      
}

footer{
    background:var(--dark-color);    
}

footer .footer-content{
    background:url(./images/footer-image.jpeg) no-repeat center center / cover;
}

footer .footer-content .shadow{    
}

header{
    position: relative;
    z-index: 999999;
}

header nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

#page-header.scroll{
    padding: 10px 0px;
    background:var(--dark-color) !important;
    position: fixed; 
    top: 0;
    width: 100%;
    z-index: 999999;
    animation: smoothScroll .5s forwards;
}

#page-header.scroll .logo{
    max-height: 60px !important;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
    }
    100% {
        transform: translateY(0px);
    }
}

.menu-header{
    display: flex;    
    align-items: center;
}

nav ul{
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;    
    margin:15px 20px;
    text-decoration: none;
}

nav ul li a{
    font-size: 13px;
    text-decoration: none!important;
    color: white;
    font-weight: 500;    
    transition: color .5s ease;
}

nav ul li a.active, nav ul li a:hover{    
    color: var(--green-color);
}

.uppercase{
    text-transform: uppercase;
}


.main{
    background: url(./images/main2.jpeg) no-repeat center center / cover;        
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top:-150px;
}

.main p{
    font-size:20px;
    line-height: 31px;
    font-weight: 300;
}

.shadow{    
    background:rgba(0,0,0,.75);      
}

.main .shadow .animation{
    height:calc(100vh);
    padding-top:250px;
    padding-bottom:150px;
    display: flex;
    align-items: center;
    text-align: center;    
    position: relative;  
}

.main .shadow .social{
    position: absolute;
    left:40px;
    bottom: 40px;
}

.main-content{
    margin-top:100px;
}

#menu-superior img {
  width: 100%;
  height: auto;
  max-width: 86px !important;
}

span,
a,
a:hover {
  display: inline-block;
  color: inherit;
}

h1{
    font-size: 71px;
    font-weight: bold;
    margin:15px 0px;
}

h2{
    font-size: 42px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

p {
  color: #c8c8c8;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  margin: 0;
}

a,
span {
  display: inline-block;
}
a:hover,
span:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
}

ul{
    list-style: none;
}

.menu-icon{
    cursor: pointer;
}

@media all and (max-width: 767px){
    h1{
        font-size:40px;
    }
}