body {
    margin: 0px;
    padding: 0px;
    font-family: 'Muli', sans-serif;
    -webkit-font-smoothing: antialiased !important;
}

a:hover,
a:focus {
    text-decoration: none;
}

.clean {
    clear: both;
}

.has-error {
    border-color: #FF0000!important;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0;
}

.error-msg {
    position: absolute;
    left: 0px;
    bottom: -18px;
}

#Cmensagem {
    bottom: -14px;
}

.div-input {
    position: relative;
}

.button {
    font-family: 'Questrial', sans-serif;
    display: inline-block;
    padding: 6px 18px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 30px;
}

.button-blue {
    color: #FFFFFF;
    background-color: #0F4C81;
    border-color: #0c4577;
}

.button-blue:hover {
    color: #FFFFFF;
    background-color: #0A4477;
    border-color: #094070;
}

.button-blue.focus,
.button-blue:focus {
    color: #FFFFFF;
    background-color: #083E6D;
    border-color: #063761;
}

.button-white {
    color: #0F4C81;
    background-color: #FFFFFF;
    border-color: #EEEEEE;
}

.button-white:hover {
    color: #0F4C81;
    background-color: #D4D4D4;
    border-color: #C7C7C7;
}

.button-white.focus,
.button-white:focus {
    color: #0F4C81;
    background-color: #B9B9B9;
    border-color: #A5A5A5;
}


/* header */

.top-header {
    background-color: #395D7B;
    height: 40px;
    position: relative;
    z-index: 1;
}

.top-header-content {
    width: 100%;
    line-height: 40px;
    height: 40px;
}

.top-header-contact {
    width: 50%;
    float: left;
    text-align: left;
    color: #FFFFFF;
}

.top-header-contact img {
    height: 18px;
    margin-right: 12px;
}

.top-header-contact a {
    color: #FFFFFF;
}

.top-header-social {
    width: 50%;
    float: right;
    text-align: right;
}

.top-header-social a {
    color: #FFFFFF;
    margin-left: 8px;
    position: relative;
    top: -1.5px;
}

.top-header-social a img {
    height: 20px;
}

.header {
    line-height: 80px;
    height: 80px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(189, 189, 189, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(189, 189, 189, 1);
    box-shadow: 0px 0px 5px 0px rgba(189, 189, 189, 1);
}

.header .logo {
    float: left;
}

.header .logo img {
    height: 45px;
}

.header .button-mobile {
    height: 80px;
    overflow: hidden;
}

.header .menu {
    float: right;
}

.header .menu ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.header .menu ul li {
    display: inline;
}

.header .menu ul li.contact a {
    background-color: #395D7B;
    border-radius: 30px;
    padding: 6px 14px;
    color: #FFFFFF;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header .menu ul li.contact a::before {
    display: none;
}

.header .menu ul li.contact a:hover,
.header .menu ul li.contact a:focus {
    background-color: #0F4C81;
    color: #FFFFFF;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header .menu ul li a {
    position: relative;
    text-transform: uppercase;
    color: #333333;
    margin-left: 20px;
    padding: 1px 0px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header .menu ul li a::before {
    content: '';
    width: 6px;
    height: 100%;
    position: absolute;
    left: -10px;
    top: 0px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header .menu ul li.active a::before {
    background-color: #395D7B;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header .menu ul li a:hover::before {
    background-color: #395D7B;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header .menu ul li a:hover {
    text-decoration: none;
    color: #395D7B;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


/* !header */


/* copyright */

.copyright {
    background-color: #395D7B;
    padding: 15px 0px;
    color: #FFFFFF;
}

.copyright .copy {
    text-align: left;
    padding-left: 0px;
}

.copyright .copy p {
    margin-bottom: 0px;
}

.copyright .dev {
    text-align: right;
    padding-right: 0px;
}

.copyright .dev p {
    float: right;
    padding-right: 10px;
    margin-bottom: 0px;
}

.copyright .dev figure {
    float: right;
    width: 35px;
    padding-top: 0px;
}

.copyright .dev figure img {
    width: 100%;
}


/* !copyright */


/* footer */

.footer {
    padding: 60px 0px;
}

.footer .col-md-3 {
    padding-left: 0px;
}

.footer-title {
    position: relative;
    margin-bottom: 10px;
    color: #395D7B;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 6px;
}

.footer-title::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #395D7B;
    bottom: 0px;
}

.footer-menu ul {
    padding-left: 0px;
}

.footer-menu ul li {
    list-style: none;
}

.footer-menu ul li a {
    color: #333333;
    font-size: 16px;
    margin-bottom: 8px;
    display: inline-block;
}

.footer-menu ul li a:hover {
    text-decoration: none;
}

.footer-social {
    margin-bottom: 15px;
}

.footer-social a {
    margin-right: 10px;
}

.footer-social a img {
    height: 20px;
}

.footer-text {
    margin-top: 5px;
    font-size: 16px;
}

.footer-text a {
    color: #333333;
}


/* !footer */


/* banner home */

.banner-home {
    height: 550px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* !banner home */


/* banner intern */

.banner-intern {
    background-position: right;
    background-size: auto 130%;
    background-repeat: no-repeat;
    background-color: #01172E;
    height: 280px;
}

.banner-intern-content {
    padding-top: 60px;
}

.banner-intern-content-title {
    font-family: 'Questrial', sans-serif;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.banner-intern-content-title a {
    color: #A0A0A0;
}

.banner-intern-content-title a:hover {
    color: #868686;
}

.banner-intern-content-text {
    color: #FFFFFF;
    max-width: 400px;
    line-height: 25px;
}


/* !banner intern */


/* content actions */

.content-actions {}

.content-actions-items {
    margin-top: -80px;
    -webkit-box-shadow: 0px 30px 33px 0px rgb(204, 204, 204);
    -moz-box-shadow: 0px 30px 33px 0px rgb(204, 204, 204);
    box-shadow: 0px 30px 33px 0px rgb(204, 204, 204);
}

.content-actions-item {
    padding: 42px 38px;
    height: 270px;
}

.content-actions-item:nth-child(odd) {
    background-color: #FFFFFF
}

.content-actions-item:nth-child(even) {
    background-color: #F7F6F6
}

.content-actions-item-image {
    margin-bottom: 10px;
}

.content-actions-item-image img {
    height: 30px;
}

.content-actions-item-title {
    font-family: 'Questrial', sans-serif;
    font-size: 20px;
    color: #395D7B;
    margin-bottom: 10px;
}

.content-actions-item-title a {
    color: #395D7B;
}

.content-actions-item-text {
    color: #7A7A7A;
    font-size: 14px;
    line-height: 25px;
}

.content-actions-item-button {}

.content-actions-item-button a {
    color: #395D7B;
}

.accordion {
    color: #444;
    cursor: pointer;
    padding: 30px 20px;
    height: 84px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.accordion.white {
    background-color: #FFFFFF;
}

.accordion.gray {
    background-color: #F7F6F6;
}

.accordion:after {
    content: "\f107";
    font-family: FontAwesome;
    font-weight: bold;
    float: right;
    font-size: 24px;
    margin-left: 5px;
    margin-top: -5px;
    color: #395D7B;
}

.accordion-head {
    display: -webkit-inline-box;
    line-height: 26px;
    color: #395D7B;
}

.accordion-head-img {
    width: 55px;
    text-align: center;
    position: relative;
    top: -3px;
}

.accordion.active:after {
    content: "\f106";
}

.panel {
    margin-bottom: 0px;
    border: none;
    padding: 0 29px;
    background-color: white;
    height: 0;
    overflow: hidden;
    transition: height 0.2s ease-out;
}

.panel.white {
    background-color: #FFFFFF;
}

.panel.gray {
    background-color: #F7F6F6;
}

.panel p {
    margin-top: 10px;
    margin-bottom: 18px;
}

.panel a {
    display: inline-block;
    margin-bottom: 20px;
    color: #395D7B;
}


/* !content actions */


/* content about */

.content-about {
    padding: 80px 0px 40px 0px;
}

.content-about-info {
    padding-left: 0px;
}

.content-about-image {
    padding-right: 0px;
}

.content-about-image-img {
    width: 100%;
    height: 400px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-about-image-img .image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}

.content-about-image-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #EBEBEB;
    right: -30px;
    top: -30px;
    z-index: 1;
}

.content-about-image-img::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #606060;
    right: -15px;
    top: -15px;
    z-index: 2;
}

.content-about-image-img img {
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    -moz-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
}

.content-about-info-title {
    font-family: 'Questrial', sans-serif;
    color: #395D7B;
    font-size: 36px;
    margin-bottom: 10px;
}

.content-about-info-text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}


/* !content about */


/* content team */

.content-team {
    padding: 40px 0px;
    background-color: #F7F6F6;
}

.content-team-info {
    padding-left: 0px;
    padding-right: 15px;
}

.content-team-info-title {
    font-family: 'Questrial', sans-serif;
    color: #395D7B;
    font-size: 36px;
}

.content-team-info-text {
    line-height: 25px;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content-team-item {
    text-align: center;
}

.content-team-item-image {}

.content-team-item-image img {
    height: 100px;
    border-radius: 50%;
}

.content-team-item-title {
    font-family: 'Questrial', sans-serif;
    font-size: 24px;
    margin-top: 6px;
}

.content-team-item-title a {
    color: #333333
}

.content-team-item-text {
    margin-top: 5px;
    line-height: 25px;
}

.content-team-item-split {
    background-image: url(/assets/images/logo-brand.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.content-team-item-split::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 2px;
    background-color: #395D7B;
    left: 45px;
    top: calc(50% - 1px);
}

.content-team-item-split::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 2px;
    background-color: #395D7B;
    right: 45px;
    top: calc(50% - 1px);
}


/* !content team */


/* content-faqs */

.content-faqs {
    padding: 60px 0px;
}

.content-faqs-title {
    text-align: center;
    font-size: 36px;
    color: #395D7B;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 20px;
}

.content-faqs .col-md-4:nth-child(3n+1) {
    padding-left: 0px;
    padding-right: 15px;
}

.content-faqs .col-md-4:nth-child(3n+2) {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.content-faqs .col-md-4:nth-child(3n+3) {
    padding-left: 15px;
    padding-right: 0px;
}

.content-faqs.intern .content-faqs-item {
    margin-bottom: 30px;
}

.content-faqs-item {
    padding: 30px;
    min-height: 335px;
    -webkit-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    -moz-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
}

.content-faqs-item-title {
    font-size: 18px;
    border-left: 8px solid #395D7B;
    font-family: 'Questrial', sans-serif;
    padding-left: 8px;
    margin-bottom: 20px;
}

.content-faqs-item-title a {
    color: #333333;
}

.content-faqs-item-text {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 30px;
}

.content-faqs-item-button {}

.content-faqs-item-button a {
    color: #395D7B;
}


/* content-faqs */


/* content-footer */

.content-footer {
    background-color: #395D7B;
    background-image: url(/assets/images/bg-footer-content.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding: 60px 0px;
}

.content-footer-title {
    font-size: 36px;
    color: #FFFFFF;
    font-family: 'Questrial', sans-serif;
}

.content-footer-text {
    color: #FFFFFF;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.content-footer-button {}


/* !content-footer */


/* content office */

.content-office {
    padding: 80px 0px 40px 0px;
}

.content-office-info {
    padding-left: 0px;
}

.content-office#section-1 .content-office-image {
    padding-left: 0px;
}

.content-office#section-2 .content-office-image {
    padding-left: 0px;
}

.content-office#section-2 {
    padding-bottom: 80px;
}

.content-office#section-2 .content-office-image .content-office-image-img {
    height: 326px;
}

.content-office#section-2 .content-office-image .content-office-image-img img {
    width: 100%;
}

.content-office#section-1 .content-office-image-img {
    width: 100%;
    height: 700px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-office#section-2 .content-office-image-img {
    width: 100%;
    height: 400px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-office-image-img .image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}

.content-office-image-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #EBEBEB;
    right: -30px;
    top: -30px;
    z-index: 1;
}

.content-office-image-img::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #606060;
    right: -15px;
    top: -15px;
    z-index: 2;
}

.content-office-image-img img {
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    -moz-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
}

.content-office-info-title {
    color: #395D7B;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Questrial', sans-serif;
}

.content-office-info-text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}


/* !content-office */


/* contact-infos */

.contact-infos {
    padding: 40px 0px;
    background-color: #EBEBEB;
}

.contact-infos-item {
    margin-bottom: 35px
}

.contact-infos-item:last-child {
    margin-bottom: 0px;
}

.contact-infos-item-title {
    font-weight: 600;
    font-size: 16px;
}

.contact-infos-item-text {}

.contact-infos-item a {
    margin-right: 10px;
}

.contact-infos-item a img {
    height: 20px;
}

.content-contact {
    padding: 80px 0px 0px 0px;
}

.content-contact-form {
    padding-right: 0px;
    height: 451px;
}

.content-contact-form-head {
    background-color: #0F4C81;
    padding: 35px;
    border-radius: 10px 10px 0px 0px;
}

.content-contact-form-head-title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

.content-contact-map {
    padding-left: 0px;
}

.content-contact-map iframe {
    width: 80%;
    height: 280px;
}

.content-contact-form form {
    background-color: #FFFFFF;
    padding: 50px 40px;
    -webkit-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    -moz-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    border-radius: 0px 0px 10px 10px;
}

.content-contact-form .div-input {
    margin-bottom: 20px;
    position: relative;
}

.content-contact-form .div-input input {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #395D7B;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 8px 0px;
    border-radius: 0px;
}

.content-contact-form .div-input select {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #395D7B;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 8px 0px;
    background-color: #FFFFFF;
    border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(/assets/images/set-select.png) no-repeat;
    background-position: center right 10px;
    background-size: 26px;
    background-color: #FFFFFF;
}

.content-contact-form .div-input textarea {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #395D7B;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 8px 0px;
    border-radius: 0px;
    resize: none;
}

.content-contact-form button {
    width: 100%;
    margin-top: 20px;
}


/* !contact-infos */


/* section-team */

.section-team {
    padding: 80px 0px 85px 0px;
}

.section-team:nth-child(odd) {
    background-color: #FFFFFF;
}

.section-team:nth-child(even) {
    background-color: #EBEBEB;
}

.section-team-item-image {
    width: 185px;
    margin: 0 auto;
}

.section-team-item-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.section-team-item-button {
    margin-top: 30px;
}

.section-team-item-button a {
    width: 100%;
}

.section-team-item-title {
    font-size: 24px;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 10px;
}

.section-team-item-title a {
    color: #333333;
}

.section-team-item-description {
    font-size: 16px;
    line-height: 30px;
}

.section-team-item-description p {
    margin-bottom: 0px;
}


/* !section-team */


/* section team intern */

.section-team-intern {
    padding: 80px 0px;
}

.section-team-intern-info {
    padding-left: 0px;
}

.section-team-intern .section-team-intern-image {
    padding-left: 0px;
}

.section-team-intern#section-2 .section-team-intern-image .section-team-intern-image-img {
    height: 326px;
}

.section-team-intern#section-2 .section-team-intern-image .section-team-intern-image-img img {
    width: 100%;
}

.section-team-intern .section-team-intern-image-img {
    width: 100%;
    height: 700px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-team-intern-image-img .image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}

.section-team-intern-image-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #EBEBEB;
    right: -30px;
    top: -30px;
    z-index: 1;
}

.section-team-intern-image-img::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #606060;
    right: -15px;
    top: -15px;
    z-index: 2;
}

.section-team-intern-image-img img {
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    -moz-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
}

.section-team-intern-info-title {
    color: #395D7B;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Questrial', sans-serif;
}

.section-team-intern-info-text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}

.section-team-intern-info-button {
    margin-top: 40px;
}


/* !content-office */


/* section area */

.section-area {
    padding: 80px 0px 30px 0px;
}

.section-area .col-md-6:nth-child(odd) {
    padding-left: 0px;
    padding-right: 30px;
}

.section-area .col-md-6:nth-child(even) {
    padding-left: 30px;
    padding-right: 0px;
}

.section-area-item {
    height: 310px;
    margin-bottom: 60px;
    padding: 50px 40px;
    -webkit-box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
    -moz-box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
    box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
}

.section-area-item-header {
    display: flex;
}

.section-area-item-header-title {
    font-family: 'Questrial', sans-serif;
    font-size: 24px;
    color: #395D7B;
    margin-bottom: 10px;
    margin-left: 14px;
}

.section-area-item-header-title a {
    color: #395D7B;
}

.section-area-item-header-icon {}

.section-area-item-header-icon img {
    height: 30px;
}

.section-area-item-description {
    font-size: 16px;
}

.section-area-item-button {
    margin-top: 20px;
}


/* !section area */


/* section utilities */

.section-utilities {
    padding: 80px 0px 30px 0px;
}

.section-utilities .col-lg-4:nth-child(3n+1) {
    padding-left: 0px;
    padding-right: 15px;
}

.section-utilities .col-lg-4:nth-child(3n+2) {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.section-utilities .col-lg-4:nth-child(3n+3) {
    padding-left: 15px;
    padding-right: 0px;
}

.section-utilities-item {
    height: 270px;
    margin-bottom: 20px;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
    -moz-box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
    box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
}

.section-utilities-item-header {
    display: flex;
}

.section-utilities-item-title {
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-utilities-item-title a {
    color: #333333;
}

.section-utilities-item-description {
    font-size: 16px;
    margin-bottom: 25px;
}

.section-utilities-item-button {
    margin-top: 20px;
}


/* !section utilities */


/* section utilities intern */

.section-utilities-intern {
    padding: 80px 0px;
}

.section-utilities-intern-info {
    padding: 30px 45px;
    -webkit-box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
    -moz-box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
    box-shadow: 0px 0px 33px 0px rgba(235, 235, 235, 1);
}

.section-utilities-intern .section-utilities-intern-image {
    padding-left: 0px;
}

.section-utilities-intern#section-2 .section-utilities-intern-image .section-utilities-intern-image-img {
    height: 326px;
}

.section-utilities-intern#section-2 .section-utilities-intern-image .section-utilities-intern-image-img img {
    width: 100%;
}

.section-utilities-intern .section-utilities-intern-image-img {
    width: 100%;
    height: 310px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-utilities-intern-image-img .image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}

.section-utilities-intern-image-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #EBEBEB;
    right: -30px;
    top: -30px;
    z-index: 1;
}

.section-utilities-intern-image-img::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #606060;
    right: -15px;
    top: -15px;
    z-index: 2;
}

.section-utilities-intern-image-img img {
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    -moz-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
}

.section-utilities-intern-info-text-title {
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-utilities-intern-info-text a {
    color: #333333;
    text-decoration: underline;
}

.section-utilities-intern-info-text a:hover,
.section-utilities-intern-info-text a:focus {
    text-decoration: none;
}

.section-utilities-intern-info-text {
    font-size: 16px;
    line-height: 30px;
}

.section-utilities-intern-info-text p:last-child {
    margin-bottom: 10px;
}

.section-utilities-intern-info-button {
    margin-top: 40px;
}


/* !section utilities intern */


/* section area intern */

.section-area-intern {
    padding: 80px 0px;
}

.section-area-intern-info {
    padding-left: 0px;
}

.section-area-intern .section-area-intern-image {
    padding-left: 0px;
}

.section-area-intern#section-2 .section-area-intern-image .section-area-intern-image-img {
    height: 326px;
}

.section-area-intern#section-2 .section-area-intern-image .section-area-intern-image-img img {
    width: 100%;
}

.section-area-intern .section-area-intern-image-img {
    width: 100%;
    height: 400px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-area-intern-image-img .image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}

.section-area-intern-image-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #EBEBEB;
    right: -30px;
    top: -30px;
    z-index: 1;
}

.section-area-intern-image-img::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #606060;
    right: -15px;
    top: -15px;
    z-index: 2;
}

.section-area-intern-image-img img {
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    -moz-box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
    box-shadow: 0px 0px 10px -5px rgb(130, 130, 130);
}

.section-area-intern-info-title {
    color: #395D7B;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Questrial', sans-serif;
}

.section-area-intern-info-text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}

.section-area-intern-info-button {
    margin-top: 40px;
}


/* !ection area intern */


/* content faq intern */

.content-faq-intern {
    padding: 80px 0px 70px 0px;
}

.content-faq-intern-title {
    font-size: 28px;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 20px;
}

.content-faq-intern-description {
    font-size: 16px;
    line-height: 25px;
}


/* !content faq intern */


/* content error */

.content-error {
    padding: 100px 0px 100px 0px;
    text-align: center;
}

.content-error-title {
    font-size: 36px;
    color: #395D7B;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 5px;
}

.content-error-text {
    font-size: 16px;
    margin-bottom: 25px;
}


/* !content error */


/* content contact success */

.content-contact-success {
    padding: 170px 0px;
    text-align: center;
    background-color: #01172E;
}

.content-contact-success-title {
    font-size: 36px;
    color: #FFFFFF;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 5px;
}

.content-contact-success-text {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 25px;
}


/* !content success */

;