/**
* 
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    color: #004a7f;
}

a:hover {
    color: #8ec4dd;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/* Background video styling */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    border: none;
    margin: 0;
    padding: 0;
  }
  

#main {
    margin-top: 90px;
}

/* 20240103 Added colors */

/* 20240103 End colors */
.royalds-yellow {
    color: #004a7f;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 998;
    background: #004a7f;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #444444;
    border: 1px solid #fff;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 24px 0;
    background: rgb(68, 68, 68, 0.8);
}

/* #header.header-transparent {
  background: transparent;
} */

#header.header-scrolled {
    background: rgba(68, 68, 68, 0.9);
    padding: 12px;
}

#header .logo h1 {
    font-size: 24px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 768px) {
    #header.header-scrolled {
        padding: 15px 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    position: static;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    margin-left: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    background: rgba(255, 255, 255, 0.2);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: auto;
    top: calc(100% + 30px);
    margin: 0;
    right: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}



.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #2f4d5a;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #004a7f;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .megamenu {
    position: static;
}

.navbar .megamenu ul {
    margin: 0;
    padding: 10px;
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
}

.navbar .megamenu ul li {
    flex: 1;
}

.navbar .megamenu ul li strong {
    padding: 10px 0 10px 20px;
    display: block;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
    padding: 8px 10px;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
    color: #004a7f;
}

.navbar .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

/* Added */
.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(70, 70, 70, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2f4d5a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #004a7f;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #004a7f;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

.navbar-mobile .megamenu ul li a,
.navbar-mobile .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
}

.navbar-mobile .megamenu ul li a:hover,
.navbar-mobile .megamenu ul li .active,
.navbar-mobile .megamenu ul li .active:hover {
    color: #004a7f;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    max-width: 100%;
    height: auto;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
    height: 100vh;
}

#hero video {
    display: block;
    margin: 0 auto;
    width: 100%; /* Set the width to 100% */
    height: 100vh; /* Set the height to 100vh */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: -1;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: #ddd;
    text-shadow: -1px 0 2px #2f4d5a;
}

#hero h2 {
    color: #fff;
    margin-bottom: 50px;
    font-size: 16px;
    /* text-transform: uppercase; */
    font-weight: 500;
    text-shadow: -1px 0 2px #2f4d5a;
}

#hero .btn-get-started {
    font-size: 36px;
    display: inline-block;
    padding: 4px 0;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    margin: 10px;
    width: 64px;
    height: 64px;
    text-align: center;
    border: 2px solid #fff;
    color: #fff;
}

#hero .btn-get-started:hover {
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.15);
}

/* Added 20240113 centering video; chatgpt*/

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#hero video {
    display: block;
    margin: 0 auto;
    width: 100%; /* Set the width to 100% */
    height: 100vh; /* Set the height to 100vh */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: -1;
}

#hero .container {
    z-index: 3;
    text-align: center;
}
/* End Addition 20240113 centering video; chatgpt*/

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f4f9fc;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    position: relative;
    margin-bottom: 30px;
    color: #2f4d5a;
    z-index: 2;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 122px;
    height: 66px;
    background: url(../img/section-title-bg.png) no-repeat;
    z-index: -1;
}

.section-title p {
    margin-bottom: 1rem;
    text-align: left;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding-bottom: 80px;
}

.contact .info-box {
    color: #444444;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
}

.contact .info-box i {
    font-size: 32px;
    color: #004a7f;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #f0f7fa;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
    background-color: #004a7f;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="button"] {
    background: #004a7f;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #8ec4dd;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #444444;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-top: -90px;
    margin-bottom: 15px;
    background: white;
    color: #2f4d5a;
    border-top: 4px solid #004a7f;
    text-align: center;
    padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #004a7f;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #444;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #004a7f;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #004a7f;
}

/*--------------------------------------------------------------
# Footer Newsletter
--------------------------------------------------------------*/

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form button[type="button"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #004a7f;
    color: #fff;
    transition: 0.3s;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form button[type="button"]:hover {
    background: #888;
}

/* Added 20240127 */

#footer .footer-newsletter .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#footer .footer-newsletter .error-message br + br {
    margin-top: 25px;
}

#footer .footer-newsletter .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#footer .footer-newsletter .loading {
    display: none;
    text-align: left;
    padding: 15px;
}

#footer .footer-newsletter .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#footer .copyright {
    border-top: 1px solid #385b6b;
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/* Addition 20240113 Accordion header */
.accordion-button {
    border-color: #004a7f;
    padding-left: 0;
    padding-right: 0;
}

.accordion-button:hover,
.accordion-button:focus {
    background-color: rgba(252, 185, 0, 0.3);
    box-shadow: 0 0 10px rgba(252, 185, 0, 0.3);
}

/* End Addition 20240113 Accordion header */

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}

/* 20230103 Added rotation to logo svg */

#logo-gear, #logo-gear-1, #logo-gear-2, #logo-gear-3, #logo-gear-4 {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 10000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 10000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 10000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 10000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Added 20240123 Glowing Button*/

.glowing-button {
    background-color: #004a7f;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
    0% {
        background-color: #004a7f;
        -webkit-box-shadow: 0 0 3px #004a7f;
    }
    50% {
        background-color: #3878a7;
        -webkit-box-shadow: 0 0 40px #3878a7;
    }
    100% {
        background-color: #718899;
        -webkit-box-shadow: 0 0 3px #718899;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #004a7f;
        -moz-box-shadow: 0 0 3px #004a7f;
    }
    50% {
        background-color: #004aaf;
        -moz-box-shadow: 0 0 40px #004aaf;
    }
    100% {
        background-color: #004a7f;
        -moz-box-shadow: 0 0 3px #004a7f;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #004a7f;
        box-shadow: 0 0 3px #004a7f;
    }
    50% {
        background-color: #004a7f;
        box-shadow: 0 0 40px #004a7f;
    }
    100% {
        background-color: #004a7f;
        box-shadow: 0 0 3px #004a7f;
    }
}

@keyframes glowing {
    0% {
        background-color: #004a7f;
        box-shadow: 0 0 3px #004a7f;
    }
    50% {
        background-color: #004a7f;
        box-shadow: 0 0 40px #004a7f;
    }
    100% {
        background-color: #004a7f;
        box-shadow: 0 0 3px #004a7f;
    }
}

/* Added 20240130 */
.brand-link span.brand-text {
    font-size: 0.2rem !important;
    color: red !important;
}

/* Added 2024-02-17 for jobs sector select buttons*/

.btn-bg {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.btn-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 0.7rem;
}

.btn-custom {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: none;
    border: none;
}

.btn-custom:hover .btn-bg {
    opacity: 0.6;
}

.active-button .btn-text {
    color: #000;
    background-color: #004a7f;
}


/* Added 20240123 */

/* next size - tablet */
@media (min-width: 480px) {
    .portfolio #portfolio-flters li {
        font-size: 0.8rem;
        padding: 2px 15px;
    }

    .cta p {
        text-align: center;
    }

    #hero.home {
        background: linear-gradient(
                rgba(252, 185, 0, 0),
                rgba(0,74,127,0.8)
            ),
            url("../img/hero-bg/home-sm.jpg") center center;
    }
}

/* next size - tablet landscape and it covers desktop */
@media (min-width: 768px) {
    .section-title {
        text-align: center;
    }

    .section-title p {
        text-align: center;
    }

    .section-title h2::after {
        left: 50%;
        top: 50%;
    }

    .portfolio #portfolio-flters li {
        font-size: 0.65rem;
        padding: 2px 5px;
    }

    #hero.home {
        background: linear-gradient(
                rgba(252, 185, 0, 0),
                rgba(0,74,127,0.8)
            ),
            url("../img/hero-bg/home-me.jpg") center center;
    }
}

/* next size - larger desktops */
@media (min-width: 1024px) {
    .portfolio #portfolio-flters li {
        font-size: 0.8rem;
    }

    .cta p {
        text-align: center;
    }

    .portfolio .list-unstyled .col {
        flex: 0 0 25%;
    }

    #portfolio.jobs {
        margin-top: -200px !important;
    }

    #hero.home {
        background: linear-gradient(
                rgba(252, 185, 0, 0),
                rgba(0,74,127,0.8)
            ),
            url("../img/hero-bg/home-lg.jpg") center center;
        background-size: cover;
    }
    .btn-text {
        font-size: 1rem;
    }

    #hero .hero-container,
    jobs {
        margin-top: 100px;
    }

    #hero .hero-container,
    jobs {
        margin-top: 100px;
    }
    #portfolio.jobs {
        margin-top: -200px !important;
    }

}

/* next size - larger desktops */
@media (min-width: 1920px) {
    .portfolio #portfolio-flters li {
        font-size: 1rem;
    }

    .portfolio #portfolio-flters li {
        font-size: 14px;
    }

    .cta p {
        text-align: center;
    }

    .portfolio .list-unstyled .col {
        flex: 0 0 25%;
    }

    #portfolio.jobs {
        margin-top: -200px !important;
    }

    #hero.home {
        background: linear-gradient(
                rgba(252, 185, 0, 0),
                rgba(0,74,127,0.8)
            ),
            url("../img/hero-bg/home-xl.jpg") center center;
    }
}
