/*
Theme Name: IGHS
Theme URI: http://www.ruiverissimodesign.com/
Author: IGHS
Author URI: http://www.ruiverissimodesign.com/
Version: 1.0
Text Domain: IGHS
*/

/*/////////////////////////////
//////////// FONTS ////////////
/////////////////////////////*/

@font-face {
    font-family: 'AbrilDisplaySemiBold';
    font-style: normal;
    font-weight: normal;
    src: url('vendor/fonts/Abril_Display_SemiBoldItalic.otf')
}

/*//////////////////////////////////////
//////////// Classes Comuns ////////////
//////////////////////////////////////*/

a:focus,
button:focus {
    outline: 0;
}

main {
    top: 0;
    left: 0;
    position: relative;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

p {
    margin: 0;
}

.hide {
    animation: fadeInHide 0.2s ease 0s;
    -webkit-animation: fadeInHide 0.2s ease 0s;
    opacity: 0;
}

/* Animações */

@keyframes boardFadeIn {
    from {
        opacity: 0;
        display: none;
    }
    to {
        opacity: 1;
        display: block;
    }
}

@keyframes fadeInHide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slideDownAni {
    0% {
        transform: translateY(-200px);

    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeDownAni {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUpAni {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slick-slide:focus {
    outline: 0 !important;
}

.pb-cat-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #082332;
    height: 70px;
    margin-left: 2%;
    margin-right: 2%;
    width: 25vw;
    font-weight: 600;
    border: 4px solid transparent;
    background-color: transparent;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    letter-spacing: 2px;
}

.pb-cat-btn:hover {
    border: 4px solid #082332;
}

.pb-cat-btn.active {
    border: 4px solid #082332;
}

/* Configuração do Modal */

.modal {
    background-color: rgba(8, 35, 50, 0.5);
    overflow-y: scroll !important;
}

.modal > .modal-dialog {
    opacity: 0;
    max-width: 86%;
    width: 100%;
    transition: all 0.2s ease 0s;
}

.modal-job > .modal-dialog {
    opacity: 1 !important;
}

.modal > .modal-dialog > .modal-content {
    border-radius: 0;
    border: 0;
}

.modal > .modal-dialog > .modal-content > .modal-header {
    border: 0;
}

.modal > .modal-dialog > .modal-content > .modal-body {
    padding-bottom: 6%;
    padding-left: 0;
    padding-right: 0;
    height: inherit;
    transition: all 0.2s ease 0s;
}

.modal > .modal-dialog > .modal-content > .modal-header > button {
    opacity: 1 !important;
}

.modal > .modal-dialog > .modal-content > .modal-header > button > span {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold;
    font-size: 80px;
    line-height: 50px;
    color: #082332;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.modal > .modal-dialog > .modal-content > .modal-header > button:hover > span {
    color: #A8966A;
    opacity: 1 !important;
}

.loader {
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin-top: 20%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.loader div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: loader 1.2s linear infinite;
}

.loader div:nth-child(1) {
    animation-delay: 0s;
    top: 29px;
    left: 53px;
}

.loader div:nth-child(2) {
    animation-delay: -0.1s;
    top: 18px;
    left: 50px;
}
.loader div:nth-child(3) {
    animation-delay: -0.2s;
    top: 9px;
    left: 41px;
}

.loader div:nth-child(4) {
    animation-delay: -0.3s;
    top: 6px;
    left: 29px;
}
.loader div:nth-child(5) {
    animation-delay: -0.4s;
    top: 9px;
    left: 18px;
}

.loader div:nth-child(6) {
    animation-delay: -0.5s;
    top: 18px;
    left: 9px;
}

.loader div:nth-child(7) {
    animation-delay: -0.6s;
    top: 29px;
    left: 6px;
}

.loader div:nth-child(8) {
    animation-delay: -0.7s;
    top: 41px;
    left: 9px;
}

.loader div:nth-child(9) {
    animation-delay: -0.8s;
    top: 50px;
    left: 18px;
}

.loader div:nth-child(10) {
    animation-delay: -0.9s;
    top: 53px;
    left: 29px;
}

.loader div:nth-child(11) {
    animation-delay: -1s;
    top: 50px;
    left: 41px;
}

.loader div:nth-child(12) {
    animation-delay: -1.1s;
    top: 41px;
    left: 50px;
}

@keyframes loader {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

/*////////////////////*/

.banner {
    position: relative;
    display: block;
    background-position: center;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    height: 49vw;
    -webkit-animation: fadeDownAni 0.8s ease 0s;
    animation: fadeDownAni 0.8s ease 0s;
}

.banner-text-container {
    width: 100%;
    color: #FFF;
    margin-top: 6.5%;
    text-align: center;
}

.banner-title {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size:  64px;
    letter-spacing: 6px;
    text-transform: uppercase;
    -webkit-animation: slideDownAni 1s ease 0s;
    animation: slideDownAni 1s ease 0s;
}

.banner-text {
    max-width: 36%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    margin-top: 1.5%;
    letter-spacing: 1px;
    -webkit-animation: slideDownAni 0.8s ease 0s;
    animation: slideDownAni 0.8s ease 0s;
}

.banner-text > p > strong {
    font-weight: 600;
}

/* Banner "faça scroll */

.banner-scroll-container {
    position: absolute;
    bottom: 100px;
    left: 5%;
    color: #FFF;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.banner-scroll-text {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 300;
    animation: bannerTextDown 1s ease 0s;
    animation-iteration-count: infinite;
}

@keyframes bannerTextDown {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(25px);
    }

    100% {
        transform: translateX(0);
    }
}

.banner-line {
    width: 100px;
    height: 1px;
    margin: auto 15px auto 0;
    border: 1px solid #FFF;
}

.bg-gold {
    background-color: #A8966A;
}

.bg-dblue {
    background-color: #082332;
}

.content-width-90 {
    max-width: 90%;
    width: 100%;
}

.content-width-86 {
    max-width: 86%;
    width: 100%;
}

.content-width-79 {
    max-width: 79%;
    width: 100%;
}

.content-width-72 {
    max-width: 72%;
    width: 100%;
}

::selection {
    background-color: rgba(240, 143, 1, 0.8);
    color: #FFF;
}

::-moz-selection {
    background-color: rgba(240, 143, 1, 0.8);
    color: #FFF;
}

/*//////////////////////////////////////////
//////////// Barra de Navegação ////////////
//////////////////////////////////////////*/

.nav {
    display: block;
    max-width: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 100;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.logo-container {
    background-color: #FFF;
    padding: 2.6% 2.2% 2.6% 2.2%;
    margin-left: 8.2%;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    -webkit-animation: slideDownAni 1.2s ease 0s;
    animation: slideDownAni 1.2s ease 0s;
}

.logo-container > a:focus,
.logo-container > a:hover {
    outline: none;
    text-decoration: none;
}

.logo {
    width: 110px;
}

/* Botão da Barra de Navegação */

.button-container {
    margin: auto 7% 7% auto;
    z-index: 101;
    -webkit-animation: slideDownAni 1.2s ease 0s;
    animation: slideDownAni 1.2s ease 0s;
}

.nav-button-toggler {
    border: none;
    background: transparent !important;
}

.nav-button-toggler > .icon-bar {
    background-color: #FFF;
}

.btn-collapsed > .icon-bar {
    background-color: #082332;
}

.icon-bar {
    width: 65px;
    height: 7px;
    display: block;
    transition: all 0.4s;
    margin-top: 7px;
}

.nav-button-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 20% 10%;
}

.nav-button-toggler .middle-bar {
    opacity: 0;
}

.nav-button-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 13% 90%;
}

.nav-button-toggler.btn-collapsed .top-bar {
    transform: rotate(0);
}

.nav-button-toggler.btn-collapsed .middle-bar {
    opacity: 1;
}

.nav-button-toggler.btn-collapsed .bottom-bar {
    transform: rotate(0);
}

.nav-button-toggler:focus {
    outline: 0;
}

/* Contentor dos itens da barra de navegação */

.nav-content-container {
    position: fixed;
    height: 100%;
    overflow-y: auto;
    top: 0;
    z-index: 100;
    right: -50%;
    width: 50%;
    background-color: #A8966A;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nav-animate {
    -webkit-animation: fadeDownAni 0.6s ease 0s;
    animation: fadeDownAni 0.6s ease 0s;
}

.nav-open {
    right: 0 !important;
}

.navclick-overlay {
    display: none;
    position: fixed;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 103;
}

.navclick-overlay-open {
    display: block !important;
}

.languages-container {
    margin: 13% 0 5% 21%;
    z-index: 100;
}

.languages-list {
    list-style: none;
    padding: 0;
}

.languages-list > li {
    margin: 0 2% 0 0;
    width: 50px;
}

.languages-list > li > a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    line-height: 15px;
    color: #FFF;
    padding: 20%;
    text-transform: uppercase;
    border: 1px solid transparent;
    font-weight: 600;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.languages-list > li > a:hover {
    text-decoration: none;
    border: 1px solid #FFF;
}

.current-lang > a {
    border: 1px solid #FFF;
}

.nav-links-container {
    margin: 15% 0 0 0;
}

.menu-depth-1 {
    display: none;
    list-style: none;
    width: 100%;
    padding: 0 1.5% 0 1.5%;
    margin: -1px 0 1px 0;
}

.main-menu-item {
    position: relative;
    padding-left: 22%;
    margin-right: auto;
}

.main-menu-item:before {
    content: '';
    border-bottom: solid 1.33px #FFF;
    position: absolute;
    width: 0;
    top: 23px;
    left: 0;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.main-menu-link {
    position: relative;
    font-family: 'Montserrat', sans-serif !important;
    color: #FFF;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 7px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    white-space: nowrap;
}

.main-menu-link:hover {
    color: #FFF;
    text-decoration: none;
}

.sub-menu-link-1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #FFF;
    font-size: 15px;
    padding-left: 4.5%;
    letter-spacing: 2px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    white-space: nowrap;
}

.sub-menu-link-1:hover {
    color: #FFF;
    text-decoration: none;
}

.open {
    display: block !important;
}

@media only screen and (min-width: 992px) {

    .desktop-open {
        display: block;
    }

    .sub-menu-link-1:hover {
        font-weight: 600;
        padding-left: 7%;
    }

    .menu-item-has-children:hover:after {
        height: 30%;
    }

    .main-menu-item:hover:before {
        width: 9.5vw;
    }
}

/*//////////////////////////////////////////
///////////////// Footer ///////////////////
//////////////////////////////////////////*/

footer {
    background-image: linear-gradient(to right, rgba(213, 208, 199, 1) 14%, rgba(251, 250, 249, 1) 41%);
    color: #A8966A;
    font-family: 'AbrilDisplaySemiBold', sans-serif !important;
    max-width: 100%;
    width: 100%;
}

.footer-testimonials-image-container {
    max-width: 35%;
    flex: 0 0 35%;
}

.footer-testimonials-line {
    padding-top: 4.4%;
    max-width: 8%;
    flex: 0 0 8%;
}

.footer-testimonials-line > hr {
    border: 1px solid #A8966A;
    width: 100%;
}

.footer-testimonials-name-container {
    padding-top: 3.1%;
    max-width: 13%;
    flex: 0 0 13%;
}

.footer-testimonials-item-name {
    margin-top: 4.5%;
    text-transform: uppercase;
}

.footer-testimonials-item-name > h5 {
    font-size: 16px;
}

.footer-testimonials-item-name > p {
    font-size: 14px;
}

.footer-testimonials-text-container {
    max-width: 40%;
    flex: 0 0 40%;
}

.footer-mark {
    font-size: 160px;
    margin: 0 3% 20% 0;
    height: 25px;
}

.footer-testimonials-text > p {
    letter-spacing: 1px;
    font-size: 20px;
    margin-top: 10%;
}

.footer-testimonials-image-container,
.footer-testimonials-name-container,
.footer-testimonials-text-container,
.footer-testimonials-image-slider,
.footer-testimonials-text-slider,
.footer-testimonials-name-slider {
    min-width: 0;
}

/*//////////////////////////////////////////
////////////// Página Inicial //////////////
//////////////////////////////////////////*/

.fp-container {
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    font-weight: 500;
    max-width: 65%;
    width: 100%;
    margin: 20% auto 0 auto;
}

.fp-container-left {
    z-index: 0;
    animation: fadeDownAni 0.8s ease 0s;
    -webkit-animation: fadeDownAni 0.8s ease 0s;
}

.fp-slogan-container {
    position: absolute;
    bottom: 13%;
    left: 7%;
    animation: fadeLeft 1.6s ease 0s;
    -webkit-animation: fadeLeft 1.6s ease 0s;
    z-index: 0;
}

.fp-slogan-container > p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
    color: #A8966A;
    letter-spacing: 1px;
    font-size: 17px;
}

.slogan-line-1-pt,
.slogan-line-2-pt {
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-left: calc(3% + 70px);
}

.slogan-line-1-pt {
    font-size: 16px;
    animation: fadeLeft 1.6s ease 0s;
    -webkit-animation: fadeLeft 1.6s ease 0s;
}

.slogan-line-2-pt {
    font-size: 30px;
    margin-bottom: 14%;
    animation: fadeLeft 1.4s ease 0s;
    -webkit-animation: fadeLeft 1.4s ease 0s;
}

.fp-testimonials-container {
    animation: fadeLeft 1s ease 0s;
    -webkit-animation: fadeLeft 1s ease 0s;
}

@keyframes fadeLeft {
    0% {
        transform: translateX(-400px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fp-slider-container {
    max-width: 100%;
    animation: fadeLeft 1s ease 0s;
    -webkit-animation: fadeLeft 1s ease 0s;
}

.fp-testimonials-slider-title-container {
    max-width: 70%;
}

.fp-testimonials-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    line-height: 14px;
    color: #FFF;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 6%;
}

.fp-testimonials-line-container {
    margin-right: 3%;
}

.fp-testimonials-line {
    width: 70px;
    border-top: 1px solid #FFF;
    margin-top: 16%;
}

.fp-testimonials-text {
    font-family: 'AbrilDisplaySemiBold', serif !important;
    font-size: 15px;
    letter-spacing: 1px;
    color: #FFF;
    padding-left: 29%;
    padding-right: 20%;
    padding-top: 2%;
}

.fp-testimonials-text > p:before {
    content: '“';
}

.fp-testimonials-text > p:after {
    content: '”';
}

.fp-testimonials-dots {
    padding-left: 29%;
    padding-right: 20%;
}

.fp-testimonials-dots > .slick-dots {
    padding: 0;
    margin: 8% 0 0 0;
    list-style: none;
    display: flex;
    flex-direction: row;
}

.fp-testimonials-dots > .slick-dots > li > button {
    background-color: #FFF;
    width: 16px;
    height: 16px;
    font-size: 0;
    border-radius: 20px;
    color: #FFF;
    border: 0;
    margin-right: 7px;
    padding: 0;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.fp-testimonials-dots > .slick-dots > .slick-active > button {
    background-color: #082332 !important;
    color: #082332 !important;
}

.fp-footer {
    background-color: #082332;
    padding: 2% 25% 2%  50%;
    -webkit-animation: fadeUpAni 0.8s ease 0s;
    animation: fadeUpAni 0.8s ease 0s;
}

.fp-footer-container {
    max-width: 50%;
    margin-left: auto;
}

.fp-footer-title {
    font-size: 12px;
    color: #FFF;
    padding-top: 2.8%;
}

/* Página Cofinanciado */

.cofinanced-page-container {
    margin-top: 300px;
}

.cofinanced-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    line-height: 20px;
}

.cofinanced-text > .wp-block-image > img {
    max-width: 50%;
}

/*//////////////////////////////////////////
///////////// Página Sobre Nós /////////////
//////////////////////////////////////////*/

.about-banner-container-left {
    -webkit-animation: fadeDownAni 0.8s ease 0s;
    animation: fadeDownAni 0.8s ease 0s;
}

.about-banner-content {
    margin: 38% 13% 0 18%;
    color: #FFF;
    -webkit-animation: slideDownAni 0.6s ease 0s;
    animation: slideDownAni 0.6s ease 0s;
}

.about-banner-content > h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 5%;
    letter-spacing: 5px;
}

.about-banner-content > p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 20px;
    font-weight: 300;
}

.about-banner-content > p > strong {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
}

/*//////////////////////////////////////////
///////////////// Timeline /////////////////
//////////////////////////////////////////*/

.timeline-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    background-color: #F1EEEA;
    padding: 8% 0 1% 0;
    display: flex;
    flex-direction: column;
}

.timeline-slider-container {
    display: flex;
    flex-direction: row;
    min-width: 0;
}

.timeline-slider {
    display: flex;
    flex-direction: row;
    padding: 0 1% 0 1%;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    color: #E5E0D5;
    margin: 3% auto 0 auto;
    font-size: 120px;
    letter-spacing: 12px;
}

.timeline-layout-1-container {
    max-width: 55%;
    flex: 0 0 55%;
    min-width: 0;
}

.timeline-layout-2-container {
    max-width: 45%;
    flex: 0 0 45%;
    min-width: 0;
}

.timeline-slider {
    max-width: 86%;
    width: 100%;
    min-width: 0;
}

.timeline-next,
.timeline-previous {
    width: 10%;
    height: 75px;
    margin-top: 11%;
}

.timeline-next > button,
.timeline-previous > button {
    display: block;
    width: 90%;
    background-color: #FFF;
    border: 0;
    padding-top: 25%;
    padding-bottom: 25%;
    margin-top: 13.5%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.timeline-next > button,
.timeline-previous > button {
    width: 100%;
    margin-left: auto;
}

.timeline-next > button {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    -webkit-border-top-left-radius: 100px;
    -webkit-border-bottom-left-radius: 100px;
}

.timeline-previous > button {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    -webkit-border-top-right-radius: 100px;
    -webkit-border-bottom-right-radius: 100px;
}

.timeline-next > button > svg,
.timeline-previous > button > svg {
    width: 65px;
}

@media only screen and (min-width: 992px) {

    .timeline-next > button:hover,
    .timeline-previous > button:hover {
        background-color: #082332;
    }
}

.timeline-next > button:active,
.timeline-previous > button:active {
    background-color: #00000b;
}

.timeline-next > button:focus,
.timeline-previous > button:focus {
    outline: 0;
}

.timeline-image-1,
.timeline-image-2 {
    background-position: center;
    background-size: cover;
}

/* Layout 1 */

.timeline-image-1 {
    max-width: 65%;
    width: 100%;
    margin-left: auto;
    margin-right: 9%;
    height: 185px;
}

.timeline-layout-1-line-1 {
    display: flex;
    justify-content: flex-start;
}

.timeline-layout-1-line-1 {
    width: 75px;
    border-bottom: 3px solid #A8966A;
    height: 1px;
    margin: auto 0 0 0;
    border-radius: 20px;
}

.timeline-year-1,
.timeline-year-2 {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 16px;
    font-weight: 500;
}

.timeline-year-1 {
    color: #A8966A;
    font-size: 200px;
    margin-left: 11%;
    margin-bottom: 0;
    margin-top: 3%;
    line-height: 165px;
}

.timeline-layout-1-line-2 {
    width: 68%;
    height: 1px;
    border-bottom: 3px solid #A8966A;
    margin: auto -15% 0 auto;
    border-radius: 20px;
}

.timeline-text-1,
.timeline-text-2 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    margin: 2% 8% 0 auto;
    width: 44%;
}

/* Layout 2 */

.timeline-year-2 {
    font-size: 90px;
    color: #A8966A;
}

.timeline-layout-2-text-container {
    margin-top: 15%;
}

.timeline-text-2 {
    width: 50%;
    margin: 0 0 -6px 5%;
}

.timeline-text-2 > p {
    margin: 0;
}

.timeline-layout-2-line-1 {
    width: 35%;
    height: 1px;
    border-bottom: 3px solid #A8966A;
    margin: auto 0 0 0;
    border-radius: 20px;
}

.timeline-container-2 {
    margin-left: 25%;
}

.timeline-image-2 {
    max-width: 80%;
    width: 100%;
    height: 190px;
}

.timeline-layout-2-line-2 {
    width: 14%;
    height: 1px;
    border-bottom: 5px solid #A8966A;
    margin: 0 0 auto 5%;
    border-radius: 20px;
}

/* Animações - Timeline */
/* Timeline-1*/
/* Front */

.timeline-layout-1-container.slick-active.timeline-front > .d-flex > .timeline-layout-1-line-1 {
    animation: slideRight 1.5s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-front > .d-flex > .timeline-image-1 {
    animation: slideRight 1.1s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-front > div > .timeline-year-1 {
    animation: slideRight 1.2s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-front > div > .timeline-layout-1-line-2 {
    animation: slideRight 1.4s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-front > .timeline-text-1 {
    animation: slideRight 1.8s ease 0s;
}

/* Back */

.timeline-layout-1-container.slick-active.timeline-back > .d-flex > .timeline-layout-1-line-1 {
    animation: slideLeft 1.5s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-back > .d-flex > .timeline-image-1 {
    animation: slideLeft 1.1s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-back > div > .timeline-year-1 {
    animation: slideLeft 1.2s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-back > div > .timeline-layout-1-line-2 {
    animation: slideLeft 1.4s ease 0s;
}

.timeline-layout-1-container.slick-active.timeline-back > .timeline-text-1 {
    animation: slideLeft 1.8s ease 0s;
}

/* Timeline-2 */
/* Front */
.timeline-layout-2-container.slick-active.timeline-front > .timeline-layout-2-text-container > .timeline-text-2 {
    animation: slideRight 0.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-front > .timeline-layout-2-text-container > .timeline-layout-2-line-1 {
    animation: slideRight 0.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-front > .timeline-layout-2-text-container > .timeline-layout-2-line-1 {
    animation: slideRight 0.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-front > .timeline-container-2 > .d-flex .timeline-image-2 {
    animation: slideRight 1s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-front > .timeline-container-2 > .d-flex .timeline-layout-2-line-2 {
    animation: slideRight 1.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-front > .timeline-container-2 > div > .timeline-year-2 {
    animation: slideRight 1.2s ease 0s;
}

/* Back */

.timeline-layout-2-container.slick-active.timeline-back > .timeline-layout-2-text-container > .timeline-text-2 {
    animation: slideLeft 0.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-back > .timeline-layout-2-text-container > .timeline-layout-2-line-1 {
    animation: slideLeft 0.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-back > .timeline-layout-2-text-container > .timeline-layout-2-line-1 {
    animation: slideLeft 0.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-back > .timeline-container-2 > .d-flex .timeline-image-2 {
    animation: slideLeft 1s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-back > .timeline-container-2 > .d-flex .timeline-layout-2-line-2 {
    animation: slideLeft 1.8s ease 0s;
}

.timeline-layout-2-container.slick-active.timeline-back > .timeline-container-2 > div > .timeline-year-2 {
    animation: slideLeft 1.2s ease 0s;
}

@keyframes slideRight {
    0% {
        transform: translateX(400px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-400px);
    }

    100% {
        transform: translateX(0);
    }
}

/*//////////////////////////////////////////
//////////// Comissão executiva ////////////
//////////////////////////////////////////*/

.cp-content-container {
    margin-top: 5%;
    margin-bottom: 5%;
}

.cp-container {
    position: relative;
    display: block;
}

.cp-image-container {
    display: block;
}

.cp-overlay {
    display: block;
    position: absolute;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 17% 0 17%;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.cp-overlay-text-container {
    width: 100%;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.cp-btn {
    background-color: transparent;
    border: 0;
    display: block;
}

.cp-btn:hover > .cp-container > .cp-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.cp-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 3px;
}

.cp-specialty {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    letter-spacing: 2px;
}

/*//////////////////////////////////////////
/////////// Página dos Conselhos ///////////
//////////////////////////////////////////*/

.pb-container {
    margin-top: 5%;
    margin-bottom: 5%;
}

.clinic-board,
.advisory-board {
    display: none;
    margin-top: 7%;
}

.board-open {
    display: flex !important;
    animation: boardFadeIn 0.6s ease 0s;
    -webkit-animation: boardFadeIn 0.6s ease 0s;
}

.pb-item-container {
    max-width: 20%;
    width: 100%;
    flex: 0 0 20%;
    padding-left: 10px;
    padding-right: 10px;
}

.pb-item-container-slide {
    -webkit-animation: serviceBtnSlide  0.8s ease 0s;
    animation: serviceBtnSlide  0.8s ease 0s;
}

.pb-btn {
    color: #000;
    text-transform: uppercase;
    text-align: center;
    border: 0;
    background-color: transparent;
}

.pb-image-container {
    position: relative;
}

.pb-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
}

.pb-btn:hover {
    text-decoration: none;
    color: #000;
}

@media only screen and (min-width: 992px) {

    .pb-btn:hover > .pb-image-container > .pb-overlay {
        opacity: 1;
    }
}

.pb-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    line-height: 16px;
    margin-top: 9%;
    font-weight: 500;
}

.pb-text-container {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.pb-text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 10px;
    line-height: 10px;
}

/*//////////////////////////////////////////
///////////// Single - team /////////////
//////////////////////////////////////////*/

.sm-margin {
    margin-top: 350px;
    margin-bottom: 150px;
}

.sm-image {
    max-width: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 560px;
}

.sm-arrow-container {
    position: relative;
    max-width: 15%;
    width: 100%;
    flex: 0 0 15%
}

.sm-image-container {
    max-width: 25%;
    width: 100%;
    flex: 0 0 25%;
    background-position: center center;
    background-repeat: no-repeat;
}

.sm-title,
.sm-specialty,
.sm-name-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

.sm-text-container {
    max-width: 45%;
    width: 100%;
    flex: 0 0 45%;
    padding-left: 3%;
}

.sm-title {
    text-transform: uppercase;
    margin-top: 14%;
    font-size: 28px;
    letter-spacing: 2px;
}

.sm-specialty {
    font-size: 14px;
}

.sm-text {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    color: #082332;
    margin-top: 10%;
}

.sm-link-container {
    margin-top: 85%;
    max-width: 50%;
    width: 100%;
}

.sm-link {
    background-color: #082332;
    margin: auto;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sm-link > svg {
    max-width: 90%;
    width: 100%;
    height: auto;
}

.sm-link-container-next {
    margin-left: auto;
}

.sm-link-container-previous {
    margin-right: auto;
}

.sm-image-btn-container {
    position: relative;
}

.sm-image-btn {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 125px;
}

.sm-image-btn-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease 0s;
}

.sm-link-container:hover > .sm-image-btn-container > .sm-image-btn-overlay {
    opacity: 0;
}

.sm-name-btn {
    position: absolute;
    color: #082332;
    text-transform: uppercase;
    font-size: 12px;
    width: 100%;
    transform: rotate(-90deg);
}

.sm-name-btn-1 {
    left: 14%;
    top: 24%;
}

.sm-name-btn-2 {
    right: 14%;
    bottom: 24%;
}

.cat-mobile-list {
    display: none;
}

/*//////////////////////////////////////////
////////////// Unidades IGHS ///////////////
//////////////////////////////////////////*/

.unit-banner-container {
    max-width: 52%;
    width: 100%;
    flex: 0 0 52%;
}

.unit-content-container {
    max-width: 48%;
    width: 100%;
    flex: 0 0 48%;
    background-color: #082332;
    padding: 6% 10% 6% 6%;
}

.unit-posts-container {
    margin-top: 4%;
    margin-bottom: 7%;
}

.unit-post-item {
    margin-top: 3%;
}

.unit-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
    width: 100%;
    height: 100%;
    min-height: 550px;
}

/* Layout 1 */

.unit-title {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    color: #A8966A;
    display: flex;
    flex-direction: column;
}

.unit-title-1 {
    font-size: 28px;
    line-height: 14px;
}

.unit-title-2 {
    font-size: 48px;
    line-height: 68px;
}

.unit-content {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 16px;
    color: #FFF;
    display: flex;
    flex-direction: row;
    margin-top: 2%;
    font-weight: 300;
    line-height: 20px;
}

.unit-content > p:first-child:before {
    content: '“';
}

.unit-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    margin-left: -50px;
    margin-top: 4%;
    text-transform: uppercase;
    color: #FFF;
    background-color: transparent;
    border: none;
    padding: 0;
}

.unit-line {
    width: 40px;
    border: 1px solid #FFF;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    background-color: #FFF;
}

.unit-btn-text {
    font-size: 12px;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.unit-btn:hover {
    text-decoration: none;
    color: #FFF
}

.unit-btn-2:hover {
    color: #082332;
}

.unit-btn:hover > .unit-btn-text {
    margin-left: 10px;
    font-weight: 500;
}

.unit-link > svg {
    max-width: 40px;
    width: 100%;
    height: auto;
    text-decoration: none;
}

.unit-link > svg > .cls-2 {
    clip-path: none !important;
}

.unit-link-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
    line-height: 12px;
    color: #A8966A;
    text-transform: uppercase;
    margin-left: 15px;
    letter-spacing: 2px;
    font-weight: 500;
}

.unit-link:hover {
    text-decoration: none;
}

.unit-link > svg > .cls-1,
.unit-link > svg > .cls-2,
.unit-link > .unit-link-text {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.unit-link:hover > .unit-link-text {
    color: #FFF;
}

.unit-link:hover > svg > .cls-1,
.unit-link:hover > svg > .cls-2 {
    stroke: #FFF;
}

/* Layout 2 */

.unit-content-container-2 {
    background-color: #EBE7E1;
}

.unit-content-2,
.unit-btn-2 {
    color: #082332;
}

.unit-btn-2 > .unit-line {
    border: 1px solid #082332;
}

.unit-link-2:hover > .unit-link-text {
    color: #082332;
}

.unit-link-2:hover > svg > .cls-1,
.unit-link-2:hover > svg > .cls-2 {
    stroke: #082332;
}

/*//////////////////////////////////////////
//////////////// Projetos //////////////////
//////////////////////////////////////////*/

.projects-container {
    margin-top: 7%;
    margin-bottom: 8%;
}

.project-container {
    max-width: 33.33%;
    width: 100%;
    flex: 0 0 33.33%;
    padding: 15px;
}

.project-image-container {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: 0;
}

.project-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
    width: 100%;
    height: 27vw;
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.project-title,
.project-more {
    font-family: 'Montserrat', sans-serif !important;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
}

.project-title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.project-more {
    font-size: 12px;
    padding-top: 3%;
    font-weight: 500;
    letter-spacing: 1px;
}

.project-image-container:hover > .project-image-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

/*//////////////////////////////////////////
////////// Página single projetos //////////
//////////////////////////////////////////*/

.pj-content-container {
    margin-top: 340px;
    margin-bottom: 340px;
}

.pj-image-container {
    max-width: 72%;
    flex: 0 0 72%;
}

.pj-arrow-container {
    max-width: 14%;
    flex: 0 0 14%;
}

.pj-project-slider-item {
    flex: 1;
    width: 100%;
    background-size: cover;
    background-position: center;
    height: 600px;
    flex-shrink: 0;
}

.pj-info-container {
    max-width: 75%;
    width: 100%;
    flex: 0 0 75%;
    margin-left: auto;
    margin-right: auto;
}

.pj-col-r {
    max-width: 61%;
    flex: 0 0 61%;
}

.pj-col-l {
    max-width: 39%;
    flex: 0 0 39%;
}

.pj-dots {
    margin-left: 7%;
}

.pj-dots > .slick-dots {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
}

.pj-dots > .slick-dots > li {
    padding: 0 10px 0 0;
}

.pj-dots > .slick-dots > li > button {
    background-color: #EBE7E1;
    color: #EBE7E1;
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pj-dots > .slick-dots > .slick-active > button {
    background-color: #A8966A;
    color: #A8966A;
}

.pj-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #082332;
    font-weight: 500;
}

.pj-content {
    font-family: "Source Sans Pro", sans-serif !important;
    color: #082332;
    letter-spacing: 0.5px;
    font-size: 17px;
    line-height: 19px;
    font-weight: 300;
}

.pj-previous,
.pj-next {
    display: block;
}

.pj-previous > a,
.pj-next > a {
    justify-content: center
}

.pj-previous > a > svg,
.pj-next > a > svg {
    width: 80%;
}

.pj-previous > a > svg > .cls-1,
.pj-next > a > svg > .cls-1 {
    stroke-width: 2px;
}

.pj-link-container {
    margin-left: 3%;
    width: 100%;
}

.pj-link {
    margin-right: 12%;
}

.pj-link > svg {
    width: 40px;
}

.pj-link > svg > .cls-1,
.pj-link > svg > .cls-2 {
    stroke: #A8966A;
    clip-path: none;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.pj-link:hover > svg > .cls-1,
.pj-link:hover > svg > .cls-2 {
    stroke: #082332;
}

.pj-link-text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    margin-top: 7%;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #A8966A;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.pj-link:hover {
    text-decoration: none;
}

.pj-link:hover > .pj-link-text {
    color: #082332;
}

.pj-line {
    border-top: 2px solid #A8966A;
    width: 100%;
    margin: 3% 0 0 -190px;
}

/*//////////////////////////////////////////
//////////////// Parcerias /////////////////
//////////////////////////////////////////*/

.partnership-container {
    margin-top: 7%;
    margin-bottom: 7%;
}

/*//////////////////////////////////////////
//////////////// Serviços //////////////////
//////////////////////////////////////////*/

.services-container {
    margin-top: 7%;
    margin-bottom: 7%;
}

.service-cat-btns-container {
    margin-bottom: 8%;
}

.service-cat-btns-list {
    padding: 0 2% 0 2%;
}

.service-cat-btn {
    position: relative;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    text-transform: uppercase;
    color: #082332;
    padding: 0 2% 0 2%;
    height: 60px;
    white-space: nowrap;
    border: 4px solid transparent;
    background-color: transparent;
    font-weight: 500;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    margin-right: 2%;
}

.service-cat-btn:hover {
    border: 4px solid #082332;
}

.service-cat-btn.active {
    border: 4px solid #082332;
}

.service-btn-container {
    margin-bottom: 1%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.service-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    background-color: #EBE7E1;
    border: 0;
    width: 100%;
    padding: 0 3% 0 3%;
    height: 60px;
    text-transform: uppercase;
    font-size: 18px;
    text-align: left;
    color: #082332;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.service-btn:after {
    content: '+';
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold;
    position: absolute;
    font-size: 40px;
    line-height: 40px;
    top: 10px;
    right: 3%;
}

.service-btn-active:after {
    content: '-';
}

.service-cat-1-container,
.service-cat-2-container,
.service-cat-3-container {
    display: none;
}

.service-content-active {
    -webkit-animation: boardFadeIn 0.6s ease 0s;
    animation: boardFadeIn 0.6s ease 0s;
    display: block;
}

.service-btn-slide {
    -webkit-animation: serviceBtnSlide 0.6s ease 0s;
    animation: serviceBtnSlide 0.6s ease 0s;
    opacity: 1;
}

@keyframes serviceBtnSlide {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

.service-text-container {
    display: none;
    z-index: 0;
}

.service-text {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 16px;
    padding: 3%;
    color: #868684;
    font-weight: 300;
}

/*//////////////////////////////////////////
///////////////// Media ////////////////////
//////////////////////////////////////////*/

.media-image-1,
.media-image-2,
.media-image-3 {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 50;
}

.media-image-1 {
    top: 34%;
    left: 10%;
    width: 37.6%;
    height: 380px;
    -webkit-animation: mediaImage1slide 0.6s ease 0s;
    animation: mediaImage1slide 0.6s ease 0s;
}

@keyframes mediaImage1slide {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.media-image-2 {
    top: 20%;
    width: 28.85%;
    right: 23.5%;
    height: 230px;
    -webkit-animation: mediaImage2slide 0.8s ease 0s;
    animation: mediaImage2slide 0.8s ease 0s;
}

@keyframes mediaImage2slide {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.media-image-3 {
    bottom: 0;
    right: 13%;
    width: 39.4%;
    height: 390px;
    z-index: 52;
    -webkit-animation: mediaImage3slide 1s ease 0s;
    animation: mediaImage3slide 1s ease 0s;
}

@keyframes mediaImage3slide {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.media-images-container {
    position: relative;
}

.media-banner-title-1,
.media-banner-title-2 {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    position: absolute;
    z-index: 53;
    font-weight: 500;
}

.media-banner-title-1 {
    font-size: 149px;
    top: 49%;
    left: 12.7%;
    color: #FFF;
    opacity: 0.5;
    letter-spacing: 16.4px;
    -webkit-animation: mediaTitle1slide 1.2s ease 0s;
    animation: mediaTitle1slide 1.2s ease 0s;
}

@keyframes mediaTitle1slide {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
}

.media-banner-title-2 {
    font-size: 100px;
    top: 36%;
    right: 7.4%;
    color: #000;
    opacity: 0.5;
    letter-spacing: 14px;
    -webkit-animation: mediaTitle2slide 1.4s ease 0s;
    animation: mediaTitle2slide 1.4s ease 0s;
}

@keyframes mediaTitle2slide {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
}

.media-overlay-1,
.media-overlay-2 {
    position: absolute;
    background-color: #4BAFB0;
    mix-blend-mode: multiply;
    z-index: 51;
}

.media-overlay-1 {
    right: 0;
    top: 0;
    width: 66%;
    height: 469.5px;
}

.media-overlay-2 {
    left: 0;
    top: 30.56vw;
    width: 61%;
    height: 7vw;
    z-index: 52;
}

/* Remover o elemento nos browsers que não o suporta (i.e Edge) */

@supports not (mix-blend-mode: multiply) {
    .media-overlay-1,
    .media-overlay-2 {
        opacity: 0;
    }
}

.media-container {
    margin-top: 4%;
    margin-bottom: 4%;
}

.media-content {
    margin-top: 3%;
    margin-bottom: 3%;
}

.media-button {
    width: 100%;
    background-color: transparent;
    border: 0;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.media-button:hover {
    text-decoration: none;
}

.media-thumbnail {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 26.35vw;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.media-button:hover > .media-thumbnail {
    background-size: 110%;
}

.media-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 34px;
    text-transform: uppercase;
    text-align: left;
    color: #A8966A;
    letter-spacing: 4px;
    line-height: 32px;
    margin-top: 7%;
    font-weight: 500;
}

.media-date {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    color: #A8966A;
    text-align: left;
    margin-top: 1%;
    margin-bottom: 2%;
    text-transform: lowercase;
    font-weight: 300;
}

.media-excerpt {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 18px;
    text-align: left;
    margin-top: 2%;
    color: #868684;
    font-weight: 300;
}

.media-excerpt:before {
    content: '"';
}

.media-more {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    color: #A8966A;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 3%;
}

.social-share-btn-container {
    margin: 3% 0 0 19%;
}

.social-share-btn {
    display: block;
    margin: 0 4% 0 4%;
}

.social-share-btn > svg {
    width: 34px;
}

.social-share-btn > svg > .cls-1 {
    fill: #A8966A;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.social-share-btn:hover > svg > .cls-1 {
    fill: #082332;
    stroke: #082332;
}

.ms-title {
    font-family: 'MontserratMedium', sans-serif !important;
    font-size: 32px;
    color: #A8966A;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.ms-date {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 17px;
    color: #A8966A;
    text-transform: lowercase;
    font-weight: 500;
}

.ms-line {
    border-top: 2px solid #A8966A;
    width: 35%;
    margin-right: 3%;
    margin-left: -13%;
}

.ms-share-text {
    text-transform: uppercase;
    color: #000;
    font-size: 13px;
    letter-spacing: 2px;
}

/* Conteúdo do Modal */

.ms-col-l {
    max-width: 36%;
    flex: 0 0 36%;
}

.ms-col-r {
    max-width: 64%;
    flex: 0 0 64%;
}

/* Single Video */

.ms-video-container {
    max-width: 74%;
    width: 100%;
    height: auto;
}

.ms-video-container > figure > div > iframe {
    max-width: 100%;
    width: 100%;
    height: 36.2vw;
}

.ms-arrow-container {
    max-width: 13%;
    flex: 0 0 13%;
}

.ms-arrow-container > .sm-link-container {
    max-width: 58%;
}

.ms-article-link {
    margin: auto;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #A8966A;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.ms-article-link:hover {
    background-color: #082332;
}

.ms-article-link > svg {
    width: 95px;
}

.ms-article-link > svg > .cls-1 {
    stroke: #FFF;
}

/* Single Artigo */

.ms-image-container {
    max-width: 74%;
    flex: 0 0 74%;
}

.ms-article-arrow-container {
    max-width: 12%;
    flex: 0 0 12%;
}

.ms-content {
    font-family: "Source Sans Pro", sans-serif !important;
    color: #082332;
    letter-spacing: 0.5px;
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
}

.ms-dots {
    margin: 9% 0 9% 24%;
}

/*//////////////////////////////////////////
/////////////// Carreiras //////////////////
//////////////////////////////////////////*/

.jobs-banner-text-container {
    max-width: 100%;
}

.jobs-banner-title {
    font-size: 68px;
    line-height: 68px;
}

.jobs-banner-sub {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    color: #FFF;
    font-size: 38px;
    letter-spacing: 5px;
    font-weight: 600;
    -webkit-animation: slideDownAni 0.4s ease 0s;
    animation: slideDownAni 0.4s ease 0s;
}

.jobs-banner-text {
    font-size: 18px;
    line-height: 22px;
    margin-top: 0;
}

.jobs-container {
    margin-top: 7%;
    margin-bottom: 7%;
}

.jobs-btns-container {
    margin-bottom: 7%;
}

.job-offers-container,
.job-recruitment-container {
    display: none;
}

.job-container-active {
    display: flex;
    animation: boardFadeIn 0.6s ease 0s;
    -webkit-animation: boardFadeIn 0.6s ease 0s;
}

.job-info-container {
    background-color: #EBE7E1;
    max-width: 75%;
    flex: 0 0 75%;
    padding: 5% 11% 5% 5%;
}

.job-offer-esp-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px;
    text-transform: uppercase;
    color: #082332;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto 4% auto;
    max-width: 70%;
    font-weight: 500;
}

.job-offer-title,
.job-offer-function {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    color: #082332;
    font-weight: bold;
}

.job-offer-title {
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 8%;
    letter-spacing: 4px;
}

.job-offer-function {
    font-size: 20px;
    margin-bottom: 4%;
    letter-spacing: 1px;
}

.job-offer-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    color: #082332;
    letter-spacing: 1px;
    font-weight: 500;
}

.job-offer-text > p {
    margin-bottom: 3%;
}

.job-form-link-container {
    background-color: #E2DCD4;
    max-width: 25%;
    flex: 0 0 25%;
    padding: 4%;
}

.job-form-info {
    text-align: center;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

.job-form-btn {
    background-color: transparent;
    border: 0;
    width: 90%;
    margin-bottom: 10%;
}

/* Estilos formulários candidatura espontânea */

.wpcf7 {
    max-width: 100%;
    width: 100%;
}

.job-form-input {
    font-family: 'Montserrat', sans-serif !important;
    color: #082332;
    width: 100%;
    background-color: #EBE7E1;
    border: 2px solid transparent;
    height: 65px;
    padding: 25px;
    margin-bottom: 1%;
    font-size: 18px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.job-form-input::placeholder {
    color: #082332;
    opacity: 1;
}

.job-form-input::-moz-placeholder {
    color: #082332;
    opacity: 1;
}

.job-form-input::-webkit-input-placeholder {
    color: #082332;
    opacity: 1;
}

.job-form-input::-ms-input-placeholder {
    color: #082332;
    opacity: 1;
}

.job-form-input:focus {
    border-color: #b9b5af;
    background-color: #EBE7E1;
    outline: 0;
}

.job-internship-container {
    background-color: #EBE7E1;
    padding: 40px 20px;
    font-size: 18px;
}

.job-internship-text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    max-width: 35%;
}

/* Esconder a checkbock original */
.job-internship-container {
    margin-bottom: 2%;
}

.job-internship-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.your-internship > .wpcf7-radio > .wpcf7-list-item > .wpcf7-list-item-label {
    cursor: pointer;
    display: block;
    position: relative;
    padding-left: 50px;
}

.your-internship > .wpcf7-radio > .wpcf7-list-item > .wpcf7-list-item-label:before {
    position: absolute;
    top: -10px;
    left: 0;
    height: 40px;
    width: 40px;
    border-radius: 25px;
    border: 4px solid #082332;
}

.your-internship > .wpcf7-radio > .wpcf7-list-item > .list-item-active:after {
    position: absolute;
    top: -0.5px;
    left: 8.9px;
    height: 22px;
    width: 22px;
    border-radius: 25px;
    border: 4px solid #082332;
    background-color: #082332;
}

.wpcf7-select {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    display: block;
    position: relative;
    width: 100%;
    height: 65px;
    background-color: #EBE7E1;
    border: 0;
    padding: 20px;
    font-size: 18px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-select:focus {
    outline: 0;
}

.your-function {
    position: relative;
    display: block;
}

.wpcf7-form-control-wrap.your-function:after {
    position: absolute;
    content: url('../ighs/inc/files/arrow.svg');
    background-size: 100%;
    width: 50px;
    top: 35%;
    right: 7%;
    z-index: 10;
    pointer-events: none;
}

@media only screen and (min-width: 992px) {

    .your-function-active:after {
        transform: rotate(180deg);
        top: 20% !important;
    }
}

.wpcf7-acceptance > .wpcf7-list-item > label {
    display: flex;
    flex-direction: row;
    max-width: 90%;
    margin: 0 auto 0 auto;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

.wpcf7-acceptance > .wpcf7-list-item > label > input {
    display: none;
}

span.wpcf7-not-valid-tip {
    margin-top: 1%;
}

.job-acceptance-btn {
    position: absolute;
    width: 35px;
    height: 35px;
    top: 0;
    left: 3.5%;
    border: 4px solid #082332;
    background-color: transparent;
    cursor: pointer;
    z-index: 1;
}

.job-acceptance-btn:after {
    display: none;
    content: "X";
    position: absolute;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 28px;
    color: #082332;
    top: 48%;
    left: 11%;
    line-height: 0;
    font-weight: bold;
}

.job-acceptance-btn-active:after {
    display: block;
}

.job-acceptance-text-1,
.job-acceptance-text-2 {
    font-family: 'Montserrat', sans-serif !important;
    color: #082332;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
}

.job-acceptance-text-2 {
    font-weight: bold;
}

.job-form-submit {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 21px;
    margin: 0 auto 0 auto;
    background-color: transparent;
    padding: 1.6% 0 1.6% 0;
    text-transform: uppercase;
    color: #082332;
    width: 32%;
    border: 4px solid #082332;
    font-weight: 500;
}

.job-form-submit:hover {
    background-color: #082332;
    color: #FFF;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.job-sel-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px;
    text-transform: uppercase;
    margin: 4% 0 2% 5%;
    font-weight: bold;
    letter-spacing: 2px;
}

span.wpcf7-not-valid-tip {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 10px;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 10px;
    border: 0;
    padding: 0;
    color: #f00;
}

.job-form-file-upload {
    background-color: #EBE7E1;
}

.job-form-file-content {
    max-width: 85%;
}

.job-form-file-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px;
    color: #082332;
    text-transform: uppercase;
    margin: 0;
    line-height: 32px;
    letter-spacing: 2px;
    font-weight: bold;
}

.job-form-file-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px;
    line-height: 22px;
    color: #082332;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.job-form-file-instructions {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
    color: #082332;
    letter-spacing: 1px;
    margin-top: 5%;
    font-weight: 500;
}

.job-form-input-offer {
    height: 100px;
    margin: 5px 0 5px 0;
}

.your-name > .job-form-input-offer {
    margin: 0 0 5px 0;
}

.your-reference >.job-form-input-offer {
    margin: 5px 0 0 0;
}


.job-file-input-label > img {
    max-width: 80%;
}

.job-form-modal {
    padding-left: 8%;
    padding-right: 8%;
}

.job-form-modal-title {
    max-width: 60%;
    margin: 0 auto 5% auto;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    font-size: 32px;
    color: #082332;
    text-align: center;
}

.job.file-container {
    display: block;
    position: relative;
}

.job-file-input-label {
    display: block;
}

.job-file-input {
    overflow: hidden;
}

.job-file-input,
.job-file-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    z-index: 1;
}

.job-file-overlay {
    background-color: #EBE7E1;
    pointer-events: none;
}

/* Single */

.job-single-margin {
    margin-top: 350px;
    margin-bottom: 7%;
}

.job-single-form-container {
    max-width: 80%;
}

/* Esconder o nome da oferta */

.job-offer-name {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0.1;
}

/*//////////////////////////////////////////
//////////////// Contactos /////////////////
//////////////////////////////////////////*/

.c-content-margin {
    margin-top: 240px;
}

.c-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    text-align: center;
    font-size: 62px;
    text-transform: uppercase;
    color: #A8966A;
    letter-spacing: 8px;
}

.c-text-container {
    max-width: 90%;
    font-family: 'Montserrat', sans-serif !important;
    color: #A8966A;
    text-transform: uppercase;
    text-align: right;
    margin-top: 5%;
    font-weight: 500;
}

.c-text-container > h3 {
    font-size: 18px;
    letter-spacing: 2px;
}

.c-text-container > h2 {
    font-size: 28px;
    letter-spacing: 3px;
}

.c-map-container {
    position: relative;
    display: block;
    margin-bottom: 5%;
}

.c-address-text-container {
    max-width: 72%;
    margin-bottom: 5%;
}

.c-address-text {
    max-width: 90%;
    margin: 0 auto 0 auto;
}

.c-address-text > h2 {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    font-size: 20px;
    color: #A8966A;
    font-weight: 500;
    letter-spacing: 2px;
}

.c-address-text > p {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 14px;
    line-height: 25px;
    color: #868684;
    font-weight: 400;
}

.c-address-point {
    display: block;
    position: absolute;
    background-color: #A8966A;
    width: 20px;
    height: 20px;
    border-radius: 24px;
}

.c-address-point:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 50px;
    top: -25px;
}

.c-address-point-1 {
    top: 42.5%;
    left: 44%;
}

.c-address-point-2 {
    top: 52.5%;
    left: 61.5%;
}

.c-address-point-3 {
    top: 52%;
    left: 77.5%;
}

.c-address-point-4 {
    top: 50%;
    left: 59.5%;
}

.c-address-point-address {
    position: relative;
    display: none;
    background-color: #A8966A;
    width: 22vw;
    padding-left: 5%;
    padding-right: 5%;
    height: 15vw;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    top: 50%;
    left: 360%;
}

.c-address-point-3 > .c-address-point-address  {
    right: 26vw;
    left: unset;
}

.c-address-point-3 > .c-address-point-address  {
    right: 26vw;
    left: unset;
}


.c-address-point:hover > .c-address-point-address {
    animation: flexOpen 0.2s ease 0s;
    -webkit-animation: flexOpen 0.2s ease 0s;
    display: flex;
}

.c-address-point-address:before,
.c-address-point-address:after {
    content: "";
    display: flex;
    position: absolute;
    width: 0;
    border-style: solid;
    margin-right: 15%;
    z-index: 9999;
}

.c-address-point-address:before {
    left: -78px;
    top: -34px;
    height: 115px;
    transform: rotate(-90deg);
    border-width: 20px 0 50px 46px;
    border-color: transparent transparent #A8966A transparent;
    z-index: 9999;
    margin-right: 7%;
}

.c-address-point-3 > .c-address-point-address:before  {
    left: 22vw;
    top: 0;
    transform: rotate(180deg);
}

.c-address-point-address:after {
    left: -47px;
    top: 0;
    width: 50px;
    height: 0;
    border-width: 3px;
    border-color: #A8966A;
    border-radius: 50px;
}

.c-address-point-3 > .c-address-point-address:after  {
    left: 21.7vw;
    top: 0;
    transform: rotate(180deg);
}

@keyframes flexOpen {
    from {
        display: none;
        opacity: 0;
    }

    to {
        display: flex;
        opacity: 1;
    }
}

.c-address-point-text {
    color: #FFF;
    z-index: 60;
}

.c-address-point-text > h2 {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    font-size: 29px;
    letter-spacing: 3px;
    font-weight: 500;
}

.c-address-point-text > p {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 22px;
    font-weight: 300;
}

/*//////////////////////////////////////////
////////////// Media Queries //////////////
//////////////////////////////////////////*/

@media only screen and (max-width: 1480px) {
    .banner {
        height: 63vw;
    }

    /* Media */

    .media-overlay-1 {
        height: 42vw;
    }

    .media-overlay-2 {
        top: 42vw;
        height: 11vw;
    }

    .media-image-1 {
        height: 505px;
    }

    .media-image-2 {
        height: 315px;
    }

    .media-banner-title-1 {
        top: 57%;
        left: 10.3%;
    }

    .media-banner-title-2 {
        top: 46%;
    }
}

@media only screen and (max-width: 1280px) {

    .logo {
        width: 90px;
    }

    /* Banner */

    .banner {
        height: 705px;
    }

    .banner-title {
        font-size: 58px;
    }

    .about-banner-content {
        margin: 42% 13% 0 18%;
    }

    .about-banner-content > h1 {
        font-size: 28px;
    }

    .about-banner-content > p {
        font-size: 13px;
        line-height: 16px;
    }

    /* Conteúdo do Modal */

    .modal > .modal-dialog > .modal-content > .modal-header > button > span {
        font-size: 52px;
        line-height: 26px;
    }

    /* Barra de navegação */

    .icon-bar {
        width: 55px;
        height: 7px;
    }

    .nav-button-toggler .top-bar {
        transform-origin: 10% 10%;
    }

    .button-container {
        margin: auto 7% 6% auto;
    }

    .main-menu-item:before {
        top: 21px;
    }

    .main-menu-link {
        font-size: 26px;
    }

    .sub-menu-link-1 {
        font-size: 14px;
        white-space: normal;
    }

    .languages-list > li > a {
        font-size: 13px;
    }

    /* Footer */

    .footer-testimonials-item-name > h5 {
        font-size: 15px;
    }

    .footer-testimonials-item-name > p {
        font-size: 13px;
    }

    .footer-testimonials-text > p {
        font-size: 16px;
    }

    .footer-mark {
        font-size: 155px;
        margin: 0 3% 24% 0;
    }

    /* Página Principal */

    .slogan-container {
        margin-top: 50%;
    }

    .slogan-line-1-pt {
        font-size: 14px;
    }

    .slogan-line-2-pt {
        font-size: 26px;
        margin-bottom: 14%;
    }

    .fp-testimonials-text {
        font-size: 14px;
        padding-left: 31%;
    }

    .fp-testimonials-dots {
        padding-left: 31%;
    }

    /* Página Sobre Nós */

    .timeline-title {
        font-size: 110px;
    }

    .timeline-next,
    .timeline-previous {
        width: 8%;
        height: 70px;
    }

    .timeline-next > button > svg,
    .timeline-previous > button > svg {
        width: 60px;
    }

    .timeline-image-1 {
        height: 175px;
    }

    .timeline-image-2 {
        height: 180px;
    }

    .timeline-year-1 {
        font-size: 190px;
    }

    .timeline-year-2 {
        font-size: 85px;
    }

    .timeline-text-1,
    .timeline-text-2 {
        font-size: 13px;
    }

    /* Página Comissão Executiva */

    .cp-title {
        font-size: 18px;
    }

    .cp-specialty {
        font-size: 12px;
    }

    .pb-cat-item {
        margin: 0 1% 0 1%;
    }

    .pb-cat-item > button {
        font-size: 18px;
        line-height: 18px;
    }

    .pb-title {
        font-size: 14px;
    }

    /* Conteúdo do Modal */

    .sm-image {
        height: 550px;
    }

    .sm-title {
        font-size: 27px;
    }

    .sm-specialty {
        font-size: 13px;
    }

    .sm-text {
        font-size: 15px;
    }

    .sm-image-btn {
        height: 120px;
    }

    /* Página Unidades IGHS */


    .unit-title-1 {
        font-size: 26px;
        line-height: 18px;
    }

    .unit-title-2 {
        font-size: 46px;
        line-height: 54px;
    }

    .unit-content {
        font-size: 15px;
    }

    .unit-btn {
        margin-left: -45px;
    }

    .unit-line {
        width: 35px;
    }

    .unit-btn-text {
        font-size: 14px;
    }

    .unit-link-text {
        line-height: 16px;
    }

    /* Página Projetos */

    .project-title {
        font-size: 19px;
    }

    /* Conteúdo do Modal */

    .pj-project-slider-item {
        height: 540px;
    }

    .pj-title {
        font-size: 31px;
    }

    .pj-content {
        font-size: 16px;
    }

    .pj-link > svg {
        width: 50px;
    }

    .pj-link-text {
        font-size: 14px;
    }

    .pj-previous > a > svg, .pj-next > a > svg {
        width: 70%;
    }

    .pj-line {
        margin: 3% 0 0 -105px;
    }

    /* Página Serviços */

    .service-cat-btn {
        font-size: 15px;
        height: 60px;
    }

    .service-btn {
        font-size: 17px;
    }

    .service-btn::after {
        top: 8px;
        font-size: 32px;
        line-height: 32px;
    }

    .service-text {
        font-size: 16px;
    }

    /* Página Media */

    .media-image-1 {
        top: 36%;
        height: 420px;
    }

    .media-image-2 {
        top: 25%;
        height: 260px;
    }

    .media-image-3 {
        height: 350px;
    }

    .media-banner-title-1 {
        top: 54%;
        font-size: 122px;
    }

    .media-banner-title-2 {
        top: 40%;
        font-size: 86px;
    }

    .media-overlay-1 {
        height: 451px;
    }

    .media-overlay-2 {
        top: 64%;
        height: 105px;
    }

    .media-title {
        font-size: 33px;
    }

    .media-date,
    .media-excerpt {
        font-size: 17px;
    }

    .media-more {
        font-size: 13px;
    }

    /* Conteudo do Modal */

    .ms-title {
        font-size: 34px;
    }

    .ms-date {
        font-size: 16px;
    }

    .ms-content {
        font-size: 15px;
        line-height: 18px;
    }

    .ms-share-text {
        font-size: 13px;
    }

    .social-share-btn > svg {
        width: 35px;
    }

    .ms-article-link > svg {
        width: 70px;
    }

    /* Página Carreira */

    .jobs-banner-title {
        font-size: 66px;
        line-height: 66px;
    }

    .jobs-banner-sub {
        font-size: 36px;
    }

    .job-offer-esp-title {
        font-size: 29px;
    }

    .job-offer-title {
        font-size: 40px;
        line-height: 44px;
    }

    .job-offer-function {
        font-size: 18px;
    }

    .job-offer-text {
        font-size: 12px;
    }

    /* Formulário */

    .job-form-input,
    .job-internship-container,
    .job-sel-title,
    .wpcf7-select,
    .job-form-submit,
    .job-form-file-text {
        font-size: 18px;
    }

    .wpcf7-form-control-wrap.your-function::after {
        width: 40px;
    }

    .job-acceptance-text-1,
    .job-acceptance-text-2 {
        font-size: 11px;
    }

    .job-acceptance-btn::after {
        top: 44%;
    }

    .job-form-file-title {
        font-size: 30px;
        line-height: 30px;
    }

    .job-form-file-instructions {
        font-size: 11px;
    }

    .job-form-input-offer {
        height: 90px;
    }

    span.wpcf7-not-valid-tip,
    div.wpcf7-validation-errors,
    div.wpcf7-acceptance-missing {
        font-size: 12px;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .wpcf7-list-item-label:before {
        top: -10px;
        left: 0;
        height: 38px;
        width: 38px;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .list-item-active:after {
        top: 0;
        left: 8.9px;
        height: 20px;
        width: 20px;
    }

    .job-form-modal-title {
        font-size: 26px;
    }

    /* Contactos */

    .c-content-margin {
        margin-top: 230px;
    }

    .c-title {
        font-size: 58px;
    }

    .c-text-container > h2 {
        font-size: 26px;
    }

    .c-address-point {
        width: 18px;
        height: 18px;
    }

    .c-address-point-address {
        left: 365%;
    }

    .c-address-point-text {
        padding-left: 10%;
        padding-right: 10%;
    }

    .c-address-point-text > h2 {
        font-size: 26px;
    }

    .c-address-point-text > p {
        font-size: 14px;
    }

    .c-address-point-address::before {
        left: -74px;
        top: -39px;
        border-width: 17px 0 47px 34px;
    }

    .c-address-point-address::after {
        left: -45px;
    }

    .c-address-text > h2 {
        font-size: 18px;
    }

    .c-address-text > p {
        font-size: 12px;
    }
}

@media only screen and (max-width: 1080px) {

    .logo {
        width: 74px;
    }

    /* Banner */

    .banner-title {
        font-size: 44px;
        max-width: 100%;
    }

    .banner-text-container {
        margin: 0;
    }

    .banner-text {
        max-width: 70%;
        font-size: 12px;
    }

    .banner-scroll-text {
        font-size: 15px;
    }

    .banner-scroll-container {
        bottom: 97px;
    }

    .jobs-banner-sub {
        font-size: 30px;
    }

    .banner-text-container {
        max-width: 70%;
    }

    .about-banner-content > h1 {
        font-size: 28px;
    }

    .about-banner-content > p {
        font-size: 12px;
    }

    /* Barra de Navegação */

    .button-container {
        margin: auto 8.5% 5% auto;
    }

    .icon-bar {
        width: 50px;
        margin-top: 5px;
    }

    .nav-button-toggler .top-bar {
        transform: rotate(45deg);
        transform-origin: 13% 10%;
    }

    .main-menu-link {
        font-size: 18px;
    }

    .sub-menu-link-1 {
        font-size: 11px;
    }

    .main-menu-item::before {
        top: 17px;
    }

    .lang-item > a {
        font-size: 14px;
    }

    /* Footer */

    .fp-footer-title {
        font-size: 11px;
    }

    .footer-testimonials-item-name > h5 {
        font-size: 14px;
    }

    .footer-testimonials-item-name > p {
        font-size: 12px;
    }

    .footer-testimonials-text > p {
        font-size: 15px;
    }

    .footer-mark {
        font-size: 95px;
    }

    /* Página Principal */

    .slogan-line-1-pt,
    .slogan-line-2-pt {
        font-size: 30px;
    }


    .slogan-line-1-pt {
        font-size: 12px;
    }

    .slogan-line-2-pt {
        font-size: 24px;
        margin-bottom: 14%;
    }

    .fp-testimonials-title {
        font-size: 12px;
        line-height: 12px;
    }

    .fp-testimonials-text {
        font-size: 12px
    }

    .fp-slogan-container {
        bottom: 3%;
    }

    .fp-slogan-container > p {
        font-size: 14px;
    }

    /* Página Sobre Nós */

    .timeline-title {
        font-size: 100px;
    }

    .timeline-year-1 {
        font-size: 130px;
        line-height: 112px;
    }

    .timeline-year-2 {
        font-size: 62px;
    }

    .timeline-text-1,
    .timeline-text-2 {
        font-size: 12px;
    }

    .timeline-image-1 {
        height: 165px;
    }

    .timeline-image-2 {
        height: 126px;
    }

    .timeline-next,
    .timeline-previous {
        width: 7%;
        margin-top: 9.5%;
    }

    .timeline-next > button > svg,
    .timeline-previous > button > svg {
        width: 45px;
    }

    /* Página Comissão Executiva */

    .cp-title {
        font-size: 16px;
    }

    .cp-specialty {
        font-size: 11px;
    }

    .pb-cat-item > button {
        font-size: 16px;
        line-height: 16px;
        height: 60px;
    }

    .pb-title {
        font-size: 12px;
    }

    /* Conteúdo do Modal */

    .sm-image {
        height: 450px;
    }

    .sm-title {
        font-size: 25px;
    }

    .sm-specialty {
        font-size: 11px;
    }

    .sm-text {
        font-size: 13px;
    }

    .sm-image-btn {
        font-size: 110px;
    }

    .sm-name-btn {
        font-size: 10px;
    }

    /* Página Unidades IGHS */

    .unit-title-1 {
        font-size: 28px;
        line-height: 32px;
    }

    .unit-title-2 {
        font-size: 36px;
        line-height: 40px;
    }

    .unit-content {
        font-size: 14px;
    }

    .unit-line {
        width: 30px;
    }

    .unit-btn {
        margin-left: -40px;
    }

    .unit-btn-text {
        font-size: 12px;
    }

    .unit-link > svg {
        width: 38px;
    }

    .unit-link-text {
        font-size: 13px;
    }

    /* Página Projetos */

    .project-title {
        font-size: 16px;
    }

    .project-more {
        font-size: 11px;
    }

    /* Conteúdo do Modal */

    .pj-project-slider-item {
        height: 450px;
    }

    .pj-title {
        font-size: 26px;
    }

    .pj-link-text {
        font-size: 11px;
    }

    .pj-link > svg {
        width: 34px;
    }

    .pj-content {
        font-size: 12px;
    }

    .pj-line {
        width: 115%;
        margin: 3% 0 0 -90px;
    }

    /* Página Serviços */

    .service-cat-btn {
        font-size: 12px;
        height: 50px;
    }

    .service-btn::after {
        top: 6px;
    }

    .service-btn {
        font-size: 14px;
    }

    .service-text {
        font-size: 12px;
    }

    /* Página Media */

    .media-banner-title-1 {
        top: 56%;
        font-size: 94px;
    }

    .media-banner-title-2 {
        font-size: 82px;
    }


    .media-title {
        font-size: 28px;
    }

    .media-date,
    .media-excerpt {
        font-size: 14px;
    }

    .media-more {
        font-size: 12px;
    }

    /* Conteudo do Modal */

    .pj-previous,
    .pj-next {
        margin-top: 230px;
    }

    .social-share-btn > svg {
        width: 30px;
    }

    .pj-dots > .slick-dots > li > button {
        width: 18px;
        height: 18px;
    }

    .ms-title {
        font-size: 28px;
    }

    .ms-date {
        font-size: 14px;
    }

    .ms-content {
        font-size: 14px;
        line-height: 16px;
    }


    /* Página Carreira */

    .job-offer-esp-title {
        font-size: 28px;
    }

    .job-form-input {
        height: 65px;
    }

    .job-form-input::placeholder {
        font-size: 14px;
    }

    .job-form-input::-moz-placeholder {
        font-size: 14px;
    }

    .job-form-input::-ms-input-placeholder {
        font-size: 14px;
    }

    .job-form-input::-webkit-input-placeholder {
        font-size: 14px;
    }

    .job-form-file-title {
        font-size: 28px;
        line-height: 30px;
    }

    .job-form-input, .job-internship-container, .job-sel-title, .wpcf7-select, .job-form-submit, .job-form-file-text {
        font-size: 14px;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .wpcf7-list-item-label::before {
        left: 2px;
        height: 30px;
        width: 30px;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .list-item-active::after {
        top: 2px;
        left: 9px;
        height: 16px;
        width: 16px;
    }

    .job-form-file-title {
        font-size: 26px;
        line-height: 28px;
    }

    .job-acceptance-text-1,
    .job-acceptance-text-2 {
        font-size: 10px;
    }

    .job-acceptance-btn {
        width: 26px;
        height: 26px;
        left: 4%;
    }

    .job-acceptance-btn:after {
        font-size: 20px;
    }

    .job-offer-title {
        font-size: 30px;
        line-height: 32px;
    }

    .job-offer-function {
        font-size: 15px;
    }

    .job-offer-text {
        font-size: 11px;
    }

    .job-form-info {
        font-size: 10px;
    }

    .job-form-modal-title {
        font-size: 24px;
    }

    /* Página Contactos */

    .c-content-margin {
        margin-top: 200px;
    }

    .c-title {
        font-size: 42px;
    }

    .c-text-container > h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .c-text-container > h3 {
        font-size: 14px;
        line-height: 14px;
    }

    .c-address-point {
        width: 18px;
        height: 18px;
    }

    .c-address-point-address {
        left: 350%;
        height: 14vw;
    }

    .c-address-point-text {
        padding-left: 10%;
        padding-right: 10%;
    }

    .c-address-point-text > h2 {
        font-size: 24px;
    }

    .c-address-point-text > p {
        font-size: 14px;
        line-height: 16px;
    }

    .c-address-point-address::before {
        left: -70px;
        top: -42px;
        border-width: 20px 0 38px 28px;
    }

    .c-address-point-address::after {
        left: -38px;
    }

    .c-address-text > h2 {
        font-size: 16px;
    }

    .c-address-text > p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media only screen and (max-width: 992px) {

    .logo {
        width: 66px;
    }

    /* Banner */

    .banner {
        height: 690px;
    }

    .banner-text-container {
        max-width: 100%;
    }

    .banner-title,
    .about-banner-content > h1 {
        font-size: 34px;
    }

    .banner-text > p {
        font-size: 12px;
    }

    .banner-scroll-container {
        display: none !important;
    }

    .about-banner-content > h1 {
        font-size: 30px;
    }

    .about-banner-content > p {
        font-size: 14px;
        line-height: 20px;
    }

    /* Botão de Categoria do Mobile */

    .cat-mobile-instruction {
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 500;
        color: #082332;
        font-size: 14px;
        margin-bottom: 4%;
        text-align: center;
    }

    .cat-mobile-btn {
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 600;
        color: #FFF;
        max-width: 100%;
        width: 100%;
        height: 60px;
        border: 2px solid #082332;
        padding: 0% 8% 0% 8%;
        text-transform: uppercase;
        font-size: 10px;
        letter-spacing: 1px;
        text-align: center;
        background-color: #082332;
    }

    .cat-mobile-list {
        display: none;
        border: 2px solid #082332;
    }

    .cat-mobile-list > .d-flex > button {
        font-family: 'Montserrat', sans-serif !important;
        text-transform: uppercase;
        font-weight: 500;
        margin: 3% 0 3% 0;
        padding: 0 8% 0 8%;
        height: 50px;
        width: 100%;
        color: #082332;
        transition: all 0.2s ease 0s;
        -moz-transition: all 0.2s ease 0s;
        -o-transition: all 0.2s ease 0s;
        -webkit-transition: all 0.2s ease 0s;
        letter-spacing: 1px;
        font-size: 10px;
        text-align: center;
        white-space: normal;
        border: 0;
        background-color: transparent;
    }

    .cat-mobile-list > .d-flex > button.active {
        display: none;
    }

    .service-cat-btn.active {
        border: 0;
    }

    /* Barra de Navegação */

    .navclick-overlay {
        display: none !important;
    }

    .nav-content-container {
        width: 100%;
        right: -100%;
    }

    /* Footer */

    .footer-testimonials-item-name > h5 {
        font-size: 14px;
    }

    .footer-testimonials-item-name > p {
        font-size: 12px;
    }

    .footer-testimonials-text > p {
        font-size: 12px;
    }

    .footer-mark {
        font-size: 80px;
    }

    .footer-testimonials-line {
        max-width: 7%;
        flex: 0 0 7%;
        margin-right: 1%;
    }

    /* Página Inicial */

    .fp-row {
        flex-direction: column-reverse;
    }

    .fp-container {
        margin-top: 10%;
    }

    .fp-slider-container {
        margin-bottom: 10%;
    }

    .fp-cofinanced-container {
        padding-bottom: 3%;
    }

    .slogan-line-1-pt {
        font-size: 20px;
    }

    .slogan-line-2-pt {
        font-size: 28px;
    }

    .testimonials-container {
        max-width: 70%;
    }

    .fp-testimonials-title {
        font-size: 18px;
    }

    .fp-testimonials-text {
        font-size: 15px;
        padding-left: 29%;
    }

    .fp-testimonials-dots {
        padding-left: 29%;
    }

    .fp-testimonials-dots > .slick-dots > li > button {
        width: 25px;
        height: 25px;
    }

    .fp-slogan-container {
        display: none;
    }

    .fp-footer-title {
        font-size: 14px;
    }

    .fp-footer {
        padding-left: 25%;
        padding-right: 25%;
    }

    /* Página Sobre Nós */

    .about-banner-content {
        margin: 10%;
    }

    /* Página Sobre Nós - Timeline */

    .timeline-year-1 {
        font-size: 135px;
        line-height: 137px;
    }

    .timeline-year-2 {
        font-size: 72px;
    }

    .timeline-image-1 {
        height: 195px;
    }

    .timeline-image-2 {
        height: 192px;
    }

    .timeline-title {
        font-size: 98px;
    }

    .timeline-slider {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .timeline-next,
    .timeline-previous {
        width: 13%;
    }

    .timeline-next > button > svg, .timeline-previous > button > svg {
        width: 32px;
    }

    .timeline-text-1,
    .timeline-text-2 {
        font-size: 14px;
    }

    /* Página Conselho Clínico & Consultivo */

    .pb-cat-item {
        margin: 0;
        max-width: 50%;
        flex: 0 0 50%;
    }

    .pb-cat-item > button {
        max-width: 100%;
        width: 100%;
    }

    .pb-item-container {
        max-width: 33.33%;
        flex: 0 0 33.33%;
        margin-bottom: 6%;
    }

    .pb-text-container {
        max-width: 100%;
    }

    .pb-title {
        font-size: 16px;
    }

    .pb-text {
        font-size: 14px;
    }

    /* Conteúdo do Modal */

    #content.row {
        position: relative;
    }

    .sm-arrow-container {
        position: absolute;
    }

    .sm-arrow-container-left {
        left: 0;
    }

    .sm-arrow-container-right {
        right: 0;
    }

    .sm-name-btn {
        display: none;
    }

    .sm-title {
        margin-top: 5%;
        font-size: 28px;
    }

    .sm-specialty {
        font-size: 13px;
    }

    .sm-text {
        font-size: 16px;
        margin-top: 5%;
    }

    .sm-image-container,
    .sm-text-container {
        max-width: 70%;
        flex: 0 0 70%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sm-image {
        background-position: center center !important;
    }

    .sm-text-container {
        margin-bottom: 4%;
    }

    .sm-image-btn-overlay {
        display: none !important;
    }

    /* Página Unidades IGHS */

    .unit-banner-container,
    .unit-content-container {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .unit-banner {
        min-height: unset;
        height: 515px;
    }

    .unit-content-container {
        padding: 10% 14% 10% 10%;
    }

    .unit-content {
        font-size: 16px;
    }

    .unit-title-1 {
        font-size: 28px;
        line-height: 30px;
    }

    .unit-title-2 {
        font-size: 34px;
        line-height: 36px;
    }

    .unit-btn-text {
        font-size: 14px;
    }

    .unit-link-text {
        font-size: 12px;
    }

    .unit-link > svg {
        width: 63px;
    }

    /* Página Projetos */

    .project-container {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .project-image {
        height: 39vw;
    }

    .project-image-overlay {
        opacity: 0.8;
    }

    .project-image-container:active > .project-image-overlay {
        opacity: 1;
    }

    .pj-project-slider-item {
        height: 240px;
    }

    /* Conteúdo do Modal */

    .pj-title {
        font-size: 26px;
    }

    .pj-col-l,
    .pj-col-r {
        max-width: 92%;
        width: 100%;
        flex: 0 0 92%;
    }

    .pj-dots {
        margin: 0;
    }

    .pj-link-container {
        margin: 5% 0 0 0;
    }

    .pj-link {
        margin-left: 5%;
        margin-right: 5%;
    }

    .pj-line {
        display: none;
    }

    .pj-previous, .pj-next {
        margin-top: 144px;
    }

    /* Página Serviços */

    .service-cat-btn {
        height: 60px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-btn {
        padding: 3% 8% 3% 3%;
        font-size: 14px;
    }

    .service-text {
        font-size: 18px;
    }

    .service-btn:after {
        top: 10px;
        right: 5%;
        font-size: 28px;
        line-height: 28px;
    }

    /* Página Media */

    .media-banner-title-1 {
        top: 64%;
        font-size: 90px;
    }

    .media-banner-title-2 {
        top: 55%;
        font-size: 59px;
    }

    .media-image-1 {
        height: 360px;
    }

    .media-image-2 {
        height: 260px;
    }

    .media-image-3 {
        height: 260px;
    }

    .media-overlay-1 {
        height: 483px;
    }

    .media-overlay-2 {
        top: 70%;
        height: 95px;
    }

    .media-thumbnail {
        height: 40vw;
    }

    .media-title {
        font-size: 34px;
    }

    .media-date,
    .media-excerpt {
        font-size: 20px;
    }

    .media-more {
        font-size: 19px;
    }

    .ms-share-text {
        font-size: 14px;
    }

    .ms-title {
        font-size: 30px;
    }

    .ms-dots {
        margin: 10% 0 10% 12%;
    }

    .ms-line {
        width: 25%;
        margin-left: -16%;
    }

    .social-share-btn-container {
        margin: 3% 0 0 5%;
    }

    .social-share-btn > svg {
        width: 53px;
    }

    /* Página Carreiras */

    .job-offer-esp-title,
    .job-form-modal-title {
        font-size: 20px;
        max-width: 85%;
    }

    .job-form-input {
        height: 60px;
    }

    .job-form-submit {
        width: 40%;
    }

    .job-form-file-title {
        font-size: 24px;
        line-height: 26px;
    }

    .job-form-file-content {
        padding-top: 8%;
        padding-bottom: 8%;
    }

    .wpcf7-select {
        height: 60px;
    }

    .wpcf7-form-control-wrap.your-function::after {
        width: 35px;
        top: 40%;
    }

    .job-offer-title {
        font-size: 24px;
        line-height: 26px;
    }

    .job-offer-text {
        font-size: 12px;
    }

    .job-file-input-label {
        display: flex;
        justify-content: center;
    }

    .job-file-input-label > img {
        max-width: 40%;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .list-item-active::after {
        top: -3px;
    }

    /* Página Contactos */

    .c-address-point,
    .c-address-point-address {
        display: none;
    }

    .c-title {
        font-size: 76px;
    }

    .c-text-container > h3 {
        font-size: 16px;
    }

    .c-text-container > h2 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 768px) {

    .logo-container {
        padding: 3.6% 3.2% 3.5% 3.2%;
    }

    .logo {
        width: 62px;
    }

    /* Footer */

    footer {
        background: linear-gradient(180deg, rgba(235,231,225,1) 61%, rgba(0,212,255,0) 100%);
    }

    .footer-testimonials-image-container {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer-testimonials-line,
    .footer-testimonials-name-container,
    .footer-testimonials-text-container {
        margin-top: 7%;
        margin-bottom: 7%;

    }

    .footer-testimonials-line {
        max-width: 10%;
        flex: 0 0 10%;
        padding: 0;
    }

    .footer-testimonials-name-container {
        max-width: 30%;
        flex: 0 0 30%;
    }

    .footer-testimonials-text-container {
        max-width: 55%;
        flex: 0 0 55%;
    }

    .footer-testimonials-item-name {
        margin: 0;
    }

    .footer-testimonials-item-name > h5,
    .footer-testimonials-item-name > p {
        text-align: center;
    }

    .footer-testimonials-item-name > h5 {
        font-size: 18px
    }

    .footer-testimonials-item-name > p {
        font-size: 15px;
    }

    .footer-testimonials-text > p {
        font-size: 17px;
    }

    .footer-mark {
        font-size: 115px;
        margin: 0 3% 28% 0;
    }

    /* Página Inicial */

    .slogan-line-1-pt {
        font-size: 18px;
    }

    .slogan-line-2-pt {
        font-size: 22px;
    }

    .fp-testimonials-title {
        font-size: 16px;
    }

    .fp-testimonials-text {
        font-size: 13px;
    }

    .fp-testimonials-dots > .slick-dots > li > button {
        width: 23px;
        height: 23px;
    }

    /* Página Sobre Nós */

    .timeline-year-1 {
        font-size: 128px;
        line-height: 130px;
    }

    .timeline-image-1 {
        height: 164px;
    }

    .timeline-image-2 {
        height: 180px;
    }

    /* Página Conselho Clínico & Conselho Consultivo */

    .pb-item-container {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .pb-title {
        font-size: 18px;
    }

    .pb-text {
        font-size: 16px;
    }

    /* Conteúdo do Modal */

    .sm-image {
        height: 450px;
    }

    .sm-image-container {
        max-width: 65%;
        flex: 0 0 65%;
    }

    .sm-link-container {
        max-width: 75%;
    }

    .sm-title {
        font-size: 25px;
    }

    .sm-specialty {
        font-size: 20px;
    }

    /* Página Unidades IGHS */

    .unit-banner {
        height: 450px;
    }

    .unit-content-container {
        padding: 12% 15% 12% 12%;
    }

    .ms-video-arrow-container > .sm-link-container {
        margin: 0;
    }

    /* Página Projetos */

    .project-title {
        font-size: 14px;
    }

    /* Página serviços */

    .service-cat-btn {
        height: 55px;
        font-size: 14px;
    }

    .service-btn {
        font-size: 12px;
    }

    .service-text {
        font-size: 15px;
    }

    /* Página Media */

    .media-image-1 {
        top: 43%;
        width: 50%;
        height: 295px;
    }

    .media-image-2 {
        width: 50%;
        height: 257px;
    }

    .media-image-3 {
        width: 50%;
        z-index: 50;
    }

    .media-banner-title-1 {
        opacity: 1;
        position: relative;
        left: unset;
        top: unset;
        margin-top: 21.1%;
    }

    .media-banner-title-2 {
        display: none;
    }

    .media-overlay-1 {
        width: 100%;
        height: 430px;
    }

    .media-overlay-2 {
        display: none;
    }

    .media-title {
        font-size: 30px;
    }

    .media-date,
    .media-excerpt {
        font-size: 16px;
    }

    .media-more {
        font-size: 18px;
    }

    /* Conteúdo do Modal */

    .ms-title {
        font-size: 26px;
    }

    .ms-date {
        font-size: 15px;
    }

    .ms-content {
        font-size: 16px;
        line-height: 18px;
    }

    /* Página Carreiras */

    .job-offer-esp-title {
        font-size: 26px;
    }

    .job-form-input {
        height: 55px;
    }

    .wpcf7-select {
        height: 55px;
    }

    .wpcf7-form-control-wrap.your-function::after {
        width: 33px;
    }

    .job-info-container {
        padding: 5%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .job-form-link-container {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .job-form-btn {
        width: 50%;
        margin-bottom: 4%;
    }

    .job-form-info {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
    }

    /* Página Contactos */

    .c-title {
        font-size: 68px;
    }

    .c-text-container > h3 {
        font-size: 14px;
    }

    .c-text-container > h2 {
        font-size: 20px;
    }
}

/*//////////////////////////////////////////
////////// Estilos Smartphones /////////////
//////////////////////////////////////////*/

@media only screen and (max-width: 576px) {

    .modal {
        padding: 0 !important;
    }

    .logo {
        width: 70px;
    }

    .logo-container {
        padding: 4.6% 4.2% 4.5% 4.2%;
    }

    .loader {
        margin-top: 70%;
    }

    /* Configuração do modal */

    .modal > .modal-dialog {
        max-width: 95%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* A animação */
    .service-content-active,
    .board-open {
        -webkit-animation: boardFadeIn 1.2s ease 0s;
        animation: boardFadeIn 1.2s ease 0s;
    }

    /* Banner */

    .banner {
        height: 500px;
    }

    .banner-title {
        font-size: 26px;
        line-height: 28px;
        margin-top: 12%;
        margin-bottom: 3%;
        max-width: 85%;
    }

    .about-banner-content > h1 {
        font-size: 26px;
        line-height: 28px;
    }

    .banner-text > p, .about-banner-content > p {
        font-size: 12px;
        line-height: 18px;
    }

    /* Barra de navegação */

    .languages-container {
        margin: 15% 0 5% 8%;
    }

    .main-menu-item {
        padding-left: 10%;
        margin: 1% 0 1% 0;
    }

    .languages-list > li > a {
        font-size: 12px;
    }

    .menu-depth-1 {
        margin: 0;
        padding: 0;
    }

    .menu-item-depth-1 {
        margin-top: 3%;
        margin-bottom: 3%;
    }

    .sub-menu-link-1 {
        font-size: 12px;
        line-height: 12px;
        padding-left: 0;
    }

    .icon-bar {
        width: 42px;
        height: 4px;
    }

    .button-container {
        margin: auto 8.5% 11.5% auto;
    }

    .nav-button-toggler .top-bar {
        transform-origin: 15% 10%;
    }

    .nav-button-toggler .bottom-bar {
        transform-origin: 20% 90%;
    }

    /* Página Inicial */

    .slogan-line-1-pt,
    .slogan-line-2-pt {
        margin-left: 0;
    }

    .slogan-line-1-pt {
        font-size: 18px;
    }

    .slogan-line-2-pt {
        font-size: 24px;
    }

    .testimonials-container {
        max-width: 84%;
    }

    .fp-testimonials-title {
        font-size: 14px;
    }

    .fp-testimonials-text {
        font-size: 13px;
    }

    .fp-footer-title {
        font-size: 12px;
    }

    .fp-testimonials-line {
        width: 42px;
    }

    .fp-testimonials-slider-title-container {
        max-width: 85%;
    }

    .fp-testimonials-dots > .slick-dots > li > button {
        width: 17px;
        height: 17px;
    }

    .modal-cofinanced > .modal-dialog {
        max-width: 95%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .fp-container {
        max-width: 85%;
        margin-top: 25%;
    }

    .fp-slider-container {
        margin-bottom: 25%;
    }

    .fp-testimonials-text {
        padding-left: 20%;
    }

    .fp-testimonials-dots {
        padding-left: 20%;
    }

    .fp-footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* Footer */

    .footer-testimonials-name-container,
    .footer-testimonials-text-container {
        max-width: 90%;
        flex: 0 0 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-testimonials-name-container {
        margin-top: 9%;
        margin-bottom: -5%;
    }

    .footer-testimonials-line {
        display: none !important;
    }

    .footer-testimonials-item-name > h5 {
        font-size: 20px;
    }

    .footer-testimonials-item-name > p {
        font-size: 16px;
    }

    .footer-testimonials-text > p {
        font-size: 14px;
    }

    .footer-mark {
        font-size: 65px;
        margin: 0 2% 18% 0;
    }

    /* Página Sobre Nós */

    .timeline-year-1,
    .timeline-year-2 {
        letter-spacing: 9px;
    }

    .timeline-year-1 {
        font-size: 78px;
        line-height: 80px;
    }

    .timeline-year-2 {
        margin-top: 3%;
        font-size: 58px;
    }

    .timeline-image-1 {
        height: 92px;
    }

    .timeline-image-2 {
        height: 95px;
    }

    .timeline-text-1,
    .timeline-text-2 {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.1px;
    }

    .timeline-title {
        font-size: 44px;
        line-height: 100px;
    }

    .timeline-next > button,
    .timeline-previous > button {
        padding-top: 55%;
        padding-bottom: 55%;
        margin-top: 100%;
    }

    .timeline-layout-1-line-1 {
        width: 75px;
    }

    /* Página Comissão Executiva */

    .cp-overlay {
        padding: 0 6% 0 6%;
    }

    .cp-title {
        font-size: 15px;
    }

    .cp-specialty {
        font-size: 14px;
    }

    /* Página Conselho Clínico & Consultivo */

    .pb-cat-list {
        display: block;
    }

    .pb-cat-item {
        margin: 5% 0 5% 0;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .pb-cat-item > button {
        padding: 4% 7% 4% 7%;
        font-size: 20px;
        line-height: 20px;
    }

    .pb-item-container {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .pb-text-container {
        max-width: 98%;
    }

    .pb-title {
        font-size: 16px;
        line-height: 24px;
    }

    .pb-text {
        font-size: 14px;
        line-height: 18px;
    }

    /* Conteúdo do Modal */

    .sm-image {
        height: 300px;
    }

    .sm-link {
        height: 134px;
    }

    .sm-arrow-container {
        max-width: 18%;
    }

    .sm-link-container {
        margin-top: 0;
    }

    .sm-title {
        font-size: 18px;
        padding-top: 10%;
    }

    .sm-specialty {
        font-size: 14px;
    }

    .sm-text {
        font-size: 14px;
    }

    /* Página Unidades IGHS */

    .unit-banner {
        height: 325px;
    }

    .unit-title-1 {
        font-size: 18px;
        line-height: 20px;
    }

    .unit-title-2 {
        font-size: 26px;
        line-height: 40px;
    }

    .unit-content-container {
        padding: 8%;
    }

    .unit-content {
        font-size: 16px;
        margin-top: 8%;
    }

    .unit-btn {
        margin-left: 0;
    }

    .unit-btn-text {
        font-size: 15px;
    }

    .unit-link > svg {
        width: 35px;
    }

    .unit-line {
        display: none;
    }

    .unit-link-text {
        font-size: 12px;
    }

    /* Página Projetos */

    .project-container {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .project-image {
        height: 80vw;
    }

    .project-title {
        font-size: 18px;
    }

    .project-more {
        font-size: 14px;
    }

    /* Conteúdo do Modal */

    .modal-project > .modal-dialog > .modal-content > .modal-body > iframe {
        height: 1100px;
    }

    .pj-title {
        font-size: 18px;
        margin-top: 3%;
    }

    .pj-content {
        font-size: 14px;
        margin-top: 5%;
    }

    .pj-link > svg {
        width: 40px;
    }

    .pj-link {
        margin: 5% 0 0 0;
        width: 100%;
    }

    .pj-link-text {
        font-size: 12px;
        text-align: center;
    }

    .pj-previous,
    .pj-next {
        margin-top: 0;
    }

    .pj-previous > a > svg, .pj-next > a > svg {
        width: 100%;
    }

    .pj-previous > a > svg, .pj-next > a > svg > .cls-1 {
        stroke-width: 4px;
    }

    /* Página Serviços */

    .services-container {
        max-width: 90% !important;
    }

    .service-cat-btn {
        font-size: 15px;
        height: 55px;
    }

    .service-btn {
        padding: 4% 8% 4% 4%;
    }

    .service-text {
        font-size: 16px;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    .service-btn-container {
        padding: 0;
    }

    .service-btn:after {
        top: 10px;
        right: 3%;
        font-size: 24px;
        line-height: 24px;
    }

    /* Página Média */

    .media-content {
        margin-bottom: 15%;
    }

    .media-thumbnail {
        height: 80vw;
    }

    .media-image-1 {
        height: 210px;
    }

    .media-image-2 {
        top: 34%;
        height: 150px;
    }

    .media-image-3 {
        height: 147px;
        bottom: 6.6%;
    }

    .media-overlay-1 {
        height: 320px;
    }

    .media-banner-title-1 {
        margin-top: 26%;
        font-size: 54px;
    }

    .media-title {
        font-size: 18px;
    }

    .media-date,
    .media-excerpt {
        font-size: 16px;
    }

    .media-more {
        font-size: 17px;
    }

    /* Conteúdo do Modal */

    .ms-title {
        font-size: 24px;
        margin-top: 14%;
    }

    .ms-date {
        font-size: 16px;
    }

    .ms-content {
        font-size: 14px;
        margin-top: 5%;
    }

    .ms-share-text {
        font-size: 14px;
        margin-top: 5%;
    }

    .ms-line {
        display: none;
    }

    .ms-article-link {
        height: 121px;
    }

    .ms-share-text {
        font-size: 14px;
    }

    .social-share-btn-container {
        margin: 10% 0 0 -5%;
    }

    .social-share-btn {
        margin-right: 15%;
    }

    .social-share-btn > svg {
        width: 34px;
    }

    /* Vídeo */

    .ms-video-container > figure > div > iframe {
        height: 241px;
    }

    .ms-video-arrow-container > .sm-link-container > .sm-link,
    .ms-video-arrow-container > .sm-link-container > .sm-image-btn-container > .sm-image-btn {
        height: 105px;
    }

    .ms-col-l,
    .ms-col-r {
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Artigo */

    .ms-dots {
        position: absolute;
        top: 0;
        margin: 0;
    }

    .ms-pos {
        position: relative;
    }

    /* Página Carreiras */

    .jobs-container {
        max-width: 80% !important;
    }

    .job-offer-esp-title {
        max-width: 100%;
        font-size: 24px;
    }

    .job-form-submit {
        width: 100%;
    }

    .jobs-banner-sub {
        font-size: 22px;
        margin-top: 4%;
        margin-bottom: 3%;
    }

    .job-offer-esp-title {
        font-size: 14px;
    }

    .wpcf7-select {
        height: 60px;
    }

    .job-offer-title {
        font-size: 20px;
        line-height: 22px;
    }

    .wpcf7-acceptance > .wpcf7-list-item {
        margin: 0;
    }

    .wpcf7-acceptance > .wpcf7-list-item > label {
        max-width: 100%;
    }

    .job-form-file-title {
        font-size: 16px;
        line-height: 20px;
    }

    .job-file-input-label > img {
        max-width: 65%;
    }

    .job-acceptance-container {
        padding: 0;
    }
    
    .job-acceptance-btn {
        position: relative;
        left: unset;
        margin-bottom: 2%;
    }

    /* Página Contactos */

    .c-content-margin {
        margin-top: 180px;
    }

    .c-title {
        font-size: 32px;
        margin-bottom: 12%;
    }

    .c-text-container > h2 {
        font-size: 16px;
        margin-bottom: 10%;
    }

    .c-text-container > h3 {
        font-size: 12px;
    }

    .c-address-text-container {
        margin-top: 10%;
        max-width: 95%;
    }

    .c-address-text {
        text-align: center;
    }

    .c-address-text > h2 {
        font-size: 16px;
    }

    .c-address-text > p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 375px) {

    .logo {
        width: 65px;
    }

    .banner-title {
        font-size: 24px;
        line-height: 24px;
    }

    .banner-text {
        font-size: 13px;
        line-height: 22px;
    }

    .about-banner-content > h1 {
        font-size: 11px;
        line-height: 17px;
        margin-top: 12%;
    }

    .about-banner-content > p {
        font-size: 11px;
        line-height: 17px;
    }

    /* Barra de Navegação */

    .main-menu-link {
        font-size: 16px;
    }

    .sub-menu-link-1 {
        font-size: 12px;
    }

    .menu-item-depth-1 {
        margin-top: 4%;
        margin-bottom: 4%;
    }

    .languages-container {
        margin: 15% 0 5% 8%;
    }

    .languages-list > li {
        margin: 0 3% 0 0;
        width: 40px;
    }

    /* Página Inicial */

    .slogan-line-1-pt {
        font-size: 16px;
    }

    .slogan-line-2-pt {
        font-size: 22px;
    }


    /* Página Sobre Nós */
    /* Timeline */

    .timeline-year-1 {
        font-size: 68px;
        line-height: 70px;
    }

    .timeline-year-2 {
        font-size: 52px;
    }

    .timeline-text-1,
    .timeline-text-2 {
        font-size: 12px;
        line-height: 15px;
    }

    .timeline-layout-1-line-1 {
        width: 60px;
    }

    .timeline-image-1 {
        height: 80px;
    }

    .timeline-image-2 {
        height: 80px;
    }

    .timeline-title {
        font-size: 38px;
    }

    /* Página Comissão */

    .cp-title {
        font-size: 14px;
    }

    .cp-specialty {
        font-size: 12px;
    }

    /* Página Conselho */

    .pb-title {
        font-size: 14px;
        line-height: 22px;
    }

    .pb-text {
        font-size: 12px;
        line-height: 16px;
    }

    /* Conteúdo do Modal */

    .sm-image {
        height: 254px;
    }

    .sm-title {
        font-size: 16px;
    }

    /* Página Unidades IGHS */

    .unit-banner {
        height: 230px;
    }

    .unit-title-1 {
        font-size: 16px;
    }

    .unit-title-2 {
        font-size: 24px;
        line-height: 38px;
    }

    .unit-btn-text {
        font-size: 14px;
    }

    .unit-link > svg {
        width: 30px;
    }

    .unit-link {
        flex-direction: column !important;
        margin: 0 auto 0 auto;
    }

    .unit-link-text {
        margin: 10% 0 0 0;
        font-size: 11px;
    }

    /* Página Projetos */

    .project-title {
        font-size: 16px;
    }

    .project-more {
        font-size: 12px;
    }

    /* Conteúdo do Modal */

    .modal-project > .modal-dialog > .modal-content > .modal-body > iframe {
        height: 970px;
    }

    .pj-title {
        font-size: 16px;
    }

    .pj-content {
        font-size: 13px;
    }

    .pj-link-text {
        font-size: 11px;
    }

    .pj-link > svg {
        width: 30px;
    }

    /* Página Serviços */

    .service-cat-btn {
        font-size: 12px;
    }

    .service-btn {
        padding-right: 12%;
    }

    .service-text {
        font-size: 14px;
    }

    .service-btn::after {
        top: 18px;
        font-size: 20px;
        line-height: 20px;
        right: 5%;
    }

    /* Página Média */

    .media-banner-title-1 {
        margin-top: 31%;
        font-size: 48px;
    }

    .media-title {
        font-size: 16px;
    }

    .media-date,
    .media-excerpt {
        font-size: 14px;
    }

    .media-more {
        font-size: 15px;
    }

    /* Conteúdo do Modal */

    .ms-title {
        font-size: 20px;
        margin-top: 19%;
    }

    .ms-date {
        font-size: 14px;
    }

    .ms-content {
        font-size: 14px;
        line-height: 16px;
    }

    .ms-share-text {
        font-size: 13px;
    }

    .social-share-btn > svg {
        width: 30px;
    }

    /* Página Carreiras */

    .jobs-banner-sub {
        font-size: 18px;
    }

    .job-offer-esp-title {
        font-size: 12px;
    }

    .job-form-input::placeholder {
        font-size: 12px;
    }

    .job-form-input::-moz-placeholder {
        font-size: 12px;
    }

    .job-form-input::-ms-input-placeholder {
        font-size: 12px;
    }

    .job-form-input::-webkit-input-placeholder {
        font-size: 12px;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .wpcf7-list-item-label::before {
        top: -5px;
        left: 8px;
        height: 24px;
        width: 24px;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .list-item-active::after {
        top: 1px;
        left: 14.3px;
        height: 11px;
        width: 11px;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .wpcf7-list-item-label {
        padding-left: 40px;
    }

    .job-internship-container {
        flex-direction: column !important;
    }

    .job-internship-text {
        max-width: 100%;
        margin-bottom: 10%;
    }

    .your-internship > .wpcf7-radio > .wpcf7-list-item > .wpcf7-list-item-label {
        padding-left: 38px;
    }

    span.wpcf7-list-item {
        margin: 0 5% 0 5%;
    }

    span.wpcf7-radio {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .job-form-file-title {
        font-size: 14px;
        line-height: 18px;
    }

    .job-form-input, .job-internship-container, .job-sel-title, .wpcf7-select, .job-form-submit, .job-form-file-text {
        font-size: 10px;
    }

    .job-form-file-instructions {
        font-size: 10px;
    }

    /* Página Contactos */

    .c-content-margin {
        margin-top: 200px;
    }

    .c-title {
        font-size: 28px;
    }

    .c-text-container > h2 {
        font-size: 14px;
    }

    .c-address-text > p {
        font-size: 12px;
    }
}

@media only screen and (max-width: 325px) {

    .logo {
        width: 59px;
    }

    /* Banner */

    .banner {
        height: 450px;
    }

    .banner-title {
        font-size: 22px;
        line-height: 46px;
        margin-top: 30%;
    }

    .about-banner-content > h1 {
        font-size: 26px;
        line-height: 26px;
    }

    .banner-text > p {
        font-size: 10px;
        line-height: 14px;
    }

    .about-banner-content {
        margin: 25% 10% 25% 10%;
    }

    .about-banner-content > p {
        font-size: 11px;
        line-height: 15px;
    }

    /* Barra de Navegação */

    .main-menu-link {
        font-size: 18px;
    }

    .sub-menu-link-1 {
        white-space: normal;
    }

    /* Footer */

    .footer-testimonials-item-name > h5 {
        font-size: 16px;
    }

    .footer-testimonials-item-name > p {
        font-size: 12px;
    }

    .footer-mark {
        font-size: 54px;
        margin: 0 2% 31% 0;
    }

    .footer-testimonials-text > p {
        font-size: 14px;
    }

    /* Página Inicial */

    .slogan-line-1-pt {
        font-size: 14px;
    }

    .slogan-line-2-pt {
        font-size: 20px;
    }

    .fp-testimonials-title {
        font-size: 15px;
    }

    .fp-testimonials-line {
        margin-top: 32%;
    }

    .fp-testimonials-text {
        font-size: 13px;
        padding-left: 24%;
    }

    .fp-testimonials-dots {
        padding-left: 24%;
    }

    .fp-testimonials-dots > .slick-dots > li > button {
        width: 17px;
        height: 17px;
    }

    /* Página Sobre Nós */

    .timeline-year-1 {
        font-size: 54px;
        line-height: 56px;
    }

    .timeline-year-2 {
        font-size: 42px;
        margin-top: 10px;
    }

    .timeline-text-1,
    .timeline-text-2 {
        font-size: 10px;
        line-height: 13px;
    }

    .timeline-text-1 {
        width: 81%;
    }

    .timeline-layout-1-line-1 {
        width: 60px;
    }

    .timeline-image-1 {
        height: 80px;
    }

    .timeline-image-2 {
        height: 75px;
    }

    .timeline-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .timeline-next > button > svg, .timeline-previous > button > svg {
        width: 20px;
    }

    /* Página Comissão */

    .cp-title {
        font-size: 12px;
    }

    .cp-specialty {
        font-size: 10px;
    }

    /* Conteúdo do Modal */

    .sm-image {
        height: 200px;
    }

    .sm-title {
        font-size: 16px;
    }

    .sm-specialty {
        font-size: 14px;
    }

    .sm-link {
        height: 100px;
    }

    .sm-image-btn {
        height: 100px;
    }

    .sm-text {
        font-size: 12px;
    }

    /* Página Unidades IGHS */

    .unit-banner {
        height: 210px;
    }

    .unit-title-1 {
        font-size: 20px;
        line-height: 22px;
    }

    .unit-title-2 {
        font-size: 26px;
        line-height: 28px;
    }

    .unit-content {
        font-size: 14px;
        margin-top: 10%;
    }

    .unit-btn-text {
        font-size: 14px;
    }

    .unit-link > svg {
        width: 27px;
    }

    .unit-link-text {
        font-size: 11px;
    }

    /* Página Projetos */

    .project-title {
        font-size: 14px;
    }

    .project-more {
        font-size: 12px;
    }

    /* Conteúdo do Modal */

    .pj-project-slider-item {
        height: 200px;
    }

    .pj-title {
        font-size: 16px;
    }

    .pj-content {
        margin-top: 5%;
        font-size: 12px;
    }

    .pj-link {
        width: 100%;
    }

    .pj-link > svg {
        width: 34px;
    }

    .pj-link-text {
        font-size: 10px;
    }

    /* Página Serviços */

    .service-cat-btn {
        font-size: 11px;
    }

    .service-btn {
        font-size: 10px;
    }

    .service-text {
        font-size: 14px;
    }

    .service-btn:after {
        top: 17px;
        font-size: 20px;
        line-height: 20px;
    }

    /* Página Media */

    .media-title {
        font-size: 24px;
    }

    .media-date,
    .media-excerpt {
        font-size: 14px;
    }

    .media-more {
        font-size: 14px;
    }

    .media-banner-title-1 {
        margin-top: 27%;
        font-size: 44px;
    }

    .media-image-1 {
        top: 50%;
        height: 140px;
    }

    .media-image-2 {
        width: 60%;
        top: 32%;
        height: 137px;
        right: 20%;
    }

    .media-image-3 {
        height: 120px;
        bottom: 11%;
    }

    .media-overlay-1 {
        height: 281px;
    }

    .ms-video-arrow-container > .sm-link-container > .sm-link, .ms-video-arrow-container > .sm-link-container > .sm-image-btn-container > .sm-image-btn {
        height: 65px;
    }

    .social-share-btn {
        margin-right: 10%;
    }

    .ms-video-container > figure > div > iframe {
        max-width: 100%;
        width: 100%;
        height: 64.2vw;
    }

    /* Página Carreiras */

    .jobs-banner-sub {
        font-size: 16px;
        margin-bottom: 4%;
    }

    .job-offer-esp-title {
        font-size: 16px;
    }

    .job-form-file-title {
        font-size: 16px;
        line-height: 18px;
    }

    .job-acceptance-btn {
        left: 0;
    }

    span.wpcf7-list-item {
        margin: 0 15px 0 15px;
    }

    .job-acceptance-text-1, .job-acceptance-text-2 {
        font-size: 9px;
    }

    .job-offer-title {
        font-size: 16px;
        line-height: 18px;
    }

    .job-offer-function {
        font-size: 12px;
    }

    .job-offer-text {
        font-size: 10px;
    }

    .job-form-info {
        font-size: 10px;
    }

    .job-offer-esp-title, .job-form-modal-title {
        font-size: 14px;
        max-width: 100%;
    }

    .job-form-input,
    .job-internship-container,
    .job-sel-title,
    .wpcf7-select,
    .job-form-submit,
    .job-form-file-text {
        font-size: 10px;
    }

    .job-form-input {
        height: 20px;
    }

    /* Página Contactos */

    .c-title {
        font-size: 26px;
    }

    .c-text-container > h3 {
        font-size: 10px;
        line-height: 10px;
    }

    .c-text-container > h2 {
        font-size: 12px;
        line-height: 12px;
    }

    .c-address-text > h2 {
        font-size: 14px;
    }
}

/*
Regra para dispositivos com uma altura (height grande)
i.e iPad Pro / Surface
*/

@media only screen and (min-width: 1024px) and (min-height: 1336px) {

    /* Barra de Navegação*/

    .menu-item-has-children::after {
        width: 0;
        height: 0;
    }

    /* Configuração do Modal */

    .loader {
        margin-top: 50%;
    }

    /* Página Principal */

    .fp-row {
        flex-direction: column-reverse;
    }

    .fp-row > .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .fp-row > .col-lg-6 > .slogan-container {
        margin-top: 15%;
        margin-bottom: 10%;
    }

    .fp-container {
        margin: 15%;
    }

    /* Página Unidades IGHS */

    .unit-post-item {
        flex-direction: column;
    }

    .unit-post-item > .unit-banner-container {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .unit-post-item > .unit-content-container {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .unit-post-item > .unit-content-container > .unit-btn {
        margin-left: -35px;
    }

    .unit-post-item > .unit-content-container > .unit-btn > .unit-line {
        width: 25px;
    }

    .unit-link > svg {
        width: 60px;
    }
}