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

html, body{
    scroll-behavior: smooth;
    height: 100%;
}

.clear{
    clear: both;
}

section{
    scroll-snap-align: start;
}

.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.gotopbtn{
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #78C1F3;
    bottom: 20px;
    right: 32px;
    text-decoration: none;
    text-align: center;
    line-height: 45px;
    opacity: 0;
    font-size: 24px;
    color: white;
    transition: all 0.4s;
    pointer-events: none;
    border-radius: 20%;
}

.gotopbtn.active {
    pointer-events: auto;
    opacity: 1;
}

.btn-primary-full{
    background-color: #78C1F3;
    border: none;
    outline: none;
    width: 170px;
    height: 45px;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    font-size: 14px;
    padding: 5px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 300ms ease;
    margin-right: 10px;
}

.btn-primary-full:hover{
    opacity: 1;
}

.btn-primary-line{
    background-color: transparent;
    border: 2px solid #78C1F3;
    outline: none;
    width: 160px;
    height: 45px;
    color: #78C1F3;
    font-weight: 600;
    border-radius: 12px;
    font-size: 14px;
    padding: 5px;
    text-transform: uppercase;
    transition: all 300ms ease;
}

.btn-primary-line:hover{
    background-color: #78C1F3;
    color: white;
}

.updown-animation{
    animation-name: infiniteupdown;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .5s;
}

.downup-animation{
    animation-name: infinitedownup;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .5s;
}

@keyframes infiniteupdown{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-40px);
    }

    100%{
        transform: translateY(0px);
    }
}

@keyframes infinitedownup{
    0%{
        transform: translateY(-40px);
    }

    50%{
        transform: translateY(0px);
    }

    100%{
        transform: translateY(-40px);
    }
}

/* Menu Desktop */

header{
    background-color: white;
    position: fixed;
    width: 100%;
    padding: 20px 2rem;
    z-index: 100;
}

header .navbar{
    width: 100%;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

header img{
    width: 180px;
    height: 115px;
}

header .navbar .links{
    display: flex;
    column-gap: 30px;
}

header .navbar .toggle-btn{
    color: #404040;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

header .navbar-mobile{
    display: none;
}

header .navbar .nav-bar-btn{
    background-color: #78C1F3;
    color: #404040;
    padding: 12px;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

header .navbar .nav-bar-btn:hover{
    scale: 1.05;
    color: #404040;
}

header .navbar .nav-bar-btn:active{
    scale: 0.95;
}

header .navbar li{
    list-style: none;
}

header .navbar a{
    text-transform: uppercase;
    text-decoration: none;
    color: #404040;
    font-size: 16px;
    cursor: pointer;
    transition: all 300ms ease;
}

header .navbar ul li a:hover{
    color: #78C1F3;
}

header .navbar ul li a.active{
    color: #78C1F3;
}

header .navbar ul li a.login{
    background: #78C1F3;
    color: black;
    border-radius: 8px;
    padding: 10px 25px;
    border: 1px solid #78C1F3;
    transition: 0.5s;
}

header .navbar ul li a.login:hover{
    background: transparent;
    color: #78C1F3;
    border: 1px solid #78C1F3;
}

header .navbar ul li i{
    transition: 0.2s;
}

/* Menu Mobile */

header .navbar-mobile{
    display: none;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 90px;
    height: 0;
    left: 0;
    background-color: white;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header .navbar-mobile.open{
    background-color: white;
    height: fit-content;
}

header .navbar-mobile li{
    padding: 5px;
    list-style: none;
    text-transform: uppercase;
}

header .navbar-mobile a{
    text-decoration: none;
    color: #404040;
    font-size: 16px;
    margin-left: 50px;
}

header .navbar-mobile a.mobileLogin{
    position: absolute;
    bottom: 14%;
    background: transparent;
    color: #78C1F3;
    border-radius: 8px;
    padding: 10px 37%;
    border: 1px solid #78C1F3;
    transition: 0.5s;
}

/* Initial Section */
section.welcome{
    padding-top: 100px;
    padding-left: 2%;
    padding-right: 2%;
}

section.welcome .container{
    max-width: 1200px;
}

section.welcome .welcome-wraper{
    padding-top: 60%;
    position: relative;
}

section.welcome .welcome-wraper2{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 55px;
}

section.welcome .img-welcome{
    margin-top: 50px;
    width: 100%;
    height: 100%;
    background: url(welcome.svg);
    background-size: 100% 100%;
}

section.welcome .text-welcome{
    width: 100%;
    padding: 0 30px;
}

section.welcome .text-welcome h3{
    color: #78C1F3;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
}

section.welcome .text-welcome h2{
    color: #404040;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

section.welcome .text-welcome p{
    color: #a2a8ac;
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 30px;
}

section.welcome .text-welcome .text{
    position: relative;
    color: #78C1F3;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

section.welcome .text-welcome .text.first-text{
    color: #404040;
}

section.welcome .text-welcome .text.sec-text:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    border-left: 2px solid #78C1F3;
    animation: animate 4s steps(12) infinite;
}

@keyframes animate{
    40%, 60%{
        left: calc(100% + 4px);
    }
    100%{
        left: 0%;
    }
}

/* About */

section.about{
    background-color: #f2f2f2;
}

section.about .container{
    max-width: 1200px;
}

section.about .about-wraper{
    padding-top: 60%;
    position: relative;
}

section.about .about-wraper2{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

section.about .img-about{
    margin-top: 0;
    width: 100%;
    height: 100%;
    background: url(img/perfil.png);
    background-size: 100% 100%;
}

section.about .text-about{
    width: 100%;
    padding: 0 30px;
}


section.about .text-about h3{
    color: #78C1F3;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
}

section.about .text-about h2{
    color: #404040;
    font-size: 2.6em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

section.about .text-about p{
    color: #333;
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Services */

section.service{
    padding: 100px 7px;
}

section.service .row{
    display: flex;
    flex-wrap: wrap;
}

section.service .service-text{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

section.service .service-text h3{
    display: inline-block;
    color: #78C1F3;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 5px;
    position: relative;
}

section.service .service-text h2{
    color: #404040;
    font-size: 2.8em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

section.service .service-container{
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

section.service .service-container .single{
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    padding: 8px;
}

section.service .service-container .single .inner{
    position: relative;
    background-color: #e6e6e6;
    color: #a2a8ac;
    padding: 25px;
    font-size: 14px;
    padding: 15px;
    text-align: center;
    width: 100%;
    height: 180px;
    transition: all 300ms ease;
    border-radius: 8px;
    cursor: pointer;
}

section.service .service-container .single .inner i{
    font-size: 50px;
    margin-bottom: 10px;
    color: #78C1F3;
}

section.service .service-container .single .inner h2{
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #78C1F3;
}

section.service .service-container .single .inner:hover{
    background: #78C1F3;
    color: white;
    transform: scale(1.02);
}

section.service .service-container .single .inner:hover i{
    color: white;
}

section.service .service-container .single .inner:hover h2{
    color: white;
}

/* Procedimentos */

section.procedimentos{
    padding: 100px 7px;
}

section.service .row{
    display: flex;
    flex-wrap: wrap;
}

section.procedimentos .service-text{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

section.procedimentos .service-text h3{
    display: inline-block;
    color: #78C1F3;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 5px;
    position: relative;
}

section.procedimentos .service-text h2{
    color: #404040;
    font-size: 2.0em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

section.procedimentos .service-container{
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

section.procedimentos .service-container .single{
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    padding: 8px;
}

section.procedimentos .service-container .single .inner{
    position: relative;
    background-color: #e6e6e6;
    color: #a2a8ac;
    padding: 25px;
    font-size: 14px;
    padding: 15px;
    text-align: center;
    width: 100%;
    height: 180px;
    transition: all 300ms ease;
    border-radius: 8px;
    cursor: pointer;
}

section.procedimentos .service-container .single .inner i{
    font-size: 50px;
    margin-bottom: 10px;
    color: #78C1F3;
}

section.procedimentos .service-container .single .inner h2{
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #78C1F3;
}

section.procedimentos .service-container .single .inner:hover{
    background: #78C1F3;
    color: white;
    transform: scale(1.02);
}

section.procedimentos .service-container .single .inner:hover i{
    color: white;
}

section.procedimentos .service-container .single .inner:hover h2{
    color: white;
}

/* Perguntas */








/* Gallery */

section.portfolio{
    padding: 100px 7px;
    background-color: #f2f2f2;
}

section.portfolio .service-text{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

section.portfolio .service-text h3{
    display: inline-block;
    color: #78C1F3;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 5px;
    position: relative;
}

section.portfolio .service-text h2{
    color: #404040;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

section.portfolio .gallery-wrap, #gallery {
  overflow: hidden;
}

section.portfolio .filterBox{
    overflow: auto;
}

section.portfolio #filters {
    margin: 10px;
    display: flex;
	list-style: none;
}

section.portfolio #filters li span {
  display: block;
  padding: 8px 25px;		
  text-decoration: none;
  color: #262626;
  cursor: pointer;
  text-transform: uppercase;
  transition: all ease-in-out 0.25s;
  border-radius: 6px;
}

section.portfolio #filters li span.active {
  background: #78C1F3;
  color:#fff;
}

section.portfolio .gallery-item {
  float: left;
  width: 33.333%;
  padding: 18px;
  position: relative;
  z-index: 10;
  display: none;
}

section.portfolio .inside {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

section.portfolio .details, .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}

section.portfolio .details {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

section.portfolio .details h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

section.portfolio .details p {
    color: #a2a8ac;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
}

section.portfolio .inside img {
  float: left;
  width: 100%;
  border-radius: 6px;
}

section.portfolio .overlay {
  background-color:rgba(0,0,0,0.8);
  z-index: 1;
  border-radius: 6px;
  transition: all 300ms ease;
}

section.portfolio .gallery-item:hover .details,
section.portfolio .gallery-item:hover .overlay {
  opacity: 1;
}

/* Eventos */

section.blog{
    padding: 100px 2%;
}

section.blog h3{
    color: #78C1F3;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 5px;
    text-align: center;
    position: relative;
}

section.blog h2{
    color: #404040;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

section.blog .row{
    display: flex;
    flex-wrap: wrap;
}

section.blog .projects-gallery{
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

section.blog .projects-gallery .item{
    flex: 0 0 33.333%;
    max-width: 33.333%;
    position: relative;
    padding: 8px;
    transition: all 300ms ease;
}

section.blog .projects-gallery .item .inner{
    position: relative;
}

section.blog .projects-gallery .item img{
    width: 100%;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
}

section.blog .projects-gallery .item .inner .inner-content h4{
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

section.blog .projects-gallery .item .inner .inner-content{
    margin-top: 15px;
    height: 120px;
    color: #a2a8ac;
    font-size: 14px;
    width: 100%;
}

section.blog .projects-gallery .item .inner .inner-content p{
    text-align: justify;
}

section.blog .projects-gallery .item .inner .inner-content button{
    margin-top: 15px;
    border: 2px solid #78C1F3;
    outline: none;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px 15px;
    background: transparent;
    cursor: pointer;
    color: #78C1F3;
    transition: all 300ms ease;
    border-radius: 4px;
}

section.blog .projects-gallery .item .inner .inner-content button:hover{
    background: #78C1F3;
    color: white;
	
}

/*Locais*/
section.locais{
    padding: 100px 2%;
    background-color: #333333;
}

/* Contato */

section.contact{
    padding: 100px 2%;
    background-color: #f2f2f2;
}

section.contact h3{
    color: #78C1F3;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 5px;
    text-align: center;
    position: relative;
}

section.contact h2{
    color: #404040;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

section.contact .contact-content{
    position: relative;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section.contact .contact-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

section.contact .container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}

section.contact .container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

section.contact .container .contactInfo .box .icon{
    min-height: 60px;
    height: 60px;
    max-width: 60px;
    width: 60px;
    background-color: #78C1F3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    border-radius: 50%;
}

section.contact .container .contactInfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #a2a8ac;
    font-weight: 300;
    flex-direction: column;
}

section.contact .container .contactInfo .box .text h4{
    margin-top: 10px;
    color: #78C1F3;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

section.contact .container .contactForm{
    width: 40%;
    padding: 40px;
    background-color: #e6e6e6;
    border-radius: 4px;
}

section.contact .container .contactForm .inputBox{
    position: relative;
    width: 100%;
    margin: 10px;
}

section.contact .container .contactForm .inputBox input, textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 15px 0;
    border: none;
    color: #78C1F3;
    border-bottom: 2px solid #78C1F3;
    outline: none;
    resize: none;
    background-color: #e6e6e6;
}

section.contact .container .contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: all 400ms ease;
    color: #666;
}

section.contact .container .contactForm .inputBox input:focus ~ span,
section.contact .container .contactForm .inputBox input:valid ~ span,
section.contact .container .contactForm .inputBox textarea:focus ~ span,
section.contact .container .contactForm .inputBox textarea:valid ~ span
{
    color: #78C1F3;
    font-size: 14px;
    transform: translateY(-20px);
}

section.contact .container .contactForm .inputBox input[type = "submit"]{
    background-color: #78C1F3;
    color: #262626;
    padding: 12px;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease;
}

section.contact .container .contactForm .inputBox input[type = "submit"]:hover{
    scale: 1.05;
    color: #262626;
}

section.contact .container .contactForm .inputBox input[type = "submit"]:active{
    scale: 0.95;
}

/* Roda Pé */

footer{
    padding: 20px 2%;
    text-align: center;
}

footer img{
    width: 180px;
    height: 115px;
}

footer p{
    margin: 20px auto;
    font-size: 15px;
}

footer .socialMedia i{
    font-size: 26px;
    margin-right: 15px;
    color: #78C1F3;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 300ms ease;
    border-radius: 6px;
}

footer .socialMedia i:hover{
    background-color: #78C1F3;
    color: white;
}

footer .copyRight p{
    color: #a2a8ac;
}

@media screen and (max-width: 1350px) {
    header .navbar .links, header.navbar, .nav-bar-btn{
        display: none;
    }

    header .navbar .toggle-btn{
        display: block;
    }

    header .navbar-mobile{
        display: block;
    }

    section.about{
        padding: 50px 2%;
    }

    section.about .about-wraper{
        padding-top: 0;
    }

    section.about .about-wraper2{
        text-align: center;
        display: inline-block;
        height: auto;
        position: static;
    }

    section.about .img-about{
        width: 60%;
        padding-top: 70%;
        display: inline-block;
        height: auto;
        margin-bottom: 50px;
    }

    section.about .text-about{
        display: inline-block;
        width: 100%;
        padding: 0 2%;
    }

    section.about .btn-primary-full{
        width: 100%;
        padding: 0 2%;
    }

    section.about .text-about p{
        text-align: justify;
        margin: 0 auto;
        max-width: 750px;
    }
}

@media screen and (max-width: 1200px){
    section.service .service-container .single{
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media screen and (max-width: 1050px) {
    /* Initial Section 
    section.welcome{
        padding: 100px 2%;
    }

    section.welcome .img-welcome{
        display: none;
    }

    section.welcome .text-welcome{
        width: 100%;
        padding: 0 30px;
    }

    section.welcome .text-welcome p{
        max-width: 600px;
    }
}

@media screen and (max-width: 850px) {
    section.welcome{
        padding: 200px 2%;
    }

    section.welcome .text-welcome p{
        margin: 0 auto;
    }

    section.welcome .text-welcome{
        text-align: center;
    }

    section.welcome button{
        margin-top: 20px;
    }
    
    section.welcome .text-welcome .text.sec-text:before{
        display: none;
    }

    section.service .service-container .single{
        flex: 0 0 50%;
        max-width: 50%;
    }
*/
    .wrap {
        padding-left: 1em;
        padding-right: 1em;
    }
      
    .gallery-item {
        float: none;
        width: 100%;
    }

    section.blog{
        padding: 20px 2%;
        height: 550px;
    }

    section.contact .contact-container{
        padding: 0 2%;
        display: inline-block;
    }
    
    section.contact .container .contactInfo{
        width: 100%;
        margin-bottom: 40px;
    }
    
    section.contact .container .contactInfo .box{
        margin: 0 auto;
        padding: 20px 0;
        display: block;
        text-align: center;
    }

    section.contact .container .contactInfo .box .icon{
        display: none;
    }

    section.contact .container .contactForm{
        width: 100%;
        padding: 40px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 650px){
    section.welcome{
        padding-top: 250px 2%;
    }

    header img{
        width: 125px;
        height: 80px;
    }

    section.welcome .text-welcome h3{
        margin-top: 100px;
        color: #78C1F3;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 400;
    }
    
    section.welcome .text-welcome h2{
        color: white;
        font-size: 40px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    section.welcome .text-welcome p{
        color: #a2a8ac;
        font-weight: 200;
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    section.welcome button{
        width: 100%;
        margin-bottom: 20px;
    }
    
    section.welcome .text-welcome .text{
        position: relative;
        color: #78C1F3;
        font-size: 40px;
        font-weight: 600;
        text-transform: uppercase;
    }

    section.about .text-about h3{
        color: #78C1F3;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 400;
    }
    
    section.about .text-about h2{
        color:#404040;
        font-size: 1.6em;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    section.about .text-about p{
        color: #333;
        font-weight: 200;ser
        font-size: 15px;
        margin-bottom: 30px;
    }

    section.service .service-text h3{
        display: inline-block;
        color: #78C1F3;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 400;
        margin: 0 0 5px;
        position: relative;
    }
    
    section.service .service-text h2{
        color: #404040;
        font-size: 2.0em;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        position: relative;
    }

    section.portfolio .gallery-item {
        width: 50%;
    }

    section.portfolio .service-text h3{
        display: inline-block;
        color: #78C1F3;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 400;
        margin: 0 0 5px;
        position: relative;
    }
    
    section.portfolio .service-text h2{
        color: white;
        font-size: 40px;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        position: relative;
    }

    section.service .service-container .single{
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.blog h3{
        color: #78C1F3;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 400;
        margin: 0 0 5px;
        text-align: center;
        position: relative;
    }
    
    section.blog h2{
        color: white;
        font-size: 40px;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        position: relative;
    }

    section.blog{
        padding-top: 50px;
        height: auto;
    }
    
    section.blog .projects-gallery{
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    
    section.blog .projects-gallery .item{
        flex: 100%;
        max-width: 100%;
        position: relative;
        padding: 40px 2%;
    }
    
    section.blog .projects-gallery .item .inner .inner-content button{
        width: 100%;
    }

    section.contact h3{
        color: #78C1F3;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 400;
        margin: 0 0 5px;
        text-align: center;
        position: relative;
    }
    
    section.contact h2{
        color: #404040;
        font-size: 2.0em;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        position: relative;
    }
}

@media screen and (max-width: 450px) {
    section.portfolio .gallery-item {
        width: 100%;
    }
}