html {
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    scroll-behavior: smooth;
}


* {
    box-sizing: border-box;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


/* SECTIONS */
.section-block {
    height: calc(100vh - 8rem);
    padding: 5rem 5rem 5rem 5rem;
}
.section-block.not-fullscreen {
    height: auto;
}
    .section-block.about {
        background-color: white;
        height: auto;
    }
    .section-block.service {
        background-color: #212121;
        height: auto;
    }
    .section-block.skills {
        background-color: white;
        height: auto;
    }
    .section-block.portfolio {
        background-color: #212121;
        height: auto;
    }
    .section-block h1 { 
        display: block;
        font-size: 4.8rem;
        font-weight: 600;
        margin-bottom: 2.5rem;
        color: white;
        text-align: center; 
    }
   

/* SECTIONS */



/* NAVIGATION */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(24,24,1);
    padding: 0.75rem 5rem;
    height: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    margin: auto;
    transition: all 0.5s;
}
header + * {
    margin-top: 8rem;
}
header .logo {
    display: inline-block;
}
header .logo > img {
    width: 6rem;
    border-radius: 50%;
}
.navigation {
    
}
.navigation .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.navigation .menu li {
    position: relative;
    padding: 1rem 1.5rem;
    height: 100%;
}
.navigation .menu a {
    color: white;   
    font-size: 1.8rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 0.5rem;
    z-index: 2;
    transition: all 0.5s;
}
.navigation li::before {
    content: "";
    position: absolute;
    height: 33.33%;
    width: 0;
    background-color: white;
    right: 0;
    top: 33.33%;
    z-index: -1;
    transition: all 0.5s;
}
.navigation li::after {
    content: "";
    position: absolute;
    height: 33.33%;
    width: 0;
    background-color: white;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.5s;
}
.navigation a::before {
    position: absolute;
    content: "";
    height: 33.33%;
    width: 0;
    background-color: white;
    bottom: 66.66%;
    left: 0;
    z-index: -1;
    transition: all 0.5s;
}
.navigation li:hover::before,
.navigation li:hover::after,
.navigation li:hover a::before {
    width: 100%;
}
.navigation a:hover {
    color: #1313DF;
}


/* HAMBURGER MENU BUTTON */ 
.menu-bars { 
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    display: none;
} 

.menu-items {
    display: none;
}

/* Hide the navigation list by default */
/*
.navigation ul {
    display: none;
  }

  /* Show the navigation list when the hamburger menu icon is clicked */
 .navigation ul.active {
    display: block;
  }

  
  /* Style for the active hamburger menu icon */
 .menu-bars.active i:before {
    display: none;
  }
  
  /* Style for the navigation list on mobile devices */
  @media only screen and (max-width: 768px) {
    .navigation ul {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fff;
      z-index: 99;
      padding: 10px;
      margin: 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }
    .navigation ul li {
      display: block;
      margin: 10px 0;
    }
  } 
/* HAMBURGER MENU BUTTON */




/* HEADER STYLING AFTER SCROLL */
.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1313DF;
    padding: 2.75rem 5rem;
    height: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    margin: auto;
    transition: all 0.5s;
}
/* HEADER STYLING AFTER SCROLL */



/* NAVIGATION */



/* HERO */
.hero { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 5rem 20vh;
    background-image: url(Images-Portfolio/background5.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    z-index: 1;
}
.hero::before { 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
}
.hero .content-hero {
    margin: 3rem 6rem 12rem 0;
}
.hero h1 {
    position: relative;
    z-index: 1;
    text-align: left;
}  
.hero p { 
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    margin-top: 5rem;
    line-height: 1.3;
}
.loader-hero {
    top: 50%;
    left: 50%;
    width: 15rem;
    height: 15rem;
    z-index: 99;
    transform: translate(-50%,-50%);
    perspective: 60rem;
}
.loader-hero span {
    position: absolute;
    border: 10px solid #1313DF;
    border-radius: 4px;
}
.loader-hero span::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 1rem;
    height: 50%;
    background: white;
}
.loader-hero span::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 1rem;
    height: 50%;
    background: white;
}
.loader-hero span:nth-child(1) {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: rotate-square 8s linear infinite;
}
.loader-hero span:nth-child(2) {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    animation: rotate-square 4s linear infinite;
}
.loader-hero span:nth-child(3) {
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    animation: rotate-square 2s linear infinite;
}
@keyframes rotate-square 
{
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* HERO */



/* ABOUT ME */
.about h2 {
    position: relative;
    padding-bottom: 3rem;
    padding-top: 6rem;
    font-size: 4.4rem;
    font-weight: 600;
    text-align: center;
    color: black;
}
.about h2::after {
    content: "";
    position: absolute;
    width: 15rem;
    height: 0.6rem;
    border-radius: 5px;
    bottom: 0;
    left: 50%;
    margin: auto;
    top: 11rem;
    background-color: #1313DF;
    transform: translateX(-50%);
}
.about-container {
    margin: 2rem 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.about .about-container .about-photo {
    height: auto;
    max-width: 100%;
}
.about-container .about-photo img {
    width: 35rem;
    height: 40rem;
    border-radius: 1rem;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.3);
    transform: rotate(7.5deg);
}
.about-container p {
    font-size: 1.85rem;
    font-weight: 200;
    margin: 3rem 0 5rem;
    line-height: 2.5rem;
}
.about-container h3 {
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}
.content-about {
    width: 65%;
}
.content-about .download-cv {
    position: relative;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    color: #1313DF;
    border: 3px solid #1313DF;
    padding: 1.5rem 1rem;
    transition: all 0.4s ease;
}
.content-about .download-cv:hover {
    background-color: #1313DF;
    color: white;
}
/* ABOUT ME */



/* SERVICES */
.my-services {
  
}
    .my-services h2 {
        position: relative;
        padding-top: 6rem;
        padding-bottom: 7.5rem;
        font-size: 4.4rem;
        font-weight: 600;
        text-align: center;
        color: white;
    }
    .my-services h2::after {
        content: "";
        position: absolute;
        width: 15rem;
        height: 0.6rem;
        border-radius: 5px;
        bottom: 0;
        left: 50%;
        margin: 1.5rem auto;
        top: 11rem;
        background-color: #1313DF;
        transform: translateX(-50%);
    }
    .my-services-inner-container {
        color: black;
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        grid-gap: 35px;
        margin: 0 auto; 
    }
    .my-services-inner-container .my-services-card {
        position: relative; 
        margin: auto;
    }
    .my-services-inner-container .my-services-card .halfs {
        width: 30rem;
        height: 20rem;
        transition: 0.5s;
    }
    .my-services-inner-container .my-services-card .half1 {
        position: relative;
        background: #333;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        margin: auto;
        transform: translateY(10rem);
    }
    .my-services-inner-container .my-services-card:hover .half1 {
        transform: translateY(0);
        background: #1313DF;
    }
    .my-services-inner-container .my-services-card .half2 {
        position: relative;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        margin: auto;
        box-sizing: border-box;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        transform: translateY(-10rem);
    }
    .my-services-inner-container .my-services-card:hover .half2 {
        transform: translateY(0);
    }
    .my-services-inner-container .my-services-card .half1 .content {
        opacity: 0.2;
        transition: 0.5s;
        text-align: center;
    }
    .my-services-inner-container .my-services-card .half1 .content img {
        max-width: 10rem;
    }
    .my-services-inner-container .my-services-card .half1 .content h3 {
        margin: 1rem 0 0;
        padding: 0;
        color: white;
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
    }
    .my-services-inner-container .my-services-card:hover .half1 .content {
        opacity: 1;
    }
    .my-services-inner-container .my-services-card .half2 .content p {
        font-size: 1.65rem;
        margin: 0;
        padding: 0;
    }


/* SERVICES */




/* SKILLS */
.my-skills h2 {
    position: relative;
    color: black;
    padding-top: 6rem;
    padding-bottom: 7.5rem;
    font-size: 4.4rem;
    font-weight: 600;
    text-align: center;
}
.my-skills h2::after {
    content: "";
    position: absolute;
    width: 8rem;
    height: 0.6rem;
    border-radius: 5px;
    bottom: 0;
    left: 50%;
    margin: 1.2rem auto;
    top: 11rem;
    background-color: #1313DF;
    transform: translateX(-50%);
}
.my-skills .skills-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 2rem 0;
}
.skills-content .column {
    width: calc(50% - 3rem);
}
.skills-content .left {
    margin: auto;
}
.skills-content .left p {
    font-size: 1.85rem;
    font-weight: 200;
    margin-top: 3rem;
    line-height: 2.5rem;
}
.skills-content .left h3 {
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}
.skills-content .right {
    margin: auto;
}
.skills-content .right .tech-name {
    display: flex;
    align-items: center;
}
.skills-content .right .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem; 
}
.skills-content .right .bars {
    margin-bottom: 2.5rem;
}
.skills-content .right .bars .info span img {
    height: 3rem;
}
.skills-content .right span {
    font-weight: 500;
    font-size: 1.6rem;
}
.skills-content .right .line {
    position: relative;
    height: 10px;
    width: 100%;
    background: lightgray;
    border-radius: 4px;
}
.skills-content .right .line::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 4px;
    background: #1313DF;
}
.skills-content .right .html::before {
    width: 75%;
    animation: html 2s;
    animation-delay: 2s;
}
.skills-content .right .css::before {
    width: 60%;
    animation: css 1.5s;
    animation-delay: 2s;
}
.skills-content .right .javascript::before {
    width: 40%;
    animation: javascript 2s;
    animation-delay: 2s;
}
.skills-content .right .php::before {
    width: 20%;
    animation: react 2.5s;
    animation-delay: 2s;
}
.skills-content .right .node::before {
    width: 20%;
    animation: cpp 2s;
    animation-delay: 2s;
}

@keyframes html {
    0% {
        width: 0%;
    }
    100% {
        width: 75%;
    }
}
@keyframes css {
    0% {
        width: 0%;
    }
    100% {
        width: 60%;
    }
}
@keyframes javascript {
    0% {
        width: 0%;
    }
    100% {
        width: 40%;
    }
}
@keyframes php {
    0% {
        width: 0%;
    }
    100% {
        width: 20%;
    }
}
@keyframes node {
    0% {
        width: 0%;
    }
    100% {
        width: 20%;
    }
}

/* SKILLS */




/* PROJECTS */
.my-projects {
    
}
.my-projects h2 {
     position: relative;
     padding-bottom: 7rem;
     padding-top: 6rem;
     color: white;
     font-size: 4.4rem;
     font-weight: 600;
     text-align: center;
}
.my-projects h2::after {
    content: "";
    position: absolute;
    width: 12rem;
    height: 0.6rem;
    border-radius: 5px;
    bottom: 0;
    left: 50%;
    margin: 1rem auto;
    top: 11rem;
    background-color: #1313DF;
    transform: translateX(-50%);
}
.my-projects-inner-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     grid-gap: 35px;
     margin: 0 auto; 
}
.my-projects-card {
    position: relative;
    width: 30rem;
    height: 35rem;
    background-color: white;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
} 
/*
.my-projects-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: white;
    transition: 0.5s;
    z-index: -1;
}
.my-projects-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: white;
    transition: 0.5s;
    z-index: -1;
}
.my-projects-card:hover::before {
    transform: rotate(20deg);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.my-projects-card:hover::after {
    transform: rotate(10deg);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
} */
.my-projects-card .imagebx {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background-color: #222;
    transition: 0.5s;
    z-index: 99;
}
.my-projects-card:hover .imagebx {
    bottom: 80px;
}
.my-projects-card .imagebx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.my-projects-card .details {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 60px;
    text-align: center;

}   
.my-projects-card .details h3 {
     margin-bottom: 1.5rem;
     padding: 0;
     font-weight: 600;
     font-size: 20px;
     color: #777;
     text-transform: uppercase;
} 
.my-projects-card .details a {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 15px;
    color: #777;
    text-transform: uppercase;
    text-decoration: none;
} 
.my-projects-card .details a:hover {
    text-decoration: underline;
} 
/* PROJECTS */



/* FOOTER */
footer {
    height: 55vh;
}
.container h2 {
    position: relative;
    font-size: 3.6rem;
    font-weight: 600;
    color: black;
    text-align: center;
    padding: 4rem 3.5rem;
}
.container h2::after {
    content: "";
    position: absolute;
    width: 15rem;
    height: 0.6rem;
    border-radius: 5px;
    bottom: 0;
    left: 50%;
    margin: auto;
    top: 11rem;
    background-color: #1313DF;
    transform: translateX(-50%);
}
.container-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 35px;
    margin: 7.5rem auto; 
}
.container .footer-text {
    font-size: 1.65rem;
    font-weight: 200;
    margin-left: 5rem;
}
.container .footer-text h3 {
    font-size: 2.15rem;
    font-weight: 400;
    margin-bottom: 2rem;
}


.footer-contact .rows {
    margin-left: 5rem;
}
.footer-contact .icons {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.footer-contact .icons .material-icons {
    font-size: 4rem;
    transition: 0.3s ease-in;
    cursor: default;
}
.footer-contact h3 {
    font-size: 2.15rem;
    font-weight: 400;
    margin-bottom: 2rem;
    margin-left: 5rem;
    margin-bottom: 2rem;
}
.footer-contact .icons .pi:hover {
    color: red;
}
.footer-contact .icons .cal:hover {
    color: blue;
}
.footer-contact .icons .mail:hover {
    color: orange;
}
.footer-contact .icons .info {
    margin-left: 1.2rem;
}
.footer-contact .icons .info .title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.65rem;
}
.footer-contact .icons .info .subtitle {
    font-size: 1.5rem;
}


.footer-follow .follow-button {
    width: 28rem;
    height: 8rem;
    border: 2px solid #212121;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.8s ease;
    font-size: 2.1rem;
}
.footer-follow .follow-button:hover {
    transform: scale(1.1);
}
.footer-follow .follow-button span {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #212121;
    color: white;
    text-align: center;
    line-height: 75px;
    z-index: 99;
    transition: 0.6s linear;
    border-radius: 30px;
}
.follow-button:hover span {
    transform: rotateY(90deg);
    transition-delay: 0.3s;
    margin-bottom: 50%;
}
.follow-button a {
    flex: 1;
    font-size: 2.5rem;
    color: black;
    text-align: center;
    transform: translateY(70%);
    opacity: 0;
    transition: 0.3s linear;
}
.follow-button:hover a {
    opacity: 1;
    transform: translateX(0);
}
a:nth-of-type(1) {
    transition-delay: 1s;
}
a:nth-of-type(2){
    transition-delay: 0.8s;
}
a:nth-of-type(3){
    transition-delay: 0.6s;
}
a:nth-of-type(4){
    transition-delay: 0.4s;
}

.fa-facebook {
    transition: 0.5s ease-in;
}
.fa-facebook:hover {
    color: #0e76a8;
    transform: scale(1.5);
}
.fa-instagram {
    transition: 0.5s ease-in;
}
.fa-instagram:hover {
    color: pink;
    transform: scale(1.5);
}
.fa-linkedin {
    transition: 0.5s ease-in;
}
.fa-linkedin:hover {
    color: #0e76a8;
    transform: scale(1.5);
}
.fa-github {
    transition: 0.5s ease-in;
}
.fa-github:hover {
    color: #212121;
    transform: scale(1.5);
}
/* FOOTER */





/* MEDIA QUERRIES */
@media (min-width: 1600px) {
    header {
        height: 10rem;
    }
    header .logo > img {
        width: 7.5rem;
    }
    .navigation .menu a {
        font-size: 2.2rem;
    }
    .hero h1 {
        font-size: 5.2rem;
    }
    .hero p {
        font-size: 2.3rem;
    }
    .section-block h2 {
        font-size: 4.9rem;
    }
    .about .about-container .about-photo {
        width: 40%;
    }
    .about .about-container .content-about {
        width: 60%;
    }
    .about .about-container .about-photo img {
        width: 40rem;
        height: 45rem;
    }
    .about .about-container .content-about h3 {
        font-size: 3rem;
    }
    .about .about-container .content-about p {
        font-size: 1.85rem;
    }
    .about .about-container .content-about .download-cv {
        font-size: 2.65rem;
    }
    .my-services-inner-container {
        grid-gap: 9rem;
    }
    .my-services-inner-container .my-services-card .halfs {
        width: 35rem;
        height: 25rem;
    }
    .my-services-inner-container .my-services-card .half1 .content img {
        max-width: 15rem;
    }
    .my-services-inner-container .my-services-card .half1 .content h3 {
        font-size: 2.7rem;
    }
    .my-services-inner-container .my-services-card .half2 .content p {
        font-size: 1.9rem;
    }
    .my-services-inner-container .my-services-card .half2 {
        transform: translateY(-15rem);
    }
    .skills .skills-content .left h3 {
        font-size: 3rem;
    }
    .skills .skills-content .left p {
        font-size: 1.9rem;
    }
    .skills .skills-content .right span {
        font-size: 2rem;
    }
    .skills .skills-content .right .line {
        height: 12px;
    }
    .my-projects-inner-container {
        grid-gap: 9rem;
    }
    .container .footer-text h3 {
        font-size: 2.5rem;
    }
    .container .footer-text p {
        font-size: 1.9rem;
    }
    .footer-contact h3 {
        font-size: 2.5rem;
    }
    .footer-contact .icons .material-icons {
        font-size: 6rem;
    }
    .footer-contact .icons .info .title {
        font-size: 2.3rem;
    }
    .footer-contact .icons .info .subtitle {
        font-size: 2rem;
    }
}


@media (max-width: 1320px) 
{
     .about .about-container .about-photo {
         width: 40%;
     }
     .about .about-container .content-about {
         width: 60%;
         margin-top: 2rem;
     }
     .about-container .about-photo img {
         height: 35rem;
         width: 30rem;
     }
}


@media (max-width: 1230px) {
    .about .about-container .about-photo {
        width: 40%;
    }
    .about .about-container .content-about {
        width: 60%;
        margin-top: 2rem;
    }
    .about .about-container h3 {
        font-size: 2.3rem;
    }
    .about .about-container p {
        font-size: 1.65rem;
        text-align: justify;
    }
    .about-container .about-photo img {
        height: 35rem;
        width: 30rem;
    }
}


@media (max-width: 1150px) {
    .about-container {
        display: flex;
        justify-content: center;
    }
    .about-container .about-photo {
        display: flex;
        justify-content: center;
        margin: 3rem auto;
    }
    .about-container .content-about {
        flex: 100%;
    }
}


@media (max-width: 1120px) {
    .container-footer .footer-follow {
        margin: 0 5rem 5rem;
    }
}


@media (max-width: 1024px) 
{
    .loader-hero > span {
        display: none;
    }
    .section-block h1 {
        font-size: 3.6rem;
    }
    .hero .content-hero {
        margin: 4rem 5rem 25rem 2rem;
    }
    .hero p {
        font-size: 1.8rem;
    }
    .about .about-container .content-about {
        margin-bottom: 3rem;
    }
    .my-projects-inner-container {
        margin: 0 auto 3rem;
    }
} 


@media (max-width: 940px) {
     .skills .skills-content .column {
         width: 100%;
     }
     .skills .skills-content .left {
         margin: 0 5rem;
     }
     .skills .skills-content .right {
         margin: 5rem 5rem 0;
     }

}


@media (max-width: 768px) 
{
    .menu-bars {
        display: block;
        z-index: 999;
    } 
    .navigation {
        position: fixed;
        background: #212121;
        height: 100vh;
        width: 100%;
        top: 0;
        left: -100%;
        transition: all 0.3s ease;
    }
    .navigation .menu {
        display: block;
        text-align: center;
        padding-top: 7rem;
    }
    .navigation .menu.active-mobile-menu {
        left: 0;
    }
    .navigation .menu a {
        display: inline-block;
        margin: 2rem 0;
        font-size: 2.5rem;   
    } 
    .hero p {
        font-size: 1.6rem;     
    }
    .hero .content-hero {
        margin: 3rem 0 30rem 2rem;
    }
    .about .about-container .about-photo {
        height: 32rem;
        width: 27rem;
        margin-bottom: 5rem;
    }
    .container-footer .footer-text {
        margin: 0 5rem;
    } /*
    .menu-bars {
        display: block;
    }
    .menu-items {
        display: none;
    }
    .menu-items.show {
        display: block;
    }
    .navigation .menu.active-mobile-menu {
        left: 0;
    } */

}


@media (max-width: 640px) 
{
    .section-block h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.6rem;
    }
}


@media (max-width: 500px) 
{
    .section-block h1 {
        font-size: 2.7rem;
    }
    .hero p {
        font-size: 1.5rem;
    }
    .hero .content-hero {
        margin: 3rem 0 30rem 2rem;
    }

}


/* MEDIA QUERRIES */



@media (max-width: 1025px) {
    .section-block {
        height: auto;
        padding: 0 2.5rem;
        min-height: calc(100vh - 8rem);
    }
    .section-block.not-fullscreen {
        min-height: none;
    }

} 


















/* GRID */
/* .grid {
    width: calc(100% + 5rem);
    margin: 0 -2.5rem;
}
.grid-box {
     float: left;
     margin: 0 2.5rem;
}

.box-full { width: calc(100% - 5rem); }
.box-half { width: calc(50% - 5rem); }
.box-third { width: calc(33.33% - 5rem); }
.box-quarter { width: calc(25% - 5rem); }  */
/*
@media (max-width: 767px) {
    .box-half { width: calc(100% - 5rem); }
    .box-third { width: calc(50% - 5rem); }
    .box-quarter { width: calc(33.33% - 5rem); }
} */
@media (max-width: 480px) {
    .grid-box { margin-bottom: 4.5rem; }
    .box-half { width: calc(100% - 5rem); }
    .box-third { width: calc(100% - 5rem); }
    .box-quarter { width: calc(33.33% - 5rem); }
} 
/* GRID */
