/* site.css */

* {

    font-family: 'Raleway-Light';

}



h1,

h2,

h3,

h4,

h5,

h6 {

    font-family: 'Raleway-Regular';

}



.header-pages {

    background: #fff;

    position: absolute;

    width: 100%;

    top: 0;

    z-index: 2;

}



.header-pages {

    position: fixed;

    top: 0;

    left: 0;

    z-index: 999;

    transition: background-color .5s ease-in;

    -moz-transition: background-color .5s ease-in-out;

    -webkit-transition: background-color .5s ease-in-out;

    -o-transition: background-color .5s ease-in-out;

    overflow: visible;

}



.h-bold {

    font-family: 'Raleway-Bold';

}



.h-regular {

    font-family: 'Raleway-Regular';

}



.subtitle {

    font-size: 28px;

}



.p-title {

    font-size: 22px;

}



.p-text {

    font-size: 18px;

}



.p-height {

    height: 60px;

}



.hr-green {

    background-color: #81ab43;

    position: relative;

    top: 10px;

    border: none;

    height: 2px;

}



.fab {

    font-size: 48px;

    color: #3b5998;

}



.span-info {

    font-size: 13px;

}



/*HOME > SERVIÇOS*/

.services .card .card-body {

    background-color: #81ab43;

    padding: 30px;

}



.documents .card .card-body {

    background-color: #adc80c;

    padding: 5px !important;

}



/*FORMULÁRIO DE CONTACTO*/

.frmContact {

    max-width: 800px;

}



.frmContact input {

    height: 60px;



}



.form-control:focus {

    border-color: #c0c0c0 !important;

}



.btn-green {

    background-color: #81ab43;

    color: #fff;

}



.btn-green:hover {

    border: 2px solid #81ab43;

    color: #81ab43;

}



.bg-irs {

    background-color: #cce61f;

}



.alert-contact {

    background-color: #677a36;

}



/*FOOTERS*/

.footer1 {

    background-color: #efedc1;

    padding: 60px;

}



.footer1 p {

    font-size: 15px;

}



.footer1 a {

    text-decoration: none;

    color: #000;

}



.footer1 a:hover {

    text-decoration: underline;

}



.footer2 {

    background-color: #81ab43;

    padding: 10px;

    font-size: 15px;

    font-weight: bold;

}



.footer2 a {

    text-decoration: none;

    color: #000;

}



.footer2 a:hover {

    text-decoration: underline;

}



.footer3 {

    background-color: #3b5a13;

    color: #fff;

    padding: 15px;

}



.footer3 a {

    text-decoration: none;

}



.footer3 a:hover {

    text-decoration: underline;

}





@media (max-width: 767px) {



    header,

    .banner,

    .about,

    .services,

    .documents,

    .contacts,

    .bg-irs,

    .footer1 {

        text-align: center;

    }



    .btn-send {

        width: 100%;

    }



    .logo {

        width: 120px;

    }



    .navbar {

        text-align: right;

    }

}





/*----- mobile menu start -----*/



.mobile-logo {

    max-width: 140px;

    width: 100%;

}



.mobile-main-header {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: justify;

    -ms-flex-pack: justify;

    justify-content: space-between;

}



.mobile-main-header .mobile-menu-toggler {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

}



.mobile-main-header .mobile-menu-toggler .mobile-menu-btn {

    margin-left: 15px;

}



.mobile-main-header .mobile-menu-toggler .mobile-menu-btn .off-canvas-btn {

    font-size: 32px;

    cursor: pointer;

    padding: 15px 15px;

    line-height: 1;

    padding-right: 0;

}



.mobile-main-header .mobile-menu-toggler .mobile-menu-btn .off-canvas-btn:hover {

    color: #adc80c;

}



.mobile-menu {

    margin-top: 30px;

    height: 100%;

    overflow: auto;

    padding-right: 30px;

    margin-right: -30px;

    list-style: none;

}



.mobile-menu li>a {

    font-size: 15px;

    color: #333333;

    text-transform: capitalize;

    line-height: 18px;

    position: relative;

    display: inline-block;

    padding: 10px 0;

    text-decoration: none;

    font-weight: bold;

    font-family: 'Raleway-Bold';

}



.mobile-menu li>a:hover {

    color: #adc80c;

}



.mobile-menu ul li {

    border: none;

    padding-left: 15px;

}



/*----- mobile menu end -----*/



/*------ offcanvas widget area end ------*/

.off-canvas-wrapper {

    position: fixed;

    top: 0;

    left: 0;

    height: 100vh;

    width: 100vw;

    opacity: 0;

    visibility: hidden;

    -webkit-transition: 0.4s;

    -o-transition: 0.4s;

    transition: 0.4s;

    z-index: 9999;

}



.off-canvas-wrapper.open {

    opacity: 1;

    visibility: visible;

}



.off-canvas-wrapper.open .off-canvas-inner-content {

    -webkit-transform: none;

    -ms-transform: none;

    transform: none;

}



.off-canvas-wrapper .off-canvas-overlay {

    background-color: rgba(0, 0, 0, 0.4);

    content: '';

    cursor: url("../img/icon/cancel.png"), auto;

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

}



.off-canvas-wrapper .off-canvas-inner-content {

    background-color: #fff;

    width: 300px;

    padding: 20px;

    height: 100%;

    position: relative;

    -webkit-transform: translateX(calc(-100% - 50px));

    -ms-transform: translateX(calc(-100% - 50px));

    transform: translateX(calc(-100% - 50px));

    -webkit-transition: 0.4s;

    -o-transition: 0.4s;

    transition: 0.4s;

}



.off-canvas-wrapper .btn-close-off-canvas {

    top: 0;

    left: 100%;

    width: 40px;

    height: 40px;

    font-size: 20px;

    color: #fff;

    line-height: 40px;

    text-align: center;

    cursor: pointer;

    position: absolute;

    -webkit-transition: 0.4s;

    -o-transition: 0.4s;

    transition: 0.4s;

    background-color: #adc80c;

}



.off-canvas-wrapper .btn-close-off-canvas i {

    -webkit-transform: rotate(0);

    -ms-transform: rotate(0);

    transform: rotate(0);

    -webkit-transition: 0.4s;

    -o-transition: 0.4s;

    transition: 0.4s;

    display: block;

    line-height: 40px;

}



.off-canvas-wrapper .btn-close-off-canvas:hover i {

    -webkit-transform: rotate(-90deg);

    -ms-transform: rotate(-90deg);

    transform: rotate(-90deg);

}



.off-canvas-wrapper .off-canvas-inner {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    margin-left: auto;

    height: 100%;

}