@charset "utf-8";
/*
	Author: Filip Todorov - www.filiptodorov.com
	Project: Universal Approvals
	All rights reserved
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap');

body, html {
    font-family: 'Roboto', sans-serif;
    position: relative;
}
body {
    padding-top: 9.7rem;
}

/* BUTTONS */
.btn.btn-primary {
    background: #005596;
    border-color: #005596;
    border-radius: 0.25rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}
.btn.btn-light {
    background: #fff;
    border-color: #fff;
    border-radius: 0.25rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}
.btn.btn-outline-light {
    border-color: #fff;
    border-radius: 0.25rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* HEADER */
header.page-header {
    position: fixed;
    z-index: 99;
    background: #fff;
    box-shadow: rgba(10,10,10,0.15) 0 0.25rem 0.25rem;
    width: 100%;
    top: 0;
    left: 0;
}
header.page-header .branding {
    padding: 1.25rem 0;
}
header.page-header .branding .navbar-brand img {
    height: 4rem;
}
header.page-header .branding .btn.btn-outline-secondary {
    border: none;
    color: #7a7a7a;
    text-align: left;
    position: relative;
    font-size: 0.8rem;
    padding: 0.5rem 1rem 0.5rem 3.5rem;
    margin-left: 0.5rem;
    border-radius: 0.5rem;
}
header.page-header .branding .btn.btn-outline-secondary:hover,
header.page-header .branding .btn.btn-outline-secondary:focus {
    box-shadow: none;
    background: #f2f6f9;
}
header.page-header .branding .btn.btn-outline-secondary:not(.disabled):not(:disabled):active {
    background: #d2d6d9;
    box-shadow: none;
}
header.page-header .branding .btn.btn-outline-secondary img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1rem;
    width: 2rem;
    object-fit: contain;
    margin: auto;
}
header.page-header .branding .btn.btn-outline-secondary span {
    display: block;
}
header.page-header .branding .btn.btn-outline-secondary strong {
    display: block;
    line-height: 1.2;
}

/* NAVIGATION */
.navbar-dark {
    background: #005596 !important;
    padding: 0;
}
.navbar .nav-item {
    margin-right: 0.5rem;
}
.navbar .nav-item > .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    font-size: 1.1rem;
    padding: 1.15rem 1.5rem;
    color: #fff;
    transition: 0.25s ease all;
}
.navbar .nav-item > .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle:after {
    opacity: 0.5;
}
.navbar .nav-item.dropdown > .dropdown-menu {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: rgba(10,10,10,0.1) 0 0.35rem 0.35rem;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1rem 0.5rem;
    margin: 0;
}
.navbar .nav-item.dropdown > .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    transition: 0.15s ease all;
    font-weight: 600;
    color: #1f1f1f;
    font-size: 0.9rem;
}
.navbar .nav-item.dropdown > .dropdown-menu .dropdown-item:hover {
    background: #f2f6f9;
}
.navbar .nav-item.dropdown > .dropdown-menu .dropdown-item:active {
    background: #d2d6d9;
}

/* MAIN */
.main {
    padding: 15rem 0 10rem 0;
    background: #f2f6f9;
    background: url("../img/main-bg.jpg") center no-repeat;
    background-size: cover;
    position: relative;
}
.main.main-safety {
    background: url("../img/electronic-bg.jpg") center no-repeat;
    background-size: cover;
    padding: 10rem 0 10rem 0;
}
.main.main-electromagnetic-compatibility {
    background: url("../img/electromagnetic-bg.jpg") center no-repeat;
    background-size: cover;
    padding: 10rem 0 10rem 0;
}
.main.main-radio-testing {
    background: url("../img/radio-bg.jpg") center no-repeat;
    background-size: cover;
    padding: 10rem 0 10rem 0;
}
.main.main-erac {
    background: url("../img/erac-bg.jpg") center no-repeat;
    background-size: cover;
    padding: 10rem 0 10rem 0;
}
.main:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002b4d;
    content: ' ';
    z-index: 1;
    opacity: 0.45;
}
.main .container {
    position: relative;
    z-index: 2;
}
.main h1 {
    font-weight: bold;
    color: #fff;
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.05;
}
.main p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin: 0.25rem 0 1.5rem 0;
}
.main .btn + .btn {
    margin-left: 0.5rem;
}

/* SERVICE BOXES */
.services-boxes {
    display: block;
    position: relative;
    background: #97989c;
}
.services-boxes:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    content: ' ';
    height: 100%;
    width: 50%;
    background: #333;
}
.services-boxes .service-box {
    display: block;
    padding: 2.5rem 2.5rem;
    color: #fff;
    text-decoration: none;
    height: 100%;
}
.services-boxes .service-box.box-1 {
    padding-left: 0;
}
.services-boxes .service-box.box-2 {
    background: #777;
}
.services-boxes .service-box.box-3 {
    background: #555;
}
.services-boxes .service-box.box-4 {
    background: #333;
    padding-right: 0;
}
.services-boxes .service-box img {
    width: 64px;
    height: 64px;
    display: block;
    filter: brightness(0) invert(1);
}
.services-boxes .service-box h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 1rem 0 0 0;
}
.services-boxes .service-box p {
    margin: 0.75rem 0 0 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.services-boxes .service-box .btn.btn-read-more {
    padding: 0.25rem 1.5rem 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    margin-top: 1rem;
    transition: 0.15s ease all;
    position: relative;
}
.services-boxes .service-box .btn.btn-read-more:after {
    position: absolute;
    top: 0;
    right: 0.625rem;
    bottom: 0;
    margin: auto;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform-origin: center;
    transform: rotate(-45deg);
    content: ' ';
}
.services-boxes .service-box:hover .btn.btn-read-more  {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,1);
}

/* ABOUT */
.about {
    display: block;
    padding: 5rem 0;
}
.about h1 {
    position: relative;
    line-height: 1;
    margin: 0;
    padding-top: 2rem;
    padding-right: 50%;
}
.about h1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #005596;
    content: ' ';
}
.about h1 span {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    display: block;
}
.about p:last-child {
    margin-bottom: 0;
}

/* CONTACT */
.contact {
    padding: 0 0 5rem 0;
}
.contact .box {
    background: #f2f6f9;
    border-radius: 1rem;
    padding: 3.5rem;
}
.contact h3 {
    position: relative;
    line-height: 1;
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: bold;
}
.contact p.small {
    font-size: 0.7rem;
    margin: 1rem 0 0 0;
    color: #aaa;
}
.contact form .form-group {
    max-width: 80%;
}
.contact form .form-group label {
    display: block;
    margin: 0;
    font-size: 0.9rem;
    color: #1f1f1f;
    font-weight: 600;
}
.contact form .form-group .form-control {
    padding: 0.75rem 1rem;
    height: auto;
    border: 1px solid #eee;
}
.contact form .form-group textarea.form-control {
    min-height: 120px;
}
.contact form .form-group .form-control:focus {
    box-shadow: rgba(10,10,10,0.1) 0 0.2rem 0.2rem;
}
.contact .contact-map {
    width: 100%;
    height: 250px;
    display: block;
    background: #fff;
    border-radius: 1rem;
    box-shadow: rgba(10,10,10,0.1) 0 0.25rem 0.25rem;
}
.contact .contact-item {
    display: block;
    position: relative;
    margin-top: 1.5rem;
    padding-left: 3rem;
}
.contact .contact-item img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    margin: auto;
}
.contact .contact-item span {
    display: block;
    font-size: 0.8rem;
}
.contact .contact-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f1f1f;
}
.contact .contact-item p {
    display: block;
    margin: 0;
    font-weight: 600;
    font-size: 0.8rem;
    color: #7a7a7a;
}
.contact.contact-alt {
    padding: 5rem 0;
}
.contact.contact-alt .box {
    padding: 0;
    background: none;
}
.contact.contact-alt form .form-group .form-control {
    border-color: #ddd;
}

/* APPROVAL SERVICES */
.approval-services {
    display: block;
    padding: 0 0 5rem 0;
}
.approval-services h1 {
    position: relative;
    line-height: 1;
    margin: 0 0 1rem 0;
    padding-top: 2rem;
}
.approval-services h1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 5px;
    background: #005596;
    content: ' ';
}
.approval-services h1 span {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    display: block;
}
.approval-services p.lead {
    font-size: 1.2rem;
}
.approval-services p:last-child {
    margin-bottom: 0;
}
.approval-services ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.approval-services ul li {
    display: block;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.25rem;
}
.approval-services ul li:before {
    position: absolute;
    width: 0.8rem;
    height: 0.4rem;
    border-bottom: 3px solid #005596;
    border-left: 3px solid #005596;
    content: ' ';
    top: 0.5rem;
    left: 0;
    transform-origin: center;
    transform: rotate(-45deg);
}
.approval-services .img-fluid {
    border-radius: 1rem;
    box-shadow: rgba(10,10,10,0.1) 0 0.25rem 0.25rem;
}
.approval-services.inner-page {
    padding: 5rem 0;
}
.approval-services.inner-page .img-fluid {
    box-shadow: none;
    background: none;
    border-radius: 0;
}


/* APPROVAL SERVICES NEW */
.approval-services-new {
    display: block;
    padding: 0 0 5rem 0;
}
.approval-services-new h1 {
    position: relative;
    line-height: 1;
    margin: 0 0 1rem 0;
    padding-top: 2rem;
    padding-right: 3rem;
}
.approval-services-new h1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 5px;
    background: #005596;
    content: ' ';
}
.approval-services-new h1 span {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    display: block;
}
.approval-services-new .service-box {
    position: relative;
    min-height: 3rem;
    padding-left: 4rem;
}
.approval-services-new .service-box + .service-box {
    margin-top: 1.5rem;
}
.approval-services-new .service-box img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
}
.approval-services-new .service-box h3 {
    margin: 0 0 0.5rem 0;
    font-weight: bold;
    font-size: 1.25rem;
    color: #005596;
}
.approval-services-new .service-box p {
    margin: 0;
}

/* COMPLIANCES */
.compliances {
    padding: 0 0 5rem 0;
}
.compliances .compliances-images {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.compliances .compliances-images img {
    max-width: 100px;
    max-height: 70px;
}

/* CALL TO ACTION */
.cta {
    display: block;
    position: relative;
    padding: 2.5rem 0;
    background: url("../img/electronic-bg.jpg") center no-repeat;
    background-size: cover;
}
.cta:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2f2f2f;
    content: ' ';
    z-index: 0;
    opacity: 0.95;
}
.cta .container {
    position: relative;
    z-index: 1;
}
.cta h3 {
    font-weight: 600;
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}
.cta .btn {
    margin-left: 0.5rem;
}
.cta .btn img {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}
.cta .btn span {
    display: inline-block;
    vertical-align: middle;
}
.cta .btn.btn-secondary {
    background: rgba(255,255,255,0.025);
    border-color: transparent;
    border-radius: 0.25rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}
.cta .btn.btn-secondary:hover,
.cta .btn.btn-secondary:focus {
    background: rgba(255,255,255,0.05);
}
.cta .btn.btn-secondary:active {
    background: rgba(255,255,255,0.15);
}

/* FOOTER */
footer.footer {
    padding: 2.5rem 0;
    background: #1f1f1f;
}
footer.footer a.logo {
    display: inline-block;
}
footer.footer a.logo img {
    height: 2.5rem;
    filter: brightness(0) invert(1);
}
footer.footer p.copyrights {
    display: block;
    margin: 1rem 0 0 0;
    font-size: 0.8rem;
    color: #999;
}
footer.footer h3 {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 1rem 0;
}
footer.footer ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
footer.footer ul li {
    display: block;
}
footer.footer ul li a {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.25rem;
    text-decoration: none;
    transition: 0.15s ease all;
}
footer.footer ul li a:hover {
    color: #fff;
}
footer.footer ul.social-links li {
    display: inline-block;
    margin-right: 0.15rem;
}
footer.footer ul.social-links li a {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    text-align: center;
    line-height: 3rem;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.05);
}
footer.footer ul.social-links li a:hover {
    background: rgba(255,255,255,0.1);
}
footer.footer ul.social-links li a img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

/* DEVICES */
.devices {
    padding: 0 0 5rem 0;
    user-select: none;
    pointer-events: none;
}

/* FAQ */
.faq {
    padding: 0 0 5rem 0;
}
.faq .box {
    background: #f2f6f9;
    border-radius: 1rem;
    padding: 3.5rem;
}
.faq h3 {
    position: relative;
    line-height: 1;
    margin: 0 0 1.5rem 0;
    font-size: 2rem;
    font-weight: bold;
}
.faq .card {
    border: none;
    margin-top: 1rem;
    background: none;
}
.faq .card .card-header {
    padding: 0;
    border: none;
    background: none;
}
.faq .card .card-header button {
    padding: 0;
    font-weight: 600;
    color: #1f1f1f;
    background: none;
    border: none;
    box-shadow: none;
}
.faq .card .card-body {
    padding: 0.5rem 0 0.5rem 0;
    background: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
    html, body {
        font-size: 14px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    html, body {
        font-size: 12px;
    }
    .cta .btn.btn-secondary,
    .cta .btn.btn-primary {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    footer.footer a.logo {
        margin-bottom: 2.5rem;
    }
}
@media (max-width: 767px) {
    body {
        padding-top: 4.625rem;
    }
    header.page-header .branding {
        display: none;
    }
    .navbar-dark {
        background: #fff !important;
        padding: 1rem 15px;
    }
    .navbar-dark .navbar-brand img {
        height: 2rem;
    }
    .navbar-dark .navbar-toggler {
        filter: brightness(0);
        border: none;
        outline: none;
        box-shadow: none;
        background: none;
    }
    .navbar .nav-item:first-child > .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .navbar .nav-item > .nav-link,
    .navbar .nav-item.active > .nav-link,
    .navbar .nav-item > .nav-link:hover,
    .navbar .nav-item > .nav-link:focus {
        color: #1f1f1f;
        padding: 0.5rem;
    }
    .navbar .nav-item > .nav-link:active {
        color: #1f1f1f;
        padding: 0.5rem;
        background: #f2f6f9;
    }
    .navbar .nav-item.dropdown > .dropdown-menu {
        box-shadow: none;
        padding: 0.5rem;
        background: #f2f6f9;
        border-radius: 0.5rem;
        border: none;
    }
    .main {
        padding: 5rem 0;
    }
    .main h1 {
        font-size: 2rem;
        letter-spacing: 0;
    }
    .main .btn + .btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .services-boxes {
        overflow: hidden;
    }
    .services-boxes .service-box {
        width: calc(100% + 30px);
        margin: 0 -15px;
        padding: 2.5rem 15px;
    }
    .services-boxes .service-box.box-1 {
        padding-left: 15px;
        background: #97989c;
    }
    .services-boxes .service-box.box-4 {
        padding-right: 15px;
    }
    .about {
        padding: 2.5rem 0;
    }
    .about h1,
    .approval-services h1 {
        padding-top: 0;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    .about h1:before,
    .approval-services h1:before {
        display: none;
    }
    .about h1 span,
    .approval-services h1 span {
        font-size: 2rem;
    }
    .contact {
        overflow: hidden;
        padding: 0 0 2.5rem 0;
    }
    .contact .box {
        padding: 2.5rem 15px;
        width: calc(100% + 30px);
        margin: 0 -15px;
        border-radius: 0;
    }
    .contact form .form-group {
        max-width: 100%;
    }
    .contact .contact-map {
        margin-top: 1.5rem;
    }
    .approval-services {
        padding-bottom: 2.5rem;
    }
    .approval-services.home-services {
        padding-bottom: 0;
    }
    .approval-services.home-services .img-fluid {
        max-width: calc(100% + 30px);
        margin: 0 -15px;
        border-radius: 0;
        box-shadow: none;
    }
    .compliances {
        padding: 2.5rem 0;
    }
    .compliances .compliances-images {
        flex-wrap: wrap;
    }
    .compliances .compliances-images img {
        margin: 0.25rem 1rem;
        max-width: 60px;
        max-height: 30px;
    }
    .cta {
        text-align: center;
    }
    .cta h3 {
        margin-bottom: 1rem;
    }
    .cta .d-flex.flex-row {
        flex-direction: column !important;
        justify-content: center !important;
    }
    .cta .btn {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        font-size: 0.9rem;
    }
    footer.footer a.logo {
        margin-bottom: 1rem;
    }
    footer.footer h3 {
        margin: 1.5rem 0 0.5rem 0;
    }
    .contact.contact-alt {
        padding: 2.5rem 0;
    }
    .contact.contact-alt .box {
        width: 100%;
        margin: 0;
    }
    .main.main-safety,
    .main.main-electromagnetic-compatibility,
    .main.main-radio-testing {
        padding: 5.0rem 0;
    }
    .approval-services.inner-page {
        padding: 2.5rem 0;
    }
    .approval-services.inner-page .img-compliance {
        max-width: 50%;
        margin: 1.5rem auto 0.5rem auto;
        display: block;
    }
    .devices {
        padding: 0 0 2.5rem 0;
    }
    .faq {
        padding: 0;
        overflow: hidden;
    }
    .faq .box {
        border-radius: 0;
        padding: 2.5rem 2rem;
        width: calc(100% + 30px);
        margin: 0 -15px;
    }
    .faq h3 {
        font-size: 1.5rem;
    }
}